434296 s390x: False-positive memcheck diagnostics from vector string
instructions
435665 PPC ISA 3.0 copy, paste, cpabort instructions are not supported
+438871 unhandled instruction bytes: 0xF3 0x49 0xF 0x6F 0x9C 0x24 0x60 0x2 0x0 0x0
435908 valgrind tries to fetch from deubginfod for files which already
have debug information
}
goto decode_success;
}
- if (haveF3no66noF2(pfx) && sz == 4) {
+ if (haveF3no66noF2(pfx)
+ && (sz == 4 || /* ignore redundant REX.W */ sz == 8)) {
/* F3 0F 6F = MOVDQU -- move from E (mem or xmm) to G (xmm). */
modrm = getUChar(delta);
if (epartIsReg(modrm)) {
case 0x7F:
/* F3 0F 7F = MOVDQU -- move from G (xmm) to E (mem or xmm). */
- if (haveF3no66noF2(pfx) && sz == 4) {
+ if (haveF3no66noF2(pfx)
+ && (sz == 4 || /* ignore redundant REX.W */ sz == 8)) {
modrm = getUChar(delta);
if (epartIsReg(modrm)) {
goto decode_failure; /* awaiting test case */