summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAvi Kivity <avi@redhat.com>2010-07-29 15:11:45 +0300
committerAvi Kivity <avi@redhat.com>2010-10-24 10:50:16 +0200
commit2f3a9bc9ebd42e00929f370e1a56e40028a8d651 (patch)
tree3e567d9f15e84baf39ea53e33934df5a0e706df2
parentb67f9f0741e288c97f73cdc9e39e2c4943004332 (diff)
downloadop-kernel-dev-2f3a9bc9ebd42e00929f370e1a56e40028a8d651.zip
op-kernel-dev-2f3a9bc9ebd42e00929f370e1a56e40028a8d651.tar.gz
KVM: x86 emulator: convert group 7 to new style
Signed-off-by: Avi Kivity <avi@redhat.com> Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com>
-rw-r--r--arch/x86/kvm/emulate.c18
1 files changed, 10 insertions, 8 deletions
diff --git a/arch/x86/kvm/emulate.c b/arch/x86/kvm/emulate.c
index 9674d97..5e7a02d 100644
--- a/arch/x86/kvm/emulate.c
+++ b/arch/x86/kvm/emulate.c
@@ -105,7 +105,7 @@
#define X16(x) X8(x), X8(x)
enum {
- NoGrp, Group7, Group8, Group9,
+ NoGrp, Group8, Group9,
};
struct opcode {
@@ -152,11 +152,17 @@ static struct opcode group5[] = {
D(SrcMem | ModRM | Stack), N,
};
-static struct opcode group_table[] = {
- [Group7*8] =
+static struct group_dual group7 = { {
N, N, D(ModRM | SrcMem | Priv), D(ModRM | SrcMem | Priv),
D(SrcNone | ModRM | DstMem | Mov), N,
D(SrcMem16 | ModRM | Mov | Priv), D(SrcMem | ModRM | ByteOp | Priv),
+}, {
+ D(SrcNone | ModRM | Priv), N, N, D(SrcNone | ModRM | Priv),
+ D(SrcNone | ModRM | DstMem | Mov), N,
+ D(SrcMem16 | ModRM | Mov | Priv), N,
+} };
+
+static struct opcode group_table[] = {
[Group8*8] =
N, N, N, N,
D(DstMem | SrcImmByte | ModRM), D(DstMem | SrcImmByte | ModRM | Lock),
@@ -166,10 +172,6 @@ static struct opcode group_table[] = {
};
static struct opcode group2_table[] = {
- [Group7*8] =
- D(SrcNone | ModRM | Priv), N, N, D(SrcNone | ModRM | Priv),
- D(SrcNone | ModRM | DstMem | Mov), N,
- D(SrcMem16 | ModRM | Mov | Priv), N,
[Group9*8] =
N, N, N, N, N, N, N, N,
};
@@ -290,7 +292,7 @@ static struct opcode opcode_table[256] = {
static struct opcode twobyte_table[256] = {
/* 0x00 - 0x0F */
- N, D(Group | GroupDual | Group7), N, N,
+ N, GD(0, &group7), N, N,
N, D(ImplicitOps), D(ImplicitOps | Priv), N,
D(ImplicitOps | Priv), D(ImplicitOps | Priv), N, N,
N, D(ImplicitOps | ModRM), N, N,
OpenPOWER on IntegriCloud