blob: 28082913919e9f9182e14d28c8b2310006737b58 [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. */
743 switch (c->modrm_rm) {
744 case 4:
745 case 12:
746 sib = insn_fetch(u8, 1, c->eip);
747 index_reg |= (sib >> 3) & 7;
748 base_reg |= sib & 7;
749 scale = sib >> 6;
750
751 switch (base_reg) {
752 case 5:
753 if (c->modrm_mod != 0)
754 c->modrm_ea += c->regs[base_reg];
755 else
756 c->modrm_ea +=
757 insn_fetch(s32, 4, c->eip);
758 break;
759 default:
760 c->modrm_ea += c->regs[base_reg];
761 }
762 switch (index_reg) {
763 case 4:
764 break;
765 default:
766 c->modrm_ea += c->regs[index_reg] << scale;
767 }
768 break;
769 case 5:
770 if (c->modrm_mod != 0)
771 c->modrm_ea += c->regs[c->modrm_rm];
772 else if (ctxt->mode == X86EMUL_MODE_PROT64)
773 rip_relative = 1;
774 break;
775 default:
776 c->modrm_ea += c->regs[c->modrm_rm];
777 break;
778 }
779 switch (c->modrm_mod) {
780 case 0:
781 if (c->modrm_rm == 5)
782 c->modrm_ea += insn_fetch(s32, 4, c->eip);
783 break;
784 case 1:
785 c->modrm_ea += insn_fetch(s8, 1, c->eip);
786 break;
787 case 2:
788 c->modrm_ea += insn_fetch(s32, 4, c->eip);
789 break;
790 }
791 }
792 if (rip_relative) {
793 c->modrm_ea += c->eip;
794 switch (c->d & SrcMask) {
795 case SrcImmByte:
796 c->modrm_ea += 1;
797 break;
798 case SrcImm:
799 if (c->d & ByteOp)
800 c->modrm_ea += 1;
801 else
802 if (c->op_bytes == 8)
803 c->modrm_ea += 4;
804 else
805 c->modrm_ea += c->op_bytes;
806 }
807 }
808done:
809 return rc;
810}
811
812static int decode_abs(struct x86_emulate_ctxt *ctxt,
813 struct x86_emulate_ops *ops)
814{
815 struct decode_cache *c = &ctxt->decode;
816 int rc = 0;
817
818 switch (c->ad_bytes) {
819 case 2:
820 c->modrm_ea = insn_fetch(u16, 2, c->eip);
821 break;
822 case 4:
823 c->modrm_ea = insn_fetch(u32, 4, c->eip);
824 break;
825 case 8:
826 c->modrm_ea = insn_fetch(u64, 8, c->eip);
827 break;
828 }
829done:
830 return rc;
831}
832
Avi Kivity6aa8b732006-12-10 02:21:36 -0800833int
Laurent Vivier8b4caf62007-09-18 11:27:19 +0200834x86_decode_insn(struct x86_emulate_ctxt *ctxt, struct x86_emulate_ops *ops)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800835{
Laurent Viviere4e03de2007-09-18 11:52:50 +0200836 struct decode_cache *c = &ctxt->decode;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800837 int rc = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800838 int mode = ctxt->mode;
Avi Kivitye09d0822008-01-18 12:38:59 +0200839 int def_op_bytes, def_ad_bytes, group;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800840
841 /* Shadow copy of register state. Committed on successful emulation. */
Avi Kivity6aa8b732006-12-10 02:21:36 -0800842
Laurent Viviere4e03de2007-09-18 11:52:50 +0200843 memset(c, 0, sizeof(struct decode_cache));
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800844 c->eip = ctxt->vcpu->arch.rip;
845 memcpy(c->regs, ctxt->vcpu->arch.regs, sizeof c->regs);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800846
847 switch (mode) {
848 case X86EMUL_MODE_REAL:
849 case X86EMUL_MODE_PROT16:
Avi Kivityf21b8bf2007-11-22 14:16:12 +0200850 def_op_bytes = def_ad_bytes = 2;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800851 break;
852 case X86EMUL_MODE_PROT32:
Avi Kivityf21b8bf2007-11-22 14:16:12 +0200853 def_op_bytes = def_ad_bytes = 4;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800854 break;
Avi Kivity05b3e0c2006-12-13 00:33:45 -0800855#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -0800856 case X86EMUL_MODE_PROT64:
Avi Kivityf21b8bf2007-11-22 14:16:12 +0200857 def_op_bytes = 4;
858 def_ad_bytes = 8;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800859 break;
860#endif
861 default:
862 return -1;
863 }
864
Avi Kivityf21b8bf2007-11-22 14:16:12 +0200865 c->op_bytes = def_op_bytes;
866 c->ad_bytes = def_ad_bytes;
867
Avi Kivity6aa8b732006-12-10 02:21:36 -0800868 /* Legacy prefixes. */
Laurent Vivierb4c6abf2007-09-25 13:36:40 +0200869 for (;;) {
Laurent Viviere4e03de2007-09-18 11:52:50 +0200870 switch (c->b = insn_fetch(u8, 1, c->eip)) {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800871 case 0x66: /* operand-size override */
Avi Kivityf21b8bf2007-11-22 14:16:12 +0200872 /* switch between 2/4 bytes */
873 c->op_bytes = def_op_bytes ^ 6;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800874 break;
875 case 0x67: /* address-size override */
876 if (mode == X86EMUL_MODE_PROT64)
Laurent Viviere4e03de2007-09-18 11:52:50 +0200877 /* switch between 4/8 bytes */
Avi Kivityf21b8bf2007-11-22 14:16:12 +0200878 c->ad_bytes = def_ad_bytes ^ 12;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800879 else
Laurent Viviere4e03de2007-09-18 11:52:50 +0200880 /* switch between 2/4 bytes */
Avi Kivityf21b8bf2007-11-22 14:16:12 +0200881 c->ad_bytes = def_ad_bytes ^ 6;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800882 break;
883 case 0x2e: /* CS override */
Laurent Viviere4e03de2007-09-18 11:52:50 +0200884 c->override_base = &ctxt->cs_base;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800885 break;
886 case 0x3e: /* DS override */
Laurent Viviere4e03de2007-09-18 11:52:50 +0200887 c->override_base = &ctxt->ds_base;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800888 break;
889 case 0x26: /* ES override */
Laurent Viviere4e03de2007-09-18 11:52:50 +0200890 c->override_base = &ctxt->es_base;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800891 break;
892 case 0x64: /* FS override */
Laurent Viviere4e03de2007-09-18 11:52:50 +0200893 c->override_base = &ctxt->fs_base;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800894 break;
895 case 0x65: /* GS override */
Laurent Viviere4e03de2007-09-18 11:52:50 +0200896 c->override_base = &ctxt->gs_base;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800897 break;
898 case 0x36: /* SS override */
Laurent Viviere4e03de2007-09-18 11:52:50 +0200899 c->override_base = &ctxt->ss_base;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800900 break;
Laurent Vivierb4c6abf2007-09-25 13:36:40 +0200901 case 0x40 ... 0x4f: /* REX */
902 if (mode != X86EMUL_MODE_PROT64)
903 goto done_prefixes;
Avi Kivity33615aa2007-10-31 11:15:56 +0200904 c->rex_prefix = c->b;
Laurent Vivierb4c6abf2007-09-25 13:36:40 +0200905 continue;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800906 case 0xf0: /* LOCK */
Laurent Viviere4e03de2007-09-18 11:52:50 +0200907 c->lock_prefix = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800908 break;
Laurent Vivierae6200b2007-09-20 11:17:24 +0200909 case 0xf2: /* REPNE/REPNZ */
Guillaume Thouvenin90e0a282007-11-22 11:32:09 +0100910 c->rep_prefix = REPNE_PREFIX;
911 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800912 case 0xf3: /* REP/REPE/REPZ */
Guillaume Thouvenin90e0a282007-11-22 11:32:09 +0100913 c->rep_prefix = REPE_PREFIX;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800914 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800915 default:
916 goto done_prefixes;
917 }
Laurent Vivierb4c6abf2007-09-25 13:36:40 +0200918
919 /* Any legacy prefix after a REX prefix nullifies its effect. */
920
Avi Kivity33615aa2007-10-31 11:15:56 +0200921 c->rex_prefix = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800922 }
923
924done_prefixes:
925
926 /* REX prefix. */
Avi Kivity1c73ef6652007-11-01 06:31:28 +0200927 if (c->rex_prefix)
Avi Kivity33615aa2007-10-31 11:15:56 +0200928 if (c->rex_prefix & 8)
Laurent Viviere4e03de2007-09-18 11:52:50 +0200929 c->op_bytes = 8; /* REX.W */
Avi Kivity6aa8b732006-12-10 02:21:36 -0800930
931 /* Opcode byte(s). */
Laurent Viviere4e03de2007-09-18 11:52:50 +0200932 c->d = opcode_table[c->b];
933 if (c->d == 0) {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800934 /* Two-byte opcode? */
Laurent Viviere4e03de2007-09-18 11:52:50 +0200935 if (c->b == 0x0f) {
936 c->twobyte = 1;
937 c->b = insn_fetch(u8, 1, c->eip);
938 c->d = twobyte_table[c->b];
Avi Kivity6aa8b732006-12-10 02:21:36 -0800939 }
Avi Kivitye09d0822008-01-18 12:38:59 +0200940 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800941
Avi Kivitye09d0822008-01-18 12:38:59 +0200942 if (c->d & Group) {
943 group = c->d & GroupMask;
944 c->modrm = insn_fetch(u8, 1, c->eip);
945 --c->eip;
946
947 group = (group << 3) + ((c->modrm >> 3) & 7);
948 if ((c->d & GroupDual) && (c->modrm >> 6) == 3)
949 c->d = group2_table[group];
950 else
951 c->d = group_table[group];
952 }
953
954 /* Unrecognised? */
955 if (c->d == 0) {
956 DPRINTF("Cannot emulate %02x\n", c->b);
957 return -1;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800958 }
959
Avi Kivity6e3d5df2007-12-06 18:14:14 +0200960 if (mode == X86EMUL_MODE_PROT64 && (c->d & Stack))
961 c->op_bytes = 8;
962
Avi Kivity6aa8b732006-12-10 02:21:36 -0800963 /* ModRM and SIB bytes. */
Avi Kivity1c73ef6652007-11-01 06:31:28 +0200964 if (c->d & ModRM)
965 rc = decode_modrm(ctxt, ops);
966 else if (c->d & MemAbs)
967 rc = decode_abs(ctxt, ops);
968 if (rc)
969 goto done;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800970
Avi Kivityc7e75a32007-10-28 16:34:25 +0200971 if (!c->override_base)
972 c->override_base = &ctxt->ds_base;
973 if (mode == X86EMUL_MODE_PROT64 &&
974 c->override_base != &ctxt->fs_base &&
975 c->override_base != &ctxt->gs_base)
976 c->override_base = NULL;
977
978 if (c->override_base)
979 c->modrm_ea += *c->override_base;
980
981 if (c->ad_bytes != 8)
982 c->modrm_ea = (u32)c->modrm_ea;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800983 /*
984 * Decode and fetch the source operand: register, memory
985 * or immediate.
986 */
Laurent Viviere4e03de2007-09-18 11:52:50 +0200987 switch (c->d & SrcMask) {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800988 case SrcNone:
989 break;
990 case SrcReg:
Avi Kivity9f1ef3f2007-10-31 11:21:06 +0200991 decode_register_operand(&c->src, c, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800992 break;
993 case SrcMem16:
Laurent Viviere4e03de2007-09-18 11:52:50 +0200994 c->src.bytes = 2;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800995 goto srcmem_common;
996 case SrcMem32:
Laurent Viviere4e03de2007-09-18 11:52:50 +0200997 c->src.bytes = 4;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800998 goto srcmem_common;
999 case SrcMem:
Laurent Viviere4e03de2007-09-18 11:52:50 +02001000 c->src.bytes = (c->d & ByteOp) ? 1 :
1001 c->op_bytes;
Rusty Russellb85b9ee92007-09-09 14:12:54 +03001002 /* Don't fetch the address for invlpg: it could be unmapped. */
Mike Dayd77c26f2007-10-08 09:02:08 -04001003 if (c->twobyte && c->b == 0x01 && c->modrm_reg == 7)
Rusty Russellb85b9ee92007-09-09 14:12:54 +03001004 break;
Mike Dayd77c26f2007-10-08 09:02:08 -04001005 srcmem_common:
Aurelien Jarno4e624172007-10-17 19:30:41 +02001006 /*
1007 * For instructions with a ModR/M byte, switch to register
1008 * access if Mod = 3.
1009 */
Laurent Viviere4e03de2007-09-18 11:52:50 +02001010 if ((c->d & ModRM) && c->modrm_mod == 3) {
1011 c->src.type = OP_REG;
Avi Kivity66b85502008-04-14 23:27:07 +03001012 c->src.val = c->modrm_val;
Avi Kivity107d6d22008-05-05 14:58:26 +03001013 c->src.ptr = c->modrm_ptr;
Aurelien Jarno4e624172007-10-17 19:30:41 +02001014 break;
1015 }
Laurent Viviere4e03de2007-09-18 11:52:50 +02001016 c->src.type = OP_MEM;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001017 break;
1018 case SrcImm:
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 = (c->d & ByteOp) ? 1 : c->op_bytes;
1022 if (c->src.bytes == 8)
1023 c->src.bytes = 4;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001024 /* NB. Immediates are sign-extended as necessary. */
Laurent Viviere4e03de2007-09-18 11:52:50 +02001025 switch (c->src.bytes) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001026 case 1:
Laurent Viviere4e03de2007-09-18 11:52:50 +02001027 c->src.val = insn_fetch(s8, 1, c->eip);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001028 break;
1029 case 2:
Laurent Viviere4e03de2007-09-18 11:52:50 +02001030 c->src.val = insn_fetch(s16, 2, c->eip);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001031 break;
1032 case 4:
Laurent Viviere4e03de2007-09-18 11:52:50 +02001033 c->src.val = insn_fetch(s32, 4, c->eip);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001034 break;
1035 }
1036 break;
1037 case SrcImmByte:
Laurent Viviere4e03de2007-09-18 11:52:50 +02001038 c->src.type = OP_IMM;
1039 c->src.ptr = (unsigned long *)c->eip;
1040 c->src.bytes = 1;
1041 c->src.val = insn_fetch(s8, 1, c->eip);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001042 break;
1043 }
1044
Avi Kivity038e51d2007-01-22 20:40:40 -08001045 /* Decode and fetch the destination operand: register or memory. */
Laurent Viviere4e03de2007-09-18 11:52:50 +02001046 switch (c->d & DstMask) {
Avi Kivity038e51d2007-01-22 20:40:40 -08001047 case ImplicitOps:
1048 /* Special instructions do their own operand decoding. */
Laurent Vivier8b4caf62007-09-18 11:27:19 +02001049 return 0;
Avi Kivity038e51d2007-01-22 20:40:40 -08001050 case DstReg:
Avi Kivity9f1ef3f2007-10-31 11:21:06 +02001051 decode_register_operand(&c->dst, c,
Avi Kivity3c118e22007-10-31 10:27:04 +02001052 c->twobyte && (c->b == 0xb6 || c->b == 0xb7));
Avi Kivity038e51d2007-01-22 20:40:40 -08001053 break;
1054 case DstMem:
Laurent Viviere4e03de2007-09-18 11:52:50 +02001055 if ((c->d & ModRM) && c->modrm_mod == 3) {
Guillaume Thouvenin89c69632008-05-27 10:22:20 +02001056 c->dst.bytes = (c->d & ByteOp) ? 1 : c->op_bytes;
Laurent Viviere4e03de2007-09-18 11:52:50 +02001057 c->dst.type = OP_REG;
Avi Kivity66b85502008-04-14 23:27:07 +03001058 c->dst.val = c->dst.orig_val = c->modrm_val;
Avi Kivity107d6d22008-05-05 14:58:26 +03001059 c->dst.ptr = c->modrm_ptr;
Aurelien Jarno4e624172007-10-17 19:30:41 +02001060 break;
1061 }
Laurent Vivier8b4caf62007-09-18 11:27:19 +02001062 c->dst.type = OP_MEM;
1063 break;
1064 }
1065
1066done:
1067 return (rc == X86EMUL_UNHANDLEABLE) ? -1 : 0;
1068}
1069
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001070static inline void emulate_push(struct x86_emulate_ctxt *ctxt)
1071{
1072 struct decode_cache *c = &ctxt->decode;
1073
1074 c->dst.type = OP_MEM;
1075 c->dst.bytes = c->op_bytes;
1076 c->dst.val = c->src.val;
Harvey Harrison7a9572752008-02-19 07:40:41 -08001077 register_address_increment(c, &c->regs[VCPU_REGS_RSP], -c->op_bytes);
Harvey Harrisone4706772008-02-19 07:40:38 -08001078 c->dst.ptr = (void *) register_address(c, ctxt->ss_base,
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001079 c->regs[VCPU_REGS_RSP]);
1080}
1081
1082static inline int emulate_grp1a(struct x86_emulate_ctxt *ctxt,
1083 struct x86_emulate_ops *ops)
1084{
1085 struct decode_cache *c = &ctxt->decode;
1086 int rc;
1087
Harvey Harrisone4706772008-02-19 07:40:38 -08001088 rc = ops->read_std(register_address(c, ctxt->ss_base,
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001089 c->regs[VCPU_REGS_RSP]),
1090 &c->dst.val, c->dst.bytes, ctxt->vcpu);
1091 if (rc != 0)
1092 return rc;
1093
Harvey Harrison7a9572752008-02-19 07:40:41 -08001094 register_address_increment(c, &c->regs[VCPU_REGS_RSP], c->dst.bytes);
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001095
1096 return 0;
1097}
1098
Laurent Vivier05f086f2007-09-24 11:10:55 +02001099static inline void emulate_grp2(struct x86_emulate_ctxt *ctxt)
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001100{
Laurent Vivier05f086f2007-09-24 11:10:55 +02001101 struct decode_cache *c = &ctxt->decode;
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001102 switch (c->modrm_reg) {
1103 case 0: /* rol */
Laurent Vivier05f086f2007-09-24 11:10:55 +02001104 emulate_2op_SrcB("rol", c->src, c->dst, ctxt->eflags);
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001105 break;
1106 case 1: /* ror */
Laurent Vivier05f086f2007-09-24 11:10:55 +02001107 emulate_2op_SrcB("ror", c->src, c->dst, ctxt->eflags);
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001108 break;
1109 case 2: /* rcl */
Laurent Vivier05f086f2007-09-24 11:10:55 +02001110 emulate_2op_SrcB("rcl", c->src, c->dst, ctxt->eflags);
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001111 break;
1112 case 3: /* rcr */
Laurent Vivier05f086f2007-09-24 11:10:55 +02001113 emulate_2op_SrcB("rcr", c->src, c->dst, ctxt->eflags);
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001114 break;
1115 case 4: /* sal/shl */
1116 case 6: /* sal/shl */
Laurent Vivier05f086f2007-09-24 11:10:55 +02001117 emulate_2op_SrcB("sal", c->src, c->dst, ctxt->eflags);
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001118 break;
1119 case 5: /* shr */
Laurent Vivier05f086f2007-09-24 11:10:55 +02001120 emulate_2op_SrcB("shr", c->src, c->dst, ctxt->eflags);
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001121 break;
1122 case 7: /* sar */
Laurent Vivier05f086f2007-09-24 11:10:55 +02001123 emulate_2op_SrcB("sar", c->src, c->dst, ctxt->eflags);
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001124 break;
1125 }
1126}
1127
1128static inline int emulate_grp3(struct x86_emulate_ctxt *ctxt,
Laurent Vivier05f086f2007-09-24 11:10:55 +02001129 struct x86_emulate_ops *ops)
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001130{
1131 struct decode_cache *c = &ctxt->decode;
1132 int rc = 0;
1133
1134 switch (c->modrm_reg) {
1135 case 0 ... 1: /* test */
Laurent Vivier05f086f2007-09-24 11:10:55 +02001136 emulate_2op_SrcV("test", c->src, c->dst, ctxt->eflags);
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001137 break;
1138 case 2: /* not */
1139 c->dst.val = ~c->dst.val;
1140 break;
1141 case 3: /* neg */
Laurent Vivier05f086f2007-09-24 11:10:55 +02001142 emulate_1op("neg", c->dst, ctxt->eflags);
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001143 break;
1144 default:
1145 DPRINTF("Cannot emulate %02x\n", c->b);
1146 rc = X86EMUL_UNHANDLEABLE;
1147 break;
1148 }
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001149 return rc;
1150}
1151
1152static inline int emulate_grp45(struct x86_emulate_ctxt *ctxt,
Laurent Viviera01af5e2007-09-24 11:10:56 +02001153 struct x86_emulate_ops *ops)
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001154{
1155 struct decode_cache *c = &ctxt->decode;
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001156
1157 switch (c->modrm_reg) {
1158 case 0: /* inc */
Laurent Vivier05f086f2007-09-24 11:10:55 +02001159 emulate_1op("inc", c->dst, ctxt->eflags);
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001160 break;
1161 case 1: /* dec */
Laurent Vivier05f086f2007-09-24 11:10:55 +02001162 emulate_1op("dec", c->dst, ctxt->eflags);
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001163 break;
1164 case 4: /* jmp abs */
Avi Kivityfd607542008-01-18 13:12:26 +02001165 c->eip = c->src.val;
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001166 break;
1167 case 6: /* push */
Avi Kivityfd607542008-01-18 13:12:26 +02001168 emulate_push(ctxt);
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001169 break;
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001170 }
1171 return 0;
1172}
1173
1174static inline int emulate_grp9(struct x86_emulate_ctxt *ctxt,
1175 struct x86_emulate_ops *ops,
Sheng Yange8d8d7f2007-11-16 16:29:15 +08001176 unsigned long memop)
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001177{
1178 struct decode_cache *c = &ctxt->decode;
1179 u64 old, new;
1180 int rc;
1181
Sheng Yange8d8d7f2007-11-16 16:29:15 +08001182 rc = ops->read_emulated(memop, &old, 8, ctxt->vcpu);
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001183 if (rc != 0)
1184 return rc;
1185
1186 if (((u32) (old >> 0) != (u32) c->regs[VCPU_REGS_RAX]) ||
1187 ((u32) (old >> 32) != (u32) c->regs[VCPU_REGS_RDX])) {
1188
1189 c->regs[VCPU_REGS_RAX] = (u32) (old >> 0);
1190 c->regs[VCPU_REGS_RDX] = (u32) (old >> 32);
Laurent Vivier05f086f2007-09-24 11:10:55 +02001191 ctxt->eflags &= ~EFLG_ZF;
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001192
1193 } else {
1194 new = ((u64)c->regs[VCPU_REGS_RCX] << 32) |
1195 (u32) c->regs[VCPU_REGS_RBX];
1196
Sheng Yange8d8d7f2007-11-16 16:29:15 +08001197 rc = ops->cmpxchg_emulated(memop, &old, &new, 8, ctxt->vcpu);
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001198 if (rc != 0)
1199 return rc;
Laurent Vivier05f086f2007-09-24 11:10:55 +02001200 ctxt->eflags |= EFLG_ZF;
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001201 }
1202 return 0;
1203}
1204
1205static inline int writeback(struct x86_emulate_ctxt *ctxt,
1206 struct x86_emulate_ops *ops)
1207{
1208 int rc;
1209 struct decode_cache *c = &ctxt->decode;
1210
1211 switch (c->dst.type) {
1212 case OP_REG:
1213 /* The 4-byte case *is* correct:
1214 * in 64-bit mode we zero-extend.
1215 */
1216 switch (c->dst.bytes) {
1217 case 1:
1218 *(u8 *)c->dst.ptr = (u8)c->dst.val;
1219 break;
1220 case 2:
1221 *(u16 *)c->dst.ptr = (u16)c->dst.val;
1222 break;
1223 case 4:
1224 *c->dst.ptr = (u32)c->dst.val;
1225 break; /* 64b: zero-ext */
1226 case 8:
1227 *c->dst.ptr = c->dst.val;
1228 break;
1229 }
1230 break;
1231 case OP_MEM:
1232 if (c->lock_prefix)
1233 rc = ops->cmpxchg_emulated(
1234 (unsigned long)c->dst.ptr,
1235 &c->dst.orig_val,
1236 &c->dst.val,
1237 c->dst.bytes,
1238 ctxt->vcpu);
1239 else
1240 rc = ops->write_emulated(
1241 (unsigned long)c->dst.ptr,
1242 &c->dst.val,
1243 c->dst.bytes,
1244 ctxt->vcpu);
1245 if (rc != 0)
1246 return rc;
Laurent Viviera01af5e2007-09-24 11:10:56 +02001247 break;
1248 case OP_NONE:
1249 /* no writeback */
1250 break;
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001251 default:
1252 break;
1253 }
1254 return 0;
1255}
1256
Laurent Vivier8b4caf62007-09-18 11:27:19 +02001257int
Laurent Vivier1be3aa42007-09-18 11:27:27 +02001258x86_emulate_insn(struct x86_emulate_ctxt *ctxt, struct x86_emulate_ops *ops)
Laurent Vivier8b4caf62007-09-18 11:27:19 +02001259{
Sheng Yange8d8d7f2007-11-16 16:29:15 +08001260 unsigned long memop = 0;
Laurent Vivier8b4caf62007-09-18 11:27:19 +02001261 u64 msr_data;
Laurent Vivier34273182007-09-18 11:27:37 +02001262 unsigned long saved_eip = 0;
Laurent Vivier8b4caf62007-09-18 11:27:19 +02001263 struct decode_cache *c = &ctxt->decode;
Laurent Vivier1be3aa42007-09-18 11:27:27 +02001264 int rc = 0;
Laurent Vivier8b4caf62007-09-18 11:27:19 +02001265
Laurent Vivier34273182007-09-18 11:27:37 +02001266 /* Shadow copy of register state. Committed on successful emulation.
1267 * NOTE: we can copy them from vcpu as x86_decode_insn() doesn't
1268 * modify them.
1269 */
1270
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001271 memcpy(c->regs, ctxt->vcpu->arch.regs, sizeof c->regs);
Laurent Vivier34273182007-09-18 11:27:37 +02001272 saved_eip = c->eip;
1273
Avi Kivityc7e75a32007-10-28 16:34:25 +02001274 if (((c->d & ModRM) && (c->modrm_mod != 3)) || (c->d & MemAbs))
Sheng Yange8d8d7f2007-11-16 16:29:15 +08001275 memop = c->modrm_ea;
Laurent Vivier8b4caf62007-09-18 11:27:19 +02001276
Avi Kivityb9fa9d62007-11-27 19:05:37 +02001277 if (c->rep_prefix && (c->d & String)) {
1278 /* All REP prefixes have the same first termination condition */
1279 if (c->regs[VCPU_REGS_RCX] == 0) {
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 /* The second termination condition only applies for REPE
1284 * and REPNE. Test if the repeat string operation prefix is
1285 * REPE/REPZ or REPNE/REPNZ and if it's the case it tests the
1286 * corresponding termination condition according to:
1287 * - if REPE/REPZ and ZF = 0 then done
1288 * - if REPNE/REPNZ and ZF = 1 then done
1289 */
1290 if ((c->b == 0xa6) || (c->b == 0xa7) ||
1291 (c->b == 0xae) || (c->b == 0xaf)) {
1292 if ((c->rep_prefix == REPE_PREFIX) &&
1293 ((ctxt->eflags & EFLG_ZF) == 0)) {
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001294 ctxt->vcpu->arch.rip = c->eip;
Avi Kivityb9fa9d62007-11-27 19:05:37 +02001295 goto done;
1296 }
1297 if ((c->rep_prefix == REPNE_PREFIX) &&
1298 ((ctxt->eflags & EFLG_ZF) == EFLG_ZF)) {
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001299 ctxt->vcpu->arch.rip = c->eip;
Avi Kivityb9fa9d62007-11-27 19:05:37 +02001300 goto done;
1301 }
1302 }
1303 c->regs[VCPU_REGS_RCX]--;
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001304 c->eip = ctxt->vcpu->arch.rip;
Avi Kivityb9fa9d62007-11-27 19:05:37 +02001305 }
1306
Laurent Vivier8b4caf62007-09-18 11:27:19 +02001307 if (c->src.type == OP_MEM) {
Sheng Yange8d8d7f2007-11-16 16:29:15 +08001308 c->src.ptr = (unsigned long *)memop;
Laurent Vivier8b4caf62007-09-18 11:27:19 +02001309 c->src.val = 0;
Mike Dayd77c26f2007-10-08 09:02:08 -04001310 rc = ops->read_emulated((unsigned long)c->src.ptr,
1311 &c->src.val,
1312 c->src.bytes,
1313 ctxt->vcpu);
1314 if (rc != 0)
Laurent Vivier8b4caf62007-09-18 11:27:19 +02001315 goto done;
1316 c->src.orig_val = c->src.val;
1317 }
1318
1319 if ((c->d & DstMask) == ImplicitOps)
1320 goto special_insn;
1321
1322
1323 if (c->dst.type == OP_MEM) {
Sheng Yange8d8d7f2007-11-16 16:29:15 +08001324 c->dst.ptr = (unsigned long *)memop;
Laurent Vivier8b4caf62007-09-18 11:27:19 +02001325 c->dst.bytes = (c->d & ByteOp) ? 1 : c->op_bytes;
1326 c->dst.val = 0;
Laurent Viviere4e03de2007-09-18 11:52:50 +02001327 if (c->d & BitOp) {
1328 unsigned long mask = ~(c->dst.bytes * 8 - 1);
Avi Kivitydf513e22007-03-28 20:04:16 +02001329
Laurent Viviere4e03de2007-09-18 11:52:50 +02001330 c->dst.ptr = (void *)c->dst.ptr +
1331 (c->src.val & mask) / 8;
Avi Kivity038e51d2007-01-22 20:40:40 -08001332 }
Laurent Viviere4e03de2007-09-18 11:52:50 +02001333 if (!(c->d & Mov) &&
1334 /* optimisation - avoid slow emulated read */
1335 ((rc = ops->read_emulated((unsigned long)c->dst.ptr,
1336 &c->dst.val,
1337 c->dst.bytes, ctxt->vcpu)) != 0))
Avi Kivity038e51d2007-01-22 20:40:40 -08001338 goto done;
Avi Kivity038e51d2007-01-22 20:40:40 -08001339 }
Laurent Viviere4e03de2007-09-18 11:52:50 +02001340 c->dst.orig_val = c->dst.val;
Avi Kivity038e51d2007-01-22 20:40:40 -08001341
Avi Kivity018a98d2007-11-27 19:30:56 +02001342special_insn:
1343
Laurent Viviere4e03de2007-09-18 11:52:50 +02001344 if (c->twobyte)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001345 goto twobyte_insn;
1346
Laurent Viviere4e03de2007-09-18 11:52:50 +02001347 switch (c->b) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001348 case 0x00 ... 0x05:
1349 add: /* add */
Laurent Vivier05f086f2007-09-24 11:10:55 +02001350 emulate_2op_SrcV("add", c->src, c->dst, ctxt->eflags);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001351 break;
1352 case 0x08 ... 0x0d:
1353 or: /* or */
Laurent Vivier05f086f2007-09-24 11:10:55 +02001354 emulate_2op_SrcV("or", c->src, c->dst, ctxt->eflags);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001355 break;
1356 case 0x10 ... 0x15:
1357 adc: /* adc */
Laurent Vivier05f086f2007-09-24 11:10:55 +02001358 emulate_2op_SrcV("adc", c->src, c->dst, ctxt->eflags);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001359 break;
1360 case 0x18 ... 0x1d:
1361 sbb: /* sbb */
Laurent Vivier05f086f2007-09-24 11:10:55 +02001362 emulate_2op_SrcV("sbb", c->src, c->dst, ctxt->eflags);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001363 break;
Nitin A Kamble19eb9382007-08-17 15:17:41 +03001364 case 0x20 ... 0x23:
Avi Kivity6aa8b732006-12-10 02:21:36 -08001365 and: /* and */
Laurent Vivier05f086f2007-09-24 11:10:55 +02001366 emulate_2op_SrcV("and", c->src, c->dst, ctxt->eflags);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001367 break;
Nitin A Kamble19eb9382007-08-17 15:17:41 +03001368 case 0x24: /* and al imm8 */
Laurent Viviere4e03de2007-09-18 11:52:50 +02001369 c->dst.type = OP_REG;
1370 c->dst.ptr = &c->regs[VCPU_REGS_RAX];
1371 c->dst.val = *(u8 *)c->dst.ptr;
1372 c->dst.bytes = 1;
1373 c->dst.orig_val = c->dst.val;
Nitin A Kamble19eb9382007-08-17 15:17:41 +03001374 goto and;
1375 case 0x25: /* and ax imm16, or eax imm32 */
Laurent Viviere4e03de2007-09-18 11:52:50 +02001376 c->dst.type = OP_REG;
1377 c->dst.bytes = c->op_bytes;
1378 c->dst.ptr = &c->regs[VCPU_REGS_RAX];
1379 if (c->op_bytes == 2)
1380 c->dst.val = *(u16 *)c->dst.ptr;
Nitin A Kamble19eb9382007-08-17 15:17:41 +03001381 else
Laurent Viviere4e03de2007-09-18 11:52:50 +02001382 c->dst.val = *(u32 *)c->dst.ptr;
1383 c->dst.orig_val = c->dst.val;
Nitin A Kamble19eb9382007-08-17 15:17:41 +03001384 goto and;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001385 case 0x28 ... 0x2d:
1386 sub: /* sub */
Laurent Vivier05f086f2007-09-24 11:10:55 +02001387 emulate_2op_SrcV("sub", c->src, c->dst, ctxt->eflags);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001388 break;
1389 case 0x30 ... 0x35:
1390 xor: /* xor */
Laurent Vivier05f086f2007-09-24 11:10:55 +02001391 emulate_2op_SrcV("xor", c->src, c->dst, ctxt->eflags);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001392 break;
1393 case 0x38 ... 0x3d:
1394 cmp: /* cmp */
Laurent Vivier05f086f2007-09-24 11:10:55 +02001395 emulate_2op_SrcV("cmp", c->src, c->dst, ctxt->eflags);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001396 break;
Avi Kivity33615aa2007-10-31 11:15:56 +02001397 case 0x40 ... 0x47: /* inc r16/r32 */
1398 emulate_1op("inc", c->dst, ctxt->eflags);
1399 break;
1400 case 0x48 ... 0x4f: /* dec r16/r32 */
1401 emulate_1op("dec", c->dst, ctxt->eflags);
1402 break;
1403 case 0x50 ... 0x57: /* push reg */
1404 c->dst.type = OP_MEM;
1405 c->dst.bytes = c->op_bytes;
1406 c->dst.val = c->src.val;
Harvey Harrison7a9572752008-02-19 07:40:41 -08001407 register_address_increment(c, &c->regs[VCPU_REGS_RSP],
Avi Kivity33615aa2007-10-31 11:15:56 +02001408 -c->op_bytes);
1409 c->dst.ptr = (void *) register_address(
Harvey Harrisone4706772008-02-19 07:40:38 -08001410 c, ctxt->ss_base, c->regs[VCPU_REGS_RSP]);
Avi Kivity33615aa2007-10-31 11:15:56 +02001411 break;
1412 case 0x58 ... 0x5f: /* pop reg */
1413 pop_instruction:
Harvey Harrisone4706772008-02-19 07:40:38 -08001414 if ((rc = ops->read_std(register_address(c, ctxt->ss_base,
Avi Kivity33615aa2007-10-31 11:15:56 +02001415 c->regs[VCPU_REGS_RSP]), c->dst.ptr,
1416 c->op_bytes, ctxt->vcpu)) != 0)
1417 goto done;
1418
Harvey Harrison7a9572752008-02-19 07:40:41 -08001419 register_address_increment(c, &c->regs[VCPU_REGS_RSP],
Avi Kivity33615aa2007-10-31 11:15:56 +02001420 c->op_bytes);
1421 c->dst.type = OP_NONE; /* Disable writeback. */
1422 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001423 case 0x63: /* movsxd */
Laurent Vivier8b4caf62007-09-18 11:27:19 +02001424 if (ctxt->mode != X86EMUL_MODE_PROT64)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001425 goto cannot_emulate;
Laurent Viviere4e03de2007-09-18 11:52:50 +02001426 c->dst.val = (s32) c->src.val;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001427 break;
Avi Kivity91ed7a02008-05-29 14:38:38 +03001428 case 0x68: /* push imm */
Avi Kivity018a98d2007-11-27 19:30:56 +02001429 case 0x6a: /* push imm8 */
Avi Kivity018a98d2007-11-27 19:30:56 +02001430 emulate_push(ctxt);
1431 break;
1432 case 0x6c: /* insb */
1433 case 0x6d: /* insw/insd */
1434 if (kvm_emulate_pio_string(ctxt->vcpu, NULL,
1435 1,
1436 (c->d & ByteOp) ? 1 : c->op_bytes,
1437 c->rep_prefix ?
Harvey Harrisone4706772008-02-19 07:40:38 -08001438 address_mask(c, c->regs[VCPU_REGS_RCX]) : 1,
Avi Kivity018a98d2007-11-27 19:30:56 +02001439 (ctxt->eflags & EFLG_DF),
Harvey Harrisone4706772008-02-19 07:40:38 -08001440 register_address(c, ctxt->es_base,
Avi Kivity018a98d2007-11-27 19:30:56 +02001441 c->regs[VCPU_REGS_RDI]),
1442 c->rep_prefix,
1443 c->regs[VCPU_REGS_RDX]) == 0) {
1444 c->eip = saved_eip;
1445 return -1;
1446 }
1447 return 0;
1448 case 0x6e: /* outsb */
1449 case 0x6f: /* outsw/outsd */
1450 if (kvm_emulate_pio_string(ctxt->vcpu, NULL,
1451 0,
1452 (c->d & ByteOp) ? 1 : c->op_bytes,
1453 c->rep_prefix ?
Harvey Harrisone4706772008-02-19 07:40:38 -08001454 address_mask(c, c->regs[VCPU_REGS_RCX]) : 1,
Avi Kivity018a98d2007-11-27 19:30:56 +02001455 (ctxt->eflags & EFLG_DF),
Harvey Harrisone4706772008-02-19 07:40:38 -08001456 register_address(c, c->override_base ?
Avi Kivity018a98d2007-11-27 19:30:56 +02001457 *c->override_base :
1458 ctxt->ds_base,
1459 c->regs[VCPU_REGS_RSI]),
1460 c->rep_prefix,
1461 c->regs[VCPU_REGS_RDX]) == 0) {
1462 c->eip = saved_eip;
1463 return -1;
1464 }
1465 return 0;
1466 case 0x70 ... 0x7f: /* jcc (short) */ {
1467 int rel = insn_fetch(s8, 1, c->eip);
1468
1469 if (test_cc(c->b, ctxt->eflags))
Harvey Harrison7a9572752008-02-19 07:40:41 -08001470 jmp_rel(c, rel);
Avi Kivity018a98d2007-11-27 19:30:56 +02001471 break;
1472 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001473 case 0x80 ... 0x83: /* Grp1 */
Laurent Viviere4e03de2007-09-18 11:52:50 +02001474 switch (c->modrm_reg) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001475 case 0:
1476 goto add;
1477 case 1:
1478 goto or;
1479 case 2:
1480 goto adc;
1481 case 3:
1482 goto sbb;
1483 case 4:
1484 goto and;
1485 case 5:
1486 goto sub;
1487 case 6:
1488 goto xor;
1489 case 7:
1490 goto cmp;
1491 }
1492 break;
1493 case 0x84 ... 0x85:
Laurent Vivier05f086f2007-09-24 11:10:55 +02001494 emulate_2op_SrcV("test", c->src, c->dst, ctxt->eflags);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001495 break;
1496 case 0x86 ... 0x87: /* xchg */
Mohammed Gamalb13354f2008-06-15 19:37:38 +03001497 xchg:
Avi Kivity6aa8b732006-12-10 02:21:36 -08001498 /* Write back the register source. */
Laurent Viviere4e03de2007-09-18 11:52:50 +02001499 switch (c->dst.bytes) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001500 case 1:
Laurent Viviere4e03de2007-09-18 11:52:50 +02001501 *(u8 *) c->src.ptr = (u8) c->dst.val;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001502 break;
1503 case 2:
Laurent Viviere4e03de2007-09-18 11:52:50 +02001504 *(u16 *) c->src.ptr = (u16) c->dst.val;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001505 break;
1506 case 4:
Laurent Viviere4e03de2007-09-18 11:52:50 +02001507 *c->src.ptr = (u32) c->dst.val;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001508 break; /* 64b reg: zero-extend */
1509 case 8:
Laurent Viviere4e03de2007-09-18 11:52:50 +02001510 *c->src.ptr = c->dst.val;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001511 break;
1512 }
1513 /*
1514 * Write back the memory destination with implicit LOCK
1515 * prefix.
1516 */
Laurent Viviere4e03de2007-09-18 11:52:50 +02001517 c->dst.val = c->src.val;
1518 c->lock_prefix = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001519 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001520 case 0x88 ... 0x8b: /* mov */
Nitin A Kamble7de75242007-09-15 10:13:07 +03001521 goto mov;
Guillaume Thouvenin38d5bc62008-05-27 15:13:28 +02001522 case 0x8c: { /* mov r/m, sreg */
1523 struct kvm_segment segreg;
1524
1525 if (c->modrm_reg <= 5)
1526 kvm_get_segment(ctxt->vcpu, &segreg, c->modrm_reg);
1527 else {
1528 printk(KERN_INFO "0x8c: Invalid segreg in modrm byte 0x%02x\n",
1529 c->modrm);
1530 goto cannot_emulate;
1531 }
1532 c->dst.val = segreg.selector;
1533 break;
1534 }
Nitin A Kamble7e0b54b2007-09-15 10:35:36 +03001535 case 0x8d: /* lea r16/r32, m */
Avi Kivityf9b7aab2008-04-14 23:46:37 +03001536 c->dst.val = c->modrm_ea;
Nitin A Kamble7e0b54b2007-09-15 10:35:36 +03001537 break;
Guillaume Thouvenin42571982008-05-27 14:49:15 +02001538 case 0x8e: { /* mov seg, r/m16 */
1539 uint16_t sel;
1540 int type_bits;
1541 int err;
1542
1543 sel = c->src.val;
1544 if (c->modrm_reg <= 5) {
1545 type_bits = (c->modrm_reg == 1) ? 9 : 1;
1546 err = kvm_load_segment_descriptor(ctxt->vcpu, sel,
1547 type_bits, c->modrm_reg);
1548 } else {
1549 printk(KERN_INFO "Invalid segreg in modrm byte 0x%02x\n",
1550 c->modrm);
1551 goto cannot_emulate;
1552 }
1553
1554 if (err < 0)
1555 goto cannot_emulate;
1556
1557 c->dst.type = OP_NONE; /* Disable writeback. */
1558 break;
1559 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001560 case 0x8f: /* pop (sole member of Grp1a) */
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001561 rc = emulate_grp1a(ctxt, ops);
1562 if (rc != 0)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001563 goto done;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001564 break;
Mohammed Gamalb13354f2008-06-15 19:37:38 +03001565 case 0x90: /* nop / xchg r8,rax */
1566 if (!(c->rex_prefix & 1)) { /* nop */
1567 c->dst.type = OP_NONE;
1568 break;
1569 }
1570 case 0x91 ... 0x97: /* xchg reg,rax */
1571 c->src.type = c->dst.type = OP_REG;
1572 c->src.bytes = c->dst.bytes = c->op_bytes;
1573 c->src.ptr = (unsigned long *) &c->regs[VCPU_REGS_RAX];
1574 c->src.val = *(c->src.ptr);
1575 goto xchg;
Nitin A Kamblefd2a7602007-08-28 18:22:47 -07001576 case 0x9c: /* pushf */
Laurent Vivier05f086f2007-09-24 11:10:55 +02001577 c->src.val = (unsigned long) ctxt->eflags;
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001578 emulate_push(ctxt);
1579 break;
Nitin A Kamble535eabc2007-09-15 10:45:05 +03001580 case 0x9d: /* popf */
Laurent Vivier05f086f2007-09-24 11:10:55 +02001581 c->dst.ptr = (unsigned long *) &ctxt->eflags;
Nitin A Kamble535eabc2007-09-15 10:45:05 +03001582 goto pop_instruction;
Avi Kivity018a98d2007-11-27 19:30:56 +02001583 case 0xa0 ... 0xa1: /* mov */
1584 c->dst.ptr = (unsigned long *)&c->regs[VCPU_REGS_RAX];
1585 c->dst.val = c->src.val;
1586 break;
1587 case 0xa2 ... 0xa3: /* mov */
1588 c->dst.val = (unsigned long)c->regs[VCPU_REGS_RAX];
1589 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001590 case 0xa4 ... 0xa5: /* movs */
Laurent Viviere4e03de2007-09-18 11:52:50 +02001591 c->dst.type = OP_MEM;
1592 c->dst.bytes = (c->d & ByteOp) ? 1 : c->op_bytes;
Harvey Harrisone4706772008-02-19 07:40:38 -08001593 c->dst.ptr = (unsigned long *)register_address(c,
Laurent Viviere4e03de2007-09-18 11:52:50 +02001594 ctxt->es_base,
1595 c->regs[VCPU_REGS_RDI]);
Harvey Harrisone4706772008-02-19 07:40:38 -08001596 if ((rc = ops->read_emulated(register_address(c,
Laurent Viviere4e03de2007-09-18 11:52:50 +02001597 c->override_base ? *c->override_base :
1598 ctxt->ds_base,
1599 c->regs[VCPU_REGS_RSI]),
1600 &c->dst.val,
1601 c->dst.bytes, ctxt->vcpu)) != 0)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001602 goto done;
Harvey Harrison7a9572752008-02-19 07:40:41 -08001603 register_address_increment(c, &c->regs[VCPU_REGS_RSI],
Laurent Vivier05f086f2007-09-24 11:10:55 +02001604 (ctxt->eflags & EFLG_DF) ? -c->dst.bytes
Laurent Viviere4e03de2007-09-18 11:52:50 +02001605 : c->dst.bytes);
Harvey Harrison7a9572752008-02-19 07:40:41 -08001606 register_address_increment(c, &c->regs[VCPU_REGS_RDI],
Laurent Vivier05f086f2007-09-24 11:10:55 +02001607 (ctxt->eflags & EFLG_DF) ? -c->dst.bytes
Laurent Viviere4e03de2007-09-18 11:52:50 +02001608 : c->dst.bytes);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001609 break;
1610 case 0xa6 ... 0xa7: /* cmps */
Guillaume Thouvenind7e51172007-11-26 13:49:09 +01001611 c->src.type = OP_NONE; /* Disable writeback. */
1612 c->src.bytes = (c->d & ByteOp) ? 1 : c->op_bytes;
Harvey Harrisone4706772008-02-19 07:40:38 -08001613 c->src.ptr = (unsigned long *)register_address(c,
Guillaume Thouvenind7e51172007-11-26 13:49:09 +01001614 c->override_base ? *c->override_base :
1615 ctxt->ds_base,
1616 c->regs[VCPU_REGS_RSI]);
1617 if ((rc = ops->read_emulated((unsigned long)c->src.ptr,
1618 &c->src.val,
1619 c->src.bytes,
1620 ctxt->vcpu)) != 0)
1621 goto done;
1622
1623 c->dst.type = OP_NONE; /* Disable writeback. */
1624 c->dst.bytes = (c->d & ByteOp) ? 1 : c->op_bytes;
Harvey Harrisone4706772008-02-19 07:40:38 -08001625 c->dst.ptr = (unsigned long *)register_address(c,
Guillaume Thouvenind7e51172007-11-26 13:49:09 +01001626 ctxt->es_base,
1627 c->regs[VCPU_REGS_RDI]);
1628 if ((rc = ops->read_emulated((unsigned long)c->dst.ptr,
1629 &c->dst.val,
1630 c->dst.bytes,
1631 ctxt->vcpu)) != 0)
1632 goto done;
1633
1634 DPRINTF("cmps: mem1=0x%p mem2=0x%p\n", c->src.ptr, c->dst.ptr);
1635
1636 emulate_2op_SrcV("cmp", c->src, c->dst, ctxt->eflags);
1637
Harvey Harrison7a9572752008-02-19 07:40:41 -08001638 register_address_increment(c, &c->regs[VCPU_REGS_RSI],
Guillaume Thouvenind7e51172007-11-26 13:49:09 +01001639 (ctxt->eflags & EFLG_DF) ? -c->src.bytes
1640 : c->src.bytes);
Harvey Harrison7a9572752008-02-19 07:40:41 -08001641 register_address_increment(c, &c->regs[VCPU_REGS_RDI],
Guillaume Thouvenind7e51172007-11-26 13:49:09 +01001642 (ctxt->eflags & EFLG_DF) ? -c->dst.bytes
1643 : c->dst.bytes);
1644
1645 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001646 case 0xaa ... 0xab: /* stos */
Laurent Viviere4e03de2007-09-18 11:52:50 +02001647 c->dst.type = OP_MEM;
1648 c->dst.bytes = (c->d & ByteOp) ? 1 : c->op_bytes;
Harvey Harrisone4706772008-02-19 07:40:38 -08001649 c->dst.ptr = (unsigned long *)register_address(c,
Sheng Yanga7e6c882007-11-15 14:52:28 +08001650 ctxt->es_base,
1651 c->regs[VCPU_REGS_RDI]);
Laurent Viviere4e03de2007-09-18 11:52:50 +02001652 c->dst.val = c->regs[VCPU_REGS_RAX];
Harvey Harrison7a9572752008-02-19 07:40:41 -08001653 register_address_increment(c, &c->regs[VCPU_REGS_RDI],
Laurent Vivier05f086f2007-09-24 11:10:55 +02001654 (ctxt->eflags & EFLG_DF) ? -c->dst.bytes
Laurent Viviere4e03de2007-09-18 11:52:50 +02001655 : c->dst.bytes);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001656 break;
1657 case 0xac ... 0xad: /* lods */
Laurent Viviere4e03de2007-09-18 11:52:50 +02001658 c->dst.type = OP_REG;
1659 c->dst.bytes = (c->d & ByteOp) ? 1 : c->op_bytes;
1660 c->dst.ptr = (unsigned long *)&c->regs[VCPU_REGS_RAX];
Harvey Harrisone4706772008-02-19 07:40:38 -08001661 if ((rc = ops->read_emulated(register_address(c,
Sheng Yanga7e6c882007-11-15 14:52:28 +08001662 c->override_base ? *c->override_base :
1663 ctxt->ds_base,
1664 c->regs[VCPU_REGS_RSI]),
1665 &c->dst.val,
1666 c->dst.bytes,
1667 ctxt->vcpu)) != 0)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001668 goto done;
Harvey Harrison7a9572752008-02-19 07:40:41 -08001669 register_address_increment(c, &c->regs[VCPU_REGS_RSI],
Laurent Vivier05f086f2007-09-24 11:10:55 +02001670 (ctxt->eflags & EFLG_DF) ? -c->dst.bytes
Laurent Viviere4e03de2007-09-18 11:52:50 +02001671 : c->dst.bytes);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001672 break;
1673 case 0xae ... 0xaf: /* scas */
1674 DPRINTF("Urk! I don't handle SCAS.\n");
1675 goto cannot_emulate;
Guillaume Thouvenin615ac122008-05-27 10:19:16 +02001676 case 0xb8: /* mov r, imm */
1677 goto mov;
Avi Kivity018a98d2007-11-27 19:30:56 +02001678 case 0xc0 ... 0xc1:
1679 emulate_grp2(ctxt);
1680 break;
Avi Kivity111de5d2007-11-27 19:14:21 +02001681 case 0xc3: /* ret */
1682 c->dst.ptr = &c->eip;
1683 goto pop_instruction;
Avi Kivity018a98d2007-11-27 19:30:56 +02001684 case 0xc6 ... 0xc7: /* mov (sole member of Grp11) */
1685 mov:
1686 c->dst.val = c->src.val;
1687 break;
1688 case 0xd0 ... 0xd1: /* Grp2 */
1689 c->src.val = 1;
1690 emulate_grp2(ctxt);
1691 break;
1692 case 0xd2 ... 0xd3: /* Grp2 */
1693 c->src.val = c->regs[VCPU_REGS_RCX];
1694 emulate_grp2(ctxt);
1695 break;
Nitin A Kamble1a52e052007-09-18 16:34:25 -07001696 case 0xe8: /* call (near) */ {
1697 long int rel;
Laurent Viviere4e03de2007-09-18 11:52:50 +02001698 switch (c->op_bytes) {
Nitin A Kamble1a52e052007-09-18 16:34:25 -07001699 case 2:
Laurent Viviere4e03de2007-09-18 11:52:50 +02001700 rel = insn_fetch(s16, 2, c->eip);
Nitin A Kamble1a52e052007-09-18 16:34:25 -07001701 break;
1702 case 4:
Laurent Viviere4e03de2007-09-18 11:52:50 +02001703 rel = insn_fetch(s32, 4, c->eip);
Nitin A Kamble1a52e052007-09-18 16:34:25 -07001704 break;
Nitin A Kamble1a52e052007-09-18 16:34:25 -07001705 default:
1706 DPRINTF("Call: Invalid op_bytes\n");
1707 goto cannot_emulate;
1708 }
Laurent Viviere4e03de2007-09-18 11:52:50 +02001709 c->src.val = (unsigned long) c->eip;
Harvey Harrison7a9572752008-02-19 07:40:41 -08001710 jmp_rel(c, rel);
Laurent Viviere4e03de2007-09-18 11:52:50 +02001711 c->op_bytes = c->ad_bytes;
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001712 emulate_push(ctxt);
1713 break;
Nitin A Kamble1a52e052007-09-18 16:34:25 -07001714 }
1715 case 0xe9: /* jmp rel */
Guillaume Thouvenin954cd362008-05-27 10:19:08 +02001716 goto jmp;
1717 case 0xea: /* jmp far */ {
1718 uint32_t eip;
1719 uint16_t sel;
1720
1721 switch (c->op_bytes) {
1722 case 2:
1723 eip = insn_fetch(u16, 2, c->eip);
1724 break;
1725 case 4:
1726 eip = insn_fetch(u32, 4, c->eip);
1727 break;
1728 default:
1729 DPRINTF("jmp far: Invalid op_bytes\n");
1730 goto cannot_emulate;
1731 }
1732 sel = insn_fetch(u16, 2, c->eip);
1733 if (kvm_load_segment_descriptor(ctxt->vcpu, sel, 9, VCPU_SREG_CS) < 0) {
1734 DPRINTF("jmp far: Failed to load CS descriptor\n");
1735 goto cannot_emulate;
1736 }
1737
1738 c->eip = eip;
1739 break;
1740 }
1741 case 0xeb:
1742 jmp: /* jmp rel short */
Harvey Harrison7a9572752008-02-19 07:40:41 -08001743 jmp_rel(c, c->src.val);
Laurent Viviera01af5e2007-09-24 11:10:56 +02001744 c->dst.type = OP_NONE; /* Disable writeback. */
Nitin A Kamble1a52e052007-09-18 16:34:25 -07001745 break;
Avi Kivity111de5d2007-11-27 19:14:21 +02001746 case 0xf4: /* hlt */
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001747 ctxt->vcpu->arch.halt_request = 1;
Avi Kivity111de5d2007-11-27 19:14:21 +02001748 goto done;
1749 case 0xf5: /* cmc */
1750 /* complement carry flag from eflags reg */
1751 ctxt->eflags ^= EFLG_CF;
1752 c->dst.type = OP_NONE; /* Disable writeback. */
1753 break;
Avi Kivity018a98d2007-11-27 19:30:56 +02001754 case 0xf6 ... 0xf7: /* Grp3 */
1755 rc = emulate_grp3(ctxt, ops);
1756 if (rc != 0)
1757 goto done;
1758 break;
Avi Kivity111de5d2007-11-27 19:14:21 +02001759 case 0xf8: /* clc */
1760 ctxt->eflags &= ~EFLG_CF;
1761 c->dst.type = OP_NONE; /* Disable writeback. */
1762 break;
1763 case 0xfa: /* cli */
1764 ctxt->eflags &= ~X86_EFLAGS_IF;
1765 c->dst.type = OP_NONE; /* Disable writeback. */
1766 break;
1767 case 0xfb: /* sti */
1768 ctxt->eflags |= X86_EFLAGS_IF;
1769 c->dst.type = OP_NONE; /* Disable writeback. */
1770 break;
Avi Kivity018a98d2007-11-27 19:30:56 +02001771 case 0xfe ... 0xff: /* Grp4/Grp5 */
1772 rc = emulate_grp45(ctxt, ops);
1773 if (rc != 0)
1774 goto done;
1775 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001776 }
Avi Kivity018a98d2007-11-27 19:30:56 +02001777
1778writeback:
1779 rc = writeback(ctxt, ops);
1780 if (rc != 0)
1781 goto done;
1782
1783 /* Commit shadow register state. */
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001784 memcpy(ctxt->vcpu->arch.regs, c->regs, sizeof c->regs);
1785 ctxt->vcpu->arch.rip = c->eip;
Avi Kivity018a98d2007-11-27 19:30:56 +02001786
1787done:
1788 if (rc == X86EMUL_UNHANDLEABLE) {
1789 c->eip = saved_eip;
1790 return -1;
1791 }
1792 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001793
1794twobyte_insn:
Laurent Viviere4e03de2007-09-18 11:52:50 +02001795 switch (c->b) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001796 case 0x01: /* lgdt, lidt, lmsw */
Laurent Viviere4e03de2007-09-18 11:52:50 +02001797 switch (c->modrm_reg) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001798 u16 size;
1799 unsigned long address;
1800
Anthony Liguoriaca7f962007-09-17 14:57:49 -05001801 case 0: /* vmcall */
Laurent Viviere4e03de2007-09-18 11:52:50 +02001802 if (c->modrm_mod != 3 || c->modrm_rm != 1)
Anthony Liguoriaca7f962007-09-17 14:57:49 -05001803 goto cannot_emulate;
1804
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05001805 rc = kvm_fix_hypercall(ctxt->vcpu);
1806 if (rc)
1807 goto done;
1808
Avi Kivity33e38852008-05-21 15:34:25 +03001809 /* Let the processor re-execute the fixed hypercall */
1810 c->eip = ctxt->vcpu->arch.rip;
Avi Kivity16286d02008-04-14 14:40:50 +03001811 /* Disable writeback. */
1812 c->dst.type = OP_NONE;
Anthony Liguoriaca7f962007-09-17 14:57:49 -05001813 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001814 case 2: /* lgdt */
Laurent Viviere4e03de2007-09-18 11:52:50 +02001815 rc = read_descriptor(ctxt, ops, c->src.ptr,
1816 &size, &address, c->op_bytes);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001817 if (rc)
1818 goto done;
1819 realmode_lgdt(ctxt->vcpu, size, address);
Avi Kivity16286d02008-04-14 14:40:50 +03001820 /* Disable writeback. */
1821 c->dst.type = OP_NONE;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001822 break;
Anthony Liguoriaca7f962007-09-17 14:57:49 -05001823 case 3: /* lidt/vmmcall */
Laurent Viviere4e03de2007-09-18 11:52:50 +02001824 if (c->modrm_mod == 3 && c->modrm_rm == 1) {
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05001825 rc = kvm_fix_hypercall(ctxt->vcpu);
1826 if (rc)
1827 goto done;
1828 kvm_emulate_hypercall(ctxt->vcpu);
Anthony Liguoriaca7f962007-09-17 14:57:49 -05001829 } else {
Laurent Viviere4e03de2007-09-18 11:52:50 +02001830 rc = read_descriptor(ctxt, ops, c->src.ptr,
Anthony Liguoriaca7f962007-09-17 14:57:49 -05001831 &size, &address,
Laurent Viviere4e03de2007-09-18 11:52:50 +02001832 c->op_bytes);
Anthony Liguoriaca7f962007-09-17 14:57:49 -05001833 if (rc)
1834 goto done;
1835 realmode_lidt(ctxt->vcpu, size, address);
1836 }
Avi Kivity16286d02008-04-14 14:40:50 +03001837 /* Disable writeback. */
1838 c->dst.type = OP_NONE;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001839 break;
1840 case 4: /* smsw */
Avi Kivity16286d02008-04-14 14:40:50 +03001841 c->dst.bytes = 2;
1842 c->dst.val = realmode_get_cr(ctxt->vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001843 break;
1844 case 6: /* lmsw */
Avi Kivity16286d02008-04-14 14:40:50 +03001845 realmode_lmsw(ctxt->vcpu, (u16)c->src.val,
1846 &ctxt->eflags);
Avi Kivitydc7457e2008-04-30 16:13:36 +03001847 c->dst.type = OP_NONE;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001848 break;
1849 case 7: /* invlpg*/
Sheng Yange8d8d7f2007-11-16 16:29:15 +08001850 emulate_invlpg(ctxt->vcpu, memop);
Avi Kivity16286d02008-04-14 14:40:50 +03001851 /* Disable writeback. */
1852 c->dst.type = OP_NONE;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001853 break;
1854 default:
1855 goto cannot_emulate;
1856 }
1857 break;
Avi Kivity018a98d2007-11-27 19:30:56 +02001858 case 0x06:
1859 emulate_clts(ctxt->vcpu);
1860 c->dst.type = OP_NONE;
1861 break;
1862 case 0x08: /* invd */
1863 case 0x09: /* wbinvd */
1864 case 0x0d: /* GrpP (prefetch) */
1865 case 0x18: /* Grp16 (prefetch/nop) */
1866 c->dst.type = OP_NONE;
1867 break;
1868 case 0x20: /* mov cr, reg */
1869 if (c->modrm_mod != 3)
1870 goto cannot_emulate;
1871 c->regs[c->modrm_rm] =
1872 realmode_get_cr(ctxt->vcpu, c->modrm_reg);
1873 c->dst.type = OP_NONE; /* no writeback */
1874 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001875 case 0x21: /* mov from dr to reg */
Laurent Viviere4e03de2007-09-18 11:52:50 +02001876 if (c->modrm_mod != 3)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001877 goto cannot_emulate;
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001878 rc = emulator_get_dr(ctxt, c->modrm_reg, &c->regs[c->modrm_rm]);
Laurent Viviera01af5e2007-09-24 11:10:56 +02001879 if (rc)
1880 goto cannot_emulate;
1881 c->dst.type = OP_NONE; /* no writeback */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001882 break;
Avi Kivity018a98d2007-11-27 19:30:56 +02001883 case 0x22: /* mov reg, cr */
1884 if (c->modrm_mod != 3)
1885 goto cannot_emulate;
1886 realmode_set_cr(ctxt->vcpu,
1887 c->modrm_reg, c->modrm_val, &ctxt->eflags);
1888 c->dst.type = OP_NONE;
1889 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001890 case 0x23: /* mov from reg to dr */
Laurent Viviere4e03de2007-09-18 11:52:50 +02001891 if (c->modrm_mod != 3)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001892 goto cannot_emulate;
Laurent Viviere4e03de2007-09-18 11:52:50 +02001893 rc = emulator_set_dr(ctxt, c->modrm_reg,
1894 c->regs[c->modrm_rm]);
Laurent Viviera01af5e2007-09-24 11:10:56 +02001895 if (rc)
1896 goto cannot_emulate;
1897 c->dst.type = OP_NONE; /* no writeback */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001898 break;
Avi Kivity018a98d2007-11-27 19:30:56 +02001899 case 0x30:
1900 /* wrmsr */
1901 msr_data = (u32)c->regs[VCPU_REGS_RAX]
1902 | ((u64)c->regs[VCPU_REGS_RDX] << 32);
1903 rc = kvm_set_msr(ctxt->vcpu, c->regs[VCPU_REGS_RCX], msr_data);
1904 if (rc) {
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02001905 kvm_inject_gp(ctxt->vcpu, 0);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001906 c->eip = ctxt->vcpu->arch.rip;
Avi Kivity018a98d2007-11-27 19:30:56 +02001907 }
1908 rc = X86EMUL_CONTINUE;
1909 c->dst.type = OP_NONE;
1910 break;
1911 case 0x32:
1912 /* rdmsr */
1913 rc = kvm_get_msr(ctxt->vcpu, c->regs[VCPU_REGS_RCX], &msr_data);
1914 if (rc) {
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02001915 kvm_inject_gp(ctxt->vcpu, 0);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001916 c->eip = ctxt->vcpu->arch.rip;
Avi Kivity018a98d2007-11-27 19:30:56 +02001917 } else {
1918 c->regs[VCPU_REGS_RAX] = (u32)msr_data;
1919 c->regs[VCPU_REGS_RDX] = msr_data >> 32;
1920 }
1921 rc = X86EMUL_CONTINUE;
1922 c->dst.type = OP_NONE;
1923 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001924 case 0x40 ... 0x4f: /* cmov */
Laurent Viviere4e03de2007-09-18 11:52:50 +02001925 c->dst.val = c->dst.orig_val = c->src.val;
Laurent Viviera01af5e2007-09-24 11:10:56 +02001926 if (!test_cc(c->b, ctxt->eflags))
1927 c->dst.type = OP_NONE; /* no writeback */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001928 break;
Avi Kivity018a98d2007-11-27 19:30:56 +02001929 case 0x80 ... 0x8f: /* jnz rel, etc*/ {
1930 long int rel;
1931
1932 switch (c->op_bytes) {
1933 case 2:
1934 rel = insn_fetch(s16, 2, c->eip);
1935 break;
1936 case 4:
1937 rel = insn_fetch(s32, 4, c->eip);
1938 break;
1939 case 8:
1940 rel = insn_fetch(s64, 8, c->eip);
1941 break;
1942 default:
1943 DPRINTF("jnz: Invalid op_bytes\n");
1944 goto cannot_emulate;
1945 }
1946 if (test_cc(c->b, ctxt->eflags))
Harvey Harrison7a9572752008-02-19 07:40:41 -08001947 jmp_rel(c, rel);
Avi Kivity018a98d2007-11-27 19:30:56 +02001948 c->dst.type = OP_NONE;
1949 break;
1950 }
Nitin A Kamble7de75242007-09-15 10:13:07 +03001951 case 0xa3:
1952 bt: /* bt */
Qing Hee4f8e032007-09-24 17:22:13 +08001953 c->dst.type = OP_NONE;
Laurent Viviere4e03de2007-09-18 11:52:50 +02001954 /* only subword offset */
1955 c->src.val &= (c->dst.bytes << 3) - 1;
Laurent Vivier05f086f2007-09-24 11:10:55 +02001956 emulate_2op_SrcV_nobyte("bt", c->src, c->dst, ctxt->eflags);
Nitin A Kamble7de75242007-09-15 10:13:07 +03001957 break;
1958 case 0xab:
1959 bts: /* bts */
Laurent Viviere4e03de2007-09-18 11:52:50 +02001960 /* only subword offset */
1961 c->src.val &= (c->dst.bytes << 3) - 1;
Laurent Vivier05f086f2007-09-24 11:10:55 +02001962 emulate_2op_SrcV_nobyte("bts", c->src, c->dst, ctxt->eflags);
Nitin A Kamble7de75242007-09-15 10:13:07 +03001963 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001964 case 0xb0 ... 0xb1: /* cmpxchg */
1965 /*
1966 * Save real source value, then compare EAX against
1967 * destination.
1968 */
Laurent Viviere4e03de2007-09-18 11:52:50 +02001969 c->src.orig_val = c->src.val;
1970 c->src.val = c->regs[VCPU_REGS_RAX];
Laurent Vivier05f086f2007-09-24 11:10:55 +02001971 emulate_2op_SrcV("cmp", c->src, c->dst, ctxt->eflags);
1972 if (ctxt->eflags & EFLG_ZF) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001973 /* Success: write back to memory. */
Laurent Viviere4e03de2007-09-18 11:52:50 +02001974 c->dst.val = c->src.orig_val;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001975 } else {
1976 /* Failure: write the value we saw to EAX. */
Laurent Viviere4e03de2007-09-18 11:52:50 +02001977 c->dst.type = OP_REG;
1978 c->dst.ptr = (unsigned long *)&c->regs[VCPU_REGS_RAX];
Avi Kivity6aa8b732006-12-10 02:21:36 -08001979 }
1980 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001981 case 0xb3:
1982 btr: /* btr */
Laurent Viviere4e03de2007-09-18 11:52:50 +02001983 /* only subword offset */
1984 c->src.val &= (c->dst.bytes << 3) - 1;
Laurent Vivier05f086f2007-09-24 11:10:55 +02001985 emulate_2op_SrcV_nobyte("btr", c->src, c->dst, ctxt->eflags);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001986 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001987 case 0xb6 ... 0xb7: /* movzx */
Laurent Viviere4e03de2007-09-18 11:52:50 +02001988 c->dst.bytes = c->op_bytes;
1989 c->dst.val = (c->d & ByteOp) ? (u8) c->src.val
1990 : (u16) c->src.val;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001991 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001992 case 0xba: /* Grp8 */
Laurent Viviere4e03de2007-09-18 11:52:50 +02001993 switch (c->modrm_reg & 3) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001994 case 0:
1995 goto bt;
1996 case 1:
1997 goto bts;
1998 case 2:
1999 goto btr;
2000 case 3:
2001 goto btc;
2002 }
2003 break;
Nitin A Kamble7de75242007-09-15 10:13:07 +03002004 case 0xbb:
2005 btc: /* btc */
Laurent Viviere4e03de2007-09-18 11:52:50 +02002006 /* only subword offset */
2007 c->src.val &= (c->dst.bytes << 3) - 1;
Laurent Vivier05f086f2007-09-24 11:10:55 +02002008 emulate_2op_SrcV_nobyte("btc", c->src, c->dst, ctxt->eflags);
Nitin A Kamble7de75242007-09-15 10:13:07 +03002009 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002010 case 0xbe ... 0xbf: /* movsx */
Laurent Viviere4e03de2007-09-18 11:52:50 +02002011 c->dst.bytes = c->op_bytes;
2012 c->dst.val = (c->d & ByteOp) ? (s8) c->src.val :
2013 (s16) c->src.val;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002014 break;
Sheng Yanga012e652007-10-15 14:24:20 +08002015 case 0xc3: /* movnti */
Laurent Viviere4e03de2007-09-18 11:52:50 +02002016 c->dst.bytes = c->op_bytes;
2017 c->dst.val = (c->op_bytes == 4) ? (u32) c->src.val :
2018 (u64) c->src.val;
Sheng Yanga012e652007-10-15 14:24:20 +08002019 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002020 case 0xc7: /* Grp9 (cmpxchg8b) */
Sheng Yange8d8d7f2007-11-16 16:29:15 +08002021 rc = emulate_grp9(ctxt, ops, memop);
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02002022 if (rc != 0)
2023 goto done;
Avi Kivity018a98d2007-11-27 19:30:56 +02002024 c->dst.type = OP_NONE;
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02002025 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002026 }
2027 goto writeback;
2028
2029cannot_emulate:
Laurent Viviere4e03de2007-09-18 11:52:50 +02002030 DPRINTF("Cannot emulate %02x\n", c->b);
Laurent Vivier34273182007-09-18 11:27:37 +02002031 c->eip = saved_eip;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002032 return -1;
2033}