blob: c3a823174f3eadea1349e30fba333a488940293b [file] [log] [blame]
Avi Kivity6aa8b732006-12-10 02:21:36 -08001/******************************************************************************
2 * x86_emulate.c
3 *
4 * Generic x86 (32-bit and 64-bit) instruction decoder and emulator.
5 *
6 * Copyright (c) 2005 Keir Fraser
7 *
8 * Linux coding style, mod r/m decoder, segment base fixes, real-mode
Rusty Russelldcc07662007-07-17 23:16:56 +10009 * privileged instructions:
Avi Kivity6aa8b732006-12-10 02:21:36 -080010 *
11 * Copyright (C) 2006 Qumranet
12 *
13 * Avi Kivity <avi@qumranet.com>
14 * Yaniv Kamay <yaniv@qumranet.com>
15 *
16 * This work is licensed under the terms of the GNU GPL, version 2. See
17 * the COPYING file in the top-level directory.
18 *
19 * From: xen-unstable 10676:af9809f51f81a3c43f276f00c81a52ef558afda4
20 */
21
22#ifndef __KERNEL__
23#include <stdio.h>
24#include <stdint.h>
25#include <public/xen.h>
Mike Dayd77c26f2007-10-08 09:02:08 -040026#define DPRINTF(_f, _a ...) printf(_f , ## _a)
Avi Kivity6aa8b732006-12-10 02:21:36 -080027#else
Avi Kivityedf88412007-12-16 11:02:48 +020028#include <linux/kvm_host.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080029#define DPRINTF(x...) do {} while (0)
30#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -080031#include <linux/module.h>
Avi Kivityedf88412007-12-16 11:02:48 +020032#include <asm/kvm_x86_emulate.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080033
34/*
35 * Opcode effective-address decode tables.
36 * Note that we only emulate instructions that have at least one memory
37 * operand (excluding implicit stack references). We assume that stack
38 * references and instruction fetches will never occur in special memory
39 * areas that require emulation. So, for example, 'mov <imm>,<reg>' need
40 * not be handled.
41 */
42
43/* Operand sizes: 8-bit operands or specified/overridden size. */
44#define ByteOp (1<<0) /* 8-bit operands. */
45/* Destination operand type. */
46#define ImplicitOps (1<<1) /* Implicit in opcode. No generic decode. */
47#define DstReg (2<<1) /* Register operand. */
48#define DstMem (3<<1) /* Memory operand. */
49#define DstMask (3<<1)
50/* Source operand type. */
51#define SrcNone (0<<3) /* No source operand. */
52#define SrcImplicit (0<<3) /* Source operand is implicit in the opcode. */
53#define SrcReg (1<<3) /* Register operand. */
54#define SrcMem (2<<3) /* Memory operand. */
55#define SrcMem16 (3<<3) /* Memory operand (16-bit). */
56#define SrcMem32 (4<<3) /* Memory operand (32-bit). */
57#define SrcImm (5<<3) /* Immediate operand. */
58#define SrcImmByte (6<<3) /* 8-bit sign-extended immediate operand. */
59#define SrcMask (7<<3)
60/* Generic ModRM decode. */
61#define ModRM (1<<6)
62/* Destination is only written; never read. */
63#define Mov (1<<7)
Avi Kivity038e51d2007-01-22 20:40:40 -080064#define BitOp (1<<8)
Avi Kivityc7e75a32007-10-28 16:34:25 +020065#define MemAbs (1<<9) /* Memory operand is absolute displacement */
Avi Kivityb9fa9d62007-11-27 19:05:37 +020066#define String (1<<10) /* String instruction (rep capable) */
Avi Kivity6e3d5df2007-12-06 18:14:14 +020067#define Stack (1<<11) /* Stack instruction (push/pop) */
Avi Kivitye09d0822008-01-18 12:38:59 +020068#define Group (1<<14) /* Bits 3:5 of modrm byte extend opcode */
69#define GroupDual (1<<15) /* Alternate decoding of mod == 3 */
70#define GroupMask 0xff /* Group number stored in bits 0:7 */
Avi Kivity6aa8b732006-12-10 02:21:36 -080071
Avi Kivity43bb19c2008-01-18 12:46:50 +020072enum {
Avi Kivity1d6ad202008-01-23 22:26:09 +020073 Group1_80, Group1_81, Group1_82, Group1_83,
Avi Kivityd95058a2008-01-18 13:36:50 +020074 Group1A, Group3_Byte, Group3, Group4, Group5, Group7,
Avi Kivity43bb19c2008-01-18 12:46:50 +020075};
76
Avi Kivityc7e75a32007-10-28 16:34:25 +020077static u16 opcode_table[256] = {
Avi Kivity6aa8b732006-12-10 02:21:36 -080078 /* 0x00 - 0x07 */
79 ByteOp | DstMem | SrcReg | ModRM, DstMem | SrcReg | ModRM,
80 ByteOp | DstReg | SrcMem | ModRM, DstReg | SrcMem | ModRM,
81 0, 0, 0, 0,
82 /* 0x08 - 0x0F */
83 ByteOp | DstMem | SrcReg | ModRM, DstMem | SrcReg | ModRM,
84 ByteOp | DstReg | SrcMem | ModRM, DstReg | SrcMem | ModRM,
85 0, 0, 0, 0,
86 /* 0x10 - 0x17 */
87 ByteOp | DstMem | SrcReg | ModRM, DstMem | SrcReg | ModRM,
88 ByteOp | DstReg | SrcMem | ModRM, DstReg | SrcMem | ModRM,
89 0, 0, 0, 0,
90 /* 0x18 - 0x1F */
91 ByteOp | DstMem | SrcReg | ModRM, DstMem | SrcReg | ModRM,
92 ByteOp | DstReg | SrcMem | ModRM, DstReg | SrcMem | ModRM,
93 0, 0, 0, 0,
94 /* 0x20 - 0x27 */
95 ByteOp | DstMem | SrcReg | ModRM, DstMem | SrcReg | ModRM,
96 ByteOp | DstReg | SrcMem | ModRM, DstReg | SrcMem | ModRM,
Nitin A Kamble19eb9382007-08-17 15:17:41 +030097 SrcImmByte, SrcImm, 0, 0,
Avi Kivity6aa8b732006-12-10 02:21:36 -080098 /* 0x28 - 0x2F */
99 ByteOp | DstMem | SrcReg | ModRM, DstMem | SrcReg | ModRM,
100 ByteOp | DstReg | SrcMem | ModRM, DstReg | SrcMem | ModRM,
101 0, 0, 0, 0,
102 /* 0x30 - 0x37 */
103 ByteOp | DstMem | SrcReg | ModRM, DstMem | SrcReg | ModRM,
104 ByteOp | DstReg | SrcMem | ModRM, DstReg | SrcMem | ModRM,
105 0, 0, 0, 0,
106 /* 0x38 - 0x3F */
107 ByteOp | DstMem | SrcReg | ModRM, DstMem | SrcReg | ModRM,
108 ByteOp | DstReg | SrcMem | ModRM, DstReg | SrcMem | ModRM,
109 0, 0, 0, 0,
Nitin A Kambled77a2502007-10-12 17:40:33 -0700110 /* 0x40 - 0x47 */
Avi Kivity33615aa2007-10-31 11:15:56 +0200111 DstReg, DstReg, DstReg, DstReg, DstReg, DstReg, DstReg, DstReg,
Nitin A Kambled77a2502007-10-12 17:40:33 -0700112 /* 0x48 - 0x4F */
Avi Kivity33615aa2007-10-31 11:15:56 +0200113 DstReg, DstReg, DstReg, DstReg, DstReg, DstReg, DstReg, DstReg,
Nitin A Kamble7f0aaee2007-06-19 11:16:04 +0300114 /* 0x50 - 0x57 */
Avi Kivity6e3d5df2007-12-06 18:14:14 +0200115 SrcReg | Stack, SrcReg | Stack, SrcReg | Stack, SrcReg | Stack,
116 SrcReg | Stack, SrcReg | Stack, SrcReg | Stack, SrcReg | Stack,
Nitin A Kamble7f0aaee2007-06-19 11:16:04 +0300117 /* 0x58 - 0x5F */
Avi Kivity6e3d5df2007-12-06 18:14:14 +0200118 DstReg | Stack, DstReg | Stack, DstReg | Stack, DstReg | Stack,
119 DstReg | Stack, DstReg | Stack, DstReg | Stack, DstReg | Stack,
Nitin A Kamble7d316912007-08-28 17:58:52 -0700120 /* 0x60 - 0x67 */
Avi Kivity6aa8b732006-12-10 02:21:36 -0800121 0, 0, 0, DstReg | SrcMem32 | ModRM | Mov /* movsxd (x86/64) */ ,
Nitin A Kamble7d316912007-08-28 17:58:52 -0700122 0, 0, 0, 0,
123 /* 0x68 - 0x6F */
Avi Kivity91ed7a02008-05-29 14:38:38 +0300124 SrcImm | Mov | Stack, 0, SrcImmByte | Mov | Stack, 0,
Laurent Viviere70669a2007-08-05 10:36:40 +0300125 SrcNone | ByteOp | ImplicitOps, SrcNone | ImplicitOps, /* insb, insw/insd */
126 SrcNone | ByteOp | ImplicitOps, SrcNone | ImplicitOps, /* outsb, outsw/outsd */
Nitin A Kamble55bebde2007-09-15 10:25:41 +0300127 /* 0x70 - 0x77 */
128 ImplicitOps, ImplicitOps, ImplicitOps, ImplicitOps,
129 ImplicitOps, ImplicitOps, ImplicitOps, ImplicitOps,
130 /* 0x78 - 0x7F */
131 ImplicitOps, ImplicitOps, ImplicitOps, ImplicitOps,
132 ImplicitOps, ImplicitOps, ImplicitOps, ImplicitOps,
Avi Kivity6aa8b732006-12-10 02:21:36 -0800133 /* 0x80 - 0x87 */
Avi Kivity1d6ad202008-01-23 22:26:09 +0200134 Group | Group1_80, Group | Group1_81,
135 Group | Group1_82, Group | Group1_83,
Avi Kivity6aa8b732006-12-10 02:21:36 -0800136 ByteOp | DstMem | SrcReg | ModRM, DstMem | SrcReg | ModRM,
137 ByteOp | DstMem | SrcReg | ModRM, DstMem | SrcReg | ModRM,
138 /* 0x88 - 0x8F */
139 ByteOp | DstMem | SrcReg | ModRM | Mov, DstMem | SrcReg | ModRM | Mov,
140 ByteOp | DstReg | SrcMem | ModRM | Mov, DstReg | SrcMem | ModRM | Mov,
Guillaume Thouvenin38d5bc62008-05-27 15:13:28 +0200141 DstMem | SrcReg | ModRM | Mov, ModRM | DstReg,
Guillaume Thouvenin42571982008-05-27 14:49:15 +0200142 DstReg | SrcMem | ModRM | Mov, Group | Group1A,
Mohammed Gamalb13354f2008-06-15 19:37:38 +0300143 /* 0x90 - 0x97 */
144 DstReg, DstReg, DstReg, DstReg, DstReg, DstReg, DstReg, DstReg,
145 /* 0x98 - 0x9F */
Avi Kivity6e3d5df2007-12-06 18:14:14 +0200146 0, 0, 0, 0, ImplicitOps | Stack, ImplicitOps | Stack, 0, 0,
Avi Kivity6aa8b732006-12-10 02:21:36 -0800147 /* 0xA0 - 0xA7 */
Avi Kivityc7e75a32007-10-28 16:34:25 +0200148 ByteOp | DstReg | SrcMem | Mov | MemAbs, DstReg | SrcMem | Mov | MemAbs,
149 ByteOp | DstMem | SrcReg | Mov | MemAbs, DstMem | SrcReg | Mov | MemAbs,
Avi Kivityb9fa9d62007-11-27 19:05:37 +0200150 ByteOp | ImplicitOps | Mov | String, ImplicitOps | Mov | String,
151 ByteOp | ImplicitOps | String, ImplicitOps | String,
Avi Kivity6aa8b732006-12-10 02:21:36 -0800152 /* 0xA8 - 0xAF */
Avi Kivityb9fa9d62007-11-27 19:05:37 +0200153 0, 0, ByteOp | ImplicitOps | Mov | String, ImplicitOps | Mov | String,
154 ByteOp | ImplicitOps | Mov | String, ImplicitOps | Mov | String,
155 ByteOp | ImplicitOps | String, ImplicitOps | String,
Avi Kivity6aa8b732006-12-10 02:21:36 -0800156 /* 0xB0 - 0xBF */
Guillaume Thouvenin615ac122008-05-27 10:19:16 +0200157 0, 0, 0, 0, 0, 0, 0, 0,
158 DstReg | SrcImm | Mov, 0, 0, 0, 0, 0, 0, 0,
Avi Kivity6aa8b732006-12-10 02:21:36 -0800159 /* 0xC0 - 0xC7 */
Nitin A Kambled9413cd2007-06-19 11:21:15 +0300160 ByteOp | DstMem | SrcImm | ModRM, DstMem | SrcImmByte | ModRM,
Avi Kivity6e3d5df2007-12-06 18:14:14 +0200161 0, ImplicitOps | Stack, 0, 0,
Nitin A Kambled9413cd2007-06-19 11:21:15 +0300162 ByteOp | DstMem | SrcImm | ModRM | Mov, DstMem | SrcImm | ModRM | Mov,
Avi Kivity6aa8b732006-12-10 02:21:36 -0800163 /* 0xC8 - 0xCF */
164 0, 0, 0, 0, 0, 0, 0, 0,
165 /* 0xD0 - 0xD7 */
166 ByteOp | DstMem | SrcImplicit | ModRM, DstMem | SrcImplicit | ModRM,
167 ByteOp | DstMem | SrcImplicit | ModRM, DstMem | SrcImplicit | ModRM,
168 0, 0, 0, 0,
169 /* 0xD8 - 0xDF */
170 0, 0, 0, 0, 0, 0, 0, 0,
Nitin A Kamble098c9372007-08-19 11:00:36 +0300171 /* 0xE0 - 0xE7 */
172 0, 0, 0, 0, 0, 0, 0, 0,
173 /* 0xE8 - 0xEF */
Guillaume Thouvenin954cd362008-05-27 10:19:08 +0200174 ImplicitOps | Stack, SrcImm | ImplicitOps,
175 ImplicitOps, SrcImmByte | ImplicitOps,
Avi Kivity6e3d5df2007-12-06 18:14:14 +0200176 0, 0, 0, 0,
Avi Kivity6aa8b732006-12-10 02:21:36 -0800177 /* 0xF0 - 0xF7 */
178 0, 0, 0, 0,
Avi Kivity7d858a12008-01-18 12:58:04 +0200179 ImplicitOps, ImplicitOps, Group | Group3_Byte, Group | Group3,
Avi Kivity6aa8b732006-12-10 02:21:36 -0800180 /* 0xF8 - 0xFF */
Nitin A Kambleb284be52007-10-16 18:23:27 -0700181 ImplicitOps, 0, ImplicitOps, ImplicitOps,
Avi Kivityfd607542008-01-18 13:12:26 +0200182 0, 0, Group | Group4, Group | Group5,
Avi Kivity6aa8b732006-12-10 02:21:36 -0800183};
184
Avi Kivity038e51d2007-01-22 20:40:40 -0800185static u16 twobyte_table[256] = {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800186 /* 0x00 - 0x0F */
Avi Kivityd95058a2008-01-18 13:36:50 +0200187 0, Group | GroupDual | Group7, 0, 0, 0, 0, ImplicitOps, 0,
Avi Kivity651a3e22007-10-28 16:09:18 +0200188 ImplicitOps, ImplicitOps, 0, 0, 0, ImplicitOps | ModRM, 0, 0,
Avi Kivity6aa8b732006-12-10 02:21:36 -0800189 /* 0x10 - 0x1F */
190 0, 0, 0, 0, 0, 0, 0, 0, ImplicitOps | ModRM, 0, 0, 0, 0, 0, 0, 0,
191 /* 0x20 - 0x2F */
192 ModRM | ImplicitOps, ModRM, ModRM | ImplicitOps, ModRM, 0, 0, 0, 0,
193 0, 0, 0, 0, 0, 0, 0, 0,
194 /* 0x30 - 0x3F */
Avi Kivity35f3f282007-07-17 14:20:30 +0300195 ImplicitOps, 0, ImplicitOps, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
Avi Kivity6aa8b732006-12-10 02:21:36 -0800196 /* 0x40 - 0x47 */
197 DstReg | SrcMem | ModRM | Mov, DstReg | SrcMem | ModRM | Mov,
198 DstReg | SrcMem | ModRM | Mov, DstReg | SrcMem | ModRM | Mov,
199 DstReg | SrcMem | ModRM | Mov, DstReg | SrcMem | ModRM | Mov,
200 DstReg | SrcMem | ModRM | Mov, DstReg | SrcMem | ModRM | Mov,
201 /* 0x48 - 0x4F */
202 DstReg | SrcMem | ModRM | Mov, DstReg | SrcMem | ModRM | Mov,
203 DstReg | SrcMem | ModRM | Mov, DstReg | SrcMem | ModRM | Mov,
204 DstReg | SrcMem | ModRM | Mov, DstReg | SrcMem | ModRM | Mov,
205 DstReg | SrcMem | ModRM | Mov, DstReg | SrcMem | ModRM | Mov,
206 /* 0x50 - 0x5F */
207 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
208 /* 0x60 - 0x6F */
209 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
210 /* 0x70 - 0x7F */
211 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
212 /* 0x80 - 0x8F */
Nitin A Kamblebbe9abb2007-09-15 10:23:07 +0300213 ImplicitOps, ImplicitOps, ImplicitOps, ImplicitOps,
214 ImplicitOps, ImplicitOps, ImplicitOps, ImplicitOps,
215 ImplicitOps, ImplicitOps, ImplicitOps, ImplicitOps,
216 ImplicitOps, ImplicitOps, ImplicitOps, ImplicitOps,
Avi Kivity6aa8b732006-12-10 02:21:36 -0800217 /* 0x90 - 0x9F */
218 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
219 /* 0xA0 - 0xA7 */
Avi Kivity038e51d2007-01-22 20:40:40 -0800220 0, 0, 0, DstMem | SrcReg | ModRM | BitOp, 0, 0, 0, 0,
Avi Kivity6aa8b732006-12-10 02:21:36 -0800221 /* 0xA8 - 0xAF */
Avi Kivity038e51d2007-01-22 20:40:40 -0800222 0, 0, 0, DstMem | SrcReg | ModRM | BitOp, 0, 0, 0, 0,
Avi Kivity6aa8b732006-12-10 02:21:36 -0800223 /* 0xB0 - 0xB7 */
224 ByteOp | DstMem | SrcReg | ModRM, DstMem | SrcReg | ModRM, 0,
Avi Kivity038e51d2007-01-22 20:40:40 -0800225 DstMem | SrcReg | ModRM | BitOp,
Avi Kivity6aa8b732006-12-10 02:21:36 -0800226 0, 0, ByteOp | DstReg | SrcMem | ModRM | Mov,
227 DstReg | SrcMem16 | ModRM | Mov,
228 /* 0xB8 - 0xBF */
Avi Kivity038e51d2007-01-22 20:40:40 -0800229 0, 0, DstMem | SrcImmByte | ModRM, DstMem | SrcReg | ModRM | BitOp,
Avi Kivity6aa8b732006-12-10 02:21:36 -0800230 0, 0, ByteOp | DstReg | SrcMem | ModRM | Mov,
231 DstReg | SrcMem16 | ModRM | Mov,
232 /* 0xC0 - 0xCF */
Sheng Yanga012e652007-10-15 14:24:20 +0800233 0, 0, 0, DstMem | SrcReg | ModRM | Mov, 0, 0, 0, ImplicitOps | ModRM,
234 0, 0, 0, 0, 0, 0, 0, 0,
Avi Kivity6aa8b732006-12-10 02:21:36 -0800235 /* 0xD0 - 0xDF */
236 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
237 /* 0xE0 - 0xEF */
238 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
239 /* 0xF0 - 0xFF */
240 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
241};
242
Avi Kivitye09d0822008-01-18 12:38:59 +0200243static u16 group_table[] = {
Avi Kivity1d6ad202008-01-23 22:26:09 +0200244 [Group1_80*8] =
245 ByteOp | DstMem | SrcImm | ModRM, ByteOp | DstMem | SrcImm | ModRM,
246 ByteOp | DstMem | SrcImm | ModRM, ByteOp | DstMem | SrcImm | ModRM,
247 ByteOp | DstMem | SrcImm | ModRM, ByteOp | DstMem | SrcImm | ModRM,
248 ByteOp | DstMem | SrcImm | ModRM, ByteOp | DstMem | SrcImm | ModRM,
249 [Group1_81*8] =
250 DstMem | SrcImm | ModRM, DstMem | SrcImm | ModRM,
251 DstMem | SrcImm | ModRM, DstMem | SrcImm | ModRM,
252 DstMem | SrcImm | ModRM, DstMem | SrcImm | ModRM,
253 DstMem | SrcImm | ModRM, DstMem | SrcImm | ModRM,
254 [Group1_82*8] =
255 ByteOp | DstMem | SrcImm | ModRM, ByteOp | DstMem | SrcImm | ModRM,
256 ByteOp | DstMem | SrcImm | ModRM, ByteOp | DstMem | SrcImm | ModRM,
257 ByteOp | DstMem | SrcImm | ModRM, ByteOp | DstMem | SrcImm | ModRM,
258 ByteOp | DstMem | SrcImm | ModRM, ByteOp | DstMem | SrcImm | ModRM,
259 [Group1_83*8] =
260 DstMem | SrcImmByte | ModRM, DstMem | SrcImmByte | ModRM,
261 DstMem | SrcImmByte | ModRM, DstMem | SrcImmByte | ModRM,
262 DstMem | SrcImmByte | ModRM, DstMem | SrcImmByte | ModRM,
263 DstMem | SrcImmByte | ModRM, DstMem | SrcImmByte | ModRM,
Avi Kivity43bb19c2008-01-18 12:46:50 +0200264 [Group1A*8] =
265 DstMem | SrcNone | ModRM | Mov | Stack, 0, 0, 0, 0, 0, 0, 0,
Avi Kivity7d858a12008-01-18 12:58:04 +0200266 [Group3_Byte*8] =
267 ByteOp | SrcImm | DstMem | ModRM, 0,
268 ByteOp | DstMem | SrcNone | ModRM, ByteOp | DstMem | SrcNone | ModRM,
269 0, 0, 0, 0,
270 [Group3*8] =
271 DstMem | SrcImm | ModRM | SrcImm, 0,
272 DstMem | SrcNone | ModRM, ByteOp | DstMem | SrcNone | ModRM,
273 0, 0, 0, 0,
Avi Kivityfd607542008-01-18 13:12:26 +0200274 [Group4*8] =
275 ByteOp | DstMem | SrcNone | ModRM, ByteOp | DstMem | SrcNone | ModRM,
276 0, 0, 0, 0, 0, 0,
277 [Group5*8] =
278 DstMem | SrcNone | ModRM, DstMem | SrcNone | ModRM, 0, 0,
279 SrcMem | ModRM, 0, SrcMem | ModRM | Stack, 0,
Avi Kivityd95058a2008-01-18 13:36:50 +0200280 [Group7*8] =
281 0, 0, ModRM | SrcMem, ModRM | SrcMem,
Avi Kivity16286d02008-04-14 14:40:50 +0300282 SrcNone | ModRM | DstMem | Mov, 0,
283 SrcMem16 | ModRM | Mov, SrcMem | ModRM | ByteOp,
Avi Kivitye09d0822008-01-18 12:38:59 +0200284};
285
286static u16 group2_table[] = {
Avi Kivityd95058a2008-01-18 13:36:50 +0200287 [Group7*8] =
Avi Kivity16286d02008-04-14 14:40:50 +0300288 SrcNone | ModRM, 0, 0, 0,
289 SrcNone | ModRM | DstMem | Mov, 0,
290 SrcMem16 | ModRM | Mov, 0,
Avi Kivitye09d0822008-01-18 12:38:59 +0200291};
292
Avi Kivity6aa8b732006-12-10 02:21:36 -0800293/* EFLAGS bit definitions. */
294#define EFLG_OF (1<<11)
295#define EFLG_DF (1<<10)
296#define EFLG_SF (1<<7)
297#define EFLG_ZF (1<<6)
298#define EFLG_AF (1<<4)
299#define EFLG_PF (1<<2)
300#define EFLG_CF (1<<0)
301
302/*
303 * Instruction emulation:
304 * Most instructions are emulated directly via a fragment of inline assembly
305 * code. This allows us to save/restore EFLAGS and thus very easily pick up
306 * any modified flags.
307 */
308
Avi Kivity05b3e0c2006-12-13 00:33:45 -0800309#if defined(CONFIG_X86_64)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800310#define _LO32 "k" /* force 32-bit operand */
311#define _STK "%%rsp" /* stack pointer */
312#elif defined(__i386__)
313#define _LO32 "" /* force 32-bit operand */
314#define _STK "%%esp" /* stack pointer */
315#endif
316
317/*
318 * These EFLAGS bits are restored from saved value during emulation, and
319 * any changes are written back to the saved value after emulation.
320 */
321#define EFLAGS_MASK (EFLG_OF|EFLG_SF|EFLG_ZF|EFLG_AF|EFLG_PF|EFLG_CF)
322
323/* Before executing instruction: restore necessary bits in EFLAGS. */
Avi Kivitye934c9c2007-12-06 16:15:02 +0200324#define _PRE_EFLAGS(_sav, _msk, _tmp) \
325 /* EFLAGS = (_sav & _msk) | (EFLAGS & ~_msk); _sav &= ~_msk; */ \
326 "movl %"_sav",%"_LO32 _tmp"; " \
327 "push %"_tmp"; " \
328 "push %"_tmp"; " \
329 "movl %"_msk",%"_LO32 _tmp"; " \
330 "andl %"_LO32 _tmp",("_STK"); " \
331 "pushf; " \
332 "notl %"_LO32 _tmp"; " \
333 "andl %"_LO32 _tmp",("_STK"); " \
334 "andl %"_LO32 _tmp","__stringify(BITS_PER_LONG/4)"("_STK"); " \
335 "pop %"_tmp"; " \
336 "orl %"_LO32 _tmp",("_STK"); " \
337 "popf; " \
338 "pop %"_sav"; "
Avi Kivity6aa8b732006-12-10 02:21:36 -0800339
340/* After executing instruction: write-back necessary bits in EFLAGS. */
341#define _POST_EFLAGS(_sav, _msk, _tmp) \
342 /* _sav |= EFLAGS & _msk; */ \
343 "pushf; " \
344 "pop %"_tmp"; " \
345 "andl %"_msk",%"_LO32 _tmp"; " \
346 "orl %"_LO32 _tmp",%"_sav"; "
347
348/* Raw emulation: instruction has two explicit operands. */
349#define __emulate_2op_nobyte(_op,_src,_dst,_eflags,_wx,_wy,_lx,_ly,_qx,_qy) \
350 do { \
351 unsigned long _tmp; \
352 \
353 switch ((_dst).bytes) { \
354 case 2: \
355 __asm__ __volatile__ ( \
Mike Dayd77c26f2007-10-08 09:02:08 -0400356 _PRE_EFLAGS("0", "4", "2") \
Avi Kivity6aa8b732006-12-10 02:21:36 -0800357 _op"w %"_wx"3,%1; " \
Mike Dayd77c26f2007-10-08 09:02:08 -0400358 _POST_EFLAGS("0", "4", "2") \
Avi Kivity6aa8b732006-12-10 02:21:36 -0800359 : "=m" (_eflags), "=m" ((_dst).val), \
360 "=&r" (_tmp) \
Mike Dayd77c26f2007-10-08 09:02:08 -0400361 : _wy ((_src).val), "i" (EFLAGS_MASK)); \
Avi Kivity6aa8b732006-12-10 02:21:36 -0800362 break; \
363 case 4: \
364 __asm__ __volatile__ ( \
Mike Dayd77c26f2007-10-08 09:02:08 -0400365 _PRE_EFLAGS("0", "4", "2") \
Avi Kivity6aa8b732006-12-10 02:21:36 -0800366 _op"l %"_lx"3,%1; " \
Mike Dayd77c26f2007-10-08 09:02:08 -0400367 _POST_EFLAGS("0", "4", "2") \
Avi Kivity6aa8b732006-12-10 02:21:36 -0800368 : "=m" (_eflags), "=m" ((_dst).val), \
369 "=&r" (_tmp) \
Mike Dayd77c26f2007-10-08 09:02:08 -0400370 : _ly ((_src).val), "i" (EFLAGS_MASK)); \
Avi Kivity6aa8b732006-12-10 02:21:36 -0800371 break; \
372 case 8: \
373 __emulate_2op_8byte(_op, _src, _dst, \
374 _eflags, _qx, _qy); \
375 break; \
376 } \
377 } while (0)
378
379#define __emulate_2op(_op,_src,_dst,_eflags,_bx,_by,_wx,_wy,_lx,_ly,_qx,_qy) \
380 do { \
Harvey Harrison77cd3372008-02-19 10:43:11 -0800381 unsigned long __tmp; \
Mike Dayd77c26f2007-10-08 09:02:08 -0400382 switch ((_dst).bytes) { \
Avi Kivity6aa8b732006-12-10 02:21:36 -0800383 case 1: \
384 __asm__ __volatile__ ( \
Mike Dayd77c26f2007-10-08 09:02:08 -0400385 _PRE_EFLAGS("0", "4", "2") \
Avi Kivity6aa8b732006-12-10 02:21:36 -0800386 _op"b %"_bx"3,%1; " \
Mike Dayd77c26f2007-10-08 09:02:08 -0400387 _POST_EFLAGS("0", "4", "2") \
Avi Kivity6aa8b732006-12-10 02:21:36 -0800388 : "=m" (_eflags), "=m" ((_dst).val), \
Harvey Harrison77cd3372008-02-19 10:43:11 -0800389 "=&r" (__tmp) \
Mike Dayd77c26f2007-10-08 09:02:08 -0400390 : _by ((_src).val), "i" (EFLAGS_MASK)); \
Avi Kivity6aa8b732006-12-10 02:21:36 -0800391 break; \
392 default: \
393 __emulate_2op_nobyte(_op, _src, _dst, _eflags, \
394 _wx, _wy, _lx, _ly, _qx, _qy); \
395 break; \
396 } \
397 } while (0)
398
399/* Source operand is byte-sized and may be restricted to just %cl. */
400#define emulate_2op_SrcB(_op, _src, _dst, _eflags) \
401 __emulate_2op(_op, _src, _dst, _eflags, \
402 "b", "c", "b", "c", "b", "c", "b", "c")
403
404/* Source operand is byte, word, long or quad sized. */
405#define emulate_2op_SrcV(_op, _src, _dst, _eflags) \
406 __emulate_2op(_op, _src, _dst, _eflags, \
407 "b", "q", "w", "r", _LO32, "r", "", "r")
408
409/* Source operand is word, long or quad sized. */
410#define emulate_2op_SrcV_nobyte(_op, _src, _dst, _eflags) \
411 __emulate_2op_nobyte(_op, _src, _dst, _eflags, \
412 "w", "r", _LO32, "r", "", "r")
413
414/* Instruction has only one explicit operand (no source operand). */
415#define emulate_1op(_op, _dst, _eflags) \
416 do { \
417 unsigned long _tmp; \
418 \
Mike Dayd77c26f2007-10-08 09:02:08 -0400419 switch ((_dst).bytes) { \
Avi Kivity6aa8b732006-12-10 02:21:36 -0800420 case 1: \
421 __asm__ __volatile__ ( \
Mike Dayd77c26f2007-10-08 09:02:08 -0400422 _PRE_EFLAGS("0", "3", "2") \
Avi Kivity6aa8b732006-12-10 02:21:36 -0800423 _op"b %1; " \
Mike Dayd77c26f2007-10-08 09:02:08 -0400424 _POST_EFLAGS("0", "3", "2") \
Avi Kivity6aa8b732006-12-10 02:21:36 -0800425 : "=m" (_eflags), "=m" ((_dst).val), \
426 "=&r" (_tmp) \
Mike Dayd77c26f2007-10-08 09:02:08 -0400427 : "i" (EFLAGS_MASK)); \
Avi Kivity6aa8b732006-12-10 02:21:36 -0800428 break; \
429 case 2: \
430 __asm__ __volatile__ ( \
Mike Dayd77c26f2007-10-08 09:02:08 -0400431 _PRE_EFLAGS("0", "3", "2") \
Avi Kivity6aa8b732006-12-10 02:21:36 -0800432 _op"w %1; " \
Mike Dayd77c26f2007-10-08 09:02:08 -0400433 _POST_EFLAGS("0", "3", "2") \
Avi Kivity6aa8b732006-12-10 02:21:36 -0800434 : "=m" (_eflags), "=m" ((_dst).val), \
435 "=&r" (_tmp) \
Mike Dayd77c26f2007-10-08 09:02:08 -0400436 : "i" (EFLAGS_MASK)); \
Avi Kivity6aa8b732006-12-10 02:21:36 -0800437 break; \
438 case 4: \
439 __asm__ __volatile__ ( \
Mike Dayd77c26f2007-10-08 09:02:08 -0400440 _PRE_EFLAGS("0", "3", "2") \
Avi Kivity6aa8b732006-12-10 02:21:36 -0800441 _op"l %1; " \
Mike Dayd77c26f2007-10-08 09:02:08 -0400442 _POST_EFLAGS("0", "3", "2") \
Avi Kivity6aa8b732006-12-10 02:21:36 -0800443 : "=m" (_eflags), "=m" ((_dst).val), \
444 "=&r" (_tmp) \
Mike Dayd77c26f2007-10-08 09:02:08 -0400445 : "i" (EFLAGS_MASK)); \
Avi Kivity6aa8b732006-12-10 02:21:36 -0800446 break; \
447 case 8: \
448 __emulate_1op_8byte(_op, _dst, _eflags); \
449 break; \
450 } \
451 } while (0)
452
453/* Emulate an instruction with quadword operands (x86/64 only). */
Avi Kivity05b3e0c2006-12-13 00:33:45 -0800454#if defined(CONFIG_X86_64)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800455#define __emulate_2op_8byte(_op, _src, _dst, _eflags, _qx, _qy) \
456 do { \
457 __asm__ __volatile__ ( \
Mike Dayd77c26f2007-10-08 09:02:08 -0400458 _PRE_EFLAGS("0", "4", "2") \
Avi Kivity6aa8b732006-12-10 02:21:36 -0800459 _op"q %"_qx"3,%1; " \
Mike Dayd77c26f2007-10-08 09:02:08 -0400460 _POST_EFLAGS("0", "4", "2") \
Avi Kivity6aa8b732006-12-10 02:21:36 -0800461 : "=m" (_eflags), "=m" ((_dst).val), "=&r" (_tmp) \
Mike Dayd77c26f2007-10-08 09:02:08 -0400462 : _qy ((_src).val), "i" (EFLAGS_MASK)); \
Avi Kivity6aa8b732006-12-10 02:21:36 -0800463 } while (0)
464
465#define __emulate_1op_8byte(_op, _dst, _eflags) \
466 do { \
467 __asm__ __volatile__ ( \
Mike Dayd77c26f2007-10-08 09:02:08 -0400468 _PRE_EFLAGS("0", "3", "2") \
Avi Kivity6aa8b732006-12-10 02:21:36 -0800469 _op"q %1; " \
Mike Dayd77c26f2007-10-08 09:02:08 -0400470 _POST_EFLAGS("0", "3", "2") \
Avi Kivity6aa8b732006-12-10 02:21:36 -0800471 : "=m" (_eflags), "=m" ((_dst).val), "=&r" (_tmp) \
Mike Dayd77c26f2007-10-08 09:02:08 -0400472 : "i" (EFLAGS_MASK)); \
Avi Kivity6aa8b732006-12-10 02:21:36 -0800473 } while (0)
474
475#elif defined(__i386__)
476#define __emulate_2op_8byte(_op, _src, _dst, _eflags, _qx, _qy)
477#define __emulate_1op_8byte(_op, _dst, _eflags)
478#endif /* __i386__ */
479
480/* Fetch next part of the instruction being emulated. */
481#define insn_fetch(_type, _size, _eip) \
482({ unsigned long _x; \
Avi Kivity62266862007-11-20 13:15:52 +0200483 rc = do_insn_fetch(ctxt, ops, (_eip), &_x, (_size)); \
Mike Dayd77c26f2007-10-08 09:02:08 -0400484 if (rc != 0) \
Avi Kivity6aa8b732006-12-10 02:21:36 -0800485 goto done; \
486 (_eip) += (_size); \
487 (_type)_x; \
488})
489
Harvey Harrisonddcb2882008-02-18 11:12:48 -0800490static inline unsigned long ad_mask(struct decode_cache *c)
491{
492 return (1UL << (c->ad_bytes << 3)) - 1;
493}
494
Avi Kivity6aa8b732006-12-10 02:21:36 -0800495/* Access/update address held in a register, based on addressing mode. */
Harvey Harrisone4706772008-02-19 07:40:38 -0800496static inline unsigned long
497address_mask(struct decode_cache *c, unsigned long reg)
498{
499 if (c->ad_bytes == sizeof(unsigned long))
500 return reg;
501 else
502 return reg & ad_mask(c);
503}
504
505static inline unsigned long
506register_address(struct decode_cache *c, unsigned long base, unsigned long reg)
507{
508 return base + address_mask(c, reg);
509}
510
Harvey Harrison7a9572752008-02-19 07:40:41 -0800511static inline void
512register_address_increment(struct decode_cache *c, unsigned long *reg, int inc)
513{
514 if (c->ad_bytes == sizeof(unsigned long))
515 *reg += inc;
516 else
517 *reg = (*reg & ~ad_mask(c)) | ((*reg + inc) & ad_mask(c));
518}
Avi Kivity6aa8b732006-12-10 02:21:36 -0800519
Harvey Harrison7a9572752008-02-19 07:40:41 -0800520static inline void jmp_rel(struct decode_cache *c, int rel)
521{
522 register_address_increment(c, &c->eip, rel);
523}
Nitin A Kamble098c9372007-08-19 11:00:36 +0300524
Avi Kivity62266862007-11-20 13:15:52 +0200525static int do_fetch_insn_byte(struct x86_emulate_ctxt *ctxt,
526 struct x86_emulate_ops *ops,
527 unsigned long linear, u8 *dest)
528{
529 struct fetch_cache *fc = &ctxt->decode.fetch;
530 int rc;
531 int size;
532
533 if (linear < fc->start || linear >= fc->end) {
534 size = min(15UL, PAGE_SIZE - offset_in_page(linear));
535 rc = ops->read_std(linear, fc->data, size, ctxt->vcpu);
536 if (rc)
537 return rc;
538 fc->start = linear;
539 fc->end = linear + size;
540 }
541 *dest = fc->data[linear - fc->start];
542 return 0;
543}
544
545static int do_insn_fetch(struct x86_emulate_ctxt *ctxt,
546 struct x86_emulate_ops *ops,
547 unsigned long eip, void *dest, unsigned size)
548{
549 int rc = 0;
550
551 eip += ctxt->cs_base;
552 while (size--) {
553 rc = do_fetch_insn_byte(ctxt, ops, eip++, dest++);
554 if (rc)
555 return rc;
556 }
557 return 0;
558}
559
Rusty Russell1e3c5cb2007-07-17 23:16:11 +1000560/*
561 * Given the 'reg' portion of a ModRM byte, and a register block, return a
562 * pointer into the block that addresses the relevant register.
563 * @highbyte_regs specifies whether to decode AH,CH,DH,BH.
564 */
565static void *decode_register(u8 modrm_reg, unsigned long *regs,
566 int highbyte_regs)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800567{
568 void *p;
569
570 p = &regs[modrm_reg];
571 if (highbyte_regs && modrm_reg >= 4 && modrm_reg < 8)
572 p = (unsigned char *)&regs[modrm_reg & 3] + 1;
573 return p;
574}
575
576static int read_descriptor(struct x86_emulate_ctxt *ctxt,
577 struct x86_emulate_ops *ops,
578 void *ptr,
579 u16 *size, unsigned long *address, int op_bytes)
580{
581 int rc;
582
583 if (op_bytes == 2)
584 op_bytes = 3;
585 *address = 0;
Laurent Viviercebff022007-07-30 13:35:24 +0300586 rc = ops->read_std((unsigned long)ptr, (unsigned long *)size, 2,
587 ctxt->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800588 if (rc)
589 return rc;
Laurent Viviercebff022007-07-30 13:35:24 +0300590 rc = ops->read_std((unsigned long)ptr + 2, address, op_bytes,
591 ctxt->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800592 return rc;
593}
594
Nitin A Kamblebbe9abb2007-09-15 10:23:07 +0300595static int test_cc(unsigned int condition, unsigned int flags)
596{
597 int rc = 0;
598
599 switch ((condition & 15) >> 1) {
600 case 0: /* o */
601 rc |= (flags & EFLG_OF);
602 break;
603 case 1: /* b/c/nae */
604 rc |= (flags & EFLG_CF);
605 break;
606 case 2: /* z/e */
607 rc |= (flags & EFLG_ZF);
608 break;
609 case 3: /* be/na */
610 rc |= (flags & (EFLG_CF|EFLG_ZF));
611 break;
612 case 4: /* s */
613 rc |= (flags & EFLG_SF);
614 break;
615 case 5: /* p/pe */
616 rc |= (flags & EFLG_PF);
617 break;
618 case 7: /* le/ng */
619 rc |= (flags & EFLG_ZF);
620 /* fall through */
621 case 6: /* l/nge */
622 rc |= (!(flags & EFLG_SF) != !(flags & EFLG_OF));
623 break;
624 }
625
626 /* Odd condition identifiers (lsb == 1) have inverted sense. */
627 return (!!rc ^ (condition & 1));
628}
629
Avi Kivity3c118e22007-10-31 10:27:04 +0200630static void decode_register_operand(struct operand *op,
631 struct decode_cache *c,
Avi Kivity3c118e22007-10-31 10:27:04 +0200632 int inhibit_bytereg)
633{
Avi Kivity33615aa2007-10-31 11:15:56 +0200634 unsigned reg = c->modrm_reg;
Avi Kivity9f1ef3f2007-10-31 11:21:06 +0200635 int highbyte_regs = c->rex_prefix == 0;
Avi Kivity33615aa2007-10-31 11:15:56 +0200636
637 if (!(c->d & ModRM))
638 reg = (c->b & 7) | ((c->rex_prefix & 1) << 3);
Avi Kivity3c118e22007-10-31 10:27:04 +0200639 op->type = OP_REG;
640 if ((c->d & ByteOp) && !inhibit_bytereg) {
Avi Kivity33615aa2007-10-31 11:15:56 +0200641 op->ptr = decode_register(reg, c->regs, highbyte_regs);
Avi Kivity3c118e22007-10-31 10:27:04 +0200642 op->val = *(u8 *)op->ptr;
643 op->bytes = 1;
644 } else {
Avi Kivity33615aa2007-10-31 11:15:56 +0200645 op->ptr = decode_register(reg, c->regs, 0);
Avi Kivity3c118e22007-10-31 10:27:04 +0200646 op->bytes = c->op_bytes;
647 switch (op->bytes) {
648 case 2:
649 op->val = *(u16 *)op->ptr;
650 break;
651 case 4:
652 op->val = *(u32 *)op->ptr;
653 break;
654 case 8:
655 op->val = *(u64 *) op->ptr;
656 break;
657 }
658 }
659 op->orig_val = op->val;
660}
661
Avi Kivity1c73ef6652007-11-01 06:31:28 +0200662static int decode_modrm(struct x86_emulate_ctxt *ctxt,
663 struct x86_emulate_ops *ops)
664{
665 struct decode_cache *c = &ctxt->decode;
666 u8 sib;
667 int index_reg = 0, base_reg = 0, scale, rip_relative = 0;
668 int rc = 0;
669
670 if (c->rex_prefix) {
671 c->modrm_reg = (c->rex_prefix & 4) << 1; /* REX.R */
672 index_reg = (c->rex_prefix & 2) << 2; /* REX.X */
673 c->modrm_rm = base_reg = (c->rex_prefix & 1) << 3; /* REG.B */
674 }
675
676 c->modrm = insn_fetch(u8, 1, c->eip);
677 c->modrm_mod |= (c->modrm & 0xc0) >> 6;
678 c->modrm_reg |= (c->modrm & 0x38) >> 3;
679 c->modrm_rm |= (c->modrm & 0x07);
680 c->modrm_ea = 0;
681 c->use_modrm_ea = 1;
682
683 if (c->modrm_mod == 3) {
Avi Kivity107d6d22008-05-05 14:58:26 +0300684 c->modrm_ptr = decode_register(c->modrm_rm,
685 c->regs, c->d & ByteOp);
686 c->modrm_val = *(unsigned long *)c->modrm_ptr;
Avi Kivity1c73ef6652007-11-01 06:31:28 +0200687 return rc;
688 }
689
690 if (c->ad_bytes == 2) {
691 unsigned bx = c->regs[VCPU_REGS_RBX];
692 unsigned bp = c->regs[VCPU_REGS_RBP];
693 unsigned si = c->regs[VCPU_REGS_RSI];
694 unsigned di = c->regs[VCPU_REGS_RDI];
695
696 /* 16-bit ModR/M decode. */
697 switch (c->modrm_mod) {
698 case 0:
699 if (c->modrm_rm == 6)
700 c->modrm_ea += insn_fetch(u16, 2, c->eip);
701 break;
702 case 1:
703 c->modrm_ea += insn_fetch(s8, 1, c->eip);
704 break;
705 case 2:
706 c->modrm_ea += insn_fetch(u16, 2, c->eip);
707 break;
708 }
709 switch (c->modrm_rm) {
710 case 0:
711 c->modrm_ea += bx + si;
712 break;
713 case 1:
714 c->modrm_ea += bx + di;
715 break;
716 case 2:
717 c->modrm_ea += bp + si;
718 break;
719 case 3:
720 c->modrm_ea += bp + di;
721 break;
722 case 4:
723 c->modrm_ea += si;
724 break;
725 case 5:
726 c->modrm_ea += di;
727 break;
728 case 6:
729 if (c->modrm_mod != 0)
730 c->modrm_ea += bp;
731 break;
732 case 7:
733 c->modrm_ea += bx;
734 break;
735 }
736 if (c->modrm_rm == 2 || c->modrm_rm == 3 ||
737 (c->modrm_rm == 6 && c->modrm_mod != 0))
738 if (!c->override_base)
739 c->override_base = &ctxt->ss_base;
740 c->modrm_ea = (u16)c->modrm_ea;
741 } else {
742 /* 32/64-bit ModR/M decode. */
Avi Kivity84411d82008-06-15 21:53:26 -0700743 if ((c->modrm_rm & 7) == 4) {
Avi Kivity1c73ef6652007-11-01 06:31:28 +0200744 sib = insn_fetch(u8, 1, c->eip);
745 index_reg |= (sib >> 3) & 7;
746 base_reg |= sib & 7;
747 scale = sib >> 6;
748
Avi Kivitydc71d0f2008-06-15 21:23:17 -0700749 if ((base_reg & 7) == 5 && c->modrm_mod == 0)
750 c->modrm_ea += insn_fetch(s32, 4, c->eip);
751 else
Avi Kivity1c73ef6652007-11-01 06:31:28 +0200752 c->modrm_ea += c->regs[base_reg];
Avi Kivitydc71d0f2008-06-15 21:23:17 -0700753 if (index_reg != 4)
Avi Kivity1c73ef6652007-11-01 06:31:28 +0200754 c->modrm_ea += c->regs[index_reg] << scale;
Avi Kivity84411d82008-06-15 21:53:26 -0700755 } else if ((c->modrm_rm & 7) == 5 && c->modrm_mod == 0) {
756 if (ctxt->mode == X86EMUL_MODE_PROT64)
Avi Kivity1c73ef6652007-11-01 06:31:28 +0200757 rip_relative = 1;
Avi Kivity84411d82008-06-15 21:53:26 -0700758 } else
Avi Kivity1c73ef6652007-11-01 06:31:28 +0200759 c->modrm_ea += c->regs[c->modrm_rm];
Avi Kivity1c73ef6652007-11-01 06:31:28 +0200760 switch (c->modrm_mod) {
761 case 0:
762 if (c->modrm_rm == 5)
763 c->modrm_ea += insn_fetch(s32, 4, c->eip);
764 break;
765 case 1:
766 c->modrm_ea += insn_fetch(s8, 1, c->eip);
767 break;
768 case 2:
769 c->modrm_ea += insn_fetch(s32, 4, c->eip);
770 break;
771 }
772 }
773 if (rip_relative) {
774 c->modrm_ea += c->eip;
775 switch (c->d & SrcMask) {
776 case SrcImmByte:
777 c->modrm_ea += 1;
778 break;
779 case SrcImm:
780 if (c->d & ByteOp)
781 c->modrm_ea += 1;
782 else
783 if (c->op_bytes == 8)
784 c->modrm_ea += 4;
785 else
786 c->modrm_ea += c->op_bytes;
787 }
788 }
789done:
790 return rc;
791}
792
793static int decode_abs(struct x86_emulate_ctxt *ctxt,
794 struct x86_emulate_ops *ops)
795{
796 struct decode_cache *c = &ctxt->decode;
797 int rc = 0;
798
799 switch (c->ad_bytes) {
800 case 2:
801 c->modrm_ea = insn_fetch(u16, 2, c->eip);
802 break;
803 case 4:
804 c->modrm_ea = insn_fetch(u32, 4, c->eip);
805 break;
806 case 8:
807 c->modrm_ea = insn_fetch(u64, 8, c->eip);
808 break;
809 }
810done:
811 return rc;
812}
813
Avi Kivity6aa8b732006-12-10 02:21:36 -0800814int
Laurent Vivier8b4caf62007-09-18 11:27:19 +0200815x86_decode_insn(struct x86_emulate_ctxt *ctxt, struct x86_emulate_ops *ops)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800816{
Laurent Viviere4e03de2007-09-18 11:52:50 +0200817 struct decode_cache *c = &ctxt->decode;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800818 int rc = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800819 int mode = ctxt->mode;
Avi Kivitye09d0822008-01-18 12:38:59 +0200820 int def_op_bytes, def_ad_bytes, group;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800821
822 /* Shadow copy of register state. Committed on successful emulation. */
Avi Kivity6aa8b732006-12-10 02:21:36 -0800823
Laurent Viviere4e03de2007-09-18 11:52:50 +0200824 memset(c, 0, sizeof(struct decode_cache));
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800825 c->eip = ctxt->vcpu->arch.rip;
826 memcpy(c->regs, ctxt->vcpu->arch.regs, sizeof c->regs);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800827
828 switch (mode) {
829 case X86EMUL_MODE_REAL:
830 case X86EMUL_MODE_PROT16:
Avi Kivityf21b8bf2007-11-22 14:16:12 +0200831 def_op_bytes = def_ad_bytes = 2;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800832 break;
833 case X86EMUL_MODE_PROT32:
Avi Kivityf21b8bf2007-11-22 14:16:12 +0200834 def_op_bytes = def_ad_bytes = 4;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800835 break;
Avi Kivity05b3e0c2006-12-13 00:33:45 -0800836#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -0800837 case X86EMUL_MODE_PROT64:
Avi Kivityf21b8bf2007-11-22 14:16:12 +0200838 def_op_bytes = 4;
839 def_ad_bytes = 8;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800840 break;
841#endif
842 default:
843 return -1;
844 }
845
Avi Kivityf21b8bf2007-11-22 14:16:12 +0200846 c->op_bytes = def_op_bytes;
847 c->ad_bytes = def_ad_bytes;
848
Avi Kivity6aa8b732006-12-10 02:21:36 -0800849 /* Legacy prefixes. */
Laurent Vivierb4c6abf2007-09-25 13:36:40 +0200850 for (;;) {
Laurent Viviere4e03de2007-09-18 11:52:50 +0200851 switch (c->b = insn_fetch(u8, 1, c->eip)) {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800852 case 0x66: /* operand-size override */
Avi Kivityf21b8bf2007-11-22 14:16:12 +0200853 /* switch between 2/4 bytes */
854 c->op_bytes = def_op_bytes ^ 6;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800855 break;
856 case 0x67: /* address-size override */
857 if (mode == X86EMUL_MODE_PROT64)
Laurent Viviere4e03de2007-09-18 11:52:50 +0200858 /* switch between 4/8 bytes */
Avi Kivityf21b8bf2007-11-22 14:16:12 +0200859 c->ad_bytes = def_ad_bytes ^ 12;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800860 else
Laurent Viviere4e03de2007-09-18 11:52:50 +0200861 /* switch between 2/4 bytes */
Avi Kivityf21b8bf2007-11-22 14:16:12 +0200862 c->ad_bytes = def_ad_bytes ^ 6;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800863 break;
864 case 0x2e: /* CS override */
Laurent Viviere4e03de2007-09-18 11:52:50 +0200865 c->override_base = &ctxt->cs_base;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800866 break;
867 case 0x3e: /* DS override */
Laurent Viviere4e03de2007-09-18 11:52:50 +0200868 c->override_base = &ctxt->ds_base;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800869 break;
870 case 0x26: /* ES override */
Laurent Viviere4e03de2007-09-18 11:52:50 +0200871 c->override_base = &ctxt->es_base;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800872 break;
873 case 0x64: /* FS override */
Laurent Viviere4e03de2007-09-18 11:52:50 +0200874 c->override_base = &ctxt->fs_base;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800875 break;
876 case 0x65: /* GS override */
Laurent Viviere4e03de2007-09-18 11:52:50 +0200877 c->override_base = &ctxt->gs_base;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800878 break;
879 case 0x36: /* SS override */
Laurent Viviere4e03de2007-09-18 11:52:50 +0200880 c->override_base = &ctxt->ss_base;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800881 break;
Laurent Vivierb4c6abf2007-09-25 13:36:40 +0200882 case 0x40 ... 0x4f: /* REX */
883 if (mode != X86EMUL_MODE_PROT64)
884 goto done_prefixes;
Avi Kivity33615aa2007-10-31 11:15:56 +0200885 c->rex_prefix = c->b;
Laurent Vivierb4c6abf2007-09-25 13:36:40 +0200886 continue;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800887 case 0xf0: /* LOCK */
Laurent Viviere4e03de2007-09-18 11:52:50 +0200888 c->lock_prefix = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800889 break;
Laurent Vivierae6200b2007-09-20 11:17:24 +0200890 case 0xf2: /* REPNE/REPNZ */
Guillaume Thouvenin90e0a282007-11-22 11:32:09 +0100891 c->rep_prefix = REPNE_PREFIX;
892 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800893 case 0xf3: /* REP/REPE/REPZ */
Guillaume Thouvenin90e0a282007-11-22 11:32:09 +0100894 c->rep_prefix = REPE_PREFIX;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800895 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800896 default:
897 goto done_prefixes;
898 }
Laurent Vivierb4c6abf2007-09-25 13:36:40 +0200899
900 /* Any legacy prefix after a REX prefix nullifies its effect. */
901
Avi Kivity33615aa2007-10-31 11:15:56 +0200902 c->rex_prefix = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800903 }
904
905done_prefixes:
906
907 /* REX prefix. */
Avi Kivity1c73ef6652007-11-01 06:31:28 +0200908 if (c->rex_prefix)
Avi Kivity33615aa2007-10-31 11:15:56 +0200909 if (c->rex_prefix & 8)
Laurent Viviere4e03de2007-09-18 11:52:50 +0200910 c->op_bytes = 8; /* REX.W */
Avi Kivity6aa8b732006-12-10 02:21:36 -0800911
912 /* Opcode byte(s). */
Laurent Viviere4e03de2007-09-18 11:52:50 +0200913 c->d = opcode_table[c->b];
914 if (c->d == 0) {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800915 /* Two-byte opcode? */
Laurent Viviere4e03de2007-09-18 11:52:50 +0200916 if (c->b == 0x0f) {
917 c->twobyte = 1;
918 c->b = insn_fetch(u8, 1, c->eip);
919 c->d = twobyte_table[c->b];
Avi Kivity6aa8b732006-12-10 02:21:36 -0800920 }
Avi Kivitye09d0822008-01-18 12:38:59 +0200921 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800922
Avi Kivitye09d0822008-01-18 12:38:59 +0200923 if (c->d & Group) {
924 group = c->d & GroupMask;
925 c->modrm = insn_fetch(u8, 1, c->eip);
926 --c->eip;
927
928 group = (group << 3) + ((c->modrm >> 3) & 7);
929 if ((c->d & GroupDual) && (c->modrm >> 6) == 3)
930 c->d = group2_table[group];
931 else
932 c->d = group_table[group];
933 }
934
935 /* Unrecognised? */
936 if (c->d == 0) {
937 DPRINTF("Cannot emulate %02x\n", c->b);
938 return -1;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800939 }
940
Avi Kivity6e3d5df2007-12-06 18:14:14 +0200941 if (mode == X86EMUL_MODE_PROT64 && (c->d & Stack))
942 c->op_bytes = 8;
943
Avi Kivity6aa8b732006-12-10 02:21:36 -0800944 /* ModRM and SIB bytes. */
Avi Kivity1c73ef6652007-11-01 06:31:28 +0200945 if (c->d & ModRM)
946 rc = decode_modrm(ctxt, ops);
947 else if (c->d & MemAbs)
948 rc = decode_abs(ctxt, ops);
949 if (rc)
950 goto done;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800951
Avi Kivityc7e75a32007-10-28 16:34:25 +0200952 if (!c->override_base)
953 c->override_base = &ctxt->ds_base;
954 if (mode == X86EMUL_MODE_PROT64 &&
955 c->override_base != &ctxt->fs_base &&
956 c->override_base != &ctxt->gs_base)
957 c->override_base = NULL;
958
959 if (c->override_base)
960 c->modrm_ea += *c->override_base;
961
962 if (c->ad_bytes != 8)
963 c->modrm_ea = (u32)c->modrm_ea;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800964 /*
965 * Decode and fetch the source operand: register, memory
966 * or immediate.
967 */
Laurent Viviere4e03de2007-09-18 11:52:50 +0200968 switch (c->d & SrcMask) {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800969 case SrcNone:
970 break;
971 case SrcReg:
Avi Kivity9f1ef3f2007-10-31 11:21:06 +0200972 decode_register_operand(&c->src, c, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800973 break;
974 case SrcMem16:
Laurent Viviere4e03de2007-09-18 11:52:50 +0200975 c->src.bytes = 2;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800976 goto srcmem_common;
977 case SrcMem32:
Laurent Viviere4e03de2007-09-18 11:52:50 +0200978 c->src.bytes = 4;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800979 goto srcmem_common;
980 case SrcMem:
Laurent Viviere4e03de2007-09-18 11:52:50 +0200981 c->src.bytes = (c->d & ByteOp) ? 1 :
982 c->op_bytes;
Rusty Russellb85b9ee92007-09-09 14:12:54 +0300983 /* Don't fetch the address for invlpg: it could be unmapped. */
Mike Dayd77c26f2007-10-08 09:02:08 -0400984 if (c->twobyte && c->b == 0x01 && c->modrm_reg == 7)
Rusty Russellb85b9ee92007-09-09 14:12:54 +0300985 break;
Mike Dayd77c26f2007-10-08 09:02:08 -0400986 srcmem_common:
Aurelien Jarno4e624172007-10-17 19:30:41 +0200987 /*
988 * For instructions with a ModR/M byte, switch to register
989 * access if Mod = 3.
990 */
Laurent Viviere4e03de2007-09-18 11:52:50 +0200991 if ((c->d & ModRM) && c->modrm_mod == 3) {
992 c->src.type = OP_REG;
Avi Kivity66b85502008-04-14 23:27:07 +0300993 c->src.val = c->modrm_val;
Avi Kivity107d6d22008-05-05 14:58:26 +0300994 c->src.ptr = c->modrm_ptr;
Aurelien Jarno4e624172007-10-17 19:30:41 +0200995 break;
996 }
Laurent Viviere4e03de2007-09-18 11:52:50 +0200997 c->src.type = OP_MEM;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800998 break;
999 case SrcImm:
Laurent Viviere4e03de2007-09-18 11:52:50 +02001000 c->src.type = OP_IMM;
1001 c->src.ptr = (unsigned long *)c->eip;
1002 c->src.bytes = (c->d & ByteOp) ? 1 : c->op_bytes;
1003 if (c->src.bytes == 8)
1004 c->src.bytes = 4;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001005 /* NB. Immediates are sign-extended as necessary. */
Laurent Viviere4e03de2007-09-18 11:52:50 +02001006 switch (c->src.bytes) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001007 case 1:
Laurent Viviere4e03de2007-09-18 11:52:50 +02001008 c->src.val = insn_fetch(s8, 1, c->eip);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001009 break;
1010 case 2:
Laurent Viviere4e03de2007-09-18 11:52:50 +02001011 c->src.val = insn_fetch(s16, 2, c->eip);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001012 break;
1013 case 4:
Laurent Viviere4e03de2007-09-18 11:52:50 +02001014 c->src.val = insn_fetch(s32, 4, c->eip);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001015 break;
1016 }
1017 break;
1018 case SrcImmByte:
Laurent Viviere4e03de2007-09-18 11:52:50 +02001019 c->src.type = OP_IMM;
1020 c->src.ptr = (unsigned long *)c->eip;
1021 c->src.bytes = 1;
1022 c->src.val = insn_fetch(s8, 1, c->eip);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001023 break;
1024 }
1025
Avi Kivity038e51d2007-01-22 20:40:40 -08001026 /* Decode and fetch the destination operand: register or memory. */
Laurent Viviere4e03de2007-09-18 11:52:50 +02001027 switch (c->d & DstMask) {
Avi Kivity038e51d2007-01-22 20:40:40 -08001028 case ImplicitOps:
1029 /* Special instructions do their own operand decoding. */
Laurent Vivier8b4caf62007-09-18 11:27:19 +02001030 return 0;
Avi Kivity038e51d2007-01-22 20:40:40 -08001031 case DstReg:
Avi Kivity9f1ef3f2007-10-31 11:21:06 +02001032 decode_register_operand(&c->dst, c,
Avi Kivity3c118e22007-10-31 10:27:04 +02001033 c->twobyte && (c->b == 0xb6 || c->b == 0xb7));
Avi Kivity038e51d2007-01-22 20:40:40 -08001034 break;
1035 case DstMem:
Laurent Viviere4e03de2007-09-18 11:52:50 +02001036 if ((c->d & ModRM) && c->modrm_mod == 3) {
Guillaume Thouvenin89c69632008-05-27 10:22:20 +02001037 c->dst.bytes = (c->d & ByteOp) ? 1 : c->op_bytes;
Laurent Viviere4e03de2007-09-18 11:52:50 +02001038 c->dst.type = OP_REG;
Avi Kivity66b85502008-04-14 23:27:07 +03001039 c->dst.val = c->dst.orig_val = c->modrm_val;
Avi Kivity107d6d22008-05-05 14:58:26 +03001040 c->dst.ptr = c->modrm_ptr;
Aurelien Jarno4e624172007-10-17 19:30:41 +02001041 break;
1042 }
Laurent Vivier8b4caf62007-09-18 11:27:19 +02001043 c->dst.type = OP_MEM;
1044 break;
1045 }
1046
1047done:
1048 return (rc == X86EMUL_UNHANDLEABLE) ? -1 : 0;
1049}
1050
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001051static inline void emulate_push(struct x86_emulate_ctxt *ctxt)
1052{
1053 struct decode_cache *c = &ctxt->decode;
1054
1055 c->dst.type = OP_MEM;
1056 c->dst.bytes = c->op_bytes;
1057 c->dst.val = c->src.val;
Harvey Harrison7a9572752008-02-19 07:40:41 -08001058 register_address_increment(c, &c->regs[VCPU_REGS_RSP], -c->op_bytes);
Harvey Harrisone4706772008-02-19 07:40:38 -08001059 c->dst.ptr = (void *) register_address(c, ctxt->ss_base,
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001060 c->regs[VCPU_REGS_RSP]);
1061}
1062
1063static inline int emulate_grp1a(struct x86_emulate_ctxt *ctxt,
1064 struct x86_emulate_ops *ops)
1065{
1066 struct decode_cache *c = &ctxt->decode;
1067 int rc;
1068
Harvey Harrisone4706772008-02-19 07:40:38 -08001069 rc = ops->read_std(register_address(c, ctxt->ss_base,
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001070 c->regs[VCPU_REGS_RSP]),
1071 &c->dst.val, c->dst.bytes, ctxt->vcpu);
1072 if (rc != 0)
1073 return rc;
1074
Harvey Harrison7a9572752008-02-19 07:40:41 -08001075 register_address_increment(c, &c->regs[VCPU_REGS_RSP], c->dst.bytes);
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001076
1077 return 0;
1078}
1079
Laurent Vivier05f086f2007-09-24 11:10:55 +02001080static inline void emulate_grp2(struct x86_emulate_ctxt *ctxt)
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001081{
Laurent Vivier05f086f2007-09-24 11:10:55 +02001082 struct decode_cache *c = &ctxt->decode;
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001083 switch (c->modrm_reg) {
1084 case 0: /* rol */
Laurent Vivier05f086f2007-09-24 11:10:55 +02001085 emulate_2op_SrcB("rol", c->src, c->dst, ctxt->eflags);
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001086 break;
1087 case 1: /* ror */
Laurent Vivier05f086f2007-09-24 11:10:55 +02001088 emulate_2op_SrcB("ror", c->src, c->dst, ctxt->eflags);
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001089 break;
1090 case 2: /* rcl */
Laurent Vivier05f086f2007-09-24 11:10:55 +02001091 emulate_2op_SrcB("rcl", c->src, c->dst, ctxt->eflags);
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001092 break;
1093 case 3: /* rcr */
Laurent Vivier05f086f2007-09-24 11:10:55 +02001094 emulate_2op_SrcB("rcr", c->src, c->dst, ctxt->eflags);
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001095 break;
1096 case 4: /* sal/shl */
1097 case 6: /* sal/shl */
Laurent Vivier05f086f2007-09-24 11:10:55 +02001098 emulate_2op_SrcB("sal", c->src, c->dst, ctxt->eflags);
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001099 break;
1100 case 5: /* shr */
Laurent Vivier05f086f2007-09-24 11:10:55 +02001101 emulate_2op_SrcB("shr", c->src, c->dst, ctxt->eflags);
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001102 break;
1103 case 7: /* sar */
Laurent Vivier05f086f2007-09-24 11:10:55 +02001104 emulate_2op_SrcB("sar", c->src, c->dst, ctxt->eflags);
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001105 break;
1106 }
1107}
1108
1109static inline int emulate_grp3(struct x86_emulate_ctxt *ctxt,
Laurent Vivier05f086f2007-09-24 11:10:55 +02001110 struct x86_emulate_ops *ops)
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001111{
1112 struct decode_cache *c = &ctxt->decode;
1113 int rc = 0;
1114
1115 switch (c->modrm_reg) {
1116 case 0 ... 1: /* test */
Laurent Vivier05f086f2007-09-24 11:10:55 +02001117 emulate_2op_SrcV("test", c->src, c->dst, ctxt->eflags);
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001118 break;
1119 case 2: /* not */
1120 c->dst.val = ~c->dst.val;
1121 break;
1122 case 3: /* neg */
Laurent Vivier05f086f2007-09-24 11:10:55 +02001123 emulate_1op("neg", c->dst, ctxt->eflags);
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001124 break;
1125 default:
1126 DPRINTF("Cannot emulate %02x\n", c->b);
1127 rc = X86EMUL_UNHANDLEABLE;
1128 break;
1129 }
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001130 return rc;
1131}
1132
1133static inline int emulate_grp45(struct x86_emulate_ctxt *ctxt,
Laurent Viviera01af5e2007-09-24 11:10:56 +02001134 struct x86_emulate_ops *ops)
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001135{
1136 struct decode_cache *c = &ctxt->decode;
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001137
1138 switch (c->modrm_reg) {
1139 case 0: /* inc */
Laurent Vivier05f086f2007-09-24 11:10:55 +02001140 emulate_1op("inc", c->dst, ctxt->eflags);
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001141 break;
1142 case 1: /* dec */
Laurent Vivier05f086f2007-09-24 11:10:55 +02001143 emulate_1op("dec", c->dst, ctxt->eflags);
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001144 break;
1145 case 4: /* jmp abs */
Avi Kivityfd607542008-01-18 13:12:26 +02001146 c->eip = c->src.val;
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001147 break;
1148 case 6: /* push */
Avi Kivityfd607542008-01-18 13:12:26 +02001149 emulate_push(ctxt);
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001150 break;
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001151 }
1152 return 0;
1153}
1154
1155static inline int emulate_grp9(struct x86_emulate_ctxt *ctxt,
1156 struct x86_emulate_ops *ops,
Sheng Yange8d8d7f2007-11-16 16:29:15 +08001157 unsigned long memop)
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001158{
1159 struct decode_cache *c = &ctxt->decode;
1160 u64 old, new;
1161 int rc;
1162
Sheng Yange8d8d7f2007-11-16 16:29:15 +08001163 rc = ops->read_emulated(memop, &old, 8, ctxt->vcpu);
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001164 if (rc != 0)
1165 return rc;
1166
1167 if (((u32) (old >> 0) != (u32) c->regs[VCPU_REGS_RAX]) ||
1168 ((u32) (old >> 32) != (u32) c->regs[VCPU_REGS_RDX])) {
1169
1170 c->regs[VCPU_REGS_RAX] = (u32) (old >> 0);
1171 c->regs[VCPU_REGS_RDX] = (u32) (old >> 32);
Laurent Vivier05f086f2007-09-24 11:10:55 +02001172 ctxt->eflags &= ~EFLG_ZF;
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001173
1174 } else {
1175 new = ((u64)c->regs[VCPU_REGS_RCX] << 32) |
1176 (u32) c->regs[VCPU_REGS_RBX];
1177
Sheng Yange8d8d7f2007-11-16 16:29:15 +08001178 rc = ops->cmpxchg_emulated(memop, &old, &new, 8, ctxt->vcpu);
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001179 if (rc != 0)
1180 return rc;
Laurent Vivier05f086f2007-09-24 11:10:55 +02001181 ctxt->eflags |= EFLG_ZF;
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001182 }
1183 return 0;
1184}
1185
1186static inline int writeback(struct x86_emulate_ctxt *ctxt,
1187 struct x86_emulate_ops *ops)
1188{
1189 int rc;
1190 struct decode_cache *c = &ctxt->decode;
1191
1192 switch (c->dst.type) {
1193 case OP_REG:
1194 /* The 4-byte case *is* correct:
1195 * in 64-bit mode we zero-extend.
1196 */
1197 switch (c->dst.bytes) {
1198 case 1:
1199 *(u8 *)c->dst.ptr = (u8)c->dst.val;
1200 break;
1201 case 2:
1202 *(u16 *)c->dst.ptr = (u16)c->dst.val;
1203 break;
1204 case 4:
1205 *c->dst.ptr = (u32)c->dst.val;
1206 break; /* 64b: zero-ext */
1207 case 8:
1208 *c->dst.ptr = c->dst.val;
1209 break;
1210 }
1211 break;
1212 case OP_MEM:
1213 if (c->lock_prefix)
1214 rc = ops->cmpxchg_emulated(
1215 (unsigned long)c->dst.ptr,
1216 &c->dst.orig_val,
1217 &c->dst.val,
1218 c->dst.bytes,
1219 ctxt->vcpu);
1220 else
1221 rc = ops->write_emulated(
1222 (unsigned long)c->dst.ptr,
1223 &c->dst.val,
1224 c->dst.bytes,
1225 ctxt->vcpu);
1226 if (rc != 0)
1227 return rc;
Laurent Viviera01af5e2007-09-24 11:10:56 +02001228 break;
1229 case OP_NONE:
1230 /* no writeback */
1231 break;
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001232 default:
1233 break;
1234 }
1235 return 0;
1236}
1237
Laurent Vivier8b4caf62007-09-18 11:27:19 +02001238int
Laurent Vivier1be3aa42007-09-18 11:27:27 +02001239x86_emulate_insn(struct x86_emulate_ctxt *ctxt, struct x86_emulate_ops *ops)
Laurent Vivier8b4caf62007-09-18 11:27:19 +02001240{
Sheng Yange8d8d7f2007-11-16 16:29:15 +08001241 unsigned long memop = 0;
Laurent Vivier8b4caf62007-09-18 11:27:19 +02001242 u64 msr_data;
Laurent Vivier34273182007-09-18 11:27:37 +02001243 unsigned long saved_eip = 0;
Laurent Vivier8b4caf62007-09-18 11:27:19 +02001244 struct decode_cache *c = &ctxt->decode;
Laurent Vivier1be3aa42007-09-18 11:27:27 +02001245 int rc = 0;
Laurent Vivier8b4caf62007-09-18 11:27:19 +02001246
Laurent Vivier34273182007-09-18 11:27:37 +02001247 /* Shadow copy of register state. Committed on successful emulation.
1248 * NOTE: we can copy them from vcpu as x86_decode_insn() doesn't
1249 * modify them.
1250 */
1251
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001252 memcpy(c->regs, ctxt->vcpu->arch.regs, sizeof c->regs);
Laurent Vivier34273182007-09-18 11:27:37 +02001253 saved_eip = c->eip;
1254
Avi Kivityc7e75a32007-10-28 16:34:25 +02001255 if (((c->d & ModRM) && (c->modrm_mod != 3)) || (c->d & MemAbs))
Sheng Yange8d8d7f2007-11-16 16:29:15 +08001256 memop = c->modrm_ea;
Laurent Vivier8b4caf62007-09-18 11:27:19 +02001257
Avi Kivityb9fa9d62007-11-27 19:05:37 +02001258 if (c->rep_prefix && (c->d & String)) {
1259 /* All REP prefixes have the same first termination condition */
1260 if (c->regs[VCPU_REGS_RCX] == 0) {
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001261 ctxt->vcpu->arch.rip = c->eip;
Avi Kivityb9fa9d62007-11-27 19:05:37 +02001262 goto done;
1263 }
1264 /* The second termination condition only applies for REPE
1265 * and REPNE. Test if the repeat string operation prefix is
1266 * REPE/REPZ or REPNE/REPNZ and if it's the case it tests the
1267 * corresponding termination condition according to:
1268 * - if REPE/REPZ and ZF = 0 then done
1269 * - if REPNE/REPNZ and ZF = 1 then done
1270 */
1271 if ((c->b == 0xa6) || (c->b == 0xa7) ||
1272 (c->b == 0xae) || (c->b == 0xaf)) {
1273 if ((c->rep_prefix == REPE_PREFIX) &&
1274 ((ctxt->eflags & EFLG_ZF) == 0)) {
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001275 ctxt->vcpu->arch.rip = c->eip;
Avi Kivityb9fa9d62007-11-27 19:05:37 +02001276 goto done;
1277 }
1278 if ((c->rep_prefix == REPNE_PREFIX) &&
1279 ((ctxt->eflags & EFLG_ZF) == EFLG_ZF)) {
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001280 ctxt->vcpu->arch.rip = c->eip;
Avi Kivityb9fa9d62007-11-27 19:05:37 +02001281 goto done;
1282 }
1283 }
1284 c->regs[VCPU_REGS_RCX]--;
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001285 c->eip = ctxt->vcpu->arch.rip;
Avi Kivityb9fa9d62007-11-27 19:05:37 +02001286 }
1287
Laurent Vivier8b4caf62007-09-18 11:27:19 +02001288 if (c->src.type == OP_MEM) {
Sheng Yange8d8d7f2007-11-16 16:29:15 +08001289 c->src.ptr = (unsigned long *)memop;
Laurent Vivier8b4caf62007-09-18 11:27:19 +02001290 c->src.val = 0;
Mike Dayd77c26f2007-10-08 09:02:08 -04001291 rc = ops->read_emulated((unsigned long)c->src.ptr,
1292 &c->src.val,
1293 c->src.bytes,
1294 ctxt->vcpu);
1295 if (rc != 0)
Laurent Vivier8b4caf62007-09-18 11:27:19 +02001296 goto done;
1297 c->src.orig_val = c->src.val;
1298 }
1299
1300 if ((c->d & DstMask) == ImplicitOps)
1301 goto special_insn;
1302
1303
1304 if (c->dst.type == OP_MEM) {
Sheng Yange8d8d7f2007-11-16 16:29:15 +08001305 c->dst.ptr = (unsigned long *)memop;
Laurent Vivier8b4caf62007-09-18 11:27:19 +02001306 c->dst.bytes = (c->d & ByteOp) ? 1 : c->op_bytes;
1307 c->dst.val = 0;
Laurent Viviere4e03de2007-09-18 11:52:50 +02001308 if (c->d & BitOp) {
1309 unsigned long mask = ~(c->dst.bytes * 8 - 1);
Avi Kivitydf513e22007-03-28 20:04:16 +02001310
Laurent Viviere4e03de2007-09-18 11:52:50 +02001311 c->dst.ptr = (void *)c->dst.ptr +
1312 (c->src.val & mask) / 8;
Avi Kivity038e51d2007-01-22 20:40:40 -08001313 }
Laurent Viviere4e03de2007-09-18 11:52:50 +02001314 if (!(c->d & Mov) &&
1315 /* optimisation - avoid slow emulated read */
1316 ((rc = ops->read_emulated((unsigned long)c->dst.ptr,
1317 &c->dst.val,
1318 c->dst.bytes, ctxt->vcpu)) != 0))
Avi Kivity038e51d2007-01-22 20:40:40 -08001319 goto done;
Avi Kivity038e51d2007-01-22 20:40:40 -08001320 }
Laurent Viviere4e03de2007-09-18 11:52:50 +02001321 c->dst.orig_val = c->dst.val;
Avi Kivity038e51d2007-01-22 20:40:40 -08001322
Avi Kivity018a98d2007-11-27 19:30:56 +02001323special_insn:
1324
Laurent Viviere4e03de2007-09-18 11:52:50 +02001325 if (c->twobyte)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001326 goto twobyte_insn;
1327
Laurent Viviere4e03de2007-09-18 11:52:50 +02001328 switch (c->b) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001329 case 0x00 ... 0x05:
1330 add: /* add */
Laurent Vivier05f086f2007-09-24 11:10:55 +02001331 emulate_2op_SrcV("add", c->src, c->dst, ctxt->eflags);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001332 break;
1333 case 0x08 ... 0x0d:
1334 or: /* or */
Laurent Vivier05f086f2007-09-24 11:10:55 +02001335 emulate_2op_SrcV("or", c->src, c->dst, ctxt->eflags);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001336 break;
1337 case 0x10 ... 0x15:
1338 adc: /* adc */
Laurent Vivier05f086f2007-09-24 11:10:55 +02001339 emulate_2op_SrcV("adc", c->src, c->dst, ctxt->eflags);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001340 break;
1341 case 0x18 ... 0x1d:
1342 sbb: /* sbb */
Laurent Vivier05f086f2007-09-24 11:10:55 +02001343 emulate_2op_SrcV("sbb", c->src, c->dst, ctxt->eflags);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001344 break;
Nitin A Kamble19eb9382007-08-17 15:17:41 +03001345 case 0x20 ... 0x23:
Avi Kivity6aa8b732006-12-10 02:21:36 -08001346 and: /* and */
Laurent Vivier05f086f2007-09-24 11:10:55 +02001347 emulate_2op_SrcV("and", c->src, c->dst, ctxt->eflags);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001348 break;
Nitin A Kamble19eb9382007-08-17 15:17:41 +03001349 case 0x24: /* and al imm8 */
Laurent Viviere4e03de2007-09-18 11:52:50 +02001350 c->dst.type = OP_REG;
1351 c->dst.ptr = &c->regs[VCPU_REGS_RAX];
1352 c->dst.val = *(u8 *)c->dst.ptr;
1353 c->dst.bytes = 1;
1354 c->dst.orig_val = c->dst.val;
Nitin A Kamble19eb9382007-08-17 15:17:41 +03001355 goto and;
1356 case 0x25: /* and ax imm16, or eax imm32 */
Laurent Viviere4e03de2007-09-18 11:52:50 +02001357 c->dst.type = OP_REG;
1358 c->dst.bytes = c->op_bytes;
1359 c->dst.ptr = &c->regs[VCPU_REGS_RAX];
1360 if (c->op_bytes == 2)
1361 c->dst.val = *(u16 *)c->dst.ptr;
Nitin A Kamble19eb9382007-08-17 15:17:41 +03001362 else
Laurent Viviere4e03de2007-09-18 11:52:50 +02001363 c->dst.val = *(u32 *)c->dst.ptr;
1364 c->dst.orig_val = c->dst.val;
Nitin A Kamble19eb9382007-08-17 15:17:41 +03001365 goto and;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001366 case 0x28 ... 0x2d:
1367 sub: /* sub */
Laurent Vivier05f086f2007-09-24 11:10:55 +02001368 emulate_2op_SrcV("sub", c->src, c->dst, ctxt->eflags);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001369 break;
1370 case 0x30 ... 0x35:
1371 xor: /* xor */
Laurent Vivier05f086f2007-09-24 11:10:55 +02001372 emulate_2op_SrcV("xor", c->src, c->dst, ctxt->eflags);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001373 break;
1374 case 0x38 ... 0x3d:
1375 cmp: /* cmp */
Laurent Vivier05f086f2007-09-24 11:10:55 +02001376 emulate_2op_SrcV("cmp", c->src, c->dst, ctxt->eflags);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001377 break;
Avi Kivity33615aa2007-10-31 11:15:56 +02001378 case 0x40 ... 0x47: /* inc r16/r32 */
1379 emulate_1op("inc", c->dst, ctxt->eflags);
1380 break;
1381 case 0x48 ... 0x4f: /* dec r16/r32 */
1382 emulate_1op("dec", c->dst, ctxt->eflags);
1383 break;
1384 case 0x50 ... 0x57: /* push reg */
1385 c->dst.type = OP_MEM;
1386 c->dst.bytes = c->op_bytes;
1387 c->dst.val = c->src.val;
Harvey Harrison7a9572752008-02-19 07:40:41 -08001388 register_address_increment(c, &c->regs[VCPU_REGS_RSP],
Avi Kivity33615aa2007-10-31 11:15:56 +02001389 -c->op_bytes);
1390 c->dst.ptr = (void *) register_address(
Harvey Harrisone4706772008-02-19 07:40:38 -08001391 c, ctxt->ss_base, c->regs[VCPU_REGS_RSP]);
Avi Kivity33615aa2007-10-31 11:15:56 +02001392 break;
1393 case 0x58 ... 0x5f: /* pop reg */
1394 pop_instruction:
Harvey Harrisone4706772008-02-19 07:40:38 -08001395 if ((rc = ops->read_std(register_address(c, ctxt->ss_base,
Avi Kivity33615aa2007-10-31 11:15:56 +02001396 c->regs[VCPU_REGS_RSP]), c->dst.ptr,
1397 c->op_bytes, ctxt->vcpu)) != 0)
1398 goto done;
1399
Harvey Harrison7a9572752008-02-19 07:40:41 -08001400 register_address_increment(c, &c->regs[VCPU_REGS_RSP],
Avi Kivity33615aa2007-10-31 11:15:56 +02001401 c->op_bytes);
1402 c->dst.type = OP_NONE; /* Disable writeback. */
1403 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001404 case 0x63: /* movsxd */
Laurent Vivier8b4caf62007-09-18 11:27:19 +02001405 if (ctxt->mode != X86EMUL_MODE_PROT64)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001406 goto cannot_emulate;
Laurent Viviere4e03de2007-09-18 11:52:50 +02001407 c->dst.val = (s32) c->src.val;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001408 break;
Avi Kivity91ed7a02008-05-29 14:38:38 +03001409 case 0x68: /* push imm */
Avi Kivity018a98d2007-11-27 19:30:56 +02001410 case 0x6a: /* push imm8 */
Avi Kivity018a98d2007-11-27 19:30:56 +02001411 emulate_push(ctxt);
1412 break;
1413 case 0x6c: /* insb */
1414 case 0x6d: /* insw/insd */
1415 if (kvm_emulate_pio_string(ctxt->vcpu, NULL,
1416 1,
1417 (c->d & ByteOp) ? 1 : c->op_bytes,
1418 c->rep_prefix ?
Harvey Harrisone4706772008-02-19 07:40:38 -08001419 address_mask(c, c->regs[VCPU_REGS_RCX]) : 1,
Avi Kivity018a98d2007-11-27 19:30:56 +02001420 (ctxt->eflags & EFLG_DF),
Harvey Harrisone4706772008-02-19 07:40:38 -08001421 register_address(c, ctxt->es_base,
Avi Kivity018a98d2007-11-27 19:30:56 +02001422 c->regs[VCPU_REGS_RDI]),
1423 c->rep_prefix,
1424 c->regs[VCPU_REGS_RDX]) == 0) {
1425 c->eip = saved_eip;
1426 return -1;
1427 }
1428 return 0;
1429 case 0x6e: /* outsb */
1430 case 0x6f: /* outsw/outsd */
1431 if (kvm_emulate_pio_string(ctxt->vcpu, NULL,
1432 0,
1433 (c->d & ByteOp) ? 1 : c->op_bytes,
1434 c->rep_prefix ?
Harvey Harrisone4706772008-02-19 07:40:38 -08001435 address_mask(c, c->regs[VCPU_REGS_RCX]) : 1,
Avi Kivity018a98d2007-11-27 19:30:56 +02001436 (ctxt->eflags & EFLG_DF),
Harvey Harrisone4706772008-02-19 07:40:38 -08001437 register_address(c, c->override_base ?
Avi Kivity018a98d2007-11-27 19:30:56 +02001438 *c->override_base :
1439 ctxt->ds_base,
1440 c->regs[VCPU_REGS_RSI]),
1441 c->rep_prefix,
1442 c->regs[VCPU_REGS_RDX]) == 0) {
1443 c->eip = saved_eip;
1444 return -1;
1445 }
1446 return 0;
1447 case 0x70 ... 0x7f: /* jcc (short) */ {
1448 int rel = insn_fetch(s8, 1, c->eip);
1449
1450 if (test_cc(c->b, ctxt->eflags))
Harvey Harrison7a9572752008-02-19 07:40:41 -08001451 jmp_rel(c, rel);
Avi Kivity018a98d2007-11-27 19:30:56 +02001452 break;
1453 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001454 case 0x80 ... 0x83: /* Grp1 */
Laurent Viviere4e03de2007-09-18 11:52:50 +02001455 switch (c->modrm_reg) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001456 case 0:
1457 goto add;
1458 case 1:
1459 goto or;
1460 case 2:
1461 goto adc;
1462 case 3:
1463 goto sbb;
1464 case 4:
1465 goto and;
1466 case 5:
1467 goto sub;
1468 case 6:
1469 goto xor;
1470 case 7:
1471 goto cmp;
1472 }
1473 break;
1474 case 0x84 ... 0x85:
Laurent Vivier05f086f2007-09-24 11:10:55 +02001475 emulate_2op_SrcV("test", c->src, c->dst, ctxt->eflags);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001476 break;
1477 case 0x86 ... 0x87: /* xchg */
Mohammed Gamalb13354f2008-06-15 19:37:38 +03001478 xchg:
Avi Kivity6aa8b732006-12-10 02:21:36 -08001479 /* Write back the register source. */
Laurent Viviere4e03de2007-09-18 11:52:50 +02001480 switch (c->dst.bytes) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001481 case 1:
Laurent Viviere4e03de2007-09-18 11:52:50 +02001482 *(u8 *) c->src.ptr = (u8) c->dst.val;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001483 break;
1484 case 2:
Laurent Viviere4e03de2007-09-18 11:52:50 +02001485 *(u16 *) c->src.ptr = (u16) c->dst.val;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001486 break;
1487 case 4:
Laurent Viviere4e03de2007-09-18 11:52:50 +02001488 *c->src.ptr = (u32) c->dst.val;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001489 break; /* 64b reg: zero-extend */
1490 case 8:
Laurent Viviere4e03de2007-09-18 11:52:50 +02001491 *c->src.ptr = c->dst.val;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001492 break;
1493 }
1494 /*
1495 * Write back the memory destination with implicit LOCK
1496 * prefix.
1497 */
Laurent Viviere4e03de2007-09-18 11:52:50 +02001498 c->dst.val = c->src.val;
1499 c->lock_prefix = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001500 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001501 case 0x88 ... 0x8b: /* mov */
Nitin A Kamble7de75242007-09-15 10:13:07 +03001502 goto mov;
Guillaume Thouvenin38d5bc62008-05-27 15:13:28 +02001503 case 0x8c: { /* mov r/m, sreg */
1504 struct kvm_segment segreg;
1505
1506 if (c->modrm_reg <= 5)
1507 kvm_get_segment(ctxt->vcpu, &segreg, c->modrm_reg);
1508 else {
1509 printk(KERN_INFO "0x8c: Invalid segreg in modrm byte 0x%02x\n",
1510 c->modrm);
1511 goto cannot_emulate;
1512 }
1513 c->dst.val = segreg.selector;
1514 break;
1515 }
Nitin A Kamble7e0b54b2007-09-15 10:35:36 +03001516 case 0x8d: /* lea r16/r32, m */
Avi Kivityf9b7aab2008-04-14 23:46:37 +03001517 c->dst.val = c->modrm_ea;
Nitin A Kamble7e0b54b2007-09-15 10:35:36 +03001518 break;
Guillaume Thouvenin42571982008-05-27 14:49:15 +02001519 case 0x8e: { /* mov seg, r/m16 */
1520 uint16_t sel;
1521 int type_bits;
1522 int err;
1523
1524 sel = c->src.val;
1525 if (c->modrm_reg <= 5) {
1526 type_bits = (c->modrm_reg == 1) ? 9 : 1;
1527 err = kvm_load_segment_descriptor(ctxt->vcpu, sel,
1528 type_bits, c->modrm_reg);
1529 } else {
1530 printk(KERN_INFO "Invalid segreg in modrm byte 0x%02x\n",
1531 c->modrm);
1532 goto cannot_emulate;
1533 }
1534
1535 if (err < 0)
1536 goto cannot_emulate;
1537
1538 c->dst.type = OP_NONE; /* Disable writeback. */
1539 break;
1540 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001541 case 0x8f: /* pop (sole member of Grp1a) */
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001542 rc = emulate_grp1a(ctxt, ops);
1543 if (rc != 0)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001544 goto done;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001545 break;
Mohammed Gamalb13354f2008-06-15 19:37:38 +03001546 case 0x90: /* nop / xchg r8,rax */
1547 if (!(c->rex_prefix & 1)) { /* nop */
1548 c->dst.type = OP_NONE;
1549 break;
1550 }
1551 case 0x91 ... 0x97: /* xchg reg,rax */
1552 c->src.type = c->dst.type = OP_REG;
1553 c->src.bytes = c->dst.bytes = c->op_bytes;
1554 c->src.ptr = (unsigned long *) &c->regs[VCPU_REGS_RAX];
1555 c->src.val = *(c->src.ptr);
1556 goto xchg;
Nitin A Kamblefd2a7602007-08-28 18:22:47 -07001557 case 0x9c: /* pushf */
Laurent Vivier05f086f2007-09-24 11:10:55 +02001558 c->src.val = (unsigned long) ctxt->eflags;
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001559 emulate_push(ctxt);
1560 break;
Nitin A Kamble535eabc2007-09-15 10:45:05 +03001561 case 0x9d: /* popf */
Laurent Vivier05f086f2007-09-24 11:10:55 +02001562 c->dst.ptr = (unsigned long *) &ctxt->eflags;
Nitin A Kamble535eabc2007-09-15 10:45:05 +03001563 goto pop_instruction;
Avi Kivity018a98d2007-11-27 19:30:56 +02001564 case 0xa0 ... 0xa1: /* mov */
1565 c->dst.ptr = (unsigned long *)&c->regs[VCPU_REGS_RAX];
1566 c->dst.val = c->src.val;
1567 break;
1568 case 0xa2 ... 0xa3: /* mov */
1569 c->dst.val = (unsigned long)c->regs[VCPU_REGS_RAX];
1570 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001571 case 0xa4 ... 0xa5: /* movs */
Laurent Viviere4e03de2007-09-18 11:52:50 +02001572 c->dst.type = OP_MEM;
1573 c->dst.bytes = (c->d & ByteOp) ? 1 : c->op_bytes;
Harvey Harrisone4706772008-02-19 07:40:38 -08001574 c->dst.ptr = (unsigned long *)register_address(c,
Laurent Viviere4e03de2007-09-18 11:52:50 +02001575 ctxt->es_base,
1576 c->regs[VCPU_REGS_RDI]);
Harvey Harrisone4706772008-02-19 07:40:38 -08001577 if ((rc = ops->read_emulated(register_address(c,
Laurent Viviere4e03de2007-09-18 11:52:50 +02001578 c->override_base ? *c->override_base :
1579 ctxt->ds_base,
1580 c->regs[VCPU_REGS_RSI]),
1581 &c->dst.val,
1582 c->dst.bytes, ctxt->vcpu)) != 0)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001583 goto done;
Harvey Harrison7a9572752008-02-19 07:40:41 -08001584 register_address_increment(c, &c->regs[VCPU_REGS_RSI],
Laurent Vivier05f086f2007-09-24 11:10:55 +02001585 (ctxt->eflags & EFLG_DF) ? -c->dst.bytes
Laurent Viviere4e03de2007-09-18 11:52:50 +02001586 : c->dst.bytes);
Harvey Harrison7a9572752008-02-19 07:40:41 -08001587 register_address_increment(c, &c->regs[VCPU_REGS_RDI],
Laurent Vivier05f086f2007-09-24 11:10:55 +02001588 (ctxt->eflags & EFLG_DF) ? -c->dst.bytes
Laurent Viviere4e03de2007-09-18 11:52:50 +02001589 : c->dst.bytes);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001590 break;
1591 case 0xa6 ... 0xa7: /* cmps */
Guillaume Thouvenind7e51172007-11-26 13:49:09 +01001592 c->src.type = OP_NONE; /* Disable writeback. */
1593 c->src.bytes = (c->d & ByteOp) ? 1 : c->op_bytes;
Harvey Harrisone4706772008-02-19 07:40:38 -08001594 c->src.ptr = (unsigned long *)register_address(c,
Guillaume Thouvenind7e51172007-11-26 13:49:09 +01001595 c->override_base ? *c->override_base :
1596 ctxt->ds_base,
1597 c->regs[VCPU_REGS_RSI]);
1598 if ((rc = ops->read_emulated((unsigned long)c->src.ptr,
1599 &c->src.val,
1600 c->src.bytes,
1601 ctxt->vcpu)) != 0)
1602 goto done;
1603
1604 c->dst.type = OP_NONE; /* Disable writeback. */
1605 c->dst.bytes = (c->d & ByteOp) ? 1 : c->op_bytes;
Harvey Harrisone4706772008-02-19 07:40:38 -08001606 c->dst.ptr = (unsigned long *)register_address(c,
Guillaume Thouvenind7e51172007-11-26 13:49:09 +01001607 ctxt->es_base,
1608 c->regs[VCPU_REGS_RDI]);
1609 if ((rc = ops->read_emulated((unsigned long)c->dst.ptr,
1610 &c->dst.val,
1611 c->dst.bytes,
1612 ctxt->vcpu)) != 0)
1613 goto done;
1614
1615 DPRINTF("cmps: mem1=0x%p mem2=0x%p\n", c->src.ptr, c->dst.ptr);
1616
1617 emulate_2op_SrcV("cmp", c->src, c->dst, ctxt->eflags);
1618
Harvey Harrison7a9572752008-02-19 07:40:41 -08001619 register_address_increment(c, &c->regs[VCPU_REGS_RSI],
Guillaume Thouvenind7e51172007-11-26 13:49:09 +01001620 (ctxt->eflags & EFLG_DF) ? -c->src.bytes
1621 : c->src.bytes);
Harvey Harrison7a9572752008-02-19 07:40:41 -08001622 register_address_increment(c, &c->regs[VCPU_REGS_RDI],
Guillaume Thouvenind7e51172007-11-26 13:49:09 +01001623 (ctxt->eflags & EFLG_DF) ? -c->dst.bytes
1624 : c->dst.bytes);
1625
1626 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001627 case 0xaa ... 0xab: /* stos */
Laurent Viviere4e03de2007-09-18 11:52:50 +02001628 c->dst.type = OP_MEM;
1629 c->dst.bytes = (c->d & ByteOp) ? 1 : c->op_bytes;
Harvey Harrisone4706772008-02-19 07:40:38 -08001630 c->dst.ptr = (unsigned long *)register_address(c,
Sheng Yanga7e6c882007-11-15 14:52:28 +08001631 ctxt->es_base,
1632 c->regs[VCPU_REGS_RDI]);
Laurent Viviere4e03de2007-09-18 11:52:50 +02001633 c->dst.val = c->regs[VCPU_REGS_RAX];
Harvey Harrison7a9572752008-02-19 07:40:41 -08001634 register_address_increment(c, &c->regs[VCPU_REGS_RDI],
Laurent Vivier05f086f2007-09-24 11:10:55 +02001635 (ctxt->eflags & EFLG_DF) ? -c->dst.bytes
Laurent Viviere4e03de2007-09-18 11:52:50 +02001636 : c->dst.bytes);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001637 break;
1638 case 0xac ... 0xad: /* lods */
Laurent Viviere4e03de2007-09-18 11:52:50 +02001639 c->dst.type = OP_REG;
1640 c->dst.bytes = (c->d & ByteOp) ? 1 : c->op_bytes;
1641 c->dst.ptr = (unsigned long *)&c->regs[VCPU_REGS_RAX];
Harvey Harrisone4706772008-02-19 07:40:38 -08001642 if ((rc = ops->read_emulated(register_address(c,
Sheng Yanga7e6c882007-11-15 14:52:28 +08001643 c->override_base ? *c->override_base :
1644 ctxt->ds_base,
1645 c->regs[VCPU_REGS_RSI]),
1646 &c->dst.val,
1647 c->dst.bytes,
1648 ctxt->vcpu)) != 0)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001649 goto done;
Harvey Harrison7a9572752008-02-19 07:40:41 -08001650 register_address_increment(c, &c->regs[VCPU_REGS_RSI],
Laurent Vivier05f086f2007-09-24 11:10:55 +02001651 (ctxt->eflags & EFLG_DF) ? -c->dst.bytes
Laurent Viviere4e03de2007-09-18 11:52:50 +02001652 : c->dst.bytes);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001653 break;
1654 case 0xae ... 0xaf: /* scas */
1655 DPRINTF("Urk! I don't handle SCAS.\n");
1656 goto cannot_emulate;
Guillaume Thouvenin615ac122008-05-27 10:19:16 +02001657 case 0xb8: /* mov r, imm */
1658 goto mov;
Avi Kivity018a98d2007-11-27 19:30:56 +02001659 case 0xc0 ... 0xc1:
1660 emulate_grp2(ctxt);
1661 break;
Avi Kivity111de5d2007-11-27 19:14:21 +02001662 case 0xc3: /* ret */
1663 c->dst.ptr = &c->eip;
1664 goto pop_instruction;
Avi Kivity018a98d2007-11-27 19:30:56 +02001665 case 0xc6 ... 0xc7: /* mov (sole member of Grp11) */
1666 mov:
1667 c->dst.val = c->src.val;
1668 break;
1669 case 0xd0 ... 0xd1: /* Grp2 */
1670 c->src.val = 1;
1671 emulate_grp2(ctxt);
1672 break;
1673 case 0xd2 ... 0xd3: /* Grp2 */
1674 c->src.val = c->regs[VCPU_REGS_RCX];
1675 emulate_grp2(ctxt);
1676 break;
Nitin A Kamble1a52e052007-09-18 16:34:25 -07001677 case 0xe8: /* call (near) */ {
1678 long int rel;
Laurent Viviere4e03de2007-09-18 11:52:50 +02001679 switch (c->op_bytes) {
Nitin A Kamble1a52e052007-09-18 16:34:25 -07001680 case 2:
Laurent Viviere4e03de2007-09-18 11:52:50 +02001681 rel = insn_fetch(s16, 2, c->eip);
Nitin A Kamble1a52e052007-09-18 16:34:25 -07001682 break;
1683 case 4:
Laurent Viviere4e03de2007-09-18 11:52:50 +02001684 rel = insn_fetch(s32, 4, c->eip);
Nitin A Kamble1a52e052007-09-18 16:34:25 -07001685 break;
Nitin A Kamble1a52e052007-09-18 16:34:25 -07001686 default:
1687 DPRINTF("Call: Invalid op_bytes\n");
1688 goto cannot_emulate;
1689 }
Laurent Viviere4e03de2007-09-18 11:52:50 +02001690 c->src.val = (unsigned long) c->eip;
Harvey Harrison7a9572752008-02-19 07:40:41 -08001691 jmp_rel(c, rel);
Laurent Viviere4e03de2007-09-18 11:52:50 +02001692 c->op_bytes = c->ad_bytes;
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001693 emulate_push(ctxt);
1694 break;
Nitin A Kamble1a52e052007-09-18 16:34:25 -07001695 }
1696 case 0xe9: /* jmp rel */
Guillaume Thouvenin954cd362008-05-27 10:19:08 +02001697 goto jmp;
1698 case 0xea: /* jmp far */ {
1699 uint32_t eip;
1700 uint16_t sel;
1701
1702 switch (c->op_bytes) {
1703 case 2:
1704 eip = insn_fetch(u16, 2, c->eip);
1705 break;
1706 case 4:
1707 eip = insn_fetch(u32, 4, c->eip);
1708 break;
1709 default:
1710 DPRINTF("jmp far: Invalid op_bytes\n");
1711 goto cannot_emulate;
1712 }
1713 sel = insn_fetch(u16, 2, c->eip);
1714 if (kvm_load_segment_descriptor(ctxt->vcpu, sel, 9, VCPU_SREG_CS) < 0) {
1715 DPRINTF("jmp far: Failed to load CS descriptor\n");
1716 goto cannot_emulate;
1717 }
1718
1719 c->eip = eip;
1720 break;
1721 }
1722 case 0xeb:
1723 jmp: /* jmp rel short */
Harvey Harrison7a9572752008-02-19 07:40:41 -08001724 jmp_rel(c, c->src.val);
Laurent Viviera01af5e2007-09-24 11:10:56 +02001725 c->dst.type = OP_NONE; /* Disable writeback. */
Nitin A Kamble1a52e052007-09-18 16:34:25 -07001726 break;
Avi Kivity111de5d2007-11-27 19:14:21 +02001727 case 0xf4: /* hlt */
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001728 ctxt->vcpu->arch.halt_request = 1;
Avi Kivity111de5d2007-11-27 19:14:21 +02001729 goto done;
1730 case 0xf5: /* cmc */
1731 /* complement carry flag from eflags reg */
1732 ctxt->eflags ^= EFLG_CF;
1733 c->dst.type = OP_NONE; /* Disable writeback. */
1734 break;
Avi Kivity018a98d2007-11-27 19:30:56 +02001735 case 0xf6 ... 0xf7: /* Grp3 */
1736 rc = emulate_grp3(ctxt, ops);
1737 if (rc != 0)
1738 goto done;
1739 break;
Avi Kivity111de5d2007-11-27 19:14:21 +02001740 case 0xf8: /* clc */
1741 ctxt->eflags &= ~EFLG_CF;
1742 c->dst.type = OP_NONE; /* Disable writeback. */
1743 break;
1744 case 0xfa: /* cli */
1745 ctxt->eflags &= ~X86_EFLAGS_IF;
1746 c->dst.type = OP_NONE; /* Disable writeback. */
1747 break;
1748 case 0xfb: /* sti */
1749 ctxt->eflags |= X86_EFLAGS_IF;
1750 c->dst.type = OP_NONE; /* Disable writeback. */
1751 break;
Avi Kivity018a98d2007-11-27 19:30:56 +02001752 case 0xfe ... 0xff: /* Grp4/Grp5 */
1753 rc = emulate_grp45(ctxt, ops);
1754 if (rc != 0)
1755 goto done;
1756 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001757 }
Avi Kivity018a98d2007-11-27 19:30:56 +02001758
1759writeback:
1760 rc = writeback(ctxt, ops);
1761 if (rc != 0)
1762 goto done;
1763
1764 /* Commit shadow register state. */
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001765 memcpy(ctxt->vcpu->arch.regs, c->regs, sizeof c->regs);
1766 ctxt->vcpu->arch.rip = c->eip;
Avi Kivity018a98d2007-11-27 19:30:56 +02001767
1768done:
1769 if (rc == X86EMUL_UNHANDLEABLE) {
1770 c->eip = saved_eip;
1771 return -1;
1772 }
1773 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001774
1775twobyte_insn:
Laurent Viviere4e03de2007-09-18 11:52:50 +02001776 switch (c->b) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001777 case 0x01: /* lgdt, lidt, lmsw */
Laurent Viviere4e03de2007-09-18 11:52:50 +02001778 switch (c->modrm_reg) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001779 u16 size;
1780 unsigned long address;
1781
Anthony Liguoriaca7f962007-09-17 14:57:49 -05001782 case 0: /* vmcall */
Laurent Viviere4e03de2007-09-18 11:52:50 +02001783 if (c->modrm_mod != 3 || c->modrm_rm != 1)
Anthony Liguoriaca7f962007-09-17 14:57:49 -05001784 goto cannot_emulate;
1785
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05001786 rc = kvm_fix_hypercall(ctxt->vcpu);
1787 if (rc)
1788 goto done;
1789
Avi Kivity33e38852008-05-21 15:34:25 +03001790 /* Let the processor re-execute the fixed hypercall */
1791 c->eip = ctxt->vcpu->arch.rip;
Avi Kivity16286d02008-04-14 14:40:50 +03001792 /* Disable writeback. */
1793 c->dst.type = OP_NONE;
Anthony Liguoriaca7f962007-09-17 14:57:49 -05001794 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001795 case 2: /* lgdt */
Laurent Viviere4e03de2007-09-18 11:52:50 +02001796 rc = read_descriptor(ctxt, ops, c->src.ptr,
1797 &size, &address, c->op_bytes);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001798 if (rc)
1799 goto done;
1800 realmode_lgdt(ctxt->vcpu, size, address);
Avi Kivity16286d02008-04-14 14:40:50 +03001801 /* Disable writeback. */
1802 c->dst.type = OP_NONE;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001803 break;
Anthony Liguoriaca7f962007-09-17 14:57:49 -05001804 case 3: /* lidt/vmmcall */
Laurent Viviere4e03de2007-09-18 11:52:50 +02001805 if (c->modrm_mod == 3 && c->modrm_rm == 1) {
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05001806 rc = kvm_fix_hypercall(ctxt->vcpu);
1807 if (rc)
1808 goto done;
1809 kvm_emulate_hypercall(ctxt->vcpu);
Anthony Liguoriaca7f962007-09-17 14:57:49 -05001810 } else {
Laurent Viviere4e03de2007-09-18 11:52:50 +02001811 rc = read_descriptor(ctxt, ops, c->src.ptr,
Anthony Liguoriaca7f962007-09-17 14:57:49 -05001812 &size, &address,
Laurent Viviere4e03de2007-09-18 11:52:50 +02001813 c->op_bytes);
Anthony Liguoriaca7f962007-09-17 14:57:49 -05001814 if (rc)
1815 goto done;
1816 realmode_lidt(ctxt->vcpu, size, address);
1817 }
Avi Kivity16286d02008-04-14 14:40:50 +03001818 /* Disable writeback. */
1819 c->dst.type = OP_NONE;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001820 break;
1821 case 4: /* smsw */
Avi Kivity16286d02008-04-14 14:40:50 +03001822 c->dst.bytes = 2;
1823 c->dst.val = realmode_get_cr(ctxt->vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001824 break;
1825 case 6: /* lmsw */
Avi Kivity16286d02008-04-14 14:40:50 +03001826 realmode_lmsw(ctxt->vcpu, (u16)c->src.val,
1827 &ctxt->eflags);
Avi Kivitydc7457e2008-04-30 16:13:36 +03001828 c->dst.type = OP_NONE;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001829 break;
1830 case 7: /* invlpg*/
Sheng Yange8d8d7f2007-11-16 16:29:15 +08001831 emulate_invlpg(ctxt->vcpu, memop);
Avi Kivity16286d02008-04-14 14:40:50 +03001832 /* Disable writeback. */
1833 c->dst.type = OP_NONE;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001834 break;
1835 default:
1836 goto cannot_emulate;
1837 }
1838 break;
Avi Kivity018a98d2007-11-27 19:30:56 +02001839 case 0x06:
1840 emulate_clts(ctxt->vcpu);
1841 c->dst.type = OP_NONE;
1842 break;
1843 case 0x08: /* invd */
1844 case 0x09: /* wbinvd */
1845 case 0x0d: /* GrpP (prefetch) */
1846 case 0x18: /* Grp16 (prefetch/nop) */
1847 c->dst.type = OP_NONE;
1848 break;
1849 case 0x20: /* mov cr, reg */
1850 if (c->modrm_mod != 3)
1851 goto cannot_emulate;
1852 c->regs[c->modrm_rm] =
1853 realmode_get_cr(ctxt->vcpu, c->modrm_reg);
1854 c->dst.type = OP_NONE; /* no writeback */
1855 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001856 case 0x21: /* mov from dr to reg */
Laurent Viviere4e03de2007-09-18 11:52:50 +02001857 if (c->modrm_mod != 3)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001858 goto cannot_emulate;
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001859 rc = emulator_get_dr(ctxt, c->modrm_reg, &c->regs[c->modrm_rm]);
Laurent Viviera01af5e2007-09-24 11:10:56 +02001860 if (rc)
1861 goto cannot_emulate;
1862 c->dst.type = OP_NONE; /* no writeback */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001863 break;
Avi Kivity018a98d2007-11-27 19:30:56 +02001864 case 0x22: /* mov reg, cr */
1865 if (c->modrm_mod != 3)
1866 goto cannot_emulate;
1867 realmode_set_cr(ctxt->vcpu,
1868 c->modrm_reg, c->modrm_val, &ctxt->eflags);
1869 c->dst.type = OP_NONE;
1870 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001871 case 0x23: /* mov from reg to dr */
Laurent Viviere4e03de2007-09-18 11:52:50 +02001872 if (c->modrm_mod != 3)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001873 goto cannot_emulate;
Laurent Viviere4e03de2007-09-18 11:52:50 +02001874 rc = emulator_set_dr(ctxt, c->modrm_reg,
1875 c->regs[c->modrm_rm]);
Laurent Viviera01af5e2007-09-24 11:10:56 +02001876 if (rc)
1877 goto cannot_emulate;
1878 c->dst.type = OP_NONE; /* no writeback */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001879 break;
Avi Kivity018a98d2007-11-27 19:30:56 +02001880 case 0x30:
1881 /* wrmsr */
1882 msr_data = (u32)c->regs[VCPU_REGS_RAX]
1883 | ((u64)c->regs[VCPU_REGS_RDX] << 32);
1884 rc = kvm_set_msr(ctxt->vcpu, c->regs[VCPU_REGS_RCX], msr_data);
1885 if (rc) {
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02001886 kvm_inject_gp(ctxt->vcpu, 0);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001887 c->eip = ctxt->vcpu->arch.rip;
Avi Kivity018a98d2007-11-27 19:30:56 +02001888 }
1889 rc = X86EMUL_CONTINUE;
1890 c->dst.type = OP_NONE;
1891 break;
1892 case 0x32:
1893 /* rdmsr */
1894 rc = kvm_get_msr(ctxt->vcpu, c->regs[VCPU_REGS_RCX], &msr_data);
1895 if (rc) {
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02001896 kvm_inject_gp(ctxt->vcpu, 0);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001897 c->eip = ctxt->vcpu->arch.rip;
Avi Kivity018a98d2007-11-27 19:30:56 +02001898 } else {
1899 c->regs[VCPU_REGS_RAX] = (u32)msr_data;
1900 c->regs[VCPU_REGS_RDX] = msr_data >> 32;
1901 }
1902 rc = X86EMUL_CONTINUE;
1903 c->dst.type = OP_NONE;
1904 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001905 case 0x40 ... 0x4f: /* cmov */
Laurent Viviere4e03de2007-09-18 11:52:50 +02001906 c->dst.val = c->dst.orig_val = c->src.val;
Laurent Viviera01af5e2007-09-24 11:10:56 +02001907 if (!test_cc(c->b, ctxt->eflags))
1908 c->dst.type = OP_NONE; /* no writeback */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001909 break;
Avi Kivity018a98d2007-11-27 19:30:56 +02001910 case 0x80 ... 0x8f: /* jnz rel, etc*/ {
1911 long int rel;
1912
1913 switch (c->op_bytes) {
1914 case 2:
1915 rel = insn_fetch(s16, 2, c->eip);
1916 break;
1917 case 4:
1918 rel = insn_fetch(s32, 4, c->eip);
1919 break;
1920 case 8:
1921 rel = insn_fetch(s64, 8, c->eip);
1922 break;
1923 default:
1924 DPRINTF("jnz: Invalid op_bytes\n");
1925 goto cannot_emulate;
1926 }
1927 if (test_cc(c->b, ctxt->eflags))
Harvey Harrison7a9572752008-02-19 07:40:41 -08001928 jmp_rel(c, rel);
Avi Kivity018a98d2007-11-27 19:30:56 +02001929 c->dst.type = OP_NONE;
1930 break;
1931 }
Nitin A Kamble7de75242007-09-15 10:13:07 +03001932 case 0xa3:
1933 bt: /* bt */
Qing Hee4f8e032007-09-24 17:22:13 +08001934 c->dst.type = OP_NONE;
Laurent Viviere4e03de2007-09-18 11:52:50 +02001935 /* only subword offset */
1936 c->src.val &= (c->dst.bytes << 3) - 1;
Laurent Vivier05f086f2007-09-24 11:10:55 +02001937 emulate_2op_SrcV_nobyte("bt", c->src, c->dst, ctxt->eflags);
Nitin A Kamble7de75242007-09-15 10:13:07 +03001938 break;
1939 case 0xab:
1940 bts: /* bts */
Laurent Viviere4e03de2007-09-18 11:52:50 +02001941 /* only subword offset */
1942 c->src.val &= (c->dst.bytes << 3) - 1;
Laurent Vivier05f086f2007-09-24 11:10:55 +02001943 emulate_2op_SrcV_nobyte("bts", c->src, c->dst, ctxt->eflags);
Nitin A Kamble7de75242007-09-15 10:13:07 +03001944 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001945 case 0xb0 ... 0xb1: /* cmpxchg */
1946 /*
1947 * Save real source value, then compare EAX against
1948 * destination.
1949 */
Laurent Viviere4e03de2007-09-18 11:52:50 +02001950 c->src.orig_val = c->src.val;
1951 c->src.val = c->regs[VCPU_REGS_RAX];
Laurent Vivier05f086f2007-09-24 11:10:55 +02001952 emulate_2op_SrcV("cmp", c->src, c->dst, ctxt->eflags);
1953 if (ctxt->eflags & EFLG_ZF) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001954 /* Success: write back to memory. */
Laurent Viviere4e03de2007-09-18 11:52:50 +02001955 c->dst.val = c->src.orig_val;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001956 } else {
1957 /* Failure: write the value we saw to EAX. */
Laurent Viviere4e03de2007-09-18 11:52:50 +02001958 c->dst.type = OP_REG;
1959 c->dst.ptr = (unsigned long *)&c->regs[VCPU_REGS_RAX];
Avi Kivity6aa8b732006-12-10 02:21:36 -08001960 }
1961 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001962 case 0xb3:
1963 btr: /* btr */
Laurent Viviere4e03de2007-09-18 11:52:50 +02001964 /* only subword offset */
1965 c->src.val &= (c->dst.bytes << 3) - 1;
Laurent Vivier05f086f2007-09-24 11:10:55 +02001966 emulate_2op_SrcV_nobyte("btr", c->src, c->dst, ctxt->eflags);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001967 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001968 case 0xb6 ... 0xb7: /* movzx */
Laurent Viviere4e03de2007-09-18 11:52:50 +02001969 c->dst.bytes = c->op_bytes;
1970 c->dst.val = (c->d & ByteOp) ? (u8) c->src.val
1971 : (u16) c->src.val;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001972 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001973 case 0xba: /* Grp8 */
Laurent Viviere4e03de2007-09-18 11:52:50 +02001974 switch (c->modrm_reg & 3) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001975 case 0:
1976 goto bt;
1977 case 1:
1978 goto bts;
1979 case 2:
1980 goto btr;
1981 case 3:
1982 goto btc;
1983 }
1984 break;
Nitin A Kamble7de75242007-09-15 10:13:07 +03001985 case 0xbb:
1986 btc: /* btc */
Laurent Viviere4e03de2007-09-18 11:52:50 +02001987 /* only subword offset */
1988 c->src.val &= (c->dst.bytes << 3) - 1;
Laurent Vivier05f086f2007-09-24 11:10:55 +02001989 emulate_2op_SrcV_nobyte("btc", c->src, c->dst, ctxt->eflags);
Nitin A Kamble7de75242007-09-15 10:13:07 +03001990 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001991 case 0xbe ... 0xbf: /* movsx */
Laurent Viviere4e03de2007-09-18 11:52:50 +02001992 c->dst.bytes = c->op_bytes;
1993 c->dst.val = (c->d & ByteOp) ? (s8) c->src.val :
1994 (s16) c->src.val;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001995 break;
Sheng Yanga012e652007-10-15 14:24:20 +08001996 case 0xc3: /* movnti */
Laurent Viviere4e03de2007-09-18 11:52:50 +02001997 c->dst.bytes = c->op_bytes;
1998 c->dst.val = (c->op_bytes == 4) ? (u32) c->src.val :
1999 (u64) c->src.val;
Sheng Yanga012e652007-10-15 14:24:20 +08002000 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002001 case 0xc7: /* Grp9 (cmpxchg8b) */
Sheng Yange8d8d7f2007-11-16 16:29:15 +08002002 rc = emulate_grp9(ctxt, ops, memop);
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02002003 if (rc != 0)
2004 goto done;
Avi Kivity018a98d2007-11-27 19:30:56 +02002005 c->dst.type = OP_NONE;
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02002006 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002007 }
2008 goto writeback;
2009
2010cannot_emulate:
Laurent Viviere4e03de2007-09-18 11:52:50 +02002011 DPRINTF("Cannot emulate %02x\n", c->b);
Laurent Vivier34273182007-09-18 11:27:37 +02002012 c->eip = saved_eip;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002013 return -1;
2014}