diff --git a/CHANGELOG.md b/CHANGELOG.md index 923482e..57670d4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,28 @@ 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.1.3] - 2024-03-04 + +### Changed +- Aligned BDDISASM APX instructions syntax with some of the Intel recomandations (using the suffix notation for `NF` and `ZU` indications, using finite set notation for `DFV` operands). + +### Disassembly differences +- The `ZU` indication is appended as a mnemonic sufix, as per recomandations. However, in case of `SETcc` instructions, BDDISASM will append the `ZU` indication AFTER the condition code (similar to `CMPccXADD` and with initial `SETcc.ZU` specification). +- The `DFV` (default flags value) operand obeys the finite set notation, but it is placed as the last operand of the instruction. + + +## [2.1.2] - 2024-02-27 + +### Added +- `Read` access for the `rIP` operand for the `SYSCALL` instruction. +- `SCS`, `rCX`, `rDX` operands for the `SYSEXIT` instruction. + + +## [2.1.1] - 2024-02-26 + +### Added +- `Read` access for the `rIP` operand for some `CALL` instructions. + ## [2.1.0] - 2024-02-20 diff --git a/bddisasm/bdx86_formatter.c b/bddisasm/bdx86_formatter.c index 834274a..cee71a3 100644 --- a/bddisasm/bdx86_formatter.c +++ b/bddisasm/bdx86_formatter.c @@ -311,14 +311,14 @@ NdToText( // Store NF specifier, if NoFlags presetn. if (Instrux->HasNf) { - res = nd_strcat_s(Buffer, BufferSize, "{NF}"); + res = nd_strcat_s(Buffer, BufferSize, "NF"); RET_EQ(res, ND_NULL, ND_STATUS_BUFFER_OVERFLOW); } // Store ZU specifier, if ZeroUpper present. if (Instrux->HasZu) { - res = nd_strcat_s(Buffer, BufferSize, "{ZU}"); + res = nd_strcat_s(Buffer, BufferSize, "ZU"); RET_EQ(res, ND_NULL, ND_STATUS_BUFFER_OVERFLOW); } @@ -710,17 +710,39 @@ NdToText( case ND_OP_DFV: { - status = NdSprintf(temp, sizeof(temp), "%c%c%c%c", - pOp->Info.DefaultFlags.OF ? '1' : '0', - pOp->Info.DefaultFlags.SF ? '1' : '0', - pOp->Info.DefaultFlags.ZF ? '1' : '0', - pOp->Info.DefaultFlags.CF ? '1' : '0'); - if (!ND_SUCCESS(status)) + ND_BOOL comma = ND_FALSE; + + res = nd_strcat_s(Buffer, BufferSize, "{dfv="); + RET_EQ(res, ND_NULL, ND_STATUS_BUFFER_OVERFLOW); + + if (pOp->Info.DefaultFlags.OF) { - return status; + res = nd_strcat_s(Buffer, BufferSize, "OF"); + RET_EQ(res, ND_NULL, ND_STATUS_BUFFER_OVERFLOW); + comma = ND_TRUE; } - res = nd_strcat_s(Buffer, BufferSize, temp); + if (pOp->Info.DefaultFlags.SF) + { + res = nd_strcat_s(Buffer, BufferSize, comma ? ",SF" : "SF"); + RET_EQ(res, ND_NULL, ND_STATUS_BUFFER_OVERFLOW); + comma = ND_TRUE; + } + + if (pOp->Info.DefaultFlags.ZF) + { + res = nd_strcat_s(Buffer, BufferSize, comma ? ",ZF" : "ZF"); + RET_EQ(res, ND_NULL, ND_STATUS_BUFFER_OVERFLOW); + comma = ND_TRUE; + } + + if (pOp->Info.DefaultFlags.CF) + { + res = nd_strcat_s(Buffer, BufferSize, comma ? ",CF" : "CF"); + RET_EQ(res, ND_NULL, ND_STATUS_BUFFER_OVERFLOW); + } + + res = nd_strcat_s(Buffer, BufferSize, "}"); RET_EQ(res, ND_NULL, ND_STATUS_BUFFER_OVERFLOW); } break; diff --git a/bddisasm_test/x86/apx/apx1_64.result b/bddisasm_test/x86/apx/apx1_64.result index 72aef0c..5381178 100644 --- a/bddisasm_test/x86/apx/apx1_64.result +++ b/bddisasm_test/x86/apx/apx1_64.result @@ -3056,7 +3056,7 @@ Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I Operand: 2, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000003C0 626c780c001e ADD{NF} byte ptr [r22], r27b +00000000000003C0 626c780c001e ADDNF byte ptr [r22], r27b DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -3075,7 +3075,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: R, RegType: General Purpose, RegSize: 1, RegId: 27, RegCount: 1 -00000000000003C6 626c780c00de ADD{NF} r22b, r27b +00000000000003C6 626c780c00de ADDNF r22b, r27b DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -3093,7 +3093,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: R, RegType: General Purpose, RegSize: 1, RegId: 27, RegCount: 1 -00000000000003CC 626cf80c001e ADD{NF} byte ptr [r22], r27b +00000000000003CC 626cf80c001e ADDNF byte ptr [r22], r27b DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -3112,7 +3112,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: R, RegType: General Purpose, RegSize: 1, RegId: 27, RegCount: 1 -00000000000003D2 626cf80c00de ADD{NF} r22b, r27b +00000000000003D2 626cf80c00de ADDNF r22b, r27b DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -3130,7 +3130,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: R, RegType: General Purpose, RegSize: 1, RegId: 27, RegCount: 1 -00000000000003D8 626c780c011e ADD{NF} dword ptr [r22], r27d +00000000000003D8 626c780c011e ADDNF dword ptr [r22], r27d DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -3149,7 +3149,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 27, RegCount: 1 -00000000000003DE 626c780c01de ADD{NF} r22d, r27d +00000000000003DE 626c780c01de ADDNF r22d, r27d DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -3167,7 +3167,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 27, RegCount: 1 -00000000000003E4 626cf80c011e ADD{NF} qword ptr [r22], r27 +00000000000003E4 626cf80c011e ADDNF qword ptr [r22], r27 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -3186,7 +3186,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 27, RegCount: 1 -00000000000003EA 626cf80c01de ADD{NF} r22, r27 +00000000000003EA 626cf80c01de ADDNF r22, r27 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -3204,7 +3204,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 27, RegCount: 1 -00000000000003F0 626c790c011e ADD{NF} word ptr [r22], r27w +00000000000003F0 626c790c011e ADDNF word ptr [r22], r27w DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -3223,7 +3223,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: R, RegType: General Purpose, RegSize: 2, RegId: 27, RegCount: 1 -00000000000003F6 626c790c01de ADD{NF} r22w, r27w +00000000000003F6 626c790c01de ADDNF r22w, r27w DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -3241,7 +3241,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: General Purpose, RegSize: 2, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: R, RegType: General Purpose, RegSize: 2, RegId: 27, RegCount: 1 -00000000000003FC 626cf90c011e ADD{NF} qword ptr [r22], r27 +00000000000003FC 626cf90c011e ADDNF qword ptr [r22], r27 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -3260,7 +3260,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 27, RegCount: 1 -0000000000000402 626cf90c01de ADD{NF} r22, r27 +0000000000000402 626cf90c01de ADDNF r22, r27 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -3278,7 +3278,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 27, RegCount: 1 -0000000000000408 626c780c021e ADD{NF} r27b, byte ptr [r22] +0000000000000408 626c780c021e ADDNF r27b, byte ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -3297,7 +3297,7 @@ Operand: 1, Acc: R-, Type: Memory, Size: 1, RawSize: 1, Encoding: M, Segment: 3, Base: 22, -000000000000040E 626c780c02de ADD{NF} r27b, r22b +000000000000040E 626c780c02de ADDNF r27b, r22b DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -3315,7 +3315,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 1, RawSize: 1, Encoding: R, RegType: General Purpose, RegSize: 1, RegId: 27, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 -0000000000000414 626cf80c021e ADD{NF} r27b, byte ptr [r22] +0000000000000414 626cf80c021e ADDNF r27b, byte ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -3334,7 +3334,7 @@ Operand: 1, Acc: R-, Type: Memory, Size: 1, RawSize: 1, Encoding: M, Segment: 3, Base: 22, -000000000000041A 626cf80c02de ADD{NF} r27b, r22b +000000000000041A 626cf80c02de ADDNF r27b, r22b DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -3352,7 +3352,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 1, RawSize: 1, Encoding: R, RegType: General Purpose, RegSize: 1, RegId: 27, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 -0000000000000420 626c780c031e ADD{NF} r27d, dword ptr [r22] +0000000000000420 626c780c031e ADDNF r27d, dword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -3371,7 +3371,7 @@ Operand: 1, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, Segment: 3, Base: 22, -0000000000000426 626c780c03de ADD{NF} r27d, r22d +0000000000000426 626c780c03de ADDNF r27d, r22d DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -3389,7 +3389,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 27, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 -000000000000042C 626cf80c031e ADD{NF} r27, qword ptr [r22] +000000000000042C 626cf80c031e ADDNF r27, qword ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -3408,7 +3408,7 @@ Operand: 1, Acc: R-, Type: Memory, Size: 8, RawSize: 8, Encoding: M, Segment: 3, Base: 22, -0000000000000432 626cf80c03de ADD{NF} r27, r22 +0000000000000432 626cf80c03de ADDNF r27, r22 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -3426,7 +3426,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 27, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 -0000000000000438 626c790c031e ADD{NF} r27w, word ptr [r22] +0000000000000438 626c790c031e ADDNF r27w, word ptr [r22] DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -3445,7 +3445,7 @@ Operand: 1, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, Segment: 3, Base: 22, -000000000000043E 626c790c03de ADD{NF} r27w, r22w +000000000000043E 626c790c03de ADDNF r27w, r22w DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -3463,7 +3463,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 2, RawSize: 2, Encoding: R, RegType: General Purpose, RegSize: 2, RegId: 27, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: General Purpose, RegSize: 2, RegId: 22, RegCount: 1 -0000000000000444 626cf90c031e ADD{NF} r27, qword ptr [r22] +0000000000000444 626cf90c031e ADDNF r27, qword ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -3482,7 +3482,7 @@ Operand: 1, Acc: R-, Type: Memory, Size: 8, RawSize: 8, Encoding: M, Segment: 3, Base: 22, -000000000000044A 626cf90c03de ADD{NF} r27, r22 +000000000000044A 626cf90c03de ADDNF r27, r22 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -3500,7 +3500,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 27, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 -0000000000000450 626c780c8006bd ADD{NF} byte ptr [r22], 0xbd +0000000000000450 626c780c8006bd ADDNF byte ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -3519,7 +3519,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000000457 626c780c80c6bd ADD{NF} r22b, 0xbd +0000000000000457 626c780c80c6bd ADDNF r22b, 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -3537,7 +3537,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -000000000000045E 626cf80c8006bd ADD{NF} byte ptr [r22], 0xbd +000000000000045E 626cf80c8006bd ADDNF byte ptr [r22], 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -3556,7 +3556,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000000465 626cf80c80c6bd ADD{NF} r22b, 0xbd +0000000000000465 626cf80c80c6bd ADDNF r22b, 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -3574,7 +3574,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -000000000000046C 626c780c8106bdbdbdbd ADD{NF} dword ptr [r22], 0xbdbdbdbd +000000000000046C 626c780c8106bdbdbdbd ADDNF dword ptr [r22], 0xbdbdbdbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -3593,7 +3593,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Immediate, Size: 4, RawSize: 4, Encoding: I -0000000000000476 626c780c81c6bdbdbdbd ADD{NF} r22d, 0xbdbdbdbd +0000000000000476 626c780c81c6bdbdbdbd ADDNF r22d, 0xbdbdbdbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -3611,7 +3611,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Immediate, Size: 4, RawSize: 4, Encoding: I -0000000000000480 626cf80c8106bdbdbdbd ADD{NF} qword ptr [r22], 0xbdbdbdbd +0000000000000480 626cf80c8106bdbdbdbd ADDNF qword ptr [r22], 0xbdbdbdbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -3630,7 +3630,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Immediate, Size: 4, RawSize: 4, Encoding: I -000000000000048A 626cf80c81c6bdbdbdbd ADD{NF} r22, 0xbdbdbdbd +000000000000048A 626cf80c81c6bdbdbdbd ADDNF r22, 0xbdbdbdbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -3648,7 +3648,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Immediate, Size: 4, RawSize: 4, Encoding: I -0000000000000494 626c790c8106bdbd ADD{NF} word ptr [r22], 0xbdbd +0000000000000494 626c790c8106bdbd ADDNF word ptr [r22], 0xbdbd DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -3667,7 +3667,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Immediate, Size: 2, RawSize: 2, Encoding: I -000000000000049C 626c790c81c6bdbd ADD{NF} r22w, 0xbdbd +000000000000049C 626c790c81c6bdbd ADDNF r22w, 0xbdbd DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -3685,7 +3685,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: General Purpose, RegSize: 2, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Immediate, Size: 2, RawSize: 2, Encoding: I -00000000000004A4 626cf90c8106bdbdbdbd ADD{NF} qword ptr [r22], 0xbdbdbdbd +00000000000004A4 626cf90c8106bdbdbdbd ADDNF qword ptr [r22], 0xbdbdbdbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -3704,7 +3704,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Immediate, Size: 4, RawSize: 4, Encoding: I -00000000000004AE 626cf90c81c6bdbdbdbd ADD{NF} r22, 0xbdbdbdbd +00000000000004AE 626cf90c81c6bdbdbdbd ADDNF r22, 0xbdbdbdbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -3722,7 +3722,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Immediate, Size: 4, RawSize: 4, Encoding: I -00000000000004B8 626c780c8306bd ADD{NF} dword ptr [r22], 0xbd +00000000000004B8 626c780c8306bd ADDNF dword ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -3741,7 +3741,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000004BF 626c780c83c6bd ADD{NF} r22d, 0xbd +00000000000004BF 626c780c83c6bd ADDNF r22d, 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -3759,7 +3759,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000004C6 626cf80c8306bd ADD{NF} qword ptr [r22], 0xbd +00000000000004C6 626cf80c8306bd ADDNF qword ptr [r22], 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -3778,7 +3778,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000004CD 626cf80c83c6bd ADD{NF} r22, 0xbd +00000000000004CD 626cf80c83c6bd ADDNF r22, 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -3796,7 +3796,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000004D4 626c790c8306bd ADD{NF} word ptr [r22], 0xbd +00000000000004D4 626c790c8306bd ADDNF word ptr [r22], 0xbd DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -3815,7 +3815,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000004DB 626c790c83c6bd ADD{NF} r22w, 0xbd +00000000000004DB 626c790c83c6bd ADDNF r22w, 0xbd DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -3833,7 +3833,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: General Purpose, RegSize: 2, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000004E2 626cf90c8306bd ADD{NF} qword ptr [r22], 0xbd +00000000000004E2 626cf90c8306bd ADDNF qword ptr [r22], 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -3852,7 +3852,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000004E9 626cf90c83c6bd ADD{NF} r22, 0xbd +00000000000004E9 626cf90c83c6bd ADDNF r22, 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -4860,7 +4860,7 @@ Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000000620 626c781c001e ADD{NF} al, byte ptr [r22], r27b +0000000000000620 626c781c001e ADDNF al, byte ptr [r22], r27b DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -4880,7 +4880,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: R, RegType: General Purpose, RegSize: 1, RegId: 27, RegCount: 1 -0000000000000626 626c781c00de ADD{NF} al, r22b, r27b +0000000000000626 626c781c00de ADDNF al, r22b, r27b DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -4899,7 +4899,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: R, RegType: General Purpose, RegSize: 1, RegId: 27, RegCount: 1 -000000000000062C 626cf81c001e ADD{NF} al, byte ptr [r22], r27b +000000000000062C 626cf81c001e ADDNF al, byte ptr [r22], r27b DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -4919,7 +4919,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: R, RegType: General Purpose, RegSize: 1, RegId: 27, RegCount: 1 -0000000000000632 626cf81c00de ADD{NF} al, r22b, r27b +0000000000000632 626cf81c00de ADDNF al, r22b, r27b DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -4938,7 +4938,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: R, RegType: General Purpose, RegSize: 1, RegId: 27, RegCount: 1 -0000000000000638 626c781c011e ADD{NF} eax, dword ptr [r22], r27d +0000000000000638 626c781c011e ADDNF eax, dword ptr [r22], r27d DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -4958,7 +4958,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 27, RegCount: 1 -000000000000063E 626c781c01de ADD{NF} eax, r22d, r27d +000000000000063E 626c781c01de ADDNF eax, r22d, r27d DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -4977,7 +4977,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 27, RegCount: 1 -0000000000000644 626cf81c011e ADD{NF} rax, qword ptr [r22], r27 +0000000000000644 626cf81c011e ADDNF rax, qword ptr [r22], r27 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -4997,7 +4997,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 27, RegCount: 1 -000000000000064A 626cf81c01de ADD{NF} rax, r22, r27 +000000000000064A 626cf81c01de ADDNF rax, r22, r27 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -5016,7 +5016,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 27, RegCount: 1 -0000000000000650 626c791c011e ADD{NF} ax, word ptr [r22], r27w +0000000000000650 626c791c011e ADDNF ax, word ptr [r22], r27w DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -5036,7 +5036,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: R, RegType: General Purpose, RegSize: 2, RegId: 27, RegCount: 1 -0000000000000656 626c791c01de ADD{NF} ax, r22w, r27w +0000000000000656 626c791c01de ADDNF ax, r22w, r27w DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -5055,7 +5055,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: General Purpose, RegSize: 2, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: R, RegType: General Purpose, RegSize: 2, RegId: 27, RegCount: 1 -000000000000065C 626cf91c011e ADD{NF} rax, qword ptr [r22], r27 +000000000000065C 626cf91c011e ADDNF rax, qword ptr [r22], r27 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -5075,7 +5075,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 27, RegCount: 1 -0000000000000662 626cf91c01de ADD{NF} rax, r22, r27 +0000000000000662 626cf91c01de ADDNF rax, r22, r27 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -5094,7 +5094,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 27, RegCount: 1 -0000000000000668 626c781c021e ADD{NF} al, r27b, byte ptr [r22] +0000000000000668 626c781c021e ADDNF al, r27b, byte ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -5114,7 +5114,7 @@ Operand: 2, Acc: R-, Type: Memory, Size: 1, RawSize: 1, Encoding: M, Segment: 3, Base: 22, -000000000000066E 626c781c02de ADD{NF} al, r27b, r22b +000000000000066E 626c781c02de ADDNF al, r27b, r22b DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -5133,7 +5133,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: R, RegType: General Purpose, RegSize: 1, RegId: 27, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 -0000000000000674 626cf81c021e ADD{NF} al, r27b, byte ptr [r22] +0000000000000674 626cf81c021e ADDNF al, r27b, byte ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -5153,7 +5153,7 @@ Operand: 2, Acc: R-, Type: Memory, Size: 1, RawSize: 1, Encoding: M, Segment: 3, Base: 22, -000000000000067A 626cf81c02de ADD{NF} al, r27b, r22b +000000000000067A 626cf81c02de ADDNF al, r27b, r22b DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -5172,7 +5172,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: R, RegType: General Purpose, RegSize: 1, RegId: 27, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 -0000000000000680 626c781c031e ADD{NF} eax, r27d, dword ptr [r22] +0000000000000680 626c781c031e ADDNF eax, r27d, dword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -5192,7 +5192,7 @@ Operand: 2, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, Segment: 3, Base: 22, -0000000000000686 626c781c03de ADD{NF} eax, r27d, r22d +0000000000000686 626c781c03de ADDNF eax, r27d, r22d DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -5211,7 +5211,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 27, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 -000000000000068C 626cf81c031e ADD{NF} rax, r27, qword ptr [r22] +000000000000068C 626cf81c031e ADDNF rax, r27, qword ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -5231,7 +5231,7 @@ Operand: 2, Acc: R-, Type: Memory, Size: 8, RawSize: 8, Encoding: M, Segment: 3, Base: 22, -0000000000000692 626cf81c03de ADD{NF} rax, r27, r22 +0000000000000692 626cf81c03de ADDNF rax, r27, r22 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -5250,7 +5250,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 27, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 -0000000000000698 626c791c031e ADD{NF} ax, r27w, word ptr [r22] +0000000000000698 626c791c031e ADDNF ax, r27w, word ptr [r22] DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -5270,7 +5270,7 @@ Operand: 2, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, Segment: 3, Base: 22, -000000000000069E 626c791c03de ADD{NF} ax, r27w, r22w +000000000000069E 626c791c03de ADDNF ax, r27w, r22w DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -5289,7 +5289,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: R, RegType: General Purpose, RegSize: 2, RegId: 27, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: General Purpose, RegSize: 2, RegId: 22, RegCount: 1 -00000000000006A4 626cf91c031e ADD{NF} rax, r27, qword ptr [r22] +00000000000006A4 626cf91c031e ADDNF rax, r27, qword ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -5309,7 +5309,7 @@ Operand: 2, Acc: R-, Type: Memory, Size: 8, RawSize: 8, Encoding: M, Segment: 3, Base: 22, -00000000000006AA 626cf91c03de ADD{NF} rax, r27, r22 +00000000000006AA 626cf91c03de ADDNF rax, r27, r22 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -5328,7 +5328,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 27, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 -00000000000006B0 626c781c8006bd ADD{NF} al, byte ptr [r22], 0xbd +00000000000006B0 626c781c8006bd ADDNF al, byte ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -5348,7 +5348,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000006B7 626c781c80c6bd ADD{NF} al, r22b, 0xbd +00000000000006B7 626c781c80c6bd ADDNF al, r22b, 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -5367,7 +5367,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000006BE 626cf81c8006bd ADD{NF} al, byte ptr [r22], 0xbd +00000000000006BE 626cf81c8006bd ADDNF al, byte ptr [r22], 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -5387,7 +5387,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000006C5 626cf81c80c6bd ADD{NF} al, r22b, 0xbd +00000000000006C5 626cf81c80c6bd ADDNF al, r22b, 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -5406,7 +5406,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000006CC 626c781c8106bdbdbdbd ADD{NF} eax, dword ptr [r22], 0xbdbdbdbd +00000000000006CC 626c781c8106bdbdbdbd ADDNF eax, dword ptr [r22], 0xbdbdbdbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -5426,7 +5426,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 4, RawSize: 4, Encoding: I -00000000000006D6 626c781c81c6bdbdbdbd ADD{NF} eax, r22d, 0xbdbdbdbd +00000000000006D6 626c781c81c6bdbdbdbd ADDNF eax, r22d, 0xbdbdbdbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -5445,7 +5445,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 4, RawSize: 4, Encoding: I -00000000000006E0 626cf81c8106bdbdbdbd ADD{NF} rax, qword ptr [r22], 0xbdbdbdbd +00000000000006E0 626cf81c8106bdbdbdbd ADDNF rax, qword ptr [r22], 0xbdbdbdbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -5465,7 +5465,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 4, RawSize: 4, Encoding: I -00000000000006EA 626cf81c81c6bdbdbdbd ADD{NF} rax, r22, 0xbdbdbdbd +00000000000006EA 626cf81c81c6bdbdbdbd ADDNF rax, r22, 0xbdbdbdbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -5484,7 +5484,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 4, RawSize: 4, Encoding: I -00000000000006F4 626c791c8106bdbd ADD{NF} ax, word ptr [r22], 0xbdbd +00000000000006F4 626c791c8106bdbd ADDNF ax, word ptr [r22], 0xbdbd DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -5504,7 +5504,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 2, RawSize: 2, Encoding: I -00000000000006FC 626c791c81c6bdbd ADD{NF} ax, r22w, 0xbdbd +00000000000006FC 626c791c81c6bdbd ADDNF ax, r22w, 0xbdbd DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -5523,7 +5523,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: General Purpose, RegSize: 2, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 2, RawSize: 2, Encoding: I -0000000000000704 626cf91c8106bdbdbdbd ADD{NF} rax, qword ptr [r22], 0xbdbdbdbd +0000000000000704 626cf91c8106bdbdbdbd ADDNF rax, qword ptr [r22], 0xbdbdbdbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -5543,7 +5543,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 4, RawSize: 4, Encoding: I -000000000000070E 626cf91c81c6bdbdbdbd ADD{NF} rax, r22, 0xbdbdbdbd +000000000000070E 626cf91c81c6bdbdbdbd ADDNF rax, r22, 0xbdbdbdbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -5562,7 +5562,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 4, RawSize: 4, Encoding: I -0000000000000718 626c781c8306bd ADD{NF} eax, dword ptr [r22], 0xbd +0000000000000718 626c781c8306bd ADDNF eax, dword ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -5582,7 +5582,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -000000000000071F 626c781c83c6bd ADD{NF} eax, r22d, 0xbd +000000000000071F 626c781c83c6bd ADDNF eax, r22d, 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -5601,7 +5601,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000000726 626cf81c8306bd ADD{NF} rax, qword ptr [r22], 0xbd +0000000000000726 626cf81c8306bd ADDNF rax, qword ptr [r22], 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -5621,7 +5621,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -000000000000072D 626cf81c83c6bd ADD{NF} rax, r22, 0xbd +000000000000072D 626cf81c83c6bd ADDNF rax, r22, 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -5640,7 +5640,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000000734 626c791c8306bd ADD{NF} ax, word ptr [r22], 0xbd +0000000000000734 626c791c8306bd ADDNF ax, word ptr [r22], 0xbd DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -5660,7 +5660,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -000000000000073B 626c791c83c6bd ADD{NF} ax, r22w, 0xbd +000000000000073B 626c791c83c6bd ADDNF ax, r22w, 0xbd DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -5679,7 +5679,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: General Purpose, RegSize: 2, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000000742 626cf91c8306bd ADD{NF} rax, qword ptr [r22], 0xbd +0000000000000742 626cf91c8306bd ADDNF rax, qword ptr [r22], 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -5699,7 +5699,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000000749 626cf91c83c6bd ADD{NF} rax, r22, 0xbd +0000000000000749 626cf91c83c6bd ADDNF rax, r22, 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -7192,7 +7192,7 @@ Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I Operand: 2, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000000910 626c780c201e AND{NF} byte ptr [r22], r27b +0000000000000910 626c780c201e ANDNF byte ptr [r22], r27b DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -7211,7 +7211,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: R, RegType: General Purpose, RegSize: 1, RegId: 27, RegCount: 1 -0000000000000916 626c780c20de AND{NF} r22b, r27b +0000000000000916 626c780c20de ANDNF r22b, r27b DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -7229,7 +7229,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: R, RegType: General Purpose, RegSize: 1, RegId: 27, RegCount: 1 -000000000000091C 626cf80c201e AND{NF} byte ptr [r22], r27b +000000000000091C 626cf80c201e ANDNF byte ptr [r22], r27b DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -7248,7 +7248,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: R, RegType: General Purpose, RegSize: 1, RegId: 27, RegCount: 1 -0000000000000922 626cf80c20de AND{NF} r22b, r27b +0000000000000922 626cf80c20de ANDNF r22b, r27b DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -7266,7 +7266,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: R, RegType: General Purpose, RegSize: 1, RegId: 27, RegCount: 1 -0000000000000928 626c780c211e AND{NF} dword ptr [r22], r27d +0000000000000928 626c780c211e ANDNF dword ptr [r22], r27d DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -7285,7 +7285,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 27, RegCount: 1 -000000000000092E 626c780c21de AND{NF} r22d, r27d +000000000000092E 626c780c21de ANDNF r22d, r27d DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -7303,7 +7303,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 27, RegCount: 1 -0000000000000934 626cf80c211e AND{NF} qword ptr [r22], r27 +0000000000000934 626cf80c211e ANDNF qword ptr [r22], r27 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -7322,7 +7322,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 27, RegCount: 1 -000000000000093A 626cf80c21de AND{NF} r22, r27 +000000000000093A 626cf80c21de ANDNF r22, r27 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -7340,7 +7340,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 27, RegCount: 1 -0000000000000940 626c790c211e AND{NF} word ptr [r22], r27w +0000000000000940 626c790c211e ANDNF word ptr [r22], r27w DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -7359,7 +7359,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: R, RegType: General Purpose, RegSize: 2, RegId: 27, RegCount: 1 -0000000000000946 626c790c21de AND{NF} r22w, r27w +0000000000000946 626c790c21de ANDNF r22w, r27w DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -7377,7 +7377,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: General Purpose, RegSize: 2, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: R, RegType: General Purpose, RegSize: 2, RegId: 27, RegCount: 1 -000000000000094C 626cf90c211e AND{NF} qword ptr [r22], r27 +000000000000094C 626cf90c211e ANDNF qword ptr [r22], r27 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -7396,7 +7396,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 27, RegCount: 1 -0000000000000952 626cf90c21de AND{NF} r22, r27 +0000000000000952 626cf90c21de ANDNF r22, r27 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -7414,7 +7414,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 27, RegCount: 1 -0000000000000958 626c780c221e AND{NF} r27b, byte ptr [r22] +0000000000000958 626c780c221e ANDNF r27b, byte ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -7433,7 +7433,7 @@ Operand: 1, Acc: R-, Type: Memory, Size: 1, RawSize: 1, Encoding: M, Segment: 3, Base: 22, -000000000000095E 626c780c22de AND{NF} r27b, r22b +000000000000095E 626c780c22de ANDNF r27b, r22b DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -7451,7 +7451,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 1, RawSize: 1, Encoding: R, RegType: General Purpose, RegSize: 1, RegId: 27, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 -0000000000000964 626cf80c221e AND{NF} r27b, byte ptr [r22] +0000000000000964 626cf80c221e ANDNF r27b, byte ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -7470,7 +7470,7 @@ Operand: 1, Acc: R-, Type: Memory, Size: 1, RawSize: 1, Encoding: M, Segment: 3, Base: 22, -000000000000096A 626cf80c22de AND{NF} r27b, r22b +000000000000096A 626cf80c22de ANDNF r27b, r22b DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -7488,7 +7488,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 1, RawSize: 1, Encoding: R, RegType: General Purpose, RegSize: 1, RegId: 27, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 -0000000000000970 626c780c231e AND{NF} r27d, dword ptr [r22] +0000000000000970 626c780c231e ANDNF r27d, dword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -7507,7 +7507,7 @@ Operand: 1, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, Segment: 3, Base: 22, -0000000000000976 626c780c23de AND{NF} r27d, r22d +0000000000000976 626c780c23de ANDNF r27d, r22d DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -7525,7 +7525,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 27, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 -000000000000097C 626cf80c231e AND{NF} r27, qword ptr [r22] +000000000000097C 626cf80c231e ANDNF r27, qword ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -7544,7 +7544,7 @@ Operand: 1, Acc: R-, Type: Memory, Size: 8, RawSize: 8, Encoding: M, Segment: 3, Base: 22, -0000000000000982 626cf80c23de AND{NF} r27, r22 +0000000000000982 626cf80c23de ANDNF r27, r22 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -7562,7 +7562,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 27, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 -0000000000000988 626c790c231e AND{NF} r27w, word ptr [r22] +0000000000000988 626c790c231e ANDNF r27w, word ptr [r22] DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -7581,7 +7581,7 @@ Operand: 1, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, Segment: 3, Base: 22, -000000000000098E 626c790c23de AND{NF} r27w, r22w +000000000000098E 626c790c23de ANDNF r27w, r22w DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -7599,7 +7599,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 2, RawSize: 2, Encoding: R, RegType: General Purpose, RegSize: 2, RegId: 27, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: General Purpose, RegSize: 2, RegId: 22, RegCount: 1 -0000000000000994 626cf90c231e AND{NF} r27, qword ptr [r22] +0000000000000994 626cf90c231e ANDNF r27, qword ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -7618,7 +7618,7 @@ Operand: 1, Acc: R-, Type: Memory, Size: 8, RawSize: 8, Encoding: M, Segment: 3, Base: 22, -000000000000099A 626cf90c23de AND{NF} r27, r22 +000000000000099A 626cf90c23de ANDNF r27, r22 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -7636,7 +7636,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 27, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 -00000000000009A0 626c780c8026bd AND{NF} byte ptr [r22], 0xbd +00000000000009A0 626c780c8026bd ANDNF byte ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -7655,7 +7655,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000009A7 626c780c80e6bd AND{NF} r22b, 0xbd +00000000000009A7 626c780c80e6bd ANDNF r22b, 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -7673,7 +7673,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000009AE 626cf80c8026bd AND{NF} byte ptr [r22], 0xbd +00000000000009AE 626cf80c8026bd ANDNF byte ptr [r22], 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -7692,7 +7692,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000009B5 626cf80c80e6bd AND{NF} r22b, 0xbd +00000000000009B5 626cf80c80e6bd ANDNF r22b, 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -7710,7 +7710,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000009BC 626c780c8126bdbdbdbd AND{NF} dword ptr [r22], 0xbdbdbdbd +00000000000009BC 626c780c8126bdbdbdbd ANDNF dword ptr [r22], 0xbdbdbdbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -7729,7 +7729,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Immediate, Size: 4, RawSize: 4, Encoding: I -00000000000009C6 626c780c81e6bdbdbdbd AND{NF} r22d, 0xbdbdbdbd +00000000000009C6 626c780c81e6bdbdbdbd ANDNF r22d, 0xbdbdbdbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -7747,7 +7747,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Immediate, Size: 4, RawSize: 4, Encoding: I -00000000000009D0 626cf80c8126bdbdbdbd AND{NF} qword ptr [r22], 0xbdbdbdbd +00000000000009D0 626cf80c8126bdbdbdbd ANDNF qword ptr [r22], 0xbdbdbdbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -7766,7 +7766,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Immediate, Size: 4, RawSize: 4, Encoding: I -00000000000009DA 626cf80c81e6bdbdbdbd AND{NF} r22, 0xbdbdbdbd +00000000000009DA 626cf80c81e6bdbdbdbd ANDNF r22, 0xbdbdbdbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -7784,7 +7784,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Immediate, Size: 4, RawSize: 4, Encoding: I -00000000000009E4 626c790c8126bdbd AND{NF} word ptr [r22], 0xbdbd +00000000000009E4 626c790c8126bdbd ANDNF word ptr [r22], 0xbdbd DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -7803,7 +7803,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Immediate, Size: 2, RawSize: 2, Encoding: I -00000000000009EC 626c790c81e6bdbd AND{NF} r22w, 0xbdbd +00000000000009EC 626c790c81e6bdbd ANDNF r22w, 0xbdbd DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -7821,7 +7821,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: General Purpose, RegSize: 2, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Immediate, Size: 2, RawSize: 2, Encoding: I -00000000000009F4 626cf90c8126bdbdbdbd AND{NF} qword ptr [r22], 0xbdbdbdbd +00000000000009F4 626cf90c8126bdbdbdbd ANDNF qword ptr [r22], 0xbdbdbdbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -7840,7 +7840,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Immediate, Size: 4, RawSize: 4, Encoding: I -00000000000009FE 626cf90c81e6bdbdbdbd AND{NF} r22, 0xbdbdbdbd +00000000000009FE 626cf90c81e6bdbdbdbd ANDNF r22, 0xbdbdbdbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -7858,7 +7858,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Immediate, Size: 4, RawSize: 4, Encoding: I -0000000000000A08 626c780c8326bd AND{NF} dword ptr [r22], 0xbd +0000000000000A08 626c780c8326bd ANDNF dword ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -7877,7 +7877,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000000A0F 626c780c83e6bd AND{NF} r22d, 0xbd +0000000000000A0F 626c780c83e6bd ANDNF r22d, 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -7895,7 +7895,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000000A16 626cf80c8326bd AND{NF} qword ptr [r22], 0xbd +0000000000000A16 626cf80c8326bd ANDNF qword ptr [r22], 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -7914,7 +7914,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000000A1D 626cf80c83e6bd AND{NF} r22, 0xbd +0000000000000A1D 626cf80c83e6bd ANDNF r22, 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -7932,7 +7932,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000000A24 626c790c8326bd AND{NF} word ptr [r22], 0xbd +0000000000000A24 626c790c8326bd ANDNF word ptr [r22], 0xbd DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -7951,7 +7951,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000000A2B 626c790c83e6bd AND{NF} r22w, 0xbd +0000000000000A2B 626c790c83e6bd ANDNF r22w, 0xbd DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -7969,7 +7969,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: General Purpose, RegSize: 2, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000000A32 626cf90c8326bd AND{NF} qword ptr [r22], 0xbd +0000000000000A32 626cf90c8326bd ANDNF qword ptr [r22], 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -7988,7 +7988,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000000A39 626cf90c83e6bd AND{NF} r22, 0xbd +0000000000000A39 626cf90c83e6bd ANDNF r22, 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -8996,7 +8996,7 @@ Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000000B70 626c781c201e AND{NF} al, byte ptr [r22], r27b +0000000000000B70 626c781c201e ANDNF al, byte ptr [r22], r27b DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -9016,7 +9016,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: R, RegType: General Purpose, RegSize: 1, RegId: 27, RegCount: 1 -0000000000000B76 626c781c20de AND{NF} al, r22b, r27b +0000000000000B76 626c781c20de ANDNF al, r22b, r27b DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -9035,7 +9035,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: R, RegType: General Purpose, RegSize: 1, RegId: 27, RegCount: 1 -0000000000000B7C 626cf81c201e AND{NF} al, byte ptr [r22], r27b +0000000000000B7C 626cf81c201e ANDNF al, byte ptr [r22], r27b DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -9055,7 +9055,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: R, RegType: General Purpose, RegSize: 1, RegId: 27, RegCount: 1 -0000000000000B82 626cf81c20de AND{NF} al, r22b, r27b +0000000000000B82 626cf81c20de ANDNF al, r22b, r27b DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -9074,7 +9074,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: R, RegType: General Purpose, RegSize: 1, RegId: 27, RegCount: 1 -0000000000000B88 626c781c211e AND{NF} eax, dword ptr [r22], r27d +0000000000000B88 626c781c211e ANDNF eax, dword ptr [r22], r27d DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -9094,7 +9094,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 27, RegCount: 1 -0000000000000B8E 626c781c21de AND{NF} eax, r22d, r27d +0000000000000B8E 626c781c21de ANDNF eax, r22d, r27d DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -9113,7 +9113,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 27, RegCount: 1 -0000000000000B94 626cf81c211e AND{NF} rax, qword ptr [r22], r27 +0000000000000B94 626cf81c211e ANDNF rax, qword ptr [r22], r27 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -9133,7 +9133,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 27, RegCount: 1 -0000000000000B9A 626cf81c21de AND{NF} rax, r22, r27 +0000000000000B9A 626cf81c21de ANDNF rax, r22, r27 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -9152,7 +9152,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 27, RegCount: 1 -0000000000000BA0 626c791c211e AND{NF} ax, word ptr [r22], r27w +0000000000000BA0 626c791c211e ANDNF ax, word ptr [r22], r27w DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -9172,7 +9172,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: R, RegType: General Purpose, RegSize: 2, RegId: 27, RegCount: 1 -0000000000000BA6 626c791c21de AND{NF} ax, r22w, r27w +0000000000000BA6 626c791c21de ANDNF ax, r22w, r27w DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -9191,7 +9191,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: General Purpose, RegSize: 2, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: R, RegType: General Purpose, RegSize: 2, RegId: 27, RegCount: 1 -0000000000000BAC 626cf91c211e AND{NF} rax, qword ptr [r22], r27 +0000000000000BAC 626cf91c211e ANDNF rax, qword ptr [r22], r27 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -9211,7 +9211,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 27, RegCount: 1 -0000000000000BB2 626cf91c21de AND{NF} rax, r22, r27 +0000000000000BB2 626cf91c21de ANDNF rax, r22, r27 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -9230,7 +9230,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 27, RegCount: 1 -0000000000000BB8 626c781c221e AND{NF} al, r27b, byte ptr [r22] +0000000000000BB8 626c781c221e ANDNF al, r27b, byte ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -9250,7 +9250,7 @@ Operand: 2, Acc: R-, Type: Memory, Size: 1, RawSize: 1, Encoding: M, Segment: 3, Base: 22, -0000000000000BBE 626c781c22de AND{NF} al, r27b, r22b +0000000000000BBE 626c781c22de ANDNF al, r27b, r22b DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -9269,7 +9269,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: R, RegType: General Purpose, RegSize: 1, RegId: 27, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 -0000000000000BC4 626cf81c221e AND{NF} al, r27b, byte ptr [r22] +0000000000000BC4 626cf81c221e ANDNF al, r27b, byte ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -9289,7 +9289,7 @@ Operand: 2, Acc: R-, Type: Memory, Size: 1, RawSize: 1, Encoding: M, Segment: 3, Base: 22, -0000000000000BCA 626cf81c22de AND{NF} al, r27b, r22b +0000000000000BCA 626cf81c22de ANDNF al, r27b, r22b DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -9308,7 +9308,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: R, RegType: General Purpose, RegSize: 1, RegId: 27, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 -0000000000000BD0 626c781c231e AND{NF} eax, r27d, dword ptr [r22] +0000000000000BD0 626c781c231e ANDNF eax, r27d, dword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -9328,7 +9328,7 @@ Operand: 2, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, Segment: 3, Base: 22, -0000000000000BD6 626c781c23de AND{NF} eax, r27d, r22d +0000000000000BD6 626c781c23de ANDNF eax, r27d, r22d DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -9347,7 +9347,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 27, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 -0000000000000BDC 626cf81c231e AND{NF} rax, r27, qword ptr [r22] +0000000000000BDC 626cf81c231e ANDNF rax, r27, qword ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -9367,7 +9367,7 @@ Operand: 2, Acc: R-, Type: Memory, Size: 8, RawSize: 8, Encoding: M, Segment: 3, Base: 22, -0000000000000BE2 626cf81c23de AND{NF} rax, r27, r22 +0000000000000BE2 626cf81c23de ANDNF rax, r27, r22 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -9386,7 +9386,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 27, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 -0000000000000BE8 626c791c231e AND{NF} ax, r27w, word ptr [r22] +0000000000000BE8 626c791c231e ANDNF ax, r27w, word ptr [r22] DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -9406,7 +9406,7 @@ Operand: 2, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, Segment: 3, Base: 22, -0000000000000BEE 626c791c23de AND{NF} ax, r27w, r22w +0000000000000BEE 626c791c23de ANDNF ax, r27w, r22w DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -9425,7 +9425,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: R, RegType: General Purpose, RegSize: 2, RegId: 27, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: General Purpose, RegSize: 2, RegId: 22, RegCount: 1 -0000000000000BF4 626cf91c231e AND{NF} rax, r27, qword ptr [r22] +0000000000000BF4 626cf91c231e ANDNF rax, r27, qword ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -9445,7 +9445,7 @@ Operand: 2, Acc: R-, Type: Memory, Size: 8, RawSize: 8, Encoding: M, Segment: 3, Base: 22, -0000000000000BFA 626cf91c23de AND{NF} rax, r27, r22 +0000000000000BFA 626cf91c23de ANDNF rax, r27, r22 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -9464,7 +9464,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 27, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 -0000000000000C00 626c781c8026bd AND{NF} al, byte ptr [r22], 0xbd +0000000000000C00 626c781c8026bd ANDNF al, byte ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -9484,7 +9484,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000000C07 626c781c80e6bd AND{NF} al, r22b, 0xbd +0000000000000C07 626c781c80e6bd ANDNF al, r22b, 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -9503,7 +9503,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000000C0E 626cf81c8026bd AND{NF} al, byte ptr [r22], 0xbd +0000000000000C0E 626cf81c8026bd ANDNF al, byte ptr [r22], 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -9523,7 +9523,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000000C15 626cf81c80e6bd AND{NF} al, r22b, 0xbd +0000000000000C15 626cf81c80e6bd ANDNF al, r22b, 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -9542,7 +9542,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000000C1C 626c781c8126bdbdbdbd AND{NF} eax, dword ptr [r22], 0xbdbdbdbd +0000000000000C1C 626c781c8126bdbdbdbd ANDNF eax, dword ptr [r22], 0xbdbdbdbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -9562,7 +9562,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 4, RawSize: 4, Encoding: I -0000000000000C26 626c781c81e6bdbdbdbd AND{NF} eax, r22d, 0xbdbdbdbd +0000000000000C26 626c781c81e6bdbdbdbd ANDNF eax, r22d, 0xbdbdbdbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -9581,7 +9581,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 4, RawSize: 4, Encoding: I -0000000000000C30 626cf81c8126bdbdbdbd AND{NF} rax, qword ptr [r22], 0xbdbdbdbd +0000000000000C30 626cf81c8126bdbdbdbd ANDNF rax, qword ptr [r22], 0xbdbdbdbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -9601,7 +9601,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 4, RawSize: 4, Encoding: I -0000000000000C3A 626cf81c81e6bdbdbdbd AND{NF} rax, r22, 0xbdbdbdbd +0000000000000C3A 626cf81c81e6bdbdbdbd ANDNF rax, r22, 0xbdbdbdbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -9620,7 +9620,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 4, RawSize: 4, Encoding: I -0000000000000C44 626c791c8126bdbd AND{NF} ax, word ptr [r22], 0xbdbd +0000000000000C44 626c791c8126bdbd ANDNF ax, word ptr [r22], 0xbdbd DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -9640,7 +9640,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 2, RawSize: 2, Encoding: I -0000000000000C4C 626c791c81e6bdbd AND{NF} ax, r22w, 0xbdbd +0000000000000C4C 626c791c81e6bdbd ANDNF ax, r22w, 0xbdbd DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -9659,7 +9659,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: General Purpose, RegSize: 2, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 2, RawSize: 2, Encoding: I -0000000000000C54 626cf91c8126bdbdbdbd AND{NF} rax, qword ptr [r22], 0xbdbdbdbd +0000000000000C54 626cf91c8126bdbdbdbd ANDNF rax, qword ptr [r22], 0xbdbdbdbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -9679,7 +9679,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 4, RawSize: 4, Encoding: I -0000000000000C5E 626cf91c81e6bdbdbdbd AND{NF} rax, r22, 0xbdbdbdbd +0000000000000C5E 626cf91c81e6bdbdbdbd ANDNF rax, r22, 0xbdbdbdbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -9698,7 +9698,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 4, RawSize: 4, Encoding: I -0000000000000C68 626c781c8326bd AND{NF} eax, dword ptr [r22], 0xbd +0000000000000C68 626c781c8326bd ANDNF eax, dword ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -9718,7 +9718,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000000C6F 626c781c83e6bd AND{NF} eax, r22d, 0xbd +0000000000000C6F 626c781c83e6bd ANDNF eax, r22d, 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -9737,7 +9737,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000000C76 626cf81c8326bd AND{NF} rax, qword ptr [r22], 0xbd +0000000000000C76 626cf81c8326bd ANDNF rax, qword ptr [r22], 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -9757,7 +9757,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000000C7D 626cf81c83e6bd AND{NF} rax, r22, 0xbd +0000000000000C7D 626cf81c83e6bd ANDNF rax, r22, 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -9776,7 +9776,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000000C84 626c791c8326bd AND{NF} ax, word ptr [r22], 0xbd +0000000000000C84 626c791c8326bd ANDNF ax, word ptr [r22], 0xbd DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -9796,7 +9796,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000000C8B 626c791c83e6bd AND{NF} ax, r22w, 0xbd +0000000000000C8B 626c791c83e6bd ANDNF ax, r22w, 0xbd DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -9815,7 +9815,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: General Purpose, RegSize: 2, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000000C92 626cf91c8326bd AND{NF} rax, qword ptr [r22], 0xbd +0000000000000C92 626cf91c8326bd ANDNF rax, qword ptr [r22], 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -9835,7 +9835,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000000C99 626cf91c83e6bd AND{NF} rax, r22, 0xbd +0000000000000C99 626cf91c83e6bd ANDNF rax, r22, 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -9944,7 +9944,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000000CB8 62fa780cf21e ANDN{NF} ebx, eax, dword ptr [r22] +0000000000000CB8 62fa780cf21e ANDNNF ebx, eax, dword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: BMI1, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -9964,7 +9964,7 @@ Operand: 2, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, Segment: 3, Base: 22, -0000000000000CBE 62fa780cf2de ANDN{NF} ebx, eax, r22d +0000000000000CBE 62fa780cf2de ANDNNF ebx, eax, r22d DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: BMI1, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -9983,7 +9983,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: V, RegType: General Purpose, RegSize: 4, RegId: 0, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 -0000000000000CC4 62faf80cf21e ANDN{NF} rbx, rax, qword ptr [r22] +0000000000000CC4 62faf80cf21e ANDNNF rbx, rax, qword ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: BMI1, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -10003,7 +10003,7 @@ Operand: 2, Acc: R-, Type: Memory, Size: 8, RawSize: 8, Encoding: M, Segment: 3, Base: 22, -0000000000000CCA 62faf80cf2de ANDN{NF} rbx, rax, r22 +0000000000000CCA 62faf80cf2de ANDNNF rbx, rax, r22 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: BMI1, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -10112,7 +10112,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: V, RegType: General Purpose, RegSize: 8, RegId: 0, RegCount: 1 Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000000CE8 62fa780cf71e BEXTR{NF} ebx, dword ptr [r22], eax +0000000000000CE8 62fa780cf71e BEXTRNF ebx, dword ptr [r22], eax DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: BMI1, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -10132,7 +10132,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: V, RegType: General Purpose, RegSize: 4, RegId: 0, RegCount: 1 -0000000000000CEE 62fa780cf7de BEXTR{NF} ebx, r22d, eax +0000000000000CEE 62fa780cf7de BEXTRNF ebx, r22d, eax DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: BMI1, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -10151,7 +10151,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: V, RegType: General Purpose, RegSize: 4, RegId: 0, RegCount: 1 -0000000000000CF4 62faf80cf71e BEXTR{NF} rbx, qword ptr [r22], rax +0000000000000CF4 62faf80cf71e BEXTRNF rbx, qword ptr [r22], rax DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: BMI1, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -10171,7 +10171,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: V, RegType: General Purpose, RegSize: 8, RegId: 0, RegCount: 1 -0000000000000CFA 62faf80cf7de BEXTR{NF} rbx, r22, rax +0000000000000CFA 62faf80cf7de BEXTRNF rbx, r22, rax DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: BMI1, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -10276,7 +10276,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 2, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000000D18 62fa780cf31e BLSI{NF} eax, dword ptr [r22] +0000000000000D18 62fa780cf31e BLSINF eax, dword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: BMI1, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -10295,7 +10295,7 @@ Operand: 1, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, Segment: 3, Base: 22, -0000000000000D1E 62fa780cf3de BLSI{NF} eax, r22d +0000000000000D1E 62fa780cf3de BLSINF eax, r22d DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: BMI1, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -10313,7 +10313,7 @@ Operand: 0, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: V, RegType: General Purpose, RegSize: 4, RegId: 0, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 -0000000000000D24 62faf80cf31e BLSI{NF} rax, qword ptr [r22] +0000000000000D24 62faf80cf31e BLSINF rax, qword ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: BMI1, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -10332,7 +10332,7 @@ Operand: 1, Acc: R-, Type: Memory, Size: 8, RawSize: 8, Encoding: M, Segment: 3, Base: 22, -0000000000000D2A 62faf80cf3de BLSI{NF} rax, r22 +0000000000000D2A 62faf80cf3de BLSINF rax, r22 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: BMI1, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -10436,7 +10436,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 2, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000000D48 62fa780cf316 BLSMSK{NF} eax, dword ptr [r22] +0000000000000D48 62fa780cf316 BLSMSKNF eax, dword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: BMI1, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -10455,7 +10455,7 @@ Operand: 1, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, Segment: 3, Base: 22, -0000000000000D4E 62fa780cf3d6 BLSMSK{NF} eax, r22d +0000000000000D4E 62fa780cf3d6 BLSMSKNF eax, r22d DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: BMI1, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -10473,7 +10473,7 @@ Operand: 0, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: V, RegType: General Purpose, RegSize: 4, RegId: 0, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 -0000000000000D54 62faf80cf316 BLSMSK{NF} rax, qword ptr [r22] +0000000000000D54 62faf80cf316 BLSMSKNF rax, qword ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: BMI1, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -10492,7 +10492,7 @@ Operand: 1, Acc: R-, Type: Memory, Size: 8, RawSize: 8, Encoding: M, Segment: 3, Base: 22, -0000000000000D5A 62faf80cf3d6 BLSMSK{NF} rax, r22 +0000000000000D5A 62faf80cf3d6 BLSMSKNF rax, r22 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: BMI1, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -10596,7 +10596,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 2, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000000D78 62fa780cf30e BLSR{NF} eax, dword ptr [r22] +0000000000000D78 62fa780cf30e BLSRNF eax, dword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: BMI1, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -10615,7 +10615,7 @@ Operand: 1, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, Segment: 3, Base: 22, -0000000000000D7E 62fa780cf3ce BLSR{NF} eax, r22d +0000000000000D7E 62fa780cf3ce BLSRNF eax, r22d DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: BMI1, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -10633,7 +10633,7 @@ Operand: 0, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: V, RegType: General Purpose, RegSize: 4, RegId: 0, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 -0000000000000D84 62faf80cf30e BLSR{NF} rax, qword ptr [r22] +0000000000000D84 62faf80cf30e BLSRNF rax, qword ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: BMI1, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -10652,7 +10652,7 @@ Operand: 1, Acc: R-, Type: Memory, Size: 8, RawSize: 8, Encoding: M, Segment: 3, Base: 22, -0000000000000D8A 62faf80cf3ce BLSR{NF} rax, r22 +0000000000000D8A 62faf80cf3ce BLSRNF rax, r22 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: BMI1, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -10760,7 +10760,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: V, RegType: General Purpose, RegSize: 8, RegId: 0, RegCount: 1 Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000000DA8 62fa780cf51e BZHI{NF} ebx, dword ptr [r22], eax +0000000000000DA8 62fa780cf51e BZHINF ebx, dword ptr [r22], eax DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: BMI2, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -10780,7 +10780,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: V, RegType: General Purpose, RegSize: 4, RegId: 0, RegCount: 1 -0000000000000DAE 62fa780cf5de BZHI{NF} ebx, r22d, eax +0000000000000DAE 62fa780cf5de BZHINF ebx, r22d, eax DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: BMI2, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -10799,7 +10799,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: V, RegType: General Purpose, RegSize: 4, RegId: 0, RegCount: 1 -0000000000000DB4 62faf80cf51e BZHI{NF} rbx, qword ptr [r22], rax +0000000000000DB4 62faf80cf51e BZHINF rbx, qword ptr [r22], rax DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: BMI2, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -10819,7 +10819,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: V, RegType: General Purpose, RegSize: 8, RegId: 0, RegCount: 1 -0000000000000DBA 62faf80cf5de BZHI{NF} rbx, r22, rax +0000000000000DBA 62faf80cf5de BZHINF rbx, r22, rax DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: BMI2, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -10838,7 +10838,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: V, RegType: General Purpose, RegSize: 8, RegId: 0, RegCount: 1 -0000000000000DC0 626c7806381e CCMPBE byte ptr [r22], r27b, 0000 +0000000000000DC0 626c7806381e CCMPBE byte ptr [r22], r27b, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -10861,7 +10861,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000000DC6 626c780638de CCMPBE r22b, r27b, 0000 +0000000000000DC6 626c780638de CCMPBE r22b, r27b, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -10883,7 +10883,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000000DCC 626cf806381e CCMPBE byte ptr [r22], r27b, 0000 +0000000000000DCC 626cf806381e CCMPBE byte ptr [r22], r27b, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -10906,7 +10906,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000000DD2 626cf80638de CCMPBE r22b, r27b, 0000 +0000000000000DD2 626cf80638de CCMPBE r22b, r27b, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -10928,7 +10928,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000000DD8 626c7806391e CCMPBE dword ptr [r22], r27d, 0000 +0000000000000DD8 626c7806391e CCMPBE dword ptr [r22], r27d, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -10951,7 +10951,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000000DDE 626c780639de CCMPBE r22d, r27d, 0000 +0000000000000DDE 626c780639de CCMPBE r22d, r27d, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -10973,7 +10973,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000000DE4 626cf806391e CCMPBE qword ptr [r22], r27, 0000 +0000000000000DE4 626cf806391e CCMPBE qword ptr [r22], r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -10996,7 +10996,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000000DEA 626cf80639de CCMPBE r22, r27, 0000 +0000000000000DEA 626cf80639de CCMPBE r22, r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -11018,7 +11018,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000000DF0 626c7906391e CCMPBE word ptr [r22], r27w, 0000 +0000000000000DF0 626c7906391e CCMPBE word ptr [r22], r27w, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -11041,7 +11041,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000000DF6 626c790639de CCMPBE r22w, r27w, 0000 +0000000000000DF6 626c790639de CCMPBE r22w, r27w, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -11063,7 +11063,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000000DFC 626cf906391e CCMPBE qword ptr [r22], r27, 0000 +0000000000000DFC 626cf906391e CCMPBE qword ptr [r22], r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -11086,7 +11086,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000000E02 626cf90639de CCMPBE r22, r27, 0000 +0000000000000E02 626cf90639de CCMPBE r22, r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -11108,7 +11108,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000000E08 626c78063a1e CCMPBE r27b, byte ptr [r22], 0000 +0000000000000E08 626c78063a1e CCMPBE r27b, byte ptr [r22], {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -11131,7 +11131,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000000E0E 626c78063ade CCMPBE r27b, r22b, 0000 +0000000000000E0E 626c78063ade CCMPBE r27b, r22b, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -11153,7 +11153,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000000E14 626cf8063a1e CCMPBE r27b, byte ptr [r22], 0000 +0000000000000E14 626cf8063a1e CCMPBE r27b, byte ptr [r22], {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -11176,7 +11176,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000000E1A 626cf8063ade CCMPBE r27b, r22b, 0000 +0000000000000E1A 626cf8063ade CCMPBE r27b, r22b, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -11198,7 +11198,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000000E20 626c78063b1e CCMPBE r27d, dword ptr [r22], 0000 +0000000000000E20 626c78063b1e CCMPBE r27d, dword ptr [r22], {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -11221,7 +11221,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000000E26 626c78063bde CCMPBE r27d, r22d, 0000 +0000000000000E26 626c78063bde CCMPBE r27d, r22d, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -11243,7 +11243,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000000E2C 626cf8063b1e CCMPBE r27, qword ptr [r22], 0000 +0000000000000E2C 626cf8063b1e CCMPBE r27, qword ptr [r22], {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -11266,7 +11266,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000000E32 626cf8063bde CCMPBE r27, r22, 0000 +0000000000000E32 626cf8063bde CCMPBE r27, r22, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -11288,7 +11288,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000000E38 626c79063b1e CCMPBE r27w, word ptr [r22], 0000 +0000000000000E38 626c79063b1e CCMPBE r27w, word ptr [r22], {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -11311,7 +11311,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000000E3E 626c79063bde CCMPBE r27w, r22w, 0000 +0000000000000E3E 626c79063bde CCMPBE r27w, r22w, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -11333,7 +11333,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000000E44 626cf9063b1e CCMPBE r27, qword ptr [r22], 0000 +0000000000000E44 626cf9063b1e CCMPBE r27, qword ptr [r22], {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -11356,7 +11356,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000000E4A 626cf9063bde CCMPBE r27, r22, 0000 +0000000000000E4A 626cf9063bde CCMPBE r27, r22, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -11378,7 +11378,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000000E50 626c7806803ebd CCMPBE byte ptr [r22], 0xbd, 0000 +0000000000000E50 626c7806803ebd CCMPBE byte ptr [r22], 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -11401,7 +11401,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000000E57 626c780680febd CCMPBE r22b, 0xbd, 0000 +0000000000000E57 626c780680febd CCMPBE r22b, 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -11423,7 +11423,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000000E5E 626cf806803ebd CCMPBE byte ptr [r22], 0xbd, 0000 +0000000000000E5E 626cf806803ebd CCMPBE byte ptr [r22], 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -11446,7 +11446,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000000E65 626cf80680febd CCMPBE r22b, 0xbd, 0000 +0000000000000E65 626cf80680febd CCMPBE r22b, 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -11468,7 +11468,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000000E6C 626c7806813ebdbdbdbd CCMPBE dword ptr [r22], 0xbdbdbdbd, 0000 +0000000000000E6C 626c7806813ebdbdbdbd CCMPBE dword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -11491,7 +11491,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000000E76 626c780681febdbdbdbd CCMPBE r22d, 0xbdbdbdbd, 0000 +0000000000000E76 626c780681febdbdbdbd CCMPBE r22d, 0xbdbdbdbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -11513,7 +11513,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000000E80 626cf806813ebdbdbdbd CCMPBE qword ptr [r22], 0xbdbdbdbd, 0000 +0000000000000E80 626cf806813ebdbdbdbd CCMPBE qword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -11536,7 +11536,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000000E8A 626cf80681febdbdbdbd CCMPBE r22, 0xbdbdbdbd, 0000 +0000000000000E8A 626cf80681febdbdbdbd CCMPBE r22, 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -11558,7 +11558,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000000E94 626c7906813ebdbd CCMPBE word ptr [r22], 0xbdbd, 0000 +0000000000000E94 626c7906813ebdbd CCMPBE word ptr [r22], 0xbdbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -11581,7 +11581,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000000E9C 626c790681febdbd CCMPBE r22w, 0xbdbd, 0000 +0000000000000E9C 626c790681febdbd CCMPBE r22w, 0xbdbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -11603,7 +11603,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000000EA4 626cf906813ebdbdbdbd CCMPBE qword ptr [r22], 0xbdbdbdbd, 0000 +0000000000000EA4 626cf906813ebdbdbdbd CCMPBE qword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -11626,7 +11626,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000000EAE 626cf90681febdbdbdbd CCMPBE r22, 0xbdbdbdbd, 0000 +0000000000000EAE 626cf90681febdbdbdbd CCMPBE r22, 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -11648,7 +11648,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000000EB8 626c7806833ebd CCMPBE dword ptr [r22], 0xbd, 0000 +0000000000000EB8 626c7806833ebd CCMPBE dword ptr [r22], 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -11671,7 +11671,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000000EBF 626c780683febd CCMPBE r22d, 0xbd, 0000 +0000000000000EBF 626c780683febd CCMPBE r22d, 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -11693,7 +11693,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000000EC6 626cf806833ebd CCMPBE qword ptr [r22], 0xbd, 0000 +0000000000000EC6 626cf806833ebd CCMPBE qword ptr [r22], 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -11716,7 +11716,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000000ECD 626cf80683febd CCMPBE r22, 0xbd, 0000 +0000000000000ECD 626cf80683febd CCMPBE r22, 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -11738,7 +11738,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000000ED4 626c7906833ebd CCMPBE word ptr [r22], 0xbd, 0000 +0000000000000ED4 626c7906833ebd CCMPBE word ptr [r22], 0xbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -11761,7 +11761,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000000EDB 626c790683febd CCMPBE r22w, 0xbd, 0000 +0000000000000EDB 626c790683febd CCMPBE r22w, 0xbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -11783,7 +11783,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000000EE2 626cf906833ebd CCMPBE qword ptr [r22], 0xbd, 0000 +0000000000000EE2 626cf906833ebd CCMPBE qword ptr [r22], 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -11806,7 +11806,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000000EE9 626cf90683febd CCMPBE r22, 0xbd, 0000 +0000000000000EE9 626cf90683febd CCMPBE r22, 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -11828,7 +11828,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000000EF0 626c7802381e CCMPC byte ptr [r22], r27b, 0000 +0000000000000EF0 626c7802381e CCMPC byte ptr [r22], r27b, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -11851,7 +11851,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000000EF6 626c780238de CCMPC r22b, r27b, 0000 +0000000000000EF6 626c780238de CCMPC r22b, r27b, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -11873,7 +11873,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000000EFC 626cf802381e CCMPC byte ptr [r22], r27b, 0000 +0000000000000EFC 626cf802381e CCMPC byte ptr [r22], r27b, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -11896,7 +11896,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000000F02 626cf80238de CCMPC r22b, r27b, 0000 +0000000000000F02 626cf80238de CCMPC r22b, r27b, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -11918,7 +11918,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000000F08 626c7802391e CCMPC dword ptr [r22], r27d, 0000 +0000000000000F08 626c7802391e CCMPC dword ptr [r22], r27d, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -11941,7 +11941,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000000F0E 626c780239de CCMPC r22d, r27d, 0000 +0000000000000F0E 626c780239de CCMPC r22d, r27d, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -11963,7 +11963,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000000F14 626cf802391e CCMPC qword ptr [r22], r27, 0000 +0000000000000F14 626cf802391e CCMPC qword ptr [r22], r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -11986,7 +11986,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000000F1A 626cf80239de CCMPC r22, r27, 0000 +0000000000000F1A 626cf80239de CCMPC r22, r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -12008,7 +12008,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000000F20 626c7902391e CCMPC word ptr [r22], r27w, 0000 +0000000000000F20 626c7902391e CCMPC word ptr [r22], r27w, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -12031,7 +12031,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000000F26 626c790239de CCMPC r22w, r27w, 0000 +0000000000000F26 626c790239de CCMPC r22w, r27w, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -12053,7 +12053,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000000F2C 626cf902391e CCMPC qword ptr [r22], r27, 0000 +0000000000000F2C 626cf902391e CCMPC qword ptr [r22], r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -12076,7 +12076,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000000F32 626cf90239de CCMPC r22, r27, 0000 +0000000000000F32 626cf90239de CCMPC r22, r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -12098,7 +12098,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000000F38 626c78023a1e CCMPC r27b, byte ptr [r22], 0000 +0000000000000F38 626c78023a1e CCMPC r27b, byte ptr [r22], {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -12121,7 +12121,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000000F3E 626c78023ade CCMPC r27b, r22b, 0000 +0000000000000F3E 626c78023ade CCMPC r27b, r22b, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -12143,7 +12143,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000000F44 626cf8023a1e CCMPC r27b, byte ptr [r22], 0000 +0000000000000F44 626cf8023a1e CCMPC r27b, byte ptr [r22], {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -12166,7 +12166,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000000F4A 626cf8023ade CCMPC r27b, r22b, 0000 +0000000000000F4A 626cf8023ade CCMPC r27b, r22b, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -12188,7 +12188,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000000F50 626c78023b1e CCMPC r27d, dword ptr [r22], 0000 +0000000000000F50 626c78023b1e CCMPC r27d, dword ptr [r22], {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -12211,7 +12211,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000000F56 626c78023bde CCMPC r27d, r22d, 0000 +0000000000000F56 626c78023bde CCMPC r27d, r22d, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -12233,7 +12233,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000000F5C 626cf8023b1e CCMPC r27, qword ptr [r22], 0000 +0000000000000F5C 626cf8023b1e CCMPC r27, qword ptr [r22], {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -12256,7 +12256,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000000F62 626cf8023bde CCMPC r27, r22, 0000 +0000000000000F62 626cf8023bde CCMPC r27, r22, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -12278,7 +12278,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000000F68 626c79023b1e CCMPC r27w, word ptr [r22], 0000 +0000000000000F68 626c79023b1e CCMPC r27w, word ptr [r22], {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -12301,7 +12301,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000000F6E 626c79023bde CCMPC r27w, r22w, 0000 +0000000000000F6E 626c79023bde CCMPC r27w, r22w, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -12323,7 +12323,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000000F74 626cf9023b1e CCMPC r27, qword ptr [r22], 0000 +0000000000000F74 626cf9023b1e CCMPC r27, qword ptr [r22], {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -12346,7 +12346,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000000F7A 626cf9023bde CCMPC r27, r22, 0000 +0000000000000F7A 626cf9023bde CCMPC r27, r22, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -12368,7 +12368,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000000F80 626c7802803ebd CCMPC byte ptr [r22], 0xbd, 0000 +0000000000000F80 626c7802803ebd CCMPC byte ptr [r22], 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -12391,7 +12391,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000000F87 626c780280febd CCMPC r22b, 0xbd, 0000 +0000000000000F87 626c780280febd CCMPC r22b, 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -12413,7 +12413,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000000F8E 626cf802803ebd CCMPC byte ptr [r22], 0xbd, 0000 +0000000000000F8E 626cf802803ebd CCMPC byte ptr [r22], 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -12436,7 +12436,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000000F95 626cf80280febd CCMPC r22b, 0xbd, 0000 +0000000000000F95 626cf80280febd CCMPC r22b, 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -12458,7 +12458,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000000F9C 626c7802813ebdbdbdbd CCMPC dword ptr [r22], 0xbdbdbdbd, 0000 +0000000000000F9C 626c7802813ebdbdbdbd CCMPC dword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -12481,7 +12481,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000000FA6 626c780281febdbdbdbd CCMPC r22d, 0xbdbdbdbd, 0000 +0000000000000FA6 626c780281febdbdbdbd CCMPC r22d, 0xbdbdbdbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -12503,7 +12503,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000000FB0 626cf802813ebdbdbdbd CCMPC qword ptr [r22], 0xbdbdbdbd, 0000 +0000000000000FB0 626cf802813ebdbdbdbd CCMPC qword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -12526,7 +12526,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000000FBA 626cf80281febdbdbdbd CCMPC r22, 0xbdbdbdbd, 0000 +0000000000000FBA 626cf80281febdbdbdbd CCMPC r22, 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -12548,7 +12548,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000000FC4 626c7902813ebdbd CCMPC word ptr [r22], 0xbdbd, 0000 +0000000000000FC4 626c7902813ebdbd CCMPC word ptr [r22], 0xbdbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -12571,7 +12571,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000000FCC 626c790281febdbd CCMPC r22w, 0xbdbd, 0000 +0000000000000FCC 626c790281febdbd CCMPC r22w, 0xbdbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -12593,7 +12593,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000000FD4 626cf902813ebdbdbdbd CCMPC qword ptr [r22], 0xbdbdbdbd, 0000 +0000000000000FD4 626cf902813ebdbdbdbd CCMPC qword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -12616,7 +12616,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000000FDE 626cf90281febdbdbdbd CCMPC r22, 0xbdbdbdbd, 0000 +0000000000000FDE 626cf90281febdbdbdbd CCMPC r22, 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -12638,7 +12638,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000000FE8 626c7802833ebd CCMPC dword ptr [r22], 0xbd, 0000 +0000000000000FE8 626c7802833ebd CCMPC dword ptr [r22], 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -12661,7 +12661,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000000FEF 626c780283febd CCMPC r22d, 0xbd, 0000 +0000000000000FEF 626c780283febd CCMPC r22d, 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -12683,7 +12683,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000000FF6 626cf802833ebd CCMPC qword ptr [r22], 0xbd, 0000 +0000000000000FF6 626cf802833ebd CCMPC qword ptr [r22], 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -12706,7 +12706,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000000FFD 626cf80283febd CCMPC r22, 0xbd, 0000 +0000000000000FFD 626cf80283febd CCMPC r22, 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -12728,7 +12728,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001004 626c7902833ebd CCMPC word ptr [r22], 0xbd, 0000 +0000000000001004 626c7902833ebd CCMPC word ptr [r22], 0xbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -12751,7 +12751,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -000000000000100B 626c790283febd CCMPC r22w, 0xbd, 0000 +000000000000100B 626c790283febd CCMPC r22w, 0xbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -12773,7 +12773,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000001012 626cf902833ebd CCMPC qword ptr [r22], 0xbd, 0000 +0000000000001012 626cf902833ebd CCMPC qword ptr [r22], 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -12796,7 +12796,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001019 626cf90283febd CCMPC r22, 0xbd, 0000 +0000000000001019 626cf90283febd CCMPC r22, 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -12818,7 +12818,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001020 626c780b381e CCMPF byte ptr [r22], r27b, 0000 +0000000000001020 626c780b381e CCMPF byte ptr [r22], r27b, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -12841,7 +12841,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001026 626c780b38de CCMPF r22b, r27b, 0000 +0000000000001026 626c780b38de CCMPF r22b, r27b, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -12863,7 +12863,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -000000000000102C 626cf80b381e CCMPF byte ptr [r22], r27b, 0000 +000000000000102C 626cf80b381e CCMPF byte ptr [r22], r27b, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -12886,7 +12886,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001032 626cf80b38de CCMPF r22b, r27b, 0000 +0000000000001032 626cf80b38de CCMPF r22b, r27b, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -12908,7 +12908,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001038 626c780b391e CCMPF dword ptr [r22], r27d, 0000 +0000000000001038 626c780b391e CCMPF dword ptr [r22], r27d, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -12931,7 +12931,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -000000000000103E 626c780b39de CCMPF r22d, r27d, 0000 +000000000000103E 626c780b39de CCMPF r22d, r27d, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -12953,7 +12953,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001044 626cf80b391e CCMPF qword ptr [r22], r27, 0000 +0000000000001044 626cf80b391e CCMPF qword ptr [r22], r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -12976,7 +12976,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -000000000000104A 626cf80b39de CCMPF r22, r27, 0000 +000000000000104A 626cf80b39de CCMPF r22, r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -12998,7 +12998,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001050 626c790b391e CCMPF word ptr [r22], r27w, 0000 +0000000000001050 626c790b391e CCMPF word ptr [r22], r27w, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -13021,7 +13021,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000001056 626c790b39de CCMPF r22w, r27w, 0000 +0000000000001056 626c790b39de CCMPF r22w, r27w, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -13043,7 +13043,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -000000000000105C 626cf90b391e CCMPF qword ptr [r22], r27, 0000 +000000000000105C 626cf90b391e CCMPF qword ptr [r22], r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -13066,7 +13066,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001062 626cf90b39de CCMPF r22, r27, 0000 +0000000000001062 626cf90b39de CCMPF r22, r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -13088,7 +13088,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001068 626c780b3a1e CCMPF r27b, byte ptr [r22], 0000 +0000000000001068 626c780b3a1e CCMPF r27b, byte ptr [r22], {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -13111,7 +13111,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -000000000000106E 626c780b3ade CCMPF r27b, r22b, 0000 +000000000000106E 626c780b3ade CCMPF r27b, r22b, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -13133,7 +13133,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001074 626cf80b3a1e CCMPF r27b, byte ptr [r22], 0000 +0000000000001074 626cf80b3a1e CCMPF r27b, byte ptr [r22], {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -13156,7 +13156,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -000000000000107A 626cf80b3ade CCMPF r27b, r22b, 0000 +000000000000107A 626cf80b3ade CCMPF r27b, r22b, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -13178,7 +13178,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001080 626c780b3b1e CCMPF r27d, dword ptr [r22], 0000 +0000000000001080 626c780b3b1e CCMPF r27d, dword ptr [r22], {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -13201,7 +13201,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001086 626c780b3bde CCMPF r27d, r22d, 0000 +0000000000001086 626c780b3bde CCMPF r27d, r22d, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -13223,7 +13223,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -000000000000108C 626cf80b3b1e CCMPF r27, qword ptr [r22], 0000 +000000000000108C 626cf80b3b1e CCMPF r27, qword ptr [r22], {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -13246,7 +13246,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001092 626cf80b3bde CCMPF r27, r22, 0000 +0000000000001092 626cf80b3bde CCMPF r27, r22, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -13268,7 +13268,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001098 626c790b3b1e CCMPF r27w, word ptr [r22], 0000 +0000000000001098 626c790b3b1e CCMPF r27w, word ptr [r22], {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -13291,7 +13291,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -000000000000109E 626c790b3bde CCMPF r27w, r22w, 0000 +000000000000109E 626c790b3bde CCMPF r27w, r22w, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -13313,7 +13313,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -00000000000010A4 626cf90b3b1e CCMPF r27, qword ptr [r22], 0000 +00000000000010A4 626cf90b3b1e CCMPF r27, qword ptr [r22], {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -13336,7 +13336,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000010AA 626cf90b3bde CCMPF r27, r22, 0000 +00000000000010AA 626cf90b3bde CCMPF r27, r22, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -13358,7 +13358,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000010B0 626c780b803ebd CCMPF byte ptr [r22], 0xbd, 0000 +00000000000010B0 626c780b803ebd CCMPF byte ptr [r22], 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -13381,7 +13381,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -00000000000010B7 626c780b80febd CCMPF r22b, 0xbd, 0000 +00000000000010B7 626c780b80febd CCMPF r22b, 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -13403,7 +13403,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -00000000000010BE 626cf80b803ebd CCMPF byte ptr [r22], 0xbd, 0000 +00000000000010BE 626cf80b803ebd CCMPF byte ptr [r22], 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -13426,7 +13426,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000010C5 626cf80b80febd CCMPF r22b, 0xbd, 0000 +00000000000010C5 626cf80b80febd CCMPF r22b, 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -13448,7 +13448,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000010CC 626c780b813ebdbdbdbd CCMPF dword ptr [r22], 0xbdbdbdbd, 0000 +00000000000010CC 626c780b813ebdbdbdbd CCMPF dword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -13471,7 +13471,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -00000000000010D6 626c780b81febdbdbdbd CCMPF r22d, 0xbdbdbdbd, 0000 +00000000000010D6 626c780b81febdbdbdbd CCMPF r22d, 0xbdbdbdbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -13493,7 +13493,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -00000000000010E0 626cf80b813ebdbdbdbd CCMPF qword ptr [r22], 0xbdbdbdbd, 0000 +00000000000010E0 626cf80b813ebdbdbdbd CCMPF qword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -13516,7 +13516,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000010EA 626cf80b81febdbdbdbd CCMPF r22, 0xbdbdbdbd, 0000 +00000000000010EA 626cf80b81febdbdbdbd CCMPF r22, 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -13538,7 +13538,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000010F4 626c790b813ebdbd CCMPF word ptr [r22], 0xbdbd, 0000 +00000000000010F4 626c790b813ebdbd CCMPF word ptr [r22], 0xbdbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -13561,7 +13561,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -00000000000010FC 626c790b81febdbd CCMPF r22w, 0xbdbd, 0000 +00000000000010FC 626c790b81febdbd CCMPF r22w, 0xbdbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -13583,7 +13583,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000001104 626cf90b813ebdbdbdbd CCMPF qword ptr [r22], 0xbdbdbdbd, 0000 +0000000000001104 626cf90b813ebdbdbdbd CCMPF qword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -13606,7 +13606,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -000000000000110E 626cf90b81febdbdbdbd CCMPF r22, 0xbdbdbdbd, 0000 +000000000000110E 626cf90b81febdbdbdbd CCMPF r22, 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -13628,7 +13628,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001118 626c780b833ebd CCMPF dword ptr [r22], 0xbd, 0000 +0000000000001118 626c780b833ebd CCMPF dword ptr [r22], 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -13651,7 +13651,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -000000000000111F 626c780b83febd CCMPF r22d, 0xbd, 0000 +000000000000111F 626c780b83febd CCMPF r22d, 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -13673,7 +13673,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001126 626cf80b833ebd CCMPF qword ptr [r22], 0xbd, 0000 +0000000000001126 626cf80b833ebd CCMPF qword ptr [r22], 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -13696,7 +13696,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -000000000000112D 626cf80b83febd CCMPF r22, 0xbd, 0000 +000000000000112D 626cf80b83febd CCMPF r22, 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -13718,7 +13718,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001134 626c790b833ebd CCMPF word ptr [r22], 0xbd, 0000 +0000000000001134 626c790b833ebd CCMPF word ptr [r22], 0xbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -13741,7 +13741,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -000000000000113B 626c790b83febd CCMPF r22w, 0xbd, 0000 +000000000000113B 626c790b83febd CCMPF r22w, 0xbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -13763,7 +13763,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000001142 626cf90b833ebd CCMPF qword ptr [r22], 0xbd, 0000 +0000000000001142 626cf90b833ebd CCMPF qword ptr [r22], 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -13786,7 +13786,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001149 626cf90b83febd CCMPF r22, 0xbd, 0000 +0000000000001149 626cf90b83febd CCMPF r22, 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -13808,7 +13808,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001150 626c780c381e CCMPL byte ptr [r22], r27b, 0000 +0000000000001150 626c780c381e CCMPL byte ptr [r22], r27b, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -13831,7 +13831,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001156 626c780c38de CCMPL r22b, r27b, 0000 +0000000000001156 626c780c38de CCMPL r22b, r27b, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -13853,7 +13853,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -000000000000115C 626cf80c381e CCMPL byte ptr [r22], r27b, 0000 +000000000000115C 626cf80c381e CCMPL byte ptr [r22], r27b, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -13876,7 +13876,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001162 626cf80c38de CCMPL r22b, r27b, 0000 +0000000000001162 626cf80c38de CCMPL r22b, r27b, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -13898,7 +13898,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001168 626c780c391e CCMPL dword ptr [r22], r27d, 0000 +0000000000001168 626c780c391e CCMPL dword ptr [r22], r27d, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -13921,7 +13921,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -000000000000116E 626c780c39de CCMPL r22d, r27d, 0000 +000000000000116E 626c780c39de CCMPL r22d, r27d, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -13943,7 +13943,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001174 626cf80c391e CCMPL qword ptr [r22], r27, 0000 +0000000000001174 626cf80c391e CCMPL qword ptr [r22], r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -13966,7 +13966,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -000000000000117A 626cf80c39de CCMPL r22, r27, 0000 +000000000000117A 626cf80c39de CCMPL r22, r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -13988,7 +13988,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001180 626c790c391e CCMPL word ptr [r22], r27w, 0000 +0000000000001180 626c790c391e CCMPL word ptr [r22], r27w, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -14011,7 +14011,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000001186 626c790c39de CCMPL r22w, r27w, 0000 +0000000000001186 626c790c39de CCMPL r22w, r27w, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -14033,7 +14033,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -000000000000118C 626cf90c391e CCMPL qword ptr [r22], r27, 0000 +000000000000118C 626cf90c391e CCMPL qword ptr [r22], r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -14056,7 +14056,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001192 626cf90c39de CCMPL r22, r27, 0000 +0000000000001192 626cf90c39de CCMPL r22, r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -14078,7 +14078,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001198 626c780c3a1e CCMPL r27b, byte ptr [r22], 0000 +0000000000001198 626c780c3a1e CCMPL r27b, byte ptr [r22], {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -14101,7 +14101,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -000000000000119E 626c780c3ade CCMPL r27b, r22b, 0000 +000000000000119E 626c780c3ade CCMPL r27b, r22b, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -14123,7 +14123,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -00000000000011A4 626cf80c3a1e CCMPL r27b, byte ptr [r22], 0000 +00000000000011A4 626cf80c3a1e CCMPL r27b, byte ptr [r22], {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -14146,7 +14146,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000011AA 626cf80c3ade CCMPL r27b, r22b, 0000 +00000000000011AA 626cf80c3ade CCMPL r27b, r22b, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -14168,7 +14168,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000011B0 626c780c3b1e CCMPL r27d, dword ptr [r22], 0000 +00000000000011B0 626c780c3b1e CCMPL r27d, dword ptr [r22], {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -14191,7 +14191,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -00000000000011B6 626c780c3bde CCMPL r27d, r22d, 0000 +00000000000011B6 626c780c3bde CCMPL r27d, r22d, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -14213,7 +14213,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -00000000000011BC 626cf80c3b1e CCMPL r27, qword ptr [r22], 0000 +00000000000011BC 626cf80c3b1e CCMPL r27, qword ptr [r22], {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -14236,7 +14236,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000011C2 626cf80c3bde CCMPL r27, r22, 0000 +00000000000011C2 626cf80c3bde CCMPL r27, r22, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -14258,7 +14258,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000011C8 626c790c3b1e CCMPL r27w, word ptr [r22], 0000 +00000000000011C8 626c790c3b1e CCMPL r27w, word ptr [r22], {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -14281,7 +14281,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -00000000000011CE 626c790c3bde CCMPL r27w, r22w, 0000 +00000000000011CE 626c790c3bde CCMPL r27w, r22w, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -14303,7 +14303,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -00000000000011D4 626cf90c3b1e CCMPL r27, qword ptr [r22], 0000 +00000000000011D4 626cf90c3b1e CCMPL r27, qword ptr [r22], {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -14326,7 +14326,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000011DA 626cf90c3bde CCMPL r27, r22, 0000 +00000000000011DA 626cf90c3bde CCMPL r27, r22, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -14348,7 +14348,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000011E0 626c780c803ebd CCMPL byte ptr [r22], 0xbd, 0000 +00000000000011E0 626c780c803ebd CCMPL byte ptr [r22], 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -14371,7 +14371,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -00000000000011E7 626c780c80febd CCMPL r22b, 0xbd, 0000 +00000000000011E7 626c780c80febd CCMPL r22b, 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -14393,7 +14393,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -00000000000011EE 626cf80c803ebd CCMPL byte ptr [r22], 0xbd, 0000 +00000000000011EE 626cf80c803ebd CCMPL byte ptr [r22], 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -14416,7 +14416,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000011F5 626cf80c80febd CCMPL r22b, 0xbd, 0000 +00000000000011F5 626cf80c80febd CCMPL r22b, 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -14438,7 +14438,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000011FC 626c780c813ebdbdbdbd CCMPL dword ptr [r22], 0xbdbdbdbd, 0000 +00000000000011FC 626c780c813ebdbdbdbd CCMPL dword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -14461,7 +14461,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001206 626c780c81febdbdbdbd CCMPL r22d, 0xbdbdbdbd, 0000 +0000000000001206 626c780c81febdbdbdbd CCMPL r22d, 0xbdbdbdbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -14483,7 +14483,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001210 626cf80c813ebdbdbdbd CCMPL qword ptr [r22], 0xbdbdbdbd, 0000 +0000000000001210 626cf80c813ebdbdbdbd CCMPL qword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -14506,7 +14506,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -000000000000121A 626cf80c81febdbdbdbd CCMPL r22, 0xbdbdbdbd, 0000 +000000000000121A 626cf80c81febdbdbdbd CCMPL r22, 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -14528,7 +14528,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001224 626c790c813ebdbd CCMPL word ptr [r22], 0xbdbd, 0000 +0000000000001224 626c790c813ebdbd CCMPL word ptr [r22], 0xbdbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -14551,7 +14551,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -000000000000122C 626c790c81febdbd CCMPL r22w, 0xbdbd, 0000 +000000000000122C 626c790c81febdbd CCMPL r22w, 0xbdbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -14573,7 +14573,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000001234 626cf90c813ebdbdbdbd CCMPL qword ptr [r22], 0xbdbdbdbd, 0000 +0000000000001234 626cf90c813ebdbdbdbd CCMPL qword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -14596,7 +14596,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -000000000000123E 626cf90c81febdbdbdbd CCMPL r22, 0xbdbdbdbd, 0000 +000000000000123E 626cf90c81febdbdbdbd CCMPL r22, 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -14618,7 +14618,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001248 626c780c833ebd CCMPL dword ptr [r22], 0xbd, 0000 +0000000000001248 626c780c833ebd CCMPL dword ptr [r22], 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -14641,7 +14641,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -000000000000124F 626c780c83febd CCMPL r22d, 0xbd, 0000 +000000000000124F 626c780c83febd CCMPL r22d, 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -14663,7 +14663,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001256 626cf80c833ebd CCMPL qword ptr [r22], 0xbd, 0000 +0000000000001256 626cf80c833ebd CCMPL qword ptr [r22], 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -14686,7 +14686,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -000000000000125D 626cf80c83febd CCMPL r22, 0xbd, 0000 +000000000000125D 626cf80c83febd CCMPL r22, 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -14708,7 +14708,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001264 626c790c833ebd CCMPL word ptr [r22], 0xbd, 0000 +0000000000001264 626c790c833ebd CCMPL word ptr [r22], 0xbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -14731,7 +14731,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -000000000000126B 626c790c83febd CCMPL r22w, 0xbd, 0000 +000000000000126B 626c790c83febd CCMPL r22w, 0xbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -14753,7 +14753,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000001272 626cf90c833ebd CCMPL qword ptr [r22], 0xbd, 0000 +0000000000001272 626cf90c833ebd CCMPL qword ptr [r22], 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -14776,7 +14776,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001279 626cf90c83febd CCMPL r22, 0xbd, 0000 +0000000000001279 626cf90c83febd CCMPL r22, 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -14798,7 +14798,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001280 626c780e381e CCMPLE byte ptr [r22], r27b, 0000 +0000000000001280 626c780e381e CCMPLE byte ptr [r22], r27b, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -14821,7 +14821,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001286 626c780e38de CCMPLE r22b, r27b, 0000 +0000000000001286 626c780e38de CCMPLE r22b, r27b, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -14843,7 +14843,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -000000000000128C 626cf80e381e CCMPLE byte ptr [r22], r27b, 0000 +000000000000128C 626cf80e381e CCMPLE byte ptr [r22], r27b, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -14866,7 +14866,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001292 626cf80e38de CCMPLE r22b, r27b, 0000 +0000000000001292 626cf80e38de CCMPLE r22b, r27b, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -14888,7 +14888,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001298 626c780e391e CCMPLE dword ptr [r22], r27d, 0000 +0000000000001298 626c780e391e CCMPLE dword ptr [r22], r27d, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -14911,7 +14911,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -000000000000129E 626c780e39de CCMPLE r22d, r27d, 0000 +000000000000129E 626c780e39de CCMPLE r22d, r27d, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -14933,7 +14933,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -00000000000012A4 626cf80e391e CCMPLE qword ptr [r22], r27, 0000 +00000000000012A4 626cf80e391e CCMPLE qword ptr [r22], r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -14956,7 +14956,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000012AA 626cf80e39de CCMPLE r22, r27, 0000 +00000000000012AA 626cf80e39de CCMPLE r22, r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -14978,7 +14978,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000012B0 626c790e391e CCMPLE word ptr [r22], r27w, 0000 +00000000000012B0 626c790e391e CCMPLE word ptr [r22], r27w, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -15001,7 +15001,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -00000000000012B6 626c790e39de CCMPLE r22w, r27w, 0000 +00000000000012B6 626c790e39de CCMPLE r22w, r27w, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -15023,7 +15023,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -00000000000012BC 626cf90e391e CCMPLE qword ptr [r22], r27, 0000 +00000000000012BC 626cf90e391e CCMPLE qword ptr [r22], r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -15046,7 +15046,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000012C2 626cf90e39de CCMPLE r22, r27, 0000 +00000000000012C2 626cf90e39de CCMPLE r22, r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -15068,7 +15068,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000012C8 626c780e3a1e CCMPLE r27b, byte ptr [r22], 0000 +00000000000012C8 626c780e3a1e CCMPLE r27b, byte ptr [r22], {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -15091,7 +15091,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -00000000000012CE 626c780e3ade CCMPLE r27b, r22b, 0000 +00000000000012CE 626c780e3ade CCMPLE r27b, r22b, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -15113,7 +15113,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -00000000000012D4 626cf80e3a1e CCMPLE r27b, byte ptr [r22], 0000 +00000000000012D4 626cf80e3a1e CCMPLE r27b, byte ptr [r22], {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -15136,7 +15136,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000012DA 626cf80e3ade CCMPLE r27b, r22b, 0000 +00000000000012DA 626cf80e3ade CCMPLE r27b, r22b, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -15158,7 +15158,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000012E0 626c780e3b1e CCMPLE r27d, dword ptr [r22], 0000 +00000000000012E0 626c780e3b1e CCMPLE r27d, dword ptr [r22], {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -15181,7 +15181,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -00000000000012E6 626c780e3bde CCMPLE r27d, r22d, 0000 +00000000000012E6 626c780e3bde CCMPLE r27d, r22d, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -15203,7 +15203,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -00000000000012EC 626cf80e3b1e CCMPLE r27, qword ptr [r22], 0000 +00000000000012EC 626cf80e3b1e CCMPLE r27, qword ptr [r22], {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -15226,7 +15226,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000012F2 626cf80e3bde CCMPLE r27, r22, 0000 +00000000000012F2 626cf80e3bde CCMPLE r27, r22, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -15248,7 +15248,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000012F8 626c790e3b1e CCMPLE r27w, word ptr [r22], 0000 +00000000000012F8 626c790e3b1e CCMPLE r27w, word ptr [r22], {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -15271,7 +15271,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -00000000000012FE 626c790e3bde CCMPLE r27w, r22w, 0000 +00000000000012FE 626c790e3bde CCMPLE r27w, r22w, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -15293,7 +15293,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000001304 626cf90e3b1e CCMPLE r27, qword ptr [r22], 0000 +0000000000001304 626cf90e3b1e CCMPLE r27, qword ptr [r22], {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -15316,7 +15316,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -000000000000130A 626cf90e3bde CCMPLE r27, r22, 0000 +000000000000130A 626cf90e3bde CCMPLE r27, r22, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -15338,7 +15338,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001310 626c780e803ebd CCMPLE byte ptr [r22], 0xbd, 0000 +0000000000001310 626c780e803ebd CCMPLE byte ptr [r22], 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -15361,7 +15361,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001317 626c780e80febd CCMPLE r22b, 0xbd, 0000 +0000000000001317 626c780e80febd CCMPLE r22b, 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -15383,7 +15383,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -000000000000131E 626cf80e803ebd CCMPLE byte ptr [r22], 0xbd, 0000 +000000000000131E 626cf80e803ebd CCMPLE byte ptr [r22], 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -15406,7 +15406,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001325 626cf80e80febd CCMPLE r22b, 0xbd, 0000 +0000000000001325 626cf80e80febd CCMPLE r22b, 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -15428,7 +15428,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -000000000000132C 626c780e813ebdbdbdbd CCMPLE dword ptr [r22], 0xbdbdbdbd, 0000 +000000000000132C 626c780e813ebdbdbdbd CCMPLE dword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -15451,7 +15451,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001336 626c780e81febdbdbdbd CCMPLE r22d, 0xbdbdbdbd, 0000 +0000000000001336 626c780e81febdbdbdbd CCMPLE r22d, 0xbdbdbdbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -15473,7 +15473,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001340 626cf80e813ebdbdbdbd CCMPLE qword ptr [r22], 0xbdbdbdbd, 0000 +0000000000001340 626cf80e813ebdbdbdbd CCMPLE qword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -15496,7 +15496,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -000000000000134A 626cf80e81febdbdbdbd CCMPLE r22, 0xbdbdbdbd, 0000 +000000000000134A 626cf80e81febdbdbdbd CCMPLE r22, 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -15518,7 +15518,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001354 626c790e813ebdbd CCMPLE word ptr [r22], 0xbdbd, 0000 +0000000000001354 626c790e813ebdbd CCMPLE word ptr [r22], 0xbdbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -15541,7 +15541,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -000000000000135C 626c790e81febdbd CCMPLE r22w, 0xbdbd, 0000 +000000000000135C 626c790e81febdbd CCMPLE r22w, 0xbdbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -15563,7 +15563,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000001364 626cf90e813ebdbdbdbd CCMPLE qword ptr [r22], 0xbdbdbdbd, 0000 +0000000000001364 626cf90e813ebdbdbdbd CCMPLE qword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -15586,7 +15586,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -000000000000136E 626cf90e81febdbdbdbd CCMPLE r22, 0xbdbdbdbd, 0000 +000000000000136E 626cf90e81febdbdbdbd CCMPLE r22, 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -15608,7 +15608,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001378 626c780e833ebd CCMPLE dword ptr [r22], 0xbd, 0000 +0000000000001378 626c780e833ebd CCMPLE dword ptr [r22], 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -15631,7 +15631,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -000000000000137F 626c780e83febd CCMPLE r22d, 0xbd, 0000 +000000000000137F 626c780e83febd CCMPLE r22d, 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -15653,7 +15653,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001386 626cf80e833ebd CCMPLE qword ptr [r22], 0xbd, 0000 +0000000000001386 626cf80e833ebd CCMPLE qword ptr [r22], 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -15676,7 +15676,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -000000000000138D 626cf80e83febd CCMPLE r22, 0xbd, 0000 +000000000000138D 626cf80e83febd CCMPLE r22, 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -15698,7 +15698,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001394 626c790e833ebd CCMPLE word ptr [r22], 0xbd, 0000 +0000000000001394 626c790e833ebd CCMPLE word ptr [r22], 0xbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -15721,7 +15721,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -000000000000139B 626c790e83febd CCMPLE r22w, 0xbd, 0000 +000000000000139B 626c790e83febd CCMPLE r22w, 0xbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -15743,7 +15743,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -00000000000013A2 626cf90e833ebd CCMPLE qword ptr [r22], 0xbd, 0000 +00000000000013A2 626cf90e833ebd CCMPLE qword ptr [r22], 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -15766,7 +15766,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000013A9 626cf90e83febd CCMPLE r22, 0xbd, 0000 +00000000000013A9 626cf90e83febd CCMPLE r22, 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -15788,7 +15788,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000013B0 626c7807381e CCMPNBE byte ptr [r22], r27b, 0000 +00000000000013B0 626c7807381e CCMPNBE byte ptr [r22], r27b, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -15811,7 +15811,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -00000000000013B6 626c780738de CCMPNBE r22b, r27b, 0000 +00000000000013B6 626c780738de CCMPNBE r22b, r27b, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -15833,7 +15833,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -00000000000013BC 626cf807381e CCMPNBE byte ptr [r22], r27b, 0000 +00000000000013BC 626cf807381e CCMPNBE byte ptr [r22], r27b, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -15856,7 +15856,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000013C2 626cf80738de CCMPNBE r22b, r27b, 0000 +00000000000013C2 626cf80738de CCMPNBE r22b, r27b, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -15878,7 +15878,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000013C8 626c7807391e CCMPNBE dword ptr [r22], r27d, 0000 +00000000000013C8 626c7807391e CCMPNBE dword ptr [r22], r27d, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -15901,7 +15901,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -00000000000013CE 626c780739de CCMPNBE r22d, r27d, 0000 +00000000000013CE 626c780739de CCMPNBE r22d, r27d, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -15923,7 +15923,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -00000000000013D4 626cf807391e CCMPNBE qword ptr [r22], r27, 0000 +00000000000013D4 626cf807391e CCMPNBE qword ptr [r22], r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -15946,7 +15946,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000013DA 626cf80739de CCMPNBE r22, r27, 0000 +00000000000013DA 626cf80739de CCMPNBE r22, r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -15968,7 +15968,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000013E0 626c7907391e CCMPNBE word ptr [r22], r27w, 0000 +00000000000013E0 626c7907391e CCMPNBE word ptr [r22], r27w, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -15991,7 +15991,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -00000000000013E6 626c790739de CCMPNBE r22w, r27w, 0000 +00000000000013E6 626c790739de CCMPNBE r22w, r27w, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -16013,7 +16013,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -00000000000013EC 626cf907391e CCMPNBE qword ptr [r22], r27, 0000 +00000000000013EC 626cf907391e CCMPNBE qword ptr [r22], r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -16036,7 +16036,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000013F2 626cf90739de CCMPNBE r22, r27, 0000 +00000000000013F2 626cf90739de CCMPNBE r22, r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -16058,7 +16058,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000013F8 626c78073a1e CCMPNBE r27b, byte ptr [r22], 0000 +00000000000013F8 626c78073a1e CCMPNBE r27b, byte ptr [r22], {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -16081,7 +16081,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -00000000000013FE 626c78073ade CCMPNBE r27b, r22b, 0000 +00000000000013FE 626c78073ade CCMPNBE r27b, r22b, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -16103,7 +16103,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001404 626cf8073a1e CCMPNBE r27b, byte ptr [r22], 0000 +0000000000001404 626cf8073a1e CCMPNBE r27b, byte ptr [r22], {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -16126,7 +16126,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -000000000000140A 626cf8073ade CCMPNBE r27b, r22b, 0000 +000000000000140A 626cf8073ade CCMPNBE r27b, r22b, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -16148,7 +16148,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001410 626c78073b1e CCMPNBE r27d, dword ptr [r22], 0000 +0000000000001410 626c78073b1e CCMPNBE r27d, dword ptr [r22], {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -16171,7 +16171,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001416 626c78073bde CCMPNBE r27d, r22d, 0000 +0000000000001416 626c78073bde CCMPNBE r27d, r22d, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -16193,7 +16193,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -000000000000141C 626cf8073b1e CCMPNBE r27, qword ptr [r22], 0000 +000000000000141C 626cf8073b1e CCMPNBE r27, qword ptr [r22], {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -16216,7 +16216,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001422 626cf8073bde CCMPNBE r27, r22, 0000 +0000000000001422 626cf8073bde CCMPNBE r27, r22, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -16238,7 +16238,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001428 626c79073b1e CCMPNBE r27w, word ptr [r22], 0000 +0000000000001428 626c79073b1e CCMPNBE r27w, word ptr [r22], {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -16261,7 +16261,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -000000000000142E 626c79073bde CCMPNBE r27w, r22w, 0000 +000000000000142E 626c79073bde CCMPNBE r27w, r22w, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -16283,7 +16283,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000001434 626cf9073b1e CCMPNBE r27, qword ptr [r22], 0000 +0000000000001434 626cf9073b1e CCMPNBE r27, qword ptr [r22], {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -16306,7 +16306,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -000000000000143A 626cf9073bde CCMPNBE r27, r22, 0000 +000000000000143A 626cf9073bde CCMPNBE r27, r22, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -16328,7 +16328,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001440 626c7807803ebd CCMPNBE byte ptr [r22], 0xbd, 0000 +0000000000001440 626c7807803ebd CCMPNBE byte ptr [r22], 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -16351,7 +16351,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001447 626c780780febd CCMPNBE r22b, 0xbd, 0000 +0000000000001447 626c780780febd CCMPNBE r22b, 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -16373,7 +16373,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -000000000000144E 626cf807803ebd CCMPNBE byte ptr [r22], 0xbd, 0000 +000000000000144E 626cf807803ebd CCMPNBE byte ptr [r22], 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -16396,7 +16396,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001455 626cf80780febd CCMPNBE r22b, 0xbd, 0000 +0000000000001455 626cf80780febd CCMPNBE r22b, 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -16418,7 +16418,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -000000000000145C 626c7807813ebdbdbdbd CCMPNBE dword ptr [r22], 0xbdbdbdbd, 0000 +000000000000145C 626c7807813ebdbdbdbd CCMPNBE dword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -16441,7 +16441,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001466 626c780781febdbdbdbd CCMPNBE r22d, 0xbdbdbdbd, 0000 +0000000000001466 626c780781febdbdbdbd CCMPNBE r22d, 0xbdbdbdbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -16463,7 +16463,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001470 626cf807813ebdbdbdbd CCMPNBE qword ptr [r22], 0xbdbdbdbd, 0000 +0000000000001470 626cf807813ebdbdbdbd CCMPNBE qword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -16486,7 +16486,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -000000000000147A 626cf80781febdbdbdbd CCMPNBE r22, 0xbdbdbdbd, 0000 +000000000000147A 626cf80781febdbdbdbd CCMPNBE r22, 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -16508,7 +16508,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001484 626c7907813ebdbd CCMPNBE word ptr [r22], 0xbdbd, 0000 +0000000000001484 626c7907813ebdbd CCMPNBE word ptr [r22], 0xbdbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -16531,7 +16531,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -000000000000148C 626c790781febdbd CCMPNBE r22w, 0xbdbd, 0000 +000000000000148C 626c790781febdbd CCMPNBE r22w, 0xbdbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -16553,7 +16553,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000001494 626cf907813ebdbdbdbd CCMPNBE qword ptr [r22], 0xbdbdbdbd, 0000 +0000000000001494 626cf907813ebdbdbdbd CCMPNBE qword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -16576,7 +16576,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -000000000000149E 626cf90781febdbdbdbd CCMPNBE r22, 0xbdbdbdbd, 0000 +000000000000149E 626cf90781febdbdbdbd CCMPNBE r22, 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -16598,7 +16598,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000014A8 626c7807833ebd CCMPNBE dword ptr [r22], 0xbd, 0000 +00000000000014A8 626c7807833ebd CCMPNBE dword ptr [r22], 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -16621,7 +16621,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -00000000000014AF 626c780783febd CCMPNBE r22d, 0xbd, 0000 +00000000000014AF 626c780783febd CCMPNBE r22d, 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -16643,7 +16643,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -00000000000014B6 626cf807833ebd CCMPNBE qword ptr [r22], 0xbd, 0000 +00000000000014B6 626cf807833ebd CCMPNBE qword ptr [r22], 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -16666,7 +16666,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000014BD 626cf80783febd CCMPNBE r22, 0xbd, 0000 +00000000000014BD 626cf80783febd CCMPNBE r22, 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -16688,7 +16688,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000014C4 626c7907833ebd CCMPNBE word ptr [r22], 0xbd, 0000 +00000000000014C4 626c7907833ebd CCMPNBE word ptr [r22], 0xbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -16711,7 +16711,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -00000000000014CB 626c790783febd CCMPNBE r22w, 0xbd, 0000 +00000000000014CB 626c790783febd CCMPNBE r22w, 0xbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -16733,7 +16733,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -00000000000014D2 626cf907833ebd CCMPNBE qword ptr [r22], 0xbd, 0000 +00000000000014D2 626cf907833ebd CCMPNBE qword ptr [r22], 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -16756,7 +16756,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000014D9 626cf90783febd CCMPNBE r22, 0xbd, 0000 +00000000000014D9 626cf90783febd CCMPNBE r22, 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -16778,7 +16778,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000014E0 626c7803381e CCMPNC byte ptr [r22], r27b, 0000 +00000000000014E0 626c7803381e CCMPNC byte ptr [r22], r27b, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -16801,7 +16801,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -00000000000014E6 626c780338de CCMPNC r22b, r27b, 0000 +00000000000014E6 626c780338de CCMPNC r22b, r27b, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -16823,7 +16823,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -00000000000014EC 626cf803381e CCMPNC byte ptr [r22], r27b, 0000 +00000000000014EC 626cf803381e CCMPNC byte ptr [r22], r27b, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -16846,7 +16846,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000014F2 626cf80338de CCMPNC r22b, r27b, 0000 +00000000000014F2 626cf80338de CCMPNC r22b, r27b, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -16868,7 +16868,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000014F8 626c7803391e CCMPNC dword ptr [r22], r27d, 0000 +00000000000014F8 626c7803391e CCMPNC dword ptr [r22], r27d, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -16891,7 +16891,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -00000000000014FE 626c780339de CCMPNC r22d, r27d, 0000 +00000000000014FE 626c780339de CCMPNC r22d, r27d, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -16913,7 +16913,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001504 626cf803391e CCMPNC qword ptr [r22], r27, 0000 +0000000000001504 626cf803391e CCMPNC qword ptr [r22], r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -16936,7 +16936,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -000000000000150A 626cf80339de CCMPNC r22, r27, 0000 +000000000000150A 626cf80339de CCMPNC r22, r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -16958,7 +16958,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001510 626c7903391e CCMPNC word ptr [r22], r27w, 0000 +0000000000001510 626c7903391e CCMPNC word ptr [r22], r27w, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -16981,7 +16981,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000001516 626c790339de CCMPNC r22w, r27w, 0000 +0000000000001516 626c790339de CCMPNC r22w, r27w, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -17003,7 +17003,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -000000000000151C 626cf903391e CCMPNC qword ptr [r22], r27, 0000 +000000000000151C 626cf903391e CCMPNC qword ptr [r22], r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -17026,7 +17026,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001522 626cf90339de CCMPNC r22, r27, 0000 +0000000000001522 626cf90339de CCMPNC r22, r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -17048,7 +17048,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001528 626c78033a1e CCMPNC r27b, byte ptr [r22], 0000 +0000000000001528 626c78033a1e CCMPNC r27b, byte ptr [r22], {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -17071,7 +17071,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -000000000000152E 626c78033ade CCMPNC r27b, r22b, 0000 +000000000000152E 626c78033ade CCMPNC r27b, r22b, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -17093,7 +17093,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001534 626cf8033a1e CCMPNC r27b, byte ptr [r22], 0000 +0000000000001534 626cf8033a1e CCMPNC r27b, byte ptr [r22], {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -17116,7 +17116,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -000000000000153A 626cf8033ade CCMPNC r27b, r22b, 0000 +000000000000153A 626cf8033ade CCMPNC r27b, r22b, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -17138,7 +17138,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001540 626c78033b1e CCMPNC r27d, dword ptr [r22], 0000 +0000000000001540 626c78033b1e CCMPNC r27d, dword ptr [r22], {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -17161,7 +17161,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001546 626c78033bde CCMPNC r27d, r22d, 0000 +0000000000001546 626c78033bde CCMPNC r27d, r22d, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -17183,7 +17183,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -000000000000154C 626cf8033b1e CCMPNC r27, qword ptr [r22], 0000 +000000000000154C 626cf8033b1e CCMPNC r27, qword ptr [r22], {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -17206,7 +17206,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001552 626cf8033bde CCMPNC r27, r22, 0000 +0000000000001552 626cf8033bde CCMPNC r27, r22, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -17228,7 +17228,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001558 626c79033b1e CCMPNC r27w, word ptr [r22], 0000 +0000000000001558 626c79033b1e CCMPNC r27w, word ptr [r22], {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -17251,7 +17251,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -000000000000155E 626c79033bde CCMPNC r27w, r22w, 0000 +000000000000155E 626c79033bde CCMPNC r27w, r22w, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -17273,7 +17273,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000001564 626cf9033b1e CCMPNC r27, qword ptr [r22], 0000 +0000000000001564 626cf9033b1e CCMPNC r27, qword ptr [r22], {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -17296,7 +17296,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -000000000000156A 626cf9033bde CCMPNC r27, r22, 0000 +000000000000156A 626cf9033bde CCMPNC r27, r22, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -17318,7 +17318,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001570 626c7803803ebd CCMPNC byte ptr [r22], 0xbd, 0000 +0000000000001570 626c7803803ebd CCMPNC byte ptr [r22], 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -17341,7 +17341,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001577 626c780380febd CCMPNC r22b, 0xbd, 0000 +0000000000001577 626c780380febd CCMPNC r22b, 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -17363,7 +17363,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -000000000000157E 626cf803803ebd CCMPNC byte ptr [r22], 0xbd, 0000 +000000000000157E 626cf803803ebd CCMPNC byte ptr [r22], 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -17386,7 +17386,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001585 626cf80380febd CCMPNC r22b, 0xbd, 0000 +0000000000001585 626cf80380febd CCMPNC r22b, 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -17408,7 +17408,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -000000000000158C 626c7803813ebdbdbdbd CCMPNC dword ptr [r22], 0xbdbdbdbd, 0000 +000000000000158C 626c7803813ebdbdbdbd CCMPNC dword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -17431,7 +17431,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001596 626c780381febdbdbdbd CCMPNC r22d, 0xbdbdbdbd, 0000 +0000000000001596 626c780381febdbdbdbd CCMPNC r22d, 0xbdbdbdbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -17453,7 +17453,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -00000000000015A0 626cf803813ebdbdbdbd CCMPNC qword ptr [r22], 0xbdbdbdbd, 0000 +00000000000015A0 626cf803813ebdbdbdbd CCMPNC qword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -17476,7 +17476,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000015AA 626cf80381febdbdbdbd CCMPNC r22, 0xbdbdbdbd, 0000 +00000000000015AA 626cf80381febdbdbdbd CCMPNC r22, 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -17498,7 +17498,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000015B4 626c7903813ebdbd CCMPNC word ptr [r22], 0xbdbd, 0000 +00000000000015B4 626c7903813ebdbd CCMPNC word ptr [r22], 0xbdbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -17521,7 +17521,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -00000000000015BC 626c790381febdbd CCMPNC r22w, 0xbdbd, 0000 +00000000000015BC 626c790381febdbd CCMPNC r22w, 0xbdbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -17543,7 +17543,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -00000000000015C4 626cf903813ebdbdbdbd CCMPNC qword ptr [r22], 0xbdbdbdbd, 0000 +00000000000015C4 626cf903813ebdbdbdbd CCMPNC qword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -17566,7 +17566,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000015CE 626cf90381febdbdbdbd CCMPNC r22, 0xbdbdbdbd, 0000 +00000000000015CE 626cf90381febdbdbdbd CCMPNC r22, 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -17588,7 +17588,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000015D8 626c7803833ebd CCMPNC dword ptr [r22], 0xbd, 0000 +00000000000015D8 626c7803833ebd CCMPNC dword ptr [r22], 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -17611,7 +17611,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -00000000000015DF 626c780383febd CCMPNC r22d, 0xbd, 0000 +00000000000015DF 626c780383febd CCMPNC r22d, 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -17633,7 +17633,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -00000000000015E6 626cf803833ebd CCMPNC qword ptr [r22], 0xbd, 0000 +00000000000015E6 626cf803833ebd CCMPNC qword ptr [r22], 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -17656,7 +17656,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000015ED 626cf80383febd CCMPNC r22, 0xbd, 0000 +00000000000015ED 626cf80383febd CCMPNC r22, 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -17678,7 +17678,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000015F4 626c7903833ebd CCMPNC word ptr [r22], 0xbd, 0000 +00000000000015F4 626c7903833ebd CCMPNC word ptr [r22], 0xbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -17701,7 +17701,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -00000000000015FB 626c790383febd CCMPNC r22w, 0xbd, 0000 +00000000000015FB 626c790383febd CCMPNC r22w, 0xbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -17723,7 +17723,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000001602 626cf903833ebd CCMPNC qword ptr [r22], 0xbd, 0000 +0000000000001602 626cf903833ebd CCMPNC qword ptr [r22], 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -17746,7 +17746,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001609 626cf90383febd CCMPNC r22, 0xbd, 0000 +0000000000001609 626cf90383febd CCMPNC r22, 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -17768,7 +17768,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001610 626c780d381e CCMPNL byte ptr [r22], r27b, 0000 +0000000000001610 626c780d381e CCMPNL byte ptr [r22], r27b, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -17791,7 +17791,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001616 626c780d38de CCMPNL r22b, r27b, 0000 +0000000000001616 626c780d38de CCMPNL r22b, r27b, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -17813,7 +17813,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -000000000000161C 626cf80d381e CCMPNL byte ptr [r22], r27b, 0000 +000000000000161C 626cf80d381e CCMPNL byte ptr [r22], r27b, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -17836,7 +17836,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001622 626cf80d38de CCMPNL r22b, r27b, 0000 +0000000000001622 626cf80d38de CCMPNL r22b, r27b, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -17858,7 +17858,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001628 626c780d391e CCMPNL dword ptr [r22], r27d, 0000 +0000000000001628 626c780d391e CCMPNL dword ptr [r22], r27d, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -17881,7 +17881,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -000000000000162E 626c780d39de CCMPNL r22d, r27d, 0000 +000000000000162E 626c780d39de CCMPNL r22d, r27d, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -17903,7 +17903,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001634 626cf80d391e CCMPNL qword ptr [r22], r27, 0000 +0000000000001634 626cf80d391e CCMPNL qword ptr [r22], r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -17926,7 +17926,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -000000000000163A 626cf80d39de CCMPNL r22, r27, 0000 +000000000000163A 626cf80d39de CCMPNL r22, r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -17948,7 +17948,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001640 626c790d391e CCMPNL word ptr [r22], r27w, 0000 +0000000000001640 626c790d391e CCMPNL word ptr [r22], r27w, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -17971,7 +17971,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000001646 626c790d39de CCMPNL r22w, r27w, 0000 +0000000000001646 626c790d39de CCMPNL r22w, r27w, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -17993,7 +17993,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -000000000000164C 626cf90d391e CCMPNL qword ptr [r22], r27, 0000 +000000000000164C 626cf90d391e CCMPNL qword ptr [r22], r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -18016,7 +18016,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001652 626cf90d39de CCMPNL r22, r27, 0000 +0000000000001652 626cf90d39de CCMPNL r22, r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -18038,7 +18038,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001658 626c780d3a1e CCMPNL r27b, byte ptr [r22], 0000 +0000000000001658 626c780d3a1e CCMPNL r27b, byte ptr [r22], {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -18061,7 +18061,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -000000000000165E 626c780d3ade CCMPNL r27b, r22b, 0000 +000000000000165E 626c780d3ade CCMPNL r27b, r22b, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -18083,7 +18083,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001664 626cf80d3a1e CCMPNL r27b, byte ptr [r22], 0000 +0000000000001664 626cf80d3a1e CCMPNL r27b, byte ptr [r22], {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -18106,7 +18106,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -000000000000166A 626cf80d3ade CCMPNL r27b, r22b, 0000 +000000000000166A 626cf80d3ade CCMPNL r27b, r22b, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -18128,7 +18128,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001670 626c780d3b1e CCMPNL r27d, dword ptr [r22], 0000 +0000000000001670 626c780d3b1e CCMPNL r27d, dword ptr [r22], {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -18151,7 +18151,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001676 626c780d3bde CCMPNL r27d, r22d, 0000 +0000000000001676 626c780d3bde CCMPNL r27d, r22d, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -18173,7 +18173,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -000000000000167C 626cf80d3b1e CCMPNL r27, qword ptr [r22], 0000 +000000000000167C 626cf80d3b1e CCMPNL r27, qword ptr [r22], {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -18196,7 +18196,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001682 626cf80d3bde CCMPNL r27, r22, 0000 +0000000000001682 626cf80d3bde CCMPNL r27, r22, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -18218,7 +18218,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001688 626c790d3b1e CCMPNL r27w, word ptr [r22], 0000 +0000000000001688 626c790d3b1e CCMPNL r27w, word ptr [r22], {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -18241,7 +18241,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -000000000000168E 626c790d3bde CCMPNL r27w, r22w, 0000 +000000000000168E 626c790d3bde CCMPNL r27w, r22w, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -18263,7 +18263,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000001694 626cf90d3b1e CCMPNL r27, qword ptr [r22], 0000 +0000000000001694 626cf90d3b1e CCMPNL r27, qword ptr [r22], {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -18286,7 +18286,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -000000000000169A 626cf90d3bde CCMPNL r27, r22, 0000 +000000000000169A 626cf90d3bde CCMPNL r27, r22, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -18308,7 +18308,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000016A0 626c780d803ebd CCMPNL byte ptr [r22], 0xbd, 0000 +00000000000016A0 626c780d803ebd CCMPNL byte ptr [r22], 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -18331,7 +18331,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -00000000000016A7 626c780d80febd CCMPNL r22b, 0xbd, 0000 +00000000000016A7 626c780d80febd CCMPNL r22b, 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -18353,7 +18353,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -00000000000016AE 626cf80d803ebd CCMPNL byte ptr [r22], 0xbd, 0000 +00000000000016AE 626cf80d803ebd CCMPNL byte ptr [r22], 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -18376,7 +18376,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000016B5 626cf80d80febd CCMPNL r22b, 0xbd, 0000 +00000000000016B5 626cf80d80febd CCMPNL r22b, 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -18398,7 +18398,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000016BC 626c780d813ebdbdbdbd CCMPNL dword ptr [r22], 0xbdbdbdbd, 0000 +00000000000016BC 626c780d813ebdbdbdbd CCMPNL dword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -18421,7 +18421,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -00000000000016C6 626c780d81febdbdbdbd CCMPNL r22d, 0xbdbdbdbd, 0000 +00000000000016C6 626c780d81febdbdbdbd CCMPNL r22d, 0xbdbdbdbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -18443,7 +18443,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -00000000000016D0 626cf80d813ebdbdbdbd CCMPNL qword ptr [r22], 0xbdbdbdbd, 0000 +00000000000016D0 626cf80d813ebdbdbdbd CCMPNL qword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -18466,7 +18466,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000016DA 626cf80d81febdbdbdbd CCMPNL r22, 0xbdbdbdbd, 0000 +00000000000016DA 626cf80d81febdbdbdbd CCMPNL r22, 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -18488,7 +18488,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000016E4 626c790d813ebdbd CCMPNL word ptr [r22], 0xbdbd, 0000 +00000000000016E4 626c790d813ebdbd CCMPNL word ptr [r22], 0xbdbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -18511,7 +18511,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -00000000000016EC 626c790d81febdbd CCMPNL r22w, 0xbdbd, 0000 +00000000000016EC 626c790d81febdbd CCMPNL r22w, 0xbdbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -18533,7 +18533,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -00000000000016F4 626cf90d813ebdbdbdbd CCMPNL qword ptr [r22], 0xbdbdbdbd, 0000 +00000000000016F4 626cf90d813ebdbdbdbd CCMPNL qword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -18556,7 +18556,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000016FE 626cf90d81febdbdbdbd CCMPNL r22, 0xbdbdbdbd, 0000 +00000000000016FE 626cf90d81febdbdbdbd CCMPNL r22, 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -18578,7 +18578,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001708 626c780d833ebd CCMPNL dword ptr [r22], 0xbd, 0000 +0000000000001708 626c780d833ebd CCMPNL dword ptr [r22], 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -18601,7 +18601,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -000000000000170F 626c780d83febd CCMPNL r22d, 0xbd, 0000 +000000000000170F 626c780d83febd CCMPNL r22d, 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -18623,7 +18623,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001716 626cf80d833ebd CCMPNL qword ptr [r22], 0xbd, 0000 +0000000000001716 626cf80d833ebd CCMPNL qword ptr [r22], 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -18646,7 +18646,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -000000000000171D 626cf80d83febd CCMPNL r22, 0xbd, 0000 +000000000000171D 626cf80d83febd CCMPNL r22, 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -18668,7 +18668,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001724 626c790d833ebd CCMPNL word ptr [r22], 0xbd, 0000 +0000000000001724 626c790d833ebd CCMPNL word ptr [r22], 0xbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -18691,7 +18691,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -000000000000172B 626c790d83febd CCMPNL r22w, 0xbd, 0000 +000000000000172B 626c790d83febd CCMPNL r22w, 0xbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -18713,7 +18713,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000001732 626cf90d833ebd CCMPNL qword ptr [r22], 0xbd, 0000 +0000000000001732 626cf90d833ebd CCMPNL qword ptr [r22], 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -18736,7 +18736,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001739 626cf90d83febd CCMPNL r22, 0xbd, 0000 +0000000000001739 626cf90d83febd CCMPNL r22, 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -18758,7 +18758,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001740 626c780f381e CCMPNLE byte ptr [r22], r27b, 0000 +0000000000001740 626c780f381e CCMPNLE byte ptr [r22], r27b, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -18781,7 +18781,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001746 626c780f38de CCMPNLE r22b, r27b, 0000 +0000000000001746 626c780f38de CCMPNLE r22b, r27b, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -18803,7 +18803,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -000000000000174C 626cf80f381e CCMPNLE byte ptr [r22], r27b, 0000 +000000000000174C 626cf80f381e CCMPNLE byte ptr [r22], r27b, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -18826,7 +18826,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001752 626cf80f38de CCMPNLE r22b, r27b, 0000 +0000000000001752 626cf80f38de CCMPNLE r22b, r27b, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -18848,7 +18848,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001758 626c780f391e CCMPNLE dword ptr [r22], r27d, 0000 +0000000000001758 626c780f391e CCMPNLE dword ptr [r22], r27d, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -18871,7 +18871,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -000000000000175E 626c780f39de CCMPNLE r22d, r27d, 0000 +000000000000175E 626c780f39de CCMPNLE r22d, r27d, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -18893,7 +18893,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001764 626cf80f391e CCMPNLE qword ptr [r22], r27, 0000 +0000000000001764 626cf80f391e CCMPNLE qword ptr [r22], r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -18916,7 +18916,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -000000000000176A 626cf80f39de CCMPNLE r22, r27, 0000 +000000000000176A 626cf80f39de CCMPNLE r22, r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -18938,7 +18938,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001770 626c790f391e CCMPNLE word ptr [r22], r27w, 0000 +0000000000001770 626c790f391e CCMPNLE word ptr [r22], r27w, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -18961,7 +18961,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000001776 626c790f39de CCMPNLE r22w, r27w, 0000 +0000000000001776 626c790f39de CCMPNLE r22w, r27w, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -18983,7 +18983,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -000000000000177C 626cf90f391e CCMPNLE qword ptr [r22], r27, 0000 +000000000000177C 626cf90f391e CCMPNLE qword ptr [r22], r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -19006,7 +19006,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001782 626cf90f39de CCMPNLE r22, r27, 0000 +0000000000001782 626cf90f39de CCMPNLE r22, r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -19028,7 +19028,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001788 626c780f3a1e CCMPNLE r27b, byte ptr [r22], 0000 +0000000000001788 626c780f3a1e CCMPNLE r27b, byte ptr [r22], {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -19051,7 +19051,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -000000000000178E 626c780f3ade CCMPNLE r27b, r22b, 0000 +000000000000178E 626c780f3ade CCMPNLE r27b, r22b, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -19073,7 +19073,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001794 626cf80f3a1e CCMPNLE r27b, byte ptr [r22], 0000 +0000000000001794 626cf80f3a1e CCMPNLE r27b, byte ptr [r22], {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -19096,7 +19096,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -000000000000179A 626cf80f3ade CCMPNLE r27b, r22b, 0000 +000000000000179A 626cf80f3ade CCMPNLE r27b, r22b, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -19118,7 +19118,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000017A0 626c780f3b1e CCMPNLE r27d, dword ptr [r22], 0000 +00000000000017A0 626c780f3b1e CCMPNLE r27d, dword ptr [r22], {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -19141,7 +19141,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -00000000000017A6 626c780f3bde CCMPNLE r27d, r22d, 0000 +00000000000017A6 626c780f3bde CCMPNLE r27d, r22d, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -19163,7 +19163,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -00000000000017AC 626cf80f3b1e CCMPNLE r27, qword ptr [r22], 0000 +00000000000017AC 626cf80f3b1e CCMPNLE r27, qword ptr [r22], {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -19186,7 +19186,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000017B2 626cf80f3bde CCMPNLE r27, r22, 0000 +00000000000017B2 626cf80f3bde CCMPNLE r27, r22, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -19208,7 +19208,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000017B8 626c790f3b1e CCMPNLE r27w, word ptr [r22], 0000 +00000000000017B8 626c790f3b1e CCMPNLE r27w, word ptr [r22], {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -19231,7 +19231,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -00000000000017BE 626c790f3bde CCMPNLE r27w, r22w, 0000 +00000000000017BE 626c790f3bde CCMPNLE r27w, r22w, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -19253,7 +19253,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -00000000000017C4 626cf90f3b1e CCMPNLE r27, qword ptr [r22], 0000 +00000000000017C4 626cf90f3b1e CCMPNLE r27, qword ptr [r22], {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -19276,7 +19276,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000017CA 626cf90f3bde CCMPNLE r27, r22, 0000 +00000000000017CA 626cf90f3bde CCMPNLE r27, r22, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -19298,7 +19298,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000017D0 626c780f803ebd CCMPNLE byte ptr [r22], 0xbd, 0000 +00000000000017D0 626c780f803ebd CCMPNLE byte ptr [r22], 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -19321,7 +19321,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -00000000000017D7 626c780f80febd CCMPNLE r22b, 0xbd, 0000 +00000000000017D7 626c780f80febd CCMPNLE r22b, 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -19343,7 +19343,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -00000000000017DE 626cf80f803ebd CCMPNLE byte ptr [r22], 0xbd, 0000 +00000000000017DE 626cf80f803ebd CCMPNLE byte ptr [r22], 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -19366,7 +19366,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000017E5 626cf80f80febd CCMPNLE r22b, 0xbd, 0000 +00000000000017E5 626cf80f80febd CCMPNLE r22b, 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -19388,7 +19388,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000017EC 626c780f813ebdbdbdbd CCMPNLE dword ptr [r22], 0xbdbdbdbd, 0000 +00000000000017EC 626c780f813ebdbdbdbd CCMPNLE dword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -19411,7 +19411,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -00000000000017F6 626c780f81febdbdbdbd CCMPNLE r22d, 0xbdbdbdbd, 0000 +00000000000017F6 626c780f81febdbdbdbd CCMPNLE r22d, 0xbdbdbdbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -19433,7 +19433,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001800 626cf80f813ebdbdbdbd CCMPNLE qword ptr [r22], 0xbdbdbdbd, 0000 +0000000000001800 626cf80f813ebdbdbdbd CCMPNLE qword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -19456,7 +19456,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -000000000000180A 626cf80f81febdbdbdbd CCMPNLE r22, 0xbdbdbdbd, 0000 +000000000000180A 626cf80f81febdbdbdbd CCMPNLE r22, 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -19478,7 +19478,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001814 626c790f813ebdbd CCMPNLE word ptr [r22], 0xbdbd, 0000 +0000000000001814 626c790f813ebdbd CCMPNLE word ptr [r22], 0xbdbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -19501,7 +19501,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -000000000000181C 626c790f81febdbd CCMPNLE r22w, 0xbdbd, 0000 +000000000000181C 626c790f81febdbd CCMPNLE r22w, 0xbdbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -19523,7 +19523,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000001824 626cf90f813ebdbdbdbd CCMPNLE qword ptr [r22], 0xbdbdbdbd, 0000 +0000000000001824 626cf90f813ebdbdbdbd CCMPNLE qword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -19546,7 +19546,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -000000000000182E 626cf90f81febdbdbdbd CCMPNLE r22, 0xbdbdbdbd, 0000 +000000000000182E 626cf90f81febdbdbdbd CCMPNLE r22, 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -19568,7 +19568,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001838 626c780f833ebd CCMPNLE dword ptr [r22], 0xbd, 0000 +0000000000001838 626c780f833ebd CCMPNLE dword ptr [r22], 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -19591,7 +19591,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -000000000000183F 626c780f83febd CCMPNLE r22d, 0xbd, 0000 +000000000000183F 626c780f83febd CCMPNLE r22d, 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -19613,7 +19613,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001846 626cf80f833ebd CCMPNLE qword ptr [r22], 0xbd, 0000 +0000000000001846 626cf80f833ebd CCMPNLE qword ptr [r22], 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -19636,7 +19636,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -000000000000184D 626cf80f83febd CCMPNLE r22, 0xbd, 0000 +000000000000184D 626cf80f83febd CCMPNLE r22, 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -19658,7 +19658,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001854 626c790f833ebd CCMPNLE word ptr [r22], 0xbd, 0000 +0000000000001854 626c790f833ebd CCMPNLE word ptr [r22], 0xbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -19681,7 +19681,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -000000000000185B 626c790f83febd CCMPNLE r22w, 0xbd, 0000 +000000000000185B 626c790f83febd CCMPNLE r22w, 0xbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -19703,7 +19703,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000001862 626cf90f833ebd CCMPNLE qword ptr [r22], 0xbd, 0000 +0000000000001862 626cf90f833ebd CCMPNLE qword ptr [r22], 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -19726,7 +19726,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001869 626cf90f83febd CCMPNLE r22, 0xbd, 0000 +0000000000001869 626cf90f83febd CCMPNLE r22, 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -19748,7 +19748,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001870 626c7801381e CCMPNO byte ptr [r22], r27b, 0000 +0000000000001870 626c7801381e CCMPNO byte ptr [r22], r27b, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -19771,7 +19771,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001876 626c780138de CCMPNO r22b, r27b, 0000 +0000000000001876 626c780138de CCMPNO r22b, r27b, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -19793,7 +19793,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -000000000000187C 626cf801381e CCMPNO byte ptr [r22], r27b, 0000 +000000000000187C 626cf801381e CCMPNO byte ptr [r22], r27b, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -19816,7 +19816,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001882 626cf80138de CCMPNO r22b, r27b, 0000 +0000000000001882 626cf80138de CCMPNO r22b, r27b, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -19838,7 +19838,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001888 626c7801391e CCMPNO dword ptr [r22], r27d, 0000 +0000000000001888 626c7801391e CCMPNO dword ptr [r22], r27d, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -19861,7 +19861,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -000000000000188E 626c780139de CCMPNO r22d, r27d, 0000 +000000000000188E 626c780139de CCMPNO r22d, r27d, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -19883,7 +19883,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001894 626cf801391e CCMPNO qword ptr [r22], r27, 0000 +0000000000001894 626cf801391e CCMPNO qword ptr [r22], r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -19906,7 +19906,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -000000000000189A 626cf80139de CCMPNO r22, r27, 0000 +000000000000189A 626cf80139de CCMPNO r22, r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -19928,7 +19928,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000018A0 626c7901391e CCMPNO word ptr [r22], r27w, 0000 +00000000000018A0 626c7901391e CCMPNO word ptr [r22], r27w, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -19951,7 +19951,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -00000000000018A6 626c790139de CCMPNO r22w, r27w, 0000 +00000000000018A6 626c790139de CCMPNO r22w, r27w, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -19973,7 +19973,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -00000000000018AC 626cf901391e CCMPNO qword ptr [r22], r27, 0000 +00000000000018AC 626cf901391e CCMPNO qword ptr [r22], r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -19996,7 +19996,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000018B2 626cf90139de CCMPNO r22, r27, 0000 +00000000000018B2 626cf90139de CCMPNO r22, r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -20018,7 +20018,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000018B8 626c78013a1e CCMPNO r27b, byte ptr [r22], 0000 +00000000000018B8 626c78013a1e CCMPNO r27b, byte ptr [r22], {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -20041,7 +20041,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -00000000000018BE 626c78013ade CCMPNO r27b, r22b, 0000 +00000000000018BE 626c78013ade CCMPNO r27b, r22b, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -20063,7 +20063,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -00000000000018C4 626cf8013a1e CCMPNO r27b, byte ptr [r22], 0000 +00000000000018C4 626cf8013a1e CCMPNO r27b, byte ptr [r22], {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -20086,7 +20086,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000018CA 626cf8013ade CCMPNO r27b, r22b, 0000 +00000000000018CA 626cf8013ade CCMPNO r27b, r22b, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -20108,7 +20108,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000018D0 626c78013b1e CCMPNO r27d, dword ptr [r22], 0000 +00000000000018D0 626c78013b1e CCMPNO r27d, dword ptr [r22], {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -20131,7 +20131,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -00000000000018D6 626c78013bde CCMPNO r27d, r22d, 0000 +00000000000018D6 626c78013bde CCMPNO r27d, r22d, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -20153,7 +20153,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -00000000000018DC 626cf8013b1e CCMPNO r27, qword ptr [r22], 0000 +00000000000018DC 626cf8013b1e CCMPNO r27, qword ptr [r22], {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -20176,7 +20176,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000018E2 626cf8013bde CCMPNO r27, r22, 0000 +00000000000018E2 626cf8013bde CCMPNO r27, r22, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -20198,7 +20198,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000018E8 626c79013b1e CCMPNO r27w, word ptr [r22], 0000 +00000000000018E8 626c79013b1e CCMPNO r27w, word ptr [r22], {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -20221,7 +20221,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -00000000000018EE 626c79013bde CCMPNO r27w, r22w, 0000 +00000000000018EE 626c79013bde CCMPNO r27w, r22w, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -20243,7 +20243,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -00000000000018F4 626cf9013b1e CCMPNO r27, qword ptr [r22], 0000 +00000000000018F4 626cf9013b1e CCMPNO r27, qword ptr [r22], {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -20266,7 +20266,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000018FA 626cf9013bde CCMPNO r27, r22, 0000 +00000000000018FA 626cf9013bde CCMPNO r27, r22, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -20288,7 +20288,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001900 626c7801803ebd CCMPNO byte ptr [r22], 0xbd, 0000 +0000000000001900 626c7801803ebd CCMPNO byte ptr [r22], 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -20311,7 +20311,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001907 626c780180febd CCMPNO r22b, 0xbd, 0000 +0000000000001907 626c780180febd CCMPNO r22b, 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -20333,7 +20333,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -000000000000190E 626cf801803ebd CCMPNO byte ptr [r22], 0xbd, 0000 +000000000000190E 626cf801803ebd CCMPNO byte ptr [r22], 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -20356,7 +20356,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001915 626cf80180febd CCMPNO r22b, 0xbd, 0000 +0000000000001915 626cf80180febd CCMPNO r22b, 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -20378,7 +20378,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -000000000000191C 626c7801813ebdbdbdbd CCMPNO dword ptr [r22], 0xbdbdbdbd, 0000 +000000000000191C 626c7801813ebdbdbdbd CCMPNO dword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -20401,7 +20401,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001926 626c780181febdbdbdbd CCMPNO r22d, 0xbdbdbdbd, 0000 +0000000000001926 626c780181febdbdbdbd CCMPNO r22d, 0xbdbdbdbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -20423,7 +20423,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001930 626cf801813ebdbdbdbd CCMPNO qword ptr [r22], 0xbdbdbdbd, 0000 +0000000000001930 626cf801813ebdbdbdbd CCMPNO qword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -20446,7 +20446,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -000000000000193A 626cf80181febdbdbdbd CCMPNO r22, 0xbdbdbdbd, 0000 +000000000000193A 626cf80181febdbdbdbd CCMPNO r22, 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -20468,7 +20468,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001944 626c7901813ebdbd CCMPNO word ptr [r22], 0xbdbd, 0000 +0000000000001944 626c7901813ebdbd CCMPNO word ptr [r22], 0xbdbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -20491,7 +20491,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -000000000000194C 626c790181febdbd CCMPNO r22w, 0xbdbd, 0000 +000000000000194C 626c790181febdbd CCMPNO r22w, 0xbdbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -20513,7 +20513,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000001954 626cf901813ebdbdbdbd CCMPNO qword ptr [r22], 0xbdbdbdbd, 0000 +0000000000001954 626cf901813ebdbdbdbd CCMPNO qword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -20536,7 +20536,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -000000000000195E 626cf90181febdbdbdbd CCMPNO r22, 0xbdbdbdbd, 0000 +000000000000195E 626cf90181febdbdbdbd CCMPNO r22, 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -20558,7 +20558,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001968 626c7801833ebd CCMPNO dword ptr [r22], 0xbd, 0000 +0000000000001968 626c7801833ebd CCMPNO dword ptr [r22], 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -20581,7 +20581,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -000000000000196F 626c780183febd CCMPNO r22d, 0xbd, 0000 +000000000000196F 626c780183febd CCMPNO r22d, 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -20603,7 +20603,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001976 626cf801833ebd CCMPNO qword ptr [r22], 0xbd, 0000 +0000000000001976 626cf801833ebd CCMPNO qword ptr [r22], 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -20626,7 +20626,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -000000000000197D 626cf80183febd CCMPNO r22, 0xbd, 0000 +000000000000197D 626cf80183febd CCMPNO r22, 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -20648,7 +20648,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001984 626c7901833ebd CCMPNO word ptr [r22], 0xbd, 0000 +0000000000001984 626c7901833ebd CCMPNO word ptr [r22], 0xbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -20671,7 +20671,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -000000000000198B 626c790183febd CCMPNO r22w, 0xbd, 0000 +000000000000198B 626c790183febd CCMPNO r22w, 0xbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -20693,7 +20693,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000001992 626cf901833ebd CCMPNO qword ptr [r22], 0xbd, 0000 +0000000000001992 626cf901833ebd CCMPNO qword ptr [r22], 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -20716,7 +20716,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001999 626cf90183febd CCMPNO r22, 0xbd, 0000 +0000000000001999 626cf90183febd CCMPNO r22, 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -20738,7 +20738,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000019A0 626c7809381e CCMPNS byte ptr [r22], r27b, 0000 +00000000000019A0 626c7809381e CCMPNS byte ptr [r22], r27b, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -20761,7 +20761,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -00000000000019A6 626c780938de CCMPNS r22b, r27b, 0000 +00000000000019A6 626c780938de CCMPNS r22b, r27b, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -20783,7 +20783,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -00000000000019AC 626cf809381e CCMPNS byte ptr [r22], r27b, 0000 +00000000000019AC 626cf809381e CCMPNS byte ptr [r22], r27b, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -20806,7 +20806,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000019B2 626cf80938de CCMPNS r22b, r27b, 0000 +00000000000019B2 626cf80938de CCMPNS r22b, r27b, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -20828,7 +20828,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000019B8 626c7809391e CCMPNS dword ptr [r22], r27d, 0000 +00000000000019B8 626c7809391e CCMPNS dword ptr [r22], r27d, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -20851,7 +20851,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -00000000000019BE 626c780939de CCMPNS r22d, r27d, 0000 +00000000000019BE 626c780939de CCMPNS r22d, r27d, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -20873,7 +20873,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -00000000000019C4 626cf809391e CCMPNS qword ptr [r22], r27, 0000 +00000000000019C4 626cf809391e CCMPNS qword ptr [r22], r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -20896,7 +20896,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000019CA 626cf80939de CCMPNS r22, r27, 0000 +00000000000019CA 626cf80939de CCMPNS r22, r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -20918,7 +20918,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000019D0 626c7909391e CCMPNS word ptr [r22], r27w, 0000 +00000000000019D0 626c7909391e CCMPNS word ptr [r22], r27w, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -20941,7 +20941,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -00000000000019D6 626c790939de CCMPNS r22w, r27w, 0000 +00000000000019D6 626c790939de CCMPNS r22w, r27w, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -20963,7 +20963,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -00000000000019DC 626cf909391e CCMPNS qword ptr [r22], r27, 0000 +00000000000019DC 626cf909391e CCMPNS qword ptr [r22], r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -20986,7 +20986,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000019E2 626cf90939de CCMPNS r22, r27, 0000 +00000000000019E2 626cf90939de CCMPNS r22, r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -21008,7 +21008,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000019E8 626c78093a1e CCMPNS r27b, byte ptr [r22], 0000 +00000000000019E8 626c78093a1e CCMPNS r27b, byte ptr [r22], {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -21031,7 +21031,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -00000000000019EE 626c78093ade CCMPNS r27b, r22b, 0000 +00000000000019EE 626c78093ade CCMPNS r27b, r22b, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -21053,7 +21053,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -00000000000019F4 626cf8093a1e CCMPNS r27b, byte ptr [r22], 0000 +00000000000019F4 626cf8093a1e CCMPNS r27b, byte ptr [r22], {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -21076,7 +21076,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000019FA 626cf8093ade CCMPNS r27b, r22b, 0000 +00000000000019FA 626cf8093ade CCMPNS r27b, r22b, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -21098,7 +21098,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001A00 626c78093b1e CCMPNS r27d, dword ptr [r22], 0000 +0000000000001A00 626c78093b1e CCMPNS r27d, dword ptr [r22], {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -21121,7 +21121,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001A06 626c78093bde CCMPNS r27d, r22d, 0000 +0000000000001A06 626c78093bde CCMPNS r27d, r22d, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -21143,7 +21143,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001A0C 626cf8093b1e CCMPNS r27, qword ptr [r22], 0000 +0000000000001A0C 626cf8093b1e CCMPNS r27, qword ptr [r22], {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -21166,7 +21166,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001A12 626cf8093bde CCMPNS r27, r22, 0000 +0000000000001A12 626cf8093bde CCMPNS r27, r22, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -21188,7 +21188,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001A18 626c79093b1e CCMPNS r27w, word ptr [r22], 0000 +0000000000001A18 626c79093b1e CCMPNS r27w, word ptr [r22], {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -21211,7 +21211,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000001A1E 626c79093bde CCMPNS r27w, r22w, 0000 +0000000000001A1E 626c79093bde CCMPNS r27w, r22w, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -21233,7 +21233,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000001A24 626cf9093b1e CCMPNS r27, qword ptr [r22], 0000 +0000000000001A24 626cf9093b1e CCMPNS r27, qword ptr [r22], {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -21256,7 +21256,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001A2A 626cf9093bde CCMPNS r27, r22, 0000 +0000000000001A2A 626cf9093bde CCMPNS r27, r22, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -21278,7 +21278,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001A30 626c7809803ebd CCMPNS byte ptr [r22], 0xbd, 0000 +0000000000001A30 626c7809803ebd CCMPNS byte ptr [r22], 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -21301,7 +21301,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001A37 626c780980febd CCMPNS r22b, 0xbd, 0000 +0000000000001A37 626c780980febd CCMPNS r22b, 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -21323,7 +21323,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001A3E 626cf809803ebd CCMPNS byte ptr [r22], 0xbd, 0000 +0000000000001A3E 626cf809803ebd CCMPNS byte ptr [r22], 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -21346,7 +21346,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001A45 626cf80980febd CCMPNS r22b, 0xbd, 0000 +0000000000001A45 626cf80980febd CCMPNS r22b, 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -21368,7 +21368,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001A4C 626c7809813ebdbdbdbd CCMPNS dword ptr [r22], 0xbdbdbdbd, 0000 +0000000000001A4C 626c7809813ebdbdbdbd CCMPNS dword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -21391,7 +21391,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001A56 626c780981febdbdbdbd CCMPNS r22d, 0xbdbdbdbd, 0000 +0000000000001A56 626c780981febdbdbdbd CCMPNS r22d, 0xbdbdbdbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -21413,7 +21413,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001A60 626cf809813ebdbdbdbd CCMPNS qword ptr [r22], 0xbdbdbdbd, 0000 +0000000000001A60 626cf809813ebdbdbdbd CCMPNS qword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -21436,7 +21436,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001A6A 626cf80981febdbdbdbd CCMPNS r22, 0xbdbdbdbd, 0000 +0000000000001A6A 626cf80981febdbdbdbd CCMPNS r22, 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -21458,7 +21458,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001A74 626c7909813ebdbd CCMPNS word ptr [r22], 0xbdbd, 0000 +0000000000001A74 626c7909813ebdbd CCMPNS word ptr [r22], 0xbdbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -21481,7 +21481,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000001A7C 626c790981febdbd CCMPNS r22w, 0xbdbd, 0000 +0000000000001A7C 626c790981febdbd CCMPNS r22w, 0xbdbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -21503,7 +21503,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000001A84 626cf909813ebdbdbdbd CCMPNS qword ptr [r22], 0xbdbdbdbd, 0000 +0000000000001A84 626cf909813ebdbdbdbd CCMPNS qword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -21526,7 +21526,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001A8E 626cf90981febdbdbdbd CCMPNS r22, 0xbdbdbdbd, 0000 +0000000000001A8E 626cf90981febdbdbdbd CCMPNS r22, 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -21548,7 +21548,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001A98 626c7809833ebd CCMPNS dword ptr [r22], 0xbd, 0000 +0000000000001A98 626c7809833ebd CCMPNS dword ptr [r22], 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -21571,7 +21571,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001A9F 626c780983febd CCMPNS r22d, 0xbd, 0000 +0000000000001A9F 626c780983febd CCMPNS r22d, 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -21593,7 +21593,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001AA6 626cf809833ebd CCMPNS qword ptr [r22], 0xbd, 0000 +0000000000001AA6 626cf809833ebd CCMPNS qword ptr [r22], 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -21616,7 +21616,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001AAD 626cf80983febd CCMPNS r22, 0xbd, 0000 +0000000000001AAD 626cf80983febd CCMPNS r22, 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -21638,7 +21638,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001AB4 626c7909833ebd CCMPNS word ptr [r22], 0xbd, 0000 +0000000000001AB4 626c7909833ebd CCMPNS word ptr [r22], 0xbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -21661,7 +21661,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000001ABB 626c790983febd CCMPNS r22w, 0xbd, 0000 +0000000000001ABB 626c790983febd CCMPNS r22w, 0xbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -21683,7 +21683,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000001AC2 626cf909833ebd CCMPNS qword ptr [r22], 0xbd, 0000 +0000000000001AC2 626cf909833ebd CCMPNS qword ptr [r22], 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -21706,7 +21706,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001AC9 626cf90983febd CCMPNS r22, 0xbd, 0000 +0000000000001AC9 626cf90983febd CCMPNS r22, 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -21728,7 +21728,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001AD0 626c7805381e CCMPNZ byte ptr [r22], r27b, 0000 +0000000000001AD0 626c7805381e CCMPNZ byte ptr [r22], r27b, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -21751,7 +21751,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001AD6 626c780538de CCMPNZ r22b, r27b, 0000 +0000000000001AD6 626c780538de CCMPNZ r22b, r27b, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -21773,7 +21773,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001ADC 626cf805381e CCMPNZ byte ptr [r22], r27b, 0000 +0000000000001ADC 626cf805381e CCMPNZ byte ptr [r22], r27b, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -21796,7 +21796,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001AE2 626cf80538de CCMPNZ r22b, r27b, 0000 +0000000000001AE2 626cf80538de CCMPNZ r22b, r27b, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -21818,7 +21818,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001AE8 626c7805391e CCMPNZ dword ptr [r22], r27d, 0000 +0000000000001AE8 626c7805391e CCMPNZ dword ptr [r22], r27d, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -21841,7 +21841,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001AEE 626c780539de CCMPNZ r22d, r27d, 0000 +0000000000001AEE 626c780539de CCMPNZ r22d, r27d, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -21863,7 +21863,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001AF4 626cf805391e CCMPNZ qword ptr [r22], r27, 0000 +0000000000001AF4 626cf805391e CCMPNZ qword ptr [r22], r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -21886,7 +21886,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001AFA 626cf80539de CCMPNZ r22, r27, 0000 +0000000000001AFA 626cf80539de CCMPNZ r22, r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -21908,7 +21908,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001B00 626c7905391e CCMPNZ word ptr [r22], r27w, 0000 +0000000000001B00 626c7905391e CCMPNZ word ptr [r22], r27w, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -21931,7 +21931,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000001B06 626c790539de CCMPNZ r22w, r27w, 0000 +0000000000001B06 626c790539de CCMPNZ r22w, r27w, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -21953,7 +21953,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000001B0C 626cf905391e CCMPNZ qword ptr [r22], r27, 0000 +0000000000001B0C 626cf905391e CCMPNZ qword ptr [r22], r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -21976,7 +21976,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001B12 626cf90539de CCMPNZ r22, r27, 0000 +0000000000001B12 626cf90539de CCMPNZ r22, r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -21998,7 +21998,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001B18 626c78053a1e CCMPNZ r27b, byte ptr [r22], 0000 +0000000000001B18 626c78053a1e CCMPNZ r27b, byte ptr [r22], {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -22021,7 +22021,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001B1E 626c78053ade CCMPNZ r27b, r22b, 0000 +0000000000001B1E 626c78053ade CCMPNZ r27b, r22b, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -22043,7 +22043,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001B24 626cf8053a1e CCMPNZ r27b, byte ptr [r22], 0000 +0000000000001B24 626cf8053a1e CCMPNZ r27b, byte ptr [r22], {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -22066,7 +22066,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001B2A 626cf8053ade CCMPNZ r27b, r22b, 0000 +0000000000001B2A 626cf8053ade CCMPNZ r27b, r22b, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -22088,7 +22088,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001B30 626c78053b1e CCMPNZ r27d, dword ptr [r22], 0000 +0000000000001B30 626c78053b1e CCMPNZ r27d, dword ptr [r22], {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -22111,7 +22111,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001B36 626c78053bde CCMPNZ r27d, r22d, 0000 +0000000000001B36 626c78053bde CCMPNZ r27d, r22d, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -22133,7 +22133,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001B3C 626cf8053b1e CCMPNZ r27, qword ptr [r22], 0000 +0000000000001B3C 626cf8053b1e CCMPNZ r27, qword ptr [r22], {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -22156,7 +22156,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001B42 626cf8053bde CCMPNZ r27, r22, 0000 +0000000000001B42 626cf8053bde CCMPNZ r27, r22, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -22178,7 +22178,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001B48 626c79053b1e CCMPNZ r27w, word ptr [r22], 0000 +0000000000001B48 626c79053b1e CCMPNZ r27w, word ptr [r22], {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -22201,7 +22201,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000001B4E 626c79053bde CCMPNZ r27w, r22w, 0000 +0000000000001B4E 626c79053bde CCMPNZ r27w, r22w, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -22223,7 +22223,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000001B54 626cf9053b1e CCMPNZ r27, qword ptr [r22], 0000 +0000000000001B54 626cf9053b1e CCMPNZ r27, qword ptr [r22], {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -22246,7 +22246,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001B5A 626cf9053bde CCMPNZ r27, r22, 0000 +0000000000001B5A 626cf9053bde CCMPNZ r27, r22, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -22268,7 +22268,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001B60 626c7805803ebd CCMPNZ byte ptr [r22], 0xbd, 0000 +0000000000001B60 626c7805803ebd CCMPNZ byte ptr [r22], 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -22291,7 +22291,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001B67 626c780580febd CCMPNZ r22b, 0xbd, 0000 +0000000000001B67 626c780580febd CCMPNZ r22b, 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -22313,7 +22313,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001B6E 626cf805803ebd CCMPNZ byte ptr [r22], 0xbd, 0000 +0000000000001B6E 626cf805803ebd CCMPNZ byte ptr [r22], 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -22336,7 +22336,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001B75 626cf80580febd CCMPNZ r22b, 0xbd, 0000 +0000000000001B75 626cf80580febd CCMPNZ r22b, 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -22358,7 +22358,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001B7C 626c7805813ebdbdbdbd CCMPNZ dword ptr [r22], 0xbdbdbdbd, 0000 +0000000000001B7C 626c7805813ebdbdbdbd CCMPNZ dword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -22381,7 +22381,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001B86 626c780581febdbdbdbd CCMPNZ r22d, 0xbdbdbdbd, 0000 +0000000000001B86 626c780581febdbdbdbd CCMPNZ r22d, 0xbdbdbdbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -22403,7 +22403,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001B90 626cf805813ebdbdbdbd CCMPNZ qword ptr [r22], 0xbdbdbdbd, 0000 +0000000000001B90 626cf805813ebdbdbdbd CCMPNZ qword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -22426,7 +22426,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001B9A 626cf80581febdbdbdbd CCMPNZ r22, 0xbdbdbdbd, 0000 +0000000000001B9A 626cf80581febdbdbdbd CCMPNZ r22, 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -22448,7 +22448,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001BA4 626c7905813ebdbd CCMPNZ word ptr [r22], 0xbdbd, 0000 +0000000000001BA4 626c7905813ebdbd CCMPNZ word ptr [r22], 0xbdbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -22471,7 +22471,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000001BAC 626c790581febdbd CCMPNZ r22w, 0xbdbd, 0000 +0000000000001BAC 626c790581febdbd CCMPNZ r22w, 0xbdbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -22493,7 +22493,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000001BB4 626cf905813ebdbdbdbd CCMPNZ qword ptr [r22], 0xbdbdbdbd, 0000 +0000000000001BB4 626cf905813ebdbdbdbd CCMPNZ qword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -22516,7 +22516,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001BBE 626cf90581febdbdbdbd CCMPNZ r22, 0xbdbdbdbd, 0000 +0000000000001BBE 626cf90581febdbdbdbd CCMPNZ r22, 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -22538,7 +22538,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001BC8 626c7805833ebd CCMPNZ dword ptr [r22], 0xbd, 0000 +0000000000001BC8 626c7805833ebd CCMPNZ dword ptr [r22], 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -22561,7 +22561,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001BCF 626c780583febd CCMPNZ r22d, 0xbd, 0000 +0000000000001BCF 626c780583febd CCMPNZ r22d, 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -22583,7 +22583,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001BD6 626cf805833ebd CCMPNZ qword ptr [r22], 0xbd, 0000 +0000000000001BD6 626cf805833ebd CCMPNZ qword ptr [r22], 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -22606,7 +22606,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001BDD 626cf80583febd CCMPNZ r22, 0xbd, 0000 +0000000000001BDD 626cf80583febd CCMPNZ r22, 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -22628,7 +22628,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001BE4 626c7905833ebd CCMPNZ word ptr [r22], 0xbd, 0000 +0000000000001BE4 626c7905833ebd CCMPNZ word ptr [r22], 0xbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -22651,7 +22651,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000001BEB 626c790583febd CCMPNZ r22w, 0xbd, 0000 +0000000000001BEB 626c790583febd CCMPNZ r22w, 0xbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -22673,7 +22673,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000001BF2 626cf905833ebd CCMPNZ qword ptr [r22], 0xbd, 0000 +0000000000001BF2 626cf905833ebd CCMPNZ qword ptr [r22], 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -22696,7 +22696,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001BF9 626cf90583febd CCMPNZ r22, 0xbd, 0000 +0000000000001BF9 626cf90583febd CCMPNZ r22, 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -22718,7 +22718,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001C00 626c7800381e CCMPO byte ptr [r22], r27b, 0000 +0000000000001C00 626c7800381e CCMPO byte ptr [r22], r27b, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -22741,7 +22741,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001C06 626c780038de CCMPO r22b, r27b, 0000 +0000000000001C06 626c780038de CCMPO r22b, r27b, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -22763,7 +22763,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001C0C 626cf800381e CCMPO byte ptr [r22], r27b, 0000 +0000000000001C0C 626cf800381e CCMPO byte ptr [r22], r27b, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -22786,7 +22786,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001C12 626cf80038de CCMPO r22b, r27b, 0000 +0000000000001C12 626cf80038de CCMPO r22b, r27b, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -22808,7 +22808,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001C18 626c7800391e CCMPO dword ptr [r22], r27d, 0000 +0000000000001C18 626c7800391e CCMPO dword ptr [r22], r27d, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -22831,7 +22831,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001C1E 626c780039de CCMPO r22d, r27d, 0000 +0000000000001C1E 626c780039de CCMPO r22d, r27d, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -22853,7 +22853,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001C24 626cf800391e CCMPO qword ptr [r22], r27, 0000 +0000000000001C24 626cf800391e CCMPO qword ptr [r22], r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -22876,7 +22876,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001C2A 626cf80039de CCMPO r22, r27, 0000 +0000000000001C2A 626cf80039de CCMPO r22, r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -22898,7 +22898,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001C30 626c7900391e CCMPO word ptr [r22], r27w, 0000 +0000000000001C30 626c7900391e CCMPO word ptr [r22], r27w, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -22921,7 +22921,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000001C36 626c790039de CCMPO r22w, r27w, 0000 +0000000000001C36 626c790039de CCMPO r22w, r27w, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -22943,7 +22943,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000001C3C 626cf900391e CCMPO qword ptr [r22], r27, 0000 +0000000000001C3C 626cf900391e CCMPO qword ptr [r22], r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -22966,7 +22966,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001C42 626cf90039de CCMPO r22, r27, 0000 +0000000000001C42 626cf90039de CCMPO r22, r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -22988,7 +22988,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001C48 626c78003a1e CCMPO r27b, byte ptr [r22], 0000 +0000000000001C48 626c78003a1e CCMPO r27b, byte ptr [r22], {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -23011,7 +23011,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001C4E 626c78003ade CCMPO r27b, r22b, 0000 +0000000000001C4E 626c78003ade CCMPO r27b, r22b, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -23033,7 +23033,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001C54 626cf8003a1e CCMPO r27b, byte ptr [r22], 0000 +0000000000001C54 626cf8003a1e CCMPO r27b, byte ptr [r22], {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -23056,7 +23056,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001C5A 626cf8003ade CCMPO r27b, r22b, 0000 +0000000000001C5A 626cf8003ade CCMPO r27b, r22b, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -23078,7 +23078,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001C60 626c78003b1e CCMPO r27d, dword ptr [r22], 0000 +0000000000001C60 626c78003b1e CCMPO r27d, dword ptr [r22], {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -23101,7 +23101,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001C66 626c78003bde CCMPO r27d, r22d, 0000 +0000000000001C66 626c78003bde CCMPO r27d, r22d, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -23123,7 +23123,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001C6C 626cf8003b1e CCMPO r27, qword ptr [r22], 0000 +0000000000001C6C 626cf8003b1e CCMPO r27, qword ptr [r22], {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -23146,7 +23146,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001C72 626cf8003bde CCMPO r27, r22, 0000 +0000000000001C72 626cf8003bde CCMPO r27, r22, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -23168,7 +23168,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001C78 626c79003b1e CCMPO r27w, word ptr [r22], 0000 +0000000000001C78 626c79003b1e CCMPO r27w, word ptr [r22], {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -23191,7 +23191,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000001C7E 626c79003bde CCMPO r27w, r22w, 0000 +0000000000001C7E 626c79003bde CCMPO r27w, r22w, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -23213,7 +23213,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000001C84 626cf9003b1e CCMPO r27, qword ptr [r22], 0000 +0000000000001C84 626cf9003b1e CCMPO r27, qword ptr [r22], {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -23236,7 +23236,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001C8A 626cf9003bde CCMPO r27, r22, 0000 +0000000000001C8A 626cf9003bde CCMPO r27, r22, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -23258,7 +23258,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001C90 626c7800803ebd CCMPO byte ptr [r22], 0xbd, 0000 +0000000000001C90 626c7800803ebd CCMPO byte ptr [r22], 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -23281,7 +23281,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001C97 626c780080febd CCMPO r22b, 0xbd, 0000 +0000000000001C97 626c780080febd CCMPO r22b, 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -23303,7 +23303,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001C9E 626cf800803ebd CCMPO byte ptr [r22], 0xbd, 0000 +0000000000001C9E 626cf800803ebd CCMPO byte ptr [r22], 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -23326,7 +23326,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001CA5 626cf80080febd CCMPO r22b, 0xbd, 0000 +0000000000001CA5 626cf80080febd CCMPO r22b, 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -23348,7 +23348,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001CAC 626c7800813ebdbdbdbd CCMPO dword ptr [r22], 0xbdbdbdbd, 0000 +0000000000001CAC 626c7800813ebdbdbdbd CCMPO dword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -23371,7 +23371,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001CB6 626c780081febdbdbdbd CCMPO r22d, 0xbdbdbdbd, 0000 +0000000000001CB6 626c780081febdbdbdbd CCMPO r22d, 0xbdbdbdbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -23393,7 +23393,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001CC0 626cf800813ebdbdbdbd CCMPO qword ptr [r22], 0xbdbdbdbd, 0000 +0000000000001CC0 626cf800813ebdbdbdbd CCMPO qword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -23416,7 +23416,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001CCA 626cf80081febdbdbdbd CCMPO r22, 0xbdbdbdbd, 0000 +0000000000001CCA 626cf80081febdbdbdbd CCMPO r22, 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -23438,7 +23438,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001CD4 626c7900813ebdbd CCMPO word ptr [r22], 0xbdbd, 0000 +0000000000001CD4 626c7900813ebdbd CCMPO word ptr [r22], 0xbdbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -23461,7 +23461,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000001CDC 626c790081febdbd CCMPO r22w, 0xbdbd, 0000 +0000000000001CDC 626c790081febdbd CCMPO r22w, 0xbdbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -23483,7 +23483,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000001CE4 626cf900813ebdbdbdbd CCMPO qword ptr [r22], 0xbdbdbdbd, 0000 +0000000000001CE4 626cf900813ebdbdbdbd CCMPO qword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -23506,7 +23506,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001CEE 626cf90081febdbdbdbd CCMPO r22, 0xbdbdbdbd, 0000 +0000000000001CEE 626cf90081febdbdbdbd CCMPO r22, 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -23528,7 +23528,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001CF8 626c7800833ebd CCMPO dword ptr [r22], 0xbd, 0000 +0000000000001CF8 626c7800833ebd CCMPO dword ptr [r22], 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -23551,7 +23551,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001CFF 626c780083febd CCMPO r22d, 0xbd, 0000 +0000000000001CFF 626c780083febd CCMPO r22d, 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -23573,7 +23573,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001D06 626cf800833ebd CCMPO qword ptr [r22], 0xbd, 0000 +0000000000001D06 626cf800833ebd CCMPO qword ptr [r22], 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -23596,7 +23596,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001D0D 626cf80083febd CCMPO r22, 0xbd, 0000 +0000000000001D0D 626cf80083febd CCMPO r22, 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -23618,7 +23618,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001D14 626c7900833ebd CCMPO word ptr [r22], 0xbd, 0000 +0000000000001D14 626c7900833ebd CCMPO word ptr [r22], 0xbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -23641,7 +23641,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000001D1B 626c790083febd CCMPO r22w, 0xbd, 0000 +0000000000001D1B 626c790083febd CCMPO r22w, 0xbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -23663,7 +23663,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000001D22 626cf900833ebd CCMPO qword ptr [r22], 0xbd, 0000 +0000000000001D22 626cf900833ebd CCMPO qword ptr [r22], 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -23686,7 +23686,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001D29 626cf90083febd CCMPO r22, 0xbd, 0000 +0000000000001D29 626cf90083febd CCMPO r22, 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -23708,7 +23708,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001D30 626c7808381e CCMPS byte ptr [r22], r27b, 0000 +0000000000001D30 626c7808381e CCMPS byte ptr [r22], r27b, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -23731,7 +23731,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001D36 626c780838de CCMPS r22b, r27b, 0000 +0000000000001D36 626c780838de CCMPS r22b, r27b, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -23753,7 +23753,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001D3C 626cf808381e CCMPS byte ptr [r22], r27b, 0000 +0000000000001D3C 626cf808381e CCMPS byte ptr [r22], r27b, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -23776,7 +23776,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001D42 626cf80838de CCMPS r22b, r27b, 0000 +0000000000001D42 626cf80838de CCMPS r22b, r27b, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -23798,7 +23798,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001D48 626c7808391e CCMPS dword ptr [r22], r27d, 0000 +0000000000001D48 626c7808391e CCMPS dword ptr [r22], r27d, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -23821,7 +23821,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001D4E 626c780839de CCMPS r22d, r27d, 0000 +0000000000001D4E 626c780839de CCMPS r22d, r27d, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -23843,7 +23843,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001D54 626cf808391e CCMPS qword ptr [r22], r27, 0000 +0000000000001D54 626cf808391e CCMPS qword ptr [r22], r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -23866,7 +23866,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001D5A 626cf80839de CCMPS r22, r27, 0000 +0000000000001D5A 626cf80839de CCMPS r22, r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -23888,7 +23888,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001D60 626c7908391e CCMPS word ptr [r22], r27w, 0000 +0000000000001D60 626c7908391e CCMPS word ptr [r22], r27w, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -23911,7 +23911,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000001D66 626c790839de CCMPS r22w, r27w, 0000 +0000000000001D66 626c790839de CCMPS r22w, r27w, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -23933,7 +23933,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000001D6C 626cf908391e CCMPS qword ptr [r22], r27, 0000 +0000000000001D6C 626cf908391e CCMPS qword ptr [r22], r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -23956,7 +23956,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001D72 626cf90839de CCMPS r22, r27, 0000 +0000000000001D72 626cf90839de CCMPS r22, r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -23978,7 +23978,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001D78 626c78083a1e CCMPS r27b, byte ptr [r22], 0000 +0000000000001D78 626c78083a1e CCMPS r27b, byte ptr [r22], {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -24001,7 +24001,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001D7E 626c78083ade CCMPS r27b, r22b, 0000 +0000000000001D7E 626c78083ade CCMPS r27b, r22b, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -24023,7 +24023,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001D84 626cf8083a1e CCMPS r27b, byte ptr [r22], 0000 +0000000000001D84 626cf8083a1e CCMPS r27b, byte ptr [r22], {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -24046,7 +24046,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001D8A 626cf8083ade CCMPS r27b, r22b, 0000 +0000000000001D8A 626cf8083ade CCMPS r27b, r22b, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -24068,7 +24068,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001D90 626c78083b1e CCMPS r27d, dword ptr [r22], 0000 +0000000000001D90 626c78083b1e CCMPS r27d, dword ptr [r22], {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -24091,7 +24091,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001D96 626c78083bde CCMPS r27d, r22d, 0000 +0000000000001D96 626c78083bde CCMPS r27d, r22d, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -24113,7 +24113,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001D9C 626cf8083b1e CCMPS r27, qword ptr [r22], 0000 +0000000000001D9C 626cf8083b1e CCMPS r27, qword ptr [r22], {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -24136,7 +24136,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001DA2 626cf8083bde CCMPS r27, r22, 0000 +0000000000001DA2 626cf8083bde CCMPS r27, r22, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -24158,7 +24158,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001DA8 626c79083b1e CCMPS r27w, word ptr [r22], 0000 +0000000000001DA8 626c79083b1e CCMPS r27w, word ptr [r22], {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -24181,7 +24181,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000001DAE 626c79083bde CCMPS r27w, r22w, 0000 +0000000000001DAE 626c79083bde CCMPS r27w, r22w, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -24203,7 +24203,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000001DB4 626cf9083b1e CCMPS r27, qword ptr [r22], 0000 +0000000000001DB4 626cf9083b1e CCMPS r27, qword ptr [r22], {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -24226,7 +24226,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001DBA 626cf9083bde CCMPS r27, r22, 0000 +0000000000001DBA 626cf9083bde CCMPS r27, r22, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -24248,7 +24248,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001DC0 626c7808803ebd CCMPS byte ptr [r22], 0xbd, 0000 +0000000000001DC0 626c7808803ebd CCMPS byte ptr [r22], 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -24271,7 +24271,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001DC7 626c780880febd CCMPS r22b, 0xbd, 0000 +0000000000001DC7 626c780880febd CCMPS r22b, 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -24293,7 +24293,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001DCE 626cf808803ebd CCMPS byte ptr [r22], 0xbd, 0000 +0000000000001DCE 626cf808803ebd CCMPS byte ptr [r22], 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -24316,7 +24316,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001DD5 626cf80880febd CCMPS r22b, 0xbd, 0000 +0000000000001DD5 626cf80880febd CCMPS r22b, 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -24338,7 +24338,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001DDC 626c7808813ebdbdbdbd CCMPS dword ptr [r22], 0xbdbdbdbd, 0000 +0000000000001DDC 626c7808813ebdbdbdbd CCMPS dword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -24361,7 +24361,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001DE6 626c780881febdbdbdbd CCMPS r22d, 0xbdbdbdbd, 0000 +0000000000001DE6 626c780881febdbdbdbd CCMPS r22d, 0xbdbdbdbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -24383,7 +24383,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001DF0 626cf808813ebdbdbdbd CCMPS qword ptr [r22], 0xbdbdbdbd, 0000 +0000000000001DF0 626cf808813ebdbdbdbd CCMPS qword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -24406,7 +24406,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001DFA 626cf80881febdbdbdbd CCMPS r22, 0xbdbdbdbd, 0000 +0000000000001DFA 626cf80881febdbdbdbd CCMPS r22, 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -24428,7 +24428,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001E04 626c7908813ebdbd CCMPS word ptr [r22], 0xbdbd, 0000 +0000000000001E04 626c7908813ebdbd CCMPS word ptr [r22], 0xbdbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -24451,7 +24451,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000001E0C 626c790881febdbd CCMPS r22w, 0xbdbd, 0000 +0000000000001E0C 626c790881febdbd CCMPS r22w, 0xbdbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -24473,7 +24473,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000001E14 626cf908813ebdbdbdbd CCMPS qword ptr [r22], 0xbdbdbdbd, 0000 +0000000000001E14 626cf908813ebdbdbdbd CCMPS qword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -24496,7 +24496,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001E1E 626cf90881febdbdbdbd CCMPS r22, 0xbdbdbdbd, 0000 +0000000000001E1E 626cf90881febdbdbdbd CCMPS r22, 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -24518,7 +24518,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001E28 626c7808833ebd CCMPS dword ptr [r22], 0xbd, 0000 +0000000000001E28 626c7808833ebd CCMPS dword ptr [r22], 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -24541,7 +24541,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001E2F 626c780883febd CCMPS r22d, 0xbd, 0000 +0000000000001E2F 626c780883febd CCMPS r22d, 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -24563,7 +24563,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001E36 626cf808833ebd CCMPS qword ptr [r22], 0xbd, 0000 +0000000000001E36 626cf808833ebd CCMPS qword ptr [r22], 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -24586,7 +24586,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001E3D 626cf80883febd CCMPS r22, 0xbd, 0000 +0000000000001E3D 626cf80883febd CCMPS r22, 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -24608,7 +24608,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001E44 626c7908833ebd CCMPS word ptr [r22], 0xbd, 0000 +0000000000001E44 626c7908833ebd CCMPS word ptr [r22], 0xbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -24631,7 +24631,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000001E4B 626c790883febd CCMPS r22w, 0xbd, 0000 +0000000000001E4B 626c790883febd CCMPS r22w, 0xbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -24653,7 +24653,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000001E52 626cf908833ebd CCMPS qword ptr [r22], 0xbd, 0000 +0000000000001E52 626cf908833ebd CCMPS qword ptr [r22], 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -24676,7 +24676,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001E59 626cf90883febd CCMPS r22, 0xbd, 0000 +0000000000001E59 626cf90883febd CCMPS r22, 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -24698,7 +24698,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001E60 626c780a381e CCMPT byte ptr [r22], r27b, 0000 +0000000000001E60 626c780a381e CCMPT byte ptr [r22], r27b, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -24721,7 +24721,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001E66 626c780a38de CCMPT r22b, r27b, 0000 +0000000000001E66 626c780a38de CCMPT r22b, r27b, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -24743,7 +24743,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001E6C 626cf80a381e CCMPT byte ptr [r22], r27b, 0000 +0000000000001E6C 626cf80a381e CCMPT byte ptr [r22], r27b, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -24766,7 +24766,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001E72 626cf80a38de CCMPT r22b, r27b, 0000 +0000000000001E72 626cf80a38de CCMPT r22b, r27b, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -24788,7 +24788,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001E78 626c780a391e CCMPT dword ptr [r22], r27d, 0000 +0000000000001E78 626c780a391e CCMPT dword ptr [r22], r27d, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -24811,7 +24811,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001E7E 626c780a39de CCMPT r22d, r27d, 0000 +0000000000001E7E 626c780a39de CCMPT r22d, r27d, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -24833,7 +24833,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001E84 626cf80a391e CCMPT qword ptr [r22], r27, 0000 +0000000000001E84 626cf80a391e CCMPT qword ptr [r22], r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -24856,7 +24856,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001E8A 626cf80a39de CCMPT r22, r27, 0000 +0000000000001E8A 626cf80a39de CCMPT r22, r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -24878,7 +24878,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001E90 626c790a391e CCMPT word ptr [r22], r27w, 0000 +0000000000001E90 626c790a391e CCMPT word ptr [r22], r27w, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -24901,7 +24901,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000001E96 626c790a39de CCMPT r22w, r27w, 0000 +0000000000001E96 626c790a39de CCMPT r22w, r27w, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -24923,7 +24923,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000001E9C 626cf90a391e CCMPT qword ptr [r22], r27, 0000 +0000000000001E9C 626cf90a391e CCMPT qword ptr [r22], r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -24946,7 +24946,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001EA2 626cf90a39de CCMPT r22, r27, 0000 +0000000000001EA2 626cf90a39de CCMPT r22, r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -24968,7 +24968,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001EA8 626c780a3a1e CCMPT r27b, byte ptr [r22], 0000 +0000000000001EA8 626c780a3a1e CCMPT r27b, byte ptr [r22], {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -24991,7 +24991,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001EAE 626c780a3ade CCMPT r27b, r22b, 0000 +0000000000001EAE 626c780a3ade CCMPT r27b, r22b, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -25013,7 +25013,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001EB4 626cf80a3a1e CCMPT r27b, byte ptr [r22], 0000 +0000000000001EB4 626cf80a3a1e CCMPT r27b, byte ptr [r22], {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -25036,7 +25036,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001EBA 626cf80a3ade CCMPT r27b, r22b, 0000 +0000000000001EBA 626cf80a3ade CCMPT r27b, r22b, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -25058,7 +25058,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001EC0 626c780a3b1e CCMPT r27d, dword ptr [r22], 0000 +0000000000001EC0 626c780a3b1e CCMPT r27d, dword ptr [r22], {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -25081,7 +25081,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001EC6 626c780a3bde CCMPT r27d, r22d, 0000 +0000000000001EC6 626c780a3bde CCMPT r27d, r22d, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -25103,7 +25103,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001ECC 626cf80a3b1e CCMPT r27, qword ptr [r22], 0000 +0000000000001ECC 626cf80a3b1e CCMPT r27, qword ptr [r22], {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -25126,7 +25126,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001ED2 626cf80a3bde CCMPT r27, r22, 0000 +0000000000001ED2 626cf80a3bde CCMPT r27, r22, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -25148,7 +25148,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001ED8 626c790a3b1e CCMPT r27w, word ptr [r22], 0000 +0000000000001ED8 626c790a3b1e CCMPT r27w, word ptr [r22], {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -25171,7 +25171,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000001EDE 626c790a3bde CCMPT r27w, r22w, 0000 +0000000000001EDE 626c790a3bde CCMPT r27w, r22w, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -25193,7 +25193,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000001EE4 626cf90a3b1e CCMPT r27, qword ptr [r22], 0000 +0000000000001EE4 626cf90a3b1e CCMPT r27, qword ptr [r22], {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -25216,7 +25216,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001EEA 626cf90a3bde CCMPT r27, r22, 0000 +0000000000001EEA 626cf90a3bde CCMPT r27, r22, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -25238,7 +25238,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001EF0 626c780a803ebd CCMPT byte ptr [r22], 0xbd, 0000 +0000000000001EF0 626c780a803ebd CCMPT byte ptr [r22], 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -25261,7 +25261,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001EF7 626c780a80febd CCMPT r22b, 0xbd, 0000 +0000000000001EF7 626c780a80febd CCMPT r22b, 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -25283,7 +25283,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001EFE 626cf80a803ebd CCMPT byte ptr [r22], 0xbd, 0000 +0000000000001EFE 626cf80a803ebd CCMPT byte ptr [r22], 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -25306,7 +25306,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001F05 626cf80a80febd CCMPT r22b, 0xbd, 0000 +0000000000001F05 626cf80a80febd CCMPT r22b, 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -25328,7 +25328,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001F0C 626c780a813ebdbdbdbd CCMPT dword ptr [r22], 0xbdbdbdbd, 0000 +0000000000001F0C 626c780a813ebdbdbdbd CCMPT dword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -25351,7 +25351,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001F16 626c780a81febdbdbdbd CCMPT r22d, 0xbdbdbdbd, 0000 +0000000000001F16 626c780a81febdbdbdbd CCMPT r22d, 0xbdbdbdbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -25373,7 +25373,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001F20 626cf80a813ebdbdbdbd CCMPT qword ptr [r22], 0xbdbdbdbd, 0000 +0000000000001F20 626cf80a813ebdbdbdbd CCMPT qword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -25396,7 +25396,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001F2A 626cf80a81febdbdbdbd CCMPT r22, 0xbdbdbdbd, 0000 +0000000000001F2A 626cf80a81febdbdbdbd CCMPT r22, 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -25418,7 +25418,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001F34 626c790a813ebdbd CCMPT word ptr [r22], 0xbdbd, 0000 +0000000000001F34 626c790a813ebdbd CCMPT word ptr [r22], 0xbdbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -25441,7 +25441,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000001F3C 626c790a81febdbd CCMPT r22w, 0xbdbd, 0000 +0000000000001F3C 626c790a81febdbd CCMPT r22w, 0xbdbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -25463,7 +25463,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000001F44 626cf90a813ebdbdbdbd CCMPT qword ptr [r22], 0xbdbdbdbd, 0000 +0000000000001F44 626cf90a813ebdbdbdbd CCMPT qword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -25486,7 +25486,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001F4E 626cf90a81febdbdbdbd CCMPT r22, 0xbdbdbdbd, 0000 +0000000000001F4E 626cf90a81febdbdbdbd CCMPT r22, 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -25508,7 +25508,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001F58 626c780a833ebd CCMPT dword ptr [r22], 0xbd, 0000 +0000000000001F58 626c780a833ebd CCMPT dword ptr [r22], 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -25531,7 +25531,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001F5F 626c780a83febd CCMPT r22d, 0xbd, 0000 +0000000000001F5F 626c780a83febd CCMPT r22d, 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -25553,7 +25553,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001F66 626cf80a833ebd CCMPT qword ptr [r22], 0xbd, 0000 +0000000000001F66 626cf80a833ebd CCMPT qword ptr [r22], 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -25576,7 +25576,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001F6D 626cf80a83febd CCMPT r22, 0xbd, 0000 +0000000000001F6D 626cf80a83febd CCMPT r22, 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -25598,7 +25598,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001F74 626c790a833ebd CCMPT word ptr [r22], 0xbd, 0000 +0000000000001F74 626c790a833ebd CCMPT word ptr [r22], 0xbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -25621,7 +25621,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000001F7B 626c790a83febd CCMPT r22w, 0xbd, 0000 +0000000000001F7B 626c790a83febd CCMPT r22w, 0xbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -25643,7 +25643,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000001F82 626cf90a833ebd CCMPT qword ptr [r22], 0xbd, 0000 +0000000000001F82 626cf90a833ebd CCMPT qword ptr [r22], 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -25666,7 +25666,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001F89 626cf90a83febd CCMPT r22, 0xbd, 0000 +0000000000001F89 626cf90a83febd CCMPT r22, 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -25688,7 +25688,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001F90 626c7804381e CCMPZ byte ptr [r22], r27b, 0000 +0000000000001F90 626c7804381e CCMPZ byte ptr [r22], r27b, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -25711,7 +25711,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001F96 626c780438de CCMPZ r22b, r27b, 0000 +0000000000001F96 626c780438de CCMPZ r22b, r27b, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -25733,7 +25733,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001F9C 626cf804381e CCMPZ byte ptr [r22], r27b, 0000 +0000000000001F9C 626cf804381e CCMPZ byte ptr [r22], r27b, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -25756,7 +25756,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001FA2 626cf80438de CCMPZ r22b, r27b, 0000 +0000000000001FA2 626cf80438de CCMPZ r22b, r27b, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -25778,7 +25778,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001FA8 626c7804391e CCMPZ dword ptr [r22], r27d, 0000 +0000000000001FA8 626c7804391e CCMPZ dword ptr [r22], r27d, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -25801,7 +25801,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001FAE 626c780439de CCMPZ r22d, r27d, 0000 +0000000000001FAE 626c780439de CCMPZ r22d, r27d, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -25823,7 +25823,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001FB4 626cf804391e CCMPZ qword ptr [r22], r27, 0000 +0000000000001FB4 626cf804391e CCMPZ qword ptr [r22], r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -25846,7 +25846,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001FBA 626cf80439de CCMPZ r22, r27, 0000 +0000000000001FBA 626cf80439de CCMPZ r22, r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -25868,7 +25868,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001FC0 626c7904391e CCMPZ word ptr [r22], r27w, 0000 +0000000000001FC0 626c7904391e CCMPZ word ptr [r22], r27w, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -25891,7 +25891,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000001FC6 626c790439de CCMPZ r22w, r27w, 0000 +0000000000001FC6 626c790439de CCMPZ r22w, r27w, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -25913,7 +25913,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000001FCC 626cf904391e CCMPZ qword ptr [r22], r27, 0000 +0000000000001FCC 626cf904391e CCMPZ qword ptr [r22], r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -25936,7 +25936,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001FD2 626cf90439de CCMPZ r22, r27, 0000 +0000000000001FD2 626cf90439de CCMPZ r22, r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -25958,7 +25958,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001FD8 626c78043a1e CCMPZ r27b, byte ptr [r22], 0000 +0000000000001FD8 626c78043a1e CCMPZ r27b, byte ptr [r22], {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -25981,7 +25981,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001FDE 626c78043ade CCMPZ r27b, r22b, 0000 +0000000000001FDE 626c78043ade CCMPZ r27b, r22b, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -26003,7 +26003,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001FE4 626cf8043a1e CCMPZ r27b, byte ptr [r22], 0000 +0000000000001FE4 626cf8043a1e CCMPZ r27b, byte ptr [r22], {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -26026,7 +26026,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001FEA 626cf8043ade CCMPZ r27b, r22b, 0000 +0000000000001FEA 626cf8043ade CCMPZ r27b, r22b, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -26048,7 +26048,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000001FF0 626c78043b1e CCMPZ r27d, dword ptr [r22], 0000 +0000000000001FF0 626c78043b1e CCMPZ r27d, dword ptr [r22], {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -26071,7 +26071,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001FF6 626c78043bde CCMPZ r27d, r22d, 0000 +0000000000001FF6 626c78043bde CCMPZ r27d, r22d, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -26093,7 +26093,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000001FFC 626cf8043b1e CCMPZ r27, qword ptr [r22], 0000 +0000000000001FFC 626cf8043b1e CCMPZ r27, qword ptr [r22], {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -26116,7 +26116,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000002002 626cf8043bde CCMPZ r27, r22, 0000 +0000000000002002 626cf8043bde CCMPZ r27, r22, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -26138,7 +26138,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000002008 626c79043b1e CCMPZ r27w, word ptr [r22], 0000 +0000000000002008 626c79043b1e CCMPZ r27w, word ptr [r22], {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -26161,7 +26161,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -000000000000200E 626c79043bde CCMPZ r27w, r22w, 0000 +000000000000200E 626c79043bde CCMPZ r27w, r22w, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -26183,7 +26183,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000002014 626cf9043b1e CCMPZ r27, qword ptr [r22], 0000 +0000000000002014 626cf9043b1e CCMPZ r27, qword ptr [r22], {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -26206,7 +26206,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -000000000000201A 626cf9043bde CCMPZ r27, r22, 0000 +000000000000201A 626cf9043bde CCMPZ r27, r22, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -26228,7 +26228,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000002020 626c7804803ebd CCMPZ byte ptr [r22], 0xbd, 0000 +0000000000002020 626c7804803ebd CCMPZ byte ptr [r22], 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -26251,7 +26251,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000002027 626c780480febd CCMPZ r22b, 0xbd, 0000 +0000000000002027 626c780480febd CCMPZ r22b, 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -26273,7 +26273,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -000000000000202E 626cf804803ebd CCMPZ byte ptr [r22], 0xbd, 0000 +000000000000202E 626cf804803ebd CCMPZ byte ptr [r22], 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -26296,7 +26296,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000002035 626cf80480febd CCMPZ r22b, 0xbd, 0000 +0000000000002035 626cf80480febd CCMPZ r22b, 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -26318,7 +26318,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -000000000000203C 626c7804813ebdbdbdbd CCMPZ dword ptr [r22], 0xbdbdbdbd, 0000 +000000000000203C 626c7804813ebdbdbdbd CCMPZ dword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -26341,7 +26341,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000002046 626c780481febdbdbdbd CCMPZ r22d, 0xbdbdbdbd, 0000 +0000000000002046 626c780481febdbdbdbd CCMPZ r22d, 0xbdbdbdbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -26363,7 +26363,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000002050 626cf804813ebdbdbdbd CCMPZ qword ptr [r22], 0xbdbdbdbd, 0000 +0000000000002050 626cf804813ebdbdbdbd CCMPZ qword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -26386,7 +26386,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -000000000000205A 626cf80481febdbdbdbd CCMPZ r22, 0xbdbdbdbd, 0000 +000000000000205A 626cf80481febdbdbdbd CCMPZ r22, 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -26408,7 +26408,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000002064 626c7904813ebdbd CCMPZ word ptr [r22], 0xbdbd, 0000 +0000000000002064 626c7904813ebdbd CCMPZ word ptr [r22], 0xbdbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -26431,7 +26431,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -000000000000206C 626c790481febdbd CCMPZ r22w, 0xbdbd, 0000 +000000000000206C 626c790481febdbd CCMPZ r22w, 0xbdbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -26453,7 +26453,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000002074 626cf904813ebdbdbdbd CCMPZ qword ptr [r22], 0xbdbdbdbd, 0000 +0000000000002074 626cf904813ebdbdbdbd CCMPZ qword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -26476,7 +26476,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -000000000000207E 626cf90481febdbdbdbd CCMPZ r22, 0xbdbdbdbd, 0000 +000000000000207E 626cf90481febdbdbdbd CCMPZ r22, 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -26498,7 +26498,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000002088 626c7804833ebd CCMPZ dword ptr [r22], 0xbd, 0000 +0000000000002088 626c7804833ebd CCMPZ dword ptr [r22], 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -26521,7 +26521,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -000000000000208F 626c780483febd CCMPZ r22d, 0xbd, 0000 +000000000000208F 626c780483febd CCMPZ r22d, 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -26543,7 +26543,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000002096 626cf804833ebd CCMPZ qword ptr [r22], 0xbd, 0000 +0000000000002096 626cf804833ebd CCMPZ qword ptr [r22], 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -26566,7 +26566,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -000000000000209D 626cf80483febd CCMPZ r22, 0xbd, 0000 +000000000000209D 626cf80483febd CCMPZ r22, 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -26588,7 +26588,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000020A4 626c7904833ebd CCMPZ word ptr [r22], 0xbd, 0000 +00000000000020A4 626c7904833ebd CCMPZ word ptr [r22], 0xbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -26611,7 +26611,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -00000000000020AB 626c790483febd CCMPZ r22w, 0xbd, 0000 +00000000000020AB 626c790483febd CCMPZ r22w, 0xbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -26633,7 +26633,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -00000000000020B2 626cf904833ebd CCMPZ qword ptr [r22], 0xbd, 0000 +00000000000020B2 626cf904833ebd CCMPZ qword ptr [r22], 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -26656,7 +26656,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000020B9 626cf90483febd CCMPZ r22, 0xbd, 0000 +00000000000020B9 626cf90483febd CCMPZ r22, 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -38900,7 +38900,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 27, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 -0000000000002DC8 626c7806841e CTESTBE byte ptr [r22], r27b, 0000 +0000000000002DC8 626c7806841e CTESTBE byte ptr [r22], r27b, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -38923,7 +38923,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000002DCE 626c780684de CTESTBE r22b, r27b, 0000 +0000000000002DCE 626c780684de CTESTBE r22b, r27b, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -38945,7 +38945,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000002DD4 626cf806841e CTESTBE byte ptr [r22], r27b, 0000 +0000000000002DD4 626cf806841e CTESTBE byte ptr [r22], r27b, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -38968,7 +38968,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000002DDA 626cf80684de CTESTBE r22b, r27b, 0000 +0000000000002DDA 626cf80684de CTESTBE r22b, r27b, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -38990,7 +38990,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000002DE0 626c7806851e CTESTBE dword ptr [r22], r27d, 0000 +0000000000002DE0 626c7806851e CTESTBE dword ptr [r22], r27d, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -39013,7 +39013,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000002DE6 626c780685de CTESTBE r22d, r27d, 0000 +0000000000002DE6 626c780685de CTESTBE r22d, r27d, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -39035,7 +39035,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000002DEC 626cf806851e CTESTBE qword ptr [r22], r27, 0000 +0000000000002DEC 626cf806851e CTESTBE qword ptr [r22], r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -39058,7 +39058,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000002DF2 626cf80685de CTESTBE r22, r27, 0000 +0000000000002DF2 626cf80685de CTESTBE r22, r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -39080,7 +39080,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000002DF8 626c7906851e CTESTBE word ptr [r22], r27w, 0000 +0000000000002DF8 626c7906851e CTESTBE word ptr [r22], r27w, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -39103,7 +39103,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000002DFE 626c790685de CTESTBE r22w, r27w, 0000 +0000000000002DFE 626c790685de CTESTBE r22w, r27w, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -39125,7 +39125,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000002E04 626cf906851e CTESTBE qword ptr [r22], r27, 0000 +0000000000002E04 626cf906851e CTESTBE qword ptr [r22], r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -39148,7 +39148,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000002E0A 626cf90685de CTESTBE r22, r27, 0000 +0000000000002E0A 626cf90685de CTESTBE r22, r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -39170,7 +39170,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000002E10 626c7806f606bd CTESTBE byte ptr [r22], 0xbd, 0000 +0000000000002E10 626c7806f606bd CTESTBE byte ptr [r22], 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -39193,7 +39193,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000002E17 626c7806f6c6bd CTESTBE r22b, 0xbd, 0000 +0000000000002E17 626c7806f6c6bd CTESTBE r22b, 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -39215,7 +39215,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000002E1E 626cf806f606bd CTESTBE byte ptr [r22], 0xbd, 0000 +0000000000002E1E 626cf806f606bd CTESTBE byte ptr [r22], 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -39238,7 +39238,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000002E25 626cf806f6c6bd CTESTBE r22b, 0xbd, 0000 +0000000000002E25 626cf806f6c6bd CTESTBE r22b, 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -39260,7 +39260,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000002E2C 626c7806f60ebd CTESTBE byte ptr [r22], 0xbd, 0000 +0000000000002E2C 626c7806f60ebd CTESTBE byte ptr [r22], 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -39283,7 +39283,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000002E33 626c7806f6cebd CTESTBE r22b, 0xbd, 0000 +0000000000002E33 626c7806f6cebd CTESTBE r22b, 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -39305,7 +39305,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000002E3A 626cf806f60ebd CTESTBE byte ptr [r22], 0xbd, 0000 +0000000000002E3A 626cf806f60ebd CTESTBE byte ptr [r22], 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -39328,7 +39328,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000002E41 626cf806f6cebd CTESTBE r22b, 0xbd, 0000 +0000000000002E41 626cf806f6cebd CTESTBE r22b, 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -39350,7 +39350,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000002E48 626c7806f706bdbdbdbd CTESTBE dword ptr [r22], 0xbdbdbdbd, 0000 +0000000000002E48 626c7806f706bdbdbdbd CTESTBE dword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -39373,7 +39373,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000002E52 626c7806f7c6bdbdbdbd CTESTBE r22d, 0xbdbdbdbd, 0000 +0000000000002E52 626c7806f7c6bdbdbdbd CTESTBE r22d, 0xbdbdbdbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -39395,7 +39395,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000002E5C 626cf806f706bdbdbdbd CTESTBE qword ptr [r22], 0xbdbdbdbd, 0000 +0000000000002E5C 626cf806f706bdbdbdbd CTESTBE qword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -39418,7 +39418,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000002E66 626cf806f7c6bdbdbdbd CTESTBE r22, 0xbdbdbdbd, 0000 +0000000000002E66 626cf806f7c6bdbdbdbd CTESTBE r22, 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -39440,7 +39440,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000002E70 626c7906f706bdbd CTESTBE word ptr [r22], 0xbdbd, 0000 +0000000000002E70 626c7906f706bdbd CTESTBE word ptr [r22], 0xbdbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -39463,7 +39463,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000002E78 626c7906f7c6bdbd CTESTBE r22w, 0xbdbd, 0000 +0000000000002E78 626c7906f7c6bdbd CTESTBE r22w, 0xbdbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -39485,7 +39485,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000002E80 626cf906f706bdbdbdbd CTESTBE qword ptr [r22], 0xbdbdbdbd, 0000 +0000000000002E80 626cf906f706bdbdbdbd CTESTBE qword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -39508,7 +39508,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000002E8A 626cf906f7c6bdbdbdbd CTESTBE r22, 0xbdbdbdbd, 0000 +0000000000002E8A 626cf906f7c6bdbdbdbd CTESTBE r22, 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -39530,7 +39530,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000002E94 626c7806f70ebdbdbdbd CTESTBE dword ptr [r22], 0xbdbdbdbd, 0000 +0000000000002E94 626c7806f70ebdbdbdbd CTESTBE dword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -39553,7 +39553,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000002E9E 626c7806f7cebdbdbdbd CTESTBE r22d, 0xbdbdbdbd, 0000 +0000000000002E9E 626c7806f7cebdbdbdbd CTESTBE r22d, 0xbdbdbdbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -39575,7 +39575,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000002EA8 626cf806f70ebdbdbdbd CTESTBE qword ptr [r22], 0xbdbdbdbd, 0000 +0000000000002EA8 626cf806f70ebdbdbdbd CTESTBE qword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -39598,7 +39598,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000002EB2 626cf806f7cebdbdbdbd CTESTBE r22, 0xbdbdbdbd, 0000 +0000000000002EB2 626cf806f7cebdbdbdbd CTESTBE r22, 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -39620,7 +39620,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000002EBC 626c7906f70ebdbd CTESTBE word ptr [r22], 0xbdbd, 0000 +0000000000002EBC 626c7906f70ebdbd CTESTBE word ptr [r22], 0xbdbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -39643,7 +39643,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000002EC4 626c7906f7cebdbd CTESTBE r22w, 0xbdbd, 0000 +0000000000002EC4 626c7906f7cebdbd CTESTBE r22w, 0xbdbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -39665,7 +39665,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000002ECC 626cf906f70ebdbdbdbd CTESTBE qword ptr [r22], 0xbdbdbdbd, 0000 +0000000000002ECC 626cf906f70ebdbdbdbd CTESTBE qword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -39688,7 +39688,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000002ED6 626cf906f7cebdbdbdbd CTESTBE r22, 0xbdbdbdbd, 0000 +0000000000002ED6 626cf906f7cebdbdbdbd CTESTBE r22, 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -39710,7 +39710,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000002EE0 626c7802841e CTESTC byte ptr [r22], r27b, 0000 +0000000000002EE0 626c7802841e CTESTC byte ptr [r22], r27b, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -39733,7 +39733,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000002EE6 626c780284de CTESTC r22b, r27b, 0000 +0000000000002EE6 626c780284de CTESTC r22b, r27b, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -39755,7 +39755,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000002EEC 626cf802841e CTESTC byte ptr [r22], r27b, 0000 +0000000000002EEC 626cf802841e CTESTC byte ptr [r22], r27b, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -39778,7 +39778,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000002EF2 626cf80284de CTESTC r22b, r27b, 0000 +0000000000002EF2 626cf80284de CTESTC r22b, r27b, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -39800,7 +39800,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000002EF8 626c7802851e CTESTC dword ptr [r22], r27d, 0000 +0000000000002EF8 626c7802851e CTESTC dword ptr [r22], r27d, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -39823,7 +39823,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000002EFE 626c780285de CTESTC r22d, r27d, 0000 +0000000000002EFE 626c780285de CTESTC r22d, r27d, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -39845,7 +39845,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000002F04 626cf802851e CTESTC qword ptr [r22], r27, 0000 +0000000000002F04 626cf802851e CTESTC qword ptr [r22], r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -39868,7 +39868,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000002F0A 626cf80285de CTESTC r22, r27, 0000 +0000000000002F0A 626cf80285de CTESTC r22, r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -39890,7 +39890,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000002F10 626c7902851e CTESTC word ptr [r22], r27w, 0000 +0000000000002F10 626c7902851e CTESTC word ptr [r22], r27w, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -39913,7 +39913,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000002F16 626c790285de CTESTC r22w, r27w, 0000 +0000000000002F16 626c790285de CTESTC r22w, r27w, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -39935,7 +39935,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000002F1C 626cf902851e CTESTC qword ptr [r22], r27, 0000 +0000000000002F1C 626cf902851e CTESTC qword ptr [r22], r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -39958,7 +39958,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000002F22 626cf90285de CTESTC r22, r27, 0000 +0000000000002F22 626cf90285de CTESTC r22, r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -39980,7 +39980,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000002F28 626c7802f606bd CTESTC byte ptr [r22], 0xbd, 0000 +0000000000002F28 626c7802f606bd CTESTC byte ptr [r22], 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -40003,7 +40003,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000002F2F 626c7802f6c6bd CTESTC r22b, 0xbd, 0000 +0000000000002F2F 626c7802f6c6bd CTESTC r22b, 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -40025,7 +40025,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000002F36 626cf802f606bd CTESTC byte ptr [r22], 0xbd, 0000 +0000000000002F36 626cf802f606bd CTESTC byte ptr [r22], 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -40048,7 +40048,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000002F3D 626cf802f6c6bd CTESTC r22b, 0xbd, 0000 +0000000000002F3D 626cf802f6c6bd CTESTC r22b, 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -40070,7 +40070,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000002F44 626c7802f60ebd CTESTC byte ptr [r22], 0xbd, 0000 +0000000000002F44 626c7802f60ebd CTESTC byte ptr [r22], 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -40093,7 +40093,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000002F4B 626c7802f6cebd CTESTC r22b, 0xbd, 0000 +0000000000002F4B 626c7802f6cebd CTESTC r22b, 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -40115,7 +40115,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000002F52 626cf802f60ebd CTESTC byte ptr [r22], 0xbd, 0000 +0000000000002F52 626cf802f60ebd CTESTC byte ptr [r22], 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -40138,7 +40138,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000002F59 626cf802f6cebd CTESTC r22b, 0xbd, 0000 +0000000000002F59 626cf802f6cebd CTESTC r22b, 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -40160,7 +40160,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000002F60 626c7802f706bdbdbdbd CTESTC dword ptr [r22], 0xbdbdbdbd, 0000 +0000000000002F60 626c7802f706bdbdbdbd CTESTC dword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -40183,7 +40183,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000002F6A 626c7802f7c6bdbdbdbd CTESTC r22d, 0xbdbdbdbd, 0000 +0000000000002F6A 626c7802f7c6bdbdbdbd CTESTC r22d, 0xbdbdbdbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -40205,7 +40205,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000002F74 626cf802f706bdbdbdbd CTESTC qword ptr [r22], 0xbdbdbdbd, 0000 +0000000000002F74 626cf802f706bdbdbdbd CTESTC qword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -40228,7 +40228,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000002F7E 626cf802f7c6bdbdbdbd CTESTC r22, 0xbdbdbdbd, 0000 +0000000000002F7E 626cf802f7c6bdbdbdbd CTESTC r22, 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -40250,7 +40250,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000002F88 626c7902f706bdbd CTESTC word ptr [r22], 0xbdbd, 0000 +0000000000002F88 626c7902f706bdbd CTESTC word ptr [r22], 0xbdbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -40273,7 +40273,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000002F90 626c7902f7c6bdbd CTESTC r22w, 0xbdbd, 0000 +0000000000002F90 626c7902f7c6bdbd CTESTC r22w, 0xbdbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -40295,7 +40295,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000002F98 626cf902f706bdbdbdbd CTESTC qword ptr [r22], 0xbdbdbdbd, 0000 +0000000000002F98 626cf902f706bdbdbdbd CTESTC qword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -40318,7 +40318,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000002FA2 626cf902f7c6bdbdbdbd CTESTC r22, 0xbdbdbdbd, 0000 +0000000000002FA2 626cf902f7c6bdbdbdbd CTESTC r22, 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -40340,7 +40340,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000002FAC 626c7802f70ebdbdbdbd CTESTC dword ptr [r22], 0xbdbdbdbd, 0000 +0000000000002FAC 626c7802f70ebdbdbdbd CTESTC dword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -40363,7 +40363,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000002FB6 626c7802f7cebdbdbdbd CTESTC r22d, 0xbdbdbdbd, 0000 +0000000000002FB6 626c7802f7cebdbdbdbd CTESTC r22d, 0xbdbdbdbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -40385,7 +40385,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000002FC0 626cf802f70ebdbdbdbd CTESTC qword ptr [r22], 0xbdbdbdbd, 0000 +0000000000002FC0 626cf802f70ebdbdbdbd CTESTC qword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -40408,7 +40408,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000002FCA 626cf802f7cebdbdbdbd CTESTC r22, 0xbdbdbdbd, 0000 +0000000000002FCA 626cf802f7cebdbdbdbd CTESTC r22, 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -40430,7 +40430,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000002FD4 626c7902f70ebdbd CTESTC word ptr [r22], 0xbdbd, 0000 +0000000000002FD4 626c7902f70ebdbd CTESTC word ptr [r22], 0xbdbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -40453,7 +40453,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000002FDC 626c7902f7cebdbd CTESTC r22w, 0xbdbd, 0000 +0000000000002FDC 626c7902f7cebdbd CTESTC r22w, 0xbdbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -40475,7 +40475,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000002FE4 626cf902f70ebdbdbdbd CTESTC qword ptr [r22], 0xbdbdbdbd, 0000 +0000000000002FE4 626cf902f70ebdbdbdbd CTESTC qword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -40498,7 +40498,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000002FEE 626cf902f7cebdbdbdbd CTESTC r22, 0xbdbdbdbd, 0000 +0000000000002FEE 626cf902f7cebdbdbdbd CTESTC r22, 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -40520,7 +40520,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000002FF8 626c780b841e CTESTF byte ptr [r22], r27b, 0000 +0000000000002FF8 626c780b841e CTESTF byte ptr [r22], r27b, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -40543,7 +40543,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000002FFE 626c780b84de CTESTF r22b, r27b, 0000 +0000000000002FFE 626c780b84de CTESTF r22b, r27b, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -40565,7 +40565,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000003004 626cf80b841e CTESTF byte ptr [r22], r27b, 0000 +0000000000003004 626cf80b841e CTESTF byte ptr [r22], r27b, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -40588,7 +40588,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -000000000000300A 626cf80b84de CTESTF r22b, r27b, 0000 +000000000000300A 626cf80b84de CTESTF r22b, r27b, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -40610,7 +40610,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003010 626c780b851e CTESTF dword ptr [r22], r27d, 0000 +0000000000003010 626c780b851e CTESTF dword ptr [r22], r27d, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -40633,7 +40633,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000003016 626c780b85de CTESTF r22d, r27d, 0000 +0000000000003016 626c780b85de CTESTF r22d, r27d, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -40655,7 +40655,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -000000000000301C 626cf80b851e CTESTF qword ptr [r22], r27, 0000 +000000000000301C 626cf80b851e CTESTF qword ptr [r22], r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -40678,7 +40678,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003022 626cf80b85de CTESTF r22, r27, 0000 +0000000000003022 626cf80b85de CTESTF r22, r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -40700,7 +40700,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003028 626c790b851e CTESTF word ptr [r22], r27w, 0000 +0000000000003028 626c790b851e CTESTF word ptr [r22], r27w, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -40723,7 +40723,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -000000000000302E 626c790b85de CTESTF r22w, r27w, 0000 +000000000000302E 626c790b85de CTESTF r22w, r27w, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -40745,7 +40745,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000003034 626cf90b851e CTESTF qword ptr [r22], r27, 0000 +0000000000003034 626cf90b851e CTESTF qword ptr [r22], r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -40768,7 +40768,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -000000000000303A 626cf90b85de CTESTF r22, r27, 0000 +000000000000303A 626cf90b85de CTESTF r22, r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -40790,7 +40790,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003040 626c780bf606bd CTESTF byte ptr [r22], 0xbd, 0000 +0000000000003040 626c780bf606bd CTESTF byte ptr [r22], 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -40813,7 +40813,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000003047 626c780bf6c6bd CTESTF r22b, 0xbd, 0000 +0000000000003047 626c780bf6c6bd CTESTF r22b, 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -40835,7 +40835,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -000000000000304E 626cf80bf606bd CTESTF byte ptr [r22], 0xbd, 0000 +000000000000304E 626cf80bf606bd CTESTF byte ptr [r22], 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -40858,7 +40858,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003055 626cf80bf6c6bd CTESTF r22b, 0xbd, 0000 +0000000000003055 626cf80bf6c6bd CTESTF r22b, 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -40880,7 +40880,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -000000000000305C 626c780bf60ebd CTESTF byte ptr [r22], 0xbd, 0000 +000000000000305C 626c780bf60ebd CTESTF byte ptr [r22], 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -40903,7 +40903,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000003063 626c780bf6cebd CTESTF r22b, 0xbd, 0000 +0000000000003063 626c780bf6cebd CTESTF r22b, 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -40925,7 +40925,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -000000000000306A 626cf80bf60ebd CTESTF byte ptr [r22], 0xbd, 0000 +000000000000306A 626cf80bf60ebd CTESTF byte ptr [r22], 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -40948,7 +40948,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003071 626cf80bf6cebd CTESTF r22b, 0xbd, 0000 +0000000000003071 626cf80bf6cebd CTESTF r22b, 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -40970,7 +40970,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003078 626c780bf706bdbdbdbd CTESTF dword ptr [r22], 0xbdbdbdbd, 0000 +0000000000003078 626c780bf706bdbdbdbd CTESTF dword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -40993,7 +40993,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000003082 626c780bf7c6bdbdbdbd CTESTF r22d, 0xbdbdbdbd, 0000 +0000000000003082 626c780bf7c6bdbdbdbd CTESTF r22d, 0xbdbdbdbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -41015,7 +41015,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -000000000000308C 626cf80bf706bdbdbdbd CTESTF qword ptr [r22], 0xbdbdbdbd, 0000 +000000000000308C 626cf80bf706bdbdbdbd CTESTF qword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -41038,7 +41038,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003096 626cf80bf7c6bdbdbdbd CTESTF r22, 0xbdbdbdbd, 0000 +0000000000003096 626cf80bf7c6bdbdbdbd CTESTF r22, 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -41060,7 +41060,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000030A0 626c790bf706bdbd CTESTF word ptr [r22], 0xbdbd, 0000 +00000000000030A0 626c790bf706bdbd CTESTF word ptr [r22], 0xbdbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -41083,7 +41083,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -00000000000030A8 626c790bf7c6bdbd CTESTF r22w, 0xbdbd, 0000 +00000000000030A8 626c790bf7c6bdbd CTESTF r22w, 0xbdbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -41105,7 +41105,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -00000000000030B0 626cf90bf706bdbdbdbd CTESTF qword ptr [r22], 0xbdbdbdbd, 0000 +00000000000030B0 626cf90bf706bdbdbdbd CTESTF qword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -41128,7 +41128,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000030BA 626cf90bf7c6bdbdbdbd CTESTF r22, 0xbdbdbdbd, 0000 +00000000000030BA 626cf90bf7c6bdbdbdbd CTESTF r22, 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -41150,7 +41150,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000030C4 626c780bf70ebdbdbdbd CTESTF dword ptr [r22], 0xbdbdbdbd, 0000 +00000000000030C4 626c780bf70ebdbdbdbd CTESTF dword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -41173,7 +41173,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -00000000000030CE 626c780bf7cebdbdbdbd CTESTF r22d, 0xbdbdbdbd, 0000 +00000000000030CE 626c780bf7cebdbdbdbd CTESTF r22d, 0xbdbdbdbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -41195,7 +41195,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -00000000000030D8 626cf80bf70ebdbdbdbd CTESTF qword ptr [r22], 0xbdbdbdbd, 0000 +00000000000030D8 626cf80bf70ebdbdbdbd CTESTF qword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -41218,7 +41218,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000030E2 626cf80bf7cebdbdbdbd CTESTF r22, 0xbdbdbdbd, 0000 +00000000000030E2 626cf80bf7cebdbdbdbd CTESTF r22, 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -41240,7 +41240,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000030EC 626c790bf70ebdbd CTESTF word ptr [r22], 0xbdbd, 0000 +00000000000030EC 626c790bf70ebdbd CTESTF word ptr [r22], 0xbdbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -41263,7 +41263,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -00000000000030F4 626c790bf7cebdbd CTESTF r22w, 0xbdbd, 0000 +00000000000030F4 626c790bf7cebdbd CTESTF r22w, 0xbdbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -41285,7 +41285,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -00000000000030FC 626cf90bf70ebdbdbdbd CTESTF qword ptr [r22], 0xbdbdbdbd, 0000 +00000000000030FC 626cf90bf70ebdbdbdbd CTESTF qword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -41308,7 +41308,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003106 626cf90bf7cebdbdbdbd CTESTF r22, 0xbdbdbdbd, 0000 +0000000000003106 626cf90bf7cebdbdbdbd CTESTF r22, 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -41330,7 +41330,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003110 626c780c841e CTESTL byte ptr [r22], r27b, 0000 +0000000000003110 626c780c841e CTESTL byte ptr [r22], r27b, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -41353,7 +41353,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000003116 626c780c84de CTESTL r22b, r27b, 0000 +0000000000003116 626c780c84de CTESTL r22b, r27b, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -41375,7 +41375,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -000000000000311C 626cf80c841e CTESTL byte ptr [r22], r27b, 0000 +000000000000311C 626cf80c841e CTESTL byte ptr [r22], r27b, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -41398,7 +41398,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003122 626cf80c84de CTESTL r22b, r27b, 0000 +0000000000003122 626cf80c84de CTESTL r22b, r27b, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -41420,7 +41420,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003128 626c780c851e CTESTL dword ptr [r22], r27d, 0000 +0000000000003128 626c780c851e CTESTL dword ptr [r22], r27d, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -41443,7 +41443,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -000000000000312E 626c780c85de CTESTL r22d, r27d, 0000 +000000000000312E 626c780c85de CTESTL r22d, r27d, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -41465,7 +41465,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000003134 626cf80c851e CTESTL qword ptr [r22], r27, 0000 +0000000000003134 626cf80c851e CTESTL qword ptr [r22], r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -41488,7 +41488,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -000000000000313A 626cf80c85de CTESTL r22, r27, 0000 +000000000000313A 626cf80c85de CTESTL r22, r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -41510,7 +41510,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003140 626c790c851e CTESTL word ptr [r22], r27w, 0000 +0000000000003140 626c790c851e CTESTL word ptr [r22], r27w, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -41533,7 +41533,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000003146 626c790c85de CTESTL r22w, r27w, 0000 +0000000000003146 626c790c85de CTESTL r22w, r27w, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -41555,7 +41555,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -000000000000314C 626cf90c851e CTESTL qword ptr [r22], r27, 0000 +000000000000314C 626cf90c851e CTESTL qword ptr [r22], r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -41578,7 +41578,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003152 626cf90c85de CTESTL r22, r27, 0000 +0000000000003152 626cf90c85de CTESTL r22, r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -41600,7 +41600,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003158 626c780cf606bd CTESTL byte ptr [r22], 0xbd, 0000 +0000000000003158 626c780cf606bd CTESTL byte ptr [r22], 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -41623,7 +41623,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -000000000000315F 626c780cf6c6bd CTESTL r22b, 0xbd, 0000 +000000000000315F 626c780cf6c6bd CTESTL r22b, 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -41645,7 +41645,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000003166 626cf80cf606bd CTESTL byte ptr [r22], 0xbd, 0000 +0000000000003166 626cf80cf606bd CTESTL byte ptr [r22], 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -41668,7 +41668,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -000000000000316D 626cf80cf6c6bd CTESTL r22b, 0xbd, 0000 +000000000000316D 626cf80cf6c6bd CTESTL r22b, 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -41690,7 +41690,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003174 626c780cf60ebd CTESTL byte ptr [r22], 0xbd, 0000 +0000000000003174 626c780cf60ebd CTESTL byte ptr [r22], 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -41713,7 +41713,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -000000000000317B 626c780cf6cebd CTESTL r22b, 0xbd, 0000 +000000000000317B 626c780cf6cebd CTESTL r22b, 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -41735,7 +41735,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000003182 626cf80cf60ebd CTESTL byte ptr [r22], 0xbd, 0000 +0000000000003182 626cf80cf60ebd CTESTL byte ptr [r22], 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -41758,7 +41758,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003189 626cf80cf6cebd CTESTL r22b, 0xbd, 0000 +0000000000003189 626cf80cf6cebd CTESTL r22b, 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -41780,7 +41780,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003190 626c780cf706bdbdbdbd CTESTL dword ptr [r22], 0xbdbdbdbd, 0000 +0000000000003190 626c780cf706bdbdbdbd CTESTL dword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -41803,7 +41803,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -000000000000319A 626c780cf7c6bdbdbdbd CTESTL r22d, 0xbdbdbdbd, 0000 +000000000000319A 626c780cf7c6bdbdbdbd CTESTL r22d, 0xbdbdbdbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -41825,7 +41825,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -00000000000031A4 626cf80cf706bdbdbdbd CTESTL qword ptr [r22], 0xbdbdbdbd, 0000 +00000000000031A4 626cf80cf706bdbdbdbd CTESTL qword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -41848,7 +41848,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000031AE 626cf80cf7c6bdbdbdbd CTESTL r22, 0xbdbdbdbd, 0000 +00000000000031AE 626cf80cf7c6bdbdbdbd CTESTL r22, 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -41870,7 +41870,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000031B8 626c790cf706bdbd CTESTL word ptr [r22], 0xbdbd, 0000 +00000000000031B8 626c790cf706bdbd CTESTL word ptr [r22], 0xbdbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -41893,7 +41893,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -00000000000031C0 626c790cf7c6bdbd CTESTL r22w, 0xbdbd, 0000 +00000000000031C0 626c790cf7c6bdbd CTESTL r22w, 0xbdbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -41915,7 +41915,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -00000000000031C8 626cf90cf706bdbdbdbd CTESTL qword ptr [r22], 0xbdbdbdbd, 0000 +00000000000031C8 626cf90cf706bdbdbdbd CTESTL qword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -41938,7 +41938,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000031D2 626cf90cf7c6bdbdbdbd CTESTL r22, 0xbdbdbdbd, 0000 +00000000000031D2 626cf90cf7c6bdbdbdbd CTESTL r22, 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -41960,7 +41960,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000031DC 626c780cf70ebdbdbdbd CTESTL dword ptr [r22], 0xbdbdbdbd, 0000 +00000000000031DC 626c780cf70ebdbdbdbd CTESTL dword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -41983,7 +41983,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -00000000000031E6 626c780cf7cebdbdbdbd CTESTL r22d, 0xbdbdbdbd, 0000 +00000000000031E6 626c780cf7cebdbdbdbd CTESTL r22d, 0xbdbdbdbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -42005,7 +42005,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -00000000000031F0 626cf80cf70ebdbdbdbd CTESTL qword ptr [r22], 0xbdbdbdbd, 0000 +00000000000031F0 626cf80cf70ebdbdbdbd CTESTL qword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -42028,7 +42028,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000031FA 626cf80cf7cebdbdbdbd CTESTL r22, 0xbdbdbdbd, 0000 +00000000000031FA 626cf80cf7cebdbdbdbd CTESTL r22, 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -42050,7 +42050,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003204 626c790cf70ebdbd CTESTL word ptr [r22], 0xbdbd, 0000 +0000000000003204 626c790cf70ebdbd CTESTL word ptr [r22], 0xbdbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -42073,7 +42073,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -000000000000320C 626c790cf7cebdbd CTESTL r22w, 0xbdbd, 0000 +000000000000320C 626c790cf7cebdbd CTESTL r22w, 0xbdbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -42095,7 +42095,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000003214 626cf90cf70ebdbdbdbd CTESTL qword ptr [r22], 0xbdbdbdbd, 0000 +0000000000003214 626cf90cf70ebdbdbdbd CTESTL qword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -42118,7 +42118,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -000000000000321E 626cf90cf7cebdbdbdbd CTESTL r22, 0xbdbdbdbd, 0000 +000000000000321E 626cf90cf7cebdbdbdbd CTESTL r22, 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -42140,7 +42140,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003228 626c780e841e CTESTLE byte ptr [r22], r27b, 0000 +0000000000003228 626c780e841e CTESTLE byte ptr [r22], r27b, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -42163,7 +42163,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -000000000000322E 626c780e84de CTESTLE r22b, r27b, 0000 +000000000000322E 626c780e84de CTESTLE r22b, r27b, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -42185,7 +42185,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000003234 626cf80e841e CTESTLE byte ptr [r22], r27b, 0000 +0000000000003234 626cf80e841e CTESTLE byte ptr [r22], r27b, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -42208,7 +42208,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -000000000000323A 626cf80e84de CTESTLE r22b, r27b, 0000 +000000000000323A 626cf80e84de CTESTLE r22b, r27b, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -42230,7 +42230,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003240 626c780e851e CTESTLE dword ptr [r22], r27d, 0000 +0000000000003240 626c780e851e CTESTLE dword ptr [r22], r27d, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -42253,7 +42253,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000003246 626c780e85de CTESTLE r22d, r27d, 0000 +0000000000003246 626c780e85de CTESTLE r22d, r27d, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -42275,7 +42275,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -000000000000324C 626cf80e851e CTESTLE qword ptr [r22], r27, 0000 +000000000000324C 626cf80e851e CTESTLE qword ptr [r22], r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -42298,7 +42298,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003252 626cf80e85de CTESTLE r22, r27, 0000 +0000000000003252 626cf80e85de CTESTLE r22, r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -42320,7 +42320,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003258 626c790e851e CTESTLE word ptr [r22], r27w, 0000 +0000000000003258 626c790e851e CTESTLE word ptr [r22], r27w, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -42343,7 +42343,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -000000000000325E 626c790e85de CTESTLE r22w, r27w, 0000 +000000000000325E 626c790e85de CTESTLE r22w, r27w, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -42365,7 +42365,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000003264 626cf90e851e CTESTLE qword ptr [r22], r27, 0000 +0000000000003264 626cf90e851e CTESTLE qword ptr [r22], r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -42388,7 +42388,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -000000000000326A 626cf90e85de CTESTLE r22, r27, 0000 +000000000000326A 626cf90e85de CTESTLE r22, r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -42410,7 +42410,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003270 626c780ef606bd CTESTLE byte ptr [r22], 0xbd, 0000 +0000000000003270 626c780ef606bd CTESTLE byte ptr [r22], 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -42433,7 +42433,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000003277 626c780ef6c6bd CTESTLE r22b, 0xbd, 0000 +0000000000003277 626c780ef6c6bd CTESTLE r22b, 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -42455,7 +42455,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -000000000000327E 626cf80ef606bd CTESTLE byte ptr [r22], 0xbd, 0000 +000000000000327E 626cf80ef606bd CTESTLE byte ptr [r22], 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -42478,7 +42478,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003285 626cf80ef6c6bd CTESTLE r22b, 0xbd, 0000 +0000000000003285 626cf80ef6c6bd CTESTLE r22b, 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -42500,7 +42500,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -000000000000328C 626c780ef60ebd CTESTLE byte ptr [r22], 0xbd, 0000 +000000000000328C 626c780ef60ebd CTESTLE byte ptr [r22], 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -42523,7 +42523,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000003293 626c780ef6cebd CTESTLE r22b, 0xbd, 0000 +0000000000003293 626c780ef6cebd CTESTLE r22b, 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -42545,7 +42545,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -000000000000329A 626cf80ef60ebd CTESTLE byte ptr [r22], 0xbd, 0000 +000000000000329A 626cf80ef60ebd CTESTLE byte ptr [r22], 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -42568,7 +42568,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000032A1 626cf80ef6cebd CTESTLE r22b, 0xbd, 0000 +00000000000032A1 626cf80ef6cebd CTESTLE r22b, 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -42590,7 +42590,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000032A8 626c780ef706bdbdbdbd CTESTLE dword ptr [r22], 0xbdbdbdbd, 0000 +00000000000032A8 626c780ef706bdbdbdbd CTESTLE dword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -42613,7 +42613,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -00000000000032B2 626c780ef7c6bdbdbdbd CTESTLE r22d, 0xbdbdbdbd, 0000 +00000000000032B2 626c780ef7c6bdbdbdbd CTESTLE r22d, 0xbdbdbdbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -42635,7 +42635,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -00000000000032BC 626cf80ef706bdbdbdbd CTESTLE qword ptr [r22], 0xbdbdbdbd, 0000 +00000000000032BC 626cf80ef706bdbdbdbd CTESTLE qword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -42658,7 +42658,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000032C6 626cf80ef7c6bdbdbdbd CTESTLE r22, 0xbdbdbdbd, 0000 +00000000000032C6 626cf80ef7c6bdbdbdbd CTESTLE r22, 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -42680,7 +42680,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000032D0 626c790ef706bdbd CTESTLE word ptr [r22], 0xbdbd, 0000 +00000000000032D0 626c790ef706bdbd CTESTLE word ptr [r22], 0xbdbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -42703,7 +42703,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -00000000000032D8 626c790ef7c6bdbd CTESTLE r22w, 0xbdbd, 0000 +00000000000032D8 626c790ef7c6bdbd CTESTLE r22w, 0xbdbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -42725,7 +42725,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -00000000000032E0 626cf90ef706bdbdbdbd CTESTLE qword ptr [r22], 0xbdbdbdbd, 0000 +00000000000032E0 626cf90ef706bdbdbdbd CTESTLE qword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -42748,7 +42748,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000032EA 626cf90ef7c6bdbdbdbd CTESTLE r22, 0xbdbdbdbd, 0000 +00000000000032EA 626cf90ef7c6bdbdbdbd CTESTLE r22, 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -42770,7 +42770,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000032F4 626c780ef70ebdbdbdbd CTESTLE dword ptr [r22], 0xbdbdbdbd, 0000 +00000000000032F4 626c780ef70ebdbdbdbd CTESTLE dword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -42793,7 +42793,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -00000000000032FE 626c780ef7cebdbdbdbd CTESTLE r22d, 0xbdbdbdbd, 0000 +00000000000032FE 626c780ef7cebdbdbdbd CTESTLE r22d, 0xbdbdbdbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -42815,7 +42815,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000003308 626cf80ef70ebdbdbdbd CTESTLE qword ptr [r22], 0xbdbdbdbd, 0000 +0000000000003308 626cf80ef70ebdbdbdbd CTESTLE qword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -42838,7 +42838,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003312 626cf80ef7cebdbdbdbd CTESTLE r22, 0xbdbdbdbd, 0000 +0000000000003312 626cf80ef7cebdbdbdbd CTESTLE r22, 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -42860,7 +42860,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -000000000000331C 626c790ef70ebdbd CTESTLE word ptr [r22], 0xbdbd, 0000 +000000000000331C 626c790ef70ebdbd CTESTLE word ptr [r22], 0xbdbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -42883,7 +42883,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000003324 626c790ef7cebdbd CTESTLE r22w, 0xbdbd, 0000 +0000000000003324 626c790ef7cebdbd CTESTLE r22w, 0xbdbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -42905,7 +42905,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -000000000000332C 626cf90ef70ebdbdbdbd CTESTLE qword ptr [r22], 0xbdbdbdbd, 0000 +000000000000332C 626cf90ef70ebdbdbdbd CTESTLE qword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -42928,7 +42928,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003336 626cf90ef7cebdbdbdbd CTESTLE r22, 0xbdbdbdbd, 0000 +0000000000003336 626cf90ef7cebdbdbdbd CTESTLE r22, 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -42950,7 +42950,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003340 626c7807841e CTESTNBE byte ptr [r22], r27b, 0000 +0000000000003340 626c7807841e CTESTNBE byte ptr [r22], r27b, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -42973,7 +42973,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000003346 626c780784de CTESTNBE r22b, r27b, 0000 +0000000000003346 626c780784de CTESTNBE r22b, r27b, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -42995,7 +42995,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -000000000000334C 626cf807841e CTESTNBE byte ptr [r22], r27b, 0000 +000000000000334C 626cf807841e CTESTNBE byte ptr [r22], r27b, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -43018,7 +43018,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003352 626cf80784de CTESTNBE r22b, r27b, 0000 +0000000000003352 626cf80784de CTESTNBE r22b, r27b, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -43040,7 +43040,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003358 626c7807851e CTESTNBE dword ptr [r22], r27d, 0000 +0000000000003358 626c7807851e CTESTNBE dword ptr [r22], r27d, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -43063,7 +43063,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -000000000000335E 626c780785de CTESTNBE r22d, r27d, 0000 +000000000000335E 626c780785de CTESTNBE r22d, r27d, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -43085,7 +43085,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000003364 626cf807851e CTESTNBE qword ptr [r22], r27, 0000 +0000000000003364 626cf807851e CTESTNBE qword ptr [r22], r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -43108,7 +43108,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -000000000000336A 626cf80785de CTESTNBE r22, r27, 0000 +000000000000336A 626cf80785de CTESTNBE r22, r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -43130,7 +43130,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003370 626c7907851e CTESTNBE word ptr [r22], r27w, 0000 +0000000000003370 626c7907851e CTESTNBE word ptr [r22], r27w, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -43153,7 +43153,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000003376 626c790785de CTESTNBE r22w, r27w, 0000 +0000000000003376 626c790785de CTESTNBE r22w, r27w, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -43175,7 +43175,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -000000000000337C 626cf907851e CTESTNBE qword ptr [r22], r27, 0000 +000000000000337C 626cf907851e CTESTNBE qword ptr [r22], r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -43198,7 +43198,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003382 626cf90785de CTESTNBE r22, r27, 0000 +0000000000003382 626cf90785de CTESTNBE r22, r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -43220,7 +43220,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003388 626c7807f606bd CTESTNBE byte ptr [r22], 0xbd, 0000 +0000000000003388 626c7807f606bd CTESTNBE byte ptr [r22], 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -43243,7 +43243,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -000000000000338F 626c7807f6c6bd CTESTNBE r22b, 0xbd, 0000 +000000000000338F 626c7807f6c6bd CTESTNBE r22b, 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -43265,7 +43265,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000003396 626cf807f606bd CTESTNBE byte ptr [r22], 0xbd, 0000 +0000000000003396 626cf807f606bd CTESTNBE byte ptr [r22], 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -43288,7 +43288,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -000000000000339D 626cf807f6c6bd CTESTNBE r22b, 0xbd, 0000 +000000000000339D 626cf807f6c6bd CTESTNBE r22b, 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -43310,7 +43310,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000033A4 626c7807f60ebd CTESTNBE byte ptr [r22], 0xbd, 0000 +00000000000033A4 626c7807f60ebd CTESTNBE byte ptr [r22], 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -43333,7 +43333,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -00000000000033AB 626c7807f6cebd CTESTNBE r22b, 0xbd, 0000 +00000000000033AB 626c7807f6cebd CTESTNBE r22b, 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -43355,7 +43355,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -00000000000033B2 626cf807f60ebd CTESTNBE byte ptr [r22], 0xbd, 0000 +00000000000033B2 626cf807f60ebd CTESTNBE byte ptr [r22], 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -43378,7 +43378,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000033B9 626cf807f6cebd CTESTNBE r22b, 0xbd, 0000 +00000000000033B9 626cf807f6cebd CTESTNBE r22b, 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -43400,7 +43400,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000033C0 626c7807f706bdbdbdbd CTESTNBE dword ptr [r22], 0xbdbdbdbd, 0000 +00000000000033C0 626c7807f706bdbdbdbd CTESTNBE dword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -43423,7 +43423,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -00000000000033CA 626c7807f7c6bdbdbdbd CTESTNBE r22d, 0xbdbdbdbd, 0000 +00000000000033CA 626c7807f7c6bdbdbdbd CTESTNBE r22d, 0xbdbdbdbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -43445,7 +43445,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -00000000000033D4 626cf807f706bdbdbdbd CTESTNBE qword ptr [r22], 0xbdbdbdbd, 0000 +00000000000033D4 626cf807f706bdbdbdbd CTESTNBE qword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -43468,7 +43468,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000033DE 626cf807f7c6bdbdbdbd CTESTNBE r22, 0xbdbdbdbd, 0000 +00000000000033DE 626cf807f7c6bdbdbdbd CTESTNBE r22, 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -43490,7 +43490,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000033E8 626c7907f706bdbd CTESTNBE word ptr [r22], 0xbdbd, 0000 +00000000000033E8 626c7907f706bdbd CTESTNBE word ptr [r22], 0xbdbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -43513,7 +43513,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -00000000000033F0 626c7907f7c6bdbd CTESTNBE r22w, 0xbdbd, 0000 +00000000000033F0 626c7907f7c6bdbd CTESTNBE r22w, 0xbdbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -43535,7 +43535,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -00000000000033F8 626cf907f706bdbdbdbd CTESTNBE qword ptr [r22], 0xbdbdbdbd, 0000 +00000000000033F8 626cf907f706bdbdbdbd CTESTNBE qword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -43558,7 +43558,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003402 626cf907f7c6bdbdbdbd CTESTNBE r22, 0xbdbdbdbd, 0000 +0000000000003402 626cf907f7c6bdbdbdbd CTESTNBE r22, 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -43580,7 +43580,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -000000000000340C 626c7807f70ebdbdbdbd CTESTNBE dword ptr [r22], 0xbdbdbdbd, 0000 +000000000000340C 626c7807f70ebdbdbdbd CTESTNBE dword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -43603,7 +43603,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000003416 626c7807f7cebdbdbdbd CTESTNBE r22d, 0xbdbdbdbd, 0000 +0000000000003416 626c7807f7cebdbdbdbd CTESTNBE r22d, 0xbdbdbdbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -43625,7 +43625,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000003420 626cf807f70ebdbdbdbd CTESTNBE qword ptr [r22], 0xbdbdbdbd, 0000 +0000000000003420 626cf807f70ebdbdbdbd CTESTNBE qword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -43648,7 +43648,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -000000000000342A 626cf807f7cebdbdbdbd CTESTNBE r22, 0xbdbdbdbd, 0000 +000000000000342A 626cf807f7cebdbdbdbd CTESTNBE r22, 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -43670,7 +43670,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003434 626c7907f70ebdbd CTESTNBE word ptr [r22], 0xbdbd, 0000 +0000000000003434 626c7907f70ebdbd CTESTNBE word ptr [r22], 0xbdbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -43693,7 +43693,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -000000000000343C 626c7907f7cebdbd CTESTNBE r22w, 0xbdbd, 0000 +000000000000343C 626c7907f7cebdbd CTESTNBE r22w, 0xbdbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -43715,7 +43715,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000003444 626cf907f70ebdbdbdbd CTESTNBE qword ptr [r22], 0xbdbdbdbd, 0000 +0000000000003444 626cf907f70ebdbdbdbd CTESTNBE qword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -43738,7 +43738,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -000000000000344E 626cf907f7cebdbdbdbd CTESTNBE r22, 0xbdbdbdbd, 0000 +000000000000344E 626cf907f7cebdbdbdbd CTESTNBE r22, 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -43760,7 +43760,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003458 626c7803841e CTESTNC byte ptr [r22], r27b, 0000 +0000000000003458 626c7803841e CTESTNC byte ptr [r22], r27b, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -43783,7 +43783,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -000000000000345E 626c780384de CTESTNC r22b, r27b, 0000 +000000000000345E 626c780384de CTESTNC r22b, r27b, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -43805,7 +43805,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000003464 626cf803841e CTESTNC byte ptr [r22], r27b, 0000 +0000000000003464 626cf803841e CTESTNC byte ptr [r22], r27b, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -43828,7 +43828,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -000000000000346A 626cf80384de CTESTNC r22b, r27b, 0000 +000000000000346A 626cf80384de CTESTNC r22b, r27b, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -43850,7 +43850,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003470 626c7803851e CTESTNC dword ptr [r22], r27d, 0000 +0000000000003470 626c7803851e CTESTNC dword ptr [r22], r27d, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -43873,7 +43873,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000003476 626c780385de CTESTNC r22d, r27d, 0000 +0000000000003476 626c780385de CTESTNC r22d, r27d, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -43895,7 +43895,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -000000000000347C 626cf803851e CTESTNC qword ptr [r22], r27, 0000 +000000000000347C 626cf803851e CTESTNC qword ptr [r22], r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -43918,7 +43918,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003482 626cf80385de CTESTNC r22, r27, 0000 +0000000000003482 626cf80385de CTESTNC r22, r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -43940,7 +43940,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003488 626c7903851e CTESTNC word ptr [r22], r27w, 0000 +0000000000003488 626c7903851e CTESTNC word ptr [r22], r27w, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -43963,7 +43963,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -000000000000348E 626c790385de CTESTNC r22w, r27w, 0000 +000000000000348E 626c790385de CTESTNC r22w, r27w, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -43985,7 +43985,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000003494 626cf903851e CTESTNC qword ptr [r22], r27, 0000 +0000000000003494 626cf903851e CTESTNC qword ptr [r22], r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -44008,7 +44008,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -000000000000349A 626cf90385de CTESTNC r22, r27, 0000 +000000000000349A 626cf90385de CTESTNC r22, r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -44030,7 +44030,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000034A0 626c7803f606bd CTESTNC byte ptr [r22], 0xbd, 0000 +00000000000034A0 626c7803f606bd CTESTNC byte ptr [r22], 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -44053,7 +44053,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -00000000000034A7 626c7803f6c6bd CTESTNC r22b, 0xbd, 0000 +00000000000034A7 626c7803f6c6bd CTESTNC r22b, 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -44075,7 +44075,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -00000000000034AE 626cf803f606bd CTESTNC byte ptr [r22], 0xbd, 0000 +00000000000034AE 626cf803f606bd CTESTNC byte ptr [r22], 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -44098,7 +44098,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000034B5 626cf803f6c6bd CTESTNC r22b, 0xbd, 0000 +00000000000034B5 626cf803f6c6bd CTESTNC r22b, 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -44120,7 +44120,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000034BC 626c7803f60ebd CTESTNC byte ptr [r22], 0xbd, 0000 +00000000000034BC 626c7803f60ebd CTESTNC byte ptr [r22], 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -44143,7 +44143,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -00000000000034C3 626c7803f6cebd CTESTNC r22b, 0xbd, 0000 +00000000000034C3 626c7803f6cebd CTESTNC r22b, 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -44165,7 +44165,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -00000000000034CA 626cf803f60ebd CTESTNC byte ptr [r22], 0xbd, 0000 +00000000000034CA 626cf803f60ebd CTESTNC byte ptr [r22], 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -44188,7 +44188,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000034D1 626cf803f6cebd CTESTNC r22b, 0xbd, 0000 +00000000000034D1 626cf803f6cebd CTESTNC r22b, 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -44210,7 +44210,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000034D8 626c7803f706bdbdbdbd CTESTNC dword ptr [r22], 0xbdbdbdbd, 0000 +00000000000034D8 626c7803f706bdbdbdbd CTESTNC dword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -44233,7 +44233,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -00000000000034E2 626c7803f7c6bdbdbdbd CTESTNC r22d, 0xbdbdbdbd, 0000 +00000000000034E2 626c7803f7c6bdbdbdbd CTESTNC r22d, 0xbdbdbdbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -44255,7 +44255,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -00000000000034EC 626cf803f706bdbdbdbd CTESTNC qword ptr [r22], 0xbdbdbdbd, 0000 +00000000000034EC 626cf803f706bdbdbdbd CTESTNC qword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -44278,7 +44278,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000034F6 626cf803f7c6bdbdbdbd CTESTNC r22, 0xbdbdbdbd, 0000 +00000000000034F6 626cf803f7c6bdbdbdbd CTESTNC r22, 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -44300,7 +44300,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003500 626c7903f706bdbd CTESTNC word ptr [r22], 0xbdbd, 0000 +0000000000003500 626c7903f706bdbd CTESTNC word ptr [r22], 0xbdbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -44323,7 +44323,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000003508 626c7903f7c6bdbd CTESTNC r22w, 0xbdbd, 0000 +0000000000003508 626c7903f7c6bdbd CTESTNC r22w, 0xbdbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -44345,7 +44345,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000003510 626cf903f706bdbdbdbd CTESTNC qword ptr [r22], 0xbdbdbdbd, 0000 +0000000000003510 626cf903f706bdbdbdbd CTESTNC qword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -44368,7 +44368,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -000000000000351A 626cf903f7c6bdbdbdbd CTESTNC r22, 0xbdbdbdbd, 0000 +000000000000351A 626cf903f7c6bdbdbdbd CTESTNC r22, 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -44390,7 +44390,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003524 626c7803f70ebdbdbdbd CTESTNC dword ptr [r22], 0xbdbdbdbd, 0000 +0000000000003524 626c7803f70ebdbdbdbd CTESTNC dword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -44413,7 +44413,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -000000000000352E 626c7803f7cebdbdbdbd CTESTNC r22d, 0xbdbdbdbd, 0000 +000000000000352E 626c7803f7cebdbdbdbd CTESTNC r22d, 0xbdbdbdbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -44435,7 +44435,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000003538 626cf803f70ebdbdbdbd CTESTNC qword ptr [r22], 0xbdbdbdbd, 0000 +0000000000003538 626cf803f70ebdbdbdbd CTESTNC qword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -44458,7 +44458,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003542 626cf803f7cebdbdbdbd CTESTNC r22, 0xbdbdbdbd, 0000 +0000000000003542 626cf803f7cebdbdbdbd CTESTNC r22, 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -44480,7 +44480,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -000000000000354C 626c7903f70ebdbd CTESTNC word ptr [r22], 0xbdbd, 0000 +000000000000354C 626c7903f70ebdbd CTESTNC word ptr [r22], 0xbdbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -44503,7 +44503,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000003554 626c7903f7cebdbd CTESTNC r22w, 0xbdbd, 0000 +0000000000003554 626c7903f7cebdbd CTESTNC r22w, 0xbdbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -44525,7 +44525,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -000000000000355C 626cf903f70ebdbdbdbd CTESTNC qword ptr [r22], 0xbdbdbdbd, 0000 +000000000000355C 626cf903f70ebdbdbdbd CTESTNC qword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -44548,7 +44548,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003566 626cf903f7cebdbdbdbd CTESTNC r22, 0xbdbdbdbd, 0000 +0000000000003566 626cf903f7cebdbdbdbd CTESTNC r22, 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -44570,7 +44570,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003570 626c780d841e CTESTNL byte ptr [r22], r27b, 0000 +0000000000003570 626c780d841e CTESTNL byte ptr [r22], r27b, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -44593,7 +44593,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000003576 626c780d84de CTESTNL r22b, r27b, 0000 +0000000000003576 626c780d84de CTESTNL r22b, r27b, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -44615,7 +44615,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -000000000000357C 626cf80d841e CTESTNL byte ptr [r22], r27b, 0000 +000000000000357C 626cf80d841e CTESTNL byte ptr [r22], r27b, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -44638,7 +44638,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003582 626cf80d84de CTESTNL r22b, r27b, 0000 +0000000000003582 626cf80d84de CTESTNL r22b, r27b, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -44660,7 +44660,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003588 626c780d851e CTESTNL dword ptr [r22], r27d, 0000 +0000000000003588 626c780d851e CTESTNL dword ptr [r22], r27d, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -44683,7 +44683,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -000000000000358E 626c780d85de CTESTNL r22d, r27d, 0000 +000000000000358E 626c780d85de CTESTNL r22d, r27d, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -44705,7 +44705,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000003594 626cf80d851e CTESTNL qword ptr [r22], r27, 0000 +0000000000003594 626cf80d851e CTESTNL qword ptr [r22], r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -44728,7 +44728,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -000000000000359A 626cf80d85de CTESTNL r22, r27, 0000 +000000000000359A 626cf80d85de CTESTNL r22, r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -44750,7 +44750,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000035A0 626c790d851e CTESTNL word ptr [r22], r27w, 0000 +00000000000035A0 626c790d851e CTESTNL word ptr [r22], r27w, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -44773,7 +44773,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -00000000000035A6 626c790d85de CTESTNL r22w, r27w, 0000 +00000000000035A6 626c790d85de CTESTNL r22w, r27w, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -44795,7 +44795,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -00000000000035AC 626cf90d851e CTESTNL qword ptr [r22], r27, 0000 +00000000000035AC 626cf90d851e CTESTNL qword ptr [r22], r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -44818,7 +44818,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000035B2 626cf90d85de CTESTNL r22, r27, 0000 +00000000000035B2 626cf90d85de CTESTNL r22, r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -44840,7 +44840,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000035B8 626c780df606bd CTESTNL byte ptr [r22], 0xbd, 0000 +00000000000035B8 626c780df606bd CTESTNL byte ptr [r22], 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -44863,7 +44863,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -00000000000035BF 626c780df6c6bd CTESTNL r22b, 0xbd, 0000 +00000000000035BF 626c780df6c6bd CTESTNL r22b, 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -44885,7 +44885,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -00000000000035C6 626cf80df606bd CTESTNL byte ptr [r22], 0xbd, 0000 +00000000000035C6 626cf80df606bd CTESTNL byte ptr [r22], 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -44908,7 +44908,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000035CD 626cf80df6c6bd CTESTNL r22b, 0xbd, 0000 +00000000000035CD 626cf80df6c6bd CTESTNL r22b, 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -44930,7 +44930,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000035D4 626c780df60ebd CTESTNL byte ptr [r22], 0xbd, 0000 +00000000000035D4 626c780df60ebd CTESTNL byte ptr [r22], 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -44953,7 +44953,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -00000000000035DB 626c780df6cebd CTESTNL r22b, 0xbd, 0000 +00000000000035DB 626c780df6cebd CTESTNL r22b, 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -44975,7 +44975,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -00000000000035E2 626cf80df60ebd CTESTNL byte ptr [r22], 0xbd, 0000 +00000000000035E2 626cf80df60ebd CTESTNL byte ptr [r22], 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -44998,7 +44998,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000035E9 626cf80df6cebd CTESTNL r22b, 0xbd, 0000 +00000000000035E9 626cf80df6cebd CTESTNL r22b, 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -45020,7 +45020,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000035F0 626c780df706bdbdbdbd CTESTNL dword ptr [r22], 0xbdbdbdbd, 0000 +00000000000035F0 626c780df706bdbdbdbd CTESTNL dword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -45043,7 +45043,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -00000000000035FA 626c780df7c6bdbdbdbd CTESTNL r22d, 0xbdbdbdbd, 0000 +00000000000035FA 626c780df7c6bdbdbdbd CTESTNL r22d, 0xbdbdbdbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -45065,7 +45065,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000003604 626cf80df706bdbdbdbd CTESTNL qword ptr [r22], 0xbdbdbdbd, 0000 +0000000000003604 626cf80df706bdbdbdbd CTESTNL qword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -45088,7 +45088,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -000000000000360E 626cf80df7c6bdbdbdbd CTESTNL r22, 0xbdbdbdbd, 0000 +000000000000360E 626cf80df7c6bdbdbdbd CTESTNL r22, 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -45110,7 +45110,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003618 626c790df706bdbd CTESTNL word ptr [r22], 0xbdbd, 0000 +0000000000003618 626c790df706bdbd CTESTNL word ptr [r22], 0xbdbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -45133,7 +45133,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000003620 626c790df7c6bdbd CTESTNL r22w, 0xbdbd, 0000 +0000000000003620 626c790df7c6bdbd CTESTNL r22w, 0xbdbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -45155,7 +45155,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000003628 626cf90df706bdbdbdbd CTESTNL qword ptr [r22], 0xbdbdbdbd, 0000 +0000000000003628 626cf90df706bdbdbdbd CTESTNL qword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -45178,7 +45178,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003632 626cf90df7c6bdbdbdbd CTESTNL r22, 0xbdbdbdbd, 0000 +0000000000003632 626cf90df7c6bdbdbdbd CTESTNL r22, 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -45200,7 +45200,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -000000000000363C 626c780df70ebdbdbdbd CTESTNL dword ptr [r22], 0xbdbdbdbd, 0000 +000000000000363C 626c780df70ebdbdbdbd CTESTNL dword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -45223,7 +45223,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000003646 626c780df7cebdbdbdbd CTESTNL r22d, 0xbdbdbdbd, 0000 +0000000000003646 626c780df7cebdbdbdbd CTESTNL r22d, 0xbdbdbdbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -45245,7 +45245,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000003650 626cf80df70ebdbdbdbd CTESTNL qword ptr [r22], 0xbdbdbdbd, 0000 +0000000000003650 626cf80df70ebdbdbdbd CTESTNL qword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -45268,7 +45268,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -000000000000365A 626cf80df7cebdbdbdbd CTESTNL r22, 0xbdbdbdbd, 0000 +000000000000365A 626cf80df7cebdbdbdbd CTESTNL r22, 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -45290,7 +45290,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003664 626c790df70ebdbd CTESTNL word ptr [r22], 0xbdbd, 0000 +0000000000003664 626c790df70ebdbd CTESTNL word ptr [r22], 0xbdbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -45313,7 +45313,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -000000000000366C 626c790df7cebdbd CTESTNL r22w, 0xbdbd, 0000 +000000000000366C 626c790df7cebdbd CTESTNL r22w, 0xbdbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -45335,7 +45335,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000003674 626cf90df70ebdbdbdbd CTESTNL qword ptr [r22], 0xbdbdbdbd, 0000 +0000000000003674 626cf90df70ebdbdbdbd CTESTNL qword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -45358,7 +45358,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -000000000000367E 626cf90df7cebdbdbdbd CTESTNL r22, 0xbdbdbdbd, 0000 +000000000000367E 626cf90df7cebdbdbdbd CTESTNL r22, 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -45380,7 +45380,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003688 626c780f841e CTESTNLE byte ptr [r22], r27b, 0000 +0000000000003688 626c780f841e CTESTNLE byte ptr [r22], r27b, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -45403,7 +45403,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -000000000000368E 626c780f84de CTESTNLE r22b, r27b, 0000 +000000000000368E 626c780f84de CTESTNLE r22b, r27b, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -45425,7 +45425,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000003694 626cf80f841e CTESTNLE byte ptr [r22], r27b, 0000 +0000000000003694 626cf80f841e CTESTNLE byte ptr [r22], r27b, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -45448,7 +45448,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -000000000000369A 626cf80f84de CTESTNLE r22b, r27b, 0000 +000000000000369A 626cf80f84de CTESTNLE r22b, r27b, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -45470,7 +45470,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000036A0 626c780f851e CTESTNLE dword ptr [r22], r27d, 0000 +00000000000036A0 626c780f851e CTESTNLE dword ptr [r22], r27d, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -45493,7 +45493,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -00000000000036A6 626c780f85de CTESTNLE r22d, r27d, 0000 +00000000000036A6 626c780f85de CTESTNLE r22d, r27d, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -45515,7 +45515,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -00000000000036AC 626cf80f851e CTESTNLE qword ptr [r22], r27, 0000 +00000000000036AC 626cf80f851e CTESTNLE qword ptr [r22], r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -45538,7 +45538,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000036B2 626cf80f85de CTESTNLE r22, r27, 0000 +00000000000036B2 626cf80f85de CTESTNLE r22, r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -45560,7 +45560,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000036B8 626c790f851e CTESTNLE word ptr [r22], r27w, 0000 +00000000000036B8 626c790f851e CTESTNLE word ptr [r22], r27w, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -45583,7 +45583,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -00000000000036BE 626c790f85de CTESTNLE r22w, r27w, 0000 +00000000000036BE 626c790f85de CTESTNLE r22w, r27w, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -45605,7 +45605,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -00000000000036C4 626cf90f851e CTESTNLE qword ptr [r22], r27, 0000 +00000000000036C4 626cf90f851e CTESTNLE qword ptr [r22], r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -45628,7 +45628,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000036CA 626cf90f85de CTESTNLE r22, r27, 0000 +00000000000036CA 626cf90f85de CTESTNLE r22, r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -45650,7 +45650,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000036D0 626c780ff606bd CTESTNLE byte ptr [r22], 0xbd, 0000 +00000000000036D0 626c780ff606bd CTESTNLE byte ptr [r22], 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -45673,7 +45673,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -00000000000036D7 626c780ff6c6bd CTESTNLE r22b, 0xbd, 0000 +00000000000036D7 626c780ff6c6bd CTESTNLE r22b, 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -45695,7 +45695,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -00000000000036DE 626cf80ff606bd CTESTNLE byte ptr [r22], 0xbd, 0000 +00000000000036DE 626cf80ff606bd CTESTNLE byte ptr [r22], 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -45718,7 +45718,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000036E5 626cf80ff6c6bd CTESTNLE r22b, 0xbd, 0000 +00000000000036E5 626cf80ff6c6bd CTESTNLE r22b, 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -45740,7 +45740,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000036EC 626c780ff60ebd CTESTNLE byte ptr [r22], 0xbd, 0000 +00000000000036EC 626c780ff60ebd CTESTNLE byte ptr [r22], 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -45763,7 +45763,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -00000000000036F3 626c780ff6cebd CTESTNLE r22b, 0xbd, 0000 +00000000000036F3 626c780ff6cebd CTESTNLE r22b, 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -45785,7 +45785,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -00000000000036FA 626cf80ff60ebd CTESTNLE byte ptr [r22], 0xbd, 0000 +00000000000036FA 626cf80ff60ebd CTESTNLE byte ptr [r22], 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -45808,7 +45808,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003701 626cf80ff6cebd CTESTNLE r22b, 0xbd, 0000 +0000000000003701 626cf80ff6cebd CTESTNLE r22b, 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -45830,7 +45830,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003708 626c780ff706bdbdbdbd CTESTNLE dword ptr [r22], 0xbdbdbdbd, 0000 +0000000000003708 626c780ff706bdbdbdbd CTESTNLE dword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -45853,7 +45853,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000003712 626c780ff7c6bdbdbdbd CTESTNLE r22d, 0xbdbdbdbd, 0000 +0000000000003712 626c780ff7c6bdbdbdbd CTESTNLE r22d, 0xbdbdbdbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -45875,7 +45875,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -000000000000371C 626cf80ff706bdbdbdbd CTESTNLE qword ptr [r22], 0xbdbdbdbd, 0000 +000000000000371C 626cf80ff706bdbdbdbd CTESTNLE qword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -45898,7 +45898,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003726 626cf80ff7c6bdbdbdbd CTESTNLE r22, 0xbdbdbdbd, 0000 +0000000000003726 626cf80ff7c6bdbdbdbd CTESTNLE r22, 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -45920,7 +45920,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003730 626c790ff706bdbd CTESTNLE word ptr [r22], 0xbdbd, 0000 +0000000000003730 626c790ff706bdbd CTESTNLE word ptr [r22], 0xbdbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -45943,7 +45943,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000003738 626c790ff7c6bdbd CTESTNLE r22w, 0xbdbd, 0000 +0000000000003738 626c790ff7c6bdbd CTESTNLE r22w, 0xbdbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -45965,7 +45965,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000003740 626cf90ff706bdbdbdbd CTESTNLE qword ptr [r22], 0xbdbdbdbd, 0000 +0000000000003740 626cf90ff706bdbdbdbd CTESTNLE qword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -45988,7 +45988,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -000000000000374A 626cf90ff7c6bdbdbdbd CTESTNLE r22, 0xbdbdbdbd, 0000 +000000000000374A 626cf90ff7c6bdbdbdbd CTESTNLE r22, 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -46010,7 +46010,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003754 626c780ff70ebdbdbdbd CTESTNLE dword ptr [r22], 0xbdbdbdbd, 0000 +0000000000003754 626c780ff70ebdbdbdbd CTESTNLE dword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -46033,7 +46033,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -000000000000375E 626c780ff7cebdbdbdbd CTESTNLE r22d, 0xbdbdbdbd, 0000 +000000000000375E 626c780ff7cebdbdbdbd CTESTNLE r22d, 0xbdbdbdbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -46055,7 +46055,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000003768 626cf80ff70ebdbdbdbd CTESTNLE qword ptr [r22], 0xbdbdbdbd, 0000 +0000000000003768 626cf80ff70ebdbdbdbd CTESTNLE qword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -46078,7 +46078,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003772 626cf80ff7cebdbdbdbd CTESTNLE r22, 0xbdbdbdbd, 0000 +0000000000003772 626cf80ff7cebdbdbdbd CTESTNLE r22, 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -46100,7 +46100,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -000000000000377C 626c790ff70ebdbd CTESTNLE word ptr [r22], 0xbdbd, 0000 +000000000000377C 626c790ff70ebdbd CTESTNLE word ptr [r22], 0xbdbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -46123,7 +46123,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000003784 626c790ff7cebdbd CTESTNLE r22w, 0xbdbd, 0000 +0000000000003784 626c790ff7cebdbd CTESTNLE r22w, 0xbdbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -46145,7 +46145,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -000000000000378C 626cf90ff70ebdbdbdbd CTESTNLE qword ptr [r22], 0xbdbdbdbd, 0000 +000000000000378C 626cf90ff70ebdbdbdbd CTESTNLE qword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -46168,7 +46168,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003796 626cf90ff7cebdbdbdbd CTESTNLE r22, 0xbdbdbdbd, 0000 +0000000000003796 626cf90ff7cebdbdbdbd CTESTNLE r22, 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -46190,7 +46190,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000037A0 626c7801841e CTESTNO byte ptr [r22], r27b, 0000 +00000000000037A0 626c7801841e CTESTNO byte ptr [r22], r27b, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -46213,7 +46213,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -00000000000037A6 626c780184de CTESTNO r22b, r27b, 0000 +00000000000037A6 626c780184de CTESTNO r22b, r27b, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -46235,7 +46235,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -00000000000037AC 626cf801841e CTESTNO byte ptr [r22], r27b, 0000 +00000000000037AC 626cf801841e CTESTNO byte ptr [r22], r27b, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -46258,7 +46258,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000037B2 626cf80184de CTESTNO r22b, r27b, 0000 +00000000000037B2 626cf80184de CTESTNO r22b, r27b, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -46280,7 +46280,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000037B8 626c7801851e CTESTNO dword ptr [r22], r27d, 0000 +00000000000037B8 626c7801851e CTESTNO dword ptr [r22], r27d, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -46303,7 +46303,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -00000000000037BE 626c780185de CTESTNO r22d, r27d, 0000 +00000000000037BE 626c780185de CTESTNO r22d, r27d, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -46325,7 +46325,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -00000000000037C4 626cf801851e CTESTNO qword ptr [r22], r27, 0000 +00000000000037C4 626cf801851e CTESTNO qword ptr [r22], r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -46348,7 +46348,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000037CA 626cf80185de CTESTNO r22, r27, 0000 +00000000000037CA 626cf80185de CTESTNO r22, r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -46370,7 +46370,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000037D0 626c7901851e CTESTNO word ptr [r22], r27w, 0000 +00000000000037D0 626c7901851e CTESTNO word ptr [r22], r27w, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -46393,7 +46393,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -00000000000037D6 626c790185de CTESTNO r22w, r27w, 0000 +00000000000037D6 626c790185de CTESTNO r22w, r27w, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -46415,7 +46415,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -00000000000037DC 626cf901851e CTESTNO qword ptr [r22], r27, 0000 +00000000000037DC 626cf901851e CTESTNO qword ptr [r22], r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -46438,7 +46438,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000037E2 626cf90185de CTESTNO r22, r27, 0000 +00000000000037E2 626cf90185de CTESTNO r22, r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -46460,7 +46460,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000037E8 626c7801f606bd CTESTNO byte ptr [r22], 0xbd, 0000 +00000000000037E8 626c7801f606bd CTESTNO byte ptr [r22], 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -46483,7 +46483,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -00000000000037EF 626c7801f6c6bd CTESTNO r22b, 0xbd, 0000 +00000000000037EF 626c7801f6c6bd CTESTNO r22b, 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -46505,7 +46505,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -00000000000037F6 626cf801f606bd CTESTNO byte ptr [r22], 0xbd, 0000 +00000000000037F6 626cf801f606bd CTESTNO byte ptr [r22], 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -46528,7 +46528,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000037FD 626cf801f6c6bd CTESTNO r22b, 0xbd, 0000 +00000000000037FD 626cf801f6c6bd CTESTNO r22b, 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -46550,7 +46550,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003804 626c7801f60ebd CTESTNO byte ptr [r22], 0xbd, 0000 +0000000000003804 626c7801f60ebd CTESTNO byte ptr [r22], 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -46573,7 +46573,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -000000000000380B 626c7801f6cebd CTESTNO r22b, 0xbd, 0000 +000000000000380B 626c7801f6cebd CTESTNO r22b, 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -46595,7 +46595,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000003812 626cf801f60ebd CTESTNO byte ptr [r22], 0xbd, 0000 +0000000000003812 626cf801f60ebd CTESTNO byte ptr [r22], 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -46618,7 +46618,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003819 626cf801f6cebd CTESTNO r22b, 0xbd, 0000 +0000000000003819 626cf801f6cebd CTESTNO r22b, 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -46640,7 +46640,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003820 626c7801f706bdbdbdbd CTESTNO dword ptr [r22], 0xbdbdbdbd, 0000 +0000000000003820 626c7801f706bdbdbdbd CTESTNO dword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -46663,7 +46663,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -000000000000382A 626c7801f7c6bdbdbdbd CTESTNO r22d, 0xbdbdbdbd, 0000 +000000000000382A 626c7801f7c6bdbdbdbd CTESTNO r22d, 0xbdbdbdbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -46685,7 +46685,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000003834 626cf801f706bdbdbdbd CTESTNO qword ptr [r22], 0xbdbdbdbd, 0000 +0000000000003834 626cf801f706bdbdbdbd CTESTNO qword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -46708,7 +46708,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -000000000000383E 626cf801f7c6bdbdbdbd CTESTNO r22, 0xbdbdbdbd, 0000 +000000000000383E 626cf801f7c6bdbdbdbd CTESTNO r22, 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -46730,7 +46730,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003848 626c7901f706bdbd CTESTNO word ptr [r22], 0xbdbd, 0000 +0000000000003848 626c7901f706bdbd CTESTNO word ptr [r22], 0xbdbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -46753,7 +46753,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000003850 626c7901f7c6bdbd CTESTNO r22w, 0xbdbd, 0000 +0000000000003850 626c7901f7c6bdbd CTESTNO r22w, 0xbdbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -46775,7 +46775,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000003858 626cf901f706bdbdbdbd CTESTNO qword ptr [r22], 0xbdbdbdbd, 0000 +0000000000003858 626cf901f706bdbdbdbd CTESTNO qword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -46798,7 +46798,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003862 626cf901f7c6bdbdbdbd CTESTNO r22, 0xbdbdbdbd, 0000 +0000000000003862 626cf901f7c6bdbdbdbd CTESTNO r22, 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -46820,7 +46820,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -000000000000386C 626c7801f70ebdbdbdbd CTESTNO dword ptr [r22], 0xbdbdbdbd, 0000 +000000000000386C 626c7801f70ebdbdbdbd CTESTNO dword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -46843,7 +46843,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000003876 626c7801f7cebdbdbdbd CTESTNO r22d, 0xbdbdbdbd, 0000 +0000000000003876 626c7801f7cebdbdbdbd CTESTNO r22d, 0xbdbdbdbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -46865,7 +46865,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000003880 626cf801f70ebdbdbdbd CTESTNO qword ptr [r22], 0xbdbdbdbd, 0000 +0000000000003880 626cf801f70ebdbdbdbd CTESTNO qword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -46888,7 +46888,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -000000000000388A 626cf801f7cebdbdbdbd CTESTNO r22, 0xbdbdbdbd, 0000 +000000000000388A 626cf801f7cebdbdbdbd CTESTNO r22, 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -46910,7 +46910,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003894 626c7901f70ebdbd CTESTNO word ptr [r22], 0xbdbd, 0000 +0000000000003894 626c7901f70ebdbd CTESTNO word ptr [r22], 0xbdbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -46933,7 +46933,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -000000000000389C 626c7901f7cebdbd CTESTNO r22w, 0xbdbd, 0000 +000000000000389C 626c7901f7cebdbd CTESTNO r22w, 0xbdbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -46955,7 +46955,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -00000000000038A4 626cf901f70ebdbdbdbd CTESTNO qword ptr [r22], 0xbdbdbdbd, 0000 +00000000000038A4 626cf901f70ebdbdbdbd CTESTNO qword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -46978,7 +46978,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000038AE 626cf901f7cebdbdbdbd CTESTNO r22, 0xbdbdbdbd, 0000 +00000000000038AE 626cf901f7cebdbdbdbd CTESTNO r22, 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -47000,7 +47000,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000038B8 626c7809841e CTESTNS byte ptr [r22], r27b, 0000 +00000000000038B8 626c7809841e CTESTNS byte ptr [r22], r27b, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -47023,7 +47023,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -00000000000038BE 626c780984de CTESTNS r22b, r27b, 0000 +00000000000038BE 626c780984de CTESTNS r22b, r27b, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -47045,7 +47045,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -00000000000038C4 626cf809841e CTESTNS byte ptr [r22], r27b, 0000 +00000000000038C4 626cf809841e CTESTNS byte ptr [r22], r27b, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -47068,7 +47068,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000038CA 626cf80984de CTESTNS r22b, r27b, 0000 +00000000000038CA 626cf80984de CTESTNS r22b, r27b, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -47090,7 +47090,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000038D0 626c7809851e CTESTNS dword ptr [r22], r27d, 0000 +00000000000038D0 626c7809851e CTESTNS dword ptr [r22], r27d, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -47113,7 +47113,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -00000000000038D6 626c780985de CTESTNS r22d, r27d, 0000 +00000000000038D6 626c780985de CTESTNS r22d, r27d, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -47135,7 +47135,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -00000000000038DC 626cf809851e CTESTNS qword ptr [r22], r27, 0000 +00000000000038DC 626cf809851e CTESTNS qword ptr [r22], r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -47158,7 +47158,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000038E2 626cf80985de CTESTNS r22, r27, 0000 +00000000000038E2 626cf80985de CTESTNS r22, r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -47180,7 +47180,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000038E8 626c7909851e CTESTNS word ptr [r22], r27w, 0000 +00000000000038E8 626c7909851e CTESTNS word ptr [r22], r27w, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -47203,7 +47203,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -00000000000038EE 626c790985de CTESTNS r22w, r27w, 0000 +00000000000038EE 626c790985de CTESTNS r22w, r27w, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -47225,7 +47225,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -00000000000038F4 626cf909851e CTESTNS qword ptr [r22], r27, 0000 +00000000000038F4 626cf909851e CTESTNS qword ptr [r22], r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -47248,7 +47248,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000038FA 626cf90985de CTESTNS r22, r27, 0000 +00000000000038FA 626cf90985de CTESTNS r22, r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -47270,7 +47270,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003900 626c7809f606bd CTESTNS byte ptr [r22], 0xbd, 0000 +0000000000003900 626c7809f606bd CTESTNS byte ptr [r22], 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -47293,7 +47293,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000003907 626c7809f6c6bd CTESTNS r22b, 0xbd, 0000 +0000000000003907 626c7809f6c6bd CTESTNS r22b, 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -47315,7 +47315,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -000000000000390E 626cf809f606bd CTESTNS byte ptr [r22], 0xbd, 0000 +000000000000390E 626cf809f606bd CTESTNS byte ptr [r22], 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -47338,7 +47338,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003915 626cf809f6c6bd CTESTNS r22b, 0xbd, 0000 +0000000000003915 626cf809f6c6bd CTESTNS r22b, 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -47360,7 +47360,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -000000000000391C 626c7809f60ebd CTESTNS byte ptr [r22], 0xbd, 0000 +000000000000391C 626c7809f60ebd CTESTNS byte ptr [r22], 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -47383,7 +47383,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000003923 626c7809f6cebd CTESTNS r22b, 0xbd, 0000 +0000000000003923 626c7809f6cebd CTESTNS r22b, 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -47405,7 +47405,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -000000000000392A 626cf809f60ebd CTESTNS byte ptr [r22], 0xbd, 0000 +000000000000392A 626cf809f60ebd CTESTNS byte ptr [r22], 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -47428,7 +47428,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003931 626cf809f6cebd CTESTNS r22b, 0xbd, 0000 +0000000000003931 626cf809f6cebd CTESTNS r22b, 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -47450,7 +47450,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003938 626c7809f706bdbdbdbd CTESTNS dword ptr [r22], 0xbdbdbdbd, 0000 +0000000000003938 626c7809f706bdbdbdbd CTESTNS dword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -47473,7 +47473,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000003942 626c7809f7c6bdbdbdbd CTESTNS r22d, 0xbdbdbdbd, 0000 +0000000000003942 626c7809f7c6bdbdbdbd CTESTNS r22d, 0xbdbdbdbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -47495,7 +47495,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -000000000000394C 626cf809f706bdbdbdbd CTESTNS qword ptr [r22], 0xbdbdbdbd, 0000 +000000000000394C 626cf809f706bdbdbdbd CTESTNS qword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -47518,7 +47518,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003956 626cf809f7c6bdbdbdbd CTESTNS r22, 0xbdbdbdbd, 0000 +0000000000003956 626cf809f7c6bdbdbdbd CTESTNS r22, 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -47540,7 +47540,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003960 626c7909f706bdbd CTESTNS word ptr [r22], 0xbdbd, 0000 +0000000000003960 626c7909f706bdbd CTESTNS word ptr [r22], 0xbdbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -47563,7 +47563,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000003968 626c7909f7c6bdbd CTESTNS r22w, 0xbdbd, 0000 +0000000000003968 626c7909f7c6bdbd CTESTNS r22w, 0xbdbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -47585,7 +47585,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000003970 626cf909f706bdbdbdbd CTESTNS qword ptr [r22], 0xbdbdbdbd, 0000 +0000000000003970 626cf909f706bdbdbdbd CTESTNS qword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -47608,7 +47608,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -000000000000397A 626cf909f7c6bdbdbdbd CTESTNS r22, 0xbdbdbdbd, 0000 +000000000000397A 626cf909f7c6bdbdbdbd CTESTNS r22, 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -47630,7 +47630,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003984 626c7809f70ebdbdbdbd CTESTNS dword ptr [r22], 0xbdbdbdbd, 0000 +0000000000003984 626c7809f70ebdbdbdbd CTESTNS dword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -47653,7 +47653,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -000000000000398E 626c7809f7cebdbdbdbd CTESTNS r22d, 0xbdbdbdbd, 0000 +000000000000398E 626c7809f7cebdbdbdbd CTESTNS r22d, 0xbdbdbdbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -47675,7 +47675,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000003998 626cf809f70ebdbdbdbd CTESTNS qword ptr [r22], 0xbdbdbdbd, 0000 +0000000000003998 626cf809f70ebdbdbdbd CTESTNS qword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -47698,7 +47698,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000039A2 626cf809f7cebdbdbdbd CTESTNS r22, 0xbdbdbdbd, 0000 +00000000000039A2 626cf809f7cebdbdbdbd CTESTNS r22, 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -47720,7 +47720,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000039AC 626c7909f70ebdbd CTESTNS word ptr [r22], 0xbdbd, 0000 +00000000000039AC 626c7909f70ebdbd CTESTNS word ptr [r22], 0xbdbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -47743,7 +47743,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -00000000000039B4 626c7909f7cebdbd CTESTNS r22w, 0xbdbd, 0000 +00000000000039B4 626c7909f7cebdbd CTESTNS r22w, 0xbdbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -47765,7 +47765,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -00000000000039BC 626cf909f70ebdbdbdbd CTESTNS qword ptr [r22], 0xbdbdbdbd, 0000 +00000000000039BC 626cf909f70ebdbdbdbd CTESTNS qword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -47788,7 +47788,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000039C6 626cf909f7cebdbdbdbd CTESTNS r22, 0xbdbdbdbd, 0000 +00000000000039C6 626cf909f7cebdbdbdbd CTESTNS r22, 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -47810,7 +47810,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000039D0 626c7805841e CTESTNZ byte ptr [r22], r27b, 0000 +00000000000039D0 626c7805841e CTESTNZ byte ptr [r22], r27b, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -47833,7 +47833,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -00000000000039D6 626c780584de CTESTNZ r22b, r27b, 0000 +00000000000039D6 626c780584de CTESTNZ r22b, r27b, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -47855,7 +47855,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -00000000000039DC 626cf805841e CTESTNZ byte ptr [r22], r27b, 0000 +00000000000039DC 626cf805841e CTESTNZ byte ptr [r22], r27b, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -47878,7 +47878,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000039E2 626cf80584de CTESTNZ r22b, r27b, 0000 +00000000000039E2 626cf80584de CTESTNZ r22b, r27b, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -47900,7 +47900,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000039E8 626c7805851e CTESTNZ dword ptr [r22], r27d, 0000 +00000000000039E8 626c7805851e CTESTNZ dword ptr [r22], r27d, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -47923,7 +47923,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -00000000000039EE 626c780585de CTESTNZ r22d, r27d, 0000 +00000000000039EE 626c780585de CTESTNZ r22d, r27d, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -47945,7 +47945,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -00000000000039F4 626cf805851e CTESTNZ qword ptr [r22], r27, 0000 +00000000000039F4 626cf805851e CTESTNZ qword ptr [r22], r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -47968,7 +47968,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000039FA 626cf80585de CTESTNZ r22, r27, 0000 +00000000000039FA 626cf80585de CTESTNZ r22, r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -47990,7 +47990,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003A00 626c7905851e CTESTNZ word ptr [r22], r27w, 0000 +0000000000003A00 626c7905851e CTESTNZ word ptr [r22], r27w, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -48013,7 +48013,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000003A06 626c790585de CTESTNZ r22w, r27w, 0000 +0000000000003A06 626c790585de CTESTNZ r22w, r27w, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -48035,7 +48035,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000003A0C 626cf905851e CTESTNZ qword ptr [r22], r27, 0000 +0000000000003A0C 626cf905851e CTESTNZ qword ptr [r22], r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -48058,7 +48058,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003A12 626cf90585de CTESTNZ r22, r27, 0000 +0000000000003A12 626cf90585de CTESTNZ r22, r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -48080,7 +48080,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003A18 626c7805f606bd CTESTNZ byte ptr [r22], 0xbd, 0000 +0000000000003A18 626c7805f606bd CTESTNZ byte ptr [r22], 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -48103,7 +48103,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000003A1F 626c7805f6c6bd CTESTNZ r22b, 0xbd, 0000 +0000000000003A1F 626c7805f6c6bd CTESTNZ r22b, 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -48125,7 +48125,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000003A26 626cf805f606bd CTESTNZ byte ptr [r22], 0xbd, 0000 +0000000000003A26 626cf805f606bd CTESTNZ byte ptr [r22], 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -48148,7 +48148,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003A2D 626cf805f6c6bd CTESTNZ r22b, 0xbd, 0000 +0000000000003A2D 626cf805f6c6bd CTESTNZ r22b, 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -48170,7 +48170,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003A34 626c7805f60ebd CTESTNZ byte ptr [r22], 0xbd, 0000 +0000000000003A34 626c7805f60ebd CTESTNZ byte ptr [r22], 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -48193,7 +48193,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000003A3B 626c7805f6cebd CTESTNZ r22b, 0xbd, 0000 +0000000000003A3B 626c7805f6cebd CTESTNZ r22b, 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -48215,7 +48215,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000003A42 626cf805f60ebd CTESTNZ byte ptr [r22], 0xbd, 0000 +0000000000003A42 626cf805f60ebd CTESTNZ byte ptr [r22], 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -48238,7 +48238,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003A49 626cf805f6cebd CTESTNZ r22b, 0xbd, 0000 +0000000000003A49 626cf805f6cebd CTESTNZ r22b, 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -48260,7 +48260,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003A50 626c7805f706bdbdbdbd CTESTNZ dword ptr [r22], 0xbdbdbdbd, 0000 +0000000000003A50 626c7805f706bdbdbdbd CTESTNZ dword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -48283,7 +48283,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000003A5A 626c7805f7c6bdbdbdbd CTESTNZ r22d, 0xbdbdbdbd, 0000 +0000000000003A5A 626c7805f7c6bdbdbdbd CTESTNZ r22d, 0xbdbdbdbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -48305,7 +48305,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000003A64 626cf805f706bdbdbdbd CTESTNZ qword ptr [r22], 0xbdbdbdbd, 0000 +0000000000003A64 626cf805f706bdbdbdbd CTESTNZ qword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -48328,7 +48328,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003A6E 626cf805f7c6bdbdbdbd CTESTNZ r22, 0xbdbdbdbd, 0000 +0000000000003A6E 626cf805f7c6bdbdbdbd CTESTNZ r22, 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -48350,7 +48350,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003A78 626c7905f706bdbd CTESTNZ word ptr [r22], 0xbdbd, 0000 +0000000000003A78 626c7905f706bdbd CTESTNZ word ptr [r22], 0xbdbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -48373,7 +48373,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000003A80 626c7905f7c6bdbd CTESTNZ r22w, 0xbdbd, 0000 +0000000000003A80 626c7905f7c6bdbd CTESTNZ r22w, 0xbdbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -48395,7 +48395,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000003A88 626cf905f706bdbdbdbd CTESTNZ qword ptr [r22], 0xbdbdbdbd, 0000 +0000000000003A88 626cf905f706bdbdbdbd CTESTNZ qword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -48418,7 +48418,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003A92 626cf905f7c6bdbdbdbd CTESTNZ r22, 0xbdbdbdbd, 0000 +0000000000003A92 626cf905f7c6bdbdbdbd CTESTNZ r22, 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -48440,7 +48440,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003A9C 626c7805f70ebdbdbdbd CTESTNZ dword ptr [r22], 0xbdbdbdbd, 0000 +0000000000003A9C 626c7805f70ebdbdbdbd CTESTNZ dword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -48463,7 +48463,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000003AA6 626c7805f7cebdbdbdbd CTESTNZ r22d, 0xbdbdbdbd, 0000 +0000000000003AA6 626c7805f7cebdbdbdbd CTESTNZ r22d, 0xbdbdbdbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -48485,7 +48485,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000003AB0 626cf805f70ebdbdbdbd CTESTNZ qword ptr [r22], 0xbdbdbdbd, 0000 +0000000000003AB0 626cf805f70ebdbdbdbd CTESTNZ qword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -48508,7 +48508,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003ABA 626cf805f7cebdbdbdbd CTESTNZ r22, 0xbdbdbdbd, 0000 +0000000000003ABA 626cf805f7cebdbdbdbd CTESTNZ r22, 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -48530,7 +48530,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003AC4 626c7905f70ebdbd CTESTNZ word ptr [r22], 0xbdbd, 0000 +0000000000003AC4 626c7905f70ebdbd CTESTNZ word ptr [r22], 0xbdbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -48553,7 +48553,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000003ACC 626c7905f7cebdbd CTESTNZ r22w, 0xbdbd, 0000 +0000000000003ACC 626c7905f7cebdbd CTESTNZ r22w, 0xbdbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -48575,7 +48575,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000003AD4 626cf905f70ebdbdbdbd CTESTNZ qword ptr [r22], 0xbdbdbdbd, 0000 +0000000000003AD4 626cf905f70ebdbdbdbd CTESTNZ qword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -48598,7 +48598,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003ADE 626cf905f7cebdbdbdbd CTESTNZ r22, 0xbdbdbdbd, 0000 +0000000000003ADE 626cf905f7cebdbdbdbd CTESTNZ r22, 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -48620,7 +48620,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003AE8 626c7800841e CTESTO byte ptr [r22], r27b, 0000 +0000000000003AE8 626c7800841e CTESTO byte ptr [r22], r27b, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -48643,7 +48643,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000003AEE 626c780084de CTESTO r22b, r27b, 0000 +0000000000003AEE 626c780084de CTESTO r22b, r27b, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -48665,7 +48665,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000003AF4 626cf800841e CTESTO byte ptr [r22], r27b, 0000 +0000000000003AF4 626cf800841e CTESTO byte ptr [r22], r27b, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -48688,7 +48688,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003AFA 626cf80084de CTESTO r22b, r27b, 0000 +0000000000003AFA 626cf80084de CTESTO r22b, r27b, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -48710,7 +48710,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003B00 626c7800851e CTESTO dword ptr [r22], r27d, 0000 +0000000000003B00 626c7800851e CTESTO dword ptr [r22], r27d, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -48733,7 +48733,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000003B06 626c780085de CTESTO r22d, r27d, 0000 +0000000000003B06 626c780085de CTESTO r22d, r27d, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -48755,7 +48755,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000003B0C 626cf800851e CTESTO qword ptr [r22], r27, 0000 +0000000000003B0C 626cf800851e CTESTO qword ptr [r22], r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -48778,7 +48778,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003B12 626cf80085de CTESTO r22, r27, 0000 +0000000000003B12 626cf80085de CTESTO r22, r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -48800,7 +48800,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003B18 626c7900851e CTESTO word ptr [r22], r27w, 0000 +0000000000003B18 626c7900851e CTESTO word ptr [r22], r27w, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -48823,7 +48823,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000003B1E 626c790085de CTESTO r22w, r27w, 0000 +0000000000003B1E 626c790085de CTESTO r22w, r27w, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -48845,7 +48845,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000003B24 626cf900851e CTESTO qword ptr [r22], r27, 0000 +0000000000003B24 626cf900851e CTESTO qword ptr [r22], r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -48868,7 +48868,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003B2A 626cf90085de CTESTO r22, r27, 0000 +0000000000003B2A 626cf90085de CTESTO r22, r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -48890,7 +48890,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003B30 626c7800f606bd CTESTO byte ptr [r22], 0xbd, 0000 +0000000000003B30 626c7800f606bd CTESTO byte ptr [r22], 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -48913,7 +48913,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000003B37 626c7800f6c6bd CTESTO r22b, 0xbd, 0000 +0000000000003B37 626c7800f6c6bd CTESTO r22b, 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -48935,7 +48935,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000003B3E 626cf800f606bd CTESTO byte ptr [r22], 0xbd, 0000 +0000000000003B3E 626cf800f606bd CTESTO byte ptr [r22], 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -48958,7 +48958,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003B45 626cf800f6c6bd CTESTO r22b, 0xbd, 0000 +0000000000003B45 626cf800f6c6bd CTESTO r22b, 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -48980,7 +48980,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003B4C 626c7800f60ebd CTESTO byte ptr [r22], 0xbd, 0000 +0000000000003B4C 626c7800f60ebd CTESTO byte ptr [r22], 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -49003,7 +49003,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000003B53 626c7800f6cebd CTESTO r22b, 0xbd, 0000 +0000000000003B53 626c7800f6cebd CTESTO r22b, 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -49025,7 +49025,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000003B5A 626cf800f60ebd CTESTO byte ptr [r22], 0xbd, 0000 +0000000000003B5A 626cf800f60ebd CTESTO byte ptr [r22], 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -49048,7 +49048,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003B61 626cf800f6cebd CTESTO r22b, 0xbd, 0000 +0000000000003B61 626cf800f6cebd CTESTO r22b, 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -49070,7 +49070,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003B68 626c7800f706bdbdbdbd CTESTO dword ptr [r22], 0xbdbdbdbd, 0000 +0000000000003B68 626c7800f706bdbdbdbd CTESTO dword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -49093,7 +49093,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000003B72 626c7800f7c6bdbdbdbd CTESTO r22d, 0xbdbdbdbd, 0000 +0000000000003B72 626c7800f7c6bdbdbdbd CTESTO r22d, 0xbdbdbdbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -49115,7 +49115,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000003B7C 626cf800f706bdbdbdbd CTESTO qword ptr [r22], 0xbdbdbdbd, 0000 +0000000000003B7C 626cf800f706bdbdbdbd CTESTO qword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -49138,7 +49138,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003B86 626cf800f7c6bdbdbdbd CTESTO r22, 0xbdbdbdbd, 0000 +0000000000003B86 626cf800f7c6bdbdbdbd CTESTO r22, 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -49160,7 +49160,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003B90 626c7900f706bdbd CTESTO word ptr [r22], 0xbdbd, 0000 +0000000000003B90 626c7900f706bdbd CTESTO word ptr [r22], 0xbdbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -49183,7 +49183,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000003B98 626c7900f7c6bdbd CTESTO r22w, 0xbdbd, 0000 +0000000000003B98 626c7900f7c6bdbd CTESTO r22w, 0xbdbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -49205,7 +49205,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000003BA0 626cf900f706bdbdbdbd CTESTO qword ptr [r22], 0xbdbdbdbd, 0000 +0000000000003BA0 626cf900f706bdbdbdbd CTESTO qword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -49228,7 +49228,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003BAA 626cf900f7c6bdbdbdbd CTESTO r22, 0xbdbdbdbd, 0000 +0000000000003BAA 626cf900f7c6bdbdbdbd CTESTO r22, 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -49250,7 +49250,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003BB4 626c7800f70ebdbdbdbd CTESTO dword ptr [r22], 0xbdbdbdbd, 0000 +0000000000003BB4 626c7800f70ebdbdbdbd CTESTO dword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -49273,7 +49273,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000003BBE 626c7800f7cebdbdbdbd CTESTO r22d, 0xbdbdbdbd, 0000 +0000000000003BBE 626c7800f7cebdbdbdbd CTESTO r22d, 0xbdbdbdbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -49295,7 +49295,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000003BC8 626cf800f70ebdbdbdbd CTESTO qword ptr [r22], 0xbdbdbdbd, 0000 +0000000000003BC8 626cf800f70ebdbdbdbd CTESTO qword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -49318,7 +49318,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003BD2 626cf800f7cebdbdbdbd CTESTO r22, 0xbdbdbdbd, 0000 +0000000000003BD2 626cf800f7cebdbdbdbd CTESTO r22, 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -49340,7 +49340,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003BDC 626c7900f70ebdbd CTESTO word ptr [r22], 0xbdbd, 0000 +0000000000003BDC 626c7900f70ebdbd CTESTO word ptr [r22], 0xbdbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -49363,7 +49363,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000003BE4 626c7900f7cebdbd CTESTO r22w, 0xbdbd, 0000 +0000000000003BE4 626c7900f7cebdbd CTESTO r22w, 0xbdbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -49385,7 +49385,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000003BEC 626cf900f70ebdbdbdbd CTESTO qword ptr [r22], 0xbdbdbdbd, 0000 +0000000000003BEC 626cf900f70ebdbdbdbd CTESTO qword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -49408,7 +49408,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003BF6 626cf900f7cebdbdbdbd CTESTO r22, 0xbdbdbdbd, 0000 +0000000000003BF6 626cf900f7cebdbdbdbd CTESTO r22, 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -49430,7 +49430,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003C00 626c7808841e CTESTS byte ptr [r22], r27b, 0000 +0000000000003C00 626c7808841e CTESTS byte ptr [r22], r27b, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -49453,7 +49453,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000003C06 626c780884de CTESTS r22b, r27b, 0000 +0000000000003C06 626c780884de CTESTS r22b, r27b, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -49475,7 +49475,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000003C0C 626cf808841e CTESTS byte ptr [r22], r27b, 0000 +0000000000003C0C 626cf808841e CTESTS byte ptr [r22], r27b, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -49498,7 +49498,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003C12 626cf80884de CTESTS r22b, r27b, 0000 +0000000000003C12 626cf80884de CTESTS r22b, r27b, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -49520,7 +49520,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003C18 626c7808851e CTESTS dword ptr [r22], r27d, 0000 +0000000000003C18 626c7808851e CTESTS dword ptr [r22], r27d, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -49543,7 +49543,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000003C1E 626c780885de CTESTS r22d, r27d, 0000 +0000000000003C1E 626c780885de CTESTS r22d, r27d, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -49565,7 +49565,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000003C24 626cf808851e CTESTS qword ptr [r22], r27, 0000 +0000000000003C24 626cf808851e CTESTS qword ptr [r22], r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -49588,7 +49588,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003C2A 626cf80885de CTESTS r22, r27, 0000 +0000000000003C2A 626cf80885de CTESTS r22, r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -49610,7 +49610,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003C30 626c7908851e CTESTS word ptr [r22], r27w, 0000 +0000000000003C30 626c7908851e CTESTS word ptr [r22], r27w, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -49633,7 +49633,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000003C36 626c790885de CTESTS r22w, r27w, 0000 +0000000000003C36 626c790885de CTESTS r22w, r27w, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -49655,7 +49655,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000003C3C 626cf908851e CTESTS qword ptr [r22], r27, 0000 +0000000000003C3C 626cf908851e CTESTS qword ptr [r22], r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -49678,7 +49678,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003C42 626cf90885de CTESTS r22, r27, 0000 +0000000000003C42 626cf90885de CTESTS r22, r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -49700,7 +49700,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003C48 626c7808f606bd CTESTS byte ptr [r22], 0xbd, 0000 +0000000000003C48 626c7808f606bd CTESTS byte ptr [r22], 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -49723,7 +49723,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000003C4F 626c7808f6c6bd CTESTS r22b, 0xbd, 0000 +0000000000003C4F 626c7808f6c6bd CTESTS r22b, 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -49745,7 +49745,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000003C56 626cf808f606bd CTESTS byte ptr [r22], 0xbd, 0000 +0000000000003C56 626cf808f606bd CTESTS byte ptr [r22], 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -49768,7 +49768,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003C5D 626cf808f6c6bd CTESTS r22b, 0xbd, 0000 +0000000000003C5D 626cf808f6c6bd CTESTS r22b, 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -49790,7 +49790,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003C64 626c7808f60ebd CTESTS byte ptr [r22], 0xbd, 0000 +0000000000003C64 626c7808f60ebd CTESTS byte ptr [r22], 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -49813,7 +49813,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000003C6B 626c7808f6cebd CTESTS r22b, 0xbd, 0000 +0000000000003C6B 626c7808f6cebd CTESTS r22b, 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -49835,7 +49835,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000003C72 626cf808f60ebd CTESTS byte ptr [r22], 0xbd, 0000 +0000000000003C72 626cf808f60ebd CTESTS byte ptr [r22], 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -49858,7 +49858,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003C79 626cf808f6cebd CTESTS r22b, 0xbd, 0000 +0000000000003C79 626cf808f6cebd CTESTS r22b, 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -49880,7 +49880,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003C80 626c7808f706bdbdbdbd CTESTS dword ptr [r22], 0xbdbdbdbd, 0000 +0000000000003C80 626c7808f706bdbdbdbd CTESTS dword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -49903,7 +49903,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000003C8A 626c7808f7c6bdbdbdbd CTESTS r22d, 0xbdbdbdbd, 0000 +0000000000003C8A 626c7808f7c6bdbdbdbd CTESTS r22d, 0xbdbdbdbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -49925,7 +49925,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000003C94 626cf808f706bdbdbdbd CTESTS qword ptr [r22], 0xbdbdbdbd, 0000 +0000000000003C94 626cf808f706bdbdbdbd CTESTS qword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -49948,7 +49948,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003C9E 626cf808f7c6bdbdbdbd CTESTS r22, 0xbdbdbdbd, 0000 +0000000000003C9E 626cf808f7c6bdbdbdbd CTESTS r22, 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -49970,7 +49970,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003CA8 626c7908f706bdbd CTESTS word ptr [r22], 0xbdbd, 0000 +0000000000003CA8 626c7908f706bdbd CTESTS word ptr [r22], 0xbdbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -49993,7 +49993,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000003CB0 626c7908f7c6bdbd CTESTS r22w, 0xbdbd, 0000 +0000000000003CB0 626c7908f7c6bdbd CTESTS r22w, 0xbdbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -50015,7 +50015,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000003CB8 626cf908f706bdbdbdbd CTESTS qword ptr [r22], 0xbdbdbdbd, 0000 +0000000000003CB8 626cf908f706bdbdbdbd CTESTS qword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -50038,7 +50038,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003CC2 626cf908f7c6bdbdbdbd CTESTS r22, 0xbdbdbdbd, 0000 +0000000000003CC2 626cf908f7c6bdbdbdbd CTESTS r22, 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -50060,7 +50060,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003CCC 626c7808f70ebdbdbdbd CTESTS dword ptr [r22], 0xbdbdbdbd, 0000 +0000000000003CCC 626c7808f70ebdbdbdbd CTESTS dword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -50083,7 +50083,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000003CD6 626c7808f7cebdbdbdbd CTESTS r22d, 0xbdbdbdbd, 0000 +0000000000003CD6 626c7808f7cebdbdbdbd CTESTS r22d, 0xbdbdbdbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -50105,7 +50105,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000003CE0 626cf808f70ebdbdbdbd CTESTS qword ptr [r22], 0xbdbdbdbd, 0000 +0000000000003CE0 626cf808f70ebdbdbdbd CTESTS qword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -50128,7 +50128,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003CEA 626cf808f7cebdbdbdbd CTESTS r22, 0xbdbdbdbd, 0000 +0000000000003CEA 626cf808f7cebdbdbdbd CTESTS r22, 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -50150,7 +50150,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003CF4 626c7908f70ebdbd CTESTS word ptr [r22], 0xbdbd, 0000 +0000000000003CF4 626c7908f70ebdbd CTESTS word ptr [r22], 0xbdbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -50173,7 +50173,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000003CFC 626c7908f7cebdbd CTESTS r22w, 0xbdbd, 0000 +0000000000003CFC 626c7908f7cebdbd CTESTS r22w, 0xbdbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -50195,7 +50195,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000003D04 626cf908f70ebdbdbdbd CTESTS qword ptr [r22], 0xbdbdbdbd, 0000 +0000000000003D04 626cf908f70ebdbdbdbd CTESTS qword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -50218,7 +50218,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003D0E 626cf908f7cebdbdbdbd CTESTS r22, 0xbdbdbdbd, 0000 +0000000000003D0E 626cf908f7cebdbdbdbd CTESTS r22, 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -50240,7 +50240,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003D18 626c780a841e CTESTT byte ptr [r22], r27b, 0000 +0000000000003D18 626c780a841e CTESTT byte ptr [r22], r27b, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -50263,7 +50263,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000003D1E 626c780a84de CTESTT r22b, r27b, 0000 +0000000000003D1E 626c780a84de CTESTT r22b, r27b, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -50285,7 +50285,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000003D24 626cf80a841e CTESTT byte ptr [r22], r27b, 0000 +0000000000003D24 626cf80a841e CTESTT byte ptr [r22], r27b, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -50308,7 +50308,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003D2A 626cf80a84de CTESTT r22b, r27b, 0000 +0000000000003D2A 626cf80a84de CTESTT r22b, r27b, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -50330,7 +50330,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003D30 626c780a851e CTESTT dword ptr [r22], r27d, 0000 +0000000000003D30 626c780a851e CTESTT dword ptr [r22], r27d, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -50353,7 +50353,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000003D36 626c780a85de CTESTT r22d, r27d, 0000 +0000000000003D36 626c780a85de CTESTT r22d, r27d, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -50375,7 +50375,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000003D3C 626cf80a851e CTESTT qword ptr [r22], r27, 0000 +0000000000003D3C 626cf80a851e CTESTT qword ptr [r22], r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -50398,7 +50398,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003D42 626cf80a85de CTESTT r22, r27, 0000 +0000000000003D42 626cf80a85de CTESTT r22, r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -50420,7 +50420,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003D48 626c790a851e CTESTT word ptr [r22], r27w, 0000 +0000000000003D48 626c790a851e CTESTT word ptr [r22], r27w, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -50443,7 +50443,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000003D4E 626c790a85de CTESTT r22w, r27w, 0000 +0000000000003D4E 626c790a85de CTESTT r22w, r27w, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -50465,7 +50465,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000003D54 626cf90a851e CTESTT qword ptr [r22], r27, 0000 +0000000000003D54 626cf90a851e CTESTT qword ptr [r22], r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -50488,7 +50488,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003D5A 626cf90a85de CTESTT r22, r27, 0000 +0000000000003D5A 626cf90a85de CTESTT r22, r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -50510,7 +50510,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003D60 626c780af606bd CTESTT byte ptr [r22], 0xbd, 0000 +0000000000003D60 626c780af606bd CTESTT byte ptr [r22], 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -50533,7 +50533,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000003D67 626c780af6c6bd CTESTT r22b, 0xbd, 0000 +0000000000003D67 626c780af6c6bd CTESTT r22b, 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -50555,7 +50555,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000003D6E 626cf80af606bd CTESTT byte ptr [r22], 0xbd, 0000 +0000000000003D6E 626cf80af606bd CTESTT byte ptr [r22], 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -50578,7 +50578,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003D75 626cf80af6c6bd CTESTT r22b, 0xbd, 0000 +0000000000003D75 626cf80af6c6bd CTESTT r22b, 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -50600,7 +50600,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003D7C 626c780af60ebd CTESTT byte ptr [r22], 0xbd, 0000 +0000000000003D7C 626c780af60ebd CTESTT byte ptr [r22], 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -50623,7 +50623,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000003D83 626c780af6cebd CTESTT r22b, 0xbd, 0000 +0000000000003D83 626c780af6cebd CTESTT r22b, 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -50645,7 +50645,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000003D8A 626cf80af60ebd CTESTT byte ptr [r22], 0xbd, 0000 +0000000000003D8A 626cf80af60ebd CTESTT byte ptr [r22], 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -50668,7 +50668,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003D91 626cf80af6cebd CTESTT r22b, 0xbd, 0000 +0000000000003D91 626cf80af6cebd CTESTT r22b, 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -50690,7 +50690,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003D98 626c780af706bdbdbdbd CTESTT dword ptr [r22], 0xbdbdbdbd, 0000 +0000000000003D98 626c780af706bdbdbdbd CTESTT dword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -50713,7 +50713,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000003DA2 626c780af7c6bdbdbdbd CTESTT r22d, 0xbdbdbdbd, 0000 +0000000000003DA2 626c780af7c6bdbdbdbd CTESTT r22d, 0xbdbdbdbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -50735,7 +50735,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000003DAC 626cf80af706bdbdbdbd CTESTT qword ptr [r22], 0xbdbdbdbd, 0000 +0000000000003DAC 626cf80af706bdbdbdbd CTESTT qword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -50758,7 +50758,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003DB6 626cf80af7c6bdbdbdbd CTESTT r22, 0xbdbdbdbd, 0000 +0000000000003DB6 626cf80af7c6bdbdbdbd CTESTT r22, 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -50780,7 +50780,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003DC0 626c790af706bdbd CTESTT word ptr [r22], 0xbdbd, 0000 +0000000000003DC0 626c790af706bdbd CTESTT word ptr [r22], 0xbdbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -50803,7 +50803,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000003DC8 626c790af7c6bdbd CTESTT r22w, 0xbdbd, 0000 +0000000000003DC8 626c790af7c6bdbd CTESTT r22w, 0xbdbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -50825,7 +50825,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000003DD0 626cf90af706bdbdbdbd CTESTT qword ptr [r22], 0xbdbdbdbd, 0000 +0000000000003DD0 626cf90af706bdbdbdbd CTESTT qword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -50848,7 +50848,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003DDA 626cf90af7c6bdbdbdbd CTESTT r22, 0xbdbdbdbd, 0000 +0000000000003DDA 626cf90af7c6bdbdbdbd CTESTT r22, 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -50870,7 +50870,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003DE4 626c780af70ebdbdbdbd CTESTT dword ptr [r22], 0xbdbdbdbd, 0000 +0000000000003DE4 626c780af70ebdbdbdbd CTESTT dword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -50893,7 +50893,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000003DEE 626c780af7cebdbdbdbd CTESTT r22d, 0xbdbdbdbd, 0000 +0000000000003DEE 626c780af7cebdbdbdbd CTESTT r22d, 0xbdbdbdbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -50915,7 +50915,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000003DF8 626cf80af70ebdbdbdbd CTESTT qword ptr [r22], 0xbdbdbdbd, 0000 +0000000000003DF8 626cf80af70ebdbdbdbd CTESTT qword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -50938,7 +50938,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003E02 626cf80af7cebdbdbdbd CTESTT r22, 0xbdbdbdbd, 0000 +0000000000003E02 626cf80af7cebdbdbdbd CTESTT r22, 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -50960,7 +50960,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003E0C 626c790af70ebdbd CTESTT word ptr [r22], 0xbdbd, 0000 +0000000000003E0C 626c790af70ebdbd CTESTT word ptr [r22], 0xbdbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -50983,7 +50983,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000003E14 626c790af7cebdbd CTESTT r22w, 0xbdbd, 0000 +0000000000003E14 626c790af7cebdbd CTESTT r22w, 0xbdbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -51005,7 +51005,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000003E1C 626cf90af70ebdbdbdbd CTESTT qword ptr [r22], 0xbdbdbdbd, 0000 +0000000000003E1C 626cf90af70ebdbdbdbd CTESTT qword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -51028,7 +51028,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003E26 626cf90af7cebdbdbdbd CTESTT r22, 0xbdbdbdbd, 0000 +0000000000003E26 626cf90af7cebdbdbdbd CTESTT r22, 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -51050,7 +51050,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003E30 626c7804841e CTESTZ byte ptr [r22], r27b, 0000 +0000000000003E30 626c7804841e CTESTZ byte ptr [r22], r27b, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -51073,7 +51073,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000003E36 626c780484de CTESTZ r22b, r27b, 0000 +0000000000003E36 626c780484de CTESTZ r22b, r27b, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -51095,7 +51095,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000003E3C 626cf804841e CTESTZ byte ptr [r22], r27b, 0000 +0000000000003E3C 626cf804841e CTESTZ byte ptr [r22], r27b, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -51118,7 +51118,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003E42 626cf80484de CTESTZ r22b, r27b, 0000 +0000000000003E42 626cf80484de CTESTZ r22b, r27b, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -51140,7 +51140,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003E48 626c7804851e CTESTZ dword ptr [r22], r27d, 0000 +0000000000003E48 626c7804851e CTESTZ dword ptr [r22], r27d, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -51163,7 +51163,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000003E4E 626c780485de CTESTZ r22d, r27d, 0000 +0000000000003E4E 626c780485de CTESTZ r22d, r27d, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -51185,7 +51185,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000003E54 626cf804851e CTESTZ qword ptr [r22], r27, 0000 +0000000000003E54 626cf804851e CTESTZ qword ptr [r22], r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -51208,7 +51208,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003E5A 626cf80485de CTESTZ r22, r27, 0000 +0000000000003E5A 626cf80485de CTESTZ r22, r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -51230,7 +51230,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003E60 626c7904851e CTESTZ word ptr [r22], r27w, 0000 +0000000000003E60 626c7904851e CTESTZ word ptr [r22], r27w, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -51253,7 +51253,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000003E66 626c790485de CTESTZ r22w, r27w, 0000 +0000000000003E66 626c790485de CTESTZ r22w, r27w, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -51275,7 +51275,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000003E6C 626cf904851e CTESTZ qword ptr [r22], r27, 0000 +0000000000003E6C 626cf904851e CTESTZ qword ptr [r22], r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -51298,7 +51298,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003E72 626cf90485de CTESTZ r22, r27, 0000 +0000000000003E72 626cf90485de CTESTZ r22, r27, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -51320,7 +51320,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003E78 626c7804f606bd CTESTZ byte ptr [r22], 0xbd, 0000 +0000000000003E78 626c7804f606bd CTESTZ byte ptr [r22], 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -51343,7 +51343,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000003E7F 626c7804f6c6bd CTESTZ r22b, 0xbd, 0000 +0000000000003E7F 626c7804f6c6bd CTESTZ r22b, 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -51365,7 +51365,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000003E86 626cf804f606bd CTESTZ byte ptr [r22], 0xbd, 0000 +0000000000003E86 626cf804f606bd CTESTZ byte ptr [r22], 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -51388,7 +51388,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003E8D 626cf804f6c6bd CTESTZ r22b, 0xbd, 0000 +0000000000003E8D 626cf804f6c6bd CTESTZ r22b, 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -51410,7 +51410,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003E94 626c7804f60ebd CTESTZ byte ptr [r22], 0xbd, 0000 +0000000000003E94 626c7804f60ebd CTESTZ byte ptr [r22], 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -51433,7 +51433,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000003E9B 626c7804f6cebd CTESTZ r22b, 0xbd, 0000 +0000000000003E9B 626c7804f6cebd CTESTZ r22b, 0xbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -51455,7 +51455,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000003EA2 626cf804f60ebd CTESTZ byte ptr [r22], 0xbd, 0000 +0000000000003EA2 626cf804f60ebd CTESTZ byte ptr [r22], 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -51478,7 +51478,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003EA9 626cf804f6cebd CTESTZ r22b, 0xbd, 0000 +0000000000003EA9 626cf804f6cebd CTESTZ r22b, 0xbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -51500,7 +51500,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003EB0 626c7804f706bdbdbdbd CTESTZ dword ptr [r22], 0xbdbdbdbd, 0000 +0000000000003EB0 626c7804f706bdbdbdbd CTESTZ dword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -51523,7 +51523,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000003EBA 626c7804f7c6bdbdbdbd CTESTZ r22d, 0xbdbdbdbd, 0000 +0000000000003EBA 626c7804f7c6bdbdbdbd CTESTZ r22d, 0xbdbdbdbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -51545,7 +51545,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000003EC4 626cf804f706bdbdbdbd CTESTZ qword ptr [r22], 0xbdbdbdbd, 0000 +0000000000003EC4 626cf804f706bdbdbdbd CTESTZ qword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -51568,7 +51568,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003ECE 626cf804f7c6bdbdbdbd CTESTZ r22, 0xbdbdbdbd, 0000 +0000000000003ECE 626cf804f7c6bdbdbdbd CTESTZ r22, 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -51590,7 +51590,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003ED8 626c7904f706bdbd CTESTZ word ptr [r22], 0xbdbd, 0000 +0000000000003ED8 626c7904f706bdbd CTESTZ word ptr [r22], 0xbdbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -51613,7 +51613,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000003EE0 626c7904f7c6bdbd CTESTZ r22w, 0xbdbd, 0000 +0000000000003EE0 626c7904f7c6bdbd CTESTZ r22w, 0xbdbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -51635,7 +51635,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000003EE8 626cf904f706bdbdbdbd CTESTZ qword ptr [r22], 0xbdbdbdbd, 0000 +0000000000003EE8 626cf904f706bdbdbdbd CTESTZ qword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -51658,7 +51658,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003EF2 626cf904f7c6bdbdbdbd CTESTZ r22, 0xbdbdbdbd, 0000 +0000000000003EF2 626cf904f7c6bdbdbdbd CTESTZ r22, 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -51680,7 +51680,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003EFC 626c7804f70ebdbdbdbd CTESTZ dword ptr [r22], 0xbdbdbdbd, 0000 +0000000000003EFC 626c7804f70ebdbdbdbd CTESTZ dword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -51703,7 +51703,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000003F06 626c7804f7cebdbdbdbd CTESTZ r22d, 0xbdbdbdbd, 0000 +0000000000003F06 626c7804f7cebdbdbdbd CTESTZ r22d, 0xbdbdbdbd, {dfv=} DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -51725,7 +51725,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000003F10 626cf804f70ebdbdbdbd CTESTZ qword ptr [r22], 0xbdbdbdbd, 0000 +0000000000003F10 626cf804f70ebdbdbdbd CTESTZ qword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -51748,7 +51748,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003F1A 626cf804f7cebdbdbdbd CTESTZ r22, 0xbdbdbdbd, 0000 +0000000000003F1A 626cf804f7cebdbdbdbd CTESTZ r22, 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -51770,7 +51770,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003F24 626c7904f70ebdbd CTESTZ word ptr [r22], 0xbdbd, 0000 +0000000000003F24 626c7904f70ebdbd CTESTZ word ptr [r22], 0xbdbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -51793,7 +51793,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000003F2C 626c7904f7cebdbd CTESTZ r22w, 0xbdbd, 0000 +0000000000003F2C 626c7904f7cebdbd CTESTZ r22w, 0xbdbd, {dfv=} DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -51815,7 +51815,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000003F34 626cf904f70ebdbdbdbd CTESTZ qword ptr [r22], 0xbdbdbdbd, 0000 +0000000000003F34 626cf904f70ebdbdbdbd CTESTZ qword ptr [r22], 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -51838,7 +51838,7 @@ Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003F3E 626cf904f7cebdbdbdbd CTESTZ r22, 0xbdbdbdbd, 0000 +0000000000003F3E 626cf904f7cebdbdbdbd CTESTZ r22, 0xbdbdbdbd, {dfv=} DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -52106,7 +52106,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 1, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000003F90 626c780cfe0e DEC{NF} byte ptr [r22] +0000000000003F90 626c780cfe0e DECNF byte ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -52124,7 +52124,7 @@ Operand: 0, Acc: RW, Type: Memory, Size: 1, RawSize: 1, Encoding: M, Segment: 3, Base: 22, -0000000000003F96 626c780cfece DEC{NF} r22b +0000000000003F96 626c780cfece DECNF r22b DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -52141,7 +52141,7 @@ BND: no, BHINT: no, DNT: no Operand: 0, Acc: RW, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 -0000000000003F9C 626cf80cfe0e DEC{NF} byte ptr [r22] +0000000000003F9C 626cf80cfe0e DECNF byte ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -52159,7 +52159,7 @@ Operand: 0, Acc: RW, Type: Memory, Size: 1, RawSize: 1, Encoding: M, Segment: 3, Base: 22, -0000000000003FA2 626cf80cfece DEC{NF} r22b +0000000000003FA2 626cf80cfece DECNF r22b DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -52176,7 +52176,7 @@ BND: no, BHINT: no, DNT: no Operand: 0, Acc: RW, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 -0000000000003FA8 626c780cff0e DEC{NF} dword ptr [r22] +0000000000003FA8 626c780cff0e DECNF dword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -52194,7 +52194,7 @@ Operand: 0, Acc: RW, Type: Memory, Size: 4, RawSize: 4, Encoding: M, Segment: 3, Base: 22, -0000000000003FAE 626c780cffce DEC{NF} r22d +0000000000003FAE 626c780cffce DECNF r22d DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -52211,7 +52211,7 @@ BND: no, BHINT: no, DNT: no Operand: 0, Acc: RW, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 -0000000000003FB4 626cf80cff0e DEC{NF} qword ptr [r22] +0000000000003FB4 626cf80cff0e DECNF qword ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -52229,7 +52229,7 @@ Operand: 0, Acc: RW, Type: Memory, Size: 8, RawSize: 8, Encoding: M, Segment: 3, Base: 22, -0000000000003FBA 626cf80cffce DEC{NF} r22 +0000000000003FBA 626cf80cffce DECNF r22 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -52246,7 +52246,7 @@ BND: no, BHINT: no, DNT: no Operand: 0, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 -0000000000003FC0 626c790cff0e DEC{NF} word ptr [r22] +0000000000003FC0 626c790cff0e DECNF word ptr [r22] DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -52264,7 +52264,7 @@ Operand: 0, Acc: RW, Type: Memory, Size: 2, RawSize: 2, Encoding: M, Segment: 3, Base: 22, -0000000000003FC6 626c790cffce DEC{NF} r22w +0000000000003FC6 626c790cffce DECNF r22w DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -52281,7 +52281,7 @@ BND: no, BHINT: no, DNT: no Operand: 0, Acc: RW, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: General Purpose, RegSize: 2, RegId: 22, RegCount: 1 -0000000000003FCC 626cf90cff0e DEC{NF} qword ptr [r22] +0000000000003FCC 626cf90cff0e DECNF qword ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -52299,7 +52299,7 @@ Operand: 0, Acc: RW, Type: Memory, Size: 8, RawSize: 8, Encoding: M, Segment: 3, Base: 22, -0000000000003FD2 626cf90cffce DEC{NF} r22 +0000000000003FD2 626cf90cffce DECNF r22 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -52574,7 +52574,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 2, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000004020 626c781cfe0e DEC{NF} al, byte ptr [r22] +0000000000004020 626c781cfe0e DECNF al, byte ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -52593,7 +52593,7 @@ Operand: 1, Acc: R-, Type: Memory, Size: 1, RawSize: 1, Encoding: M, Segment: 3, Base: 22, -0000000000004026 626c781cfece DEC{NF} al, r22b +0000000000004026 626c781cfece DECNF al, r22b DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -52611,7 +52611,7 @@ Operand: 0, Acc: -W, Type: Register, Size: 1, RawSize: 1, Encoding: V, RegType: General Purpose, RegSize: 1, RegId: 0, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 -000000000000402C 626cf81cfe0e DEC{NF} al, byte ptr [r22] +000000000000402C 626cf81cfe0e DECNF al, byte ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -52630,7 +52630,7 @@ Operand: 1, Acc: R-, Type: Memory, Size: 1, RawSize: 1, Encoding: M, Segment: 3, Base: 22, -0000000000004032 626cf81cfece DEC{NF} al, r22b +0000000000004032 626cf81cfece DECNF al, r22b DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -52648,7 +52648,7 @@ Operand: 0, Acc: -W, Type: Register, Size: 1, RawSize: 1, Encoding: V, RegType: General Purpose, RegSize: 1, RegId: 0, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 -0000000000004038 626c781cff0e DEC{NF} eax, dword ptr [r22] +0000000000004038 626c781cff0e DECNF eax, dword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -52667,7 +52667,7 @@ Operand: 1, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, Segment: 3, Base: 22, -000000000000403E 626c781cffce DEC{NF} eax, r22d +000000000000403E 626c781cffce DECNF eax, r22d DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -52685,7 +52685,7 @@ Operand: 0, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: V, RegType: General Purpose, RegSize: 4, RegId: 0, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 -0000000000004044 626cf81cff0e DEC{NF} rax, qword ptr [r22] +0000000000004044 626cf81cff0e DECNF rax, qword ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -52704,7 +52704,7 @@ Operand: 1, Acc: R-, Type: Memory, Size: 8, RawSize: 8, Encoding: M, Segment: 3, Base: 22, -000000000000404A 626cf81cffce DEC{NF} rax, r22 +000000000000404A 626cf81cffce DECNF rax, r22 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -52722,7 +52722,7 @@ Operand: 0, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: V, RegType: General Purpose, RegSize: 8, RegId: 0, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 -0000000000004050 626c791cff0e DEC{NF} ax, word ptr [r22] +0000000000004050 626c791cff0e DECNF ax, word ptr [r22] DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -52741,7 +52741,7 @@ Operand: 1, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, Segment: 3, Base: 22, -0000000000004056 626c791cffce DEC{NF} ax, r22w +0000000000004056 626c791cffce DECNF ax, r22w DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -52759,7 +52759,7 @@ Operand: 0, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: V, RegType: General Purpose, RegSize: 2, RegId: 0, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: General Purpose, RegSize: 2, RegId: 22, RegCount: 1 -000000000000405C 626cf91cff0e DEC{NF} rax, qword ptr [r22] +000000000000405C 626cf91cff0e DECNF rax, qword ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -52778,7 +52778,7 @@ Operand: 1, Acc: R-, Type: Memory, Size: 8, RawSize: 8, Encoding: M, Segment: 3, Base: 22, -0000000000004062 626cf91cffce DEC{NF} rax, r22 +0000000000004062 626cf91cffce DECNF rax, r22 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -53070,7 +53070,7 @@ Operand: 2, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: General Purpose, RegSize: 8, RegId: 2, RegCount: 1 Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000040B0 626c780cf636 DIV{NF} byte ptr [r22] +00000000000040B0 626c780cf636 DIVNF byte ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -53091,7 +53091,7 @@ Operand: 2, Acc: -W, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 0, RegCount: 1 Operand: 3, Acc: -W, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 4, RegCount: 1 -00000000000040B6 626c780cf6f6 DIV{NF} r22b +00000000000040B6 626c780cf6f6 DIVNF r22b DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -53111,7 +53111,7 @@ Operand: 2, Acc: -W, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 0, RegCount: 1 Operand: 3, Acc: -W, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 4, RegCount: 1 -00000000000040BC 626cf80cf636 DIV{NF} byte ptr [r22] +00000000000040BC 626cf80cf636 DIVNF byte ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -53132,7 +53132,7 @@ Operand: 2, Acc: -W, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 0, RegCount: 1 Operand: 3, Acc: -W, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 4, RegCount: 1 -00000000000040C2 626cf80cf6f6 DIV{NF} r22b +00000000000040C2 626cf80cf6f6 DIVNF r22b DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -53152,7 +53152,7 @@ Operand: 2, Acc: -W, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 0, RegCount: 1 Operand: 3, Acc: -W, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 4, RegCount: 1 -00000000000040C8 626c780cf736 DIV{NF} dword ptr [r22] +00000000000040C8 626c780cf736 DIVNF dword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -53172,7 +53172,7 @@ Operand: 1, Acc: RW, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: General Purpose, RegSize: 4, RegId: 0, RegCount: 1 Operand: 2, Acc: RW, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: General Purpose, RegSize: 4, RegId: 2, RegCount: 1 -00000000000040CE 626c780cf7f6 DIV{NF} r22d +00000000000040CE 626c780cf7f6 DIVNF r22d DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -53191,7 +53191,7 @@ Operand: 1, Acc: RW, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: General Purpose, RegSize: 4, RegId: 0, RegCount: 1 Operand: 2, Acc: RW, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: General Purpose, RegSize: 4, RegId: 2, RegCount: 1 -00000000000040D4 626cf80cf736 DIV{NF} qword ptr [r22] +00000000000040D4 626cf80cf736 DIVNF qword ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -53211,7 +53211,7 @@ Operand: 1, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: General Purpose, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: General Purpose, RegSize: 8, RegId: 2, RegCount: 1 -00000000000040DA 626cf80cf7f6 DIV{NF} r22 +00000000000040DA 626cf80cf7f6 DIVNF r22 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -53230,7 +53230,7 @@ Operand: 1, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: General Purpose, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: General Purpose, RegSize: 8, RegId: 2, RegCount: 1 -00000000000040E0 626c790cf736 DIV{NF} word ptr [r22] +00000000000040E0 626c790cf736 DIVNF word ptr [r22] DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -53250,7 +53250,7 @@ Operand: 1, Acc: RW, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: General Purpose, RegSize: 2, RegId: 0, RegCount: 1 Operand: 2, Acc: RW, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: General Purpose, RegSize: 2, RegId: 2, RegCount: 1 -00000000000040E6 626c790cf7f6 DIV{NF} r22w +00000000000040E6 626c790cf7f6 DIVNF r22w DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -53269,7 +53269,7 @@ Operand: 1, Acc: RW, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: General Purpose, RegSize: 2, RegId: 0, RegCount: 1 Operand: 2, Acc: RW, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: General Purpose, RegSize: 2, RegId: 2, RegCount: 1 -00000000000040EC 626cf90cf736 DIV{NF} qword ptr [r22] +00000000000040EC 626cf90cf736 DIVNF qword ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -53289,7 +53289,7 @@ Operand: 1, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: General Purpose, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: General Purpose, RegSize: 8, RegId: 2, RegCount: 1 -00000000000040F2 626cf90cf7f6 DIV{NF} r22 +00000000000040F2 626cf90cf7f6 DIVNF r22 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -53768,7 +53768,7 @@ Operand: 2, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: General Purpose, RegSize: 8, RegId: 2, RegCount: 1 Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000004170 626c780cf63e IDIV{NF} byte ptr [r22] +0000000000004170 626c780cf63e IDIVNF byte ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -53789,7 +53789,7 @@ Operand: 2, Acc: -W, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 0, RegCount: 1 Operand: 3, Acc: -W, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 4, RegCount: 1 -0000000000004176 626c780cf6fe IDIV{NF} r22b +0000000000004176 626c780cf6fe IDIVNF r22b DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -53809,7 +53809,7 @@ Operand: 2, Acc: -W, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 0, RegCount: 1 Operand: 3, Acc: -W, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 4, RegCount: 1 -000000000000417C 626cf80cf63e IDIV{NF} byte ptr [r22] +000000000000417C 626cf80cf63e IDIVNF byte ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -53830,7 +53830,7 @@ Operand: 2, Acc: -W, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 0, RegCount: 1 Operand: 3, Acc: -W, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 4, RegCount: 1 -0000000000004182 626cf80cf6fe IDIV{NF} r22b +0000000000004182 626cf80cf6fe IDIVNF r22b DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -53850,7 +53850,7 @@ Operand: 2, Acc: -W, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 0, RegCount: 1 Operand: 3, Acc: -W, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 4, RegCount: 1 -0000000000004188 626c780cf73e IDIV{NF} dword ptr [r22] +0000000000004188 626c780cf73e IDIVNF dword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -53870,7 +53870,7 @@ Operand: 1, Acc: RW, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: General Purpose, RegSize: 4, RegId: 0, RegCount: 1 Operand: 2, Acc: RW, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: General Purpose, RegSize: 4, RegId: 2, RegCount: 1 -000000000000418E 626c780cf7fe IDIV{NF} r22d +000000000000418E 626c780cf7fe IDIVNF r22d DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -53889,7 +53889,7 @@ Operand: 1, Acc: RW, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: General Purpose, RegSize: 4, RegId: 0, RegCount: 1 Operand: 2, Acc: RW, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: General Purpose, RegSize: 4, RegId: 2, RegCount: 1 -0000000000004194 626cf80cf73e IDIV{NF} qword ptr [r22] +0000000000004194 626cf80cf73e IDIVNF qword ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -53909,7 +53909,7 @@ Operand: 1, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: General Purpose, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: General Purpose, RegSize: 8, RegId: 2, RegCount: 1 -000000000000419A 626cf80cf7fe IDIV{NF} r22 +000000000000419A 626cf80cf7fe IDIVNF r22 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -53928,7 +53928,7 @@ Operand: 1, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: General Purpose, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: General Purpose, RegSize: 8, RegId: 2, RegCount: 1 -00000000000041A0 626c790cf73e IDIV{NF} word ptr [r22] +00000000000041A0 626c790cf73e IDIVNF word ptr [r22] DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -53948,7 +53948,7 @@ Operand: 1, Acc: RW, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: General Purpose, RegSize: 2, RegId: 0, RegCount: 1 Operand: 2, Acc: RW, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: General Purpose, RegSize: 2, RegId: 2, RegCount: 1 -00000000000041A6 626c790cf7fe IDIV{NF} r22w +00000000000041A6 626c790cf7fe IDIVNF r22w DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -53967,7 +53967,7 @@ Operand: 1, Acc: RW, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: General Purpose, RegSize: 2, RegId: 0, RegCount: 1 Operand: 2, Acc: RW, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: General Purpose, RegSize: 2, RegId: 2, RegCount: 1 -00000000000041AC 626cf90cf73e IDIV{NF} qword ptr [r22] +00000000000041AC 626cf90cf73e IDIVNF qword ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -53987,7 +53987,7 @@ Operand: 1, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: General Purpose, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: General Purpose, RegSize: 8, RegId: 2, RegCount: 1 -00000000000041B2 626cf90cf7fe IDIV{NF} r22 +00000000000041B2 626cf90cf7fe IDIVNF r22 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -54366,7 +54366,7 @@ Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -000000000000423C 626c780c691ebdbdbdbd IMUL{NF} r27d, dword ptr [r22], 0xbdbdbdbd +000000000000423C 626c780c691ebdbdbdbd IMULNF r27d, dword ptr [r22], 0xbdbdbdbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -54386,7 +54386,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 4, RawSize: 4, Encoding: I -0000000000004246 626c780c69debdbdbdbd IMUL{NF} r27d, r22d, 0xbdbdbdbd +0000000000004246 626c780c69debdbdbdbd IMULNF r27d, r22d, 0xbdbdbdbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -54405,7 +54405,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 4, RawSize: 4, Encoding: I -0000000000004250 626cf80c691ebdbdbdbd IMUL{NF} r27, qword ptr [r22], 0xbdbdbdbd +0000000000004250 626cf80c691ebdbdbdbd IMULNF r27, qword ptr [r22], 0xbdbdbdbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -54425,7 +54425,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 4, RawSize: 4, Encoding: I -000000000000425A 626cf80c69debdbdbdbd IMUL{NF} r27, r22, 0xbdbdbdbd +000000000000425A 626cf80c69debdbdbdbd IMULNF r27, r22, 0xbdbdbdbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -54444,7 +54444,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 4, RawSize: 4, Encoding: I -0000000000004264 626c790c691ebdbd IMUL{NF} r27w, word ptr [r22], 0xbdbd +0000000000004264 626c790c691ebdbd IMULNF r27w, word ptr [r22], 0xbdbd DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -54464,7 +54464,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 2, RawSize: 2, Encoding: I -000000000000426C 626c790c69debdbd IMUL{NF} r27w, r22w, 0xbdbd +000000000000426C 626c790c69debdbd IMULNF r27w, r22w, 0xbdbd DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -54483,7 +54483,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: General Purpose, RegSize: 2, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 2, RawSize: 2, Encoding: I -0000000000004274 626cf90c691ebdbdbdbd IMUL{NF} r27, qword ptr [r22], 0xbdbdbdbd +0000000000004274 626cf90c691ebdbdbdbd IMULNF r27, qword ptr [r22], 0xbdbdbdbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -54503,7 +54503,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 4, RawSize: 4, Encoding: I -000000000000427E 626cf90c69debdbdbdbd IMUL{NF} r27, r22, 0xbdbdbdbd +000000000000427E 626cf90c69debdbdbdbd IMULNF r27, r22, 0xbdbdbdbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -54522,7 +54522,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 4, RawSize: 4, Encoding: I -0000000000004288 626c780c6b1ebd IMUL{NF} r27d, dword ptr [r22], 0xbd +0000000000004288 626c780c6b1ebd IMULNF r27d, dword ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -54542,7 +54542,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -000000000000428F 626c780c6bdebd IMUL{NF} r27d, r22d, 0xbd +000000000000428F 626c780c6bdebd IMULNF r27d, r22d, 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -54561,7 +54561,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000004296 626cf80c6b1ebd IMUL{NF} r27, qword ptr [r22], 0xbd +0000000000004296 626cf80c6b1ebd IMULNF r27, qword ptr [r22], 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -54581,7 +54581,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -000000000000429D 626cf80c6bdebd IMUL{NF} r27, r22, 0xbd +000000000000429D 626cf80c6bdebd IMULNF r27, r22, 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -54600,7 +54600,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000042A4 626c790c6b1ebd IMUL{NF} r27w, word ptr [r22], 0xbd +00000000000042A4 626c790c6b1ebd IMULNF r27w, word ptr [r22], 0xbd DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -54620,7 +54620,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000042AB 626c790c6bdebd IMUL{NF} r27w, r22w, 0xbd +00000000000042AB 626c790c6bdebd IMULNF r27w, r22w, 0xbd DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -54639,7 +54639,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: General Purpose, RegSize: 2, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000042B2 626cf90c6b1ebd IMUL{NF} r27, qword ptr [r22], 0xbd +00000000000042B2 626cf90c6b1ebd IMULNF r27, qword ptr [r22], 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -54659,7 +54659,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000042B9 626cf90c6bdebd IMUL{NF} r27, r22, 0xbd +00000000000042B9 626cf90c6bdebd IMULNF r27, r22, 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -54678,7 +54678,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000042C0 626c7818691ebdbdbdbd IMUL{ZU} r27d, dword ptr [r22], 0xbdbdbdbd +00000000000042C0 626c7818691ebdbdbdbd IMULZU r27d, dword ptr [r22], 0xbdbdbdbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -54701,7 +54701,7 @@ Operand: 2, Acc: R-, Type: Immediate, Size: 4, RawSize: 4, Encoding: I Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -00000000000042CA 626c781869debdbdbdbd IMUL{ZU} r27d, r22d, 0xbdbdbdbd +00000000000042CA 626c781869debdbdbdbd IMULZU r27d, r22d, 0xbdbdbdbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -54723,7 +54723,7 @@ Operand: 2, Acc: R-, Type: Immediate, Size: 4, RawSize: 4, Encoding: I Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -00000000000042D4 626cf818691ebdbdbdbd IMUL{ZU} r27, qword ptr [r22], 0xbdbdbdbd +00000000000042D4 626cf818691ebdbdbdbd IMULZU r27, qword ptr [r22], 0xbdbdbdbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -54746,7 +54746,7 @@ Operand: 2, Acc: R-, Type: Immediate, Size: 4, RawSize: 4, Encoding: I Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000042DE 626cf81869debdbdbdbd IMUL{ZU} r27, r22, 0xbdbdbdbd +00000000000042DE 626cf81869debdbdbdbd IMULZU r27, r22, 0xbdbdbdbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -54768,7 +54768,7 @@ Operand: 2, Acc: R-, Type: Immediate, Size: 4, RawSize: 4, Encoding: I Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000042E8 626c7918691ebdbd IMUL{ZU} r27w, word ptr [r22], 0xbdbd +00000000000042E8 626c7918691ebdbd IMULZU r27w, word ptr [r22], 0xbdbd DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -54791,7 +54791,7 @@ Operand: 2, Acc: R-, Type: Immediate, Size: 2, RawSize: 2, Encoding: I Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -00000000000042F0 626c791869debdbd IMUL{ZU} r27w, r22w, 0xbdbd +00000000000042F0 626c791869debdbd IMULZU r27w, r22w, 0xbdbd DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -54813,7 +54813,7 @@ Operand: 2, Acc: R-, Type: Immediate, Size: 2, RawSize: 2, Encoding: I Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -00000000000042F8 626cf918691ebdbdbdbd IMUL{ZU} r27, qword ptr [r22], 0xbdbdbdbd +00000000000042F8 626cf918691ebdbdbdbd IMULZU r27, qword ptr [r22], 0xbdbdbdbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -54836,7 +54836,7 @@ Operand: 2, Acc: R-, Type: Immediate, Size: 4, RawSize: 4, Encoding: I Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000004302 626cf91869debdbdbdbd IMUL{ZU} r27, r22, 0xbdbdbdbd +0000000000004302 626cf91869debdbdbdbd IMULZU r27, r22, 0xbdbdbdbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -54858,7 +54858,7 @@ Operand: 2, Acc: R-, Type: Immediate, Size: 4, RawSize: 4, Encoding: I Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -000000000000430C 626c78186b1ebd IMUL{ZU} r27d, dword ptr [r22], 0xbd +000000000000430C 626c78186b1ebd IMULZU r27d, dword ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -54881,7 +54881,7 @@ Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -0000000000004313 626c78186bdebd IMUL{ZU} r27d, r22d, 0xbd +0000000000004313 626c78186bdebd IMULZU r27d, r22d, 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -54903,7 +54903,7 @@ Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I Operand: 3, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: Flags, RegSize: 4, RegId: 0, RegCount: 1 -000000000000431A 626cf8186b1ebd IMUL{ZU} r27, qword ptr [r22], 0xbd +000000000000431A 626cf8186b1ebd IMULZU r27, qword ptr [r22], 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -54926,7 +54926,7 @@ Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000004321 626cf8186bdebd IMUL{ZU} r27, r22, 0xbd +0000000000004321 626cf8186bdebd IMULZU r27, r22, 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -54948,7 +54948,7 @@ Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000004328 626c79186b1ebd IMUL{ZU} r27w, word ptr [r22], 0xbd +0000000000004328 626c79186b1ebd IMULZU r27w, word ptr [r22], 0xbd DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -54971,7 +54971,7 @@ Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -000000000000432F 626c79186bdebd IMUL{ZU} r27w, r22w, 0xbd +000000000000432F 626c79186bdebd IMULZU r27w, r22w, 0xbd DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -54993,7 +54993,7 @@ Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I Operand: 3, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: Flags, RegSize: 2, RegId: 0, RegCount: 1 -0000000000004336 626cf9186b1ebd IMUL{ZU} r27, qword ptr [r22], 0xbd +0000000000004336 626cf9186b1ebd IMULZU r27, qword ptr [r22], 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -55016,7 +55016,7 @@ Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -000000000000433D 626cf9186bdebd IMUL{ZU} r27, r22, 0xbd +000000000000433D 626cf9186bdebd IMULZU r27, r22, 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -55038,7 +55038,7 @@ Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000004344 626c781c691ebdbdbdbd IMUL{NF}{ZU} r27d, dword ptr [r22], 0xbdbdbdbd +0000000000004344 626c781c691ebdbdbdbd IMULNFZU r27d, dword ptr [r22], 0xbdbdbdbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -55058,7 +55058,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 4, RawSize: 4, Encoding: I -000000000000434E 626c781c69debdbdbdbd IMUL{NF}{ZU} r27d, r22d, 0xbdbdbdbd +000000000000434E 626c781c69debdbdbdbd IMULNFZU r27d, r22d, 0xbdbdbdbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -55077,7 +55077,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 4, RawSize: 4, Encoding: I -0000000000004358 626cf81c691ebdbdbdbd IMUL{NF}{ZU} r27, qword ptr [r22], 0xbdbdbdbd +0000000000004358 626cf81c691ebdbdbdbd IMULNFZU r27, qword ptr [r22], 0xbdbdbdbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -55097,7 +55097,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 4, RawSize: 4, Encoding: I -0000000000004362 626cf81c69debdbdbdbd IMUL{NF}{ZU} r27, r22, 0xbdbdbdbd +0000000000004362 626cf81c69debdbdbdbd IMULNFZU r27, r22, 0xbdbdbdbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -55116,7 +55116,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 4, RawSize: 4, Encoding: I -000000000000436C 626c791c691ebdbd IMUL{NF}{ZU} r27w, word ptr [r22], 0xbdbd +000000000000436C 626c791c691ebdbd IMULNFZU r27w, word ptr [r22], 0xbdbd DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -55136,7 +55136,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 2, RawSize: 2, Encoding: I -0000000000004374 626c791c69debdbd IMUL{NF}{ZU} r27w, r22w, 0xbdbd +0000000000004374 626c791c69debdbd IMULNFZU r27w, r22w, 0xbdbd DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -55155,7 +55155,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: General Purpose, RegSize: 2, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 2, RawSize: 2, Encoding: I -000000000000437C 626cf91c691ebdbdbdbd IMUL{NF}{ZU} r27, qword ptr [r22], 0xbdbdbdbd +000000000000437C 626cf91c691ebdbdbdbd IMULNFZU r27, qword ptr [r22], 0xbdbdbdbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -55175,7 +55175,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 4, RawSize: 4, Encoding: I -0000000000004386 626cf91c69debdbdbdbd IMUL{NF}{ZU} r27, r22, 0xbdbdbdbd +0000000000004386 626cf91c69debdbdbdbd IMULNFZU r27, r22, 0xbdbdbdbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -55194,7 +55194,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 4, RawSize: 4, Encoding: I -0000000000004390 626c781c6b1ebd IMUL{NF}{ZU} r27d, dword ptr [r22], 0xbd +0000000000004390 626c781c6b1ebd IMULNFZU r27d, dword ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -55214,7 +55214,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000004397 626c781c6bdebd IMUL{NF}{ZU} r27d, r22d, 0xbd +0000000000004397 626c781c6bdebd IMULNFZU r27d, r22d, 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -55233,7 +55233,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -000000000000439E 626cf81c6b1ebd IMUL{NF}{ZU} r27, qword ptr [r22], 0xbd +000000000000439E 626cf81c6b1ebd IMULNFZU r27, qword ptr [r22], 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -55253,7 +55253,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000043A5 626cf81c6bdebd IMUL{NF}{ZU} r27, r22, 0xbd +00000000000043A5 626cf81c6bdebd IMULNFZU r27, r22, 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -55272,7 +55272,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000043AC 626c791c6b1ebd IMUL{NF}{ZU} r27w, word ptr [r22], 0xbd +00000000000043AC 626c791c6b1ebd IMULNFZU r27w, word ptr [r22], 0xbd DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -55292,7 +55292,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000043B3 626c791c6bdebd IMUL{NF}{ZU} r27w, r22w, 0xbd +00000000000043B3 626c791c6bdebd IMULNFZU r27w, r22w, 0xbd DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -55311,7 +55311,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: General Purpose, RegSize: 2, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000043BA 626cf91c6b1ebd IMUL{NF}{ZU} r27, qword ptr [r22], 0xbd +00000000000043BA 626cf91c6b1ebd IMULNFZU r27, qword ptr [r22], 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -55331,7 +55331,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000043C1 626cf91c6bdebd IMUL{NF}{ZU} r27, r22, 0xbd +00000000000043C1 626cf91c6bdebd IMULNFZU r27, r22, 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -55792,7 +55792,7 @@ Operand: 2, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: General Purpose, RegSize: 8, RegId: 2, RegCount: 1 Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000004440 626c780caf1e IMUL{NF} r27d, dword ptr [r22] +0000000000004440 626c780caf1e IMULNF r27d, dword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -55811,7 +55811,7 @@ Operand: 1, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, Segment: 3, Base: 22, -0000000000004446 626c780cafde IMUL{NF} r27d, r22d +0000000000004446 626c780cafde IMULNF r27d, r22d DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -55829,7 +55829,7 @@ Operand: 0, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 27, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 -000000000000444C 626cf80caf1e IMUL{NF} r27, qword ptr [r22] +000000000000444C 626cf80caf1e IMULNF r27, qword ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -55848,7 +55848,7 @@ Operand: 1, Acc: R-, Type: Memory, Size: 8, RawSize: 8, Encoding: M, Segment: 3, Base: 22, -0000000000004452 626cf80cafde IMUL{NF} r27, r22 +0000000000004452 626cf80cafde IMULNF r27, r22 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -55866,7 +55866,7 @@ Operand: 0, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 27, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 -0000000000004458 626c790caf1e IMUL{NF} r27w, word ptr [r22] +0000000000004458 626c790caf1e IMULNF r27w, word ptr [r22] DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -55885,7 +55885,7 @@ Operand: 1, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, Segment: 3, Base: 22, -000000000000445E 626c790cafde IMUL{NF} r27w, r22w +000000000000445E 626c790cafde IMULNF r27w, r22w DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -55903,7 +55903,7 @@ Operand: 0, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: R, RegType: General Purpose, RegSize: 2, RegId: 27, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: General Purpose, RegSize: 2, RegId: 22, RegCount: 1 -0000000000004464 626cf90caf1e IMUL{NF} r27, qword ptr [r22] +0000000000004464 626cf90caf1e IMULNF r27, qword ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -55922,7 +55922,7 @@ Operand: 1, Acc: R-, Type: Memory, Size: 8, RawSize: 8, Encoding: M, Segment: 3, Base: 22, -000000000000446A 626cf90cafde IMUL{NF} r27, r22 +000000000000446A 626cf90cafde IMULNF r27, r22 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -55940,7 +55940,7 @@ Operand: 0, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 27, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 -0000000000004470 626c780cf62e IMUL{NF} byte ptr [r22] +0000000000004470 626c780cf62e IMULNF byte ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -55960,7 +55960,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 0, RegCount: 1 Operand: 2, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: General Purpose, RegSize: 2, RegId: 0, RegCount: 1 -0000000000004476 626c780cf6ee IMUL{NF} r22b +0000000000004476 626c780cf6ee IMULNF r22b DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -55979,7 +55979,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 0, RegCount: 1 Operand: 2, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: General Purpose, RegSize: 2, RegId: 0, RegCount: 1 -000000000000447C 626cf80cf62e IMUL{NF} byte ptr [r22] +000000000000447C 626cf80cf62e IMULNF byte ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -55999,7 +55999,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 0, RegCount: 1 Operand: 2, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: General Purpose, RegSize: 2, RegId: 0, RegCount: 1 -0000000000004482 626cf80cf6ee IMUL{NF} r22b +0000000000004482 626cf80cf6ee IMULNF r22b DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -56018,7 +56018,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 0, RegCount: 1 Operand: 2, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: General Purpose, RegSize: 2, RegId: 0, RegCount: 1 -0000000000004488 626c780cf72e IMUL{NF} dword ptr [r22] +0000000000004488 626c780cf72e IMULNF dword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -56038,7 +56038,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: General Purpose, RegSize: 4, RegId: 0, RegCount: 1 Operand: 2, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: General Purpose, RegSize: 4, RegId: 2, RegCount: 1 -000000000000448E 626c780cf7ee IMUL{NF} r22d +000000000000448E 626c780cf7ee IMULNF r22d DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -56057,7 +56057,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: General Purpose, RegSize: 4, RegId: 0, RegCount: 1 Operand: 2, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: General Purpose, RegSize: 4, RegId: 2, RegCount: 1 -0000000000004494 626cf80cf72e IMUL{NF} qword ptr [r22] +0000000000004494 626cf80cf72e IMULNF qword ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -56077,7 +56077,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: General Purpose, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: General Purpose, RegSize: 8, RegId: 2, RegCount: 1 -000000000000449A 626cf80cf7ee IMUL{NF} r22 +000000000000449A 626cf80cf7ee IMULNF r22 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -56096,7 +56096,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: General Purpose, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: General Purpose, RegSize: 8, RegId: 2, RegCount: 1 -00000000000044A0 626c790cf72e IMUL{NF} word ptr [r22] +00000000000044A0 626c790cf72e IMULNF word ptr [r22] DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -56116,7 +56116,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: General Purpose, RegSize: 2, RegId: 0, RegCount: 1 Operand: 2, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: General Purpose, RegSize: 2, RegId: 2, RegCount: 1 -00000000000044A6 626c790cf7ee IMUL{NF} r22w +00000000000044A6 626c790cf7ee IMULNF r22w DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -56135,7 +56135,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: General Purpose, RegSize: 2, RegId: 0, RegCount: 1 Operand: 2, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: General Purpose, RegSize: 2, RegId: 2, RegCount: 1 -00000000000044AC 626cf90cf72e IMUL{NF} qword ptr [r22] +00000000000044AC 626cf90cf72e IMULNF qword ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -56155,7 +56155,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: General Purpose, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: General Purpose, RegSize: 8, RegId: 2, RegCount: 1 -00000000000044B2 626cf90cf7ee IMUL{NF} r22 +00000000000044B2 626cf90cf7ee IMULNF r22 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -56354,7 +56354,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000044E8 626c781caf1e IMUL{NF} eax, r27d, dword ptr [r22] +00000000000044E8 626c781caf1e IMULNF eax, r27d, dword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -56374,7 +56374,7 @@ Operand: 2, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, Segment: 3, Base: 22, -00000000000044EE 626c781cafde IMUL{NF} eax, r27d, r22d +00000000000044EE 626c781cafde IMULNF eax, r27d, r22d DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -56393,7 +56393,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 27, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 -00000000000044F4 626cf81caf1e IMUL{NF} rax, r27, qword ptr [r22] +00000000000044F4 626cf81caf1e IMULNF rax, r27, qword ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -56413,7 +56413,7 @@ Operand: 2, Acc: R-, Type: Memory, Size: 8, RawSize: 8, Encoding: M, Segment: 3, Base: 22, -00000000000044FA 626cf81cafde IMUL{NF} rax, r27, r22 +00000000000044FA 626cf81cafde IMULNF rax, r27, r22 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -56432,7 +56432,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 27, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 -0000000000004500 626c791caf1e IMUL{NF} ax, r27w, word ptr [r22] +0000000000004500 626c791caf1e IMULNF ax, r27w, word ptr [r22] DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -56452,7 +56452,7 @@ Operand: 2, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, Segment: 3, Base: 22, -0000000000004506 626c791cafde IMUL{NF} ax, r27w, r22w +0000000000004506 626c791cafde IMULNF ax, r27w, r22w DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -56471,7 +56471,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: R, RegType: General Purpose, RegSize: 2, RegId: 27, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: General Purpose, RegSize: 2, RegId: 22, RegCount: 1 -000000000000450C 626cf91caf1e IMUL{NF} rax, r27, qword ptr [r22] +000000000000450C 626cf91caf1e IMULNF rax, r27, qword ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -56491,7 +56491,7 @@ Operand: 2, Acc: R-, Type: Memory, Size: 8, RawSize: 8, Encoding: M, Segment: 3, Base: 22, -0000000000004512 626cf91cafde IMUL{NF} rax, r27, r22 +0000000000004512 626cf91cafde IMULNF rax, r27, r22 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -56756,7 +56756,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 1, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000004560 626c780cfe06 INC{NF} byte ptr [r22] +0000000000004560 626c780cfe06 INCNF byte ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -56774,7 +56774,7 @@ Operand: 0, Acc: RW, Type: Memory, Size: 1, RawSize: 1, Encoding: M, Segment: 3, Base: 22, -0000000000004566 626c780cfec6 INC{NF} r22b +0000000000004566 626c780cfec6 INCNF r22b DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -56791,7 +56791,7 @@ BND: no, BHINT: no, DNT: no Operand: 0, Acc: RW, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 -000000000000456C 626cf80cfe06 INC{NF} byte ptr [r22] +000000000000456C 626cf80cfe06 INCNF byte ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -56809,7 +56809,7 @@ Operand: 0, Acc: RW, Type: Memory, Size: 1, RawSize: 1, Encoding: M, Segment: 3, Base: 22, -0000000000004572 626cf80cfec6 INC{NF} r22b +0000000000004572 626cf80cfec6 INCNF r22b DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -56826,7 +56826,7 @@ BND: no, BHINT: no, DNT: no Operand: 0, Acc: RW, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 -0000000000004578 626c780cff06 INC{NF} dword ptr [r22] +0000000000004578 626c780cff06 INCNF dword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -56844,7 +56844,7 @@ Operand: 0, Acc: RW, Type: Memory, Size: 4, RawSize: 4, Encoding: M, Segment: 3, Base: 22, -000000000000457E 626c780cffc6 INC{NF} r22d +000000000000457E 626c780cffc6 INCNF r22d DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -56861,7 +56861,7 @@ BND: no, BHINT: no, DNT: no Operand: 0, Acc: RW, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 -0000000000004584 626cf80cff06 INC{NF} qword ptr [r22] +0000000000004584 626cf80cff06 INCNF qword ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -56879,7 +56879,7 @@ Operand: 0, Acc: RW, Type: Memory, Size: 8, RawSize: 8, Encoding: M, Segment: 3, Base: 22, -000000000000458A 626cf80cffc6 INC{NF} r22 +000000000000458A 626cf80cffc6 INCNF r22 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -56896,7 +56896,7 @@ BND: no, BHINT: no, DNT: no Operand: 0, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 -0000000000004590 626c790cff06 INC{NF} word ptr [r22] +0000000000004590 626c790cff06 INCNF word ptr [r22] DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -56914,7 +56914,7 @@ Operand: 0, Acc: RW, Type: Memory, Size: 2, RawSize: 2, Encoding: M, Segment: 3, Base: 22, -0000000000004596 626c790cffc6 INC{NF} r22w +0000000000004596 626c790cffc6 INCNF r22w DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -56931,7 +56931,7 @@ BND: no, BHINT: no, DNT: no Operand: 0, Acc: RW, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: General Purpose, RegSize: 2, RegId: 22, RegCount: 1 -000000000000459C 626cf90cff06 INC{NF} qword ptr [r22] +000000000000459C 626cf90cff06 INCNF qword ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -56949,7 +56949,7 @@ Operand: 0, Acc: RW, Type: Memory, Size: 8, RawSize: 8, Encoding: M, Segment: 3, Base: 22, -00000000000045A2 626cf90cffc6 INC{NF} r22 +00000000000045A2 626cf90cffc6 INCNF r22 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -57224,7 +57224,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 2, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000045F0 626c781cfe06 INC{NF} al, byte ptr [r22] +00000000000045F0 626c781cfe06 INCNF al, byte ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -57243,7 +57243,7 @@ Operand: 1, Acc: R-, Type: Memory, Size: 1, RawSize: 1, Encoding: M, Segment: 3, Base: 22, -00000000000045F6 626c781cfec6 INC{NF} al, r22b +00000000000045F6 626c781cfec6 INCNF al, r22b DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -57261,7 +57261,7 @@ Operand: 0, Acc: -W, Type: Register, Size: 1, RawSize: 1, Encoding: V, RegType: General Purpose, RegSize: 1, RegId: 0, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 -00000000000045FC 626cf81cfe06 INC{NF} al, byte ptr [r22] +00000000000045FC 626cf81cfe06 INCNF al, byte ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -57280,7 +57280,7 @@ Operand: 1, Acc: R-, Type: Memory, Size: 1, RawSize: 1, Encoding: M, Segment: 3, Base: 22, -0000000000004602 626cf81cfec6 INC{NF} al, r22b +0000000000004602 626cf81cfec6 INCNF al, r22b DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -57298,7 +57298,7 @@ Operand: 0, Acc: -W, Type: Register, Size: 1, RawSize: 1, Encoding: V, RegType: General Purpose, RegSize: 1, RegId: 0, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 -0000000000004608 626c781cff06 INC{NF} eax, dword ptr [r22] +0000000000004608 626c781cff06 INCNF eax, dword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -57317,7 +57317,7 @@ Operand: 1, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, Segment: 3, Base: 22, -000000000000460E 626c781cffc6 INC{NF} eax, r22d +000000000000460E 626c781cffc6 INCNF eax, r22d DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -57335,7 +57335,7 @@ Operand: 0, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: V, RegType: General Purpose, RegSize: 4, RegId: 0, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 -0000000000004614 626cf81cff06 INC{NF} rax, qword ptr [r22] +0000000000004614 626cf81cff06 INCNF rax, qword ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -57354,7 +57354,7 @@ Operand: 1, Acc: R-, Type: Memory, Size: 8, RawSize: 8, Encoding: M, Segment: 3, Base: 22, -000000000000461A 626cf81cffc6 INC{NF} rax, r22 +000000000000461A 626cf81cffc6 INCNF rax, r22 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -57372,7 +57372,7 @@ Operand: 0, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: V, RegType: General Purpose, RegSize: 8, RegId: 0, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 -0000000000004620 626c791cff06 INC{NF} ax, word ptr [r22] +0000000000004620 626c791cff06 INCNF ax, word ptr [r22] DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -57391,7 +57391,7 @@ Operand: 1, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, Segment: 3, Base: 22, -0000000000004626 626c791cffc6 INC{NF} ax, r22w +0000000000004626 626c791cffc6 INCNF ax, r22w DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -57409,7 +57409,7 @@ Operand: 0, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: V, RegType: General Purpose, RegSize: 2, RegId: 0, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: General Purpose, RegSize: 2, RegId: 22, RegCount: 1 -000000000000462C 626cf91cff06 INC{NF} rax, qword ptr [r22] +000000000000462C 626cf91cff06 INCNF rax, qword ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -57428,7 +57428,7 @@ Operand: 1, Acc: R-, Type: Memory, Size: 8, RawSize: 8, Encoding: M, Segment: 3, Base: 22, -0000000000004632 626cf91cffc6 INC{NF} rax, r22 +0000000000004632 626cf91cffc6 INCNF rax, r22 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -58130,7 +58130,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 2, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -000000000000470A 626c780cf51e LZCNT{NF} r27d, dword ptr [r22] +000000000000470A 626c780cf51e LZCNTNF r27d, dword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LZCNT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -58149,7 +58149,7 @@ Operand: 1, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, Segment: 3, Base: 22, -0000000000004710 626c780cf5de LZCNT{NF} r27d, r22d +0000000000004710 626c780cf5de LZCNTNF r27d, r22d DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LZCNT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -58167,7 +58167,7 @@ Operand: 0, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 27, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 -0000000000004716 626cf80cf51e LZCNT{NF} r27, qword ptr [r22] +0000000000004716 626cf80cf51e LZCNTNF r27, qword ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LZCNT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -58186,7 +58186,7 @@ Operand: 1, Acc: R-, Type: Memory, Size: 8, RawSize: 8, Encoding: M, Segment: 3, Base: 22, -000000000000471C 626cf80cf5de LZCNT{NF} r27, r22 +000000000000471C 626cf80cf5de LZCNTNF r27, r22 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LZCNT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -58204,7 +58204,7 @@ Operand: 0, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 27, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 -0000000000004722 626c790cf51e LZCNT{NF} r27w, word ptr [r22] +0000000000004722 626c790cf51e LZCNTNF r27w, word ptr [r22] DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LZCNT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -58223,7 +58223,7 @@ Operand: 1, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, Segment: 3, Base: 22, -0000000000004728 626c790cf5de LZCNT{NF} r27w, r22w +0000000000004728 626c790cf5de LZCNTNF r27w, r22w DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LZCNT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -58241,7 +58241,7 @@ Operand: 0, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: R, RegType: General Purpose, RegSize: 2, RegId: 27, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: General Purpose, RegSize: 2, RegId: 22, RegCount: 1 -000000000000472E 626cf90cf51e LZCNT{NF} r27, qword ptr [r22] +000000000000472E 626cf90cf51e LZCNTNF r27, qword ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LZCNT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -58260,7 +58260,7 @@ Operand: 1, Acc: R-, Type: Memory, Size: 8, RawSize: 8, Encoding: M, Segment: 3, Base: 22, -0000000000004734 626cf90cf5de LZCNT{NF} r27, r22 +0000000000004734 626cf90cf5de LZCNTNF r27, r22 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LZCNT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -58922,7 +58922,7 @@ Operand: 2, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: General Purpose, RegSize: 8, RegId: 2, RegCount: 1 Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000047FA 626c780cf626 MUL{NF} byte ptr [r22] +00000000000047FA 626c780cf626 MULNF byte ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -58942,7 +58942,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 0, RegCount: 1 Operand: 2, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: General Purpose, RegSize: 2, RegId: 0, RegCount: 1 -0000000000004800 626c780cf6e6 MUL{NF} r22b +0000000000004800 626c780cf6e6 MULNF r22b DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -58961,7 +58961,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 0, RegCount: 1 Operand: 2, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: General Purpose, RegSize: 2, RegId: 0, RegCount: 1 -0000000000004806 626cf80cf626 MUL{NF} byte ptr [r22] +0000000000004806 626cf80cf626 MULNF byte ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -58981,7 +58981,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 0, RegCount: 1 Operand: 2, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: General Purpose, RegSize: 2, RegId: 0, RegCount: 1 -000000000000480C 626cf80cf6e6 MUL{NF} r22b +000000000000480C 626cf80cf6e6 MULNF r22b DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -59000,7 +59000,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 0, RegCount: 1 Operand: 2, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: General Purpose, RegSize: 2, RegId: 0, RegCount: 1 -0000000000004812 626c780cf726 MUL{NF} dword ptr [r22] +0000000000004812 626c780cf726 MULNF dword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -59020,7 +59020,7 @@ Operand: 1, Acc: RW, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: General Purpose, RegSize: 4, RegId: 0, RegCount: 1 Operand: 2, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: General Purpose, RegSize: 4, RegId: 2, RegCount: 1 -0000000000004818 626c780cf7e6 MUL{NF} r22d +0000000000004818 626c780cf7e6 MULNF r22d DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -59039,7 +59039,7 @@ Operand: 1, Acc: RW, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: General Purpose, RegSize: 4, RegId: 0, RegCount: 1 Operand: 2, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: S, RegType: General Purpose, RegSize: 4, RegId: 2, RegCount: 1 -000000000000481E 626cf80cf726 MUL{NF} qword ptr [r22] +000000000000481E 626cf80cf726 MULNF qword ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -59059,7 +59059,7 @@ Operand: 1, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: General Purpose, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: General Purpose, RegSize: 8, RegId: 2, RegCount: 1 -0000000000004824 626cf80cf7e6 MUL{NF} r22 +0000000000004824 626cf80cf7e6 MULNF r22 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -59078,7 +59078,7 @@ Operand: 1, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: General Purpose, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: General Purpose, RegSize: 8, RegId: 2, RegCount: 1 -000000000000482A 626c790cf726 MUL{NF} word ptr [r22] +000000000000482A 626c790cf726 MULNF word ptr [r22] DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -59098,7 +59098,7 @@ Operand: 1, Acc: RW, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: General Purpose, RegSize: 2, RegId: 0, RegCount: 1 Operand: 2, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: General Purpose, RegSize: 2, RegId: 2, RegCount: 1 -0000000000004830 626c790cf7e6 MUL{NF} r22w +0000000000004830 626c790cf7e6 MULNF r22w DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -59117,7 +59117,7 @@ Operand: 1, Acc: RW, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: General Purpose, RegSize: 2, RegId: 0, RegCount: 1 Operand: 2, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: S, RegType: General Purpose, RegSize: 2, RegId: 2, RegCount: 1 -0000000000004836 626cf90cf726 MUL{NF} qword ptr [r22] +0000000000004836 626cf90cf726 MULNF qword ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -59137,7 +59137,7 @@ Operand: 1, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: General Purpose, RegSize: 8, RegId: 0, RegCount: 1 Operand: 2, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: General Purpose, RegSize: 8, RegId: 2, RegCount: 1 -000000000000483C 626cf90cf7e6 MUL{NF} r22 +000000000000483C 626cf90cf7e6 MULNF r22 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -59484,7 +59484,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 1, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000048A2 626c780cf61e NEG{NF} byte ptr [r22] +00000000000048A2 626c780cf61e NEGNF byte ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -59502,7 +59502,7 @@ Operand: 0, Acc: RW, Type: Memory, Size: 1, RawSize: 1, Encoding: M, Segment: 3, Base: 22, -00000000000048A8 626c780cf6de NEG{NF} r22b +00000000000048A8 626c780cf6de NEGNF r22b DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -59519,7 +59519,7 @@ BND: no, BHINT: no, DNT: no Operand: 0, Acc: RW, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 -00000000000048AE 626cf80cf61e NEG{NF} byte ptr [r22] +00000000000048AE 626cf80cf61e NEGNF byte ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -59537,7 +59537,7 @@ Operand: 0, Acc: RW, Type: Memory, Size: 1, RawSize: 1, Encoding: M, Segment: 3, Base: 22, -00000000000048B4 626cf80cf6de NEG{NF} r22b +00000000000048B4 626cf80cf6de NEGNF r22b DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -59554,7 +59554,7 @@ BND: no, BHINT: no, DNT: no Operand: 0, Acc: RW, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 -00000000000048BA 626c780cf71e NEG{NF} dword ptr [r22] +00000000000048BA 626c780cf71e NEGNF dword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -59572,7 +59572,7 @@ Operand: 0, Acc: RW, Type: Memory, Size: 4, RawSize: 4, Encoding: M, Segment: 3, Base: 22, -00000000000048C0 626c780cf7de NEG{NF} r22d +00000000000048C0 626c780cf7de NEGNF r22d DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -59589,7 +59589,7 @@ BND: no, BHINT: no, DNT: no Operand: 0, Acc: RW, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 -00000000000048C6 626cf80cf71e NEG{NF} qword ptr [r22] +00000000000048C6 626cf80cf71e NEGNF qword ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -59607,7 +59607,7 @@ Operand: 0, Acc: RW, Type: Memory, Size: 8, RawSize: 8, Encoding: M, Segment: 3, Base: 22, -00000000000048CC 626cf80cf7de NEG{NF} r22 +00000000000048CC 626cf80cf7de NEGNF r22 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -59624,7 +59624,7 @@ BND: no, BHINT: no, DNT: no Operand: 0, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 -00000000000048D2 626c790cf71e NEG{NF} word ptr [r22] +00000000000048D2 626c790cf71e NEGNF word ptr [r22] DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -59642,7 +59642,7 @@ Operand: 0, Acc: RW, Type: Memory, Size: 2, RawSize: 2, Encoding: M, Segment: 3, Base: 22, -00000000000048D8 626c790cf7de NEG{NF} r22w +00000000000048D8 626c790cf7de NEGNF r22w DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -59659,7 +59659,7 @@ BND: no, BHINT: no, DNT: no Operand: 0, Acc: RW, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: General Purpose, RegSize: 2, RegId: 22, RegCount: 1 -00000000000048DE 626cf90cf71e NEG{NF} qword ptr [r22] +00000000000048DE 626cf90cf71e NEGNF qword ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -59677,7 +59677,7 @@ Operand: 0, Acc: RW, Type: Memory, Size: 8, RawSize: 8, Encoding: M, Segment: 3, Base: 22, -00000000000048E4 626cf90cf7de NEG{NF} r22 +00000000000048E4 626cf90cf7de NEGNF r22 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -59952,7 +59952,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 2, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000004932 626c781cf61e NEG{NF} al, byte ptr [r22] +0000000000004932 626c781cf61e NEGNF al, byte ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -59971,7 +59971,7 @@ Operand: 1, Acc: R-, Type: Memory, Size: 1, RawSize: 1, Encoding: M, Segment: 3, Base: 22, -0000000000004938 626c781cf6de NEG{NF} al, r22b +0000000000004938 626c781cf6de NEGNF al, r22b DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -59989,7 +59989,7 @@ Operand: 0, Acc: -W, Type: Register, Size: 1, RawSize: 1, Encoding: V, RegType: General Purpose, RegSize: 1, RegId: 0, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 -000000000000493E 626cf81cf61e NEG{NF} al, byte ptr [r22] +000000000000493E 626cf81cf61e NEGNF al, byte ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -60008,7 +60008,7 @@ Operand: 1, Acc: R-, Type: Memory, Size: 1, RawSize: 1, Encoding: M, Segment: 3, Base: 22, -0000000000004944 626cf81cf6de NEG{NF} al, r22b +0000000000004944 626cf81cf6de NEGNF al, r22b DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -60026,7 +60026,7 @@ Operand: 0, Acc: -W, Type: Register, Size: 1, RawSize: 1, Encoding: V, RegType: General Purpose, RegSize: 1, RegId: 0, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 -000000000000494A 626c781cf71e NEG{NF} eax, dword ptr [r22] +000000000000494A 626c781cf71e NEGNF eax, dword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -60045,7 +60045,7 @@ Operand: 1, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, Segment: 3, Base: 22, -0000000000004950 626c781cf7de NEG{NF} eax, r22d +0000000000004950 626c781cf7de NEGNF eax, r22d DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -60063,7 +60063,7 @@ Operand: 0, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: V, RegType: General Purpose, RegSize: 4, RegId: 0, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 -0000000000004956 626cf81cf71e NEG{NF} rax, qword ptr [r22] +0000000000004956 626cf81cf71e NEGNF rax, qword ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -60082,7 +60082,7 @@ Operand: 1, Acc: R-, Type: Memory, Size: 8, RawSize: 8, Encoding: M, Segment: 3, Base: 22, -000000000000495C 626cf81cf7de NEG{NF} rax, r22 +000000000000495C 626cf81cf7de NEGNF rax, r22 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -60100,7 +60100,7 @@ Operand: 0, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: V, RegType: General Purpose, RegSize: 8, RegId: 0, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 -0000000000004962 626c791cf71e NEG{NF} ax, word ptr [r22] +0000000000004962 626c791cf71e NEGNF ax, word ptr [r22] DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -60119,7 +60119,7 @@ Operand: 1, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, Segment: 3, Base: 22, -0000000000004968 626c791cf7de NEG{NF} ax, r22w +0000000000004968 626c791cf7de NEGNF ax, r22w DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -60137,7 +60137,7 @@ Operand: 0, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: V, RegType: General Purpose, RegSize: 2, RegId: 0, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: General Purpose, RegSize: 2, RegId: 22, RegCount: 1 -000000000000496E 626cf91cf71e NEG{NF} rax, qword ptr [r22] +000000000000496E 626cf91cf71e NEGNF rax, qword ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -60156,7 +60156,7 @@ Operand: 1, Acc: R-, Type: Memory, Size: 8, RawSize: 8, Encoding: M, Segment: 3, Base: 22, -0000000000004974 626cf91cf7de NEG{NF} rax, r22 +0000000000004974 626cf91cf7de NEGNF rax, r22 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -61552,7 +61552,7 @@ Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I Operand: 2, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000004B3A 626c780c081e OR{NF} byte ptr [r22], r27b +0000000000004B3A 626c780c081e ORNF byte ptr [r22], r27b DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -61571,7 +61571,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: R, RegType: General Purpose, RegSize: 1, RegId: 27, RegCount: 1 -0000000000004B40 626c780c08de OR{NF} r22b, r27b +0000000000004B40 626c780c08de ORNF r22b, r27b DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -61589,7 +61589,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: R, RegType: General Purpose, RegSize: 1, RegId: 27, RegCount: 1 -0000000000004B46 626cf80c081e OR{NF} byte ptr [r22], r27b +0000000000004B46 626cf80c081e ORNF byte ptr [r22], r27b DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -61608,7 +61608,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: R, RegType: General Purpose, RegSize: 1, RegId: 27, RegCount: 1 -0000000000004B4C 626cf80c08de OR{NF} r22b, r27b +0000000000004B4C 626cf80c08de ORNF r22b, r27b DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -61626,7 +61626,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: R, RegType: General Purpose, RegSize: 1, RegId: 27, RegCount: 1 -0000000000004B52 626c780c091e OR{NF} dword ptr [r22], r27d +0000000000004B52 626c780c091e ORNF dword ptr [r22], r27d DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -61645,7 +61645,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 27, RegCount: 1 -0000000000004B58 626c780c09de OR{NF} r22d, r27d +0000000000004B58 626c780c09de ORNF r22d, r27d DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -61663,7 +61663,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 27, RegCount: 1 -0000000000004B5E 626cf80c091e OR{NF} qword ptr [r22], r27 +0000000000004B5E 626cf80c091e ORNF qword ptr [r22], r27 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -61682,7 +61682,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 27, RegCount: 1 -0000000000004B64 626cf80c09de OR{NF} r22, r27 +0000000000004B64 626cf80c09de ORNF r22, r27 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -61700,7 +61700,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 27, RegCount: 1 -0000000000004B6A 626c790c091e OR{NF} word ptr [r22], r27w +0000000000004B6A 626c790c091e ORNF word ptr [r22], r27w DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -61719,7 +61719,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: R, RegType: General Purpose, RegSize: 2, RegId: 27, RegCount: 1 -0000000000004B70 626c790c09de OR{NF} r22w, r27w +0000000000004B70 626c790c09de ORNF r22w, r27w DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -61737,7 +61737,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: General Purpose, RegSize: 2, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: R, RegType: General Purpose, RegSize: 2, RegId: 27, RegCount: 1 -0000000000004B76 626cf90c091e OR{NF} qword ptr [r22], r27 +0000000000004B76 626cf90c091e ORNF qword ptr [r22], r27 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -61756,7 +61756,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 27, RegCount: 1 -0000000000004B7C 626cf90c09de OR{NF} r22, r27 +0000000000004B7C 626cf90c09de ORNF r22, r27 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -61774,7 +61774,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 27, RegCount: 1 -0000000000004B82 626c780c0a1e OR{NF} r27b, byte ptr [r22] +0000000000004B82 626c780c0a1e ORNF r27b, byte ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -61793,7 +61793,7 @@ Operand: 1, Acc: R-, Type: Memory, Size: 1, RawSize: 1, Encoding: M, Segment: 3, Base: 22, -0000000000004B88 626c780c0ade OR{NF} r27b, r22b +0000000000004B88 626c780c0ade ORNF r27b, r22b DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -61811,7 +61811,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 1, RawSize: 1, Encoding: R, RegType: General Purpose, RegSize: 1, RegId: 27, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 -0000000000004B8E 626cf80c0a1e OR{NF} r27b, byte ptr [r22] +0000000000004B8E 626cf80c0a1e ORNF r27b, byte ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -61830,7 +61830,7 @@ Operand: 1, Acc: R-, Type: Memory, Size: 1, RawSize: 1, Encoding: M, Segment: 3, Base: 22, -0000000000004B94 626cf80c0ade OR{NF} r27b, r22b +0000000000004B94 626cf80c0ade ORNF r27b, r22b DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -61848,7 +61848,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 1, RawSize: 1, Encoding: R, RegType: General Purpose, RegSize: 1, RegId: 27, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 -0000000000004B9A 626c780c0b1e OR{NF} r27d, dword ptr [r22] +0000000000004B9A 626c780c0b1e ORNF r27d, dword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -61867,7 +61867,7 @@ Operand: 1, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, Segment: 3, Base: 22, -0000000000004BA0 626c780c0bde OR{NF} r27d, r22d +0000000000004BA0 626c780c0bde ORNF r27d, r22d DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -61885,7 +61885,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 27, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 -0000000000004BA6 626cf80c0b1e OR{NF} r27, qword ptr [r22] +0000000000004BA6 626cf80c0b1e ORNF r27, qword ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -61904,7 +61904,7 @@ Operand: 1, Acc: R-, Type: Memory, Size: 8, RawSize: 8, Encoding: M, Segment: 3, Base: 22, -0000000000004BAC 626cf80c0bde OR{NF} r27, r22 +0000000000004BAC 626cf80c0bde ORNF r27, r22 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -61922,7 +61922,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 27, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 -0000000000004BB2 626c790c0b1e OR{NF} r27w, word ptr [r22] +0000000000004BB2 626c790c0b1e ORNF r27w, word ptr [r22] DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -61941,7 +61941,7 @@ Operand: 1, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, Segment: 3, Base: 22, -0000000000004BB8 626c790c0bde OR{NF} r27w, r22w +0000000000004BB8 626c790c0bde ORNF r27w, r22w DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -61959,7 +61959,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 2, RawSize: 2, Encoding: R, RegType: General Purpose, RegSize: 2, RegId: 27, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: General Purpose, RegSize: 2, RegId: 22, RegCount: 1 -0000000000004BBE 626cf90c0b1e OR{NF} r27, qword ptr [r22] +0000000000004BBE 626cf90c0b1e ORNF r27, qword ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -61978,7 +61978,7 @@ Operand: 1, Acc: R-, Type: Memory, Size: 8, RawSize: 8, Encoding: M, Segment: 3, Base: 22, -0000000000004BC4 626cf90c0bde OR{NF} r27, r22 +0000000000004BC4 626cf90c0bde ORNF r27, r22 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -61996,7 +61996,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 27, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 -0000000000004BCA 626c780c800ebd OR{NF} byte ptr [r22], 0xbd +0000000000004BCA 626c780c800ebd ORNF byte ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -62015,7 +62015,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000004BD1 626c780c80cebd OR{NF} r22b, 0xbd +0000000000004BD1 626c780c80cebd ORNF r22b, 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -62033,7 +62033,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000004BD8 626cf80c800ebd OR{NF} byte ptr [r22], 0xbd +0000000000004BD8 626cf80c800ebd ORNF byte ptr [r22], 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -62052,7 +62052,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000004BDF 626cf80c80cebd OR{NF} r22b, 0xbd +0000000000004BDF 626cf80c80cebd ORNF r22b, 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -62070,7 +62070,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000004BE6 626c780c810ebdbdbdbd OR{NF} dword ptr [r22], 0xbdbdbdbd +0000000000004BE6 626c780c810ebdbdbdbd ORNF dword ptr [r22], 0xbdbdbdbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -62089,7 +62089,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Immediate, Size: 4, RawSize: 4, Encoding: I -0000000000004BF0 626c780c81cebdbdbdbd OR{NF} r22d, 0xbdbdbdbd +0000000000004BF0 626c780c81cebdbdbdbd ORNF r22d, 0xbdbdbdbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -62107,7 +62107,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Immediate, Size: 4, RawSize: 4, Encoding: I -0000000000004BFA 626cf80c810ebdbdbdbd OR{NF} qword ptr [r22], 0xbdbdbdbd +0000000000004BFA 626cf80c810ebdbdbdbd ORNF qword ptr [r22], 0xbdbdbdbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -62126,7 +62126,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Immediate, Size: 4, RawSize: 4, Encoding: I -0000000000004C04 626cf80c81cebdbdbdbd OR{NF} r22, 0xbdbdbdbd +0000000000004C04 626cf80c81cebdbdbdbd ORNF r22, 0xbdbdbdbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -62144,7 +62144,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Immediate, Size: 4, RawSize: 4, Encoding: I -0000000000004C0E 626c790c810ebdbd OR{NF} word ptr [r22], 0xbdbd +0000000000004C0E 626c790c810ebdbd ORNF word ptr [r22], 0xbdbd DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -62163,7 +62163,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Immediate, Size: 2, RawSize: 2, Encoding: I -0000000000004C16 626c790c81cebdbd OR{NF} r22w, 0xbdbd +0000000000004C16 626c790c81cebdbd ORNF r22w, 0xbdbd DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -62181,7 +62181,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: General Purpose, RegSize: 2, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Immediate, Size: 2, RawSize: 2, Encoding: I -0000000000004C1E 626cf90c810ebdbdbdbd OR{NF} qword ptr [r22], 0xbdbdbdbd +0000000000004C1E 626cf90c810ebdbdbdbd ORNF qword ptr [r22], 0xbdbdbdbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -62200,7 +62200,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Immediate, Size: 4, RawSize: 4, Encoding: I -0000000000004C28 626cf90c81cebdbdbdbd OR{NF} r22, 0xbdbdbdbd +0000000000004C28 626cf90c81cebdbdbdbd ORNF r22, 0xbdbdbdbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -62218,7 +62218,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Immediate, Size: 4, RawSize: 4, Encoding: I -0000000000004C32 626c780c830ebd OR{NF} dword ptr [r22], 0xbd +0000000000004C32 626c780c830ebd ORNF dword ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -62237,7 +62237,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000004C39 626c780c83cebd OR{NF} r22d, 0xbd +0000000000004C39 626c780c83cebd ORNF r22d, 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -62255,7 +62255,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000004C40 626cf80c830ebd OR{NF} qword ptr [r22], 0xbd +0000000000004C40 626cf80c830ebd ORNF qword ptr [r22], 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -62274,7 +62274,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000004C47 626cf80c83cebd OR{NF} r22, 0xbd +0000000000004C47 626cf80c83cebd ORNF r22, 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -62292,7 +62292,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000004C4E 626c790c830ebd OR{NF} word ptr [r22], 0xbd +0000000000004C4E 626c790c830ebd ORNF word ptr [r22], 0xbd DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -62311,7 +62311,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000004C55 626c790c83cebd OR{NF} r22w, 0xbd +0000000000004C55 626c790c83cebd ORNF r22w, 0xbd DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -62329,7 +62329,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: General Purpose, RegSize: 2, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000004C5C 626cf90c830ebd OR{NF} qword ptr [r22], 0xbd +0000000000004C5C 626cf90c830ebd ORNF qword ptr [r22], 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -62348,7 +62348,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000004C63 626cf90c83cebd OR{NF} r22, 0xbd +0000000000004C63 626cf90c83cebd ORNF r22, 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -63356,7 +63356,7 @@ Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000004D9A 626c781c081e OR{NF} al, byte ptr [r22], r27b +0000000000004D9A 626c781c081e ORNF al, byte ptr [r22], r27b DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -63376,7 +63376,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: R, RegType: General Purpose, RegSize: 1, RegId: 27, RegCount: 1 -0000000000004DA0 626c781c08de OR{NF} al, r22b, r27b +0000000000004DA0 626c781c08de ORNF al, r22b, r27b DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -63395,7 +63395,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: R, RegType: General Purpose, RegSize: 1, RegId: 27, RegCount: 1 -0000000000004DA6 626cf81c081e OR{NF} al, byte ptr [r22], r27b +0000000000004DA6 626cf81c081e ORNF al, byte ptr [r22], r27b DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -63415,7 +63415,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: R, RegType: General Purpose, RegSize: 1, RegId: 27, RegCount: 1 -0000000000004DAC 626cf81c08de OR{NF} al, r22b, r27b +0000000000004DAC 626cf81c08de ORNF al, r22b, r27b DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -63434,7 +63434,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: R, RegType: General Purpose, RegSize: 1, RegId: 27, RegCount: 1 -0000000000004DB2 626c781c091e OR{NF} eax, dword ptr [r22], r27d +0000000000004DB2 626c781c091e ORNF eax, dword ptr [r22], r27d DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -63454,7 +63454,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 27, RegCount: 1 -0000000000004DB8 626c781c09de OR{NF} eax, r22d, r27d +0000000000004DB8 626c781c09de ORNF eax, r22d, r27d DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -63473,7 +63473,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 27, RegCount: 1 -0000000000004DBE 626cf81c091e OR{NF} rax, qword ptr [r22], r27 +0000000000004DBE 626cf81c091e ORNF rax, qword ptr [r22], r27 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -63493,7 +63493,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 27, RegCount: 1 -0000000000004DC4 626cf81c09de OR{NF} rax, r22, r27 +0000000000004DC4 626cf81c09de ORNF rax, r22, r27 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -63512,7 +63512,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 27, RegCount: 1 -0000000000004DCA 626c791c091e OR{NF} ax, word ptr [r22], r27w +0000000000004DCA 626c791c091e ORNF ax, word ptr [r22], r27w DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -63532,7 +63532,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: R, RegType: General Purpose, RegSize: 2, RegId: 27, RegCount: 1 -0000000000004DD0 626c791c09de OR{NF} ax, r22w, r27w +0000000000004DD0 626c791c09de ORNF ax, r22w, r27w DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -63551,7 +63551,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: General Purpose, RegSize: 2, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: R, RegType: General Purpose, RegSize: 2, RegId: 27, RegCount: 1 -0000000000004DD6 626cf91c091e OR{NF} rax, qword ptr [r22], r27 +0000000000004DD6 626cf91c091e ORNF rax, qword ptr [r22], r27 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -63571,7 +63571,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 27, RegCount: 1 -0000000000004DDC 626cf91c09de OR{NF} rax, r22, r27 +0000000000004DDC 626cf91c09de ORNF rax, r22, r27 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -63590,7 +63590,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 27, RegCount: 1 -0000000000004DE2 626c781c0a1e OR{NF} al, r27b, byte ptr [r22] +0000000000004DE2 626c781c0a1e ORNF al, r27b, byte ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -63610,7 +63610,7 @@ Operand: 2, Acc: R-, Type: Memory, Size: 1, RawSize: 1, Encoding: M, Segment: 3, Base: 22, -0000000000004DE8 626c781c0ade OR{NF} al, r27b, r22b +0000000000004DE8 626c781c0ade ORNF al, r27b, r22b DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -63629,7 +63629,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: R, RegType: General Purpose, RegSize: 1, RegId: 27, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 -0000000000004DEE 626cf81c0a1e OR{NF} al, r27b, byte ptr [r22] +0000000000004DEE 626cf81c0a1e ORNF al, r27b, byte ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -63649,7 +63649,7 @@ Operand: 2, Acc: R-, Type: Memory, Size: 1, RawSize: 1, Encoding: M, Segment: 3, Base: 22, -0000000000004DF4 626cf81c0ade OR{NF} al, r27b, r22b +0000000000004DF4 626cf81c0ade ORNF al, r27b, r22b DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -63668,7 +63668,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: R, RegType: General Purpose, RegSize: 1, RegId: 27, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 -0000000000004DFA 626c781c0b1e OR{NF} eax, r27d, dword ptr [r22] +0000000000004DFA 626c781c0b1e ORNF eax, r27d, dword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -63688,7 +63688,7 @@ Operand: 2, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, Segment: 3, Base: 22, -0000000000004E00 626c781c0bde OR{NF} eax, r27d, r22d +0000000000004E00 626c781c0bde ORNF eax, r27d, r22d DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -63707,7 +63707,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 27, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 -0000000000004E06 626cf81c0b1e OR{NF} rax, r27, qword ptr [r22] +0000000000004E06 626cf81c0b1e ORNF rax, r27, qword ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -63727,7 +63727,7 @@ Operand: 2, Acc: R-, Type: Memory, Size: 8, RawSize: 8, Encoding: M, Segment: 3, Base: 22, -0000000000004E0C 626cf81c0bde OR{NF} rax, r27, r22 +0000000000004E0C 626cf81c0bde ORNF rax, r27, r22 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -63746,7 +63746,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 27, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 -0000000000004E12 626c791c0b1e OR{NF} ax, r27w, word ptr [r22] +0000000000004E12 626c791c0b1e ORNF ax, r27w, word ptr [r22] DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -63766,7 +63766,7 @@ Operand: 2, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, Segment: 3, Base: 22, -0000000000004E18 626c791c0bde OR{NF} ax, r27w, r22w +0000000000004E18 626c791c0bde ORNF ax, r27w, r22w DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -63785,7 +63785,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: R, RegType: General Purpose, RegSize: 2, RegId: 27, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: General Purpose, RegSize: 2, RegId: 22, RegCount: 1 -0000000000004E1E 626cf91c0b1e OR{NF} rax, r27, qword ptr [r22] +0000000000004E1E 626cf91c0b1e ORNF rax, r27, qword ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -63805,7 +63805,7 @@ Operand: 2, Acc: R-, Type: Memory, Size: 8, RawSize: 8, Encoding: M, Segment: 3, Base: 22, -0000000000004E24 626cf91c0bde OR{NF} rax, r27, r22 +0000000000004E24 626cf91c0bde ORNF rax, r27, r22 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -63824,7 +63824,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 27, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 -0000000000004E2A 626c781c800ebd OR{NF} al, byte ptr [r22], 0xbd +0000000000004E2A 626c781c800ebd ORNF al, byte ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -63844,7 +63844,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000004E31 626c781c80cebd OR{NF} al, r22b, 0xbd +0000000000004E31 626c781c80cebd ORNF al, r22b, 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -63863,7 +63863,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000004E38 626cf81c800ebd OR{NF} al, byte ptr [r22], 0xbd +0000000000004E38 626cf81c800ebd ORNF al, byte ptr [r22], 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -63883,7 +63883,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000004E3F 626cf81c80cebd OR{NF} al, r22b, 0xbd +0000000000004E3F 626cf81c80cebd ORNF al, r22b, 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -63902,7 +63902,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000004E46 626c781c810ebdbdbdbd OR{NF} eax, dword ptr [r22], 0xbdbdbdbd +0000000000004E46 626c781c810ebdbdbdbd ORNF eax, dword ptr [r22], 0xbdbdbdbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -63922,7 +63922,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 4, RawSize: 4, Encoding: I -0000000000004E50 626c781c81cebdbdbdbd OR{NF} eax, r22d, 0xbdbdbdbd +0000000000004E50 626c781c81cebdbdbdbd ORNF eax, r22d, 0xbdbdbdbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -63941,7 +63941,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 4, RawSize: 4, Encoding: I -0000000000004E5A 626cf81c810ebdbdbdbd OR{NF} rax, qword ptr [r22], 0xbdbdbdbd +0000000000004E5A 626cf81c810ebdbdbdbd ORNF rax, qword ptr [r22], 0xbdbdbdbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -63961,7 +63961,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 4, RawSize: 4, Encoding: I -0000000000004E64 626cf81c81cebdbdbdbd OR{NF} rax, r22, 0xbdbdbdbd +0000000000004E64 626cf81c81cebdbdbdbd ORNF rax, r22, 0xbdbdbdbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -63980,7 +63980,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 4, RawSize: 4, Encoding: I -0000000000004E6E 626c791c810ebdbd OR{NF} ax, word ptr [r22], 0xbdbd +0000000000004E6E 626c791c810ebdbd ORNF ax, word ptr [r22], 0xbdbd DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -64000,7 +64000,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 2, RawSize: 2, Encoding: I -0000000000004E76 626c791c81cebdbd OR{NF} ax, r22w, 0xbdbd +0000000000004E76 626c791c81cebdbd ORNF ax, r22w, 0xbdbd DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -64019,7 +64019,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: General Purpose, RegSize: 2, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 2, RawSize: 2, Encoding: I -0000000000004E7E 626cf91c810ebdbdbdbd OR{NF} rax, qword ptr [r22], 0xbdbdbdbd +0000000000004E7E 626cf91c810ebdbdbdbd ORNF rax, qword ptr [r22], 0xbdbdbdbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -64039,7 +64039,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 4, RawSize: 4, Encoding: I -0000000000004E88 626cf91c81cebdbdbdbd OR{NF} rax, r22, 0xbdbdbdbd +0000000000004E88 626cf91c81cebdbdbdbd ORNF rax, r22, 0xbdbdbdbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -64058,7 +64058,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 4, RawSize: 4, Encoding: I -0000000000004E92 626c781c830ebd OR{NF} eax, dword ptr [r22], 0xbd +0000000000004E92 626c781c830ebd ORNF eax, dword ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -64078,7 +64078,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000004E99 626c781c83cebd OR{NF} eax, r22d, 0xbd +0000000000004E99 626c781c83cebd ORNF eax, r22d, 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -64097,7 +64097,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000004EA0 626cf81c830ebd OR{NF} rax, qword ptr [r22], 0xbd +0000000000004EA0 626cf81c830ebd ORNF rax, qword ptr [r22], 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -64117,7 +64117,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000004EA7 626cf81c83cebd OR{NF} rax, r22, 0xbd +0000000000004EA7 626cf81c83cebd ORNF rax, r22, 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -64136,7 +64136,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000004EAE 626c791c830ebd OR{NF} ax, word ptr [r22], 0xbd +0000000000004EAE 626c791c830ebd ORNF ax, word ptr [r22], 0xbd DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -64156,7 +64156,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000004EB5 626c791c83cebd OR{NF} ax, r22w, 0xbd +0000000000004EB5 626c791c83cebd ORNF ax, r22w, 0xbd DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -64175,7 +64175,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: General Purpose, RegSize: 2, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000004EBC 626cf91c830ebd OR{NF} rax, qword ptr [r22], 0xbd +0000000000004EBC 626cf91c830ebd ORNF rax, qword ptr [r22], 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -64195,7 +64195,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000004EC3 626cf91c83cebd OR{NF} rax, r22, 0xbd +0000000000004EC3 626cf91c83cebd ORNF rax, r22, 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -64582,7 +64582,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 2, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000004F36 626c780c881e POPCNT{NF} r27d, dword ptr [r22] +0000000000004F36 626c780c881e POPCNTNF r27d, dword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -64601,7 +64601,7 @@ Operand: 1, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, Segment: 3, Base: 22, -0000000000004F3C 626c780c88de POPCNT{NF} r27d, r22d +0000000000004F3C 626c780c88de POPCNTNF r27d, r22d DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -64619,7 +64619,7 @@ Operand: 0, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 27, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 -0000000000004F42 626cf80c881e POPCNT{NF} r27, qword ptr [r22] +0000000000004F42 626cf80c881e POPCNTNF r27, qword ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -64638,7 +64638,7 @@ Operand: 1, Acc: R-, Type: Memory, Size: 8, RawSize: 8, Encoding: M, Segment: 3, Base: 22, -0000000000004F48 626cf80c88de POPCNT{NF} r27, r22 +0000000000004F48 626cf80c88de POPCNTNF r27, r22 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -64656,7 +64656,7 @@ Operand: 0, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 27, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 -0000000000004F4E 626c790c881e POPCNT{NF} r27w, word ptr [r22] +0000000000004F4E 626c790c881e POPCNTNF r27w, word ptr [r22] DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -64675,7 +64675,7 @@ Operand: 1, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, Segment: 3, Base: 22, -0000000000004F54 626c790c88de POPCNT{NF} r27w, r22w +0000000000004F54 626c790c88de POPCNTNF r27w, r22w DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -64693,7 +64693,7 @@ Operand: 0, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: R, RegType: General Purpose, RegSize: 2, RegId: 27, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: General Purpose, RegSize: 2, RegId: 22, RegCount: 1 -0000000000004F5A 626cf90c881e POPCNT{NF} r27, qword ptr [r22] +0000000000004F5A 626cf90c881e POPCNTNF r27, qword ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -64712,7 +64712,7 @@ Operand: 1, Acc: R-, Type: Memory, Size: 8, RawSize: 8, Encoding: M, Segment: 3, Base: 22, -0000000000004F60 626cf90c88de POPCNT{NF} r27, r22 +0000000000004F60 626cf90c88de POPCNTNF r27, r22 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: APX, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -65544,7 +65544,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 Operand: 2, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000005056 626c780cc016bd RCL{NF} byte ptr [r22], 0xbd +0000000000005056 626c780cc016bd RCLNF byte ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -65563,7 +65563,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -000000000000505D 626c780cc0d6bd RCL{NF} r22b, 0xbd +000000000000505D 626c780cc0d6bd RCLNF r22b, 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -65581,7 +65581,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000005064 626cf80cc016bd RCL{NF} byte ptr [r22], 0xbd +0000000000005064 626cf80cc016bd RCLNF byte ptr [r22], 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -65600,7 +65600,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -000000000000506B 626cf80cc0d6bd RCL{NF} r22b, 0xbd +000000000000506B 626cf80cc0d6bd RCLNF r22b, 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -65618,7 +65618,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000005072 626c780cc116bd RCL{NF} dword ptr [r22], 0xbd +0000000000005072 626c780cc116bd RCLNF dword ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -65637,7 +65637,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000005079 626c780cc1d6bd RCL{NF} r22d, 0xbd +0000000000005079 626c780cc1d6bd RCLNF r22d, 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -65655,7 +65655,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000005080 626cf80cc116bd RCL{NF} qword ptr [r22], 0xbd +0000000000005080 626cf80cc116bd RCLNF qword ptr [r22], 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -65674,7 +65674,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000005087 626cf80cc1d6bd RCL{NF} r22, 0xbd +0000000000005087 626cf80cc1d6bd RCLNF r22, 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -65692,7 +65692,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -000000000000508E 626c790cc116bd RCL{NF} word ptr [r22], 0xbd +000000000000508E 626c790cc116bd RCLNF word ptr [r22], 0xbd DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -65711,7 +65711,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000005095 626c790cc1d6bd RCL{NF} r22w, 0xbd +0000000000005095 626c790cc1d6bd RCLNF r22w, 0xbd DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -65729,7 +65729,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: General Purpose, RegSize: 2, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -000000000000509C 626cf90cc116bd RCL{NF} qword ptr [r22], 0xbd +000000000000509C 626cf90cc116bd RCLNF qword ptr [r22], 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -65748,7 +65748,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000050A3 626cf90cc1d6bd RCL{NF} r22, 0xbd +00000000000050A3 626cf90cc1d6bd RCLNF r22, 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -65766,7 +65766,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000050AA 626c780cd016 RCL{NF} byte ptr [r22], 1 +00000000000050AA 626c780cd016 RCLNF byte ptr [r22], 1 DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -65785,7 +65785,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -00000000000050B0 626c780cd0d6 RCL{NF} r22b, 1 +00000000000050B0 626c780cd0d6 RCLNF r22b, 1 DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -65803,7 +65803,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -00000000000050B6 626cf80cd016 RCL{NF} byte ptr [r22], 1 +00000000000050B6 626cf80cd016 RCLNF byte ptr [r22], 1 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -65822,7 +65822,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -00000000000050BC 626cf80cd0d6 RCL{NF} r22b, 1 +00000000000050BC 626cf80cd0d6 RCLNF r22b, 1 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -65840,7 +65840,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -00000000000050C2 626c780cd116 RCL{NF} dword ptr [r22], 1 +00000000000050C2 626c780cd116 RCLNF dword ptr [r22], 1 DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -65859,7 +65859,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -00000000000050C8 626c780cd1d6 RCL{NF} r22d, 1 +00000000000050C8 626c780cd1d6 RCLNF r22d, 1 DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -65877,7 +65877,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -00000000000050CE 626cf80cd116 RCL{NF} qword ptr [r22], 1 +00000000000050CE 626cf80cd116 RCLNF qword ptr [r22], 1 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -65896,7 +65896,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -00000000000050D4 626cf80cd1d6 RCL{NF} r22, 1 +00000000000050D4 626cf80cd1d6 RCLNF r22, 1 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -65914,7 +65914,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -00000000000050DA 626c790cd116 RCL{NF} word ptr [r22], 1 +00000000000050DA 626c790cd116 RCLNF word ptr [r22], 1 DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -65933,7 +65933,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -00000000000050E0 626c790cd1d6 RCL{NF} r22w, 1 +00000000000050E0 626c790cd1d6 RCLNF r22w, 1 DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -65951,7 +65951,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: General Purpose, RegSize: 2, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -00000000000050E6 626cf90cd116 RCL{NF} qword ptr [r22], 1 +00000000000050E6 626cf90cd116 RCLNF qword ptr [r22], 1 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -65970,7 +65970,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -00000000000050EC 626cf90cd1d6 RCL{NF} r22, 1 +00000000000050EC 626cf90cd1d6 RCLNF r22, 1 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -65988,7 +65988,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -00000000000050F2 626c780cd216 RCL{NF} byte ptr [r22], cl +00000000000050F2 626c780cd216 RCLNF byte ptr [r22], cl DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -66007,7 +66007,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -00000000000050F8 626c780cd2d6 RCL{NF} r22b, cl +00000000000050F8 626c780cd2d6 RCLNF r22b, cl DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -66025,7 +66025,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -00000000000050FE 626cf80cd216 RCL{NF} byte ptr [r22], cl +00000000000050FE 626cf80cd216 RCLNF byte ptr [r22], cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -66044,7 +66044,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000005104 626cf80cd2d6 RCL{NF} r22b, cl +0000000000005104 626cf80cd2d6 RCLNF r22b, cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -66062,7 +66062,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -000000000000510A 626c780cd316 RCL{NF} dword ptr [r22], cl +000000000000510A 626c780cd316 RCLNF dword ptr [r22], cl DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -66081,7 +66081,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000005110 626c780cd3d6 RCL{NF} r22d, cl +0000000000005110 626c780cd3d6 RCLNF r22d, cl DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -66099,7 +66099,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000005116 626cf80cd316 RCL{NF} qword ptr [r22], cl +0000000000005116 626cf80cd316 RCLNF qword ptr [r22], cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -66118,7 +66118,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -000000000000511C 626cf80cd3d6 RCL{NF} r22, cl +000000000000511C 626cf80cd3d6 RCLNF r22, cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -66136,7 +66136,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000005122 626c790cd316 RCL{NF} word ptr [r22], cl +0000000000005122 626c790cd316 RCLNF word ptr [r22], cl DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -66155,7 +66155,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000005128 626c790cd3d6 RCL{NF} r22w, cl +0000000000005128 626c790cd3d6 RCLNF r22w, cl DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -66173,7 +66173,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: General Purpose, RegSize: 2, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -000000000000512E 626cf90cd316 RCL{NF} qword ptr [r22], cl +000000000000512E 626cf90cd316 RCLNF qword ptr [r22], cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -66192,7 +66192,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000005134 626cf90cd3d6 RCL{NF} r22, cl +0000000000005134 626cf90cd3d6 RCLNF r22, cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -67020,7 +67020,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 Operand: 3, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -000000000000521E 626c781cc016bd RCL{NF} al, byte ptr [r22], 0xbd +000000000000521E 626c781cc016bd RCLNF al, byte ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -67040,7 +67040,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000005225 626c781cc0d6bd RCL{NF} al, r22b, 0xbd +0000000000005225 626c781cc0d6bd RCLNF al, r22b, 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -67059,7 +67059,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -000000000000522C 626cf81cc016bd RCL{NF} al, byte ptr [r22], 0xbd +000000000000522C 626cf81cc016bd RCLNF al, byte ptr [r22], 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -67079,7 +67079,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000005233 626cf81cc0d6bd RCL{NF} al, r22b, 0xbd +0000000000005233 626cf81cc0d6bd RCLNF al, r22b, 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -67098,7 +67098,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -000000000000523A 626c781cc116bd RCL{NF} eax, dword ptr [r22], 0xbd +000000000000523A 626c781cc116bd RCLNF eax, dword ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -67118,7 +67118,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000005241 626c781cc1d6bd RCL{NF} eax, r22d, 0xbd +0000000000005241 626c781cc1d6bd RCLNF eax, r22d, 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -67137,7 +67137,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000005248 626cf81cc116bd RCL{NF} rax, qword ptr [r22], 0xbd +0000000000005248 626cf81cc116bd RCLNF rax, qword ptr [r22], 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -67157,7 +67157,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -000000000000524F 626cf81cc1d6bd RCL{NF} rax, r22, 0xbd +000000000000524F 626cf81cc1d6bd RCLNF rax, r22, 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -67176,7 +67176,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000005256 626c791cc116bd RCL{NF} ax, word ptr [r22], 0xbd +0000000000005256 626c791cc116bd RCLNF ax, word ptr [r22], 0xbd DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -67196,7 +67196,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -000000000000525D 626c791cc1d6bd RCL{NF} ax, r22w, 0xbd +000000000000525D 626c791cc1d6bd RCLNF ax, r22w, 0xbd DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -67215,7 +67215,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: General Purpose, RegSize: 2, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000005264 626cf91cc116bd RCL{NF} rax, qword ptr [r22], 0xbd +0000000000005264 626cf91cc116bd RCLNF rax, qword ptr [r22], 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -67235,7 +67235,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -000000000000526B 626cf91cc1d6bd RCL{NF} rax, r22, 0xbd +000000000000526B 626cf91cc1d6bd RCLNF rax, r22, 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -67254,7 +67254,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000005272 626c781cd016 RCL{NF} al, byte ptr [r22], 1 +0000000000005272 626c781cd016 RCLNF al, byte ptr [r22], 1 DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -67274,7 +67274,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -0000000000005278 626c781cd0d6 RCL{NF} al, r22b, 1 +0000000000005278 626c781cd0d6 RCLNF al, r22b, 1 DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -67293,7 +67293,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -000000000000527E 626cf81cd016 RCL{NF} al, byte ptr [r22], 1 +000000000000527E 626cf81cd016 RCLNF al, byte ptr [r22], 1 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -67313,7 +67313,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -0000000000005284 626cf81cd0d6 RCL{NF} al, r22b, 1 +0000000000005284 626cf81cd0d6 RCLNF al, r22b, 1 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -67332,7 +67332,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -000000000000528A 626c781cd116 RCL{NF} eax, dword ptr [r22], 1 +000000000000528A 626c781cd116 RCLNF eax, dword ptr [r22], 1 DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -67352,7 +67352,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -0000000000005290 626c781cd1d6 RCL{NF} eax, r22d, 1 +0000000000005290 626c781cd1d6 RCLNF eax, r22d, 1 DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -67371,7 +67371,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -0000000000005296 626cf81cd116 RCL{NF} rax, qword ptr [r22], 1 +0000000000005296 626cf81cd116 RCLNF rax, qword ptr [r22], 1 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -67391,7 +67391,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -000000000000529C 626cf81cd1d6 RCL{NF} rax, r22, 1 +000000000000529C 626cf81cd1d6 RCLNF rax, r22, 1 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -67410,7 +67410,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -00000000000052A2 626c791cd116 RCL{NF} ax, word ptr [r22], 1 +00000000000052A2 626c791cd116 RCLNF ax, word ptr [r22], 1 DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -67430,7 +67430,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -00000000000052A8 626c791cd1d6 RCL{NF} ax, r22w, 1 +00000000000052A8 626c791cd1d6 RCLNF ax, r22w, 1 DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -67449,7 +67449,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: General Purpose, RegSize: 2, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -00000000000052AE 626cf91cd116 RCL{NF} rax, qword ptr [r22], 1 +00000000000052AE 626cf91cd116 RCLNF rax, qword ptr [r22], 1 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -67469,7 +67469,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -00000000000052B4 626cf91cd1d6 RCL{NF} rax, r22, 1 +00000000000052B4 626cf91cd1d6 RCLNF rax, r22, 1 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -67488,7 +67488,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -00000000000052BA 626c781cd216 RCL{NF} al, byte ptr [r22], cl +00000000000052BA 626c781cd216 RCLNF al, byte ptr [r22], cl DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -67508,7 +67508,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -00000000000052C0 626c781cd2d6 RCL{NF} al, r22b, cl +00000000000052C0 626c781cd2d6 RCLNF al, r22b, cl DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -67527,7 +67527,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -00000000000052C6 626cf81cd216 RCL{NF} al, byte ptr [r22], cl +00000000000052C6 626cf81cd216 RCLNF al, byte ptr [r22], cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -67547,7 +67547,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -00000000000052CC 626cf81cd2d6 RCL{NF} al, r22b, cl +00000000000052CC 626cf81cd2d6 RCLNF al, r22b, cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -67566,7 +67566,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -00000000000052D2 626c781cd316 RCL{NF} eax, dword ptr [r22], cl +00000000000052D2 626c781cd316 RCLNF eax, dword ptr [r22], cl DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -67586,7 +67586,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -00000000000052D8 626c781cd3d6 RCL{NF} eax, r22d, cl +00000000000052D8 626c781cd3d6 RCLNF eax, r22d, cl DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -67605,7 +67605,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -00000000000052DE 626cf81cd316 RCL{NF} rax, qword ptr [r22], cl +00000000000052DE 626cf81cd316 RCLNF rax, qword ptr [r22], cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -67625,7 +67625,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -00000000000052E4 626cf81cd3d6 RCL{NF} rax, r22, cl +00000000000052E4 626cf81cd3d6 RCLNF rax, r22, cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -67644,7 +67644,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -00000000000052EA 626c791cd316 RCL{NF} ax, word ptr [r22], cl +00000000000052EA 626c791cd316 RCLNF ax, word ptr [r22], cl DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -67664,7 +67664,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -00000000000052F0 626c791cd3d6 RCL{NF} ax, r22w, cl +00000000000052F0 626c791cd3d6 RCLNF ax, r22w, cl DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -67683,7 +67683,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: General Purpose, RegSize: 2, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -00000000000052F6 626cf91cd316 RCL{NF} rax, qword ptr [r22], cl +00000000000052F6 626cf91cd316 RCLNF rax, qword ptr [r22], cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -67703,7 +67703,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -00000000000052FC 626cf91cd3d6 RCL{NF} rax, r22, cl +00000000000052FC 626cf91cd3d6 RCLNF rax, r22, cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -68496,7 +68496,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 Operand: 2, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000053E6 626c780cc01ebd RCR{NF} byte ptr [r22], 0xbd +00000000000053E6 626c780cc01ebd RCRNF byte ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -68515,7 +68515,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000053ED 626c780cc0debd RCR{NF} r22b, 0xbd +00000000000053ED 626c780cc0debd RCRNF r22b, 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -68533,7 +68533,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000053F4 626cf80cc01ebd RCR{NF} byte ptr [r22], 0xbd +00000000000053F4 626cf80cc01ebd RCRNF byte ptr [r22], 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -68552,7 +68552,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000053FB 626cf80cc0debd RCR{NF} r22b, 0xbd +00000000000053FB 626cf80cc0debd RCRNF r22b, 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -68570,7 +68570,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000005402 626c780cc11ebd RCR{NF} dword ptr [r22], 0xbd +0000000000005402 626c780cc11ebd RCRNF dword ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -68589,7 +68589,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000005409 626c780cc1debd RCR{NF} r22d, 0xbd +0000000000005409 626c780cc1debd RCRNF r22d, 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -68607,7 +68607,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000005410 626cf80cc11ebd RCR{NF} qword ptr [r22], 0xbd +0000000000005410 626cf80cc11ebd RCRNF qword ptr [r22], 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -68626,7 +68626,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000005417 626cf80cc1debd RCR{NF} r22, 0xbd +0000000000005417 626cf80cc1debd RCRNF r22, 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -68644,7 +68644,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -000000000000541E 626c790cc11ebd RCR{NF} word ptr [r22], 0xbd +000000000000541E 626c790cc11ebd RCRNF word ptr [r22], 0xbd DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -68663,7 +68663,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000005425 626c790cc1debd RCR{NF} r22w, 0xbd +0000000000005425 626c790cc1debd RCRNF r22w, 0xbd DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -68681,7 +68681,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: General Purpose, RegSize: 2, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -000000000000542C 626cf90cc11ebd RCR{NF} qword ptr [r22], 0xbd +000000000000542C 626cf90cc11ebd RCRNF qword ptr [r22], 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -68700,7 +68700,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000005433 626cf90cc1debd RCR{NF} r22, 0xbd +0000000000005433 626cf90cc1debd RCRNF r22, 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -68718,7 +68718,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -000000000000543A 626c780cd01e RCR{NF} byte ptr [r22], 1 +000000000000543A 626c780cd01e RCRNF byte ptr [r22], 1 DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -68737,7 +68737,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -0000000000005440 626c780cd0de RCR{NF} r22b, 1 +0000000000005440 626c780cd0de RCRNF r22b, 1 DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -68755,7 +68755,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -0000000000005446 626cf80cd01e RCR{NF} byte ptr [r22], 1 +0000000000005446 626cf80cd01e RCRNF byte ptr [r22], 1 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -68774,7 +68774,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -000000000000544C 626cf80cd0de RCR{NF} r22b, 1 +000000000000544C 626cf80cd0de RCRNF r22b, 1 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -68792,7 +68792,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -0000000000005452 626c780cd11e RCR{NF} dword ptr [r22], 1 +0000000000005452 626c780cd11e RCRNF dword ptr [r22], 1 DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -68811,7 +68811,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -0000000000005458 626c780cd1de RCR{NF} r22d, 1 +0000000000005458 626c780cd1de RCRNF r22d, 1 DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -68829,7 +68829,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -000000000000545E 626cf80cd11e RCR{NF} qword ptr [r22], 1 +000000000000545E 626cf80cd11e RCRNF qword ptr [r22], 1 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -68848,7 +68848,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -0000000000005464 626cf80cd1de RCR{NF} r22, 1 +0000000000005464 626cf80cd1de RCRNF r22, 1 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -68866,7 +68866,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -000000000000546A 626c790cd11e RCR{NF} word ptr [r22], 1 +000000000000546A 626c790cd11e RCRNF word ptr [r22], 1 DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -68885,7 +68885,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -0000000000005470 626c790cd1de RCR{NF} r22w, 1 +0000000000005470 626c790cd1de RCRNF r22w, 1 DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -68903,7 +68903,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: General Purpose, RegSize: 2, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -0000000000005476 626cf90cd11e RCR{NF} qword ptr [r22], 1 +0000000000005476 626cf90cd11e RCRNF qword ptr [r22], 1 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -68922,7 +68922,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -000000000000547C 626cf90cd1de RCR{NF} r22, 1 +000000000000547C 626cf90cd1de RCRNF r22, 1 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -68940,7 +68940,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -0000000000005482 626c780cd21e RCR{NF} byte ptr [r22], cl +0000000000005482 626c780cd21e RCRNF byte ptr [r22], cl DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -68959,7 +68959,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000005488 626c780cd2de RCR{NF} r22b, cl +0000000000005488 626c780cd2de RCRNF r22b, cl DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -68977,7 +68977,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -000000000000548E 626cf80cd21e RCR{NF} byte ptr [r22], cl +000000000000548E 626cf80cd21e RCRNF byte ptr [r22], cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -68996,7 +68996,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000005494 626cf80cd2de RCR{NF} r22b, cl +0000000000005494 626cf80cd2de RCRNF r22b, cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -69014,7 +69014,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -000000000000549A 626c780cd31e RCR{NF} dword ptr [r22], cl +000000000000549A 626c780cd31e RCRNF dword ptr [r22], cl DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -69033,7 +69033,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -00000000000054A0 626c780cd3de RCR{NF} r22d, cl +00000000000054A0 626c780cd3de RCRNF r22d, cl DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -69051,7 +69051,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -00000000000054A6 626cf80cd31e RCR{NF} qword ptr [r22], cl +00000000000054A6 626cf80cd31e RCRNF qword ptr [r22], cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -69070,7 +69070,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -00000000000054AC 626cf80cd3de RCR{NF} r22, cl +00000000000054AC 626cf80cd3de RCRNF r22, cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -69088,7 +69088,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -00000000000054B2 626c790cd31e RCR{NF} word ptr [r22], cl +00000000000054B2 626c790cd31e RCRNF word ptr [r22], cl DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -69107,7 +69107,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -00000000000054B8 626c790cd3de RCR{NF} r22w, cl +00000000000054B8 626c790cd3de RCRNF r22w, cl DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -69125,7 +69125,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: General Purpose, RegSize: 2, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -00000000000054BE 626cf90cd31e RCR{NF} qword ptr [r22], cl +00000000000054BE 626cf90cd31e RCRNF qword ptr [r22], cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -69144,7 +69144,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -00000000000054C4 626cf90cd3de RCR{NF} r22, cl +00000000000054C4 626cf90cd3de RCRNF r22, cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -69972,7 +69972,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 Operand: 3, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000055AE 626c781cc01ebd RCR{NF} al, byte ptr [r22], 0xbd +00000000000055AE 626c781cc01ebd RCRNF al, byte ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -69992,7 +69992,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000055B5 626c781cc0debd RCR{NF} al, r22b, 0xbd +00000000000055B5 626c781cc0debd RCRNF al, r22b, 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -70011,7 +70011,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000055BC 626cf81cc01ebd RCR{NF} al, byte ptr [r22], 0xbd +00000000000055BC 626cf81cc01ebd RCRNF al, byte ptr [r22], 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -70031,7 +70031,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000055C3 626cf81cc0debd RCR{NF} al, r22b, 0xbd +00000000000055C3 626cf81cc0debd RCRNF al, r22b, 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -70050,7 +70050,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000055CA 626c781cc11ebd RCR{NF} eax, dword ptr [r22], 0xbd +00000000000055CA 626c781cc11ebd RCRNF eax, dword ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -70070,7 +70070,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000055D1 626c781cc1debd RCR{NF} eax, r22d, 0xbd +00000000000055D1 626c781cc1debd RCRNF eax, r22d, 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -70089,7 +70089,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000055D8 626cf81cc11ebd RCR{NF} rax, qword ptr [r22], 0xbd +00000000000055D8 626cf81cc11ebd RCRNF rax, qword ptr [r22], 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -70109,7 +70109,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000055DF 626cf81cc1debd RCR{NF} rax, r22, 0xbd +00000000000055DF 626cf81cc1debd RCRNF rax, r22, 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -70128,7 +70128,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000055E6 626c791cc11ebd RCR{NF} ax, word ptr [r22], 0xbd +00000000000055E6 626c791cc11ebd RCRNF ax, word ptr [r22], 0xbd DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -70148,7 +70148,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000055ED 626c791cc1debd RCR{NF} ax, r22w, 0xbd +00000000000055ED 626c791cc1debd RCRNF ax, r22w, 0xbd DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -70167,7 +70167,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: General Purpose, RegSize: 2, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000055F4 626cf91cc11ebd RCR{NF} rax, qword ptr [r22], 0xbd +00000000000055F4 626cf91cc11ebd RCRNF rax, qword ptr [r22], 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -70187,7 +70187,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000055FB 626cf91cc1debd RCR{NF} rax, r22, 0xbd +00000000000055FB 626cf91cc1debd RCRNF rax, r22, 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -70206,7 +70206,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000005602 626c781cd01e RCR{NF} al, byte ptr [r22], 1 +0000000000005602 626c781cd01e RCRNF al, byte ptr [r22], 1 DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -70226,7 +70226,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -0000000000005608 626c781cd0de RCR{NF} al, r22b, 1 +0000000000005608 626c781cd0de RCRNF al, r22b, 1 DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -70245,7 +70245,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -000000000000560E 626cf81cd01e RCR{NF} al, byte ptr [r22], 1 +000000000000560E 626cf81cd01e RCRNF al, byte ptr [r22], 1 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -70265,7 +70265,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -0000000000005614 626cf81cd0de RCR{NF} al, r22b, 1 +0000000000005614 626cf81cd0de RCRNF al, r22b, 1 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -70284,7 +70284,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -000000000000561A 626c781cd11e RCR{NF} eax, dword ptr [r22], 1 +000000000000561A 626c781cd11e RCRNF eax, dword ptr [r22], 1 DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -70304,7 +70304,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -0000000000005620 626c781cd1de RCR{NF} eax, r22d, 1 +0000000000005620 626c781cd1de RCRNF eax, r22d, 1 DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -70323,7 +70323,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -0000000000005626 626cf81cd11e RCR{NF} rax, qword ptr [r22], 1 +0000000000005626 626cf81cd11e RCRNF rax, qword ptr [r22], 1 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -70343,7 +70343,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -000000000000562C 626cf81cd1de RCR{NF} rax, r22, 1 +000000000000562C 626cf81cd1de RCRNF rax, r22, 1 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -70362,7 +70362,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -0000000000005632 626c791cd11e RCR{NF} ax, word ptr [r22], 1 +0000000000005632 626c791cd11e RCRNF ax, word ptr [r22], 1 DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -70382,7 +70382,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -0000000000005638 626c791cd1de RCR{NF} ax, r22w, 1 +0000000000005638 626c791cd1de RCRNF ax, r22w, 1 DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -70401,7 +70401,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: General Purpose, RegSize: 2, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -000000000000563E 626cf91cd11e RCR{NF} rax, qword ptr [r22], 1 +000000000000563E 626cf91cd11e RCRNF rax, qword ptr [r22], 1 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -70421,7 +70421,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -0000000000005644 626cf91cd1de RCR{NF} rax, r22, 1 +0000000000005644 626cf91cd1de RCRNF rax, r22, 1 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -70440,7 +70440,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -000000000000564A 626c781cd21e RCR{NF} al, byte ptr [r22], cl +000000000000564A 626c781cd21e RCRNF al, byte ptr [r22], cl DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -70460,7 +70460,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000005650 626c781cd2de RCR{NF} al, r22b, cl +0000000000005650 626c781cd2de RCRNF al, r22b, cl DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -70479,7 +70479,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000005656 626cf81cd21e RCR{NF} al, byte ptr [r22], cl +0000000000005656 626cf81cd21e RCRNF al, byte ptr [r22], cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -70499,7 +70499,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -000000000000565C 626cf81cd2de RCR{NF} al, r22b, cl +000000000000565C 626cf81cd2de RCRNF al, r22b, cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -70518,7 +70518,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000005662 626c781cd31e RCR{NF} eax, dword ptr [r22], cl +0000000000005662 626c781cd31e RCRNF eax, dword ptr [r22], cl DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -70538,7 +70538,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000005668 626c781cd3de RCR{NF} eax, r22d, cl +0000000000005668 626c781cd3de RCRNF eax, r22d, cl DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -70557,7 +70557,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -000000000000566E 626cf81cd31e RCR{NF} rax, qword ptr [r22], cl +000000000000566E 626cf81cd31e RCRNF rax, qword ptr [r22], cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -70577,7 +70577,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000005674 626cf81cd3de RCR{NF} rax, r22, cl +0000000000005674 626cf81cd3de RCRNF rax, r22, cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -70596,7 +70596,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -000000000000567A 626c791cd31e RCR{NF} ax, word ptr [r22], cl +000000000000567A 626c791cd31e RCRNF ax, word ptr [r22], cl DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -70616,7 +70616,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000005680 626c791cd3de RCR{NF} ax, r22w, cl +0000000000005680 626c791cd3de RCRNF ax, r22w, cl DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -70635,7 +70635,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: General Purpose, RegSize: 2, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000005686 626cf91cd31e RCR{NF} rax, qword ptr [r22], cl +0000000000005686 626cf91cd31e RCRNF rax, qword ptr [r22], cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -70655,7 +70655,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -000000000000568C 626cf91cd3de RCR{NF} rax, r22, cl +000000000000568C 626cf91cd3de RCRNF rax, r22, cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -71448,7 +71448,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 Operand: 2, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000005776 626c780cc006bd ROL{NF} byte ptr [r22], 0xbd +0000000000005776 626c780cc006bd ROLNF byte ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -71467,7 +71467,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -000000000000577D 626c780cc0c6bd ROL{NF} r22b, 0xbd +000000000000577D 626c780cc0c6bd ROLNF r22b, 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -71485,7 +71485,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000005784 626cf80cc006bd ROL{NF} byte ptr [r22], 0xbd +0000000000005784 626cf80cc006bd ROLNF byte ptr [r22], 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -71504,7 +71504,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -000000000000578B 626cf80cc0c6bd ROL{NF} r22b, 0xbd +000000000000578B 626cf80cc0c6bd ROLNF r22b, 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -71522,7 +71522,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000005792 626c780cc106bd ROL{NF} dword ptr [r22], 0xbd +0000000000005792 626c780cc106bd ROLNF dword ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -71541,7 +71541,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000005799 626c780cc1c6bd ROL{NF} r22d, 0xbd +0000000000005799 626c780cc1c6bd ROLNF r22d, 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -71559,7 +71559,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000057A0 626cf80cc106bd ROL{NF} qword ptr [r22], 0xbd +00000000000057A0 626cf80cc106bd ROLNF qword ptr [r22], 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -71578,7 +71578,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000057A7 626cf80cc1c6bd ROL{NF} r22, 0xbd +00000000000057A7 626cf80cc1c6bd ROLNF r22, 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -71596,7 +71596,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000057AE 626c790cc106bd ROL{NF} word ptr [r22], 0xbd +00000000000057AE 626c790cc106bd ROLNF word ptr [r22], 0xbd DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -71615,7 +71615,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000057B5 626c790cc1c6bd ROL{NF} r22w, 0xbd +00000000000057B5 626c790cc1c6bd ROLNF r22w, 0xbd DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -71633,7 +71633,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: General Purpose, RegSize: 2, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000057BC 626cf90cc106bd ROL{NF} qword ptr [r22], 0xbd +00000000000057BC 626cf90cc106bd ROLNF qword ptr [r22], 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -71652,7 +71652,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000057C3 626cf90cc1c6bd ROL{NF} r22, 0xbd +00000000000057C3 626cf90cc1c6bd ROLNF r22, 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -71670,7 +71670,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000057CA 626c780cd006 ROL{NF} byte ptr [r22], 1 +00000000000057CA 626c780cd006 ROLNF byte ptr [r22], 1 DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -71689,7 +71689,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -00000000000057D0 626c780cd0c6 ROL{NF} r22b, 1 +00000000000057D0 626c780cd0c6 ROLNF r22b, 1 DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -71707,7 +71707,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -00000000000057D6 626cf80cd006 ROL{NF} byte ptr [r22], 1 +00000000000057D6 626cf80cd006 ROLNF byte ptr [r22], 1 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -71726,7 +71726,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -00000000000057DC 626cf80cd0c6 ROL{NF} r22b, 1 +00000000000057DC 626cf80cd0c6 ROLNF r22b, 1 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -71744,7 +71744,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -00000000000057E2 626c780cd106 ROL{NF} dword ptr [r22], 1 +00000000000057E2 626c780cd106 ROLNF dword ptr [r22], 1 DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -71763,7 +71763,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -00000000000057E8 626c780cd1c6 ROL{NF} r22d, 1 +00000000000057E8 626c780cd1c6 ROLNF r22d, 1 DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -71781,7 +71781,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -00000000000057EE 626cf80cd106 ROL{NF} qword ptr [r22], 1 +00000000000057EE 626cf80cd106 ROLNF qword ptr [r22], 1 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -71800,7 +71800,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -00000000000057F4 626cf80cd1c6 ROL{NF} r22, 1 +00000000000057F4 626cf80cd1c6 ROLNF r22, 1 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -71818,7 +71818,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -00000000000057FA 626c790cd106 ROL{NF} word ptr [r22], 1 +00000000000057FA 626c790cd106 ROLNF word ptr [r22], 1 DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -71837,7 +71837,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -0000000000005800 626c790cd1c6 ROL{NF} r22w, 1 +0000000000005800 626c790cd1c6 ROLNF r22w, 1 DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -71855,7 +71855,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: General Purpose, RegSize: 2, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -0000000000005806 626cf90cd106 ROL{NF} qword ptr [r22], 1 +0000000000005806 626cf90cd106 ROLNF qword ptr [r22], 1 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -71874,7 +71874,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -000000000000580C 626cf90cd1c6 ROL{NF} r22, 1 +000000000000580C 626cf90cd1c6 ROLNF r22, 1 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -71892,7 +71892,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -0000000000005812 626c780cd206 ROL{NF} byte ptr [r22], cl +0000000000005812 626c780cd206 ROLNF byte ptr [r22], cl DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -71911,7 +71911,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000005818 626c780cd2c6 ROL{NF} r22b, cl +0000000000005818 626c780cd2c6 ROLNF r22b, cl DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -71929,7 +71929,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -000000000000581E 626cf80cd206 ROL{NF} byte ptr [r22], cl +000000000000581E 626cf80cd206 ROLNF byte ptr [r22], cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -71948,7 +71948,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000005824 626cf80cd2c6 ROL{NF} r22b, cl +0000000000005824 626cf80cd2c6 ROLNF r22b, cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -71966,7 +71966,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -000000000000582A 626c780cd306 ROL{NF} dword ptr [r22], cl +000000000000582A 626c780cd306 ROLNF dword ptr [r22], cl DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -71985,7 +71985,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000005830 626c780cd3c6 ROL{NF} r22d, cl +0000000000005830 626c780cd3c6 ROLNF r22d, cl DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -72003,7 +72003,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000005836 626cf80cd306 ROL{NF} qword ptr [r22], cl +0000000000005836 626cf80cd306 ROLNF qword ptr [r22], cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -72022,7 +72022,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -000000000000583C 626cf80cd3c6 ROL{NF} r22, cl +000000000000583C 626cf80cd3c6 ROLNF r22, cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -72040,7 +72040,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000005842 626c790cd306 ROL{NF} word ptr [r22], cl +0000000000005842 626c790cd306 ROLNF word ptr [r22], cl DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -72059,7 +72059,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000005848 626c790cd3c6 ROL{NF} r22w, cl +0000000000005848 626c790cd3c6 ROLNF r22w, cl DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -72077,7 +72077,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: General Purpose, RegSize: 2, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -000000000000584E 626cf90cd306 ROL{NF} qword ptr [r22], cl +000000000000584E 626cf90cd306 ROLNF qword ptr [r22], cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -72096,7 +72096,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000005854 626cf90cd3c6 ROL{NF} r22, cl +0000000000005854 626cf90cd3c6 ROLNF r22, cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -72924,7 +72924,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 Operand: 3, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -000000000000593E 626c781cc006bd ROL{NF} al, byte ptr [r22], 0xbd +000000000000593E 626c781cc006bd ROLNF al, byte ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -72944,7 +72944,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000005945 626c781cc0c6bd ROL{NF} al, r22b, 0xbd +0000000000005945 626c781cc0c6bd ROLNF al, r22b, 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -72963,7 +72963,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -000000000000594C 626cf81cc006bd ROL{NF} al, byte ptr [r22], 0xbd +000000000000594C 626cf81cc006bd ROLNF al, byte ptr [r22], 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -72983,7 +72983,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000005953 626cf81cc0c6bd ROL{NF} al, r22b, 0xbd +0000000000005953 626cf81cc0c6bd ROLNF al, r22b, 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -73002,7 +73002,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -000000000000595A 626c781cc106bd ROL{NF} eax, dword ptr [r22], 0xbd +000000000000595A 626c781cc106bd ROLNF eax, dword ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -73022,7 +73022,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000005961 626c781cc1c6bd ROL{NF} eax, r22d, 0xbd +0000000000005961 626c781cc1c6bd ROLNF eax, r22d, 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -73041,7 +73041,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000005968 626cf81cc106bd ROL{NF} rax, qword ptr [r22], 0xbd +0000000000005968 626cf81cc106bd ROLNF rax, qword ptr [r22], 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -73061,7 +73061,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -000000000000596F 626cf81cc1c6bd ROL{NF} rax, r22, 0xbd +000000000000596F 626cf81cc1c6bd ROLNF rax, r22, 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -73080,7 +73080,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000005976 626c791cc106bd ROL{NF} ax, word ptr [r22], 0xbd +0000000000005976 626c791cc106bd ROLNF ax, word ptr [r22], 0xbd DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -73100,7 +73100,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -000000000000597D 626c791cc1c6bd ROL{NF} ax, r22w, 0xbd +000000000000597D 626c791cc1c6bd ROLNF ax, r22w, 0xbd DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -73119,7 +73119,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: General Purpose, RegSize: 2, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000005984 626cf91cc106bd ROL{NF} rax, qword ptr [r22], 0xbd +0000000000005984 626cf91cc106bd ROLNF rax, qword ptr [r22], 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -73139,7 +73139,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -000000000000598B 626cf91cc1c6bd ROL{NF} rax, r22, 0xbd +000000000000598B 626cf91cc1c6bd ROLNF rax, r22, 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -73158,7 +73158,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000005992 626c781cd006 ROL{NF} al, byte ptr [r22], 1 +0000000000005992 626c781cd006 ROLNF al, byte ptr [r22], 1 DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -73178,7 +73178,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -0000000000005998 626c781cd0c6 ROL{NF} al, r22b, 1 +0000000000005998 626c781cd0c6 ROLNF al, r22b, 1 DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -73197,7 +73197,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -000000000000599E 626cf81cd006 ROL{NF} al, byte ptr [r22], 1 +000000000000599E 626cf81cd006 ROLNF al, byte ptr [r22], 1 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -73217,7 +73217,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -00000000000059A4 626cf81cd0c6 ROL{NF} al, r22b, 1 +00000000000059A4 626cf81cd0c6 ROLNF al, r22b, 1 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -73236,7 +73236,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -00000000000059AA 626c781cd106 ROL{NF} eax, dword ptr [r22], 1 +00000000000059AA 626c781cd106 ROLNF eax, dword ptr [r22], 1 DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -73256,7 +73256,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -00000000000059B0 626c781cd1c6 ROL{NF} eax, r22d, 1 +00000000000059B0 626c781cd1c6 ROLNF eax, r22d, 1 DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -73275,7 +73275,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -00000000000059B6 626cf81cd106 ROL{NF} rax, qword ptr [r22], 1 +00000000000059B6 626cf81cd106 ROLNF rax, qword ptr [r22], 1 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -73295,7 +73295,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -00000000000059BC 626cf81cd1c6 ROL{NF} rax, r22, 1 +00000000000059BC 626cf81cd1c6 ROLNF rax, r22, 1 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -73314,7 +73314,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -00000000000059C2 626c791cd106 ROL{NF} ax, word ptr [r22], 1 +00000000000059C2 626c791cd106 ROLNF ax, word ptr [r22], 1 DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -73334,7 +73334,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -00000000000059C8 626c791cd1c6 ROL{NF} ax, r22w, 1 +00000000000059C8 626c791cd1c6 ROLNF ax, r22w, 1 DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -73353,7 +73353,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: General Purpose, RegSize: 2, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -00000000000059CE 626cf91cd106 ROL{NF} rax, qword ptr [r22], 1 +00000000000059CE 626cf91cd106 ROLNF rax, qword ptr [r22], 1 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -73373,7 +73373,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -00000000000059D4 626cf91cd1c6 ROL{NF} rax, r22, 1 +00000000000059D4 626cf91cd1c6 ROLNF rax, r22, 1 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -73392,7 +73392,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -00000000000059DA 626c781cd206 ROL{NF} al, byte ptr [r22], cl +00000000000059DA 626c781cd206 ROLNF al, byte ptr [r22], cl DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -73412,7 +73412,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -00000000000059E0 626c781cd2c6 ROL{NF} al, r22b, cl +00000000000059E0 626c781cd2c6 ROLNF al, r22b, cl DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -73431,7 +73431,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -00000000000059E6 626cf81cd206 ROL{NF} al, byte ptr [r22], cl +00000000000059E6 626cf81cd206 ROLNF al, byte ptr [r22], cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -73451,7 +73451,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -00000000000059EC 626cf81cd2c6 ROL{NF} al, r22b, cl +00000000000059EC 626cf81cd2c6 ROLNF al, r22b, cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -73470,7 +73470,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -00000000000059F2 626c781cd306 ROL{NF} eax, dword ptr [r22], cl +00000000000059F2 626c781cd306 ROLNF eax, dword ptr [r22], cl DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -73490,7 +73490,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -00000000000059F8 626c781cd3c6 ROL{NF} eax, r22d, cl +00000000000059F8 626c781cd3c6 ROLNF eax, r22d, cl DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -73509,7 +73509,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -00000000000059FE 626cf81cd306 ROL{NF} rax, qword ptr [r22], cl +00000000000059FE 626cf81cd306 ROLNF rax, qword ptr [r22], cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -73529,7 +73529,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000005A04 626cf81cd3c6 ROL{NF} rax, r22, cl +0000000000005A04 626cf81cd3c6 ROLNF rax, r22, cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -73548,7 +73548,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000005A0A 626c791cd306 ROL{NF} ax, word ptr [r22], cl +0000000000005A0A 626c791cd306 ROLNF ax, word ptr [r22], cl DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -73568,7 +73568,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000005A10 626c791cd3c6 ROL{NF} ax, r22w, cl +0000000000005A10 626c791cd3c6 ROLNF ax, r22w, cl DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -73587,7 +73587,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: General Purpose, RegSize: 2, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000005A16 626cf91cd306 ROL{NF} rax, qword ptr [r22], cl +0000000000005A16 626cf91cd306 ROLNF rax, qword ptr [r22], cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -73607,7 +73607,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000005A1C 626cf91cd3c6 ROL{NF} rax, r22, cl +0000000000005A1C 626cf91cd3c6 ROLNF rax, r22, cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -74400,7 +74400,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 Operand: 2, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000005B06 626c780cc00ebd ROR{NF} byte ptr [r22], 0xbd +0000000000005B06 626c780cc00ebd RORNF byte ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -74419,7 +74419,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000005B0D 626c780cc0cebd ROR{NF} r22b, 0xbd +0000000000005B0D 626c780cc0cebd RORNF r22b, 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -74437,7 +74437,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000005B14 626cf80cc00ebd ROR{NF} byte ptr [r22], 0xbd +0000000000005B14 626cf80cc00ebd RORNF byte ptr [r22], 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -74456,7 +74456,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000005B1B 626cf80cc0cebd ROR{NF} r22b, 0xbd +0000000000005B1B 626cf80cc0cebd RORNF r22b, 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -74474,7 +74474,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000005B22 626c780cc10ebd ROR{NF} dword ptr [r22], 0xbd +0000000000005B22 626c780cc10ebd RORNF dword ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -74493,7 +74493,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000005B29 626c780cc1cebd ROR{NF} r22d, 0xbd +0000000000005B29 626c780cc1cebd RORNF r22d, 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -74511,7 +74511,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000005B30 626cf80cc10ebd ROR{NF} qword ptr [r22], 0xbd +0000000000005B30 626cf80cc10ebd RORNF qword ptr [r22], 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -74530,7 +74530,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000005B37 626cf80cc1cebd ROR{NF} r22, 0xbd +0000000000005B37 626cf80cc1cebd RORNF r22, 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -74548,7 +74548,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000005B3E 626c790cc10ebd ROR{NF} word ptr [r22], 0xbd +0000000000005B3E 626c790cc10ebd RORNF word ptr [r22], 0xbd DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -74567,7 +74567,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000005B45 626c790cc1cebd ROR{NF} r22w, 0xbd +0000000000005B45 626c790cc1cebd RORNF r22w, 0xbd DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -74585,7 +74585,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: General Purpose, RegSize: 2, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000005B4C 626cf90cc10ebd ROR{NF} qword ptr [r22], 0xbd +0000000000005B4C 626cf90cc10ebd RORNF qword ptr [r22], 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -74604,7 +74604,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000005B53 626cf90cc1cebd ROR{NF} r22, 0xbd +0000000000005B53 626cf90cc1cebd RORNF r22, 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -74622,7 +74622,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000005B5A 626c780cd00e ROR{NF} byte ptr [r22], 1 +0000000000005B5A 626c780cd00e RORNF byte ptr [r22], 1 DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -74641,7 +74641,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -0000000000005B60 626c780cd0ce ROR{NF} r22b, 1 +0000000000005B60 626c780cd0ce RORNF r22b, 1 DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -74659,7 +74659,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -0000000000005B66 626cf80cd00e ROR{NF} byte ptr [r22], 1 +0000000000005B66 626cf80cd00e RORNF byte ptr [r22], 1 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -74678,7 +74678,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -0000000000005B6C 626cf80cd0ce ROR{NF} r22b, 1 +0000000000005B6C 626cf80cd0ce RORNF r22b, 1 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -74696,7 +74696,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -0000000000005B72 626c780cd10e ROR{NF} dword ptr [r22], 1 +0000000000005B72 626c780cd10e RORNF dword ptr [r22], 1 DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -74715,7 +74715,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -0000000000005B78 626c780cd1ce ROR{NF} r22d, 1 +0000000000005B78 626c780cd1ce RORNF r22d, 1 DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -74733,7 +74733,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -0000000000005B7E 626cf80cd10e ROR{NF} qword ptr [r22], 1 +0000000000005B7E 626cf80cd10e RORNF qword ptr [r22], 1 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -74752,7 +74752,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -0000000000005B84 626cf80cd1ce ROR{NF} r22, 1 +0000000000005B84 626cf80cd1ce RORNF r22, 1 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -74770,7 +74770,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -0000000000005B8A 626c790cd10e ROR{NF} word ptr [r22], 1 +0000000000005B8A 626c790cd10e RORNF word ptr [r22], 1 DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -74789,7 +74789,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -0000000000005B90 626c790cd1ce ROR{NF} r22w, 1 +0000000000005B90 626c790cd1ce RORNF r22w, 1 DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -74807,7 +74807,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: General Purpose, RegSize: 2, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -0000000000005B96 626cf90cd10e ROR{NF} qword ptr [r22], 1 +0000000000005B96 626cf90cd10e RORNF qword ptr [r22], 1 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -74826,7 +74826,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -0000000000005B9C 626cf90cd1ce ROR{NF} r22, 1 +0000000000005B9C 626cf90cd1ce RORNF r22, 1 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -74844,7 +74844,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -0000000000005BA2 626c780cd20e ROR{NF} byte ptr [r22], cl +0000000000005BA2 626c780cd20e RORNF byte ptr [r22], cl DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -74863,7 +74863,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000005BA8 626c780cd2ce ROR{NF} r22b, cl +0000000000005BA8 626c780cd2ce RORNF r22b, cl DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -74881,7 +74881,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000005BAE 626cf80cd20e ROR{NF} byte ptr [r22], cl +0000000000005BAE 626cf80cd20e RORNF byte ptr [r22], cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -74900,7 +74900,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000005BB4 626cf80cd2ce ROR{NF} r22b, cl +0000000000005BB4 626cf80cd2ce RORNF r22b, cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -74918,7 +74918,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000005BBA 626c780cd30e ROR{NF} dword ptr [r22], cl +0000000000005BBA 626c780cd30e RORNF dword ptr [r22], cl DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -74937,7 +74937,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000005BC0 626c780cd3ce ROR{NF} r22d, cl +0000000000005BC0 626c780cd3ce RORNF r22d, cl DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -74955,7 +74955,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000005BC6 626cf80cd30e ROR{NF} qword ptr [r22], cl +0000000000005BC6 626cf80cd30e RORNF qword ptr [r22], cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -74974,7 +74974,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000005BCC 626cf80cd3ce ROR{NF} r22, cl +0000000000005BCC 626cf80cd3ce RORNF r22, cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -74992,7 +74992,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000005BD2 626c790cd30e ROR{NF} word ptr [r22], cl +0000000000005BD2 626c790cd30e RORNF word ptr [r22], cl DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -75011,7 +75011,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000005BD8 626c790cd3ce ROR{NF} r22w, cl +0000000000005BD8 626c790cd3ce RORNF r22w, cl DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -75029,7 +75029,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: General Purpose, RegSize: 2, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000005BDE 626cf90cd30e ROR{NF} qword ptr [r22], cl +0000000000005BDE 626cf90cd30e RORNF qword ptr [r22], cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -75048,7 +75048,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000005BE4 626cf90cd3ce ROR{NF} r22, cl +0000000000005BE4 626cf90cd3ce RORNF r22, cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -75876,7 +75876,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 Operand: 3, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000005CCE 626c781cc00ebd ROR{NF} al, byte ptr [r22], 0xbd +0000000000005CCE 626c781cc00ebd RORNF al, byte ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -75896,7 +75896,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000005CD5 626c781cc0cebd ROR{NF} al, r22b, 0xbd +0000000000005CD5 626c781cc0cebd RORNF al, r22b, 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -75915,7 +75915,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000005CDC 626cf81cc00ebd ROR{NF} al, byte ptr [r22], 0xbd +0000000000005CDC 626cf81cc00ebd RORNF al, byte ptr [r22], 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -75935,7 +75935,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000005CE3 626cf81cc0cebd ROR{NF} al, r22b, 0xbd +0000000000005CE3 626cf81cc0cebd RORNF al, r22b, 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -75954,7 +75954,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000005CEA 626c781cc10ebd ROR{NF} eax, dword ptr [r22], 0xbd +0000000000005CEA 626c781cc10ebd RORNF eax, dword ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -75974,7 +75974,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000005CF1 626c781cc1cebd ROR{NF} eax, r22d, 0xbd +0000000000005CF1 626c781cc1cebd RORNF eax, r22d, 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -75993,7 +75993,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000005CF8 626cf81cc10ebd ROR{NF} rax, qword ptr [r22], 0xbd +0000000000005CF8 626cf81cc10ebd RORNF rax, qword ptr [r22], 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -76013,7 +76013,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000005CFF 626cf81cc1cebd ROR{NF} rax, r22, 0xbd +0000000000005CFF 626cf81cc1cebd RORNF rax, r22, 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -76032,7 +76032,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000005D06 626c791cc10ebd ROR{NF} ax, word ptr [r22], 0xbd +0000000000005D06 626c791cc10ebd RORNF ax, word ptr [r22], 0xbd DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -76052,7 +76052,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000005D0D 626c791cc1cebd ROR{NF} ax, r22w, 0xbd +0000000000005D0D 626c791cc1cebd RORNF ax, r22w, 0xbd DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -76071,7 +76071,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: General Purpose, RegSize: 2, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000005D14 626cf91cc10ebd ROR{NF} rax, qword ptr [r22], 0xbd +0000000000005D14 626cf91cc10ebd RORNF rax, qword ptr [r22], 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -76091,7 +76091,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000005D1B 626cf91cc1cebd ROR{NF} rax, r22, 0xbd +0000000000005D1B 626cf91cc1cebd RORNF rax, r22, 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -76110,7 +76110,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000005D22 626c781cd00e ROR{NF} al, byte ptr [r22], 1 +0000000000005D22 626c781cd00e RORNF al, byte ptr [r22], 1 DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -76130,7 +76130,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -0000000000005D28 626c781cd0ce ROR{NF} al, r22b, 1 +0000000000005D28 626c781cd0ce RORNF al, r22b, 1 DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -76149,7 +76149,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -0000000000005D2E 626cf81cd00e ROR{NF} al, byte ptr [r22], 1 +0000000000005D2E 626cf81cd00e RORNF al, byte ptr [r22], 1 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -76169,7 +76169,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -0000000000005D34 626cf81cd0ce ROR{NF} al, r22b, 1 +0000000000005D34 626cf81cd0ce RORNF al, r22b, 1 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -76188,7 +76188,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -0000000000005D3A 626c781cd10e ROR{NF} eax, dword ptr [r22], 1 +0000000000005D3A 626c781cd10e RORNF eax, dword ptr [r22], 1 DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -76208,7 +76208,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -0000000000005D40 626c781cd1ce ROR{NF} eax, r22d, 1 +0000000000005D40 626c781cd1ce RORNF eax, r22d, 1 DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -76227,7 +76227,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -0000000000005D46 626cf81cd10e ROR{NF} rax, qword ptr [r22], 1 +0000000000005D46 626cf81cd10e RORNF rax, qword ptr [r22], 1 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -76247,7 +76247,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -0000000000005D4C 626cf81cd1ce ROR{NF} rax, r22, 1 +0000000000005D4C 626cf81cd1ce RORNF rax, r22, 1 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -76266,7 +76266,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -0000000000005D52 626c791cd10e ROR{NF} ax, word ptr [r22], 1 +0000000000005D52 626c791cd10e RORNF ax, word ptr [r22], 1 DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -76286,7 +76286,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -0000000000005D58 626c791cd1ce ROR{NF} ax, r22w, 1 +0000000000005D58 626c791cd1ce RORNF ax, r22w, 1 DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -76305,7 +76305,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: General Purpose, RegSize: 2, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -0000000000005D5E 626cf91cd10e ROR{NF} rax, qword ptr [r22], 1 +0000000000005D5E 626cf91cd10e RORNF rax, qword ptr [r22], 1 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -76325,7 +76325,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -0000000000005D64 626cf91cd1ce ROR{NF} rax, r22, 1 +0000000000005D64 626cf91cd1ce RORNF rax, r22, 1 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -76344,7 +76344,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -0000000000005D6A 626c781cd20e ROR{NF} al, byte ptr [r22], cl +0000000000005D6A 626c781cd20e RORNF al, byte ptr [r22], cl DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -76364,7 +76364,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000005D70 626c781cd2ce ROR{NF} al, r22b, cl +0000000000005D70 626c781cd2ce RORNF al, r22b, cl DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -76383,7 +76383,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000005D76 626cf81cd20e ROR{NF} al, byte ptr [r22], cl +0000000000005D76 626cf81cd20e RORNF al, byte ptr [r22], cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -76403,7 +76403,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000005D7C 626cf81cd2ce ROR{NF} al, r22b, cl +0000000000005D7C 626cf81cd2ce RORNF al, r22b, cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -76422,7 +76422,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000005D82 626c781cd30e ROR{NF} eax, dword ptr [r22], cl +0000000000005D82 626c781cd30e RORNF eax, dword ptr [r22], cl DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -76442,7 +76442,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000005D88 626c781cd3ce ROR{NF} eax, r22d, cl +0000000000005D88 626c781cd3ce RORNF eax, r22d, cl DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -76461,7 +76461,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000005D8E 626cf81cd30e ROR{NF} rax, qword ptr [r22], cl +0000000000005D8E 626cf81cd30e RORNF rax, qword ptr [r22], cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -76481,7 +76481,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000005D94 626cf81cd3ce ROR{NF} rax, r22, cl +0000000000005D94 626cf81cd3ce RORNF rax, r22, cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -76500,7 +76500,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000005D9A 626c791cd30e ROR{NF} ax, word ptr [r22], cl +0000000000005D9A 626c791cd30e RORNF ax, word ptr [r22], cl DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -76520,7 +76520,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000005DA0 626c791cd3ce ROR{NF} ax, r22w, cl +0000000000005DA0 626c791cd3ce RORNF ax, r22w, cl DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -76539,7 +76539,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: General Purpose, RegSize: 2, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000005DA6 626cf91cd30e ROR{NF} rax, qword ptr [r22], cl +0000000000005DA6 626cf91cd30e RORNF rax, qword ptr [r22], cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -76559,7 +76559,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000005DAC 626cf91cd3ce ROR{NF} rax, r22, cl +0000000000005DAC 626cf91cd3ce RORNF rax, r22, cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ROTATE, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -77430,7 +77430,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 Operand: 2, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000005EB2 626c780cc036bd SAL{NF} byte ptr [r22], 0xbd +0000000000005EB2 626c780cc036bd SALNF byte ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -77449,7 +77449,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000005EB9 626c780cc0f6bd SAL{NF} r22b, 0xbd +0000000000005EB9 626c780cc0f6bd SALNF r22b, 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -77467,7 +77467,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000005EC0 626cf80cc036bd SAL{NF} byte ptr [r22], 0xbd +0000000000005EC0 626cf80cc036bd SALNF byte ptr [r22], 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -77486,7 +77486,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000005EC7 626cf80cc0f6bd SAL{NF} r22b, 0xbd +0000000000005EC7 626cf80cc0f6bd SALNF r22b, 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -77504,7 +77504,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000005ECE 626c780cc136bd SAL{NF} dword ptr [r22], 0xbd +0000000000005ECE 626c780cc136bd SALNF dword ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -77523,7 +77523,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000005ED5 626c780cc1f6bd SAL{NF} r22d, 0xbd +0000000000005ED5 626c780cc1f6bd SALNF r22d, 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -77541,7 +77541,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000005EDC 626cf80cc136bd SAL{NF} qword ptr [r22], 0xbd +0000000000005EDC 626cf80cc136bd SALNF qword ptr [r22], 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -77560,7 +77560,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000005EE3 626cf80cc1f6bd SAL{NF} r22, 0xbd +0000000000005EE3 626cf80cc1f6bd SALNF r22, 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -77578,7 +77578,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000005EEA 626c790cc136bd SAL{NF} word ptr [r22], 0xbd +0000000000005EEA 626c790cc136bd SALNF word ptr [r22], 0xbd DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -77597,7 +77597,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000005EF1 626c790cc1f6bd SAL{NF} r22w, 0xbd +0000000000005EF1 626c790cc1f6bd SALNF r22w, 0xbd DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -77615,7 +77615,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: General Purpose, RegSize: 2, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000005EF8 626cf90cc136bd SAL{NF} qword ptr [r22], 0xbd +0000000000005EF8 626cf90cc136bd SALNF qword ptr [r22], 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -77634,7 +77634,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000005EFF 626cf90cc1f6bd SAL{NF} r22, 0xbd +0000000000005EFF 626cf90cc1f6bd SALNF r22, 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -77652,7 +77652,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000005F06 626c780cd036 SAL{NF} byte ptr [r22], 1 +0000000000005F06 626c780cd036 SALNF byte ptr [r22], 1 DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -77671,7 +77671,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -0000000000005F0C 626c780cd0f6 SAL{NF} r22b, 1 +0000000000005F0C 626c780cd0f6 SALNF r22b, 1 DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -77689,7 +77689,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -0000000000005F12 626cf80cd036 SAL{NF} byte ptr [r22], 1 +0000000000005F12 626cf80cd036 SALNF byte ptr [r22], 1 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -77708,7 +77708,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -0000000000005F18 626cf80cd0f6 SAL{NF} r22b, 1 +0000000000005F18 626cf80cd0f6 SALNF r22b, 1 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -77726,7 +77726,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -0000000000005F1E 626c780cd136 SAL{NF} dword ptr [r22], 1 +0000000000005F1E 626c780cd136 SALNF dword ptr [r22], 1 DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -77745,7 +77745,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -0000000000005F24 626c780cd1f6 SAL{NF} r22d, 1 +0000000000005F24 626c780cd1f6 SALNF r22d, 1 DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -77763,7 +77763,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -0000000000005F2A 626cf80cd136 SAL{NF} qword ptr [r22], 1 +0000000000005F2A 626cf80cd136 SALNF qword ptr [r22], 1 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -77782,7 +77782,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -0000000000005F30 626cf80cd1f6 SAL{NF} r22, 1 +0000000000005F30 626cf80cd1f6 SALNF r22, 1 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -77800,7 +77800,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -0000000000005F36 626c790cd136 SAL{NF} word ptr [r22], 1 +0000000000005F36 626c790cd136 SALNF word ptr [r22], 1 DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -77819,7 +77819,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -0000000000005F3C 626c790cd1f6 SAL{NF} r22w, 1 +0000000000005F3C 626c790cd1f6 SALNF r22w, 1 DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -77837,7 +77837,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: General Purpose, RegSize: 2, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -0000000000005F42 626cf90cd136 SAL{NF} qword ptr [r22], 1 +0000000000005F42 626cf90cd136 SALNF qword ptr [r22], 1 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -77856,7 +77856,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -0000000000005F48 626cf90cd1f6 SAL{NF} r22, 1 +0000000000005F48 626cf90cd1f6 SALNF r22, 1 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -77874,7 +77874,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -0000000000005F4E 626c780cd236 SAL{NF} byte ptr [r22], cl +0000000000005F4E 626c780cd236 SALNF byte ptr [r22], cl DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -77893,7 +77893,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000005F54 626c780cd2f6 SAL{NF} r22b, cl +0000000000005F54 626c780cd2f6 SALNF r22b, cl DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -77911,7 +77911,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000005F5A 626cf80cd236 SAL{NF} byte ptr [r22], cl +0000000000005F5A 626cf80cd236 SALNF byte ptr [r22], cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -77930,7 +77930,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000005F60 626cf80cd2f6 SAL{NF} r22b, cl +0000000000005F60 626cf80cd2f6 SALNF r22b, cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -77948,7 +77948,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000005F66 626c780cd336 SAL{NF} dword ptr [r22], cl +0000000000005F66 626c780cd336 SALNF dword ptr [r22], cl DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -77967,7 +77967,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000005F6C 626c780cd3f6 SAL{NF} r22d, cl +0000000000005F6C 626c780cd3f6 SALNF r22d, cl DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -77985,7 +77985,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000005F72 626cf80cd336 SAL{NF} qword ptr [r22], cl +0000000000005F72 626cf80cd336 SALNF qword ptr [r22], cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -78004,7 +78004,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000005F78 626cf80cd3f6 SAL{NF} r22, cl +0000000000005F78 626cf80cd3f6 SALNF r22, cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -78022,7 +78022,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000005F7E 626c790cd336 SAL{NF} word ptr [r22], cl +0000000000005F7E 626c790cd336 SALNF word ptr [r22], cl DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -78041,7 +78041,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000005F84 626c790cd3f6 SAL{NF} r22w, cl +0000000000005F84 626c790cd3f6 SALNF r22w, cl DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -78059,7 +78059,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: General Purpose, RegSize: 2, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000005F8A 626cf90cd336 SAL{NF} qword ptr [r22], cl +0000000000005F8A 626cf90cd336 SALNF qword ptr [r22], cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -78078,7 +78078,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000005F90 626cf90cd3f6 SAL{NF} r22, cl +0000000000005F90 626cf90cd3f6 SALNF r22, cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -78906,7 +78906,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 Operand: 3, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -000000000000607A 626c781cc036bd SAL{NF} al, byte ptr [r22], 0xbd +000000000000607A 626c781cc036bd SALNF al, byte ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -78926,7 +78926,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000006081 626c781cc0f6bd SAL{NF} al, r22b, 0xbd +0000000000006081 626c781cc0f6bd SALNF al, r22b, 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -78945,7 +78945,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000006088 626cf81cc036bd SAL{NF} al, byte ptr [r22], 0xbd +0000000000006088 626cf81cc036bd SALNF al, byte ptr [r22], 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -78965,7 +78965,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -000000000000608F 626cf81cc0f6bd SAL{NF} al, r22b, 0xbd +000000000000608F 626cf81cc0f6bd SALNF al, r22b, 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -78984,7 +78984,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000006096 626c781cc136bd SAL{NF} eax, dword ptr [r22], 0xbd +0000000000006096 626c781cc136bd SALNF eax, dword ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -79004,7 +79004,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -000000000000609D 626c781cc1f6bd SAL{NF} eax, r22d, 0xbd +000000000000609D 626c781cc1f6bd SALNF eax, r22d, 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -79023,7 +79023,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000060A4 626cf81cc136bd SAL{NF} rax, qword ptr [r22], 0xbd +00000000000060A4 626cf81cc136bd SALNF rax, qword ptr [r22], 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -79043,7 +79043,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000060AB 626cf81cc1f6bd SAL{NF} rax, r22, 0xbd +00000000000060AB 626cf81cc1f6bd SALNF rax, r22, 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -79062,7 +79062,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000060B2 626c791cc136bd SAL{NF} ax, word ptr [r22], 0xbd +00000000000060B2 626c791cc136bd SALNF ax, word ptr [r22], 0xbd DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -79082,7 +79082,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000060B9 626c791cc1f6bd SAL{NF} ax, r22w, 0xbd +00000000000060B9 626c791cc1f6bd SALNF ax, r22w, 0xbd DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -79101,7 +79101,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: General Purpose, RegSize: 2, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000060C0 626cf91cc136bd SAL{NF} rax, qword ptr [r22], 0xbd +00000000000060C0 626cf91cc136bd SALNF rax, qword ptr [r22], 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -79121,7 +79121,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000060C7 626cf91cc1f6bd SAL{NF} rax, r22, 0xbd +00000000000060C7 626cf91cc1f6bd SALNF rax, r22, 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -79140,7 +79140,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000060CE 626c781cd036 SAL{NF} al, byte ptr [r22], 1 +00000000000060CE 626c781cd036 SALNF al, byte ptr [r22], 1 DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -79160,7 +79160,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -00000000000060D4 626c781cd0f6 SAL{NF} al, r22b, 1 +00000000000060D4 626c781cd0f6 SALNF al, r22b, 1 DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -79179,7 +79179,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -00000000000060DA 626cf81cd036 SAL{NF} al, byte ptr [r22], 1 +00000000000060DA 626cf81cd036 SALNF al, byte ptr [r22], 1 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -79199,7 +79199,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -00000000000060E0 626cf81cd0f6 SAL{NF} al, r22b, 1 +00000000000060E0 626cf81cd0f6 SALNF al, r22b, 1 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -79218,7 +79218,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -00000000000060E6 626c781cd136 SAL{NF} eax, dword ptr [r22], 1 +00000000000060E6 626c781cd136 SALNF eax, dword ptr [r22], 1 DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -79238,7 +79238,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -00000000000060EC 626c781cd1f6 SAL{NF} eax, r22d, 1 +00000000000060EC 626c781cd1f6 SALNF eax, r22d, 1 DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -79257,7 +79257,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -00000000000060F2 626cf81cd136 SAL{NF} rax, qword ptr [r22], 1 +00000000000060F2 626cf81cd136 SALNF rax, qword ptr [r22], 1 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -79277,7 +79277,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -00000000000060F8 626cf81cd1f6 SAL{NF} rax, r22, 1 +00000000000060F8 626cf81cd1f6 SALNF rax, r22, 1 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -79296,7 +79296,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -00000000000060FE 626c791cd136 SAL{NF} ax, word ptr [r22], 1 +00000000000060FE 626c791cd136 SALNF ax, word ptr [r22], 1 DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -79316,7 +79316,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -0000000000006104 626c791cd1f6 SAL{NF} ax, r22w, 1 +0000000000006104 626c791cd1f6 SALNF ax, r22w, 1 DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -79335,7 +79335,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: General Purpose, RegSize: 2, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -000000000000610A 626cf91cd136 SAL{NF} rax, qword ptr [r22], 1 +000000000000610A 626cf91cd136 SALNF rax, qword ptr [r22], 1 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -79355,7 +79355,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -0000000000006110 626cf91cd1f6 SAL{NF} rax, r22, 1 +0000000000006110 626cf91cd1f6 SALNF rax, r22, 1 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -79374,7 +79374,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -0000000000006116 626c781cd236 SAL{NF} al, byte ptr [r22], cl +0000000000006116 626c781cd236 SALNF al, byte ptr [r22], cl DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -79394,7 +79394,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -000000000000611C 626c781cd2f6 SAL{NF} al, r22b, cl +000000000000611C 626c781cd2f6 SALNF al, r22b, cl DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -79413,7 +79413,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000006122 626cf81cd236 SAL{NF} al, byte ptr [r22], cl +0000000000006122 626cf81cd236 SALNF al, byte ptr [r22], cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -79433,7 +79433,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000006128 626cf81cd2f6 SAL{NF} al, r22b, cl +0000000000006128 626cf81cd2f6 SALNF al, r22b, cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -79452,7 +79452,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -000000000000612E 626c781cd336 SAL{NF} eax, dword ptr [r22], cl +000000000000612E 626c781cd336 SALNF eax, dword ptr [r22], cl DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -79472,7 +79472,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000006134 626c781cd3f6 SAL{NF} eax, r22d, cl +0000000000006134 626c781cd3f6 SALNF eax, r22d, cl DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -79491,7 +79491,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -000000000000613A 626cf81cd336 SAL{NF} rax, qword ptr [r22], cl +000000000000613A 626cf81cd336 SALNF rax, qword ptr [r22], cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -79511,7 +79511,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000006140 626cf81cd3f6 SAL{NF} rax, r22, cl +0000000000006140 626cf81cd3f6 SALNF rax, r22, cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -79530,7 +79530,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000006146 626c791cd336 SAL{NF} ax, word ptr [r22], cl +0000000000006146 626c791cd336 SALNF ax, word ptr [r22], cl DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -79550,7 +79550,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -000000000000614C 626c791cd3f6 SAL{NF} ax, r22w, cl +000000000000614C 626c791cd3f6 SALNF ax, r22w, cl DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -79569,7 +79569,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: General Purpose, RegSize: 2, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000006152 626cf91cd336 SAL{NF} rax, qword ptr [r22], cl +0000000000006152 626cf91cd336 SALNF rax, qword ptr [r22], cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -79589,7 +79589,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000006158 626cf91cd3f6 SAL{NF} rax, r22, cl +0000000000006158 626cf91cd3f6 SALNF rax, r22, cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -80382,7 +80382,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 Operand: 2, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000006242 626c780cc03ebd SAR{NF} byte ptr [r22], 0xbd +0000000000006242 626c780cc03ebd SARNF byte ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -80401,7 +80401,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000006249 626c780cc0febd SAR{NF} r22b, 0xbd +0000000000006249 626c780cc0febd SARNF r22b, 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -80419,7 +80419,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000006250 626cf80cc03ebd SAR{NF} byte ptr [r22], 0xbd +0000000000006250 626cf80cc03ebd SARNF byte ptr [r22], 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -80438,7 +80438,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000006257 626cf80cc0febd SAR{NF} r22b, 0xbd +0000000000006257 626cf80cc0febd SARNF r22b, 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -80456,7 +80456,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -000000000000625E 626c780cc13ebd SAR{NF} dword ptr [r22], 0xbd +000000000000625E 626c780cc13ebd SARNF dword ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -80475,7 +80475,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000006265 626c780cc1febd SAR{NF} r22d, 0xbd +0000000000006265 626c780cc1febd SARNF r22d, 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -80493,7 +80493,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -000000000000626C 626cf80cc13ebd SAR{NF} qword ptr [r22], 0xbd +000000000000626C 626cf80cc13ebd SARNF qword ptr [r22], 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -80512,7 +80512,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000006273 626cf80cc1febd SAR{NF} r22, 0xbd +0000000000006273 626cf80cc1febd SARNF r22, 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -80530,7 +80530,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -000000000000627A 626c790cc13ebd SAR{NF} word ptr [r22], 0xbd +000000000000627A 626c790cc13ebd SARNF word ptr [r22], 0xbd DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -80549,7 +80549,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000006281 626c790cc1febd SAR{NF} r22w, 0xbd +0000000000006281 626c790cc1febd SARNF r22w, 0xbd DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -80567,7 +80567,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: General Purpose, RegSize: 2, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000006288 626cf90cc13ebd SAR{NF} qword ptr [r22], 0xbd +0000000000006288 626cf90cc13ebd SARNF qword ptr [r22], 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -80586,7 +80586,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -000000000000628F 626cf90cc1febd SAR{NF} r22, 0xbd +000000000000628F 626cf90cc1febd SARNF r22, 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -80604,7 +80604,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000006296 626c780cd03e SAR{NF} byte ptr [r22], 1 +0000000000006296 626c780cd03e SARNF byte ptr [r22], 1 DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -80623,7 +80623,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -000000000000629C 626c780cd0fe SAR{NF} r22b, 1 +000000000000629C 626c780cd0fe SARNF r22b, 1 DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -80641,7 +80641,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -00000000000062A2 626cf80cd03e SAR{NF} byte ptr [r22], 1 +00000000000062A2 626cf80cd03e SARNF byte ptr [r22], 1 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -80660,7 +80660,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -00000000000062A8 626cf80cd0fe SAR{NF} r22b, 1 +00000000000062A8 626cf80cd0fe SARNF r22b, 1 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -80678,7 +80678,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -00000000000062AE 626c780cd13e SAR{NF} dword ptr [r22], 1 +00000000000062AE 626c780cd13e SARNF dword ptr [r22], 1 DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -80697,7 +80697,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -00000000000062B4 626c780cd1fe SAR{NF} r22d, 1 +00000000000062B4 626c780cd1fe SARNF r22d, 1 DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -80715,7 +80715,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -00000000000062BA 626cf80cd13e SAR{NF} qword ptr [r22], 1 +00000000000062BA 626cf80cd13e SARNF qword ptr [r22], 1 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -80734,7 +80734,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -00000000000062C0 626cf80cd1fe SAR{NF} r22, 1 +00000000000062C0 626cf80cd1fe SARNF r22, 1 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -80752,7 +80752,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -00000000000062C6 626c790cd13e SAR{NF} word ptr [r22], 1 +00000000000062C6 626c790cd13e SARNF word ptr [r22], 1 DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -80771,7 +80771,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -00000000000062CC 626c790cd1fe SAR{NF} r22w, 1 +00000000000062CC 626c790cd1fe SARNF r22w, 1 DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -80789,7 +80789,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: General Purpose, RegSize: 2, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -00000000000062D2 626cf90cd13e SAR{NF} qword ptr [r22], 1 +00000000000062D2 626cf90cd13e SARNF qword ptr [r22], 1 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -80808,7 +80808,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -00000000000062D8 626cf90cd1fe SAR{NF} r22, 1 +00000000000062D8 626cf90cd1fe SARNF r22, 1 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -80826,7 +80826,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -00000000000062DE 626c780cd23e SAR{NF} byte ptr [r22], cl +00000000000062DE 626c780cd23e SARNF byte ptr [r22], cl DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -80845,7 +80845,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -00000000000062E4 626c780cd2fe SAR{NF} r22b, cl +00000000000062E4 626c780cd2fe SARNF r22b, cl DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -80863,7 +80863,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -00000000000062EA 626cf80cd23e SAR{NF} byte ptr [r22], cl +00000000000062EA 626cf80cd23e SARNF byte ptr [r22], cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -80882,7 +80882,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -00000000000062F0 626cf80cd2fe SAR{NF} r22b, cl +00000000000062F0 626cf80cd2fe SARNF r22b, cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -80900,7 +80900,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -00000000000062F6 626c780cd33e SAR{NF} dword ptr [r22], cl +00000000000062F6 626c780cd33e SARNF dword ptr [r22], cl DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -80919,7 +80919,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -00000000000062FC 626c780cd3fe SAR{NF} r22d, cl +00000000000062FC 626c780cd3fe SARNF r22d, cl DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -80937,7 +80937,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000006302 626cf80cd33e SAR{NF} qword ptr [r22], cl +0000000000006302 626cf80cd33e SARNF qword ptr [r22], cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -80956,7 +80956,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000006308 626cf80cd3fe SAR{NF} r22, cl +0000000000006308 626cf80cd3fe SARNF r22, cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -80974,7 +80974,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -000000000000630E 626c790cd33e SAR{NF} word ptr [r22], cl +000000000000630E 626c790cd33e SARNF word ptr [r22], cl DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -80993,7 +80993,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000006314 626c790cd3fe SAR{NF} r22w, cl +0000000000006314 626c790cd3fe SARNF r22w, cl DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -81011,7 +81011,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: General Purpose, RegSize: 2, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -000000000000631A 626cf90cd33e SAR{NF} qword ptr [r22], cl +000000000000631A 626cf90cd33e SARNF qword ptr [r22], cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -81030,7 +81030,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000006320 626cf90cd3fe SAR{NF} r22, cl +0000000000006320 626cf90cd3fe SARNF r22, cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -81858,7 +81858,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 Operand: 3, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -000000000000640A 626c781cc03ebd SAR{NF} al, byte ptr [r22], 0xbd +000000000000640A 626c781cc03ebd SARNF al, byte ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -81878,7 +81878,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000006411 626c781cc0febd SAR{NF} al, r22b, 0xbd +0000000000006411 626c781cc0febd SARNF al, r22b, 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -81897,7 +81897,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000006418 626cf81cc03ebd SAR{NF} al, byte ptr [r22], 0xbd +0000000000006418 626cf81cc03ebd SARNF al, byte ptr [r22], 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -81917,7 +81917,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -000000000000641F 626cf81cc0febd SAR{NF} al, r22b, 0xbd +000000000000641F 626cf81cc0febd SARNF al, r22b, 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -81936,7 +81936,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000006426 626c781cc13ebd SAR{NF} eax, dword ptr [r22], 0xbd +0000000000006426 626c781cc13ebd SARNF eax, dword ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -81956,7 +81956,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -000000000000642D 626c781cc1febd SAR{NF} eax, r22d, 0xbd +000000000000642D 626c781cc1febd SARNF eax, r22d, 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -81975,7 +81975,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000006434 626cf81cc13ebd SAR{NF} rax, qword ptr [r22], 0xbd +0000000000006434 626cf81cc13ebd SARNF rax, qword ptr [r22], 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -81995,7 +81995,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -000000000000643B 626cf81cc1febd SAR{NF} rax, r22, 0xbd +000000000000643B 626cf81cc1febd SARNF rax, r22, 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -82014,7 +82014,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000006442 626c791cc13ebd SAR{NF} ax, word ptr [r22], 0xbd +0000000000006442 626c791cc13ebd SARNF ax, word ptr [r22], 0xbd DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -82034,7 +82034,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000006449 626c791cc1febd SAR{NF} ax, r22w, 0xbd +0000000000006449 626c791cc1febd SARNF ax, r22w, 0xbd DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -82053,7 +82053,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: General Purpose, RegSize: 2, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000006450 626cf91cc13ebd SAR{NF} rax, qword ptr [r22], 0xbd +0000000000006450 626cf91cc13ebd SARNF rax, qword ptr [r22], 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -82073,7 +82073,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000006457 626cf91cc1febd SAR{NF} rax, r22, 0xbd +0000000000006457 626cf91cc1febd SARNF rax, r22, 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -82092,7 +82092,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -000000000000645E 626c781cd03e SAR{NF} al, byte ptr [r22], 1 +000000000000645E 626c781cd03e SARNF al, byte ptr [r22], 1 DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -82112,7 +82112,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -0000000000006464 626c781cd0fe SAR{NF} al, r22b, 1 +0000000000006464 626c781cd0fe SARNF al, r22b, 1 DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -82131,7 +82131,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -000000000000646A 626cf81cd03e SAR{NF} al, byte ptr [r22], 1 +000000000000646A 626cf81cd03e SARNF al, byte ptr [r22], 1 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -82151,7 +82151,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -0000000000006470 626cf81cd0fe SAR{NF} al, r22b, 1 +0000000000006470 626cf81cd0fe SARNF al, r22b, 1 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -82170,7 +82170,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -0000000000006476 626c781cd13e SAR{NF} eax, dword ptr [r22], 1 +0000000000006476 626c781cd13e SARNF eax, dword ptr [r22], 1 DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -82190,7 +82190,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -000000000000647C 626c781cd1fe SAR{NF} eax, r22d, 1 +000000000000647C 626c781cd1fe SARNF eax, r22d, 1 DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -82209,7 +82209,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -0000000000006482 626cf81cd13e SAR{NF} rax, qword ptr [r22], 1 +0000000000006482 626cf81cd13e SARNF rax, qword ptr [r22], 1 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -82229,7 +82229,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -0000000000006488 626cf81cd1fe SAR{NF} rax, r22, 1 +0000000000006488 626cf81cd1fe SARNF rax, r22, 1 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -82248,7 +82248,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -000000000000648E 626c791cd13e SAR{NF} ax, word ptr [r22], 1 +000000000000648E 626c791cd13e SARNF ax, word ptr [r22], 1 DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -82268,7 +82268,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -0000000000006494 626c791cd1fe SAR{NF} ax, r22w, 1 +0000000000006494 626c791cd1fe SARNF ax, r22w, 1 DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -82287,7 +82287,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: General Purpose, RegSize: 2, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -000000000000649A 626cf91cd13e SAR{NF} rax, qword ptr [r22], 1 +000000000000649A 626cf91cd13e SARNF rax, qword ptr [r22], 1 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -82307,7 +82307,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -00000000000064A0 626cf91cd1fe SAR{NF} rax, r22, 1 +00000000000064A0 626cf91cd1fe SARNF rax, r22, 1 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -82326,7 +82326,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -00000000000064A6 626c781cd23e SAR{NF} al, byte ptr [r22], cl +00000000000064A6 626c781cd23e SARNF al, byte ptr [r22], cl DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -82346,7 +82346,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -00000000000064AC 626c781cd2fe SAR{NF} al, r22b, cl +00000000000064AC 626c781cd2fe SARNF al, r22b, cl DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -82365,7 +82365,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -00000000000064B2 626cf81cd23e SAR{NF} al, byte ptr [r22], cl +00000000000064B2 626cf81cd23e SARNF al, byte ptr [r22], cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -82385,7 +82385,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -00000000000064B8 626cf81cd2fe SAR{NF} al, r22b, cl +00000000000064B8 626cf81cd2fe SARNF al, r22b, cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -82404,7 +82404,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -00000000000064BE 626c781cd33e SAR{NF} eax, dword ptr [r22], cl +00000000000064BE 626c781cd33e SARNF eax, dword ptr [r22], cl DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -82424,7 +82424,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -00000000000064C4 626c781cd3fe SAR{NF} eax, r22d, cl +00000000000064C4 626c781cd3fe SARNF eax, r22d, cl DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -82443,7 +82443,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -00000000000064CA 626cf81cd33e SAR{NF} rax, qword ptr [r22], cl +00000000000064CA 626cf81cd33e SARNF rax, qword ptr [r22], cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -82463,7 +82463,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -00000000000064D0 626cf81cd3fe SAR{NF} rax, r22, cl +00000000000064D0 626cf81cd3fe SARNF rax, r22, cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -82482,7 +82482,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -00000000000064D6 626c791cd33e SAR{NF} ax, word ptr [r22], cl +00000000000064D6 626c791cd33e SARNF ax, word ptr [r22], cl DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -82502,7 +82502,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -00000000000064DC 626c791cd3fe SAR{NF} ax, r22w, cl +00000000000064DC 626c791cd3fe SARNF ax, r22w, cl DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -82521,7 +82521,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: General Purpose, RegSize: 2, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -00000000000064E2 626cf91cd33e SAR{NF} rax, qword ptr [r22], cl +00000000000064E2 626cf91cd33e SARNF rax, qword ptr [r22], cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -82541,7 +82541,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -00000000000064E8 626cf91cd3fe SAR{NF} rax, r22, cl +00000000000064E8 626cf91cd3fe SARNF rax, r22, cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -87186,7 +87186,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 Operand: 2, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000006A76 626c780cc026bd SHL{NF} byte ptr [r22], 0xbd +0000000000006A76 626c780cc026bd SHLNF byte ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -87205,7 +87205,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000006A7D 626c780cc0e6bd SHL{NF} r22b, 0xbd +0000000000006A7D 626c780cc0e6bd SHLNF r22b, 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -87223,7 +87223,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000006A84 626cf80cc026bd SHL{NF} byte ptr [r22], 0xbd +0000000000006A84 626cf80cc026bd SHLNF byte ptr [r22], 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -87242,7 +87242,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000006A8B 626cf80cc0e6bd SHL{NF} r22b, 0xbd +0000000000006A8B 626cf80cc0e6bd SHLNF r22b, 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -87260,7 +87260,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000006A92 626c780cc126bd SHL{NF} dword ptr [r22], 0xbd +0000000000006A92 626c780cc126bd SHLNF dword ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -87279,7 +87279,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000006A99 626c780cc1e6bd SHL{NF} r22d, 0xbd +0000000000006A99 626c780cc1e6bd SHLNF r22d, 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -87297,7 +87297,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000006AA0 626cf80cc126bd SHL{NF} qword ptr [r22], 0xbd +0000000000006AA0 626cf80cc126bd SHLNF qword ptr [r22], 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -87316,7 +87316,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000006AA7 626cf80cc1e6bd SHL{NF} r22, 0xbd +0000000000006AA7 626cf80cc1e6bd SHLNF r22, 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -87334,7 +87334,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000006AAE 626c790cc126bd SHL{NF} word ptr [r22], 0xbd +0000000000006AAE 626c790cc126bd SHLNF word ptr [r22], 0xbd DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -87353,7 +87353,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000006AB5 626c790cc1e6bd SHL{NF} r22w, 0xbd +0000000000006AB5 626c790cc1e6bd SHLNF r22w, 0xbd DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -87371,7 +87371,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: General Purpose, RegSize: 2, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000006ABC 626cf90cc126bd SHL{NF} qword ptr [r22], 0xbd +0000000000006ABC 626cf90cc126bd SHLNF qword ptr [r22], 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -87390,7 +87390,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000006AC3 626cf90cc1e6bd SHL{NF} r22, 0xbd +0000000000006AC3 626cf90cc1e6bd SHLNF r22, 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -87408,7 +87408,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000006ACA 626c780cd026 SHL{NF} byte ptr [r22], 1 +0000000000006ACA 626c780cd026 SHLNF byte ptr [r22], 1 DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -87427,7 +87427,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -0000000000006AD0 626c780cd0e6 SHL{NF} r22b, 1 +0000000000006AD0 626c780cd0e6 SHLNF r22b, 1 DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -87445,7 +87445,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -0000000000006AD6 626cf80cd026 SHL{NF} byte ptr [r22], 1 +0000000000006AD6 626cf80cd026 SHLNF byte ptr [r22], 1 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -87464,7 +87464,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -0000000000006ADC 626cf80cd0e6 SHL{NF} r22b, 1 +0000000000006ADC 626cf80cd0e6 SHLNF r22b, 1 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -87482,7 +87482,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -0000000000006AE2 626c780cd126 SHL{NF} dword ptr [r22], 1 +0000000000006AE2 626c780cd126 SHLNF dword ptr [r22], 1 DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -87501,7 +87501,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -0000000000006AE8 626c780cd1e6 SHL{NF} r22d, 1 +0000000000006AE8 626c780cd1e6 SHLNF r22d, 1 DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -87519,7 +87519,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -0000000000006AEE 626cf80cd126 SHL{NF} qword ptr [r22], 1 +0000000000006AEE 626cf80cd126 SHLNF qword ptr [r22], 1 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -87538,7 +87538,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -0000000000006AF4 626cf80cd1e6 SHL{NF} r22, 1 +0000000000006AF4 626cf80cd1e6 SHLNF r22, 1 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -87556,7 +87556,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -0000000000006AFA 626c790cd126 SHL{NF} word ptr [r22], 1 +0000000000006AFA 626c790cd126 SHLNF word ptr [r22], 1 DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -87575,7 +87575,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -0000000000006B00 626c790cd1e6 SHL{NF} r22w, 1 +0000000000006B00 626c790cd1e6 SHLNF r22w, 1 DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -87593,7 +87593,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: General Purpose, RegSize: 2, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -0000000000006B06 626cf90cd126 SHL{NF} qword ptr [r22], 1 +0000000000006B06 626cf90cd126 SHLNF qword ptr [r22], 1 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -87612,7 +87612,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -0000000000006B0C 626cf90cd1e6 SHL{NF} r22, 1 +0000000000006B0C 626cf90cd1e6 SHLNF r22, 1 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -87630,7 +87630,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -0000000000006B12 626c780cd226 SHL{NF} byte ptr [r22], cl +0000000000006B12 626c780cd226 SHLNF byte ptr [r22], cl DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -87649,7 +87649,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000006B18 626c780cd2e6 SHL{NF} r22b, cl +0000000000006B18 626c780cd2e6 SHLNF r22b, cl DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -87667,7 +87667,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000006B1E 626cf80cd226 SHL{NF} byte ptr [r22], cl +0000000000006B1E 626cf80cd226 SHLNF byte ptr [r22], cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -87686,7 +87686,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000006B24 626cf80cd2e6 SHL{NF} r22b, cl +0000000000006B24 626cf80cd2e6 SHLNF r22b, cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -87704,7 +87704,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000006B2A 626c780cd326 SHL{NF} dword ptr [r22], cl +0000000000006B2A 626c780cd326 SHLNF dword ptr [r22], cl DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -87723,7 +87723,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000006B30 626c780cd3e6 SHL{NF} r22d, cl +0000000000006B30 626c780cd3e6 SHLNF r22d, cl DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -87741,7 +87741,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000006B36 626cf80cd326 SHL{NF} qword ptr [r22], cl +0000000000006B36 626cf80cd326 SHLNF qword ptr [r22], cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -87760,7 +87760,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000006B3C 626cf80cd3e6 SHL{NF} r22, cl +0000000000006B3C 626cf80cd3e6 SHLNF r22, cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -87778,7 +87778,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000006B42 626c790cd326 SHL{NF} word ptr [r22], cl +0000000000006B42 626c790cd326 SHLNF word ptr [r22], cl DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -87797,7 +87797,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000006B48 626c790cd3e6 SHL{NF} r22w, cl +0000000000006B48 626c790cd3e6 SHLNF r22w, cl DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -87815,7 +87815,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: General Purpose, RegSize: 2, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000006B4E 626cf90cd326 SHL{NF} qword ptr [r22], cl +0000000000006B4E 626cf90cd326 SHLNF qword ptr [r22], cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -87834,7 +87834,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000006B54 626cf90cd3e6 SHL{NF} r22, cl +0000000000006B54 626cf90cd3e6 SHLNF r22, cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -88662,7 +88662,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 Operand: 3, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000006C3E 626c781cc026bd SHL{NF} al, byte ptr [r22], 0xbd +0000000000006C3E 626c781cc026bd SHLNF al, byte ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -88682,7 +88682,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000006C45 626c781cc0e6bd SHL{NF} al, r22b, 0xbd +0000000000006C45 626c781cc0e6bd SHLNF al, r22b, 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -88701,7 +88701,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000006C4C 626cf81cc026bd SHL{NF} al, byte ptr [r22], 0xbd +0000000000006C4C 626cf81cc026bd SHLNF al, byte ptr [r22], 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -88721,7 +88721,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000006C53 626cf81cc0e6bd SHL{NF} al, r22b, 0xbd +0000000000006C53 626cf81cc0e6bd SHLNF al, r22b, 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -88740,7 +88740,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000006C5A 626c781cc126bd SHL{NF} eax, dword ptr [r22], 0xbd +0000000000006C5A 626c781cc126bd SHLNF eax, dword ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -88760,7 +88760,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000006C61 626c781cc1e6bd SHL{NF} eax, r22d, 0xbd +0000000000006C61 626c781cc1e6bd SHLNF eax, r22d, 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -88779,7 +88779,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000006C68 626cf81cc126bd SHL{NF} rax, qword ptr [r22], 0xbd +0000000000006C68 626cf81cc126bd SHLNF rax, qword ptr [r22], 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -88799,7 +88799,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000006C6F 626cf81cc1e6bd SHL{NF} rax, r22, 0xbd +0000000000006C6F 626cf81cc1e6bd SHLNF rax, r22, 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -88818,7 +88818,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000006C76 626c791cc126bd SHL{NF} ax, word ptr [r22], 0xbd +0000000000006C76 626c791cc126bd SHLNF ax, word ptr [r22], 0xbd DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -88838,7 +88838,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000006C7D 626c791cc1e6bd SHL{NF} ax, r22w, 0xbd +0000000000006C7D 626c791cc1e6bd SHLNF ax, r22w, 0xbd DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -88857,7 +88857,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: General Purpose, RegSize: 2, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000006C84 626cf91cc126bd SHL{NF} rax, qword ptr [r22], 0xbd +0000000000006C84 626cf91cc126bd SHLNF rax, qword ptr [r22], 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -88877,7 +88877,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000006C8B 626cf91cc1e6bd SHL{NF} rax, r22, 0xbd +0000000000006C8B 626cf91cc1e6bd SHLNF rax, r22, 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -88896,7 +88896,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000006C92 626c781cd026 SHL{NF} al, byte ptr [r22], 1 +0000000000006C92 626c781cd026 SHLNF al, byte ptr [r22], 1 DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -88916,7 +88916,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -0000000000006C98 626c781cd0e6 SHL{NF} al, r22b, 1 +0000000000006C98 626c781cd0e6 SHLNF al, r22b, 1 DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -88935,7 +88935,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -0000000000006C9E 626cf81cd026 SHL{NF} al, byte ptr [r22], 1 +0000000000006C9E 626cf81cd026 SHLNF al, byte ptr [r22], 1 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -88955,7 +88955,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -0000000000006CA4 626cf81cd0e6 SHL{NF} al, r22b, 1 +0000000000006CA4 626cf81cd0e6 SHLNF al, r22b, 1 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -88974,7 +88974,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -0000000000006CAA 626c781cd126 SHL{NF} eax, dword ptr [r22], 1 +0000000000006CAA 626c781cd126 SHLNF eax, dword ptr [r22], 1 DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -88994,7 +88994,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -0000000000006CB0 626c781cd1e6 SHL{NF} eax, r22d, 1 +0000000000006CB0 626c781cd1e6 SHLNF eax, r22d, 1 DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -89013,7 +89013,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -0000000000006CB6 626cf81cd126 SHL{NF} rax, qword ptr [r22], 1 +0000000000006CB6 626cf81cd126 SHLNF rax, qword ptr [r22], 1 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -89033,7 +89033,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -0000000000006CBC 626cf81cd1e6 SHL{NF} rax, r22, 1 +0000000000006CBC 626cf81cd1e6 SHLNF rax, r22, 1 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -89052,7 +89052,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -0000000000006CC2 626c791cd126 SHL{NF} ax, word ptr [r22], 1 +0000000000006CC2 626c791cd126 SHLNF ax, word ptr [r22], 1 DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -89072,7 +89072,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -0000000000006CC8 626c791cd1e6 SHL{NF} ax, r22w, 1 +0000000000006CC8 626c791cd1e6 SHLNF ax, r22w, 1 DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -89091,7 +89091,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: General Purpose, RegSize: 2, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -0000000000006CCE 626cf91cd126 SHL{NF} rax, qword ptr [r22], 1 +0000000000006CCE 626cf91cd126 SHLNF rax, qword ptr [r22], 1 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -89111,7 +89111,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -0000000000006CD4 626cf91cd1e6 SHL{NF} rax, r22, 1 +0000000000006CD4 626cf91cd1e6 SHLNF rax, r22, 1 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -89130,7 +89130,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -0000000000006CDA 626c781cd226 SHL{NF} al, byte ptr [r22], cl +0000000000006CDA 626c781cd226 SHLNF al, byte ptr [r22], cl DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -89150,7 +89150,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000006CE0 626c781cd2e6 SHL{NF} al, r22b, cl +0000000000006CE0 626c781cd2e6 SHLNF al, r22b, cl DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -89169,7 +89169,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000006CE6 626cf81cd226 SHL{NF} al, byte ptr [r22], cl +0000000000006CE6 626cf81cd226 SHLNF al, byte ptr [r22], cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -89189,7 +89189,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000006CEC 626cf81cd2e6 SHL{NF} al, r22b, cl +0000000000006CEC 626cf81cd2e6 SHLNF al, r22b, cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -89208,7 +89208,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000006CF2 626c781cd326 SHL{NF} eax, dword ptr [r22], cl +0000000000006CF2 626c781cd326 SHLNF eax, dword ptr [r22], cl DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -89228,7 +89228,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000006CF8 626c781cd3e6 SHL{NF} eax, r22d, cl +0000000000006CF8 626c781cd3e6 SHLNF eax, r22d, cl DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -89247,7 +89247,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000006CFE 626cf81cd326 SHL{NF} rax, qword ptr [r22], cl +0000000000006CFE 626cf81cd326 SHLNF rax, qword ptr [r22], cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -89267,7 +89267,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000006D04 626cf81cd3e6 SHL{NF} rax, r22, cl +0000000000006D04 626cf81cd3e6 SHLNF rax, r22, cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -89286,7 +89286,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000006D0A 626c791cd326 SHL{NF} ax, word ptr [r22], cl +0000000000006D0A 626c791cd326 SHLNF ax, word ptr [r22], cl DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -89306,7 +89306,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000006D10 626c791cd3e6 SHL{NF} ax, r22w, cl +0000000000006D10 626c791cd3e6 SHLNF ax, r22w, cl DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -89325,7 +89325,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: General Purpose, RegSize: 2, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000006D16 626cf91cd326 SHL{NF} rax, qword ptr [r22], cl +0000000000006D16 626cf91cd326 SHLNF rax, qword ptr [r22], cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -89345,7 +89345,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000006D1C 626cf91cd3e6 SHL{NF} rax, r22, cl +0000000000006D1C 626cf91cd3e6 SHLNF rax, r22, cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -89724,7 +89724,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000006D8A 626c780c241ebd SHLD{NF} dword ptr [r22], r27d, 0xbd +0000000000006D8A 626c780c241ebd SHLDNF dword ptr [r22], r27d, 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -89744,7 +89744,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 27, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000006D91 626c780c24debd SHLD{NF} r22d, r27d, 0xbd +0000000000006D91 626c780c24debd SHLDNF r22d, r27d, 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -89763,7 +89763,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 27, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000006D98 626cf80c241ebd SHLD{NF} qword ptr [r22], r27, 0xbd +0000000000006D98 626cf80c241ebd SHLDNF qword ptr [r22], r27, 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -89783,7 +89783,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 27, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000006D9F 626cf80c24debd SHLD{NF} r22, r27, 0xbd +0000000000006D9F 626cf80c24debd SHLDNF r22, r27, 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -89802,7 +89802,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 27, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000006DA6 626c780ca51e SHLD{NF} dword ptr [r22], r27d, cl +0000000000006DA6 626c780ca51e SHLDNF dword ptr [r22], r27d, cl DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -89822,7 +89822,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 27, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000006DAC 626c780ca5de SHLD{NF} r22d, r27d, cl +0000000000006DAC 626c780ca5de SHLDNF r22d, r27d, cl DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -89841,7 +89841,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 27, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000006DB2 626cf80ca51e SHLD{NF} qword ptr [r22], r27, cl +0000000000006DB2 626cf80ca51e SHLDNF qword ptr [r22], r27, cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -89861,7 +89861,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 27, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000006DB8 626cf80ca5de SHLD{NF} r22, r27, cl +0000000000006DB8 626cf80ca5de SHLDNF r22, r27, cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -89880,7 +89880,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 27, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000006DBE 626c790c241ebd SHLD{NF} word ptr [r22], r27w, 0xbd +0000000000006DBE 626c790c241ebd SHLDNF word ptr [r22], r27w, 0xbd DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -89900,7 +89900,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: R, RegType: General Purpose, RegSize: 2, RegId: 27, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000006DC5 626c790c24debd SHLD{NF} r22w, r27w, 0xbd +0000000000006DC5 626c790c24debd SHLDNF r22w, r27w, 0xbd DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -89919,7 +89919,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: R, RegType: General Purpose, RegSize: 2, RegId: 27, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000006DCC 626cf90c241ebd SHLD{NF} qword ptr [r22], r27, 0xbd +0000000000006DCC 626cf90c241ebd SHLDNF qword ptr [r22], r27, 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -89939,7 +89939,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 27, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000006DD3 626cf90c24debd SHLD{NF} r22, r27, 0xbd +0000000000006DD3 626cf90c24debd SHLDNF r22, r27, 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -89958,7 +89958,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 27, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000006DDA 626c790ca51e SHLD{NF} word ptr [r22], r27w, cl +0000000000006DDA 626c790ca51e SHLDNF word ptr [r22], r27w, cl DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -89978,7 +89978,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: R, RegType: General Purpose, RegSize: 2, RegId: 27, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000006DE0 626c790ca5de SHLD{NF} r22w, r27w, cl +0000000000006DE0 626c790ca5de SHLDNF r22w, r27w, cl DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -89997,7 +89997,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: R, RegType: General Purpose, RegSize: 2, RegId: 27, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000006DE6 626cf90ca51e SHLD{NF} qword ptr [r22], r27, cl +0000000000006DE6 626cf90ca51e SHLDNF qword ptr [r22], r27, cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -90017,7 +90017,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 27, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000006DEC 626cf90ca5de SHLD{NF} r22, r27, cl +0000000000006DEC 626cf90ca5de SHLDNF r22, r27, cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -90412,7 +90412,7 @@ Operand: 3, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 Operand: 4, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000006E5A 626c781c241ebd SHLD{NF} eax, dword ptr [r22], r27d, 0xbd +0000000000006E5A 626c781c241ebd SHLDNF eax, dword ptr [r22], r27d, 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -90433,7 +90433,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 27, RegCount: 1 Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000006E61 626c781c24debd SHLD{NF} eax, r22d, r27d, 0xbd +0000000000006E61 626c781c24debd SHLDNF eax, r22d, r27d, 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -90453,7 +90453,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 27, RegCount: 1 Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000006E68 626cf81c241ebd SHLD{NF} rax, qword ptr [r22], r27, 0xbd +0000000000006E68 626cf81c241ebd SHLDNF rax, qword ptr [r22], r27, 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -90474,7 +90474,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 27, RegCount: 1 Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000006E6F 626cf81c24debd SHLD{NF} rax, r22, r27, 0xbd +0000000000006E6F 626cf81c24debd SHLDNF rax, r22, r27, 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -90494,7 +90494,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 27, RegCount: 1 Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000006E76 626c781ca51e SHLD{NF} eax, dword ptr [r22], r27d, cl +0000000000006E76 626c781ca51e SHLDNF eax, dword ptr [r22], r27d, cl DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -90515,7 +90515,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 27, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000006E7C 626c781ca5de SHLD{NF} eax, r22d, r27d, cl +0000000000006E7C 626c781ca5de SHLDNF eax, r22d, r27d, cl DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -90535,7 +90535,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 27, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000006E82 626cf81ca51e SHLD{NF} rax, qword ptr [r22], r27, cl +0000000000006E82 626cf81ca51e SHLDNF rax, qword ptr [r22], r27, cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -90556,7 +90556,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 27, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000006E88 626cf81ca5de SHLD{NF} rax, r22, r27, cl +0000000000006E88 626cf81ca5de SHLDNF rax, r22, r27, cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -90576,7 +90576,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 27, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000006E8E 626c791c241ebd SHLD{NF} ax, word ptr [r22], r27w, 0xbd +0000000000006E8E 626c791c241ebd SHLDNF ax, word ptr [r22], r27w, 0xbd DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -90597,7 +90597,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: R, RegType: General Purpose, RegSize: 2, RegId: 27, RegCount: 1 Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000006E95 626c791c24debd SHLD{NF} ax, r22w, r27w, 0xbd +0000000000006E95 626c791c24debd SHLDNF ax, r22w, r27w, 0xbd DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -90617,7 +90617,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: R, RegType: General Purpose, RegSize: 2, RegId: 27, RegCount: 1 Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000006E9C 626cf91c241ebd SHLD{NF} rax, qword ptr [r22], r27, 0xbd +0000000000006E9C 626cf91c241ebd SHLDNF rax, qword ptr [r22], r27, 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -90638,7 +90638,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 27, RegCount: 1 Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000006EA3 626cf91c24debd SHLD{NF} rax, r22, r27, 0xbd +0000000000006EA3 626cf91c24debd SHLDNF rax, r22, r27, 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -90658,7 +90658,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 27, RegCount: 1 Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000006EAA 626c791ca51e SHLD{NF} ax, word ptr [r22], r27w, cl +0000000000006EAA 626c791ca51e SHLDNF ax, word ptr [r22], r27w, cl DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -90679,7 +90679,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: R, RegType: General Purpose, RegSize: 2, RegId: 27, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000006EB0 626c791ca5de SHLD{NF} ax, r22w, r27w, cl +0000000000006EB0 626c791ca5de SHLDNF ax, r22w, r27w, cl DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -90699,7 +90699,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: R, RegType: General Purpose, RegSize: 2, RegId: 27, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000006EB6 626cf91ca51e SHLD{NF} rax, qword ptr [r22], r27, cl +0000000000006EB6 626cf91ca51e SHLDNF rax, qword ptr [r22], r27, cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -90720,7 +90720,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 27, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000006EBC 626cf91ca5de SHLD{NF} rax, r22, r27, cl +0000000000006EBC 626cf91ca5de SHLDNF rax, r22, r27, cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -91592,7 +91592,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 Operand: 2, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000006FBE 626c780cc02ebd SHR{NF} byte ptr [r22], 0xbd +0000000000006FBE 626c780cc02ebd SHRNF byte ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -91611,7 +91611,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000006FC5 626c780cc0eebd SHR{NF} r22b, 0xbd +0000000000006FC5 626c780cc0eebd SHRNF r22b, 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -91629,7 +91629,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000006FCC 626cf80cc02ebd SHR{NF} byte ptr [r22], 0xbd +0000000000006FCC 626cf80cc02ebd SHRNF byte ptr [r22], 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -91648,7 +91648,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000006FD3 626cf80cc0eebd SHR{NF} r22b, 0xbd +0000000000006FD3 626cf80cc0eebd SHRNF r22b, 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -91666,7 +91666,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000006FDA 626c780cc12ebd SHR{NF} dword ptr [r22], 0xbd +0000000000006FDA 626c780cc12ebd SHRNF dword ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -91685,7 +91685,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000006FE1 626c780cc1eebd SHR{NF} r22d, 0xbd +0000000000006FE1 626c780cc1eebd SHRNF r22d, 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -91703,7 +91703,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000006FE8 626cf80cc12ebd SHR{NF} qword ptr [r22], 0xbd +0000000000006FE8 626cf80cc12ebd SHRNF qword ptr [r22], 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -91722,7 +91722,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000006FEF 626cf80cc1eebd SHR{NF} r22, 0xbd +0000000000006FEF 626cf80cc1eebd SHRNF r22, 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -91740,7 +91740,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000006FF6 626c790cc12ebd SHR{NF} word ptr [r22], 0xbd +0000000000006FF6 626c790cc12ebd SHRNF word ptr [r22], 0xbd DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -91759,7 +91759,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000006FFD 626c790cc1eebd SHR{NF} r22w, 0xbd +0000000000006FFD 626c790cc1eebd SHRNF r22w, 0xbd DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -91777,7 +91777,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: General Purpose, RegSize: 2, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000007004 626cf90cc12ebd SHR{NF} qword ptr [r22], 0xbd +0000000000007004 626cf90cc12ebd SHRNF qword ptr [r22], 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -91796,7 +91796,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -000000000000700B 626cf90cc1eebd SHR{NF} r22, 0xbd +000000000000700B 626cf90cc1eebd SHRNF r22, 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -91814,7 +91814,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000007012 626c780cd02e SHR{NF} byte ptr [r22], 1 +0000000000007012 626c780cd02e SHRNF byte ptr [r22], 1 DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -91833,7 +91833,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -0000000000007018 626c780cd0ee SHR{NF} r22b, 1 +0000000000007018 626c780cd0ee SHRNF r22b, 1 DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -91851,7 +91851,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -000000000000701E 626cf80cd02e SHR{NF} byte ptr [r22], 1 +000000000000701E 626cf80cd02e SHRNF byte ptr [r22], 1 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -91870,7 +91870,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -0000000000007024 626cf80cd0ee SHR{NF} r22b, 1 +0000000000007024 626cf80cd0ee SHRNF r22b, 1 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -91888,7 +91888,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -000000000000702A 626c780cd12e SHR{NF} dword ptr [r22], 1 +000000000000702A 626c780cd12e SHRNF dword ptr [r22], 1 DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -91907,7 +91907,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -0000000000007030 626c780cd1ee SHR{NF} r22d, 1 +0000000000007030 626c780cd1ee SHRNF r22d, 1 DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -91925,7 +91925,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -0000000000007036 626cf80cd12e SHR{NF} qword ptr [r22], 1 +0000000000007036 626cf80cd12e SHRNF qword ptr [r22], 1 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -91944,7 +91944,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -000000000000703C 626cf80cd1ee SHR{NF} r22, 1 +000000000000703C 626cf80cd1ee SHRNF r22, 1 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -91962,7 +91962,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -0000000000007042 626c790cd12e SHR{NF} word ptr [r22], 1 +0000000000007042 626c790cd12e SHRNF word ptr [r22], 1 DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -91981,7 +91981,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -0000000000007048 626c790cd1ee SHR{NF} r22w, 1 +0000000000007048 626c790cd1ee SHRNF r22w, 1 DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -91999,7 +91999,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: General Purpose, RegSize: 2, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -000000000000704E 626cf90cd12e SHR{NF} qword ptr [r22], 1 +000000000000704E 626cf90cd12e SHRNF qword ptr [r22], 1 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -92018,7 +92018,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -0000000000007054 626cf90cd1ee SHR{NF} r22, 1 +0000000000007054 626cf90cd1ee SHRNF r22, 1 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -92036,7 +92036,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -000000000000705A 626c780cd22e SHR{NF} byte ptr [r22], cl +000000000000705A 626c780cd22e SHRNF byte ptr [r22], cl DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -92055,7 +92055,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000007060 626c780cd2ee SHR{NF} r22b, cl +0000000000007060 626c780cd2ee SHRNF r22b, cl DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -92073,7 +92073,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000007066 626cf80cd22e SHR{NF} byte ptr [r22], cl +0000000000007066 626cf80cd22e SHRNF byte ptr [r22], cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -92092,7 +92092,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -000000000000706C 626cf80cd2ee SHR{NF} r22b, cl +000000000000706C 626cf80cd2ee SHRNF r22b, cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -92110,7 +92110,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000007072 626c780cd32e SHR{NF} dword ptr [r22], cl +0000000000007072 626c780cd32e SHRNF dword ptr [r22], cl DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -92129,7 +92129,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000007078 626c780cd3ee SHR{NF} r22d, cl +0000000000007078 626c780cd3ee SHRNF r22d, cl DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -92147,7 +92147,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -000000000000707E 626cf80cd32e SHR{NF} qword ptr [r22], cl +000000000000707E 626cf80cd32e SHRNF qword ptr [r22], cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -92166,7 +92166,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000007084 626cf80cd3ee SHR{NF} r22, cl +0000000000007084 626cf80cd3ee SHRNF r22, cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -92184,7 +92184,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -000000000000708A 626c790cd32e SHR{NF} word ptr [r22], cl +000000000000708A 626c790cd32e SHRNF word ptr [r22], cl DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -92203,7 +92203,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000007090 626c790cd3ee SHR{NF} r22w, cl +0000000000007090 626c790cd3ee SHRNF r22w, cl DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -92221,7 +92221,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: General Purpose, RegSize: 2, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000007096 626cf90cd32e SHR{NF} qword ptr [r22], cl +0000000000007096 626cf90cd32e SHRNF qword ptr [r22], cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -92240,7 +92240,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -000000000000709C 626cf90cd3ee SHR{NF} r22, cl +000000000000709C 626cf90cd3ee SHRNF r22, cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -93068,7 +93068,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 Operand: 3, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000007186 626c781cc02ebd SHR{NF} al, byte ptr [r22], 0xbd +0000000000007186 626c781cc02ebd SHRNF al, byte ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -93088,7 +93088,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -000000000000718D 626c781cc0eebd SHR{NF} al, r22b, 0xbd +000000000000718D 626c781cc0eebd SHRNF al, r22b, 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -93107,7 +93107,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000007194 626cf81cc02ebd SHR{NF} al, byte ptr [r22], 0xbd +0000000000007194 626cf81cc02ebd SHRNF al, byte ptr [r22], 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -93127,7 +93127,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -000000000000719B 626cf81cc0eebd SHR{NF} al, r22b, 0xbd +000000000000719B 626cf81cc0eebd SHRNF al, r22b, 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -93146,7 +93146,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000071A2 626c781cc12ebd SHR{NF} eax, dword ptr [r22], 0xbd +00000000000071A2 626c781cc12ebd SHRNF eax, dword ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -93166,7 +93166,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000071A9 626c781cc1eebd SHR{NF} eax, r22d, 0xbd +00000000000071A9 626c781cc1eebd SHRNF eax, r22d, 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -93185,7 +93185,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000071B0 626cf81cc12ebd SHR{NF} rax, qword ptr [r22], 0xbd +00000000000071B0 626cf81cc12ebd SHRNF rax, qword ptr [r22], 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -93205,7 +93205,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000071B7 626cf81cc1eebd SHR{NF} rax, r22, 0xbd +00000000000071B7 626cf81cc1eebd SHRNF rax, r22, 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -93224,7 +93224,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000071BE 626c791cc12ebd SHR{NF} ax, word ptr [r22], 0xbd +00000000000071BE 626c791cc12ebd SHRNF ax, word ptr [r22], 0xbd DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -93244,7 +93244,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000071C5 626c791cc1eebd SHR{NF} ax, r22w, 0xbd +00000000000071C5 626c791cc1eebd SHRNF ax, r22w, 0xbd DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -93263,7 +93263,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: General Purpose, RegSize: 2, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000071CC 626cf91cc12ebd SHR{NF} rax, qword ptr [r22], 0xbd +00000000000071CC 626cf91cc12ebd SHRNF rax, qword ptr [r22], 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -93283,7 +93283,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000071D3 626cf91cc1eebd SHR{NF} rax, r22, 0xbd +00000000000071D3 626cf91cc1eebd SHRNF rax, r22, 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -93302,7 +93302,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000071DA 626c781cd02e SHR{NF} al, byte ptr [r22], 1 +00000000000071DA 626c781cd02e SHRNF al, byte ptr [r22], 1 DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -93322,7 +93322,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -00000000000071E0 626c781cd0ee SHR{NF} al, r22b, 1 +00000000000071E0 626c781cd0ee SHRNF al, r22b, 1 DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -93341,7 +93341,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -00000000000071E6 626cf81cd02e SHR{NF} al, byte ptr [r22], 1 +00000000000071E6 626cf81cd02e SHRNF al, byte ptr [r22], 1 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -93361,7 +93361,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -00000000000071EC 626cf81cd0ee SHR{NF} al, r22b, 1 +00000000000071EC 626cf81cd0ee SHRNF al, r22b, 1 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -93380,7 +93380,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -00000000000071F2 626c781cd12e SHR{NF} eax, dword ptr [r22], 1 +00000000000071F2 626c781cd12e SHRNF eax, dword ptr [r22], 1 DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -93400,7 +93400,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -00000000000071F8 626c781cd1ee SHR{NF} eax, r22d, 1 +00000000000071F8 626c781cd1ee SHRNF eax, r22d, 1 DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -93419,7 +93419,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -00000000000071FE 626cf81cd12e SHR{NF} rax, qword ptr [r22], 1 +00000000000071FE 626cf81cd12e SHRNF rax, qword ptr [r22], 1 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -93439,7 +93439,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -0000000000007204 626cf81cd1ee SHR{NF} rax, r22, 1 +0000000000007204 626cf81cd1ee SHRNF rax, r22, 1 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -93458,7 +93458,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -000000000000720A 626c791cd12e SHR{NF} ax, word ptr [r22], 1 +000000000000720A 626c791cd12e SHRNF ax, word ptr [r22], 1 DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -93478,7 +93478,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -0000000000007210 626c791cd1ee SHR{NF} ax, r22w, 1 +0000000000007210 626c791cd1ee SHRNF ax, r22w, 1 DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -93497,7 +93497,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: General Purpose, RegSize: 2, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -0000000000007216 626cf91cd12e SHR{NF} rax, qword ptr [r22], 1 +0000000000007216 626cf91cd12e SHRNF rax, qword ptr [r22], 1 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -93517,7 +93517,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -000000000000721C 626cf91cd1ee SHR{NF} rax, r22, 1 +000000000000721C 626cf91cd1ee SHRNF rax, r22, 1 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -93536,7 +93536,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Constant, Size: 1, RawSize: 1, Encoding: 1 -0000000000007222 626c781cd22e SHR{NF} al, byte ptr [r22], cl +0000000000007222 626c781cd22e SHRNF al, byte ptr [r22], cl DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -93556,7 +93556,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000007228 626c781cd2ee SHR{NF} al, r22b, cl +0000000000007228 626c781cd2ee SHRNF al, r22b, cl DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -93575,7 +93575,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -000000000000722E 626cf81cd22e SHR{NF} al, byte ptr [r22], cl +000000000000722E 626cf81cd22e SHRNF al, byte ptr [r22], cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -93595,7 +93595,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000007234 626cf81cd2ee SHR{NF} al, r22b, cl +0000000000007234 626cf81cd2ee SHRNF al, r22b, cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -93614,7 +93614,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -000000000000723A 626c781cd32e SHR{NF} eax, dword ptr [r22], cl +000000000000723A 626c781cd32e SHRNF eax, dword ptr [r22], cl DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -93634,7 +93634,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000007240 626c781cd3ee SHR{NF} eax, r22d, cl +0000000000007240 626c781cd3ee SHRNF eax, r22d, cl DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -93653,7 +93653,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000007246 626cf81cd32e SHR{NF} rax, qword ptr [r22], cl +0000000000007246 626cf81cd32e SHRNF rax, qword ptr [r22], cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -93673,7 +93673,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -000000000000724C 626cf81cd3ee SHR{NF} rax, r22, cl +000000000000724C 626cf81cd3ee SHRNF rax, r22, cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -93692,7 +93692,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000007252 626c791cd32e SHR{NF} ax, word ptr [r22], cl +0000000000007252 626c791cd32e SHRNF ax, word ptr [r22], cl DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -93712,7 +93712,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000007258 626c791cd3ee SHR{NF} ax, r22w, cl +0000000000007258 626c791cd3ee SHRNF ax, r22w, cl DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -93731,7 +93731,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: General Purpose, RegSize: 2, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -000000000000725E 626cf91cd32e SHR{NF} rax, qword ptr [r22], cl +000000000000725E 626cf91cd32e SHRNF rax, qword ptr [r22], cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -93751,7 +93751,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000007264 626cf91cd3ee SHR{NF} rax, r22, cl +0000000000007264 626cf91cd3ee SHRNF rax, r22, cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -94130,7 +94130,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000072D2 626c780c2c1ebd SHRD{NF} dword ptr [r22], r27d, 0xbd +00000000000072D2 626c780c2c1ebd SHRDNF dword ptr [r22], r27d, 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -94150,7 +94150,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 27, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000072D9 626c780c2cdebd SHRD{NF} r22d, r27d, 0xbd +00000000000072D9 626c780c2cdebd SHRDNF r22d, r27d, 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -94169,7 +94169,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 27, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000072E0 626cf80c2c1ebd SHRD{NF} qword ptr [r22], r27, 0xbd +00000000000072E0 626cf80c2c1ebd SHRDNF qword ptr [r22], r27, 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -94189,7 +94189,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 27, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000072E7 626cf80c2cdebd SHRD{NF} r22, r27, 0xbd +00000000000072E7 626cf80c2cdebd SHRDNF r22, r27, 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -94208,7 +94208,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 27, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000072EE 626c780cad1e SHRD{NF} dword ptr [r22], r27d, cl +00000000000072EE 626c780cad1e SHRDNF dword ptr [r22], r27d, cl DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -94228,7 +94228,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 27, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -00000000000072F4 626c780cadde SHRD{NF} r22d, r27d, cl +00000000000072F4 626c780cadde SHRDNF r22d, r27d, cl DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -94247,7 +94247,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 27, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -00000000000072FA 626cf80cad1e SHRD{NF} qword ptr [r22], r27, cl +00000000000072FA 626cf80cad1e SHRDNF qword ptr [r22], r27, cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -94267,7 +94267,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 27, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000007300 626cf80cadde SHRD{NF} r22, r27, cl +0000000000007300 626cf80cadde SHRDNF r22, r27, cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -94286,7 +94286,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 27, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000007306 626c790c2c1ebd SHRD{NF} word ptr [r22], r27w, 0xbd +0000000000007306 626c790c2c1ebd SHRDNF word ptr [r22], r27w, 0xbd DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -94306,7 +94306,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: R, RegType: General Purpose, RegSize: 2, RegId: 27, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -000000000000730D 626c790c2cdebd SHRD{NF} r22w, r27w, 0xbd +000000000000730D 626c790c2cdebd SHRDNF r22w, r27w, 0xbd DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -94325,7 +94325,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: R, RegType: General Purpose, RegSize: 2, RegId: 27, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000007314 626cf90c2c1ebd SHRD{NF} qword ptr [r22], r27, 0xbd +0000000000007314 626cf90c2c1ebd SHRDNF qword ptr [r22], r27, 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -94345,7 +94345,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 27, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -000000000000731B 626cf90c2cdebd SHRD{NF} r22, r27, 0xbd +000000000000731B 626cf90c2cdebd SHRDNF r22, r27, 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -94364,7 +94364,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 27, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000007322 626c790cad1e SHRD{NF} word ptr [r22], r27w, cl +0000000000007322 626c790cad1e SHRDNF word ptr [r22], r27w, cl DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -94384,7 +94384,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: R, RegType: General Purpose, RegSize: 2, RegId: 27, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000007328 626c790cadde SHRD{NF} r22w, r27w, cl +0000000000007328 626c790cadde SHRDNF r22w, r27w, cl DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -94403,7 +94403,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: R, RegType: General Purpose, RegSize: 2, RegId: 27, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -000000000000732E 626cf90cad1e SHRD{NF} qword ptr [r22], r27, cl +000000000000732E 626cf90cad1e SHRDNF qword ptr [r22], r27, cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -94423,7 +94423,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 27, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000007334 626cf90cadde SHRD{NF} r22, r27, cl +0000000000007334 626cf90cadde SHRDNF r22, r27, cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -94818,7 +94818,7 @@ Operand: 3, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 Operand: 4, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000073A2 626c781c2c1ebd SHRD{NF} eax, dword ptr [r22], r27d, 0xbd +00000000000073A2 626c781c2c1ebd SHRDNF eax, dword ptr [r22], r27d, 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -94839,7 +94839,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 27, RegCount: 1 Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000073A9 626c781c2cdebd SHRD{NF} eax, r22d, r27d, 0xbd +00000000000073A9 626c781c2cdebd SHRDNF eax, r22d, r27d, 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -94859,7 +94859,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 27, RegCount: 1 Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000073B0 626cf81c2c1ebd SHRD{NF} rax, qword ptr [r22], r27, 0xbd +00000000000073B0 626cf81c2c1ebd SHRDNF rax, qword ptr [r22], r27, 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -94880,7 +94880,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 27, RegCount: 1 Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000073B7 626cf81c2cdebd SHRD{NF} rax, r22, r27, 0xbd +00000000000073B7 626cf81c2cdebd SHRDNF rax, r22, r27, 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -94900,7 +94900,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 27, RegCount: 1 Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000073BE 626c781cad1e SHRD{NF} eax, dword ptr [r22], r27d, cl +00000000000073BE 626c781cad1e SHRDNF eax, dword ptr [r22], r27d, cl DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -94921,7 +94921,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 27, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -00000000000073C4 626c781cadde SHRD{NF} eax, r22d, r27d, cl +00000000000073C4 626c781cadde SHRDNF eax, r22d, r27d, cl DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -94941,7 +94941,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 27, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -00000000000073CA 626cf81cad1e SHRD{NF} rax, qword ptr [r22], r27, cl +00000000000073CA 626cf81cad1e SHRDNF rax, qword ptr [r22], r27, cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -94962,7 +94962,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 27, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -00000000000073D0 626cf81cadde SHRD{NF} rax, r22, r27, cl +00000000000073D0 626cf81cadde SHRDNF rax, r22, r27, cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -94982,7 +94982,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 27, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -00000000000073D6 626c791c2c1ebd SHRD{NF} ax, word ptr [r22], r27w, 0xbd +00000000000073D6 626c791c2c1ebd SHRDNF ax, word ptr [r22], r27w, 0xbd DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -95003,7 +95003,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: R, RegType: General Purpose, RegSize: 2, RegId: 27, RegCount: 1 Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000073DD 626c791c2cdebd SHRD{NF} ax, r22w, r27w, 0xbd +00000000000073DD 626c791c2cdebd SHRDNF ax, r22w, r27w, 0xbd DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -95023,7 +95023,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: R, RegType: General Purpose, RegSize: 2, RegId: 27, RegCount: 1 Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000073E4 626cf91c2c1ebd SHRD{NF} rax, qword ptr [r22], r27, 0xbd +00000000000073E4 626cf91c2c1ebd SHRDNF rax, qword ptr [r22], r27, 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -95044,7 +95044,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 27, RegCount: 1 Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000073EB 626cf91c2cdebd SHRD{NF} rax, r22, r27, 0xbd +00000000000073EB 626cf91c2cdebd SHRDNF rax, r22, r27, 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -95064,7 +95064,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 27, RegCount: 1 Operand: 3, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000073F2 626c791cad1e SHRD{NF} ax, word ptr [r22], r27w, cl +00000000000073F2 626c791cad1e SHRDNF ax, word ptr [r22], r27w, cl DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -95085,7 +95085,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: R, RegType: General Purpose, RegSize: 2, RegId: 27, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -00000000000073F8 626c791cadde SHRD{NF} ax, r22w, r27w, cl +00000000000073F8 626c791cadde SHRDNF ax, r22w, r27w, cl DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -95105,7 +95105,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: R, RegType: General Purpose, RegSize: 2, RegId: 27, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -00000000000073FE 626cf91cad1e SHRD{NF} rax, qword ptr [r22], r27, cl +00000000000073FE 626cf91cad1e SHRDNF rax, qword ptr [r22], r27, cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -95126,7 +95126,7 @@ Operand: 2, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 27, RegCount: 1 Operand: 3, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: S, RegType: General Purpose, RegSize: 1, RegId: 1, RegCount: 1 -0000000000007404 626cf91cadde SHRD{NF} rax, r22, r27, cl +0000000000007404 626cf91cadde SHRDNF rax, r22, r27, cl DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: SHIFT, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -96188,7 +96188,7 @@ Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I Operand: 2, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000007558 626c780c281e SUB{NF} byte ptr [r22], r27b +0000000000007558 626c780c281e SUBNF byte ptr [r22], r27b DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -96207,7 +96207,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: R, RegType: General Purpose, RegSize: 1, RegId: 27, RegCount: 1 -000000000000755E 626c780c28de SUB{NF} r22b, r27b +000000000000755E 626c780c28de SUBNF r22b, r27b DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -96225,7 +96225,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: R, RegType: General Purpose, RegSize: 1, RegId: 27, RegCount: 1 -0000000000007564 626cf80c281e SUB{NF} byte ptr [r22], r27b +0000000000007564 626cf80c281e SUBNF byte ptr [r22], r27b DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -96244,7 +96244,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: R, RegType: General Purpose, RegSize: 1, RegId: 27, RegCount: 1 -000000000000756A 626cf80c28de SUB{NF} r22b, r27b +000000000000756A 626cf80c28de SUBNF r22b, r27b DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -96262,7 +96262,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: R, RegType: General Purpose, RegSize: 1, RegId: 27, RegCount: 1 -0000000000007570 626c780c291e SUB{NF} dword ptr [r22], r27d +0000000000007570 626c780c291e SUBNF dword ptr [r22], r27d DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -96281,7 +96281,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 27, RegCount: 1 -0000000000007576 626c780c29de SUB{NF} r22d, r27d +0000000000007576 626c780c29de SUBNF r22d, r27d DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -96299,7 +96299,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 27, RegCount: 1 -000000000000757C 626cf80c291e SUB{NF} qword ptr [r22], r27 +000000000000757C 626cf80c291e SUBNF qword ptr [r22], r27 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -96318,7 +96318,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 27, RegCount: 1 -0000000000007582 626cf80c29de SUB{NF} r22, r27 +0000000000007582 626cf80c29de SUBNF r22, r27 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -96336,7 +96336,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 27, RegCount: 1 -0000000000007588 626c790c291e SUB{NF} word ptr [r22], r27w +0000000000007588 626c790c291e SUBNF word ptr [r22], r27w DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -96355,7 +96355,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: R, RegType: General Purpose, RegSize: 2, RegId: 27, RegCount: 1 -000000000000758E 626c790c29de SUB{NF} r22w, r27w +000000000000758E 626c790c29de SUBNF r22w, r27w DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -96373,7 +96373,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: General Purpose, RegSize: 2, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: R, RegType: General Purpose, RegSize: 2, RegId: 27, RegCount: 1 -0000000000007594 626cf90c291e SUB{NF} qword ptr [r22], r27 +0000000000007594 626cf90c291e SUBNF qword ptr [r22], r27 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -96392,7 +96392,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 27, RegCount: 1 -000000000000759A 626cf90c29de SUB{NF} r22, r27 +000000000000759A 626cf90c29de SUBNF r22, r27 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -96410,7 +96410,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 27, RegCount: 1 -00000000000075A0 626c780c2a1e SUB{NF} r27b, byte ptr [r22] +00000000000075A0 626c780c2a1e SUBNF r27b, byte ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -96429,7 +96429,7 @@ Operand: 1, Acc: R-, Type: Memory, Size: 1, RawSize: 1, Encoding: M, Segment: 3, Base: 22, -00000000000075A6 626c780c2ade SUB{NF} r27b, r22b +00000000000075A6 626c780c2ade SUBNF r27b, r22b DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -96447,7 +96447,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 1, RawSize: 1, Encoding: R, RegType: General Purpose, RegSize: 1, RegId: 27, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 -00000000000075AC 626cf80c2a1e SUB{NF} r27b, byte ptr [r22] +00000000000075AC 626cf80c2a1e SUBNF r27b, byte ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -96466,7 +96466,7 @@ Operand: 1, Acc: R-, Type: Memory, Size: 1, RawSize: 1, Encoding: M, Segment: 3, Base: 22, -00000000000075B2 626cf80c2ade SUB{NF} r27b, r22b +00000000000075B2 626cf80c2ade SUBNF r27b, r22b DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -96484,7 +96484,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 1, RawSize: 1, Encoding: R, RegType: General Purpose, RegSize: 1, RegId: 27, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 -00000000000075B8 626c780c2b1e SUB{NF} r27d, dword ptr [r22] +00000000000075B8 626c780c2b1e SUBNF r27d, dword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -96503,7 +96503,7 @@ Operand: 1, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, Segment: 3, Base: 22, -00000000000075BE 626c780c2bde SUB{NF} r27d, r22d +00000000000075BE 626c780c2bde SUBNF r27d, r22d DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -96521,7 +96521,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 27, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 -00000000000075C4 626cf80c2b1e SUB{NF} r27, qword ptr [r22] +00000000000075C4 626cf80c2b1e SUBNF r27, qword ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -96540,7 +96540,7 @@ Operand: 1, Acc: R-, Type: Memory, Size: 8, RawSize: 8, Encoding: M, Segment: 3, Base: 22, -00000000000075CA 626cf80c2bde SUB{NF} r27, r22 +00000000000075CA 626cf80c2bde SUBNF r27, r22 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -96558,7 +96558,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 27, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 -00000000000075D0 626c790c2b1e SUB{NF} r27w, word ptr [r22] +00000000000075D0 626c790c2b1e SUBNF r27w, word ptr [r22] DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -96577,7 +96577,7 @@ Operand: 1, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, Segment: 3, Base: 22, -00000000000075D6 626c790c2bde SUB{NF} r27w, r22w +00000000000075D6 626c790c2bde SUBNF r27w, r22w DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -96595,7 +96595,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 2, RawSize: 2, Encoding: R, RegType: General Purpose, RegSize: 2, RegId: 27, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: General Purpose, RegSize: 2, RegId: 22, RegCount: 1 -00000000000075DC 626cf90c2b1e SUB{NF} r27, qword ptr [r22] +00000000000075DC 626cf90c2b1e SUBNF r27, qword ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -96614,7 +96614,7 @@ Operand: 1, Acc: R-, Type: Memory, Size: 8, RawSize: 8, Encoding: M, Segment: 3, Base: 22, -00000000000075E2 626cf90c2bde SUB{NF} r27, r22 +00000000000075E2 626cf90c2bde SUBNF r27, r22 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -96632,7 +96632,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 27, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 -00000000000075E8 626c780c802ebd SUB{NF} byte ptr [r22], 0xbd +00000000000075E8 626c780c802ebd SUBNF byte ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -96651,7 +96651,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000075EF 626c780c80eebd SUB{NF} r22b, 0xbd +00000000000075EF 626c780c80eebd SUBNF r22b, 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -96669,7 +96669,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000075F6 626cf80c802ebd SUB{NF} byte ptr [r22], 0xbd +00000000000075F6 626cf80c802ebd SUBNF byte ptr [r22], 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -96688,7 +96688,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000075FD 626cf80c80eebd SUB{NF} r22b, 0xbd +00000000000075FD 626cf80c80eebd SUBNF r22b, 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -96706,7 +96706,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000007604 626c780c812ebdbdbdbd SUB{NF} dword ptr [r22], 0xbdbdbdbd +0000000000007604 626c780c812ebdbdbdbd SUBNF dword ptr [r22], 0xbdbdbdbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -96725,7 +96725,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Immediate, Size: 4, RawSize: 4, Encoding: I -000000000000760E 626c780c81eebdbdbdbd SUB{NF} r22d, 0xbdbdbdbd +000000000000760E 626c780c81eebdbdbdbd SUBNF r22d, 0xbdbdbdbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -96743,7 +96743,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Immediate, Size: 4, RawSize: 4, Encoding: I -0000000000007618 626cf80c812ebdbdbdbd SUB{NF} qword ptr [r22], 0xbdbdbdbd +0000000000007618 626cf80c812ebdbdbdbd SUBNF qword ptr [r22], 0xbdbdbdbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -96762,7 +96762,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Immediate, Size: 4, RawSize: 4, Encoding: I -0000000000007622 626cf80c81eebdbdbdbd SUB{NF} r22, 0xbdbdbdbd +0000000000007622 626cf80c81eebdbdbdbd SUBNF r22, 0xbdbdbdbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -96780,7 +96780,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Immediate, Size: 4, RawSize: 4, Encoding: I -000000000000762C 626c790c812ebdbd SUB{NF} word ptr [r22], 0xbdbd +000000000000762C 626c790c812ebdbd SUBNF word ptr [r22], 0xbdbd DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -96799,7 +96799,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Immediate, Size: 2, RawSize: 2, Encoding: I -0000000000007634 626c790c81eebdbd SUB{NF} r22w, 0xbdbd +0000000000007634 626c790c81eebdbd SUBNF r22w, 0xbdbd DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -96817,7 +96817,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: General Purpose, RegSize: 2, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Immediate, Size: 2, RawSize: 2, Encoding: I -000000000000763C 626cf90c812ebdbdbdbd SUB{NF} qword ptr [r22], 0xbdbdbdbd +000000000000763C 626cf90c812ebdbdbdbd SUBNF qword ptr [r22], 0xbdbdbdbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -96836,7 +96836,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Immediate, Size: 4, RawSize: 4, Encoding: I -0000000000007646 626cf90c81eebdbdbdbd SUB{NF} r22, 0xbdbdbdbd +0000000000007646 626cf90c81eebdbdbdbd SUBNF r22, 0xbdbdbdbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -96854,7 +96854,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Immediate, Size: 4, RawSize: 4, Encoding: I -0000000000007650 626c780c832ebd SUB{NF} dword ptr [r22], 0xbd +0000000000007650 626c780c832ebd SUBNF dword ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -96873,7 +96873,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000007657 626c780c83eebd SUB{NF} r22d, 0xbd +0000000000007657 626c780c83eebd SUBNF r22d, 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -96891,7 +96891,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -000000000000765E 626cf80c832ebd SUB{NF} qword ptr [r22], 0xbd +000000000000765E 626cf80c832ebd SUBNF qword ptr [r22], 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -96910,7 +96910,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000007665 626cf80c83eebd SUB{NF} r22, 0xbd +0000000000007665 626cf80c83eebd SUBNF r22, 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -96928,7 +96928,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -000000000000766C 626c790c832ebd SUB{NF} word ptr [r22], 0xbd +000000000000766C 626c790c832ebd SUBNF word ptr [r22], 0xbd DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -96947,7 +96947,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000007673 626c790c83eebd SUB{NF} r22w, 0xbd +0000000000007673 626c790c83eebd SUBNF r22w, 0xbd DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -96965,7 +96965,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: General Purpose, RegSize: 2, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -000000000000767A 626cf90c832ebd SUB{NF} qword ptr [r22], 0xbd +000000000000767A 626cf90c832ebd SUBNF qword ptr [r22], 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -96984,7 +96984,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000007681 626cf90c83eebd SUB{NF} r22, 0xbd +0000000000007681 626cf90c83eebd SUBNF r22, 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -97992,7 +97992,7 @@ Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -00000000000077B8 626c781c281e SUB{NF} al, byte ptr [r22], r27b +00000000000077B8 626c781c281e SUBNF al, byte ptr [r22], r27b DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -98012,7 +98012,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: R, RegType: General Purpose, RegSize: 1, RegId: 27, RegCount: 1 -00000000000077BE 626c781c28de SUB{NF} al, r22b, r27b +00000000000077BE 626c781c28de SUBNF al, r22b, r27b DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -98031,7 +98031,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: R, RegType: General Purpose, RegSize: 1, RegId: 27, RegCount: 1 -00000000000077C4 626cf81c281e SUB{NF} al, byte ptr [r22], r27b +00000000000077C4 626cf81c281e SUBNF al, byte ptr [r22], r27b DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -98051,7 +98051,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: R, RegType: General Purpose, RegSize: 1, RegId: 27, RegCount: 1 -00000000000077CA 626cf81c28de SUB{NF} al, r22b, r27b +00000000000077CA 626cf81c28de SUBNF al, r22b, r27b DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -98070,7 +98070,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: R, RegType: General Purpose, RegSize: 1, RegId: 27, RegCount: 1 -00000000000077D0 626c781c291e SUB{NF} eax, dword ptr [r22], r27d +00000000000077D0 626c781c291e SUBNF eax, dword ptr [r22], r27d DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -98090,7 +98090,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 27, RegCount: 1 -00000000000077D6 626c781c29de SUB{NF} eax, r22d, r27d +00000000000077D6 626c781c29de SUBNF eax, r22d, r27d DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -98109,7 +98109,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 27, RegCount: 1 -00000000000077DC 626cf81c291e SUB{NF} rax, qword ptr [r22], r27 +00000000000077DC 626cf81c291e SUBNF rax, qword ptr [r22], r27 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -98129,7 +98129,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 27, RegCount: 1 -00000000000077E2 626cf81c29de SUB{NF} rax, r22, r27 +00000000000077E2 626cf81c29de SUBNF rax, r22, r27 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -98148,7 +98148,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 27, RegCount: 1 -00000000000077E8 626c791c291e SUB{NF} ax, word ptr [r22], r27w +00000000000077E8 626c791c291e SUBNF ax, word ptr [r22], r27w DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -98168,7 +98168,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: R, RegType: General Purpose, RegSize: 2, RegId: 27, RegCount: 1 -00000000000077EE 626c791c29de SUB{NF} ax, r22w, r27w +00000000000077EE 626c791c29de SUBNF ax, r22w, r27w DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -98187,7 +98187,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: General Purpose, RegSize: 2, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: R, RegType: General Purpose, RegSize: 2, RegId: 27, RegCount: 1 -00000000000077F4 626cf91c291e SUB{NF} rax, qword ptr [r22], r27 +00000000000077F4 626cf91c291e SUBNF rax, qword ptr [r22], r27 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -98207,7 +98207,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 27, RegCount: 1 -00000000000077FA 626cf91c29de SUB{NF} rax, r22, r27 +00000000000077FA 626cf91c29de SUBNF rax, r22, r27 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -98226,7 +98226,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 27, RegCount: 1 -0000000000007800 626c781c2a1e SUB{NF} al, r27b, byte ptr [r22] +0000000000007800 626c781c2a1e SUBNF al, r27b, byte ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -98246,7 +98246,7 @@ Operand: 2, Acc: R-, Type: Memory, Size: 1, RawSize: 1, Encoding: M, Segment: 3, Base: 22, -0000000000007806 626c781c2ade SUB{NF} al, r27b, r22b +0000000000007806 626c781c2ade SUBNF al, r27b, r22b DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -98265,7 +98265,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: R, RegType: General Purpose, RegSize: 1, RegId: 27, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 -000000000000780C 626cf81c2a1e SUB{NF} al, r27b, byte ptr [r22] +000000000000780C 626cf81c2a1e SUBNF al, r27b, byte ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -98285,7 +98285,7 @@ Operand: 2, Acc: R-, Type: Memory, Size: 1, RawSize: 1, Encoding: M, Segment: 3, Base: 22, -0000000000007812 626cf81c2ade SUB{NF} al, r27b, r22b +0000000000007812 626cf81c2ade SUBNF al, r27b, r22b DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -98304,7 +98304,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: R, RegType: General Purpose, RegSize: 1, RegId: 27, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 -0000000000007818 626c781c2b1e SUB{NF} eax, r27d, dword ptr [r22] +0000000000007818 626c781c2b1e SUBNF eax, r27d, dword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -98324,7 +98324,7 @@ Operand: 2, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, Segment: 3, Base: 22, -000000000000781E 626c781c2bde SUB{NF} eax, r27d, r22d +000000000000781E 626c781c2bde SUBNF eax, r27d, r22d DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -98343,7 +98343,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 27, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 -0000000000007824 626cf81c2b1e SUB{NF} rax, r27, qword ptr [r22] +0000000000007824 626cf81c2b1e SUBNF rax, r27, qword ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -98363,7 +98363,7 @@ Operand: 2, Acc: R-, Type: Memory, Size: 8, RawSize: 8, Encoding: M, Segment: 3, Base: 22, -000000000000782A 626cf81c2bde SUB{NF} rax, r27, r22 +000000000000782A 626cf81c2bde SUBNF rax, r27, r22 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -98382,7 +98382,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 27, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 -0000000000007830 626c791c2b1e SUB{NF} ax, r27w, word ptr [r22] +0000000000007830 626c791c2b1e SUBNF ax, r27w, word ptr [r22] DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -98402,7 +98402,7 @@ Operand: 2, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, Segment: 3, Base: 22, -0000000000007836 626c791c2bde SUB{NF} ax, r27w, r22w +0000000000007836 626c791c2bde SUBNF ax, r27w, r22w DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -98421,7 +98421,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: R, RegType: General Purpose, RegSize: 2, RegId: 27, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: General Purpose, RegSize: 2, RegId: 22, RegCount: 1 -000000000000783C 626cf91c2b1e SUB{NF} rax, r27, qword ptr [r22] +000000000000783C 626cf91c2b1e SUBNF rax, r27, qword ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -98441,7 +98441,7 @@ Operand: 2, Acc: R-, Type: Memory, Size: 8, RawSize: 8, Encoding: M, Segment: 3, Base: 22, -0000000000007842 626cf91c2bde SUB{NF} rax, r27, r22 +0000000000007842 626cf91c2bde SUBNF rax, r27, r22 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -98460,7 +98460,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 27, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 -0000000000007848 626c781c802ebd SUB{NF} al, byte ptr [r22], 0xbd +0000000000007848 626c781c802ebd SUBNF al, byte ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -98480,7 +98480,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -000000000000784F 626c781c80eebd SUB{NF} al, r22b, 0xbd +000000000000784F 626c781c80eebd SUBNF al, r22b, 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -98499,7 +98499,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000007856 626cf81c802ebd SUB{NF} al, byte ptr [r22], 0xbd +0000000000007856 626cf81c802ebd SUBNF al, byte ptr [r22], 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -98519,7 +98519,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -000000000000785D 626cf81c80eebd SUB{NF} al, r22b, 0xbd +000000000000785D 626cf81c80eebd SUBNF al, r22b, 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -98538,7 +98538,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000007864 626c781c812ebdbdbdbd SUB{NF} eax, dword ptr [r22], 0xbdbdbdbd +0000000000007864 626c781c812ebdbdbdbd SUBNF eax, dword ptr [r22], 0xbdbdbdbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -98558,7 +98558,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 4, RawSize: 4, Encoding: I -000000000000786E 626c781c81eebdbdbdbd SUB{NF} eax, r22d, 0xbdbdbdbd +000000000000786E 626c781c81eebdbdbdbd SUBNF eax, r22d, 0xbdbdbdbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -98577,7 +98577,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 4, RawSize: 4, Encoding: I -0000000000007878 626cf81c812ebdbdbdbd SUB{NF} rax, qword ptr [r22], 0xbdbdbdbd +0000000000007878 626cf81c812ebdbdbdbd SUBNF rax, qword ptr [r22], 0xbdbdbdbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -98597,7 +98597,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 4, RawSize: 4, Encoding: I -0000000000007882 626cf81c81eebdbdbdbd SUB{NF} rax, r22, 0xbdbdbdbd +0000000000007882 626cf81c81eebdbdbdbd SUBNF rax, r22, 0xbdbdbdbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -98616,7 +98616,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 4, RawSize: 4, Encoding: I -000000000000788C 626c791c812ebdbd SUB{NF} ax, word ptr [r22], 0xbdbd +000000000000788C 626c791c812ebdbd SUBNF ax, word ptr [r22], 0xbdbd DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -98636,7 +98636,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 2, RawSize: 2, Encoding: I -0000000000007894 626c791c81eebdbd SUB{NF} ax, r22w, 0xbdbd +0000000000007894 626c791c81eebdbd SUBNF ax, r22w, 0xbdbd DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -98655,7 +98655,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: General Purpose, RegSize: 2, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 2, RawSize: 2, Encoding: I -000000000000789C 626cf91c812ebdbdbdbd SUB{NF} rax, qword ptr [r22], 0xbdbdbdbd +000000000000789C 626cf91c812ebdbdbdbd SUBNF rax, qword ptr [r22], 0xbdbdbdbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -98675,7 +98675,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 4, RawSize: 4, Encoding: I -00000000000078A6 626cf91c81eebdbdbdbd SUB{NF} rax, r22, 0xbdbdbdbd +00000000000078A6 626cf91c81eebdbdbdbd SUBNF rax, r22, 0xbdbdbdbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -98694,7 +98694,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 4, RawSize: 4, Encoding: I -00000000000078B0 626c781c832ebd SUB{NF} eax, dword ptr [r22], 0xbd +00000000000078B0 626c781c832ebd SUBNF eax, dword ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -98714,7 +98714,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000078B7 626c781c83eebd SUB{NF} eax, r22d, 0xbd +00000000000078B7 626c781c83eebd SUBNF eax, r22d, 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -98733,7 +98733,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000078BE 626cf81c832ebd SUB{NF} rax, qword ptr [r22], 0xbd +00000000000078BE 626cf81c832ebd SUBNF rax, qword ptr [r22], 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -98753,7 +98753,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000078C5 626cf81c83eebd SUB{NF} rax, r22, 0xbd +00000000000078C5 626cf81c83eebd SUBNF rax, r22, 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -98772,7 +98772,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000078CC 626c791c832ebd SUB{NF} ax, word ptr [r22], 0xbd +00000000000078CC 626c791c832ebd SUBNF ax, word ptr [r22], 0xbd DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -98792,7 +98792,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000078D3 626c791c83eebd SUB{NF} ax, r22w, 0xbd +00000000000078D3 626c791c83eebd SUBNF ax, r22w, 0xbd DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -98811,7 +98811,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: General Purpose, RegSize: 2, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000078DA 626cf91c832ebd SUB{NF} rax, qword ptr [r22], 0xbd +00000000000078DA 626cf91c832ebd SUBNF rax, qword ptr [r22], 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -98831,7 +98831,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -00000000000078E1 626cf91c83eebd SUB{NF} rax, r22, 0xbd +00000000000078E1 626cf91c83eebd SUBNF rax, r22, 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: ARITH, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -99079,7 +99079,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 2, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -000000000000792D 626c780cf41e TZCNT{NF} r27d, dword ptr [r22] +000000000000792D 626c780cf41e TZCNTNF r27d, dword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: BMI1, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -99098,7 +99098,7 @@ Operand: 1, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, Segment: 3, Base: 22, -0000000000007933 626c780cf4de TZCNT{NF} r27d, r22d +0000000000007933 626c780cf4de TZCNTNF r27d, r22d DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: BMI1, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -99116,7 +99116,7 @@ Operand: 0, Acc: -W, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 27, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 -0000000000007939 626cf80cf41e TZCNT{NF} r27, qword ptr [r22] +0000000000007939 626cf80cf41e TZCNTNF r27, qword ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: BMI1, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -99135,7 +99135,7 @@ Operand: 1, Acc: R-, Type: Memory, Size: 8, RawSize: 8, Encoding: M, Segment: 3, Base: 22, -000000000000793F 626cf80cf4de TZCNT{NF} r27, r22 +000000000000793F 626cf80cf4de TZCNTNF r27, r22 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: BMI1, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -99153,7 +99153,7 @@ Operand: 0, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 27, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 -0000000000007945 626c790cf41e TZCNT{NF} r27w, word ptr [r22] +0000000000007945 626c790cf41e TZCNTNF r27w, word ptr [r22] DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: BMI1, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -99172,7 +99172,7 @@ Operand: 1, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, Segment: 3, Base: 22, -000000000000794B 626c790cf4de TZCNT{NF} r27w, r22w +000000000000794B 626c790cf4de TZCNTNF r27w, r22w DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: BMI1, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -99190,7 +99190,7 @@ Operand: 0, Acc: -W, Type: Register, Size: 2, RawSize: 2, Encoding: R, RegType: General Purpose, RegSize: 2, RegId: 27, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: General Purpose, RegSize: 2, RegId: 22, RegCount: 1 -0000000000007951 626cf90cf41e TZCNT{NF} r27, qword ptr [r22] +0000000000007951 626cf90cf41e TZCNTNF r27, qword ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: BMI1, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -99209,7 +99209,7 @@ Operand: 1, Acc: R-, Type: Memory, Size: 8, RawSize: 8, Encoding: M, Segment: 3, Base: 22, -0000000000007957 626cf90cf4de TZCNT{NF} r27, r22 +0000000000007957 626cf90cf4de TZCNTNF r27, r22 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: BMI1, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -100249,7 +100249,7 @@ Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I Operand: 2, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000007AA5 626c780c301e XOR{NF} byte ptr [r22], r27b +0000000000007AA5 626c780c301e XORNF byte ptr [r22], r27b DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -100268,7 +100268,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: R, RegType: General Purpose, RegSize: 1, RegId: 27, RegCount: 1 -0000000000007AAB 626c780c30de XOR{NF} r22b, r27b +0000000000007AAB 626c780c30de XORNF r22b, r27b DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -100286,7 +100286,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: R, RegType: General Purpose, RegSize: 1, RegId: 27, RegCount: 1 -0000000000007AB1 626cf80c301e XOR{NF} byte ptr [r22], r27b +0000000000007AB1 626cf80c301e XORNF byte ptr [r22], r27b DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -100305,7 +100305,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: R, RegType: General Purpose, RegSize: 1, RegId: 27, RegCount: 1 -0000000000007AB7 626cf80c30de XOR{NF} r22b, r27b +0000000000007AB7 626cf80c30de XORNF r22b, r27b DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -100323,7 +100323,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: R, RegType: General Purpose, RegSize: 1, RegId: 27, RegCount: 1 -0000000000007ABD 626c780c311e XOR{NF} dword ptr [r22], r27d +0000000000007ABD 626c780c311e XORNF dword ptr [r22], r27d DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -100342,7 +100342,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 27, RegCount: 1 -0000000000007AC3 626c780c31de XOR{NF} r22d, r27d +0000000000007AC3 626c780c31de XORNF r22d, r27d DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -100360,7 +100360,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 27, RegCount: 1 -0000000000007AC9 626cf80c311e XOR{NF} qword ptr [r22], r27 +0000000000007AC9 626cf80c311e XORNF qword ptr [r22], r27 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -100379,7 +100379,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 27, RegCount: 1 -0000000000007ACF 626cf80c31de XOR{NF} r22, r27 +0000000000007ACF 626cf80c31de XORNF r22, r27 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -100397,7 +100397,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 27, RegCount: 1 -0000000000007AD5 626c790c311e XOR{NF} word ptr [r22], r27w +0000000000007AD5 626c790c311e XORNF word ptr [r22], r27w DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -100416,7 +100416,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: R, RegType: General Purpose, RegSize: 2, RegId: 27, RegCount: 1 -0000000000007ADB 626c790c31de XOR{NF} r22w, r27w +0000000000007ADB 626c790c31de XORNF r22w, r27w DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -100434,7 +100434,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: General Purpose, RegSize: 2, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: R, RegType: General Purpose, RegSize: 2, RegId: 27, RegCount: 1 -0000000000007AE1 626cf90c311e XOR{NF} qword ptr [r22], r27 +0000000000007AE1 626cf90c311e XORNF qword ptr [r22], r27 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -100453,7 +100453,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 27, RegCount: 1 -0000000000007AE7 626cf90c31de XOR{NF} r22, r27 +0000000000007AE7 626cf90c31de XORNF r22, r27 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -100471,7 +100471,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 27, RegCount: 1 -0000000000007AED 626c780c321e XOR{NF} r27b, byte ptr [r22] +0000000000007AED 626c780c321e XORNF r27b, byte ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -100490,7 +100490,7 @@ Operand: 1, Acc: R-, Type: Memory, Size: 1, RawSize: 1, Encoding: M, Segment: 3, Base: 22, -0000000000007AF3 626c780c32de XOR{NF} r27b, r22b +0000000000007AF3 626c780c32de XORNF r27b, r22b DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -100508,7 +100508,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 1, RawSize: 1, Encoding: R, RegType: General Purpose, RegSize: 1, RegId: 27, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 -0000000000007AF9 626cf80c321e XOR{NF} r27b, byte ptr [r22] +0000000000007AF9 626cf80c321e XORNF r27b, byte ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -100527,7 +100527,7 @@ Operand: 1, Acc: R-, Type: Memory, Size: 1, RawSize: 1, Encoding: M, Segment: 3, Base: 22, -0000000000007AFF 626cf80c32de XOR{NF} r27b, r22b +0000000000007AFF 626cf80c32de XORNF r27b, r22b DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -100545,7 +100545,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 1, RawSize: 1, Encoding: R, RegType: General Purpose, RegSize: 1, RegId: 27, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 -0000000000007B05 626c780c331e XOR{NF} r27d, dword ptr [r22] +0000000000007B05 626c780c331e XORNF r27d, dword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -100564,7 +100564,7 @@ Operand: 1, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, Segment: 3, Base: 22, -0000000000007B0B 626c780c33de XOR{NF} r27d, r22d +0000000000007B0B 626c780c33de XORNF r27d, r22d DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -100582,7 +100582,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 27, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 -0000000000007B11 626cf80c331e XOR{NF} r27, qword ptr [r22] +0000000000007B11 626cf80c331e XORNF r27, qword ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -100601,7 +100601,7 @@ Operand: 1, Acc: R-, Type: Memory, Size: 8, RawSize: 8, Encoding: M, Segment: 3, Base: 22, -0000000000007B17 626cf80c33de XOR{NF} r27, r22 +0000000000007B17 626cf80c33de XORNF r27, r22 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -100619,7 +100619,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 27, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 -0000000000007B1D 626c790c331e XOR{NF} r27w, word ptr [r22] +0000000000007B1D 626c790c331e XORNF r27w, word ptr [r22] DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -100638,7 +100638,7 @@ Operand: 1, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, Segment: 3, Base: 22, -0000000000007B23 626c790c33de XOR{NF} r27w, r22w +0000000000007B23 626c790c33de XORNF r27w, r22w DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -100656,7 +100656,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 2, RawSize: 2, Encoding: R, RegType: General Purpose, RegSize: 2, RegId: 27, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: General Purpose, RegSize: 2, RegId: 22, RegCount: 1 -0000000000007B29 626cf90c331e XOR{NF} r27, qword ptr [r22] +0000000000007B29 626cf90c331e XORNF r27, qword ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -100675,7 +100675,7 @@ Operand: 1, Acc: R-, Type: Memory, Size: 8, RawSize: 8, Encoding: M, Segment: 3, Base: 22, -0000000000007B2F 626cf90c33de XOR{NF} r27, r22 +0000000000007B2F 626cf90c33de XORNF r27, r22 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -100693,7 +100693,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 27, RegCount: 1 Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 -0000000000007B35 626c780c8036bd XOR{NF} byte ptr [r22], 0xbd +0000000000007B35 626c780c8036bd XORNF byte ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -100712,7 +100712,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000007B3C 626c780c80f6bd XOR{NF} r22b, 0xbd +0000000000007B3C 626c780c80f6bd XORNF r22b, 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -100730,7 +100730,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000007B43 626cf80c8036bd XOR{NF} byte ptr [r22], 0xbd +0000000000007B43 626cf80c8036bd XORNF byte ptr [r22], 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -100749,7 +100749,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000007B4A 626cf80c80f6bd XOR{NF} r22b, 0xbd +0000000000007B4A 626cf80c80f6bd XORNF r22b, 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -100767,7 +100767,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000007B51 626c780c8136bdbdbdbd XOR{NF} dword ptr [r22], 0xbdbdbdbd +0000000000007B51 626c780c8136bdbdbdbd XORNF dword ptr [r22], 0xbdbdbdbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -100786,7 +100786,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Immediate, Size: 4, RawSize: 4, Encoding: I -0000000000007B5B 626c780c81f6bdbdbdbd XOR{NF} r22d, 0xbdbdbdbd +0000000000007B5B 626c780c81f6bdbdbdbd XORNF r22d, 0xbdbdbdbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -100804,7 +100804,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Immediate, Size: 4, RawSize: 4, Encoding: I -0000000000007B65 626cf80c8136bdbdbdbd XOR{NF} qword ptr [r22], 0xbdbdbdbd +0000000000007B65 626cf80c8136bdbdbdbd XORNF qword ptr [r22], 0xbdbdbdbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -100823,7 +100823,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Immediate, Size: 4, RawSize: 4, Encoding: I -0000000000007B6F 626cf80c81f6bdbdbdbd XOR{NF} r22, 0xbdbdbdbd +0000000000007B6F 626cf80c81f6bdbdbdbd XORNF r22, 0xbdbdbdbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -100841,7 +100841,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Immediate, Size: 4, RawSize: 4, Encoding: I -0000000000007B79 626c790c8136bdbd XOR{NF} word ptr [r22], 0xbdbd +0000000000007B79 626c790c8136bdbd XORNF word ptr [r22], 0xbdbd DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -100860,7 +100860,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Immediate, Size: 2, RawSize: 2, Encoding: I -0000000000007B81 626c790c81f6bdbd XOR{NF} r22w, 0xbdbd +0000000000007B81 626c790c81f6bdbd XORNF r22w, 0xbdbd DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -100878,7 +100878,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: General Purpose, RegSize: 2, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Immediate, Size: 2, RawSize: 2, Encoding: I -0000000000007B89 626cf90c8136bdbdbdbd XOR{NF} qword ptr [r22], 0xbdbdbdbd +0000000000007B89 626cf90c8136bdbdbdbd XORNF qword ptr [r22], 0xbdbdbdbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -100897,7 +100897,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Immediate, Size: 4, RawSize: 4, Encoding: I -0000000000007B93 626cf90c81f6bdbdbdbd XOR{NF} r22, 0xbdbdbdbd +0000000000007B93 626cf90c81f6bdbdbdbd XORNF r22, 0xbdbdbdbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -100915,7 +100915,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Immediate, Size: 4, RawSize: 4, Encoding: I -0000000000007B9D 626c780c8336bd XOR{NF} dword ptr [r22], 0xbd +0000000000007B9D 626c780c8336bd XORNF dword ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -100934,7 +100934,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000007BA4 626c780c83f6bd XOR{NF} r22d, 0xbd +0000000000007BA4 626c780c83f6bd XORNF r22d, 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -100952,7 +100952,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000007BAB 626cf80c8336bd XOR{NF} qword ptr [r22], 0xbd +0000000000007BAB 626cf80c8336bd XORNF qword ptr [r22], 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -100971,7 +100971,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000007BB2 626cf80c83f6bd XOR{NF} r22, 0xbd +0000000000007BB2 626cf80c83f6bd XORNF r22, 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -100989,7 +100989,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000007BB9 626c790c8336bd XOR{NF} word ptr [r22], 0xbd +0000000000007BB9 626c790c8336bd XORNF word ptr [r22], 0xbd DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -101008,7 +101008,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000007BC0 626c790c83f6bd XOR{NF} r22w, 0xbd +0000000000007BC0 626c790c83f6bd XORNF r22w, 0xbd DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -101026,7 +101026,7 @@ Operand: 0, Acc: RW, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: General Purpose, RegSize: 2, RegId: 22, RegCount: 1 Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000007BC7 626cf90c8336bd XOR{NF} qword ptr [r22], 0xbd +0000000000007BC7 626cf90c8336bd XORNF qword ptr [r22], 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -101045,7 +101045,7 @@ Segment: 3, Base: 22, Operand: 1, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000007BCE 626cf90c83f6bd XOR{NF} r22, 0xbd +0000000000007BCE 626cf90c83f6bd XORNF r22, 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -102053,7 +102053,7 @@ Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 -0000000000007D05 626c781c301e XOR{NF} al, byte ptr [r22], r27b +0000000000007D05 626c781c301e XORNF al, byte ptr [r22], r27b DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -102073,7 +102073,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: R, RegType: General Purpose, RegSize: 1, RegId: 27, RegCount: 1 -0000000000007D0B 626c781c30de XOR{NF} al, r22b, r27b +0000000000007D0B 626c781c30de XORNF al, r22b, r27b DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -102092,7 +102092,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: R, RegType: General Purpose, RegSize: 1, RegId: 27, RegCount: 1 -0000000000007D11 626cf81c301e XOR{NF} al, byte ptr [r22], r27b +0000000000007D11 626cf81c301e XORNF al, byte ptr [r22], r27b DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -102112,7 +102112,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: R, RegType: General Purpose, RegSize: 1, RegId: 27, RegCount: 1 -0000000000007D17 626cf81c30de XOR{NF} al, r22b, r27b +0000000000007D17 626cf81c30de XORNF al, r22b, r27b DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -102131,7 +102131,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: R, RegType: General Purpose, RegSize: 1, RegId: 27, RegCount: 1 -0000000000007D1D 626c781c311e XOR{NF} eax, dword ptr [r22], r27d +0000000000007D1D 626c781c311e XORNF eax, dword ptr [r22], r27d DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -102151,7 +102151,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 27, RegCount: 1 -0000000000007D23 626c781c31de XOR{NF} eax, r22d, r27d +0000000000007D23 626c781c31de XORNF eax, r22d, r27d DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -102170,7 +102170,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 27, RegCount: 1 -0000000000007D29 626cf81c311e XOR{NF} rax, qword ptr [r22], r27 +0000000000007D29 626cf81c311e XORNF rax, qword ptr [r22], r27 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -102190,7 +102190,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 27, RegCount: 1 -0000000000007D2F 626cf81c31de XOR{NF} rax, r22, r27 +0000000000007D2F 626cf81c31de XORNF rax, r22, r27 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -102209,7 +102209,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 27, RegCount: 1 -0000000000007D35 626c791c311e XOR{NF} ax, word ptr [r22], r27w +0000000000007D35 626c791c311e XORNF ax, word ptr [r22], r27w DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -102229,7 +102229,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: R, RegType: General Purpose, RegSize: 2, RegId: 27, RegCount: 1 -0000000000007D3B 626c791c31de XOR{NF} ax, r22w, r27w +0000000000007D3B 626c791c31de XORNF ax, r22w, r27w DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -102248,7 +102248,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: General Purpose, RegSize: 2, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: R, RegType: General Purpose, RegSize: 2, RegId: 27, RegCount: 1 -0000000000007D41 626cf91c311e XOR{NF} rax, qword ptr [r22], r27 +0000000000007D41 626cf91c311e XORNF rax, qword ptr [r22], r27 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -102268,7 +102268,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 27, RegCount: 1 -0000000000007D47 626cf91c31de XOR{NF} rax, r22, r27 +0000000000007D47 626cf91c31de XORNF rax, r22, r27 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -102287,7 +102287,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 27, RegCount: 1 -0000000000007D4D 626c781c321e XOR{NF} al, r27b, byte ptr [r22] +0000000000007D4D 626c781c321e XORNF al, r27b, byte ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -102307,7 +102307,7 @@ Operand: 2, Acc: R-, Type: Memory, Size: 1, RawSize: 1, Encoding: M, Segment: 3, Base: 22, -0000000000007D53 626c781c32de XOR{NF} al, r27b, r22b +0000000000007D53 626c781c32de XORNF al, r27b, r22b DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -102326,7 +102326,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: R, RegType: General Purpose, RegSize: 1, RegId: 27, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 -0000000000007D59 626cf81c321e XOR{NF} al, r27b, byte ptr [r22] +0000000000007D59 626cf81c321e XORNF al, r27b, byte ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -102346,7 +102346,7 @@ Operand: 2, Acc: R-, Type: Memory, Size: 1, RawSize: 1, Encoding: M, Segment: 3, Base: 22, -0000000000007D5F 626cf81c32de XOR{NF} al, r27b, r22b +0000000000007D5F 626cf81c32de XORNF al, r27b, r22b DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -102365,7 +102365,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: R, RegType: General Purpose, RegSize: 1, RegId: 27, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 -0000000000007D65 626c781c331e XOR{NF} eax, r27d, dword ptr [r22] +0000000000007D65 626c781c331e XORNF eax, r27d, dword ptr [r22] DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -102385,7 +102385,7 @@ Operand: 2, Acc: R-, Type: Memory, Size: 4, RawSize: 4, Encoding: M, Segment: 3, Base: 22, -0000000000007D6B 626c781c33de XOR{NF} eax, r27d, r22d +0000000000007D6B 626c781c33de XORNF eax, r27d, r22d DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -102404,7 +102404,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: R, RegType: General Purpose, RegSize: 4, RegId: 27, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 -0000000000007D71 626cf81c331e XOR{NF} rax, r27, qword ptr [r22] +0000000000007D71 626cf81c331e XORNF rax, r27, qword ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -102424,7 +102424,7 @@ Operand: 2, Acc: R-, Type: Memory, Size: 8, RawSize: 8, Encoding: M, Segment: 3, Base: 22, -0000000000007D77 626cf81c33de XOR{NF} rax, r27, r22 +0000000000007D77 626cf81c33de XORNF rax, r27, r22 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -102443,7 +102443,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 27, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 -0000000000007D7D 626c791c331e XOR{NF} ax, r27w, word ptr [r22] +0000000000007D7D 626c791c331e XORNF ax, r27w, word ptr [r22] DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -102463,7 +102463,7 @@ Operand: 2, Acc: R-, Type: Memory, Size: 2, RawSize: 2, Encoding: M, Segment: 3, Base: 22, -0000000000007D83 626c791c33de XOR{NF} ax, r27w, r22w +0000000000007D83 626c791c33de XORNF ax, r27w, r22w DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -102482,7 +102482,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: R, RegType: General Purpose, RegSize: 2, RegId: 27, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: General Purpose, RegSize: 2, RegId: 22, RegCount: 1 -0000000000007D89 626cf91c331e XOR{NF} rax, r27, qword ptr [r22] +0000000000007D89 626cf91c331e XORNF rax, r27, qword ptr [r22] DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -102502,7 +102502,7 @@ Operand: 2, Acc: R-, Type: Memory, Size: 8, RawSize: 8, Encoding: M, Segment: 3, Base: 22, -0000000000007D8F 626cf91c33de XOR{NF} rax, r27, r22 +0000000000007D8F 626cf91c33de XORNF rax, r27, r22 DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -102521,7 +102521,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: R, RegType: General Purpose, RegSize: 8, RegId: 27, RegCount: 1 Operand: 2, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 -0000000000007D95 626c781c8036bd XOR{NF} al, byte ptr [r22], 0xbd +0000000000007D95 626c781c8036bd XORNF al, byte ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -102541,7 +102541,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000007D9C 626c781c80f6bd XOR{NF} al, r22b, 0xbd +0000000000007D9C 626c781c80f6bd XORNF al, r22b, 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -102560,7 +102560,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000007DA3 626cf81c8036bd XOR{NF} al, byte ptr [r22], 0xbd +0000000000007DA3 626cf81c8036bd XORNF al, byte ptr [r22], 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -102580,7 +102580,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000007DAA 626cf81c80f6bd XOR{NF} al, r22b, 0xbd +0000000000007DAA 626cf81c80f6bd XORNF al, r22b, 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -102599,7 +102599,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 1, RawSize: 1, Encoding: M, RegType: General Purpose, RegSize: 1, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000007DB1 626c781c8136bdbdbdbd XOR{NF} eax, dword ptr [r22], 0xbdbdbdbd +0000000000007DB1 626c781c8136bdbdbdbd XORNF eax, dword ptr [r22], 0xbdbdbdbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -102619,7 +102619,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 4, RawSize: 4, Encoding: I -0000000000007DBB 626c781c81f6bdbdbdbd XOR{NF} eax, r22d, 0xbdbdbdbd +0000000000007DBB 626c781c81f6bdbdbdbd XORNF eax, r22d, 0xbdbdbdbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -102638,7 +102638,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 4, RawSize: 4, Encoding: I -0000000000007DC5 626cf81c8136bdbdbdbd XOR{NF} rax, qword ptr [r22], 0xbdbdbdbd +0000000000007DC5 626cf81c8136bdbdbdbd XORNF rax, qword ptr [r22], 0xbdbdbdbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -102658,7 +102658,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 4, RawSize: 4, Encoding: I -0000000000007DCF 626cf81c81f6bdbdbdbd XOR{NF} rax, r22, 0xbdbdbdbd +0000000000007DCF 626cf81c81f6bdbdbdbd XORNF rax, r22, 0xbdbdbdbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -102677,7 +102677,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 4, RawSize: 4, Encoding: I -0000000000007DD9 626c791c8136bdbd XOR{NF} ax, word ptr [r22], 0xbdbd +0000000000007DD9 626c791c8136bdbd XORNF ax, word ptr [r22], 0xbdbd DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -102697,7 +102697,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 2, RawSize: 2, Encoding: I -0000000000007DE1 626c791c81f6bdbd XOR{NF} ax, r22w, 0xbdbd +0000000000007DE1 626c791c81f6bdbd XORNF ax, r22w, 0xbdbd DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -102716,7 +102716,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: General Purpose, RegSize: 2, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 2, RawSize: 2, Encoding: I -0000000000007DE9 626cf91c8136bdbdbdbd XOR{NF} rax, qword ptr [r22], 0xbdbdbdbd +0000000000007DE9 626cf91c8136bdbdbdbd XORNF rax, qword ptr [r22], 0xbdbdbdbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -102736,7 +102736,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 4, RawSize: 4, Encoding: I -0000000000007DF3 626cf91c81f6bdbdbdbd XOR{NF} rax, r22, 0xbdbdbdbd +0000000000007DF3 626cf91c81f6bdbdbdbd XORNF rax, r22, 0xbdbdbdbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -102755,7 +102755,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 4, RawSize: 4, Encoding: I -0000000000007DFD 626c781c8336bd XOR{NF} eax, dword ptr [r22], 0xbd +0000000000007DFD 626c781c8336bd XORNF eax, dword ptr [r22], 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -102775,7 +102775,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000007E04 626c781c83f6bd XOR{NF} eax, r22d, 0xbd +0000000000007E04 626c781c83f6bd XORNF eax, r22d, 0xbd DSIZE: 32, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -102794,7 +102794,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 4, RawSize: 4, Encoding: M, RegType: General Purpose, RegSize: 4, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000007E0B 626cf81c8336bd XOR{NF} rax, qword ptr [r22], 0xbd +0000000000007E0B 626cf81c8336bd XORNF rax, qword ptr [r22], 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -102814,7 +102814,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000007E12 626cf81c83f6bd XOR{NF} rax, r22, 0xbd +0000000000007E12 626cf81c83f6bd XORNF rax, r22, 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -102833,7 +102833,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 8, RawSize: 8, Encoding: M, RegType: General Purpose, RegSize: 8, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000007E19 626c791c8336bd XOR{NF} ax, word ptr [r22], 0xbd +0000000000007E19 626c791c8336bd XORNF ax, word ptr [r22], 0xbd DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -102853,7 +102853,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000007E20 626c791c83f6bd XOR{NF} ax, r22w, 0xbd +0000000000007E20 626c791c83f6bd XORNF ax, r22w, 0xbd DSIZE: 16, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -102872,7 +102872,7 @@ Operand: 1, Acc: R-, Type: Register, Size: 2, RawSize: 2, Encoding: M, RegType: General Purpose, RegSize: 2, RegId: 22, RegCount: 1 Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000007E27 626cf91c8336bd XOR{NF} rax, qword ptr [r22], 0xbd +0000000000007E27 626cf91c8336bd XORNF rax, qword ptr [r22], 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 @@ -102892,7 +102892,7 @@ Segment: 3, Base: 22, Operand: 2, Acc: R-, Type: Immediate, Size: 1, RawSize: 1, Encoding: I -0000000000007E2E 626cf91c83f6bd XOR{NF} rax, r22, 0xbd +0000000000007E2E 626cf91c83f6bd XORNF rax, r22, 0xbd DSIZE: 64, ASIZE: 64, VLEN: - ISA Set: APX_F, Ins cat: LOGIC, CET tracked: no CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 diff --git a/bddisasm_test/x86/apx/apx3_64.result b/bddisasm_test/x86/apx/apx3_64.result new file mode 100644 index 0000000..5e085aa --- /dev/null +++ b/bddisasm_test/x86/apx/apx3_64.result @@ -0,0 +1,161 @@ +0000000000000000 626c8902813ebdbdbdbd CCMPC qword ptr [r22], 0xbdbdbdbd, {dfv=OF,SF,ZF} + DSIZE: 64, ASIZE: 64, VLEN: - + ISA Set: APX_F, Ins cat: APX, CET tracked: no + CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 + EVEX Tuple Type: None + Exception class: APX, exception type: APX-EVEX-CCMP + FLAGS access + CF: t, + 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: Memory, Size: 8, RawSize: 8, Encoding: M, + Segment: 3, Base: 22, + Operand: 1, Acc: R-, Type: Immediate, Size: 4, RawSize: 4, Encoding: I + Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V + Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 + +000000000000000A 626c9902813ebdbdbdbd CCMPC qword ptr [r22], 0xbdbdbdbd, {dfv=OF,SF} + DSIZE: 64, ASIZE: 64, VLEN: - + ISA Set: APX_F, Ins cat: APX, CET tracked: no + CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 + EVEX Tuple Type: None + Exception class: APX, exception type: APX-EVEX-CCMP + FLAGS access + CF: t, + 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: Memory, Size: 8, RawSize: 8, Encoding: M, + Segment: 3, Base: 22, + Operand: 1, Acc: R-, Type: Immediate, Size: 4, RawSize: 4, Encoding: I + Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V + Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 + +0000000000000014 626cc902813ebdbdbdbd CCMPC qword ptr [r22], 0xbdbdbdbd, {dfv=SF,ZF} + DSIZE: 64, ASIZE: 64, VLEN: - + ISA Set: APX_F, Ins cat: APX, CET tracked: no + CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 + EVEX Tuple Type: None + Exception class: APX, exception type: APX-EVEX-CCMP + FLAGS access + CF: t, + 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: Memory, Size: 8, RawSize: 8, Encoding: M, + Segment: 3, Base: 22, + Operand: 1, Acc: R-, Type: Immediate, Size: 4, RawSize: 4, Encoding: I + Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V + Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 + +000000000000001E 626cd902813ebdbdbdbd CCMPC qword ptr [r22], 0xbdbdbdbd, {dfv=SF} + DSIZE: 64, ASIZE: 64, VLEN: - + ISA Set: APX_F, Ins cat: APX, CET tracked: no + CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 + EVEX Tuple Type: None + Exception class: APX, exception type: APX-EVEX-CCMP + FLAGS access + CF: t, + 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: Memory, Size: 8, RawSize: 8, Encoding: M, + Segment: 3, Base: 22, + Operand: 1, Acc: R-, Type: Immediate, Size: 4, RawSize: 4, Encoding: I + Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V + Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 + +0000000000000028 626ce902813ebdbdbdbd CCMPC qword ptr [r22], 0xbdbdbdbd, {dfv=ZF} + DSIZE: 64, ASIZE: 64, VLEN: - + ISA Set: APX_F, Ins cat: APX, CET tracked: no + CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 + EVEX Tuple Type: None + Exception class: APX, exception type: APX-EVEX-CCMP + FLAGS access + CF: t, + 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: Memory, Size: 8, RawSize: 8, Encoding: M, + Segment: 3, Base: 22, + Operand: 1, Acc: R-, Type: Immediate, Size: 4, RawSize: 4, Encoding: I + Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V + Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 + +0000000000000032 626cf102813ebdbdbdbd CCMPC qword ptr [r22], 0xbdbdbdbd, {dfv=CF} + DSIZE: 64, ASIZE: 64, VLEN: - + ISA Set: APX_F, Ins cat: APX, CET tracked: no + CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 + EVEX Tuple Type: None + Exception class: APX, exception type: APX-EVEX-CCMP + FLAGS access + CF: t, + 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: Memory, Size: 8, RawSize: 8, Encoding: M, + Segment: 3, Base: 22, + Operand: 1, Acc: R-, Type: Immediate, Size: 4, RawSize: 4, Encoding: I + Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V + Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 + +000000000000003C 626c8102813ebdbdbdbd CCMPC qword ptr [r22], 0xbdbdbdbd, {dfv=OF,SF,ZF,CF} + DSIZE: 64, ASIZE: 64, VLEN: - + ISA Set: APX_F, Ins cat: APX, CET tracked: no + CPUID leaf: 0x00000007, sub-leaf: 0x00000001, reg: edx, bit: 21 + EVEX Tuple Type: None + Exception class: APX, exception type: APX-EVEX-CCMP + FLAGS access + CF: t, + 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: Memory, Size: 8, RawSize: 8, Encoding: M, + Segment: 3, Base: 22, + Operand: 1, Acc: R-, Type: Immediate, Size: 4, RawSize: 4, Encoding: I + Operand: 2, Acc: R-, Type: Default flags, Size: 0, RawSize: 0, Encoding: V + Operand: 3, Acc: -W, Type: Register, Size: 8, RawSize: 8, Encoding: S, RegType: Flags, RegSize: 8, RegId: 0, RegCount: 1 + diff --git a/bddisasm_test/x86/apx/apx3_64.test b/bddisasm_test/x86/apx/apx3_64.test new file mode 100644 index 0000000..6652baa --- /dev/null +++ b/bddisasm_test/x86/apx/apx3_64.test @@ -0,0 +1 @@ +bl‰>˝˝˝˝bl™>˝˝˝˝blɁ>˝˝˝˝blف>˝˝˝˝blé>˝˝˝˝blń>˝˝˝˝bl>˝˝˝˝ \ No newline at end of file diff --git a/bdshemu_test/x86/bdshemu_test_x86.zip b/bdshemu_test/x86/bdshemu_test_x86.zip index 0fcd70f..d01d4ca 100644 Binary files a/bdshemu_test/x86/bdshemu_test_x86.zip and b/bdshemu_test/x86/bdshemu_test_x86.zip differ diff --git a/bindings/pybddisasm/setup.py b/bindings/pybddisasm/setup.py index f07cafa..2d9ea97 100644 --- a/bindings/pybddisasm/setup.py +++ b/bindings/pybddisasm/setup.py @@ -12,7 +12,7 @@ from setuptools import find_packages, setup, Command, Extension, Distribution from codecs import open VERSION = (0, 3, 0) -LIBRARY_VERSION = (2, 1, 2) +LIBRARY_VERSION = (2, 1, 3) DIR_INCLUDE = '../../inc' here = os.path.abspath(os.path.dirname(__file__)) diff --git a/inc/bddisasm_version.h b/inc/bddisasm_version.h index 9c02624..0c70073 100644 --- a/inc/bddisasm_version.h +++ b/inc/bddisasm_version.h @@ -7,7 +7,7 @@ #define DISASM_VERSION_MAJOR 2 #define DISASM_VERSION_MINOR 1 -#define DISASM_VERSION_REVISION 2 +#define DISASM_VERSION_REVISION 3 #define SHEMU_VERSION_MAJOR DISASM_VERSION_MAJOR #define SHEMU_VERSION_MINOR DISASM_VERSION_MINOR