]> git.openfabrics.org - ~emulex/infiniband.git/commitdiff
KVM: x86 emulator: lea
authorNitin A Kamble <nitin.a.kamble@intel.com>
Sat, 15 Sep 2007 07:35:36 +0000 (10:35 +0300)
committerAvi Kivity <avi@qumranet.com>
Sat, 13 Oct 2007 08:18:29 +0000 (10:18 +0200)
Implement emulation of instruction
    lea r16/r32, m
    opcode:  0x8d:

Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
Signed-off-by: Avi Kivity <avi@qumranet.com>
drivers/kvm/x86_emulate.c

index 57f1a5ad0110b7a2c065a0db73d770fcc63b655b..4c78a4ff868f8eeb821c3f958c3e2016c64d1982 100644 (file)
@@ -125,7 +125,7 @@ static u8 opcode_table[256] = {
        /* 0x88 - 0x8F */
        ByteOp | DstMem | SrcReg | ModRM | Mov, DstMem | SrcReg | ModRM | Mov,
        ByteOp | DstReg | SrcMem | ModRM | Mov, DstReg | SrcMem | ModRM | Mov,
-       0, 0, 0, DstMem | SrcNone | ModRM | Mov,
+       0, ModRM | DstReg, 0, DstMem | SrcNone | ModRM | Mov,
        /* 0x90 - 0x9F */
        0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ImplicitOps, 0, 0, 0,
        /* 0xA0 - 0xA7 */
@@ -1022,6 +1022,9 @@ push:
                break;
        case 0x88 ... 0x8b:     /* mov */
                goto mov;
+       case 0x8d: /* lea r16/r32, m */
+               dst.val = modrm_val;
+               break;
        case 0x8f:              /* pop (sole member of Grp1a) */
                /* 64-bit mode: POP always pops a 64-bit operand. */
                if (mode == X86EMUL_MODE_PROT64)