Skip to content

Commit

Permalink
KVM: x86 emulator: convert group 9 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 2cb20bc commit 9f5d322
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 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, Group9,
NoGrp,
};

struct opcode {
Expand Down Expand Up @@ -168,14 +168,16 @@ static struct opcode group8[] = {
D(DstMem | SrcImmByte | ModRM | Lock), D(DstMem | SrcImmByte | ModRM | Lock),
};

static struct opcode group_table[] = {
[Group9*8] =
static struct group_dual group9 = { {
N, D(DstMem64 | ModRM | Lock), N, N, N, N, N, N,
}, {
N, N, N, N, N, N, N, N,
} };

static struct opcode group_table[] = {
};

static struct opcode group2_table[] = {
[Group9*8] =
N, N, N, N, N, N, N, N,
};

static struct opcode opcode_table[256] = {
Expand Down Expand Up @@ -344,7 +346,7 @@ static struct opcode twobyte_table[256] = {
D(DstReg | SrcMem16 | ModRM | Mov),
/* 0xC0 - 0xCF */
N, N, N, D(DstMem | SrcReg | ModRM | Mov),
N, N, N, D(Group | GroupDual | Group9),
N, N, N, GD(0, &group9),
N, N, N, N, N, N, N, N,
/* 0xD0 - 0xDF */
N, N, N, N, N, N, N, N, N, N, N, N, N, N, N, N,
Expand Down

0 comments on commit 9f5d322

Please sign in to comment.