x86_64 has supported multibyte nops for a while; they have an opcode of 0f 1f, sometimes prefixed with 0x66 (operand size override) and 0x2e (cs segment override). The ddb disassembler doesn't support them, but they seem to appear fairly frequently (see cam_strvis() for several examples).
This change just adds an instruction table for 0x0f1, with a single entry for 1f. I use "nopl" by default, and "nopw" if the 0x66 prefix is used, for consistency with binutils.