| 1898 | } |
| 1899 | |
| 1900 | static void logEXmm(const LogInstruction* inst, DecodedOp* op, BString& out) { |
| 1901 | out.append(inst->name); |
| 1902 | out.append(" "); |
| 1903 | if (op->ea16) { |
| 1904 | outE16(op, out); |
| 1905 | } else { |
| 1906 | outE32(op, out); |
| 1907 | } |
| 1908 | out.append(","); |
| 1909 | outXMM(op->reg, out); |
| 1910 | } |
| 1911 | |
| 1912 | static void logXmmR(const LogInstruction* inst, DecodedOp* op, BString& out) { |
| 1913 | out.append(inst->name); |