Home
last modified time | relevance | path

Searched refs:modrm_reg (Results 1 – 4 of 4) sorted by relevance

/Linux-v5.10/tools/objtool/arch/x86/
Ddecode.c96 modrm_reg = 0, sib = 0; in arch_decode_instruction() local
132 modrm_reg = X86_MODRM_REG(modrm); in arch_decode_instruction()
148 op->src.reg = op_to_cfi_reg[modrm_reg][rex_r]; in arch_decode_instruction()
225 if (rex_w && !rex_r && modrm_mod == 3 && modrm_reg == 4) { in arch_decode_instruction()
242 op->src.reg = op_to_cfi_reg[modrm_reg][rex_r]; in arch_decode_instruction()
257 op->src.reg = op_to_cfi_reg[modrm_reg][rex_r]; in arch_decode_instruction()
268 op->src.reg = op_to_cfi_reg[modrm_reg][rex_r]; in arch_decode_instruction()
286 op->dest.reg = op_to_cfi_reg[modrm_reg][rex_r]; in arch_decode_instruction()
298 op->dest.reg = op_to_cfi_reg[modrm_reg][rex_r]; in arch_decode_instruction()
318 op->dest.reg = op_to_cfi_reg[modrm_reg][rex_r]; in arch_decode_instruction()
[all …]
/Linux-v5.10/arch/x86/kvm/
Dkvm_emulate.h39 u8 modrm_reg; /* index of register used */ member
358 u8 modrm_reg; member
Demulate.c496 .modrm_reg = ctxt->modrm_reg, in emulator_check_intercept()
965 static void *decode_register(struct x86_emulate_ctxt *ctxt, u8 modrm_reg, in decode_register() argument
971 if (highbyte_regs && modrm_reg >= 4 && modrm_reg < 8) in decode_register()
972 p = (unsigned char *)reg_rmw(ctxt, modrm_reg & 3) + 1; in decode_register()
974 p = reg_rmw(ctxt, modrm_reg); in decode_register()
1232 unsigned reg = ctxt->modrm_reg; in decode_register_operand()
1274 ctxt->modrm_reg = ((ctxt->rex_prefix << 1) & 8); /* REX.R */ in decode_modrm()
1279 ctxt->modrm_reg |= (ctxt->modrm & 0x38) >> 3; in decode_modrm()
2024 if (ctxt->modrm_reg == VCPU_SREG_SS) in em_pop_sreg()
3676 if (ctxt->ops->set_cr(ctxt, ctxt->modrm_reg, ctxt->src.val)) in em_cr_write()
[all …]
/Linux-v5.10/arch/x86/kvm/svm/
Dsvm.c3876 icpt_info.exit_code += info->modrm_reg; in svm_check_intercept()
3882 icpt_info.exit_code += info->modrm_reg; in svm_check_intercept()
3910 icpt_info.exit_code += info->modrm_reg; in svm_check_intercept()