diff options
author | Wei Yongjun <yjwei@cn.fujitsu.com> | 2010-08-06 05:10:07 -0400 |
---|---|---|
committer | Avi Kivity <avi@redhat.com> | 2010-10-24 04:51:08 -0400 |
commit | ee45b58efebc826ea2ade310f6e311702d4a5ab9 (patch) | |
tree | 603cb8da7e6f067a1a9f37565e68705d42432eb5 | |
parent | 9cf4c4fcb59704f0c50f6aa7933399db5d2edf1a (diff) |
KVM: x86 emulator: add setcc instruction emulation
Add setcc instruction emulation (opcode 0x0f 0x90~0x9f)
Signed-off-by: Wei Yongjun <yjwei@cn.fujitsu.com>
Signed-off-by: Avi Kivity <avi@redhat.com>
-rw-r--r-- | arch/x86/kvm/emulate.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/arch/x86/kvm/emulate.c b/arch/x86/kvm/emulate.c index 0c08bffe6cb4..df349f376da8 100644 --- a/arch/x86/kvm/emulate.c +++ b/arch/x86/kvm/emulate.c | |||
@@ -2362,7 +2362,7 @@ static struct opcode twobyte_table[256] = { | |||
2362 | /* 0x80 - 0x8F */ | 2362 | /* 0x80 - 0x8F */ |
2363 | X16(D(SrcImm)), | 2363 | X16(D(SrcImm)), |
2364 | /* 0x90 - 0x9F */ | 2364 | /* 0x90 - 0x9F */ |
2365 | N, N, N, N, N, N, N, N, N, N, N, N, N, N, N, N, | 2365 | X16(D(ByteOp | DstMem | SrcNone | ModRM| Mov)), |
2366 | /* 0xA0 - 0xA7 */ | 2366 | /* 0xA0 - 0xA7 */ |
2367 | D(ImplicitOps | Stack), D(ImplicitOps | Stack), | 2367 | D(ImplicitOps | Stack), D(ImplicitOps | Stack), |
2368 | N, D(DstMem | SrcReg | ModRM | BitOp), | 2368 | N, D(DstMem | SrcReg | ModRM | BitOp), |
@@ -3424,6 +3424,9 @@ twobyte_insn: | |||
3424 | if (test_cc(c->b, ctxt->eflags)) | 3424 | if (test_cc(c->b, ctxt->eflags)) |
3425 | jmp_rel(c, c->src.val); | 3425 | jmp_rel(c, c->src.val); |
3426 | break; | 3426 | break; |
3427 | case 0x90 ... 0x9f: /* setcc r/m8 */ | ||
3428 | c->dst.val = test_cc(c->b, ctxt->eflags); | ||
3429 | break; | ||
3427 | case 0xa0: /* push fs */ | 3430 | case 0xa0: /* push fs */ |
3428 | emulate_push_sreg(ctxt, ops, VCPU_SREG_FS); | 3431 | emulate_push_sreg(ctxt, ops, VCPU_SREG_FS); |
3429 | break; | 3432 | break; |