Skip to content

Commit

Permalink
KVM: x86 emulator: convert group 4 to new style
Browse files Browse the repository at this point in the history
Signed-off-by: Avi Kivity <avi@redhat.com>
Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com>
  • Loading branch information
Avi Kivity committed Oct 24, 2010
1 parent ee70ea3 commit 591c9d2
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions arch/x86/kvm/emulate.c
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@
#define X16(x) X8(x), X8(x)

enum {
NoGrp, Group4, Group5, Group7, Group8, Group9,
NoGrp, Group5, Group7, Group8, Group9,
};

struct opcode {
Expand Down Expand Up @@ -140,10 +140,12 @@ static struct opcode group3[] = {
X4(D(Undefined)),
};

static struct opcode group_table[] = {
[Group4*8] =
static struct opcode group4[] = {
D(ByteOp | DstMem | SrcNone | ModRM | Lock), D(ByteOp | DstMem | SrcNone | ModRM | Lock),
N, N, N, N, N, N,
};

static struct opcode group_table[] = {
[Group5*8] =
D(DstMem | SrcNone | ModRM | Lock), D(DstMem | SrcNone | ModRM | Lock),
D(SrcMem | ModRM | Stack), N,
Expand Down Expand Up @@ -281,7 +283,7 @@ static struct opcode opcode_table[256] = {
D(ImplicitOps | Priv), D(ImplicitOps), G(ByteOp, group3), G(0, group3),
/* 0xF8 - 0xFF */
D(ImplicitOps), N, D(ImplicitOps), D(ImplicitOps),
D(ImplicitOps), D(ImplicitOps), D(Group | Group4), D(Group | Group5),
D(ImplicitOps), D(ImplicitOps), G(0, group4), D(Group | Group5),
};

static struct opcode twobyte_table[256] = {
Expand Down

0 comments on commit 591c9d2

Please sign in to comment.