From: Wei Yongjun <[email protected]>

Add bsf/bsr instruction emulation (opcode 0x0f 0xbc~0xbd)

Signed-off-by: Wei Yongjun <[email protected]>
Signed-off-by: Avi Kivity <[email protected]>

diff --git a/arch/x86/kvm/emulate.c b/arch/x86/kvm/emulate.c
index 8430b61..c476a67 100644
--- a/arch/x86/kvm/emulate.c
+++ b/arch/x86/kvm/emulate.c
@@ -2380,8 +2380,8 @@ static struct opcode twobyte_table[256] = {
        /* 0xB8 - 0xBF */
        N, N,
        G(BitOp, group8), D(DstMem | SrcReg | ModRM | BitOp | Lock),
-       N, N, D(ByteOp | DstReg | SrcMem | ModRM | Mov),
-           D(DstReg | SrcMem16 | ModRM | Mov),
+       D(DstReg | SrcMem | ModRM), D(DstReg | SrcMem | ModRM),
+       D(ByteOp | DstReg | SrcMem | ModRM | Mov), D(DstReg | SrcMem16 | ModRM 
| Mov),
        /* 0xC0 - 0xCF */
        N, N, N, D(DstMem | SrcReg | ModRM | Mov),
        N, N, N, GD(0, &group9),
@@ -3512,6 +3512,30 @@ twobyte_insn:
              btc:              /* btc */
                emulate_2op_SrcV_nobyte("btc", c->src, c->dst, ctxt->eflags);
                break;
+       case 0xbc: {            /* bsf */
+               u8 zf;
+               __asm__ ("bsf %2, %0; setz %1"
+                        : "=r"(c->dst.val), "=q"(zf)
+                        : "r"(c->src.val));
+               ctxt->eflags &= ~X86_EFLAGS_ZF;
+               if (zf) {
+                       ctxt->eflags |= X86_EFLAGS_ZF;
+                       c->dst.type = OP_NONE;  /* Disable writeback. */
+               }
+               break;
+       }
+       case 0xbd: {            /* bsr */
+               u8 zf;
+               __asm__ ("bsr %2, %0; setz %1"
+                        : "=r"(c->dst.val), "=q"(zf)
+                        : "r"(c->src.val));
+               ctxt->eflags &= ~X86_EFLAGS_ZF;
+               if (zf) {
+                       ctxt->eflags |= X86_EFLAGS_ZF;
+                       c->dst.type = OP_NONE;  /* Disable writeback. */
+               }
+               break;
+       }
        case 0xbe ... 0xbf:     /* movsx */
                c->dst.bytes = c->op_bytes;
                c->dst.val = (c->d & ByteOp) ? (s8) c->src.val :
--
To unsubscribe from this list: send the line "unsubscribe kvm-commits" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to