| 1881 | } |
| 1882 | |
| 1883 | static void logXmmE(const LogInstruction* inst, DecodedOp* op, BString& out) { |
| 1884 | out.append(inst->name); |
| 1885 | out.append(" "); |
| 1886 | |
| 1887 | outXMM(op->reg, out); |
| 1888 | out.append(","); |
| 1889 | if (op->ea16) { |
| 1890 | outE16(op, out); |
| 1891 | } else { |
| 1892 | outE32(op, out); |
| 1893 | } |
| 1894 | } |
| 1895 | |
| 1896 | static void logRXmm(const LogInstruction* inst, DecodedOp* op, BString& out) { |
| 1897 | out.append(inst->name); |