diff options
| author | Tycho Nightingale <tychon@FreeBSD.org> | 2014-06-26 17:15:41 +0000 |
|---|---|---|
| committer | Tycho Nightingale <tychon@FreeBSD.org> | 2014-06-26 17:15:41 +0000 |
| commit | 896d1f7723a817078568b33410d64823b6c92fb6 (patch) | |
| tree | 30a63aa1e27c39a4e2d7282b0cef77048ff7ebc6 /sys/amd64 | |
| parent | 4d8492c790d1f6c54a050122fd279d410a82175d (diff) | |
Notes
Diffstat (limited to 'sys/amd64')
| -rw-r--r-- | sys/amd64/vmm/vmm_instruction_emul.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/sys/amd64/vmm/vmm_instruction_emul.c b/sys/amd64/vmm/vmm_instruction_emul.c index 83dd4147bc7e..261572db3084 100644 --- a/sys/amd64/vmm/vmm_instruction_emul.c +++ b/sys/amd64/vmm/vmm_instruction_emul.c @@ -104,6 +104,12 @@ static const struct vie_op one_byte_opcodes[256] = { .op_byte = 0x8B, .op_type = VIE_OP_TYPE_MOV, }, + [0xC6] = { + /* XXX Group 11 extended opcode - not just MOV */ + .op_byte = 0xC6, + .op_type = VIE_OP_TYPE_MOV, + .op_flags = VIE_OP_F_IMM8, + }, [0xC7] = { .op_byte = 0xC7, .op_type = VIE_OP_TYPE_MOV, @@ -310,6 +316,15 @@ emulate_mov(void *vm, int vcpuid, uint64_t gpa, struct vie *vie, error = vie_update_register(vm, vcpuid, reg, val, size); } break; + case 0xC6: + /* + * MOV from imm8 to mem (ModRM:r/m) + * C6/0 mov r/m8, imm8 + * REX + C6/0 mov r/m8, imm8 + */ + size = 1; + error = memwrite(vm, vcpuid, gpa, vie->immediate, size, arg); + break; case 0xC7: /* * MOV from imm32 to mem (ModRM:r/m) |
