nasm/travis/insns
H. Peter Anvin (Intel) eee1384bf5 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs
Add error-case ("negative test") coverage per the user's preferred
convention: rather than a separate source file, error-triggering
instruction lines are appended to the existing per-mnemonic .asm file
under a %ifdef ERROR guard, and the harness assembles the same file
twice -- once without -DERROR (existing positive-path coverage,
unaffected) and once with -DERROR (expected to fail, per nasm-t.py's
"error": "expected" json convention, matching the pre-existing
travis/ret/ret.json pattern).

The error material comes for free from lines the generator already
knows are bit-width-incompatible:

- Lines needing 64-bit encodings (reg64/imm64 operands, hireg r8-r15,
  apxreg r16-r31, etc. -- %needs64_token / build_variant_line) are, by
  construction, exactly the lines already excluded from the 16/32-bit
  "narrow" body. They're appended to the narrow file under %ifdef
  ERROR and probed at --bits 16/32 with -DERROR; only widths where the
  block actually fails become json entries.

- Symmetrically, CALL/JMP near-indirect targets via rm16/rm32 (only
  rm64 is valid in 64-bit mode -- confirmed empirically, matches the
  NOLONG flag on those insns.xda templates) are appended to the full
  (64-bit) body under %ifdef ERROR and probed at --bits 64 with
  -DERROR.

Each candidate block is probed before being turned into a json entry,
so a line that unexpectedly *does* assemble at some width (this
generator doesn't model every mode restriction) doesn't turn into a
bogus "expected error" test; a mnemonic whose *only* surviving
coverage would be error entries is also rejected (see below), since
"this never assembles" isn't meaningful regression coverage on its
own.

While wiring this up, discovered and fixed two related bugs in the
existing branch-mnemonic handling (gen_operand()'s is_branch
substitution):

1. is_branch replaced *every* operand of a branch mnemonic with the
   ".L1" local-label text, not just genuine relative/near/short/abs
   branch-displacement operands. This produced nonsensical lines like
   "loop .L1, .L1" (LOOP's address-size-override form takes a fixed
   "cx"/"ecx"/"rcx" second operand, not a branch target) and "call
   .L1" for JMP/CALL's indirect (rm16/32/64) and far-pointer
   (imm16:imm16) forms instead of an actual register/memory operand.
   These bogus lines silently poisoned assembly for the whole
   mnemonic, and LOOP/LOOPE/LOOPNE/LOOPNZ/LOOPZ/JCXZ were silently
   dropped entirely as a result (present in the "16 dropped" list).
   Restricting the substitution to base tokens matching
   /^imm(?:8|16|32|64)$/ fixes both LOOP's operand and JMP/CALL's
   indirect/far forms, and recovers all six previously-dropped
   mnemonics with correct coverage.

2. Once (1) exposed genuine rm16/rm32 operand generation for CALL/JMP,
   a new bit-width interaction appeared: rm16/rm32 near-indirect
   targets are only valid in 16/32-bit mode (unlike ordinary reg16/32
   operands elsewhere, which work at any bit width), so a line built
   from one now broke 64-bit assembly for the whole mnemonic the same
   way a needs64 line breaks 16/32-bit assembly. Added
   branch_narrow_only() and a parallel avoid64 line flag (mirroring
   needs64) to exclude these lines from the 64-bit "full" body -- this
   is also what feeds the new symmetric 64-bit error-case coverage
   described above.

Also added a safety-net to the existing "couldn't assemble in any
mode, drop the directory" check: a directory is now only kept if it
has at least one *non*-error json entry, preventing a future bug
symmetric to (1) from silently producing a directory whose only
content is error-case entries.

Verified via full scratch regeneration (2612 mnemonics generated / 10
dropped, up from 2606/16 thanks to the LOOP-family/JCXZ fix) +
nasm-t.py run (10918/10918 PASS, 0 FAIL) + per-mnemonic non-error
.json entry-count diff against the prior committed tree (identical
except the 6 newly-recovered mnemonics, confirming no regressions).
1976/2612 mnemonics gained at least one error-case entry (3951 error
json entries total). Regenerated travis/insns/ and validated via
'make -j32 travis' (all PASS, ~27s).

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-07-04 13:41:59 -07:00
..
aaa tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
aad tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
aadd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
aam tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
aand testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
aas tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
adc testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
adcx testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
add testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
addb tools/testgen: cover optional (*/?) operand omitted forms 2026-07-04 11:04:49 -07:00
addd tools/testgen: cover optional (*/?) operand omitted forms 2026-07-04 11:04:49 -07:00
addpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
addps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
addq tools/testgen: cover optional (*/?) operand omitted forms 2026-07-04 11:04:49 -07:00
addsd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
addss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
addsubpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
addsubps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
addw tools/testgen: cover optional (*/?) operand omitted forms 2026-07-04 11:04:49 -07:00
adox testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
aesdec testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
aesdec128kl testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
aesdec256kl testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
aesdeclast testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
aesdecwide128kl testgen: add modrm-memory disp8/disp32 boundary coverage 2026-07-04 12:21:31 -07:00
aesdecwide256kl testgen: add implicitly-sized memory operand coverage 2026-07-04 12:38:36 -07:00
aesenc testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
aesenc128kl testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
aesenc256kl testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
aesenclast testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
aesencwide128kl testgen: add modrm-memory disp8/disp32 boundary coverage 2026-07-04 12:21:31 -07:00
aesencwide256kl testgen: add implicitly-sized memory operand coverage 2026-07-04 12:38:36 -07:00
aesimc testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
aeskeygenassist testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
and testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
andb tools/testgen: cover optional (*/?) operand omitted forms 2026-07-04 11:04:49 -07:00
andd tools/testgen: cover optional (*/?) operand omitted forms 2026-07-04 11:04:49 -07:00
andn testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
andnb tools/testgen: cover optional (*/?) operand omitted forms 2026-07-04 11:04:49 -07:00
andnd tools/testgen: cover optional (*/?) operand omitted forms 2026-07-04 11:04:49 -07:00
andnpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
andnps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
andnq tools/testgen: cover optional (*/?) operand omitted forms 2026-07-04 11:04:49 -07:00
andnw tools/testgen: cover optional (*/?) operand omitted forms 2026-07-04 11:04:49 -07:00
andpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
andps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
andq tools/testgen: cover optional (*/?) operand omitted forms 2026-07-04 11:04:49 -07:00
andw tools/testgen: cover optional (*/?) operand omitted forms 2026-07-04 11:04:49 -07:00
aor testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
axor testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
bb0_reset tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
bb1_reset tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
bextr testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
blcfill testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
blci testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
blcic testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
blcmsk testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
blcs testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
blendpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
blendps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
blendvpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
blendvps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
blsfill testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
blsi testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
blsic testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
blsmsk testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
blsr testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
bndcl testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
bndcn testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
bndcu testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
bndldx testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
bndmk testgen: add modrm-memory disp8/disp32 boundary coverage 2026-07-04 12:21:31 -07:00
bndmov testgen: add modrm-memory disp8/disp32 boundary coverage 2026-07-04 12:21:31 -07:00
bndstx testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
bound tools/testgen: cover high register numbers (r8-r15, r16-r31) 2026-07-04 11:38:35 -07:00
brkpt tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
bsf testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
bsr testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
bswap testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
bt testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
btc testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
btr testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
bts testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
bzhi testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
call testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cbw tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
ccmp testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
ccmpa testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
ccmpae testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
ccmpb testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
ccmpbe testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
ccmpc testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
ccmpe testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
ccmpf testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
ccmpg testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
ccmpge testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
ccmpl testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
ccmple testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
ccmpna testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
ccmpnae testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
ccmpnb testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
ccmpnbe testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
ccmpnc testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
ccmpne testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
ccmpng testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
ccmpnge testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
ccmpnl testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
ccmpnle testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
ccmpno testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
ccmpns testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
ccmpnz testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
ccmpo testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
ccmps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
ccmpt testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
ccmpz testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cdq tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
cdqe tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
cfcmova testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cfcmovae testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cfcmovb testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cfcmovbe testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cfcmovc testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cfcmove testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cfcmovg testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cfcmovge testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cfcmovl testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cfcmovle testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cfcmovna testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cfcmovnae testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cfcmovnb testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cfcmovnbe testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cfcmovnc testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cfcmovne testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cfcmovng testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cfcmovnge testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cfcmovnl testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cfcmovnle testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cfcmovno testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cfcmovnp testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cfcmovns testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cfcmovnz testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cfcmovo testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cfcmovp testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cfcmovpe testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cfcmovpo testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cfcmovs testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cfcmovz testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
clac tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
clc tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
cld tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
cldemote testgen: add modrm-memory disp8/disp32 boundary coverage 2026-07-04 12:21:31 -07:00
clflush testgen: add modrm-memory disp8/disp32 boundary coverage 2026-07-04 12:21:31 -07:00
clflushopt testgen: add modrm-memory disp8/disp32 boundary coverage 2026-07-04 12:21:31 -07:00
clgi tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
cli tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
clrssbsy testgen: add implicitly-sized memory operand coverage 2026-07-04 12:38:36 -07:00
clts tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
clui tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
clwb testgen: add modrm-memory disp8/disp32 boundary coverage 2026-07-04 12:21:31 -07:00
clzero testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cmc tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
cmova testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cmovae testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cmovb testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cmovbe testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cmovc testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cmove testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cmovg testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cmovge testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cmovl testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cmovle testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cmovna testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cmovnae testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cmovnb testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cmovnbe testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cmovnc testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cmovne testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cmovng testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cmovnge testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cmovnl testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cmovnle testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cmovno testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cmovnp testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cmovns testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cmovnz testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cmovo testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cmovp testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cmovpe testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cmovpo testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cmovs testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cmovz testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cmp testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cmpaexadd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cmpaxadd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cmpbexadd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cmpbxadd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cmpcxadd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cmpeqpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cmpeqps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cmpeqsd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cmpeqss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cmpexadd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cmpgexadd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cmpgxadd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cmplepd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cmpleps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cmplesd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cmpless testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cmplexadd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cmpltpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cmpltps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cmpltsd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cmpltss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cmplxadd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cmpnaexadd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cmpnaxadd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cmpnbexadd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cmpnbxadd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cmpncxadd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cmpneqpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cmpneqps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cmpneqsd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cmpneqss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cmpnexadd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cmpngexadd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cmpngxadd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cmpnlepd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cmpnleps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cmpnlesd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cmpnless testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cmpnlexadd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cmpnltpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cmpnltps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cmpnltsd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cmpnltss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cmpnlxadd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cmpnoxadd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cmpnpxadd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cmpnsxadd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cmpnzxadd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cmpordpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cmpordps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cmpordsd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cmpordss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cmpoxadd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cmppd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cmppexadd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cmppoxadd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cmpps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cmppxadd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cmpsb tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
cmpsd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cmpsq tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
cmpss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cmpsw tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
cmpsxadd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cmpunordpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cmpunordps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cmpunordsd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cmpunordss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cmpxchg testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cmpxchg8b testgen: add implicitly-sized memory operand coverage 2026-07-04 12:38:36 -07:00
cmpxchg16b testgen: add implicitly-sized memory operand coverage 2026-07-04 12:38:36 -07:00
cmpxchg486 tools/testgen: cover high register numbers (r8-r15, r16-r31) 2026-07-04 11:38:35 -07:00
cmpzxadd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
comisd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
comiss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cpu_read tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
cpu_write tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
cpuid tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
cqo tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
crc32 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
ctest testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
ctesta testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
ctestae testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
ctestb testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
ctestbe testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
ctestc testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cteste testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
ctestf testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
ctestg testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
ctestge testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
ctestl testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
ctestle testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
ctestna testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
ctestnae testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
ctestnb testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
ctestnbe testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
ctestnc testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
ctestne testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
ctestng testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
ctestnge testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
ctestnl testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
ctestnle testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
ctestno testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
ctestns testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
ctestnz testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
ctesto testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
ctests testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
ctestt testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
ctestz testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cvtdq2pd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cvtdq2ps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cvtpd2dq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cvtpd2pi testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cvtpd2ps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cvtpi2pd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cvtpi2ps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cvtps2dq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cvtps2pd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cvtps2pi testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cvtsd2si testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cvtsd2ss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cvtsi2sd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cvtsi2ss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cvtss2sd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cvtss2si testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cvttpd2dq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cvttpd2pi testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cvttps2dq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cvttps2pi testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cvttsd2si testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cvttss2si testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
cwd tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
cwde tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
daa tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
das tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
dec testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
div testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
divpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
divps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
divsd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
divss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
dmint tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
dppd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
dpps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
emms tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
encls tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
enclu tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
enclv tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
encodekey128 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
encodekey256 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
endbr32 tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
endbr64 tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
enqcmd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
enqcmds testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
enter tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
enterd tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
enterq tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
enterw tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
erets tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
eretu tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
extractps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
extrq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
f2xm1 tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
fabs tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
fadd testgen: add implicitly-sized memory operand coverage 2026-07-04 12:38:36 -07:00
faddp tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
fbld testgen: add modrm-memory disp8/disp32 boundary coverage 2026-07-04 12:21:31 -07:00
fbstp testgen: add modrm-memory disp8/disp32 boundary coverage 2026-07-04 12:21:31 -07:00
fchs tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
fclex tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
fcmovb tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
fcmovbe tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
fcmove tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
fcmovnb tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
fcmovnbe tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
fcmovne tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
fcmovnu tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
fcmovu tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
fcom testgen: add implicitly-sized memory operand coverage 2026-07-04 12:38:36 -07:00
fcomi tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
fcomip tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
fcomp testgen: add implicitly-sized memory operand coverage 2026-07-04 12:38:36 -07:00
fcompp tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
fcos tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
fdecstp tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
fdisi tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
fdiv testgen: add implicitly-sized memory operand coverage 2026-07-04 12:38:36 -07:00
fdivp tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
fdivr testgen: add implicitly-sized memory operand coverage 2026-07-04 12:38:36 -07:00
fdivrp tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
femms tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
feni tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
ffree tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
ffreep tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
fiadd testgen: add implicitly-sized memory operand coverage 2026-07-04 12:38:36 -07:00
ficom testgen: add implicitly-sized memory operand coverage 2026-07-04 12:38:36 -07:00
ficomp testgen: add implicitly-sized memory operand coverage 2026-07-04 12:38:36 -07:00
fidiv testgen: add implicitly-sized memory operand coverage 2026-07-04 12:38:36 -07:00
fidivr testgen: add implicitly-sized memory operand coverage 2026-07-04 12:38:36 -07:00
fild testgen: add implicitly-sized memory operand coverage 2026-07-04 12:38:36 -07:00
fimul testgen: add implicitly-sized memory operand coverage 2026-07-04 12:38:36 -07:00
fincstp tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
finit tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
fist testgen: add implicitly-sized memory operand coverage 2026-07-04 12:38:36 -07:00
fistp testgen: add implicitly-sized memory operand coverage 2026-07-04 12:38:36 -07:00
fisttp testgen: add implicitly-sized memory operand coverage 2026-07-04 12:38:36 -07:00
fisub testgen: add implicitly-sized memory operand coverage 2026-07-04 12:38:36 -07:00
fisubr testgen: add implicitly-sized memory operand coverage 2026-07-04 12:38:36 -07:00
fld testgen: add implicitly-sized memory operand coverage 2026-07-04 12:38:36 -07:00
fld1 tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
fldcw testgen: add modrm-memory disp8/disp32 boundary coverage 2026-07-04 12:21:31 -07:00
fldenv testgen: add modrm-memory disp8/disp32 boundary coverage 2026-07-04 12:21:31 -07:00
fldl2e tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
fldl2t tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
fldlg2 tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
fldln2 tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
fldpi tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
fldz tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
fmul testgen: add implicitly-sized memory operand coverage 2026-07-04 12:38:36 -07:00
fmulp tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
fnclex tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
fndisi tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
fneni tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
fninit tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
fnop tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
fnsave testgen: add modrm-memory disp8/disp32 boundary coverage 2026-07-04 12:21:31 -07:00
fnstcw testgen: add modrm-memory disp8/disp32 boundary coverage 2026-07-04 12:21:31 -07:00
fnstenv testgen: add modrm-memory disp8/disp32 boundary coverage 2026-07-04 12:21:31 -07:00
fnstsw testgen: add modrm-memory disp8/disp32 boundary coverage 2026-07-04 12:21:31 -07:00
fpatan tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
fprem tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
fprem1 tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
fptan tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
frndint tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
frstor testgen: add modrm-memory disp8/disp32 boundary coverage 2026-07-04 12:21:31 -07:00
fsave testgen: add modrm-memory disp8/disp32 boundary coverage 2026-07-04 12:21:31 -07:00
fscale tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
fsetpm tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
fsin tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
fsincos tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
fsqrt tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
fst testgen: add implicitly-sized memory operand coverage 2026-07-04 12:38:36 -07:00
fstcw testgen: add modrm-memory disp8/disp32 boundary coverage 2026-07-04 12:21:31 -07:00
fstenv testgen: add modrm-memory disp8/disp32 boundary coverage 2026-07-04 12:21:31 -07:00
fstp testgen: add implicitly-sized memory operand coverage 2026-07-04 12:38:36 -07:00
fstsw testgen: add modrm-memory disp8/disp32 boundary coverage 2026-07-04 12:21:31 -07:00
fsub testgen: add implicitly-sized memory operand coverage 2026-07-04 12:38:36 -07:00
fsubp tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
fsubr testgen: add implicitly-sized memory operand coverage 2026-07-04 12:38:36 -07:00
fsubrp tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
ftst tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
fucom tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
fucomi tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
fucomip tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
fucomp tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
fucompp tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
fwait tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
fxam tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
fxch tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
fxrstor testgen: add modrm-memory disp8/disp32 boundary coverage 2026-07-04 12:21:31 -07:00
fxrstor64 testgen: add modrm-memory disp8/disp32 boundary coverage 2026-07-04 12:21:31 -07:00
fxsave testgen: add modrm-memory disp8/disp32 boundary coverage 2026-07-04 12:21:31 -07:00
fxsave64 testgen: add modrm-memory disp8/disp32 boundary coverage 2026-07-04 12:21:31 -07:00
fxtract tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
fyl2x tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
fyl2xp1 tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
getsec tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
gf2p8affineinvqb testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
gf2p8affineqb testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
gf2p8mulb testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
haddpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
haddps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
hint_nop testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
hint_nop0 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
hint_nop1 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
hint_nop2 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
hint_nop3 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
hint_nop4 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
hint_nop5 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
hint_nop6 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
hint_nop7 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
hint_nop8 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
hint_nop9 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
hint_nop10 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
hint_nop11 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
hint_nop12 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
hint_nop13 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
hint_nop14 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
hint_nop15 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
hint_nop16 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
hint_nop17 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
hint_nop18 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
hint_nop19 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
hint_nop20 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
hint_nop21 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
hint_nop22 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
hint_nop23 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
hint_nop24 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
hint_nop25 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
hint_nop26 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
hint_nop27 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
hint_nop28 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
hint_nop29 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
hint_nop30 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
hint_nop31 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
hint_nop32 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
hint_nop33 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
hint_nop34 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
hint_nop35 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
hint_nop36 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
hint_nop37 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
hint_nop38 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
hint_nop39 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
hint_nop40 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
hint_nop41 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
hint_nop42 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
hint_nop43 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
hint_nop44 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
hint_nop45 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
hint_nop46 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
hint_nop47 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
hint_nop48 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
hint_nop49 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
hint_nop50 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
hint_nop51 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
hint_nop52 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
hint_nop53 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
hint_nop54 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
hint_nop55 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
hint_nop56 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
hint_nop57 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
hint_nop58 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
hint_nop59 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
hint_nop60 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
hint_nop61 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
hint_nop62 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
hint_nop63 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
hlt tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
hreset tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
hsubpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
hsubps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
ibts tools/testgen: cover high register numbers (r8-r15, r16-r31) 2026-07-04 11:38:35 -07:00
icebp tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
idiv testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
imul testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
in tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
inc testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
incsspd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
incsspq tools/testgen: cover high register numbers (r8-r15, r16-r31) 2026-07-04 11:38:35 -07:00
insb tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
insd tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
insertps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
insertq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
insw tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
int tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
int01 tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
int1 tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
int03 tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
int3 tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
into tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
invd tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
invept testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
invlpg testgen: add modrm-memory disp8/disp32 boundary coverage 2026-07-04 12:21:31 -07:00
invlpga testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
invpcid testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
invvpid testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
iret tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
iretd tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
iretq tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
iretw tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
ja testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
jae testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
jb testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
jbe testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
jc testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
jcxz testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
je testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
jecxz testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
jg testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
jge testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
jl testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
jle testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
jmp testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
jmpabs tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
jmpe testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
jna testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
jnae testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
jnb testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
jnbe testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
jnc testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
jne testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
jng testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
jnge testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
jnl testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
jnle testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
jno testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
jnp testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
jns testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
jnz testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
jo testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
jp testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
jpe testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
jpo testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
jrcxz tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
js testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
jz testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
kadd tools/testgen: cover optional (*/?) operand omitted forms 2026-07-04 11:04:49 -07:00
kaddb tools/testgen: cover optional (*/?) operand omitted forms 2026-07-04 11:04:49 -07:00
kaddd tools/testgen: cover optional (*/?) operand omitted forms 2026-07-04 11:04:49 -07:00
kaddq tools/testgen: cover optional (*/?) operand omitted forms 2026-07-04 11:04:49 -07:00
kaddw tools/testgen: cover optional (*/?) operand omitted forms 2026-07-04 11:04:49 -07:00
kand tools/testgen: cover optional (*/?) operand omitted forms 2026-07-04 11:04:49 -07:00
kandb tools/testgen: cover optional (*/?) operand omitted forms 2026-07-04 11:04:49 -07:00
kandd tools/testgen: cover optional (*/?) operand omitted forms 2026-07-04 11:04:49 -07:00
kandn tools/testgen: cover optional (*/?) operand omitted forms 2026-07-04 11:04:49 -07:00
kandnb tools/testgen: cover optional (*/?) operand omitted forms 2026-07-04 11:04:49 -07:00
kandnd tools/testgen: cover optional (*/?) operand omitted forms 2026-07-04 11:04:49 -07:00
kandnq tools/testgen: cover optional (*/?) operand omitted forms 2026-07-04 11:04:49 -07:00
kandnw tools/testgen: cover optional (*/?) operand omitted forms 2026-07-04 11:04:49 -07:00
kandq tools/testgen: cover optional (*/?) operand omitted forms 2026-07-04 11:04:49 -07:00
kandw tools/testgen: cover optional (*/?) operand omitted forms 2026-07-04 11:04:49 -07:00
kmov testgen: add implicitly-sized memory operand coverage 2026-07-04 12:38:36 -07:00
kmovb testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
kmovd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
kmovq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
kmovw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
knot tools/testgen: cover optional (*/?) operand omitted forms 2026-07-04 11:04:49 -07:00
knotb tools/testgen: cover optional (*/?) operand omitted forms 2026-07-04 11:04:49 -07:00
knotd tools/testgen: cover optional (*/?) operand omitted forms 2026-07-04 11:04:49 -07:00
knotq tools/testgen: cover optional (*/?) operand omitted forms 2026-07-04 11:04:49 -07:00
knotw tools/testgen: cover optional (*/?) operand omitted forms 2026-07-04 11:04:49 -07:00
kor tools/testgen: cover optional (*/?) operand omitted forms 2026-07-04 11:04:49 -07:00
korb tools/testgen: cover optional (*/?) operand omitted forms 2026-07-04 11:04:49 -07:00
kord tools/testgen: cover optional (*/?) operand omitted forms 2026-07-04 11:04:49 -07:00
korq tools/testgen: cover optional (*/?) operand omitted forms 2026-07-04 11:04:49 -07:00
kortest tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
kortestb tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
kortestd tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
kortestq tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
kortestw tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
korw tools/testgen: cover optional (*/?) operand omitted forms 2026-07-04 11:04:49 -07:00
kshiftl tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
kshiftlb tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
kshiftld tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
kshiftlq tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
kshiftlw tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
kshiftr tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
kshiftrb tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
kshiftrd tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
kshiftrq tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
kshiftrw tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
kshl tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
kshlb tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
kshld tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
kshlq tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
kshlw tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
kshr tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
kshrb tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
kshrd tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
kshrq tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
kshrw tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
ktest tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
ktestb tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
ktestd tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
ktestq tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
ktestw tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
kunpck tools/testgen: cover optional (*/?) operand omitted forms 2026-07-04 11:04:49 -07:00
kunpckbw tools/testgen: cover optional (*/?) operand omitted forms 2026-07-04 11:04:49 -07:00
kunpckd tools/testgen: cover optional (*/?) operand omitted forms 2026-07-04 11:04:49 -07:00
kunpckdq tools/testgen: cover optional (*/?) operand omitted forms 2026-07-04 11:04:49 -07:00
kunpckq tools/testgen: cover optional (*/?) operand omitted forms 2026-07-04 11:04:49 -07:00
kunpckw tools/testgen: cover optional (*/?) operand omitted forms 2026-07-04 11:04:49 -07:00
kunpckwd tools/testgen: cover optional (*/?) operand omitted forms 2026-07-04 11:04:49 -07:00
kxnor tools/testgen: cover optional (*/?) operand omitted forms 2026-07-04 11:04:49 -07:00
kxnorb tools/testgen: cover optional (*/?) operand omitted forms 2026-07-04 11:04:49 -07:00
kxnord tools/testgen: cover optional (*/?) operand omitted forms 2026-07-04 11:04:49 -07:00
kxnorq tools/testgen: cover optional (*/?) operand omitted forms 2026-07-04 11:04:49 -07:00
kxnorw tools/testgen: cover optional (*/?) operand omitted forms 2026-07-04 11:04:49 -07:00
kxor tools/testgen: cover optional (*/?) operand omitted forms 2026-07-04 11:04:49 -07:00
kxorb tools/testgen: cover optional (*/?) operand omitted forms 2026-07-04 11:04:49 -07:00
kxord tools/testgen: cover optional (*/?) operand omitted forms 2026-07-04 11:04:49 -07:00
kxorq tools/testgen: cover optional (*/?) operand omitted forms 2026-07-04 11:04:49 -07:00
kxorw tools/testgen: cover optional (*/?) operand omitted forms 2026-07-04 11:04:49 -07:00
lahf tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
lar testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
lddqu testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
ldmxcsr testgen: add implicitly-sized memory operand coverage 2026-07-04 12:38:36 -07:00
lds tools/testgen: cover high register numbers (r8-r15, r16-r31) 2026-07-04 11:38:35 -07:00
ldtilecfg testgen: add implicitly-sized memory operand coverage 2026-07-04 12:38:36 -07:00
lea testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
leave tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
leaved tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
leaveq tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
leavew tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
les tools/testgen: cover high register numbers (r8-r15, r16-r31) 2026-07-04 11:38:35 -07:00
lfence tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
lfs testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
lgs testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
lkgs testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
lldt testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
llwpcb testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
lmsw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
loadall tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
loadall286 tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
loadiwkey testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
lodsb tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
lodsd tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
lodsq tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
lodsw tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
loop testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
loopd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
loope testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
looped testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
loopeq tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
loopew tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
loopne testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
loopned testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
loopneq tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
loopnew tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
loopnz testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
loopnzd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
loopnzq tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
loopnzw tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
loopq tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
loopw tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
loopz testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
loopzd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
loopzq tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
loopzw tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
lsl testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
lss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
ltr testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
lwpins testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
lwpval testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
lzcnt testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
maskmovdqu testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
maskmovq tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
maxpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
maxps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
maxsd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
maxss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
mfence tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
minpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
minps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
minsd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
minss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
monitor testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
monitord tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
monitorq tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
monitorw tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
monitorx testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
montmul tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
mov testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
movabs testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
movapd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
movaps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
movb testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
movbe testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
movd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
movddup testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
movdir64b testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
movdiri testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
movdq2q testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
movdqa testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
movdqu testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
movhlps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
movhpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
movhps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
movlhps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
movlpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
movlps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
movmskpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
movmskps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
movntdq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
movntdqa testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
movnti testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
movntpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
movntps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
movntq testgen: add modrm-memory disp8/disp32 boundary coverage 2026-07-04 12:21:31 -07:00
movntsd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
movntss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
movq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
movq2dq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
movrs testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
movsb tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
movsd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
movshdup testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
movsldup testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
movsq tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
movss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
movsw tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
movsx testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
movsxb testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
movsxd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
movsxw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
movupd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
movups testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
movw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
movzx testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
movzxb testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
movzxd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
movzxw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
mpsadbw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
mul testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
mulpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
mulps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
mulsd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
mulss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
mulx testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
mwait tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
mwaitx tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
neg testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
nop testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
nop2 tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
not testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
notb tools/testgen: cover optional (*/?) operand omitted forms 2026-07-04 11:04:49 -07:00
notd tools/testgen: cover optional (*/?) operand omitted forms 2026-07-04 11:04:49 -07:00
notq tools/testgen: cover optional (*/?) operand omitted forms 2026-07-04 11:04:49 -07:00
notw tools/testgen: cover optional (*/?) operand omitted forms 2026-07-04 11:04:49 -07:00
or testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
orb tools/testgen: cover optional (*/?) operand omitted forms 2026-07-04 11:04:49 -07:00
ord tools/testgen: cover optional (*/?) operand omitted forms 2026-07-04 11:04:49 -07:00
orpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
orps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
orq tools/testgen: cover optional (*/?) operand omitted forms 2026-07-04 11:04:49 -07:00
ortest tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
ortestb tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
ortestd tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
ortestq tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
ortestw tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
orw tools/testgen: cover optional (*/?) operand omitted forms 2026-07-04 11:04:49 -07:00
out tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
outsb tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
outsd tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
outsw tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
pabsb testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
pabsd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
pabsw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
packssdw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
packsswb testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
packusdw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
packuswb testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
paddb testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
paddd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
paddq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
paddsb testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
paddsiw testgen: add implicitly-sized memory operand coverage 2026-07-04 12:38:36 -07:00
paddsw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
paddusb testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
paddusw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
paddw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
palignr testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
pand testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
pandn testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
pause tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
paveb testgen: add implicitly-sized memory operand coverage 2026-07-04 12:38:36 -07:00
pavgb testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
pavgusb testgen: add implicitly-sized memory operand coverage 2026-07-04 12:38:36 -07:00
pavgw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
pblendvb testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
pblendw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
pbndkb tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
pclmulhqhqdq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
pclmulhqlqdq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
pclmullqhqdq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
pclmullqlqdq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
pclmulqdq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
pcmpeqb testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
pcmpeqd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
pcmpeqq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
pcmpeqw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
pcmpestri testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
pcmpestrm testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
pcmpgtb testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
pcmpgtd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
pcmpgtq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
pcmpgtw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
pcmpistri testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
pcmpistrm testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
pcommit tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
pconfig tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
pdep testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
pdistib testgen: add modrm-memory disp8/disp32 boundary coverage 2026-07-04 12:21:31 -07:00
pext testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
pextrb testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
pextrd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
pextrq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
pextrw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
pf2id testgen: add implicitly-sized memory operand coverage 2026-07-04 12:38:36 -07:00
pf2iw testgen: add implicitly-sized memory operand coverage 2026-07-04 12:38:36 -07:00
pfacc testgen: add implicitly-sized memory operand coverage 2026-07-04 12:38:36 -07:00
pfadd testgen: add implicitly-sized memory operand coverage 2026-07-04 12:38:36 -07:00
pfcmpeq testgen: add implicitly-sized memory operand coverage 2026-07-04 12:38:36 -07:00
pfcmpge testgen: add implicitly-sized memory operand coverage 2026-07-04 12:38:36 -07:00
pfcmpgt testgen: add implicitly-sized memory operand coverage 2026-07-04 12:38:36 -07:00
pfmax testgen: add implicitly-sized memory operand coverage 2026-07-04 12:38:36 -07:00
pfmin testgen: add implicitly-sized memory operand coverage 2026-07-04 12:38:36 -07:00
pfmul testgen: add implicitly-sized memory operand coverage 2026-07-04 12:38:36 -07:00
pfnacc testgen: add implicitly-sized memory operand coverage 2026-07-04 12:38:36 -07:00
pfpnacc testgen: add implicitly-sized memory operand coverage 2026-07-04 12:38:36 -07:00
pfrcp testgen: add implicitly-sized memory operand coverage 2026-07-04 12:38:36 -07:00
pfrcpit1 testgen: add implicitly-sized memory operand coverage 2026-07-04 12:38:36 -07:00
pfrcpit2 testgen: add implicitly-sized memory operand coverage 2026-07-04 12:38:36 -07:00
pfrcpv testgen: add implicitly-sized memory operand coverage 2026-07-04 12:38:36 -07:00
pfrsqit1 testgen: add implicitly-sized memory operand coverage 2026-07-04 12:38:36 -07:00
pfrsqrt testgen: add implicitly-sized memory operand coverage 2026-07-04 12:38:36 -07:00
pfrsqrtv testgen: add implicitly-sized memory operand coverage 2026-07-04 12:38:36 -07:00
pfsub testgen: add implicitly-sized memory operand coverage 2026-07-04 12:38:36 -07:00
pfsubr testgen: add implicitly-sized memory operand coverage 2026-07-04 12:38:36 -07:00
phaddd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
phaddsw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
phaddw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
phminposuw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
phsubd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
phsubsw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
phsubw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
pi2fd testgen: add implicitly-sized memory operand coverage 2026-07-04 12:38:36 -07:00
pi2fw testgen: add implicitly-sized memory operand coverage 2026-07-04 12:38:36 -07:00
pinsrb testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
pinsrd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
pinsrq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
pinsrw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
pmachriw testgen: add modrm-memory disp8/disp32 boundary coverage 2026-07-04 12:21:31 -07:00
pmaddubsw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
pmaddwd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
pmagw testgen: add implicitly-sized memory operand coverage 2026-07-04 12:38:36 -07:00
pmaxsb testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
pmaxsd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
pmaxsw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
pmaxub testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
pmaxud testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
pmaxuw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
pminsb testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
pminsd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
pminsw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
pminub testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
pminud testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
pminuw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
pmovmskb testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
pmovsxbd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
pmovsxbq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
pmovsxbw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
pmovsxdq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
pmovsxwd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
pmovsxwq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
pmovzxbd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
pmovzxbq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
pmovzxbw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
pmovzxdq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
pmovzxwd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
pmovzxwq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
pmuldq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
pmulhriw testgen: add implicitly-sized memory operand coverage 2026-07-04 12:38:36 -07:00
pmulhrsw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
pmulhrwa testgen: add implicitly-sized memory operand coverage 2026-07-04 12:38:36 -07:00
pmulhrwc testgen: add implicitly-sized memory operand coverage 2026-07-04 12:38:36 -07:00
pmulhuw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
pmulhw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
pmulld testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
pmullw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
pmuludq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
pmvgezb testgen: add modrm-memory disp8/disp32 boundary coverage 2026-07-04 12:21:31 -07:00
pmvlzb testgen: add modrm-memory disp8/disp32 boundary coverage 2026-07-04 12:21:31 -07:00
pmvnzb testgen: add modrm-memory disp8/disp32 boundary coverage 2026-07-04 12:21:31 -07:00
pmvzb testgen: add modrm-memory disp8/disp32 boundary coverage 2026-07-04 12:21:31 -07:00
pop tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
pop2 tools/testgen: cover high register numbers (r8-r15, r16-r31) 2026-07-04 11:38:35 -07:00
pop2p tools/testgen: cover high register numbers (r8-r15, r16-r31) 2026-07-04 11:38:35 -07:00
popa tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
popad tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
popaw tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
popcnt testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
popf tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
popfd tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
popfq tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
popfw tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
popp tools/testgen: cover high register numbers (r8-r15, r16-r31) 2026-07-04 11:38:35 -07:00
por testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
prefetch testgen: add modrm-memory disp8/disp32 boundary coverage 2026-07-04 12:21:31 -07:00
prefetchit0 testgen: add implicitly-sized memory operand coverage 2026-07-04 12:38:36 -07:00
prefetchit1 testgen: add implicitly-sized memory operand coverage 2026-07-04 12:38:36 -07:00
prefetchnta testgen: add implicitly-sized memory operand coverage 2026-07-04 12:38:36 -07:00
prefetchrst2 testgen: add implicitly-sized memory operand coverage 2026-07-04 12:38:36 -07:00
prefetcht0 testgen: add implicitly-sized memory operand coverage 2026-07-04 12:38:36 -07:00
prefetcht1 testgen: add implicitly-sized memory operand coverage 2026-07-04 12:38:36 -07:00
prefetcht2 testgen: add implicitly-sized memory operand coverage 2026-07-04 12:38:36 -07:00
prefetchw testgen: add modrm-memory disp8/disp32 boundary coverage 2026-07-04 12:21:31 -07:00
prefetchwt1 testgen: add implicitly-sized memory operand coverage 2026-07-04 12:38:36 -07:00
psadbw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
pshufb testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
pshufd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
pshufhw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
pshuflw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
pshufw testgen: add implicitly-sized memory operand coverage 2026-07-04 12:38:36 -07:00
psignb testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
psignd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
psignw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
pslld testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
pslldq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
psllq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
psllw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
psrad testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
psraw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
psrld testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
psrldq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
psrlq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
psrlw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
psubb testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
psubd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
psubq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
psubsb testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
psubsiw testgen: add implicitly-sized memory operand coverage 2026-07-04 12:38:36 -07:00
psubsw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
psubusb testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
psubusw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
psubw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
pswapd testgen: add implicitly-sized memory operand coverage 2026-07-04 12:38:36 -07:00
ptest testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
ptwrite testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
punpckhbw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
punpckhdq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
punpckhqdq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
punpckhwd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
punpcklbw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
punpckldq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
punpcklqdq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
punpcklwd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
push tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
push2 tools/testgen: cover high register numbers (r8-r15, r16-r31) 2026-07-04 11:38:35 -07:00
push2p tools/testgen: cover high register numbers (r8-r15, r16-r31) 2026-07-04 11:38:35 -07:00
pusha tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
pushad tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
pushaw tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
pushf tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
pushfd tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
pushfq tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
pushfw tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
pushp tools/testgen: cover high register numbers (r8-r15, r16-r31) 2026-07-04 11:38:35 -07:00
pvalidate tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
pxor testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
rcl testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
rcpps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
rcpss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
rcr testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
rdfsbase testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
rdgsbase testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
rdm tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
rdmsr testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
rdmsrlist tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
rdpid testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
rdpkru tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
rdpmc tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
rdrand testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
rdseed testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
rdshr tools/testgen: cover high register numbers (r8-r15, r16-r31) 2026-07-04 11:38:35 -07:00
rdsspd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
rdsspq tools/testgen: cover high register numbers (r8-r15, r16-r31) 2026-07-04 11:38:35 -07:00
rdtsc tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
rdtscp tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
ret tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
retd tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
retf tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
retfd tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
retfq tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
retfw tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
retn tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
retnd tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
retnq tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
retnw tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
retq tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
retw tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
rmpadjust tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
rol testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
rolx testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
ror testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
rorx testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
roundpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
roundps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
roundsd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
roundss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
rsdc tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
rsldt tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
rsm tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
rsqrtps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
rsqrtss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
rstorssp testgen: add implicitly-sized memory operand coverage 2026-07-04 12:38:36 -07:00
rsts tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
sahf tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
sal testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
salc tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
salx testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
sar testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
sarx testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
saveprevssp tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
sbb testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
scasb tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
scasd tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
scasq tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
scasw tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
senduipi tools/testgen: cover high register numbers (r8-r15, r16-r31) 2026-07-04 11:38:35 -07:00
serialize tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
seta testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
setae testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
setaezu testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
setazu testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
setb testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
setbe testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
setbezu testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
setbzu testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
setc testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
setczu testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
sete testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
setezu testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
setg testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
setge testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
setgezu testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
setgzu testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
setl testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
setle testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
setlezu testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
setlzu testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
setna testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
setnae testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
setnaezu testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
setnazu testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
setnb testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
setnbe testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
setnbezu testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
setnbzu testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
setnc testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
setnczu testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
setne testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
setnezu testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
setng testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
setnge testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
setngezu testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
setngzu testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
setnl testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
setnle testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
setnlezu testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
setnlzu testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
setno testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
setnozu testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
setnp testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
setnpzu testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
setns testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
setnszu testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
setnz testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
setnzzu testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
seto testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
setozu testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
setp testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
setpe testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
setpezu testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
setpo testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
setpozu testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
setpzu testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
sets testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
setssbsy tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
setszu testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
setz testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
setzzu testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
sfence tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
sha1msg1 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
sha1msg2 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
sha1nexte testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
sha1rnds4 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
sha256msg1 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
sha256msg2 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
sha256rnds2 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
shiftl tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
shiftlb tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
shiftld tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
shiftlq tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
shiftlw tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
shiftr tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
shiftrb tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
shiftrd tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
shiftrq tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
shiftrw tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
shl testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
shlb tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
shld testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
shlq tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
shlw tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
shlx testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
shr testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
shrb tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
shrd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
shrq tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
shrw tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
shrx testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
shufpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
shufps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
skinit tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
sldt testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
slwpcb testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
smint tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
smintold tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
smsw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
sqrtpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
sqrtps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
sqrtsd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
sqrtss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
stac tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
stc tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
std tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
stgi tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
sti tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
stmxcsr testgen: add implicitly-sized memory operand coverage 2026-07-04 12:38:36 -07:00
stosb tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
stosd tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
stosq tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
stosw tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
str testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
sttilecfg testgen: add implicitly-sized memory operand coverage 2026-07-04 12:38:36 -07:00
stui tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
sub testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
subpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
subps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
subsd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
subss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
svdc tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
svldt tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
svts tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
swapgs tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
syscall tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
sysenter tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
sysexit tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
sysret tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
t1mskc testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
t2rpntlvwz0 tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
t2rpntlvwz0rs tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
t2rpntlvwz0rst1 tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
t2rpntlvwz0t1 tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
t2rpntlvwz1 tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
t2rpntlvwz1rs tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
t2rpntlvwz1rst1 tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
t2rpntlvwz1t1 tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
tcmmimfp16ps tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
tcmmrlfp16ps tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
tconjtcmmimfp16ps tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
tconjtfp16 tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
tcvtrowd2ps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
tcvtrowps2bf16h testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
tcvtrowps2bf16l testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
tcvtrowps2phh testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
tcvtrowps2phl testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
tdpbf8ps tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
tdpbf16ps tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
tdpbhf8ps tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
tdpbssd tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
tdpbsud tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
tdpbusd tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
tdpbuud tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
tdpfp16ps tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
tdphbf8ps tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
tdphf8ps tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
test testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
testb tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
testd tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
testq tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
testui tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
testw tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
tilemovrow testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
tilerelease tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
tilezero tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
tmmultf32ps tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
tpause testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
ttcmmimfp16ps tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
ttcmmrlfp16ps tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
ttdpbf16ps tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
ttdpfp16ps tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
ttmmultf32ps tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
ttransposed tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
tzcnt testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
tzmsk testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
ucomisd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
ucomiss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
ud0 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
ud1 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
ud2 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
ud2a testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
ud2b testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
udb tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
udw tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
uiret tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
umonitor testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
umov tools/testgen: cover high register numbers (r8-r15, r16-r31) 2026-07-04 11:38:35 -07:00
umwait testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
unpck tools/testgen: cover optional (*/?) operand omitted forms 2026-07-04 11:04:49 -07:00
unpckbw tools/testgen: cover optional (*/?) operand omitted forms 2026-07-04 11:04:49 -07:00
unpckd tools/testgen: cover optional (*/?) operand omitted forms 2026-07-04 11:04:49 -07:00
unpckdq tools/testgen: cover optional (*/?) operand omitted forms 2026-07-04 11:04:49 -07:00
unpckhpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
unpckhps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
unpcklpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
unpcklps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
unpckq tools/testgen: cover optional (*/?) operand omitted forms 2026-07-04 11:04:49 -07:00
unpckw tools/testgen: cover optional (*/?) operand omitted forms 2026-07-04 11:04:49 -07:00
unpckwd tools/testgen: cover optional (*/?) operand omitted forms 2026-07-04 11:04:49 -07:00
urdmsr tools/testgen: cover high register numbers (r8-r15, r16-r31) 2026-07-04 11:38:35 -07:00
uwrmsr tools/testgen: cover high register numbers (r8-r15, r16-r31) 2026-07-04 11:38:35 -07:00
v4fmaddps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
v4fmaddss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
v4fnmaddps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
v4fnmaddss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vaddbf16 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vaddpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vaddph testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vaddps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vaddsd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vaddsh testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vaddss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vaddsubpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vaddsubps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vaesdec testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vaesdeclast testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vaesenc testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vaesenclast testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vaesimc testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vaeskeygenassist testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
valignd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
valignq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vandnpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vandnps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vandpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vandps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vbcstnebf16ps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vbcstnebf162ps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vbcstnesh2ps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vbitrev testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vblendmpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vblendmps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vblendpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vblendps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vblendvpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vblendvps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vbmacor16x16x16 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vbmacxor16x16x16 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vbroadcastf32x2 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vbroadcastf32x4 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vbroadcastf32x8 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vbroadcastf64x2 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vbroadcastf64x4 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vbroadcastf128 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vbroadcasti32x2 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vbroadcasti32x4 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vbroadcasti32x8 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vbroadcasti64x2 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vbroadcasti64x4 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vbroadcasti128 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vbroadcastsd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vbroadcastss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpbf16 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpeq_oqpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpeq_oqps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpeq_oqsd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpeq_oqss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpeq_ospd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpeq_osps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpeq_ossd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpeq_osss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpeq_uqpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpeq_uqps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpeq_uqsd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpeq_uqss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpeq_uspd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpeq_usps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpeq_ussd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpeq_usss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpeqpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpeqps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpeqsd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpeqss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpfalse_oqpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpfalse_oqps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpfalse_oqsd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpfalse_oqss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpfalse_ospd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpfalse_osps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpfalse_ossd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpfalse_osss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpfalsepd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpfalseps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpfalsesd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpfalsess testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpge_oqpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpge_oqps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpge_oqsd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpge_oqss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpge_ospd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpge_osps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpge_ossd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpge_osss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpgepd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpgeps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpgesd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpgess testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpgt_oqpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpgt_oqps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpgt_oqsd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpgt_oqss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpgt_ospd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpgt_osps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpgt_ossd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpgt_osss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpgtpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpgtps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpgtsd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpgtss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmple_oqpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmple_oqps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmple_oqsd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmple_oqss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmple_ospd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmple_osps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmple_ossd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmple_osss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmplepd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpleps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmplesd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpless testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmplt_oqpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmplt_oqps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmplt_oqsd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmplt_oqss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmplt_ospd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmplt_osps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmplt_ossd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmplt_osss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpltpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpltps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpltsd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpltss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpneq_oqpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpneq_oqps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpneq_oqsd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpneq_oqss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpneq_ospd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpneq_osps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpneq_ossd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpneq_osss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpneq_uqpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpneq_uqps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpneq_uqsd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpneq_uqss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpneq_uspd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpneq_usps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpneq_ussd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpneq_usss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpneqpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpneqps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpneqsd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpneqss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpnge_uqpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpnge_uqps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpnge_uqsd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpnge_uqss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpnge_uspd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpnge_usps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpnge_ussd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpnge_usss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpngepd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpngeps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpngesd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpngess testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpngt_uqpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpngt_uqps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpngt_uqsd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpngt_uqss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpngt_uspd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpngt_usps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpngt_ussd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpngt_usss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpngtpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpngtps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpngtsd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpngtss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpnle_uqpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpnle_uqps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpnle_uqsd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpnle_uqss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpnle_uspd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpnle_usps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpnle_ussd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpnle_usss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpnlepd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpnleps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpnlesd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpnless testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpnlt_uqpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpnlt_uqps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpnlt_uqsd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpnlt_uqss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpnlt_uspd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpnlt_usps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpnlt_ussd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpnlt_usss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpnltpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpnltps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpnltsd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpnltss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpord_qpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpord_qps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpord_qsd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpord_qss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpord_spd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpord_sps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpord_ssd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpord_sss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpordpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpordps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpordsd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpordss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmppd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpph testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpsd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpsh testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmptrue_uqpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmptrue_uqps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmptrue_uqsd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmptrue_uqss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmptrue_uspd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmptrue_usps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmptrue_ussd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmptrue_usss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmptruepd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmptrueps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmptruesd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmptruess testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpunord_qpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpunord_qps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpunord_qsd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpunord_qss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpunord_spd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpunord_sps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpunord_ssd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpunord_sss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpunordpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpunordps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpunordsd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcmpunordss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcomisbf16 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcomisd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcomish testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcomiss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcompresspd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcompressps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcomxsd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcomxsh testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcomxss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvt2ph2bf8 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvt2ph2bf8s testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvt2ph2hf8 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvt2ph2hf8s testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvt2ps2phx testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvtbf162ibs testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvtbf162iubs testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvtbiasph2bf8 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvtbiasph2bf8s testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvtbiasph2hf8 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvtbiasph2hf8s testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvtdq2pd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvtdq2ph testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvtdq2ps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvthf82ph testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvtne2ps2bf16 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvtneebf162ps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvtneeph2ps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvtneobf162ps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvtneoph2ps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvtneps2bf16 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvtpd2dq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvtpd2ph testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvtpd2ps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvtpd2qq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvtpd2udq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvtpd2uqq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvtph2bf8 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvtph2bf8s testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvtph2dq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvtph2hf8 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvtph2hf8s testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvtph2ibs testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvtph2iubs testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvtph2pd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvtph2ps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvtph2psx testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvtph2qq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvtph2udq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvtph2uqq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvtph2uw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvtph2w testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvtps2dq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvtps2ibs testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvtps2iubs testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvtps2pd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvtps2ph testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvtps2phx testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvtps2qq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvtps2udq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvtps2uqq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvtqq2pd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvtqq2ph testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvtqq2ps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvtsd2sh testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvtsd2si testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvtsd2ss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvtsd2usi testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvtsh2sd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvtsh2si testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvtsh2ss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvtsh2usi testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvtsi2sd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvtsi2sh testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvtsi2ss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvtss2sd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvtss2sh testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvtss2si testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvtss2usi testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvttbf162ibs testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvttbf162iubs testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvttpd2dq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvttpd2dqs testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvttpd2qq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvttpd2qqs testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvttpd2udq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvttpd2udqs testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvttpd2uqq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvttpd2uqqs testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvttph2dq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvttph2ibs testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvttph2iubs testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvttph2qq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvttph2udq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvttph2uqq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvttph2uw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvttph2w testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvttps2dq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvttps2dqs testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvttps2ibs testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvttps2iubs testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvttps2qq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvttps2qqs testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvttps2udq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvttps2udqs testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvttps2uqq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvttps2uqqs testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvttsd2si testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvttsd2sis testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvttsd2usi testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvttsd2usis testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvttsh2si testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvttsh2usi testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvttss2si testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvttss2sis testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvttss2usi testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvttss2usis testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvtudq2pd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvtudq2ph testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvtudq2ps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvtuqq2pd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvtuqq2ph testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvtuqq2ps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvtusi2sd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvtusi2sh testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvtusi2ss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvtuw2ph testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vcvtw2ph testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vdbpsadbw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vdivbf16 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vdivpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vdivph testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vdivps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vdivsd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vdivsh testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vdivss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vdpbf16ps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vdppd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vdpphps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vdpps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vendscaleph testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vendscalesh testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
verr testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
verw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vexp2pd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vexp2ps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vexpandpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vexpandps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vextractf32x4 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vextractf32x8 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vextractf64x2 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vextractf64x4 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vextractf128 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vextracti32x4 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vextracti32x8 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vextracti64x2 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vextracti64x4 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vextracti128 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vextractps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfcmaddcph testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfcmaddcsh testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfcmulcph testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfcmulcsh testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfixupimmpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfixupimmps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfixupimmsd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfixupimmss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmadd123pd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmadd123ps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmadd123sd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmadd123ss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmadd132bf16 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmadd132pd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmadd132ph testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmadd132ps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmadd132sd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmadd132sh testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmadd132ss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmadd213bf16 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmadd213pd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmadd213ph testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmadd213ps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmadd213sd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmadd213sh testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmadd213ss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmadd231bf16 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmadd231pd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmadd231ph testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmadd231ps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmadd231sd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmadd231sh testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmadd231ss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmadd312pd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmadd312ps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmadd312sd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmadd312ss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmadd321pd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmadd321ps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmadd321sd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmadd321ss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmaddcph testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmaddcsh testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmaddpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmaddps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmaddsd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmaddss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmaddsub123pd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmaddsub123ps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmaddsub132pd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmaddsub132ph testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmaddsub132ps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmaddsub213pd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmaddsub213ph testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmaddsub213ps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmaddsub231pd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmaddsub231ph testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmaddsub231ps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmaddsub312pd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmaddsub312ps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmaddsub321pd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmaddsub321ps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmaddsubpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmaddsubps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmsub123pd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmsub123ps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmsub123sd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmsub123ss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmsub132bf16 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmsub132pd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmsub132ph testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmsub132ps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmsub132sd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmsub132sh testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmsub132ss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmsub213bf16 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmsub213pd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmsub213ph testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmsub213ps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmsub213sd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmsub213sh testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmsub213ss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmsub231bf16 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmsub231pd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmsub231ph testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmsub231ps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmsub231sd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmsub231sh testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmsub231ss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmsub312pd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmsub312ps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmsub312sd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmsub312ss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmsub321pd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmsub321ps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmsub321sd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmsub321ss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmsubadd123pd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmsubadd123ps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmsubadd132pd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmsubadd132ph testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmsubadd132ps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmsubadd213pd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmsubadd213ph testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmsubadd213ps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmsubadd231pd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmsubadd231ph testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmsubadd231ps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmsubadd312pd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmsubadd312ps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmsubadd321pd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmsubadd321ps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmsubaddpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmsubaddps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmsubpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmsubps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmsubsd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmsubss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmulcph testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfmulcsh testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfnmadd123pd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfnmadd123ps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfnmadd123sd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfnmadd123ss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfnmadd132bf16 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfnmadd132pd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfnmadd132ph testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfnmadd132ps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfnmadd132sd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfnmadd132sh testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfnmadd132ss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfnmadd213bf16 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfnmadd213pd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfnmadd213ph testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfnmadd213ps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfnmadd213sd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfnmadd213sh testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfnmadd213ss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfnmadd231bf16 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfnmadd231pd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfnmadd231ph testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfnmadd231ps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfnmadd231sd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfnmadd231sh testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfnmadd231ss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfnmadd312pd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfnmadd312ps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfnmadd312sd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfnmadd312ss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfnmadd321pd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfnmadd321ps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfnmadd321sd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfnmadd321ss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfnmaddpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfnmaddps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfnmaddsd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfnmaddss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfnmsub123pd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfnmsub123ps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfnmsub123sd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfnmsub123ss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfnmsub132bf16 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfnmsub132pd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfnmsub132ph testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfnmsub132ps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfnmsub132sd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfnmsub132sh testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfnmsub132ss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfnmsub213bf16 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfnmsub213pd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfnmsub213ph testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfnmsub213ps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfnmsub213sd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfnmsub213sh testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfnmsub213ss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfnmsub231bf16 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfnmsub231pd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfnmsub231ph testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfnmsub231ps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfnmsub231sd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfnmsub231sh testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfnmsub231ss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfnmsub312pd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfnmsub312ps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfnmsub312sd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfnmsub312ss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfnmsub321pd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfnmsub321ps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfnmsub321sd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfnmsub321ss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfnmsubpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfnmsubps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfnmsubsd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfnmsubss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfpclassbf16 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfpclasspd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfpclassph testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfpclassps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfpclasssd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfpclasssh testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfpclassss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfrczpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfrczps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfrczsd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vfrczss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vgatherdpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vgatherdps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vgatherpf0dpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vgatherpf0dps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vgatherpf0qpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vgatherpf0qps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vgatherpf1dpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vgatherpf1dps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vgatherpf1qpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vgatherpf1qps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vgatherqpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vgatherqps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vgetexpbf16 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vgetexppd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vgetexpph testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vgetexpps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vgetexpsd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vgetexpsh testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vgetexpss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vgetmantbf16 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vgetmantpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vgetmantph testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vgetmantps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vgetmantsd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vgetmantsh testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vgetmantss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vgf2p8affineinvqb testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vgf2p8affineqb testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vgf2p8mulb testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vhaddpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vhaddps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vhsubpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vhsubps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vinsertf32x4 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vinsertf32x8 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vinsertf64x2 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vinsertf64x4 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vinsertf128 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vinserti32x4 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vinserti32x8 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vinserti64x2 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vinserti64x4 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vinserti128 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vinsertps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vlddqu testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vldmxcsr testgen: add implicitly-sized memory operand coverage 2026-07-04 12:38:36 -07:00
vldqqu testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vmaskmovdqu testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vmaskmovpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vmaskmovps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vmaxbf16 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vmaxpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vmaxph testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vmaxps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vmaxsd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vmaxsh testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vmaxss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vmcall tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
vmclear testgen: add modrm-memory disp8/disp32 boundary coverage 2026-07-04 12:21:31 -07:00
vmfunc tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
vmgexit tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
vminbf16 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vminmaxbf16 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vminmaxpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vminmaxph testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vminmaxps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vminmaxsd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vminmaxsh testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vminmaxss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vminpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vminph testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vminps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vminsd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vminsh testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vminss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vmlaunch tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
vmload tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
vmmcall tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
vmovapd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vmovaps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vmovd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vmovddup testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vmovdqa testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vmovdqa32 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vmovdqa64 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vmovdqu testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vmovdqu8 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vmovdqu16 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vmovdqu32 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vmovdqu64 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vmovhlps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vmovhpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vmovhps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vmovlhps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vmovlpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vmovlps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vmovmskpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vmovmskps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vmovntdq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vmovntdqa testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vmovntpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vmovntps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vmovntqq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vmovq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vmovqqa testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vmovqqu testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vmovsd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vmovsh testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vmovshdup testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vmovsldup testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vmovss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vmovupd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vmovups testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vmovw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vmpsadbw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vmptrld testgen: add modrm-memory disp8/disp32 boundary coverage 2026-07-04 12:21:31 -07:00
vmptrst testgen: add modrm-memory disp8/disp32 boundary coverage 2026-07-04 12:21:31 -07:00
vmread testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vmresume tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
vmrun tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
vmsave tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
vmulbf16 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vmulpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vmulph testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vmulps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vmulsd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vmulsh testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vmulss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vmwrite testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vmxoff tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
vmxon testgen: add modrm-memory disp8/disp32 boundary coverage 2026-07-04 12:21:31 -07:00
vorpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vorps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vp2intersectd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vp2intersectq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vp4dpwssd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vp4dpwssds testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpabsb testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpabsd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpabsq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpabsw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpackssdw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpacksswb testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpackusdw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpackuswb testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpaddb testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpaddd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpaddq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpaddsb testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpaddsw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpaddusb testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpaddusw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpaddw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpalignr testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpand testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpandd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpandn testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpandnd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpandnq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpandq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpavgb testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpavgw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpblendd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpblendmb testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpblendmd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpblendmq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpblendmw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpblendvb testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpblendw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpbroadcastb testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpbroadcastd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpbroadcastmb2q testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpbroadcastmw2d testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpbroadcastq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpbroadcastw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpclmulhqhqdq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpclmulhqlqdq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpclmullqhqdq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpclmullqlqdq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpclmulqdq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpcmov testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpcmpb testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpcmpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpcmpeqb testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpcmpeqd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpcmpeqq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpcmpequb testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpcmpequd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpcmpequq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpcmpequw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpcmpeqw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpcmpestri testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpcmpestrm testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpcmpgeb testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpcmpged testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpcmpgeq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpcmpgeub testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpcmpgeud testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpcmpgeuq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpcmpgeuw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpcmpgew testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpcmpgtb testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpcmpgtd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpcmpgtq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpcmpgtub testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpcmpgtud testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpcmpgtuq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpcmpgtuw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpcmpgtw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpcmpistri testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpcmpistrm testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpcmpleb testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpcmpled testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpcmpleq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpcmpleub testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpcmpleud testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpcmpleuq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpcmpleuw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpcmplew testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpcmpltb testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpcmpltd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpcmpltq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpcmpltub testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpcmpltud testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpcmpltuq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpcmpltuw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpcmpltw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpcmpneqb testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpcmpneqd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpcmpneqq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpcmpnequb testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpcmpnequd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpcmpnequq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpcmpnequw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpcmpneqw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpcmpngtb testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpcmpngtd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpcmpngtq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpcmpngtub testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpcmpngtud testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpcmpngtuq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpcmpngtuw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpcmpngtw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpcmpnleb testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpcmpnled testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpcmpnleq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpcmpnleub testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpcmpnleud testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpcmpnleuq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpcmpnleuw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpcmpnlew testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpcmpnltb testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpcmpnltd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpcmpnltq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpcmpnltub testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpcmpnltud testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpcmpnltuq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpcmpnltuw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpcmpnltw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpcmpq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpcmpub testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpcmpud testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpcmpuq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpcmpuw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpcmpw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpcomb testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpcomd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpcompressb testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpcompressd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpcompressq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpcompressw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpcomq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpcomub testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpcomud testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpcomuq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpcomuw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpcomw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpconflictd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpconflictq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpdpbssd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpdpbssds testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpdpbsud testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpdpbsuds testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpdpbusd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpdpbusds testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpdpbuud testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpdpbuuds testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpdpwssd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpdpwssds testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpdpwsud testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpdpwsuds testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpdpwusd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpdpwusds testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpdpwuud testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpdpwuuds testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vperm2f128 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vperm2i128 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpermb testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpermd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpermi2b testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpermi2d testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpermi2pd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpermi2ps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpermi2q testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpermi2w testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpermilpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpermilps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpermpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpermps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpermq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpermt2b testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpermt2d testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpermt2pd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpermt2ps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpermt2q testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpermt2w testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpermw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpexpandb testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpexpandd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpexpandq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpexpandw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpextrb testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpextrd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpextrq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpextrw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpgatherdd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpgatherdq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpgatherqd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpgatherqq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vphaddbd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vphaddbq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vphaddbw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vphaddd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vphadddq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vphaddsw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vphaddubd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vphaddubq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vphaddubw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vphaddudq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vphadduwd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vphadduwq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vphaddw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vphaddwd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vphaddwq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vphminposuw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vphsubbw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vphsubd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vphsubdq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vphsubsw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vphsubw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vphsubwd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpinsrb testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpinsrd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpinsrq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpinsrw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vplzcntd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vplzcntq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpmacsdd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpmacsdqh testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpmacsdql testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpmacssdd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpmacssdqh testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpmacssdql testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpmacsswd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpmacssww testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpmacswd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpmacsww testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpmadcsswd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpmadcswd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpmadd52huq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpmadd52luq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpmaddubsw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpmaddwd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpmaskmovd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpmaskmovq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpmaxsb testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpmaxsd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpmaxsq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpmaxsw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpmaxub testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpmaxud testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpmaxuq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpmaxuw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpminsb testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpminsd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpminsq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpminsw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpminub testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpminud testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpminuq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpminuw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpmovb2m testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpmovd2m testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpmovdb testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpmovdw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpmovm2b testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpmovm2d testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpmovm2q testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpmovm2w testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpmovmskb testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpmovq2m testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpmovqb testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpmovqd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpmovqw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpmovsdb testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpmovsdw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpmovsqb testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpmovsqd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpmovsqw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpmovswb testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpmovsxbd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpmovsxbq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpmovsxbw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpmovsxdq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpmovsxwd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpmovsxwq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpmovusdb testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpmovusdw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpmovusqb testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpmovusqd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpmovusqw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpmovuswb testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpmovw2m testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpmovwb testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpmovzxbd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpmovzxbq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpmovzxbw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpmovzxdq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpmovzxwd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpmovzxwq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpmuldq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpmulhrsw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpmulhuw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpmulhw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpmulld testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpmullq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpmullw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpmultishiftqb testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpmuludq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpopcntb testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpopcntd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpopcntq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpopcntw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpor testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpord testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vporq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpperm testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vprold testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vprolq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vprolvd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vprolvq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vprord testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vprorq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vprorvd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vprorvq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vprotb testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vprotd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vprotq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vprotw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpsadbw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpscatterdd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpscatterdq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpscatterqd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpscatterqq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpshab testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpshad testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpshaq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpshaw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpshlb testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpshld testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpshldd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpshldq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpshldvd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpshldvq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpshldvw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpshldw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpshlq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpshlw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpshrdd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpshrdq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpshrdvd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpshrdvq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpshrdvw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpshrdw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpshufb testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpshufbitqmb testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpshufd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpshufhw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpshuflw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpsignb testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpsignd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpsignw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpslld testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpslldq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpsllq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpsllvd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpsllvq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpsllvw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpsllw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpsrad testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpsraq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpsravd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpsravq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpsravw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpsraw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpsrld testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpsrldq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpsrlq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpsrlvd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpsrlvq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpsrlvw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpsrlw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpsubb testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpsubd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpsubq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpsubsb testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpsubsw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpsubusb testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpsubusw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpsubw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpternlogd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpternlogq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vptest testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vptestmb testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vptestmd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vptestmq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vptestmw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vptestnmb testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vptestnmd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vptestnmq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vptestnmw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpunpckhbw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpunpckhdq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpunpckhqdq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpunpckhwd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpunpcklbw testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpunpckldq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpunpcklqdq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpunpcklwd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpxor testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpxord testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vpxorq testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vrangepd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vrangeps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vrangesd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vrangess testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vrcp14pd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vrcp14ps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vrcp14sd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vrcp14ss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vrcp28pd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vrcp28ps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vrcp28sd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vrcp28ss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vrcpbf16 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vrcpph testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vrcpps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vrcpsh testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vrcpss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vreducebf16 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vreducepd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vreduceph testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vreduceps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vreducesd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vreducesh testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vreducess testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vrndscalebf16 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vrndscalepd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vrndscaleph testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vrndscaleps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vrndscalesd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vrndscalesh testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vrndscaless testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vroundpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vroundps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vroundsd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vroundss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vrsqrt14pd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vrsqrt14ps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vrsqrt14sd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vrsqrt14ss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vrsqrt28pd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vrsqrt28ps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vrsqrt28sd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vrsqrt28ss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vrsqrtbf16 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vrsqrtph testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vrsqrtps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vrsqrtsh testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vrsqrtss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vscalefbf16 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vscalefpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vscalefph testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vscalefps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vscalefsd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vscalefsh testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vscalefss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vscatterdpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vscatterdps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vscatterpf0dpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vscatterpf0dps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vscatterpf0qpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vscatterpf0qps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vscatterpf1dpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vscatterpf1dps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vscatterpf1qpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vscatterpf1qps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vscatterqpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vscatterqps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vsha512msg1 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vsha512msg2 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vsha512rnds2 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vshuff32x4 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vshuff64x2 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vshufi32x4 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vshufi64x2 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vshufpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vshufps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vsm3msg1 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vsm3msg2 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vsm3rnds2 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vsm4key4 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vsm4rnds4 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vsqrtbf16 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vsqrtpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vsqrtph testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vsqrtps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vsqrtsd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vsqrtsh testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vsqrtss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vstmxcsr testgen: add implicitly-sized memory operand coverage 2026-07-04 12:38:36 -07:00
vsubbf16 testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vsubpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vsubph testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vsubps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vsubsd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vsubsh testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vsubss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vtestpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vtestps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vucomisd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vucomish testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vucomiss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vucomxsd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vucomxsh testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vucomxss testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vunpckhpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vunpckhps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vunpcklpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vunpcklps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vxorpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vxorps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
vzeroall tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
vzeroupper tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
wbinvd tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
wbnoinvd tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
wrfsbase testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
wrgsbase testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
wrmsr tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
wrmsrlist tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
wrmsrns testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
wrpkru tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
wrshr tools/testgen: cover high register numbers (r8-r15, r16-r31) 2026-07-04 11:38:35 -07:00
wrssd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
wrssq tools/testgen: cover high register numbers (r8-r15, r16-r31) 2026-07-04 11:38:35 -07:00
wrussd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
wrussq tools/testgen: cover high register numbers (r8-r15, r16-r31) 2026-07-04 11:38:35 -07:00
xabort tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
xadd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
xbegin testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
xbts tools/testgen: cover high register numbers (r8-r15, r16-r31) 2026-07-04 11:38:35 -07:00
xchg testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
xcryptcbc tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
xcryptcfb tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
xcryptctr tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
xcryptecb tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
xcryptofb tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
xend tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
xgetbv tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
xlat tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
xlatb tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
xnor tools/testgen: cover optional (*/?) operand omitted forms 2026-07-04 11:04:49 -07:00
xnorb tools/testgen: cover optional (*/?) operand omitted forms 2026-07-04 11:04:49 -07:00
xnord tools/testgen: cover optional (*/?) operand omitted forms 2026-07-04 11:04:49 -07:00
xnorq tools/testgen: cover optional (*/?) operand omitted forms 2026-07-04 11:04:49 -07:00
xnorw tools/testgen: cover optional (*/?) operand omitted forms 2026-07-04 11:04:49 -07:00
xor testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
xorb tools/testgen: cover optional (*/?) operand omitted forms 2026-07-04 11:04:49 -07:00
xord tools/testgen: cover optional (*/?) operand omitted forms 2026-07-04 11:04:49 -07:00
xorpd testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
xorps testgen: add %ifdef ERROR error-case coverage, fix branch-operand bugs 2026-07-04 13:41:59 -07:00
xorq tools/testgen: cover optional (*/?) operand omitted forms 2026-07-04 11:04:49 -07:00
xorw tools/testgen: cover optional (*/?) operand omitted forms 2026-07-04 11:04:49 -07:00
xresldtrk tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
xrstor testgen: add modrm-memory disp8/disp32 boundary coverage 2026-07-04 12:21:31 -07:00
xrstor64 testgen: add modrm-memory disp8/disp32 boundary coverage 2026-07-04 12:21:31 -07:00
xrstors testgen: add modrm-memory disp8/disp32 boundary coverage 2026-07-04 12:21:31 -07:00
xrstors64 testgen: add modrm-memory disp8/disp32 boundary coverage 2026-07-04 12:21:31 -07:00
xsave testgen: add modrm-memory disp8/disp32 boundary coverage 2026-07-04 12:21:31 -07:00
xsave64 testgen: add modrm-memory disp8/disp32 boundary coverage 2026-07-04 12:21:31 -07:00
xsavec testgen: add modrm-memory disp8/disp32 boundary coverage 2026-07-04 12:21:31 -07:00
xsavec64 testgen: add modrm-memory disp8/disp32 boundary coverage 2026-07-04 12:21:31 -07:00
xsaveopt testgen: add modrm-memory disp8/disp32 boundary coverage 2026-07-04 12:21:31 -07:00
xsaveopt64 testgen: add modrm-memory disp8/disp32 boundary coverage 2026-07-04 12:21:31 -07:00
xsaves testgen: add modrm-memory disp8/disp32 boundary coverage 2026-07-04 12:21:31 -07:00
xsaves64 testgen: add modrm-memory disp8/disp32 boundary coverage 2026-07-04 12:21:31 -07:00
xsetbv tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
xsha1 tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
xsha256 tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
xstore tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
xsusldtrk tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00
xtest tools/testgen: pseudorandom instruction test generator 2026-07-01 23:42:14 -07:00