Lines Matching refs:modrm
1245 ctxt->modrm_mod = (ctxt->modrm & 0xc0) >> 6; in decode_modrm()
1246 ctxt->modrm_reg |= (ctxt->modrm & 0x38) >> 3; in decode_modrm()
1247 ctxt->modrm_rm = base_reg | (ctxt->modrm & 0x07); in decode_modrm()
5271 ctxt->modrm = insn_fetch(u8, ctxt); in x86_decode_insn()
5275 (mode == X86EMUL_MODE_PROT64 || (ctxt->modrm & 0xc0) == 0xc0)) { in x86_decode_insn()
5282 goffset = (ctxt->modrm >> 3) & 7; in x86_decode_insn()
5286 goffset = (ctxt->modrm >> 3) & 7; in x86_decode_insn()
5287 if ((ctxt->modrm >> 6) == 3) in x86_decode_insn()
5293 goffset = ctxt->modrm & 7; in x86_decode_insn()
5308 if (ctxt->modrm > 0xbf) in x86_decode_insn()
5309 opcode = opcode.u.esc->high[ctxt->modrm - 0xc0]; in x86_decode_insn()
5311 opcode = opcode.u.esc->op[(ctxt->modrm >> 3) & 7]; in x86_decode_insn()
5314 if ((ctxt->modrm >> 6) == 3) in x86_decode_insn()
5489 (void *)&ctxt->modrm - (void *)&ctxt->rip_relative); in init_decode_cache()