Home | History | Annotate | Download | only in disassembler

Lines Matching defs:rm

160 std::string DisassemblerX86::DumpAddress(uint8_t mod, uint8_t rm, uint8_t rex64, uint8_t rex_w,
166 if (mod == 0 && rm == 5) {
174 } else if (rm == 4 && mod != 3) { // SIB
227 DumpRmReg(address, rex_w, rm, byte_operand || byte_second_operand,
232 DumpBaseReg(address, rex64, rm);
296 const char* opcode3 = ""; // Mod-rm part.
298 bool store = false; // stores to memory (ie rm is on the left)
299 bool load = false; // loads from memory (ie rm is on the right)
1300 uint8_t rm = modrm & 7;
1301 std::string address = DumpAddress(mod, rm, rex64, rex_w, no_ops, byte_operand,