Lines Matching defs:modrm
107 /// modrm
114 uint8_t modrm;
117 /// Determine the InstructionControlFlowKind based on opcode and modrm bytes.
133 uint8_t modrm = opcode_and_modrm.modrm;
159 uint8_t modrm_reg = (modrm >> 3) & 7;
223 switch (modrm) {
241 /// Decode an instruction into opcode, modrm and opcode_len.
259 /// primary_opcode, opcode_len and modrm byte. Refer to the struct definition
328 ret.modrm = inst_bytes[op_idx + 3];
338 ret.modrm = inst_bytes[op_idx + 4];
349 ret.modrm = inst_bytes[op_idx + 5];
359 ret.modrm = inst_bytes[op_idx + 1];
369 ret.modrm = inst_bytes[op_idx + 1];
373 ret.modrm = inst_bytes[op_idx + 1];
377 ret.modrm = inst_bytes[op_idx + 1];
381 ret.modrm = inst_bytes[op_idx + 1];
384 ret.modrm = inst_bytes[op_idx + 1];
400 // Opcode bytes will be decoded into primary_opcode, modrm and opcode length.