blob: 944f1f4d4be4cadc6b1d817384c58e8a85bde8ab [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>
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -030029#include "kvm_cache_regs.h"
Avi Kivity6aa8b732006-12-10 02:21:36 -080030#define DPRINTF(x...) do {} while (0)
31#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -080032#include <linux/module.h>
Avi Kivityedf88412007-12-16 11:02:48 +020033#include <asm/kvm_x86_emulate.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080034
35/*
36 * Opcode effective-address decode tables.
37 * Note that we only emulate instructions that have at least one memory
38 * operand (excluding implicit stack references). We assume that stack
39 * references and instruction fetches will never occur in special memory
40 * areas that require emulation. So, for example, 'mov <imm>,<reg>' need
41 * not be handled.
42 */
43
44/* Operand sizes: 8-bit operands or specified/overridden size. */
45#define ByteOp (1<<0) /* 8-bit operands. */
46/* Destination operand type. */
47#define ImplicitOps (1<<1) /* Implicit in opcode. No generic decode. */
48#define DstReg (2<<1) /* Register operand. */
49#define DstMem (3<<1) /* Memory operand. */
50#define DstMask (3<<1)
51/* Source operand type. */
52#define SrcNone (0<<3) /* No source operand. */
53#define SrcImplicit (0<<3) /* Source operand is implicit in the opcode. */
54#define SrcReg (1<<3) /* Register operand. */
55#define SrcMem (2<<3) /* Memory operand. */
56#define SrcMem16 (3<<3) /* Memory operand (16-bit). */
57#define SrcMem32 (4<<3) /* Memory operand (32-bit). */
58#define SrcImm (5<<3) /* Immediate operand. */
59#define SrcImmByte (6<<3) /* 8-bit sign-extended immediate operand. */
60#define SrcMask (7<<3)
61/* Generic ModRM decode. */
62#define ModRM (1<<6)
63/* Destination is only written; never read. */
64#define Mov (1<<7)
Avi Kivity038e51d2007-01-22 20:40:40 -080065#define BitOp (1<<8)
Avi Kivityc7e75a32007-10-28 16:34:25 +020066#define MemAbs (1<<9) /* Memory operand is absolute displacement */
Avi Kivityb9fa9d62007-11-27 19:05:37 +020067#define String (1<<10) /* String instruction (rep capable) */
Avi Kivity6e3d5df2007-12-06 18:14:14 +020068#define Stack (1<<11) /* Stack instruction (push/pop) */
Avi Kivitye09d0822008-01-18 12:38:59 +020069#define Group (1<<14) /* Bits 3:5 of modrm byte extend opcode */
70#define GroupDual (1<<15) /* Alternate decoding of mod == 3 */
71#define GroupMask 0xff /* Group number stored in bits 0:7 */
Avi Kivity6aa8b732006-12-10 02:21:36 -080072
Avi Kivity43bb19c2008-01-18 12:46:50 +020073enum {
Avi Kivity1d6ad202008-01-23 22:26:09 +020074 Group1_80, Group1_81, Group1_82, Group1_83,
Avi Kivityd95058a2008-01-18 13:36:50 +020075 Group1A, Group3_Byte, Group3, Group4, Group5, Group7,
Avi Kivity43bb19c2008-01-18 12:46:50 +020076};
77
Avi Kivityc7e75a32007-10-28 16:34:25 +020078static u16 opcode_table[256] = {
Avi Kivity6aa8b732006-12-10 02:21:36 -080079 /* 0x00 - 0x07 */
80 ByteOp | DstMem | SrcReg | ModRM, DstMem | SrcReg | ModRM,
81 ByteOp | DstReg | SrcMem | ModRM, DstReg | SrcMem | ModRM,
82 0, 0, 0, 0,
83 /* 0x08 - 0x0F */
84 ByteOp | DstMem | SrcReg | ModRM, DstMem | SrcReg | ModRM,
85 ByteOp | DstReg | SrcMem | ModRM, DstReg | SrcMem | ModRM,
86 0, 0, 0, 0,
87 /* 0x10 - 0x17 */
88 ByteOp | DstMem | SrcReg | ModRM, DstMem | SrcReg | ModRM,
89 ByteOp | DstReg | SrcMem | ModRM, DstReg | SrcMem | ModRM,
90 0, 0, 0, 0,
91 /* 0x18 - 0x1F */
92 ByteOp | DstMem | SrcReg | ModRM, DstMem | SrcReg | ModRM,
93 ByteOp | DstReg | SrcMem | ModRM, DstReg | SrcMem | ModRM,
94 0, 0, 0, 0,
95 /* 0x20 - 0x27 */
96 ByteOp | DstMem | SrcReg | ModRM, DstMem | SrcReg | ModRM,
97 ByteOp | DstReg | SrcMem | ModRM, DstReg | SrcMem | ModRM,
Nitin A Kamble19eb9382007-08-17 15:17:41 +030098 SrcImmByte, SrcImm, 0, 0,
Avi Kivity6aa8b732006-12-10 02:21:36 -080099 /* 0x28 - 0x2F */
100 ByteOp | DstMem | SrcReg | ModRM, DstMem | SrcReg | ModRM,
101 ByteOp | DstReg | SrcMem | ModRM, DstReg | SrcMem | ModRM,
102 0, 0, 0, 0,
103 /* 0x30 - 0x37 */
104 ByteOp | DstMem | SrcReg | ModRM, DstMem | SrcReg | ModRM,
105 ByteOp | DstReg | SrcMem | ModRM, DstReg | SrcMem | ModRM,
106 0, 0, 0, 0,
107 /* 0x38 - 0x3F */
108 ByteOp | DstMem | SrcReg | ModRM, DstMem | SrcReg | ModRM,
109 ByteOp | DstReg | SrcMem | ModRM, DstReg | SrcMem | ModRM,
110 0, 0, 0, 0,
Nitin A Kambled77a2502007-10-12 17:40:33 -0700111 /* 0x40 - 0x47 */
Avi Kivity33615aa2007-10-31 11:15:56 +0200112 DstReg, DstReg, DstReg, DstReg, DstReg, DstReg, DstReg, DstReg,
Nitin A Kambled77a2502007-10-12 17:40:33 -0700113 /* 0x48 - 0x4F */
Avi Kivity33615aa2007-10-31 11:15:56 +0200114 DstReg, DstReg, DstReg, DstReg, DstReg, DstReg, DstReg, DstReg,
Nitin A Kamble7f0aaee2007-06-19 11:16:04 +0300115 /* 0x50 - 0x57 */
Avi Kivity6e3d5df2007-12-06 18:14:14 +0200116 SrcReg | Stack, SrcReg | Stack, SrcReg | Stack, SrcReg | Stack,
117 SrcReg | Stack, SrcReg | Stack, SrcReg | Stack, SrcReg | Stack,
Nitin A Kamble7f0aaee2007-06-19 11:16:04 +0300118 /* 0x58 - 0x5F */
Avi Kivity6e3d5df2007-12-06 18:14:14 +0200119 DstReg | Stack, DstReg | Stack, DstReg | Stack, DstReg | Stack,
120 DstReg | Stack, DstReg | Stack, DstReg | Stack, DstReg | Stack,
Nitin A Kamble7d316912007-08-28 17:58:52 -0700121 /* 0x60 - 0x67 */
Avi Kivity6aa8b732006-12-10 02:21:36 -0800122 0, 0, 0, DstReg | SrcMem32 | ModRM | Mov /* movsxd (x86/64) */ ,
Nitin A Kamble7d316912007-08-28 17:58:52 -0700123 0, 0, 0, 0,
124 /* 0x68 - 0x6F */
Avi Kivity91ed7a02008-05-29 14:38:38 +0300125 SrcImm | Mov | Stack, 0, SrcImmByte | Mov | Stack, 0,
Laurent Viviere70669a2007-08-05 10:36:40 +0300126 SrcNone | ByteOp | ImplicitOps, SrcNone | ImplicitOps, /* insb, insw/insd */
127 SrcNone | ByteOp | ImplicitOps, SrcNone | ImplicitOps, /* outsb, outsw/outsd */
Nitin A Kamble55bebde2007-09-15 10:25:41 +0300128 /* 0x70 - 0x77 */
129 ImplicitOps, ImplicitOps, ImplicitOps, ImplicitOps,
130 ImplicitOps, ImplicitOps, ImplicitOps, ImplicitOps,
131 /* 0x78 - 0x7F */
132 ImplicitOps, ImplicitOps, ImplicitOps, ImplicitOps,
133 ImplicitOps, ImplicitOps, ImplicitOps, ImplicitOps,
Avi Kivity6aa8b732006-12-10 02:21:36 -0800134 /* 0x80 - 0x87 */
Avi Kivity1d6ad202008-01-23 22:26:09 +0200135 Group | Group1_80, Group | Group1_81,
136 Group | Group1_82, Group | Group1_83,
Avi Kivity6aa8b732006-12-10 02:21:36 -0800137 ByteOp | DstMem | SrcReg | ModRM, DstMem | SrcReg | ModRM,
138 ByteOp | DstMem | SrcReg | ModRM, DstMem | SrcReg | ModRM,
139 /* 0x88 - 0x8F */
140 ByteOp | DstMem | SrcReg | ModRM | Mov, DstMem | SrcReg | ModRM | Mov,
141 ByteOp | DstReg | SrcMem | ModRM | Mov, DstReg | SrcMem | ModRM | Mov,
Guillaume Thouvenin38d5bc62008-05-27 15:13:28 +0200142 DstMem | SrcReg | ModRM | Mov, ModRM | DstReg,
Guillaume Thouvenin42571982008-05-27 14:49:15 +0200143 DstReg | SrcMem | ModRM | Mov, Group | Group1A,
Mohammed Gamalb13354f2008-06-15 19:37:38 +0300144 /* 0x90 - 0x97 */
145 DstReg, DstReg, DstReg, DstReg, DstReg, DstReg, DstReg, DstReg,
146 /* 0x98 - 0x9F */
Avi Kivity6e3d5df2007-12-06 18:14:14 +0200147 0, 0, 0, 0, ImplicitOps | Stack, ImplicitOps | Stack, 0, 0,
Avi Kivity6aa8b732006-12-10 02:21:36 -0800148 /* 0xA0 - 0xA7 */
Avi Kivityc7e75a32007-10-28 16:34:25 +0200149 ByteOp | DstReg | SrcMem | Mov | MemAbs, DstReg | SrcMem | Mov | MemAbs,
150 ByteOp | DstMem | SrcReg | Mov | MemAbs, DstMem | SrcReg | Mov | MemAbs,
Avi Kivityb9fa9d62007-11-27 19:05:37 +0200151 ByteOp | ImplicitOps | Mov | String, ImplicitOps | Mov | String,
152 ByteOp | ImplicitOps | String, ImplicitOps | String,
Avi Kivity6aa8b732006-12-10 02:21:36 -0800153 /* 0xA8 - 0xAF */
Avi Kivityb9fa9d62007-11-27 19:05:37 +0200154 0, 0, ByteOp | ImplicitOps | Mov | String, ImplicitOps | Mov | String,
155 ByteOp | ImplicitOps | Mov | String, ImplicitOps | Mov | String,
156 ByteOp | ImplicitOps | String, ImplicitOps | String,
Mohammed Gamala5e2e822008-08-27 05:02:56 +0300157 /* 0xB0 - 0xB7 */
158 ByteOp | DstReg | SrcImm | Mov, ByteOp | DstReg | SrcImm | Mov,
159 ByteOp | DstReg | SrcImm | Mov, ByteOp | DstReg | SrcImm | Mov,
160 ByteOp | DstReg | SrcImm | Mov, ByteOp | DstReg | SrcImm | Mov,
161 ByteOp | DstReg | SrcImm | Mov, ByteOp | DstReg | SrcImm | Mov,
162 /* 0xB8 - 0xBF */
163 DstReg | SrcImm | Mov, DstReg | SrcImm | Mov,
164 DstReg | SrcImm | Mov, DstReg | SrcImm | Mov,
165 DstReg | SrcImm | Mov, DstReg | SrcImm | Mov,
166 DstReg | SrcImm | Mov, DstReg | SrcImm | Mov,
Avi Kivity6aa8b732006-12-10 02:21:36 -0800167 /* 0xC0 - 0xC7 */
Nitin A Kambled9413cd2007-06-19 11:21:15 +0300168 ByteOp | DstMem | SrcImm | ModRM, DstMem | SrcImmByte | ModRM,
Avi Kivity6e3d5df2007-12-06 18:14:14 +0200169 0, ImplicitOps | Stack, 0, 0,
Nitin A Kambled9413cd2007-06-19 11:21:15 +0300170 ByteOp | DstMem | SrcImm | ModRM | Mov, DstMem | SrcImm | ModRM | Mov,
Avi Kivity6aa8b732006-12-10 02:21:36 -0800171 /* 0xC8 - 0xCF */
172 0, 0, 0, 0, 0, 0, 0, 0,
173 /* 0xD0 - 0xD7 */
174 ByteOp | DstMem | SrcImplicit | ModRM, DstMem | SrcImplicit | ModRM,
175 ByteOp | DstMem | SrcImplicit | ModRM, DstMem | SrcImplicit | ModRM,
176 0, 0, 0, 0,
177 /* 0xD8 - 0xDF */
178 0, 0, 0, 0, 0, 0, 0, 0,
Nitin A Kamble098c9372007-08-19 11:00:36 +0300179 /* 0xE0 - 0xE7 */
180 0, 0, 0, 0, 0, 0, 0, 0,
181 /* 0xE8 - 0xEF */
Guillaume Thouvenin954cd362008-05-27 10:19:08 +0200182 ImplicitOps | Stack, SrcImm | ImplicitOps,
183 ImplicitOps, SrcImmByte | ImplicitOps,
Avi Kivity6e3d5df2007-12-06 18:14:14 +0200184 0, 0, 0, 0,
Avi Kivity6aa8b732006-12-10 02:21:36 -0800185 /* 0xF0 - 0xF7 */
186 0, 0, 0, 0,
Avi Kivity7d858a12008-01-18 12:58:04 +0200187 ImplicitOps, ImplicitOps, Group | Group3_Byte, Group | Group3,
Avi Kivity6aa8b732006-12-10 02:21:36 -0800188 /* 0xF8 - 0xFF */
Nitin A Kambleb284be52007-10-16 18:23:27 -0700189 ImplicitOps, 0, ImplicitOps, ImplicitOps,
Mohammed Gamalfb4616f2008-09-01 04:52:24 +0300190 ImplicitOps, ImplicitOps, Group | Group4, Group | Group5,
Avi Kivity6aa8b732006-12-10 02:21:36 -0800191};
192
Avi Kivity038e51d2007-01-22 20:40:40 -0800193static u16 twobyte_table[256] = {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800194 /* 0x00 - 0x0F */
Avi Kivityd95058a2008-01-18 13:36:50 +0200195 0, Group | GroupDual | Group7, 0, 0, 0, 0, ImplicitOps, 0,
Avi Kivity651a3e22007-10-28 16:09:18 +0200196 ImplicitOps, ImplicitOps, 0, 0, 0, ImplicitOps | ModRM, 0, 0,
Avi Kivity6aa8b732006-12-10 02:21:36 -0800197 /* 0x10 - 0x1F */
198 0, 0, 0, 0, 0, 0, 0, 0, ImplicitOps | ModRM, 0, 0, 0, 0, 0, 0, 0,
199 /* 0x20 - 0x2F */
200 ModRM | ImplicitOps, ModRM, ModRM | ImplicitOps, ModRM, 0, 0, 0, 0,
201 0, 0, 0, 0, 0, 0, 0, 0,
202 /* 0x30 - 0x3F */
Avi Kivity35f3f282007-07-17 14:20:30 +0300203 ImplicitOps, 0, ImplicitOps, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
Avi Kivity6aa8b732006-12-10 02:21:36 -0800204 /* 0x40 - 0x47 */
205 DstReg | SrcMem | ModRM | Mov, DstReg | SrcMem | ModRM | Mov,
206 DstReg | SrcMem | ModRM | Mov, DstReg | SrcMem | ModRM | Mov,
207 DstReg | SrcMem | ModRM | Mov, DstReg | SrcMem | ModRM | Mov,
208 DstReg | SrcMem | ModRM | Mov, DstReg | SrcMem | ModRM | Mov,
209 /* 0x48 - 0x4F */
210 DstReg | SrcMem | ModRM | Mov, DstReg | SrcMem | ModRM | Mov,
211 DstReg | SrcMem | ModRM | Mov, DstReg | SrcMem | ModRM | Mov,
212 DstReg | SrcMem | ModRM | Mov, DstReg | SrcMem | ModRM | Mov,
213 DstReg | SrcMem | ModRM | Mov, DstReg | SrcMem | ModRM | Mov,
214 /* 0x50 - 0x5F */
215 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
216 /* 0x60 - 0x6F */
217 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
218 /* 0x70 - 0x7F */
219 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
220 /* 0x80 - 0x8F */
Nitin A Kamblebbe9abb2007-09-15 10:23:07 +0300221 ImplicitOps, ImplicitOps, ImplicitOps, ImplicitOps,
222 ImplicitOps, ImplicitOps, ImplicitOps, ImplicitOps,
223 ImplicitOps, ImplicitOps, ImplicitOps, ImplicitOps,
224 ImplicitOps, ImplicitOps, ImplicitOps, ImplicitOps,
Avi Kivity6aa8b732006-12-10 02:21:36 -0800225 /* 0x90 - 0x9F */
226 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
227 /* 0xA0 - 0xA7 */
Avi Kivity038e51d2007-01-22 20:40:40 -0800228 0, 0, 0, DstMem | SrcReg | ModRM | BitOp, 0, 0, 0, 0,
Avi Kivity6aa8b732006-12-10 02:21:36 -0800229 /* 0xA8 - 0xAF */
Glauber Costa2a7c5b82008-07-10 17:08:15 -0300230 0, 0, 0, DstMem | SrcReg | ModRM | BitOp, 0, 0, ModRM, 0,
Avi Kivity6aa8b732006-12-10 02:21:36 -0800231 /* 0xB0 - 0xB7 */
232 ByteOp | DstMem | SrcReg | ModRM, DstMem | SrcReg | ModRM, 0,
Avi Kivity038e51d2007-01-22 20:40:40 -0800233 DstMem | SrcReg | ModRM | BitOp,
Avi Kivity6aa8b732006-12-10 02:21:36 -0800234 0, 0, ByteOp | DstReg | SrcMem | ModRM | Mov,
235 DstReg | SrcMem16 | ModRM | Mov,
236 /* 0xB8 - 0xBF */
Avi Kivity038e51d2007-01-22 20:40:40 -0800237 0, 0, DstMem | SrcImmByte | ModRM, DstMem | SrcReg | ModRM | BitOp,
Avi Kivity6aa8b732006-12-10 02:21:36 -0800238 0, 0, ByteOp | DstReg | SrcMem | ModRM | Mov,
239 DstReg | SrcMem16 | ModRM | Mov,
240 /* 0xC0 - 0xCF */
Sheng Yanga012e652007-10-15 14:24:20 +0800241 0, 0, 0, DstMem | SrcReg | ModRM | Mov, 0, 0, 0, ImplicitOps | ModRM,
242 0, 0, 0, 0, 0, 0, 0, 0,
Avi Kivity6aa8b732006-12-10 02:21:36 -0800243 /* 0xD0 - 0xDF */
244 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
245 /* 0xE0 - 0xEF */
246 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
247 /* 0xF0 - 0xFF */
248 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
249};
250
Avi Kivitye09d0822008-01-18 12:38:59 +0200251static u16 group_table[] = {
Avi Kivity1d6ad202008-01-23 22:26:09 +0200252 [Group1_80*8] =
253 ByteOp | DstMem | SrcImm | ModRM, ByteOp | DstMem | SrcImm | ModRM,
254 ByteOp | DstMem | SrcImm | ModRM, ByteOp | DstMem | SrcImm | ModRM,
255 ByteOp | DstMem | SrcImm | ModRM, ByteOp | DstMem | SrcImm | ModRM,
256 ByteOp | DstMem | SrcImm | ModRM, ByteOp | DstMem | SrcImm | ModRM,
257 [Group1_81*8] =
258 DstMem | SrcImm | ModRM, DstMem | SrcImm | ModRM,
259 DstMem | SrcImm | ModRM, DstMem | SrcImm | ModRM,
260 DstMem | SrcImm | ModRM, DstMem | SrcImm | ModRM,
261 DstMem | SrcImm | ModRM, DstMem | SrcImm | ModRM,
262 [Group1_82*8] =
263 ByteOp | DstMem | SrcImm | ModRM, ByteOp | DstMem | SrcImm | ModRM,
264 ByteOp | DstMem | SrcImm | ModRM, ByteOp | DstMem | SrcImm | ModRM,
265 ByteOp | DstMem | SrcImm | ModRM, ByteOp | DstMem | SrcImm | ModRM,
266 ByteOp | DstMem | SrcImm | ModRM, ByteOp | DstMem | SrcImm | ModRM,
267 [Group1_83*8] =
268 DstMem | SrcImmByte | ModRM, DstMem | SrcImmByte | ModRM,
269 DstMem | SrcImmByte | ModRM, DstMem | SrcImmByte | ModRM,
270 DstMem | SrcImmByte | ModRM, DstMem | SrcImmByte | ModRM,
271 DstMem | SrcImmByte | ModRM, DstMem | SrcImmByte | ModRM,
Avi Kivity43bb19c2008-01-18 12:46:50 +0200272 [Group1A*8] =
273 DstMem | SrcNone | ModRM | Mov | Stack, 0, 0, 0, 0, 0, 0, 0,
Avi Kivity7d858a12008-01-18 12:58:04 +0200274 [Group3_Byte*8] =
275 ByteOp | SrcImm | DstMem | ModRM, 0,
276 ByteOp | DstMem | SrcNone | ModRM, ByteOp | DstMem | SrcNone | ModRM,
277 0, 0, 0, 0,
278 [Group3*8] =
roel kluin41afa022008-08-18 21:25:01 -0400279 DstMem | SrcImm | ModRM, 0,
Avi Kivity6eb06cb2008-08-21 17:41:39 +0300280 DstMem | SrcNone | ModRM, DstMem | SrcNone | ModRM,
Avi Kivity7d858a12008-01-18 12:58:04 +0200281 0, 0, 0, 0,
Avi Kivityfd607542008-01-18 13:12:26 +0200282 [Group4*8] =
283 ByteOp | DstMem | SrcNone | ModRM, ByteOp | DstMem | SrcNone | ModRM,
284 0, 0, 0, 0, 0, 0,
285 [Group5*8] =
286 DstMem | SrcNone | ModRM, DstMem | SrcNone | ModRM, 0, 0,
287 SrcMem | ModRM, 0, SrcMem | ModRM | Stack, 0,
Avi Kivityd95058a2008-01-18 13:36:50 +0200288 [Group7*8] =
289 0, 0, ModRM | SrcMem, ModRM | SrcMem,
Avi Kivity16286d02008-04-14 14:40:50 +0300290 SrcNone | ModRM | DstMem | Mov, 0,
291 SrcMem16 | ModRM | Mov, SrcMem | ModRM | ByteOp,
Avi Kivitye09d0822008-01-18 12:38:59 +0200292};
293
294static u16 group2_table[] = {
Avi Kivityd95058a2008-01-18 13:36:50 +0200295 [Group7*8] =
Avi Kivity16286d02008-04-14 14:40:50 +0300296 SrcNone | ModRM, 0, 0, 0,
297 SrcNone | ModRM | DstMem | Mov, 0,
298 SrcMem16 | ModRM | Mov, 0,
Avi Kivitye09d0822008-01-18 12:38:59 +0200299};
300
Avi Kivity6aa8b732006-12-10 02:21:36 -0800301/* EFLAGS bit definitions. */
302#define EFLG_OF (1<<11)
303#define EFLG_DF (1<<10)
304#define EFLG_SF (1<<7)
305#define EFLG_ZF (1<<6)
306#define EFLG_AF (1<<4)
307#define EFLG_PF (1<<2)
308#define EFLG_CF (1<<0)
309
310/*
311 * Instruction emulation:
312 * Most instructions are emulated directly via a fragment of inline assembly
313 * code. This allows us to save/restore EFLAGS and thus very easily pick up
314 * any modified flags.
315 */
316
Avi Kivity05b3e0c2006-12-13 00:33:45 -0800317#if defined(CONFIG_X86_64)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800318#define _LO32 "k" /* force 32-bit operand */
319#define _STK "%%rsp" /* stack pointer */
320#elif defined(__i386__)
321#define _LO32 "" /* force 32-bit operand */
322#define _STK "%%esp" /* stack pointer */
323#endif
324
325/*
326 * These EFLAGS bits are restored from saved value during emulation, and
327 * any changes are written back to the saved value after emulation.
328 */
329#define EFLAGS_MASK (EFLG_OF|EFLG_SF|EFLG_ZF|EFLG_AF|EFLG_PF|EFLG_CF)
330
331/* Before executing instruction: restore necessary bits in EFLAGS. */
Avi Kivitye934c9c2007-12-06 16:15:02 +0200332#define _PRE_EFLAGS(_sav, _msk, _tmp) \
333 /* EFLAGS = (_sav & _msk) | (EFLAGS & ~_msk); _sav &= ~_msk; */ \
334 "movl %"_sav",%"_LO32 _tmp"; " \
335 "push %"_tmp"; " \
336 "push %"_tmp"; " \
337 "movl %"_msk",%"_LO32 _tmp"; " \
338 "andl %"_LO32 _tmp",("_STK"); " \
339 "pushf; " \
340 "notl %"_LO32 _tmp"; " \
341 "andl %"_LO32 _tmp",("_STK"); " \
342 "andl %"_LO32 _tmp","__stringify(BITS_PER_LONG/4)"("_STK"); " \
343 "pop %"_tmp"; " \
344 "orl %"_LO32 _tmp",("_STK"); " \
345 "popf; " \
346 "pop %"_sav"; "
Avi Kivity6aa8b732006-12-10 02:21:36 -0800347
348/* After executing instruction: write-back necessary bits in EFLAGS. */
349#define _POST_EFLAGS(_sav, _msk, _tmp) \
350 /* _sav |= EFLAGS & _msk; */ \
351 "pushf; " \
352 "pop %"_tmp"; " \
353 "andl %"_msk",%"_LO32 _tmp"; " \
354 "orl %"_LO32 _tmp",%"_sav"; "
355
356/* Raw emulation: instruction has two explicit operands. */
357#define __emulate_2op_nobyte(_op,_src,_dst,_eflags,_wx,_wy,_lx,_ly,_qx,_qy) \
358 do { \
359 unsigned long _tmp; \
360 \
361 switch ((_dst).bytes) { \
362 case 2: \
363 __asm__ __volatile__ ( \
Mike Dayd77c26f2007-10-08 09:02:08 -0400364 _PRE_EFLAGS("0", "4", "2") \
Avi Kivity6aa8b732006-12-10 02:21:36 -0800365 _op"w %"_wx"3,%1; " \
Mike Dayd77c26f2007-10-08 09:02:08 -0400366 _POST_EFLAGS("0", "4", "2") \
Avi Kivity6aa8b732006-12-10 02:21:36 -0800367 : "=m" (_eflags), "=m" ((_dst).val), \
368 "=&r" (_tmp) \
Mike Dayd77c26f2007-10-08 09:02:08 -0400369 : _wy ((_src).val), "i" (EFLAGS_MASK)); \
Avi Kivity6aa8b732006-12-10 02:21:36 -0800370 break; \
371 case 4: \
372 __asm__ __volatile__ ( \
Mike Dayd77c26f2007-10-08 09:02:08 -0400373 _PRE_EFLAGS("0", "4", "2") \
Avi Kivity6aa8b732006-12-10 02:21:36 -0800374 _op"l %"_lx"3,%1; " \
Mike Dayd77c26f2007-10-08 09:02:08 -0400375 _POST_EFLAGS("0", "4", "2") \
Avi Kivity6aa8b732006-12-10 02:21:36 -0800376 : "=m" (_eflags), "=m" ((_dst).val), \
377 "=&r" (_tmp) \
Mike Dayd77c26f2007-10-08 09:02:08 -0400378 : _ly ((_src).val), "i" (EFLAGS_MASK)); \
Avi Kivity6aa8b732006-12-10 02:21:36 -0800379 break; \
380 case 8: \
381 __emulate_2op_8byte(_op, _src, _dst, \
382 _eflags, _qx, _qy); \
383 break; \
384 } \
385 } while (0)
386
387#define __emulate_2op(_op,_src,_dst,_eflags,_bx,_by,_wx,_wy,_lx,_ly,_qx,_qy) \
388 do { \
Harvey Harrison77cd3372008-02-19 10:43:11 -0800389 unsigned long __tmp; \
Mike Dayd77c26f2007-10-08 09:02:08 -0400390 switch ((_dst).bytes) { \
Avi Kivity6aa8b732006-12-10 02:21:36 -0800391 case 1: \
392 __asm__ __volatile__ ( \
Mike Dayd77c26f2007-10-08 09:02:08 -0400393 _PRE_EFLAGS("0", "4", "2") \
Avi Kivity6aa8b732006-12-10 02:21:36 -0800394 _op"b %"_bx"3,%1; " \
Mike Dayd77c26f2007-10-08 09:02:08 -0400395 _POST_EFLAGS("0", "4", "2") \
Avi Kivity6aa8b732006-12-10 02:21:36 -0800396 : "=m" (_eflags), "=m" ((_dst).val), \
Harvey Harrison77cd3372008-02-19 10:43:11 -0800397 "=&r" (__tmp) \
Mike Dayd77c26f2007-10-08 09:02:08 -0400398 : _by ((_src).val), "i" (EFLAGS_MASK)); \
Avi Kivity6aa8b732006-12-10 02:21:36 -0800399 break; \
400 default: \
401 __emulate_2op_nobyte(_op, _src, _dst, _eflags, \
402 _wx, _wy, _lx, _ly, _qx, _qy); \
403 break; \
404 } \
405 } while (0)
406
407/* Source operand is byte-sized and may be restricted to just %cl. */
408#define emulate_2op_SrcB(_op, _src, _dst, _eflags) \
409 __emulate_2op(_op, _src, _dst, _eflags, \
410 "b", "c", "b", "c", "b", "c", "b", "c")
411
412/* Source operand is byte, word, long or quad sized. */
413#define emulate_2op_SrcV(_op, _src, _dst, _eflags) \
414 __emulate_2op(_op, _src, _dst, _eflags, \
415 "b", "q", "w", "r", _LO32, "r", "", "r")
416
417/* Source operand is word, long or quad sized. */
418#define emulate_2op_SrcV_nobyte(_op, _src, _dst, _eflags) \
419 __emulate_2op_nobyte(_op, _src, _dst, _eflags, \
420 "w", "r", _LO32, "r", "", "r")
421
422/* Instruction has only one explicit operand (no source operand). */
423#define emulate_1op(_op, _dst, _eflags) \
424 do { \
425 unsigned long _tmp; \
426 \
Mike Dayd77c26f2007-10-08 09:02:08 -0400427 switch ((_dst).bytes) { \
Avi Kivity6aa8b732006-12-10 02:21:36 -0800428 case 1: \
429 __asm__ __volatile__ ( \
Mike Dayd77c26f2007-10-08 09:02:08 -0400430 _PRE_EFLAGS("0", "3", "2") \
Avi Kivity6aa8b732006-12-10 02:21:36 -0800431 _op"b %1; " \
Mike Dayd77c26f2007-10-08 09:02:08 -0400432 _POST_EFLAGS("0", "3", "2") \
Avi Kivity6aa8b732006-12-10 02:21:36 -0800433 : "=m" (_eflags), "=m" ((_dst).val), \
434 "=&r" (_tmp) \
Mike Dayd77c26f2007-10-08 09:02:08 -0400435 : "i" (EFLAGS_MASK)); \
Avi Kivity6aa8b732006-12-10 02:21:36 -0800436 break; \
437 case 2: \
438 __asm__ __volatile__ ( \
Mike Dayd77c26f2007-10-08 09:02:08 -0400439 _PRE_EFLAGS("0", "3", "2") \
Avi Kivity6aa8b732006-12-10 02:21:36 -0800440 _op"w %1; " \
Mike Dayd77c26f2007-10-08 09:02:08 -0400441 _POST_EFLAGS("0", "3", "2") \
Avi Kivity6aa8b732006-12-10 02:21:36 -0800442 : "=m" (_eflags), "=m" ((_dst).val), \
443 "=&r" (_tmp) \
Mike Dayd77c26f2007-10-08 09:02:08 -0400444 : "i" (EFLAGS_MASK)); \
Avi Kivity6aa8b732006-12-10 02:21:36 -0800445 break; \
446 case 4: \
447 __asm__ __volatile__ ( \
Mike Dayd77c26f2007-10-08 09:02:08 -0400448 _PRE_EFLAGS("0", "3", "2") \
Avi Kivity6aa8b732006-12-10 02:21:36 -0800449 _op"l %1; " \
Mike Dayd77c26f2007-10-08 09:02:08 -0400450 _POST_EFLAGS("0", "3", "2") \
Avi Kivity6aa8b732006-12-10 02:21:36 -0800451 : "=m" (_eflags), "=m" ((_dst).val), \
452 "=&r" (_tmp) \
Mike Dayd77c26f2007-10-08 09:02:08 -0400453 : "i" (EFLAGS_MASK)); \
Avi Kivity6aa8b732006-12-10 02:21:36 -0800454 break; \
455 case 8: \
456 __emulate_1op_8byte(_op, _dst, _eflags); \
457 break; \
458 } \
459 } while (0)
460
461/* Emulate an instruction with quadword operands (x86/64 only). */
Avi Kivity05b3e0c2006-12-13 00:33:45 -0800462#if defined(CONFIG_X86_64)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800463#define __emulate_2op_8byte(_op, _src, _dst, _eflags, _qx, _qy) \
464 do { \
465 __asm__ __volatile__ ( \
Mike Dayd77c26f2007-10-08 09:02:08 -0400466 _PRE_EFLAGS("0", "4", "2") \
Avi Kivity6aa8b732006-12-10 02:21:36 -0800467 _op"q %"_qx"3,%1; " \
Mike Dayd77c26f2007-10-08 09:02:08 -0400468 _POST_EFLAGS("0", "4", "2") \
Avi Kivity6aa8b732006-12-10 02:21:36 -0800469 : "=m" (_eflags), "=m" ((_dst).val), "=&r" (_tmp) \
Mike Dayd77c26f2007-10-08 09:02:08 -0400470 : _qy ((_src).val), "i" (EFLAGS_MASK)); \
Avi Kivity6aa8b732006-12-10 02:21:36 -0800471 } while (0)
472
473#define __emulate_1op_8byte(_op, _dst, _eflags) \
474 do { \
475 __asm__ __volatile__ ( \
Mike Dayd77c26f2007-10-08 09:02:08 -0400476 _PRE_EFLAGS("0", "3", "2") \
Avi Kivity6aa8b732006-12-10 02:21:36 -0800477 _op"q %1; " \
Mike Dayd77c26f2007-10-08 09:02:08 -0400478 _POST_EFLAGS("0", "3", "2") \
Avi Kivity6aa8b732006-12-10 02:21:36 -0800479 : "=m" (_eflags), "=m" ((_dst).val), "=&r" (_tmp) \
Mike Dayd77c26f2007-10-08 09:02:08 -0400480 : "i" (EFLAGS_MASK)); \
Avi Kivity6aa8b732006-12-10 02:21:36 -0800481 } while (0)
482
483#elif defined(__i386__)
484#define __emulate_2op_8byte(_op, _src, _dst, _eflags, _qx, _qy)
485#define __emulate_1op_8byte(_op, _dst, _eflags)
486#endif /* __i386__ */
487
488/* Fetch next part of the instruction being emulated. */
489#define insn_fetch(_type, _size, _eip) \
490({ unsigned long _x; \
Avi Kivity62266862007-11-20 13:15:52 +0200491 rc = do_insn_fetch(ctxt, ops, (_eip), &_x, (_size)); \
Mike Dayd77c26f2007-10-08 09:02:08 -0400492 if (rc != 0) \
Avi Kivity6aa8b732006-12-10 02:21:36 -0800493 goto done; \
494 (_eip) += (_size); \
495 (_type)_x; \
496})
497
Harvey Harrisonddcb2882008-02-18 11:12:48 -0800498static inline unsigned long ad_mask(struct decode_cache *c)
499{
500 return (1UL << (c->ad_bytes << 3)) - 1;
501}
502
Avi Kivity6aa8b732006-12-10 02:21:36 -0800503/* Access/update address held in a register, based on addressing mode. */
Harvey Harrisone4706772008-02-19 07:40:38 -0800504static inline unsigned long
505address_mask(struct decode_cache *c, unsigned long reg)
506{
507 if (c->ad_bytes == sizeof(unsigned long))
508 return reg;
509 else
510 return reg & ad_mask(c);
511}
512
513static inline unsigned long
514register_address(struct decode_cache *c, unsigned long base, unsigned long reg)
515{
516 return base + address_mask(c, reg);
517}
518
Harvey Harrison7a9572752008-02-19 07:40:41 -0800519static inline void
520register_address_increment(struct decode_cache *c, unsigned long *reg, int inc)
521{
522 if (c->ad_bytes == sizeof(unsigned long))
523 *reg += inc;
524 else
525 *reg = (*reg & ~ad_mask(c)) | ((*reg + inc) & ad_mask(c));
526}
Avi Kivity6aa8b732006-12-10 02:21:36 -0800527
Harvey Harrison7a9572752008-02-19 07:40:41 -0800528static inline void jmp_rel(struct decode_cache *c, int rel)
529{
530 register_address_increment(c, &c->eip, rel);
531}
Nitin A Kamble098c9372007-08-19 11:00:36 +0300532
Avi Kivity7a5b56d2008-06-22 16:22:51 +0300533static void set_seg_override(struct decode_cache *c, int seg)
534{
535 c->has_seg_override = true;
536 c->seg_override = seg;
537}
538
539static unsigned long seg_base(struct x86_emulate_ctxt *ctxt, int seg)
540{
541 if (ctxt->mode == X86EMUL_MODE_PROT64 && seg < VCPU_SREG_FS)
542 return 0;
543
544 return kvm_x86_ops->get_segment_base(ctxt->vcpu, seg);
545}
546
547static unsigned long seg_override_base(struct x86_emulate_ctxt *ctxt,
548 struct decode_cache *c)
549{
550 if (!c->has_seg_override)
551 return 0;
552
553 return seg_base(ctxt, c->seg_override);
554}
555
556static unsigned long es_base(struct x86_emulate_ctxt *ctxt)
557{
558 return seg_base(ctxt, VCPU_SREG_ES);
559}
560
561static unsigned long ss_base(struct x86_emulate_ctxt *ctxt)
562{
563 return seg_base(ctxt, VCPU_SREG_SS);
564}
565
Avi Kivity62266862007-11-20 13:15:52 +0200566static int do_fetch_insn_byte(struct x86_emulate_ctxt *ctxt,
567 struct x86_emulate_ops *ops,
568 unsigned long linear, u8 *dest)
569{
570 struct fetch_cache *fc = &ctxt->decode.fetch;
571 int rc;
572 int size;
573
574 if (linear < fc->start || linear >= fc->end) {
575 size = min(15UL, PAGE_SIZE - offset_in_page(linear));
576 rc = ops->read_std(linear, fc->data, size, ctxt->vcpu);
577 if (rc)
578 return rc;
579 fc->start = linear;
580 fc->end = linear + size;
581 }
582 *dest = fc->data[linear - fc->start];
583 return 0;
584}
585
586static int do_insn_fetch(struct x86_emulate_ctxt *ctxt,
587 struct x86_emulate_ops *ops,
588 unsigned long eip, void *dest, unsigned size)
589{
590 int rc = 0;
591
592 eip += ctxt->cs_base;
593 while (size--) {
594 rc = do_fetch_insn_byte(ctxt, ops, eip++, dest++);
595 if (rc)
596 return rc;
597 }
598 return 0;
599}
600
Rusty Russell1e3c5cb2007-07-17 23:16:11 +1000601/*
602 * Given the 'reg' portion of a ModRM byte, and a register block, return a
603 * pointer into the block that addresses the relevant register.
604 * @highbyte_regs specifies whether to decode AH,CH,DH,BH.
605 */
606static void *decode_register(u8 modrm_reg, unsigned long *regs,
607 int highbyte_regs)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800608{
609 void *p;
610
611 p = &regs[modrm_reg];
612 if (highbyte_regs && modrm_reg >= 4 && modrm_reg < 8)
613 p = (unsigned char *)&regs[modrm_reg & 3] + 1;
614 return p;
615}
616
617static int read_descriptor(struct x86_emulate_ctxt *ctxt,
618 struct x86_emulate_ops *ops,
619 void *ptr,
620 u16 *size, unsigned long *address, int op_bytes)
621{
622 int rc;
623
624 if (op_bytes == 2)
625 op_bytes = 3;
626 *address = 0;
Laurent Viviercebff022007-07-30 13:35:24 +0300627 rc = ops->read_std((unsigned long)ptr, (unsigned long *)size, 2,
628 ctxt->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800629 if (rc)
630 return rc;
Laurent Viviercebff022007-07-30 13:35:24 +0300631 rc = ops->read_std((unsigned long)ptr + 2, address, op_bytes,
632 ctxt->vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800633 return rc;
634}
635
Nitin A Kamblebbe9abb2007-09-15 10:23:07 +0300636static int test_cc(unsigned int condition, unsigned int flags)
637{
638 int rc = 0;
639
640 switch ((condition & 15) >> 1) {
641 case 0: /* o */
642 rc |= (flags & EFLG_OF);
643 break;
644 case 1: /* b/c/nae */
645 rc |= (flags & EFLG_CF);
646 break;
647 case 2: /* z/e */
648 rc |= (flags & EFLG_ZF);
649 break;
650 case 3: /* be/na */
651 rc |= (flags & (EFLG_CF|EFLG_ZF));
652 break;
653 case 4: /* s */
654 rc |= (flags & EFLG_SF);
655 break;
656 case 5: /* p/pe */
657 rc |= (flags & EFLG_PF);
658 break;
659 case 7: /* le/ng */
660 rc |= (flags & EFLG_ZF);
661 /* fall through */
662 case 6: /* l/nge */
663 rc |= (!(flags & EFLG_SF) != !(flags & EFLG_OF));
664 break;
665 }
666
667 /* Odd condition identifiers (lsb == 1) have inverted sense. */
668 return (!!rc ^ (condition & 1));
669}
670
Avi Kivity3c118e22007-10-31 10:27:04 +0200671static void decode_register_operand(struct operand *op,
672 struct decode_cache *c,
Avi Kivity3c118e22007-10-31 10:27:04 +0200673 int inhibit_bytereg)
674{
Avi Kivity33615aa2007-10-31 11:15:56 +0200675 unsigned reg = c->modrm_reg;
Avi Kivity9f1ef3f2007-10-31 11:21:06 +0200676 int highbyte_regs = c->rex_prefix == 0;
Avi Kivity33615aa2007-10-31 11:15:56 +0200677
678 if (!(c->d & ModRM))
679 reg = (c->b & 7) | ((c->rex_prefix & 1) << 3);
Avi Kivity3c118e22007-10-31 10:27:04 +0200680 op->type = OP_REG;
681 if ((c->d & ByteOp) && !inhibit_bytereg) {
Avi Kivity33615aa2007-10-31 11:15:56 +0200682 op->ptr = decode_register(reg, c->regs, highbyte_regs);
Avi Kivity3c118e22007-10-31 10:27:04 +0200683 op->val = *(u8 *)op->ptr;
684 op->bytes = 1;
685 } else {
Avi Kivity33615aa2007-10-31 11:15:56 +0200686 op->ptr = decode_register(reg, c->regs, 0);
Avi Kivity3c118e22007-10-31 10:27:04 +0200687 op->bytes = c->op_bytes;
688 switch (op->bytes) {
689 case 2:
690 op->val = *(u16 *)op->ptr;
691 break;
692 case 4:
693 op->val = *(u32 *)op->ptr;
694 break;
695 case 8:
696 op->val = *(u64 *) op->ptr;
697 break;
698 }
699 }
700 op->orig_val = op->val;
701}
702
Avi Kivity1c73ef6652007-11-01 06:31:28 +0200703static int decode_modrm(struct x86_emulate_ctxt *ctxt,
704 struct x86_emulate_ops *ops)
705{
706 struct decode_cache *c = &ctxt->decode;
707 u8 sib;
Avi Kivityf5b4edc2008-06-15 22:09:11 -0700708 int index_reg = 0, base_reg = 0, scale;
Avi Kivity1c73ef6652007-11-01 06:31:28 +0200709 int rc = 0;
710
711 if (c->rex_prefix) {
712 c->modrm_reg = (c->rex_prefix & 4) << 1; /* REX.R */
713 index_reg = (c->rex_prefix & 2) << 2; /* REX.X */
714 c->modrm_rm = base_reg = (c->rex_prefix & 1) << 3; /* REG.B */
715 }
716
717 c->modrm = insn_fetch(u8, 1, c->eip);
718 c->modrm_mod |= (c->modrm & 0xc0) >> 6;
719 c->modrm_reg |= (c->modrm & 0x38) >> 3;
720 c->modrm_rm |= (c->modrm & 0x07);
721 c->modrm_ea = 0;
722 c->use_modrm_ea = 1;
723
724 if (c->modrm_mod == 3) {
Avi Kivity107d6d22008-05-05 14:58:26 +0300725 c->modrm_ptr = decode_register(c->modrm_rm,
726 c->regs, c->d & ByteOp);
727 c->modrm_val = *(unsigned long *)c->modrm_ptr;
Avi Kivity1c73ef6652007-11-01 06:31:28 +0200728 return rc;
729 }
730
731 if (c->ad_bytes == 2) {
732 unsigned bx = c->regs[VCPU_REGS_RBX];
733 unsigned bp = c->regs[VCPU_REGS_RBP];
734 unsigned si = c->regs[VCPU_REGS_RSI];
735 unsigned di = c->regs[VCPU_REGS_RDI];
736
737 /* 16-bit ModR/M decode. */
738 switch (c->modrm_mod) {
739 case 0:
740 if (c->modrm_rm == 6)
741 c->modrm_ea += insn_fetch(u16, 2, c->eip);
742 break;
743 case 1:
744 c->modrm_ea += insn_fetch(s8, 1, c->eip);
745 break;
746 case 2:
747 c->modrm_ea += insn_fetch(u16, 2, c->eip);
748 break;
749 }
750 switch (c->modrm_rm) {
751 case 0:
752 c->modrm_ea += bx + si;
753 break;
754 case 1:
755 c->modrm_ea += bx + di;
756 break;
757 case 2:
758 c->modrm_ea += bp + si;
759 break;
760 case 3:
761 c->modrm_ea += bp + di;
762 break;
763 case 4:
764 c->modrm_ea += si;
765 break;
766 case 5:
767 c->modrm_ea += di;
768 break;
769 case 6:
770 if (c->modrm_mod != 0)
771 c->modrm_ea += bp;
772 break;
773 case 7:
774 c->modrm_ea += bx;
775 break;
776 }
777 if (c->modrm_rm == 2 || c->modrm_rm == 3 ||
778 (c->modrm_rm == 6 && c->modrm_mod != 0))
Avi Kivity7a5b56d2008-06-22 16:22:51 +0300779 if (!c->has_seg_override)
780 set_seg_override(c, VCPU_SREG_SS);
Avi Kivity1c73ef6652007-11-01 06:31:28 +0200781 c->modrm_ea = (u16)c->modrm_ea;
782 } else {
783 /* 32/64-bit ModR/M decode. */
Avi Kivity84411d82008-06-15 21:53:26 -0700784 if ((c->modrm_rm & 7) == 4) {
Avi Kivity1c73ef6652007-11-01 06:31:28 +0200785 sib = insn_fetch(u8, 1, c->eip);
786 index_reg |= (sib >> 3) & 7;
787 base_reg |= sib & 7;
788 scale = sib >> 6;
789
Avi Kivitydc71d0f2008-06-15 21:23:17 -0700790 if ((base_reg & 7) == 5 && c->modrm_mod == 0)
791 c->modrm_ea += insn_fetch(s32, 4, c->eip);
792 else
Avi Kivity1c73ef6652007-11-01 06:31:28 +0200793 c->modrm_ea += c->regs[base_reg];
Avi Kivitydc71d0f2008-06-15 21:23:17 -0700794 if (index_reg != 4)
Avi Kivity1c73ef6652007-11-01 06:31:28 +0200795 c->modrm_ea += c->regs[index_reg] << scale;
Avi Kivity84411d82008-06-15 21:53:26 -0700796 } else if ((c->modrm_rm & 7) == 5 && c->modrm_mod == 0) {
797 if (ctxt->mode == X86EMUL_MODE_PROT64)
Avi Kivityf5b4edc2008-06-15 22:09:11 -0700798 c->rip_relative = 1;
Avi Kivity84411d82008-06-15 21:53:26 -0700799 } else
Avi Kivity1c73ef6652007-11-01 06:31:28 +0200800 c->modrm_ea += c->regs[c->modrm_rm];
Avi Kivity1c73ef6652007-11-01 06:31:28 +0200801 switch (c->modrm_mod) {
802 case 0:
803 if (c->modrm_rm == 5)
804 c->modrm_ea += insn_fetch(s32, 4, c->eip);
805 break;
806 case 1:
807 c->modrm_ea += insn_fetch(s8, 1, c->eip);
808 break;
809 case 2:
810 c->modrm_ea += insn_fetch(s32, 4, c->eip);
811 break;
812 }
813 }
Avi Kivity1c73ef6652007-11-01 06:31:28 +0200814done:
815 return rc;
816}
817
818static int decode_abs(struct x86_emulate_ctxt *ctxt,
819 struct x86_emulate_ops *ops)
820{
821 struct decode_cache *c = &ctxt->decode;
822 int rc = 0;
823
824 switch (c->ad_bytes) {
825 case 2:
826 c->modrm_ea = insn_fetch(u16, 2, c->eip);
827 break;
828 case 4:
829 c->modrm_ea = insn_fetch(u32, 4, c->eip);
830 break;
831 case 8:
832 c->modrm_ea = insn_fetch(u64, 8, c->eip);
833 break;
834 }
835done:
836 return rc;
837}
838
Avi Kivity6aa8b732006-12-10 02:21:36 -0800839int
Laurent Vivier8b4caf62007-09-18 11:27:19 +0200840x86_decode_insn(struct x86_emulate_ctxt *ctxt, struct x86_emulate_ops *ops)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800841{
Laurent Viviere4e03de2007-09-18 11:52:50 +0200842 struct decode_cache *c = &ctxt->decode;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800843 int rc = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800844 int mode = ctxt->mode;
Avi Kivitye09d0822008-01-18 12:38:59 +0200845 int def_op_bytes, def_ad_bytes, group;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800846
847 /* Shadow copy of register state. Committed on successful emulation. */
Avi Kivity6aa8b732006-12-10 02:21:36 -0800848
Laurent Viviere4e03de2007-09-18 11:52:50 +0200849 memset(c, 0, sizeof(struct decode_cache));
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -0300850 c->eip = kvm_rip_read(ctxt->vcpu);
Avi Kivity7a5b56d2008-06-22 16:22:51 +0300851 ctxt->cs_base = seg_base(ctxt, VCPU_SREG_CS);
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800852 memcpy(c->regs, ctxt->vcpu->arch.regs, sizeof c->regs);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800853
854 switch (mode) {
855 case X86EMUL_MODE_REAL:
856 case X86EMUL_MODE_PROT16:
Avi Kivityf21b8bf2007-11-22 14:16:12 +0200857 def_op_bytes = def_ad_bytes = 2;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800858 break;
859 case X86EMUL_MODE_PROT32:
Avi Kivityf21b8bf2007-11-22 14:16:12 +0200860 def_op_bytes = def_ad_bytes = 4;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800861 break;
Avi Kivity05b3e0c2006-12-13 00:33:45 -0800862#ifdef CONFIG_X86_64
Avi Kivity6aa8b732006-12-10 02:21:36 -0800863 case X86EMUL_MODE_PROT64:
Avi Kivityf21b8bf2007-11-22 14:16:12 +0200864 def_op_bytes = 4;
865 def_ad_bytes = 8;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800866 break;
867#endif
868 default:
869 return -1;
870 }
871
Avi Kivityf21b8bf2007-11-22 14:16:12 +0200872 c->op_bytes = def_op_bytes;
873 c->ad_bytes = def_ad_bytes;
874
Avi Kivity6aa8b732006-12-10 02:21:36 -0800875 /* Legacy prefixes. */
Laurent Vivierb4c6abf2007-09-25 13:36:40 +0200876 for (;;) {
Laurent Viviere4e03de2007-09-18 11:52:50 +0200877 switch (c->b = insn_fetch(u8, 1, c->eip)) {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800878 case 0x66: /* operand-size override */
Avi Kivityf21b8bf2007-11-22 14:16:12 +0200879 /* switch between 2/4 bytes */
880 c->op_bytes = def_op_bytes ^ 6;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800881 break;
882 case 0x67: /* address-size override */
883 if (mode == X86EMUL_MODE_PROT64)
Laurent Viviere4e03de2007-09-18 11:52:50 +0200884 /* switch between 4/8 bytes */
Avi Kivityf21b8bf2007-11-22 14:16:12 +0200885 c->ad_bytes = def_ad_bytes ^ 12;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800886 else
Laurent Viviere4e03de2007-09-18 11:52:50 +0200887 /* switch between 2/4 bytes */
Avi Kivityf21b8bf2007-11-22 14:16:12 +0200888 c->ad_bytes = def_ad_bytes ^ 6;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800889 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800890 case 0x26: /* ES override */
Avi Kivity7a5b56d2008-06-22 16:22:51 +0300891 case 0x2e: /* CS override */
892 case 0x36: /* SS override */
893 case 0x3e: /* DS override */
894 set_seg_override(c, (c->b >> 3) & 3);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800895 break;
896 case 0x64: /* FS override */
Avi Kivity6aa8b732006-12-10 02:21:36 -0800897 case 0x65: /* GS override */
Avi Kivity7a5b56d2008-06-22 16:22:51 +0300898 set_seg_override(c, c->b & 7);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800899 break;
Laurent Vivierb4c6abf2007-09-25 13:36:40 +0200900 case 0x40 ... 0x4f: /* REX */
901 if (mode != X86EMUL_MODE_PROT64)
902 goto done_prefixes;
Avi Kivity33615aa2007-10-31 11:15:56 +0200903 c->rex_prefix = c->b;
Laurent Vivierb4c6abf2007-09-25 13:36:40 +0200904 continue;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800905 case 0xf0: /* LOCK */
Laurent Viviere4e03de2007-09-18 11:52:50 +0200906 c->lock_prefix = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800907 break;
Laurent Vivierae6200b2007-09-20 11:17:24 +0200908 case 0xf2: /* REPNE/REPNZ */
Guillaume Thouvenin90e0a282007-11-22 11:32:09 +0100909 c->rep_prefix = REPNE_PREFIX;
910 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800911 case 0xf3: /* REP/REPE/REPZ */
Guillaume Thouvenin90e0a282007-11-22 11:32:09 +0100912 c->rep_prefix = REPE_PREFIX;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800913 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800914 default:
915 goto done_prefixes;
916 }
Laurent Vivierb4c6abf2007-09-25 13:36:40 +0200917
918 /* Any legacy prefix after a REX prefix nullifies its effect. */
919
Avi Kivity33615aa2007-10-31 11:15:56 +0200920 c->rex_prefix = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800921 }
922
923done_prefixes:
924
925 /* REX prefix. */
Avi Kivity1c73ef6652007-11-01 06:31:28 +0200926 if (c->rex_prefix)
Avi Kivity33615aa2007-10-31 11:15:56 +0200927 if (c->rex_prefix & 8)
Laurent Viviere4e03de2007-09-18 11:52:50 +0200928 c->op_bytes = 8; /* REX.W */
Avi Kivity6aa8b732006-12-10 02:21:36 -0800929
930 /* Opcode byte(s). */
Laurent Viviere4e03de2007-09-18 11:52:50 +0200931 c->d = opcode_table[c->b];
932 if (c->d == 0) {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800933 /* Two-byte opcode? */
Laurent Viviere4e03de2007-09-18 11:52:50 +0200934 if (c->b == 0x0f) {
935 c->twobyte = 1;
936 c->b = insn_fetch(u8, 1, c->eip);
937 c->d = twobyte_table[c->b];
Avi Kivity6aa8b732006-12-10 02:21:36 -0800938 }
Avi Kivitye09d0822008-01-18 12:38:59 +0200939 }
Avi Kivity6aa8b732006-12-10 02:21:36 -0800940
Avi Kivitye09d0822008-01-18 12:38:59 +0200941 if (c->d & Group) {
942 group = c->d & GroupMask;
943 c->modrm = insn_fetch(u8, 1, c->eip);
944 --c->eip;
945
946 group = (group << 3) + ((c->modrm >> 3) & 7);
947 if ((c->d & GroupDual) && (c->modrm >> 6) == 3)
948 c->d = group2_table[group];
949 else
950 c->d = group_table[group];
951 }
952
953 /* Unrecognised? */
954 if (c->d == 0) {
955 DPRINTF("Cannot emulate %02x\n", c->b);
956 return -1;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800957 }
958
Avi Kivity6e3d5df2007-12-06 18:14:14 +0200959 if (mode == X86EMUL_MODE_PROT64 && (c->d & Stack))
960 c->op_bytes = 8;
961
Avi Kivity6aa8b732006-12-10 02:21:36 -0800962 /* ModRM and SIB bytes. */
Avi Kivity1c73ef6652007-11-01 06:31:28 +0200963 if (c->d & ModRM)
964 rc = decode_modrm(ctxt, ops);
965 else if (c->d & MemAbs)
966 rc = decode_abs(ctxt, ops);
967 if (rc)
968 goto done;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800969
Avi Kivity7a5b56d2008-06-22 16:22:51 +0300970 if (!c->has_seg_override)
971 set_seg_override(c, VCPU_SREG_DS);
Avi Kivityc7e75a32007-10-28 16:34:25 +0200972
Avi Kivity7a5b56d2008-06-22 16:22:51 +0300973 if (!(!c->twobyte && c->b == 0x8d))
974 c->modrm_ea += seg_override_base(ctxt, c);
Avi Kivityc7e75a32007-10-28 16:34:25 +0200975
976 if (c->ad_bytes != 8)
977 c->modrm_ea = (u32)c->modrm_ea;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800978 /*
979 * Decode and fetch the source operand: register, memory
980 * or immediate.
981 */
Laurent Viviere4e03de2007-09-18 11:52:50 +0200982 switch (c->d & SrcMask) {
Avi Kivity6aa8b732006-12-10 02:21:36 -0800983 case SrcNone:
984 break;
985 case SrcReg:
Avi Kivity9f1ef3f2007-10-31 11:21:06 +0200986 decode_register_operand(&c->src, c, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800987 break;
988 case SrcMem16:
Laurent Viviere4e03de2007-09-18 11:52:50 +0200989 c->src.bytes = 2;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800990 goto srcmem_common;
991 case SrcMem32:
Laurent Viviere4e03de2007-09-18 11:52:50 +0200992 c->src.bytes = 4;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800993 goto srcmem_common;
994 case SrcMem:
Laurent Viviere4e03de2007-09-18 11:52:50 +0200995 c->src.bytes = (c->d & ByteOp) ? 1 :
996 c->op_bytes;
Rusty Russellb85b9ee92007-09-09 14:12:54 +0300997 /* Don't fetch the address for invlpg: it could be unmapped. */
Mike Dayd77c26f2007-10-08 09:02:08 -0400998 if (c->twobyte && c->b == 0x01 && c->modrm_reg == 7)
Rusty Russellb85b9ee92007-09-09 14:12:54 +0300999 break;
Mike Dayd77c26f2007-10-08 09:02:08 -04001000 srcmem_common:
Aurelien Jarno4e624172007-10-17 19:30:41 +02001001 /*
1002 * For instructions with a ModR/M byte, switch to register
1003 * access if Mod = 3.
1004 */
Laurent Viviere4e03de2007-09-18 11:52:50 +02001005 if ((c->d & ModRM) && c->modrm_mod == 3) {
1006 c->src.type = OP_REG;
Avi Kivity66b85502008-04-14 23:27:07 +03001007 c->src.val = c->modrm_val;
Avi Kivity107d6d22008-05-05 14:58:26 +03001008 c->src.ptr = c->modrm_ptr;
Aurelien Jarno4e624172007-10-17 19:30:41 +02001009 break;
1010 }
Laurent Viviere4e03de2007-09-18 11:52:50 +02001011 c->src.type = OP_MEM;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001012 break;
1013 case SrcImm:
Laurent Viviere4e03de2007-09-18 11:52:50 +02001014 c->src.type = OP_IMM;
1015 c->src.ptr = (unsigned long *)c->eip;
1016 c->src.bytes = (c->d & ByteOp) ? 1 : c->op_bytes;
1017 if (c->src.bytes == 8)
1018 c->src.bytes = 4;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001019 /* NB. Immediates are sign-extended as necessary. */
Laurent Viviere4e03de2007-09-18 11:52:50 +02001020 switch (c->src.bytes) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001021 case 1:
Laurent Viviere4e03de2007-09-18 11:52:50 +02001022 c->src.val = insn_fetch(s8, 1, c->eip);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001023 break;
1024 case 2:
Laurent Viviere4e03de2007-09-18 11:52:50 +02001025 c->src.val = insn_fetch(s16, 2, c->eip);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001026 break;
1027 case 4:
Laurent Viviere4e03de2007-09-18 11:52:50 +02001028 c->src.val = insn_fetch(s32, 4, c->eip);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001029 break;
1030 }
1031 break;
1032 case SrcImmByte:
Laurent Viviere4e03de2007-09-18 11:52:50 +02001033 c->src.type = OP_IMM;
1034 c->src.ptr = (unsigned long *)c->eip;
1035 c->src.bytes = 1;
1036 c->src.val = insn_fetch(s8, 1, c->eip);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001037 break;
1038 }
1039
Avi Kivity038e51d2007-01-22 20:40:40 -08001040 /* Decode and fetch the destination operand: register or memory. */
Laurent Viviere4e03de2007-09-18 11:52:50 +02001041 switch (c->d & DstMask) {
Avi Kivity038e51d2007-01-22 20:40:40 -08001042 case ImplicitOps:
1043 /* Special instructions do their own operand decoding. */
Laurent Vivier8b4caf62007-09-18 11:27:19 +02001044 return 0;
Avi Kivity038e51d2007-01-22 20:40:40 -08001045 case DstReg:
Avi Kivity9f1ef3f2007-10-31 11:21:06 +02001046 decode_register_operand(&c->dst, c,
Avi Kivity3c118e22007-10-31 10:27:04 +02001047 c->twobyte && (c->b == 0xb6 || c->b == 0xb7));
Avi Kivity038e51d2007-01-22 20:40:40 -08001048 break;
1049 case DstMem:
Laurent Viviere4e03de2007-09-18 11:52:50 +02001050 if ((c->d & ModRM) && c->modrm_mod == 3) {
Guillaume Thouvenin89c69632008-05-27 10:22:20 +02001051 c->dst.bytes = (c->d & ByteOp) ? 1 : c->op_bytes;
Laurent Viviere4e03de2007-09-18 11:52:50 +02001052 c->dst.type = OP_REG;
Avi Kivity66b85502008-04-14 23:27:07 +03001053 c->dst.val = c->dst.orig_val = c->modrm_val;
Avi Kivity107d6d22008-05-05 14:58:26 +03001054 c->dst.ptr = c->modrm_ptr;
Aurelien Jarno4e624172007-10-17 19:30:41 +02001055 break;
1056 }
Laurent Vivier8b4caf62007-09-18 11:27:19 +02001057 c->dst.type = OP_MEM;
1058 break;
1059 }
1060
Avi Kivityf5b4edc2008-06-15 22:09:11 -07001061 if (c->rip_relative)
1062 c->modrm_ea += c->eip;
1063
Laurent Vivier8b4caf62007-09-18 11:27:19 +02001064done:
1065 return (rc == X86EMUL_UNHANDLEABLE) ? -1 : 0;
1066}
1067
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001068static inline void emulate_push(struct x86_emulate_ctxt *ctxt)
1069{
1070 struct decode_cache *c = &ctxt->decode;
1071
1072 c->dst.type = OP_MEM;
1073 c->dst.bytes = c->op_bytes;
1074 c->dst.val = c->src.val;
Harvey Harrison7a9572752008-02-19 07:40:41 -08001075 register_address_increment(c, &c->regs[VCPU_REGS_RSP], -c->op_bytes);
Avi Kivity7a5b56d2008-06-22 16:22:51 +03001076 c->dst.ptr = (void *) register_address(c, ss_base(ctxt),
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001077 c->regs[VCPU_REGS_RSP]);
1078}
1079
1080static inline int emulate_grp1a(struct x86_emulate_ctxt *ctxt,
1081 struct x86_emulate_ops *ops)
1082{
1083 struct decode_cache *c = &ctxt->decode;
1084 int rc;
1085
Avi Kivity7a5b56d2008-06-22 16:22:51 +03001086 rc = ops->read_std(register_address(c, ss_base(ctxt),
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001087 c->regs[VCPU_REGS_RSP]),
1088 &c->dst.val, c->dst.bytes, ctxt->vcpu);
1089 if (rc != 0)
1090 return rc;
1091
Harvey Harrison7a9572752008-02-19 07:40:41 -08001092 register_address_increment(c, &c->regs[VCPU_REGS_RSP], c->dst.bytes);
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001093
1094 return 0;
1095}
1096
Laurent Vivier05f086f2007-09-24 11:10:55 +02001097static inline void emulate_grp2(struct x86_emulate_ctxt *ctxt)
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001098{
Laurent Vivier05f086f2007-09-24 11:10:55 +02001099 struct decode_cache *c = &ctxt->decode;
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001100 switch (c->modrm_reg) {
1101 case 0: /* rol */
Laurent Vivier05f086f2007-09-24 11:10:55 +02001102 emulate_2op_SrcB("rol", c->src, c->dst, ctxt->eflags);
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001103 break;
1104 case 1: /* ror */
Laurent Vivier05f086f2007-09-24 11:10:55 +02001105 emulate_2op_SrcB("ror", c->src, c->dst, ctxt->eflags);
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001106 break;
1107 case 2: /* rcl */
Laurent Vivier05f086f2007-09-24 11:10:55 +02001108 emulate_2op_SrcB("rcl", c->src, c->dst, ctxt->eflags);
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001109 break;
1110 case 3: /* rcr */
Laurent Vivier05f086f2007-09-24 11:10:55 +02001111 emulate_2op_SrcB("rcr", c->src, c->dst, ctxt->eflags);
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001112 break;
1113 case 4: /* sal/shl */
1114 case 6: /* sal/shl */
Laurent Vivier05f086f2007-09-24 11:10:55 +02001115 emulate_2op_SrcB("sal", c->src, c->dst, ctxt->eflags);
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001116 break;
1117 case 5: /* shr */
Laurent Vivier05f086f2007-09-24 11:10:55 +02001118 emulate_2op_SrcB("shr", c->src, c->dst, ctxt->eflags);
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001119 break;
1120 case 7: /* sar */
Laurent Vivier05f086f2007-09-24 11:10:55 +02001121 emulate_2op_SrcB("sar", c->src, c->dst, ctxt->eflags);
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001122 break;
1123 }
1124}
1125
1126static inline int emulate_grp3(struct x86_emulate_ctxt *ctxt,
Laurent Vivier05f086f2007-09-24 11:10:55 +02001127 struct x86_emulate_ops *ops)
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001128{
1129 struct decode_cache *c = &ctxt->decode;
1130 int rc = 0;
1131
1132 switch (c->modrm_reg) {
1133 case 0 ... 1: /* test */
Laurent Vivier05f086f2007-09-24 11:10:55 +02001134 emulate_2op_SrcV("test", c->src, c->dst, ctxt->eflags);
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001135 break;
1136 case 2: /* not */
1137 c->dst.val = ~c->dst.val;
1138 break;
1139 case 3: /* neg */
Laurent Vivier05f086f2007-09-24 11:10:55 +02001140 emulate_1op("neg", c->dst, ctxt->eflags);
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001141 break;
1142 default:
1143 DPRINTF("Cannot emulate %02x\n", c->b);
1144 rc = X86EMUL_UNHANDLEABLE;
1145 break;
1146 }
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001147 return rc;
1148}
1149
1150static inline int emulate_grp45(struct x86_emulate_ctxt *ctxt,
Laurent Viviera01af5e2007-09-24 11:10:56 +02001151 struct x86_emulate_ops *ops)
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001152{
1153 struct decode_cache *c = &ctxt->decode;
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001154
1155 switch (c->modrm_reg) {
1156 case 0: /* inc */
Laurent Vivier05f086f2007-09-24 11:10:55 +02001157 emulate_1op("inc", c->dst, ctxt->eflags);
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001158 break;
1159 case 1: /* dec */
Laurent Vivier05f086f2007-09-24 11:10:55 +02001160 emulate_1op("dec", c->dst, ctxt->eflags);
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001161 break;
1162 case 4: /* jmp abs */
Avi Kivityfd607542008-01-18 13:12:26 +02001163 c->eip = c->src.val;
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001164 break;
1165 case 6: /* push */
Avi Kivityfd607542008-01-18 13:12:26 +02001166 emulate_push(ctxt);
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001167 break;
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001168 }
1169 return 0;
1170}
1171
1172static inline int emulate_grp9(struct x86_emulate_ctxt *ctxt,
1173 struct x86_emulate_ops *ops,
Sheng Yange8d8d7f2007-11-16 16:29:15 +08001174 unsigned long memop)
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001175{
1176 struct decode_cache *c = &ctxt->decode;
1177 u64 old, new;
1178 int rc;
1179
Sheng Yange8d8d7f2007-11-16 16:29:15 +08001180 rc = ops->read_emulated(memop, &old, 8, ctxt->vcpu);
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001181 if (rc != 0)
1182 return rc;
1183
1184 if (((u32) (old >> 0) != (u32) c->regs[VCPU_REGS_RAX]) ||
1185 ((u32) (old >> 32) != (u32) c->regs[VCPU_REGS_RDX])) {
1186
1187 c->regs[VCPU_REGS_RAX] = (u32) (old >> 0);
1188 c->regs[VCPU_REGS_RDX] = (u32) (old >> 32);
Laurent Vivier05f086f2007-09-24 11:10:55 +02001189 ctxt->eflags &= ~EFLG_ZF;
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001190
1191 } else {
1192 new = ((u64)c->regs[VCPU_REGS_RCX] << 32) |
1193 (u32) c->regs[VCPU_REGS_RBX];
1194
Sheng Yange8d8d7f2007-11-16 16:29:15 +08001195 rc = ops->cmpxchg_emulated(memop, &old, &new, 8, ctxt->vcpu);
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001196 if (rc != 0)
1197 return rc;
Laurent Vivier05f086f2007-09-24 11:10:55 +02001198 ctxt->eflags |= EFLG_ZF;
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001199 }
1200 return 0;
1201}
1202
1203static inline int writeback(struct x86_emulate_ctxt *ctxt,
1204 struct x86_emulate_ops *ops)
1205{
1206 int rc;
1207 struct decode_cache *c = &ctxt->decode;
1208
1209 switch (c->dst.type) {
1210 case OP_REG:
1211 /* The 4-byte case *is* correct:
1212 * in 64-bit mode we zero-extend.
1213 */
1214 switch (c->dst.bytes) {
1215 case 1:
1216 *(u8 *)c->dst.ptr = (u8)c->dst.val;
1217 break;
1218 case 2:
1219 *(u16 *)c->dst.ptr = (u16)c->dst.val;
1220 break;
1221 case 4:
1222 *c->dst.ptr = (u32)c->dst.val;
1223 break; /* 64b: zero-ext */
1224 case 8:
1225 *c->dst.ptr = c->dst.val;
1226 break;
1227 }
1228 break;
1229 case OP_MEM:
1230 if (c->lock_prefix)
1231 rc = ops->cmpxchg_emulated(
1232 (unsigned long)c->dst.ptr,
1233 &c->dst.orig_val,
1234 &c->dst.val,
1235 c->dst.bytes,
1236 ctxt->vcpu);
1237 else
1238 rc = ops->write_emulated(
1239 (unsigned long)c->dst.ptr,
1240 &c->dst.val,
1241 c->dst.bytes,
1242 ctxt->vcpu);
1243 if (rc != 0)
1244 return rc;
Laurent Viviera01af5e2007-09-24 11:10:56 +02001245 break;
1246 case OP_NONE:
1247 /* no writeback */
1248 break;
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001249 default:
1250 break;
1251 }
1252 return 0;
1253}
1254
Laurent Vivier8b4caf62007-09-18 11:27:19 +02001255int
Laurent Vivier1be3aa42007-09-18 11:27:27 +02001256x86_emulate_insn(struct x86_emulate_ctxt *ctxt, struct x86_emulate_ops *ops)
Laurent Vivier8b4caf62007-09-18 11:27:19 +02001257{
Sheng Yange8d8d7f2007-11-16 16:29:15 +08001258 unsigned long memop = 0;
Laurent Vivier8b4caf62007-09-18 11:27:19 +02001259 u64 msr_data;
Laurent Vivier34273182007-09-18 11:27:37 +02001260 unsigned long saved_eip = 0;
Laurent Vivier8b4caf62007-09-18 11:27:19 +02001261 struct decode_cache *c = &ctxt->decode;
Laurent Vivier1be3aa42007-09-18 11:27:27 +02001262 int rc = 0;
Laurent Vivier8b4caf62007-09-18 11:27:19 +02001263
Laurent Vivier34273182007-09-18 11:27:37 +02001264 /* Shadow copy of register state. Committed on successful emulation.
1265 * NOTE: we can copy them from vcpu as x86_decode_insn() doesn't
1266 * modify them.
1267 */
1268
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001269 memcpy(c->regs, ctxt->vcpu->arch.regs, sizeof c->regs);
Laurent Vivier34273182007-09-18 11:27:37 +02001270 saved_eip = c->eip;
1271
Avi Kivityc7e75a32007-10-28 16:34:25 +02001272 if (((c->d & ModRM) && (c->modrm_mod != 3)) || (c->d & MemAbs))
Sheng Yange8d8d7f2007-11-16 16:29:15 +08001273 memop = c->modrm_ea;
Laurent Vivier8b4caf62007-09-18 11:27:19 +02001274
Avi Kivityb9fa9d62007-11-27 19:05:37 +02001275 if (c->rep_prefix && (c->d & String)) {
1276 /* All REP prefixes have the same first termination condition */
1277 if (c->regs[VCPU_REGS_RCX] == 0) {
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03001278 kvm_rip_write(ctxt->vcpu, c->eip);
Avi Kivityb9fa9d62007-11-27 19:05:37 +02001279 goto done;
1280 }
1281 /* The second termination condition only applies for REPE
1282 * and REPNE. Test if the repeat string operation prefix is
1283 * REPE/REPZ or REPNE/REPNZ and if it's the case it tests the
1284 * corresponding termination condition according to:
1285 * - if REPE/REPZ and ZF = 0 then done
1286 * - if REPNE/REPNZ and ZF = 1 then done
1287 */
1288 if ((c->b == 0xa6) || (c->b == 0xa7) ||
1289 (c->b == 0xae) || (c->b == 0xaf)) {
1290 if ((c->rep_prefix == REPE_PREFIX) &&
1291 ((ctxt->eflags & EFLG_ZF) == 0)) {
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03001292 kvm_rip_write(ctxt->vcpu, c->eip);
Avi Kivityb9fa9d62007-11-27 19:05:37 +02001293 goto done;
1294 }
1295 if ((c->rep_prefix == REPNE_PREFIX) &&
1296 ((ctxt->eflags & EFLG_ZF) == EFLG_ZF)) {
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03001297 kvm_rip_write(ctxt->vcpu, c->eip);
Avi Kivityb9fa9d62007-11-27 19:05:37 +02001298 goto done;
1299 }
1300 }
1301 c->regs[VCPU_REGS_RCX]--;
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03001302 c->eip = kvm_rip_read(ctxt->vcpu);
Avi Kivityb9fa9d62007-11-27 19:05:37 +02001303 }
1304
Laurent Vivier8b4caf62007-09-18 11:27:19 +02001305 if (c->src.type == OP_MEM) {
Sheng Yange8d8d7f2007-11-16 16:29:15 +08001306 c->src.ptr = (unsigned long *)memop;
Laurent Vivier8b4caf62007-09-18 11:27:19 +02001307 c->src.val = 0;
Mike Dayd77c26f2007-10-08 09:02:08 -04001308 rc = ops->read_emulated((unsigned long)c->src.ptr,
1309 &c->src.val,
1310 c->src.bytes,
1311 ctxt->vcpu);
1312 if (rc != 0)
Laurent Vivier8b4caf62007-09-18 11:27:19 +02001313 goto done;
1314 c->src.orig_val = c->src.val;
1315 }
1316
1317 if ((c->d & DstMask) == ImplicitOps)
1318 goto special_insn;
1319
1320
1321 if (c->dst.type == OP_MEM) {
Sheng Yange8d8d7f2007-11-16 16:29:15 +08001322 c->dst.ptr = (unsigned long *)memop;
Laurent Vivier8b4caf62007-09-18 11:27:19 +02001323 c->dst.bytes = (c->d & ByteOp) ? 1 : c->op_bytes;
1324 c->dst.val = 0;
Laurent Viviere4e03de2007-09-18 11:52:50 +02001325 if (c->d & BitOp) {
1326 unsigned long mask = ~(c->dst.bytes * 8 - 1);
Avi Kivitydf513e22007-03-28 20:04:16 +02001327
Laurent Viviere4e03de2007-09-18 11:52:50 +02001328 c->dst.ptr = (void *)c->dst.ptr +
1329 (c->src.val & mask) / 8;
Avi Kivity038e51d2007-01-22 20:40:40 -08001330 }
Laurent Viviere4e03de2007-09-18 11:52:50 +02001331 if (!(c->d & Mov) &&
1332 /* optimisation - avoid slow emulated read */
1333 ((rc = ops->read_emulated((unsigned long)c->dst.ptr,
1334 &c->dst.val,
1335 c->dst.bytes, ctxt->vcpu)) != 0))
Avi Kivity038e51d2007-01-22 20:40:40 -08001336 goto done;
Avi Kivity038e51d2007-01-22 20:40:40 -08001337 }
Laurent Viviere4e03de2007-09-18 11:52:50 +02001338 c->dst.orig_val = c->dst.val;
Avi Kivity038e51d2007-01-22 20:40:40 -08001339
Avi Kivity018a98d2007-11-27 19:30:56 +02001340special_insn:
1341
Laurent Viviere4e03de2007-09-18 11:52:50 +02001342 if (c->twobyte)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001343 goto twobyte_insn;
1344
Laurent Viviere4e03de2007-09-18 11:52:50 +02001345 switch (c->b) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001346 case 0x00 ... 0x05:
1347 add: /* add */
Laurent Vivier05f086f2007-09-24 11:10:55 +02001348 emulate_2op_SrcV("add", c->src, c->dst, ctxt->eflags);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001349 break;
1350 case 0x08 ... 0x0d:
1351 or: /* or */
Laurent Vivier05f086f2007-09-24 11:10:55 +02001352 emulate_2op_SrcV("or", c->src, c->dst, ctxt->eflags);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001353 break;
1354 case 0x10 ... 0x15:
1355 adc: /* adc */
Laurent Vivier05f086f2007-09-24 11:10:55 +02001356 emulate_2op_SrcV("adc", c->src, c->dst, ctxt->eflags);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001357 break;
1358 case 0x18 ... 0x1d:
1359 sbb: /* sbb */
Laurent Vivier05f086f2007-09-24 11:10:55 +02001360 emulate_2op_SrcV("sbb", c->src, c->dst, ctxt->eflags);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001361 break;
Nitin A Kamble19eb9382007-08-17 15:17:41 +03001362 case 0x20 ... 0x23:
Avi Kivity6aa8b732006-12-10 02:21:36 -08001363 and: /* and */
Laurent Vivier05f086f2007-09-24 11:10:55 +02001364 emulate_2op_SrcV("and", c->src, c->dst, ctxt->eflags);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001365 break;
Nitin A Kamble19eb9382007-08-17 15:17:41 +03001366 case 0x24: /* and al imm8 */
Laurent Viviere4e03de2007-09-18 11:52:50 +02001367 c->dst.type = OP_REG;
1368 c->dst.ptr = &c->regs[VCPU_REGS_RAX];
1369 c->dst.val = *(u8 *)c->dst.ptr;
1370 c->dst.bytes = 1;
1371 c->dst.orig_val = c->dst.val;
Nitin A Kamble19eb9382007-08-17 15:17:41 +03001372 goto and;
1373 case 0x25: /* and ax imm16, or eax imm32 */
Laurent Viviere4e03de2007-09-18 11:52:50 +02001374 c->dst.type = OP_REG;
1375 c->dst.bytes = c->op_bytes;
1376 c->dst.ptr = &c->regs[VCPU_REGS_RAX];
1377 if (c->op_bytes == 2)
1378 c->dst.val = *(u16 *)c->dst.ptr;
Nitin A Kamble19eb9382007-08-17 15:17:41 +03001379 else
Laurent Viviere4e03de2007-09-18 11:52:50 +02001380 c->dst.val = *(u32 *)c->dst.ptr;
1381 c->dst.orig_val = c->dst.val;
Nitin A Kamble19eb9382007-08-17 15:17:41 +03001382 goto and;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001383 case 0x28 ... 0x2d:
1384 sub: /* sub */
Laurent Vivier05f086f2007-09-24 11:10:55 +02001385 emulate_2op_SrcV("sub", c->src, c->dst, ctxt->eflags);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001386 break;
1387 case 0x30 ... 0x35:
1388 xor: /* xor */
Laurent Vivier05f086f2007-09-24 11:10:55 +02001389 emulate_2op_SrcV("xor", c->src, c->dst, ctxt->eflags);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001390 break;
1391 case 0x38 ... 0x3d:
1392 cmp: /* cmp */
Laurent Vivier05f086f2007-09-24 11:10:55 +02001393 emulate_2op_SrcV("cmp", c->src, c->dst, ctxt->eflags);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001394 break;
Avi Kivity33615aa2007-10-31 11:15:56 +02001395 case 0x40 ... 0x47: /* inc r16/r32 */
1396 emulate_1op("inc", c->dst, ctxt->eflags);
1397 break;
1398 case 0x48 ... 0x4f: /* dec r16/r32 */
1399 emulate_1op("dec", c->dst, ctxt->eflags);
1400 break;
1401 case 0x50 ... 0x57: /* push reg */
1402 c->dst.type = OP_MEM;
1403 c->dst.bytes = c->op_bytes;
1404 c->dst.val = c->src.val;
Harvey Harrison7a9572752008-02-19 07:40:41 -08001405 register_address_increment(c, &c->regs[VCPU_REGS_RSP],
Avi Kivity33615aa2007-10-31 11:15:56 +02001406 -c->op_bytes);
1407 c->dst.ptr = (void *) register_address(
Avi Kivity7a5b56d2008-06-22 16:22:51 +03001408 c, ss_base(ctxt), c->regs[VCPU_REGS_RSP]);
Avi Kivity33615aa2007-10-31 11:15:56 +02001409 break;
1410 case 0x58 ... 0x5f: /* pop reg */
1411 pop_instruction:
Avi Kivity7a5b56d2008-06-22 16:22:51 +03001412 if ((rc = ops->read_std(register_address(c, ss_base(ctxt),
Avi Kivity33615aa2007-10-31 11:15:56 +02001413 c->regs[VCPU_REGS_RSP]), c->dst.ptr,
1414 c->op_bytes, ctxt->vcpu)) != 0)
1415 goto done;
1416
Harvey Harrison7a9572752008-02-19 07:40:41 -08001417 register_address_increment(c, &c->regs[VCPU_REGS_RSP],
Avi Kivity33615aa2007-10-31 11:15:56 +02001418 c->op_bytes);
1419 c->dst.type = OP_NONE; /* Disable writeback. */
1420 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001421 case 0x63: /* movsxd */
Laurent Vivier8b4caf62007-09-18 11:27:19 +02001422 if (ctxt->mode != X86EMUL_MODE_PROT64)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001423 goto cannot_emulate;
Laurent Viviere4e03de2007-09-18 11:52:50 +02001424 c->dst.val = (s32) c->src.val;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001425 break;
Avi Kivity91ed7a02008-05-29 14:38:38 +03001426 case 0x68: /* push imm */
Avi Kivity018a98d2007-11-27 19:30:56 +02001427 case 0x6a: /* push imm8 */
Avi Kivity018a98d2007-11-27 19:30:56 +02001428 emulate_push(ctxt);
1429 break;
1430 case 0x6c: /* insb */
1431 case 0x6d: /* insw/insd */
1432 if (kvm_emulate_pio_string(ctxt->vcpu, NULL,
1433 1,
1434 (c->d & ByteOp) ? 1 : c->op_bytes,
1435 c->rep_prefix ?
Harvey Harrisone4706772008-02-19 07:40:38 -08001436 address_mask(c, c->regs[VCPU_REGS_RCX]) : 1,
Avi Kivity018a98d2007-11-27 19:30:56 +02001437 (ctxt->eflags & EFLG_DF),
Avi Kivity7a5b56d2008-06-22 16:22:51 +03001438 register_address(c, es_base(ctxt),
Avi Kivity018a98d2007-11-27 19:30:56 +02001439 c->regs[VCPU_REGS_RDI]),
1440 c->rep_prefix,
1441 c->regs[VCPU_REGS_RDX]) == 0) {
1442 c->eip = saved_eip;
1443 return -1;
1444 }
1445 return 0;
1446 case 0x6e: /* outsb */
1447 case 0x6f: /* outsw/outsd */
1448 if (kvm_emulate_pio_string(ctxt->vcpu, NULL,
1449 0,
1450 (c->d & ByteOp) ? 1 : c->op_bytes,
1451 c->rep_prefix ?
Harvey Harrisone4706772008-02-19 07:40:38 -08001452 address_mask(c, c->regs[VCPU_REGS_RCX]) : 1,
Avi Kivity018a98d2007-11-27 19:30:56 +02001453 (ctxt->eflags & EFLG_DF),
Avi Kivity7a5b56d2008-06-22 16:22:51 +03001454 register_address(c,
1455 seg_override_base(ctxt, c),
Avi Kivity018a98d2007-11-27 19:30:56 +02001456 c->regs[VCPU_REGS_RSI]),
1457 c->rep_prefix,
1458 c->regs[VCPU_REGS_RDX]) == 0) {
1459 c->eip = saved_eip;
1460 return -1;
1461 }
1462 return 0;
1463 case 0x70 ... 0x7f: /* jcc (short) */ {
1464 int rel = insn_fetch(s8, 1, c->eip);
1465
1466 if (test_cc(c->b, ctxt->eflags))
Harvey Harrison7a9572752008-02-19 07:40:41 -08001467 jmp_rel(c, rel);
Avi Kivity018a98d2007-11-27 19:30:56 +02001468 break;
1469 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001470 case 0x80 ... 0x83: /* Grp1 */
Laurent Viviere4e03de2007-09-18 11:52:50 +02001471 switch (c->modrm_reg) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001472 case 0:
1473 goto add;
1474 case 1:
1475 goto or;
1476 case 2:
1477 goto adc;
1478 case 3:
1479 goto sbb;
1480 case 4:
1481 goto and;
1482 case 5:
1483 goto sub;
1484 case 6:
1485 goto xor;
1486 case 7:
1487 goto cmp;
1488 }
1489 break;
1490 case 0x84 ... 0x85:
Laurent Vivier05f086f2007-09-24 11:10:55 +02001491 emulate_2op_SrcV("test", c->src, c->dst, ctxt->eflags);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001492 break;
1493 case 0x86 ... 0x87: /* xchg */
Mohammed Gamalb13354f2008-06-15 19:37:38 +03001494 xchg:
Avi Kivity6aa8b732006-12-10 02:21:36 -08001495 /* Write back the register source. */
Laurent Viviere4e03de2007-09-18 11:52:50 +02001496 switch (c->dst.bytes) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001497 case 1:
Laurent Viviere4e03de2007-09-18 11:52:50 +02001498 *(u8 *) c->src.ptr = (u8) c->dst.val;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001499 break;
1500 case 2:
Laurent Viviere4e03de2007-09-18 11:52:50 +02001501 *(u16 *) c->src.ptr = (u16) c->dst.val;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001502 break;
1503 case 4:
Laurent Viviere4e03de2007-09-18 11:52:50 +02001504 *c->src.ptr = (u32) c->dst.val;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001505 break; /* 64b reg: zero-extend */
1506 case 8:
Laurent Viviere4e03de2007-09-18 11:52:50 +02001507 *c->src.ptr = c->dst.val;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001508 break;
1509 }
1510 /*
1511 * Write back the memory destination with implicit LOCK
1512 * prefix.
1513 */
Laurent Viviere4e03de2007-09-18 11:52:50 +02001514 c->dst.val = c->src.val;
1515 c->lock_prefix = 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001516 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001517 case 0x88 ... 0x8b: /* mov */
Nitin A Kamble7de75242007-09-15 10:13:07 +03001518 goto mov;
Guillaume Thouvenin38d5bc62008-05-27 15:13:28 +02001519 case 0x8c: { /* mov r/m, sreg */
1520 struct kvm_segment segreg;
1521
1522 if (c->modrm_reg <= 5)
1523 kvm_get_segment(ctxt->vcpu, &segreg, c->modrm_reg);
1524 else {
1525 printk(KERN_INFO "0x8c: Invalid segreg in modrm byte 0x%02x\n",
1526 c->modrm);
1527 goto cannot_emulate;
1528 }
1529 c->dst.val = segreg.selector;
1530 break;
1531 }
Nitin A Kamble7e0b54b2007-09-15 10:35:36 +03001532 case 0x8d: /* lea r16/r32, m */
Avi Kivityf9b7aab2008-04-14 23:46:37 +03001533 c->dst.val = c->modrm_ea;
Nitin A Kamble7e0b54b2007-09-15 10:35:36 +03001534 break;
Guillaume Thouvenin42571982008-05-27 14:49:15 +02001535 case 0x8e: { /* mov seg, r/m16 */
1536 uint16_t sel;
1537 int type_bits;
1538 int err;
1539
1540 sel = c->src.val;
1541 if (c->modrm_reg <= 5) {
1542 type_bits = (c->modrm_reg == 1) ? 9 : 1;
1543 err = kvm_load_segment_descriptor(ctxt->vcpu, sel,
1544 type_bits, c->modrm_reg);
1545 } else {
1546 printk(KERN_INFO "Invalid segreg in modrm byte 0x%02x\n",
1547 c->modrm);
1548 goto cannot_emulate;
1549 }
1550
1551 if (err < 0)
1552 goto cannot_emulate;
1553
1554 c->dst.type = OP_NONE; /* Disable writeback. */
1555 break;
1556 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001557 case 0x8f: /* pop (sole member of Grp1a) */
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001558 rc = emulate_grp1a(ctxt, ops);
1559 if (rc != 0)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001560 goto done;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001561 break;
Mohammed Gamalb13354f2008-06-15 19:37:38 +03001562 case 0x90: /* nop / xchg r8,rax */
1563 if (!(c->rex_prefix & 1)) { /* nop */
1564 c->dst.type = OP_NONE;
1565 break;
1566 }
1567 case 0x91 ... 0x97: /* xchg reg,rax */
1568 c->src.type = c->dst.type = OP_REG;
1569 c->src.bytes = c->dst.bytes = c->op_bytes;
1570 c->src.ptr = (unsigned long *) &c->regs[VCPU_REGS_RAX];
1571 c->src.val = *(c->src.ptr);
1572 goto xchg;
Nitin A Kamblefd2a7602007-08-28 18:22:47 -07001573 case 0x9c: /* pushf */
Laurent Vivier05f086f2007-09-24 11:10:55 +02001574 c->src.val = (unsigned long) ctxt->eflags;
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001575 emulate_push(ctxt);
1576 break;
Nitin A Kamble535eabc2007-09-15 10:45:05 +03001577 case 0x9d: /* popf */
Laurent Vivier05f086f2007-09-24 11:10:55 +02001578 c->dst.ptr = (unsigned long *) &ctxt->eflags;
Nitin A Kamble535eabc2007-09-15 10:45:05 +03001579 goto pop_instruction;
Avi Kivity018a98d2007-11-27 19:30:56 +02001580 case 0xa0 ... 0xa1: /* mov */
1581 c->dst.ptr = (unsigned long *)&c->regs[VCPU_REGS_RAX];
1582 c->dst.val = c->src.val;
1583 break;
1584 case 0xa2 ... 0xa3: /* mov */
1585 c->dst.val = (unsigned long)c->regs[VCPU_REGS_RAX];
1586 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001587 case 0xa4 ... 0xa5: /* movs */
Laurent Viviere4e03de2007-09-18 11:52:50 +02001588 c->dst.type = OP_MEM;
1589 c->dst.bytes = (c->d & ByteOp) ? 1 : c->op_bytes;
Harvey Harrisone4706772008-02-19 07:40:38 -08001590 c->dst.ptr = (unsigned long *)register_address(c,
Avi Kivity7a5b56d2008-06-22 16:22:51 +03001591 es_base(ctxt),
Laurent Viviere4e03de2007-09-18 11:52:50 +02001592 c->regs[VCPU_REGS_RDI]);
Harvey Harrisone4706772008-02-19 07:40:38 -08001593 if ((rc = ops->read_emulated(register_address(c,
Avi Kivity7a5b56d2008-06-22 16:22:51 +03001594 seg_override_base(ctxt, c),
Laurent Viviere4e03de2007-09-18 11:52:50 +02001595 c->regs[VCPU_REGS_RSI]),
1596 &c->dst.val,
1597 c->dst.bytes, ctxt->vcpu)) != 0)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001598 goto done;
Harvey Harrison7a9572752008-02-19 07:40:41 -08001599 register_address_increment(c, &c->regs[VCPU_REGS_RSI],
Laurent Vivier05f086f2007-09-24 11:10:55 +02001600 (ctxt->eflags & EFLG_DF) ? -c->dst.bytes
Laurent Viviere4e03de2007-09-18 11:52:50 +02001601 : c->dst.bytes);
Harvey Harrison7a9572752008-02-19 07:40:41 -08001602 register_address_increment(c, &c->regs[VCPU_REGS_RDI],
Laurent Vivier05f086f2007-09-24 11:10:55 +02001603 (ctxt->eflags & EFLG_DF) ? -c->dst.bytes
Laurent Viviere4e03de2007-09-18 11:52:50 +02001604 : c->dst.bytes);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001605 break;
1606 case 0xa6 ... 0xa7: /* cmps */
Guillaume Thouvenind7e51172007-11-26 13:49:09 +01001607 c->src.type = OP_NONE; /* Disable writeback. */
1608 c->src.bytes = (c->d & ByteOp) ? 1 : c->op_bytes;
Harvey Harrisone4706772008-02-19 07:40:38 -08001609 c->src.ptr = (unsigned long *)register_address(c,
Avi Kivity7a5b56d2008-06-22 16:22:51 +03001610 seg_override_base(ctxt, c),
Guillaume Thouvenind7e51172007-11-26 13:49:09 +01001611 c->regs[VCPU_REGS_RSI]);
1612 if ((rc = ops->read_emulated((unsigned long)c->src.ptr,
1613 &c->src.val,
1614 c->src.bytes,
1615 ctxt->vcpu)) != 0)
1616 goto done;
1617
1618 c->dst.type = OP_NONE; /* Disable writeback. */
1619 c->dst.bytes = (c->d & ByteOp) ? 1 : c->op_bytes;
Harvey Harrisone4706772008-02-19 07:40:38 -08001620 c->dst.ptr = (unsigned long *)register_address(c,
Avi Kivity7a5b56d2008-06-22 16:22:51 +03001621 es_base(ctxt),
Guillaume Thouvenind7e51172007-11-26 13:49:09 +01001622 c->regs[VCPU_REGS_RDI]);
1623 if ((rc = ops->read_emulated((unsigned long)c->dst.ptr,
1624 &c->dst.val,
1625 c->dst.bytes,
1626 ctxt->vcpu)) != 0)
1627 goto done;
1628
1629 DPRINTF("cmps: mem1=0x%p mem2=0x%p\n", c->src.ptr, c->dst.ptr);
1630
1631 emulate_2op_SrcV("cmp", c->src, c->dst, ctxt->eflags);
1632
Harvey Harrison7a9572752008-02-19 07:40:41 -08001633 register_address_increment(c, &c->regs[VCPU_REGS_RSI],
Guillaume Thouvenind7e51172007-11-26 13:49:09 +01001634 (ctxt->eflags & EFLG_DF) ? -c->src.bytes
1635 : c->src.bytes);
Harvey Harrison7a9572752008-02-19 07:40:41 -08001636 register_address_increment(c, &c->regs[VCPU_REGS_RDI],
Guillaume Thouvenind7e51172007-11-26 13:49:09 +01001637 (ctxt->eflags & EFLG_DF) ? -c->dst.bytes
1638 : c->dst.bytes);
1639
1640 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001641 case 0xaa ... 0xab: /* stos */
Laurent Viviere4e03de2007-09-18 11:52:50 +02001642 c->dst.type = OP_MEM;
1643 c->dst.bytes = (c->d & ByteOp) ? 1 : c->op_bytes;
Harvey Harrisone4706772008-02-19 07:40:38 -08001644 c->dst.ptr = (unsigned long *)register_address(c,
Avi Kivity7a5b56d2008-06-22 16:22:51 +03001645 es_base(ctxt),
Sheng Yanga7e6c882007-11-15 14:52:28 +08001646 c->regs[VCPU_REGS_RDI]);
Laurent Viviere4e03de2007-09-18 11:52:50 +02001647 c->dst.val = c->regs[VCPU_REGS_RAX];
Harvey Harrison7a9572752008-02-19 07:40:41 -08001648 register_address_increment(c, &c->regs[VCPU_REGS_RDI],
Laurent Vivier05f086f2007-09-24 11:10:55 +02001649 (ctxt->eflags & EFLG_DF) ? -c->dst.bytes
Laurent Viviere4e03de2007-09-18 11:52:50 +02001650 : c->dst.bytes);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001651 break;
1652 case 0xac ... 0xad: /* lods */
Laurent Viviere4e03de2007-09-18 11:52:50 +02001653 c->dst.type = OP_REG;
1654 c->dst.bytes = (c->d & ByteOp) ? 1 : c->op_bytes;
1655 c->dst.ptr = (unsigned long *)&c->regs[VCPU_REGS_RAX];
Harvey Harrisone4706772008-02-19 07:40:38 -08001656 if ((rc = ops->read_emulated(register_address(c,
Avi Kivity7a5b56d2008-06-22 16:22:51 +03001657 seg_override_base(ctxt, c),
Sheng Yanga7e6c882007-11-15 14:52:28 +08001658 c->regs[VCPU_REGS_RSI]),
1659 &c->dst.val,
1660 c->dst.bytes,
1661 ctxt->vcpu)) != 0)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001662 goto done;
Harvey Harrison7a9572752008-02-19 07:40:41 -08001663 register_address_increment(c, &c->regs[VCPU_REGS_RSI],
Laurent Vivier05f086f2007-09-24 11:10:55 +02001664 (ctxt->eflags & EFLG_DF) ? -c->dst.bytes
Laurent Viviere4e03de2007-09-18 11:52:50 +02001665 : c->dst.bytes);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001666 break;
1667 case 0xae ... 0xaf: /* scas */
1668 DPRINTF("Urk! I don't handle SCAS.\n");
1669 goto cannot_emulate;
Mohammed Gamala5e2e822008-08-27 05:02:56 +03001670 case 0xb0 ... 0xbf: /* mov r, imm */
Guillaume Thouvenin615ac122008-05-27 10:19:16 +02001671 goto mov;
Avi Kivity018a98d2007-11-27 19:30:56 +02001672 case 0xc0 ... 0xc1:
1673 emulate_grp2(ctxt);
1674 break;
Avi Kivity111de5d2007-11-27 19:14:21 +02001675 case 0xc3: /* ret */
1676 c->dst.ptr = &c->eip;
1677 goto pop_instruction;
Avi Kivity018a98d2007-11-27 19:30:56 +02001678 case 0xc6 ... 0xc7: /* mov (sole member of Grp11) */
1679 mov:
1680 c->dst.val = c->src.val;
1681 break;
1682 case 0xd0 ... 0xd1: /* Grp2 */
1683 c->src.val = 1;
1684 emulate_grp2(ctxt);
1685 break;
1686 case 0xd2 ... 0xd3: /* Grp2 */
1687 c->src.val = c->regs[VCPU_REGS_RCX];
1688 emulate_grp2(ctxt);
1689 break;
Nitin A Kamble1a52e052007-09-18 16:34:25 -07001690 case 0xe8: /* call (near) */ {
1691 long int rel;
Laurent Viviere4e03de2007-09-18 11:52:50 +02001692 switch (c->op_bytes) {
Nitin A Kamble1a52e052007-09-18 16:34:25 -07001693 case 2:
Laurent Viviere4e03de2007-09-18 11:52:50 +02001694 rel = insn_fetch(s16, 2, c->eip);
Nitin A Kamble1a52e052007-09-18 16:34:25 -07001695 break;
1696 case 4:
Laurent Viviere4e03de2007-09-18 11:52:50 +02001697 rel = insn_fetch(s32, 4, c->eip);
Nitin A Kamble1a52e052007-09-18 16:34:25 -07001698 break;
Nitin A Kamble1a52e052007-09-18 16:34:25 -07001699 default:
1700 DPRINTF("Call: Invalid op_bytes\n");
1701 goto cannot_emulate;
1702 }
Laurent Viviere4e03de2007-09-18 11:52:50 +02001703 c->src.val = (unsigned long) c->eip;
Harvey Harrison7a9572752008-02-19 07:40:41 -08001704 jmp_rel(c, rel);
Laurent Viviere4e03de2007-09-18 11:52:50 +02001705 c->op_bytes = c->ad_bytes;
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001706 emulate_push(ctxt);
1707 break;
Nitin A Kamble1a52e052007-09-18 16:34:25 -07001708 }
1709 case 0xe9: /* jmp rel */
Guillaume Thouvenin954cd362008-05-27 10:19:08 +02001710 goto jmp;
1711 case 0xea: /* jmp far */ {
1712 uint32_t eip;
1713 uint16_t sel;
1714
1715 switch (c->op_bytes) {
1716 case 2:
1717 eip = insn_fetch(u16, 2, c->eip);
1718 break;
1719 case 4:
1720 eip = insn_fetch(u32, 4, c->eip);
1721 break;
1722 default:
1723 DPRINTF("jmp far: Invalid op_bytes\n");
1724 goto cannot_emulate;
1725 }
1726 sel = insn_fetch(u16, 2, c->eip);
1727 if (kvm_load_segment_descriptor(ctxt->vcpu, sel, 9, VCPU_SREG_CS) < 0) {
1728 DPRINTF("jmp far: Failed to load CS descriptor\n");
1729 goto cannot_emulate;
1730 }
1731
1732 c->eip = eip;
1733 break;
1734 }
1735 case 0xeb:
1736 jmp: /* jmp rel short */
Harvey Harrison7a9572752008-02-19 07:40:41 -08001737 jmp_rel(c, c->src.val);
Laurent Viviera01af5e2007-09-24 11:10:56 +02001738 c->dst.type = OP_NONE; /* Disable writeback. */
Nitin A Kamble1a52e052007-09-18 16:34:25 -07001739 break;
Avi Kivity111de5d2007-11-27 19:14:21 +02001740 case 0xf4: /* hlt */
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001741 ctxt->vcpu->arch.halt_request = 1;
Mohammed Gamal19fdfa02008-07-06 16:51:26 +03001742 break;
Avi Kivity111de5d2007-11-27 19:14:21 +02001743 case 0xf5: /* cmc */
1744 /* complement carry flag from eflags reg */
1745 ctxt->eflags ^= EFLG_CF;
1746 c->dst.type = OP_NONE; /* Disable writeback. */
1747 break;
Avi Kivity018a98d2007-11-27 19:30:56 +02001748 case 0xf6 ... 0xf7: /* Grp3 */
1749 rc = emulate_grp3(ctxt, ops);
1750 if (rc != 0)
1751 goto done;
1752 break;
Avi Kivity111de5d2007-11-27 19:14:21 +02001753 case 0xf8: /* clc */
1754 ctxt->eflags &= ~EFLG_CF;
1755 c->dst.type = OP_NONE; /* Disable writeback. */
1756 break;
1757 case 0xfa: /* cli */
1758 ctxt->eflags &= ~X86_EFLAGS_IF;
1759 c->dst.type = OP_NONE; /* Disable writeback. */
1760 break;
1761 case 0xfb: /* sti */
1762 ctxt->eflags |= X86_EFLAGS_IF;
1763 c->dst.type = OP_NONE; /* Disable writeback. */
1764 break;
Mohammed Gamalfb4616f2008-09-01 04:52:24 +03001765 case 0xfc: /* cld */
1766 ctxt->eflags &= ~EFLG_DF;
1767 c->dst.type = OP_NONE; /* Disable writeback. */
1768 break;
1769 case 0xfd: /* std */
1770 ctxt->eflags |= EFLG_DF;
1771 c->dst.type = OP_NONE; /* Disable writeback. */
1772 break;
Avi Kivity018a98d2007-11-27 19:30:56 +02001773 case 0xfe ... 0xff: /* Grp4/Grp5 */
1774 rc = emulate_grp45(ctxt, ops);
1775 if (rc != 0)
1776 goto done;
1777 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001778 }
Avi Kivity018a98d2007-11-27 19:30:56 +02001779
1780writeback:
1781 rc = writeback(ctxt, ops);
1782 if (rc != 0)
1783 goto done;
1784
1785 /* Commit shadow register state. */
Zhang Xiantaoad312c72007-12-13 23:50:52 +08001786 memcpy(ctxt->vcpu->arch.regs, c->regs, sizeof c->regs);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03001787 kvm_rip_write(ctxt->vcpu, c->eip);
Avi Kivity018a98d2007-11-27 19:30:56 +02001788
1789done:
1790 if (rc == X86EMUL_UNHANDLEABLE) {
1791 c->eip = saved_eip;
1792 return -1;
1793 }
1794 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001795
1796twobyte_insn:
Laurent Viviere4e03de2007-09-18 11:52:50 +02001797 switch (c->b) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001798 case 0x01: /* lgdt, lidt, lmsw */
Laurent Viviere4e03de2007-09-18 11:52:50 +02001799 switch (c->modrm_reg) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001800 u16 size;
1801 unsigned long address;
1802
Anthony Liguoriaca7f962007-09-17 14:57:49 -05001803 case 0: /* vmcall */
Laurent Viviere4e03de2007-09-18 11:52:50 +02001804 if (c->modrm_mod != 3 || c->modrm_rm != 1)
Anthony Liguoriaca7f962007-09-17 14:57:49 -05001805 goto cannot_emulate;
1806
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05001807 rc = kvm_fix_hypercall(ctxt->vcpu);
1808 if (rc)
1809 goto done;
1810
Avi Kivity33e38852008-05-21 15:34:25 +03001811 /* Let the processor re-execute the fixed hypercall */
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03001812 c->eip = kvm_rip_read(ctxt->vcpu);
Avi Kivity16286d02008-04-14 14:40:50 +03001813 /* Disable writeback. */
1814 c->dst.type = OP_NONE;
Anthony Liguoriaca7f962007-09-17 14:57:49 -05001815 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001816 case 2: /* lgdt */
Laurent Viviere4e03de2007-09-18 11:52:50 +02001817 rc = read_descriptor(ctxt, ops, c->src.ptr,
1818 &size, &address, c->op_bytes);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001819 if (rc)
1820 goto done;
1821 realmode_lgdt(ctxt->vcpu, size, address);
Avi Kivity16286d02008-04-14 14:40:50 +03001822 /* Disable writeback. */
1823 c->dst.type = OP_NONE;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001824 break;
Anthony Liguoriaca7f962007-09-17 14:57:49 -05001825 case 3: /* lidt/vmmcall */
Laurent Viviere4e03de2007-09-18 11:52:50 +02001826 if (c->modrm_mod == 3 && c->modrm_rm == 1) {
Anthony Liguori7aa81cc2007-09-17 14:57:50 -05001827 rc = kvm_fix_hypercall(ctxt->vcpu);
1828 if (rc)
1829 goto done;
1830 kvm_emulate_hypercall(ctxt->vcpu);
Anthony Liguoriaca7f962007-09-17 14:57:49 -05001831 } else {
Laurent Viviere4e03de2007-09-18 11:52:50 +02001832 rc = read_descriptor(ctxt, ops, c->src.ptr,
Anthony Liguoriaca7f962007-09-17 14:57:49 -05001833 &size, &address,
Laurent Viviere4e03de2007-09-18 11:52:50 +02001834 c->op_bytes);
Anthony Liguoriaca7f962007-09-17 14:57:49 -05001835 if (rc)
1836 goto done;
1837 realmode_lidt(ctxt->vcpu, size, address);
1838 }
Avi Kivity16286d02008-04-14 14:40:50 +03001839 /* Disable writeback. */
1840 c->dst.type = OP_NONE;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001841 break;
1842 case 4: /* smsw */
Avi Kivity16286d02008-04-14 14:40:50 +03001843 c->dst.bytes = 2;
1844 c->dst.val = realmode_get_cr(ctxt->vcpu, 0);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001845 break;
1846 case 6: /* lmsw */
Avi Kivity16286d02008-04-14 14:40:50 +03001847 realmode_lmsw(ctxt->vcpu, (u16)c->src.val,
1848 &ctxt->eflags);
Avi Kivitydc7457e2008-04-30 16:13:36 +03001849 c->dst.type = OP_NONE;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001850 break;
1851 case 7: /* invlpg*/
Sheng Yange8d8d7f2007-11-16 16:29:15 +08001852 emulate_invlpg(ctxt->vcpu, memop);
Avi Kivity16286d02008-04-14 14:40:50 +03001853 /* Disable writeback. */
1854 c->dst.type = OP_NONE;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001855 break;
1856 default:
1857 goto cannot_emulate;
1858 }
1859 break;
Avi Kivity018a98d2007-11-27 19:30:56 +02001860 case 0x06:
1861 emulate_clts(ctxt->vcpu);
1862 c->dst.type = OP_NONE;
1863 break;
1864 case 0x08: /* invd */
1865 case 0x09: /* wbinvd */
1866 case 0x0d: /* GrpP (prefetch) */
1867 case 0x18: /* Grp16 (prefetch/nop) */
1868 c->dst.type = OP_NONE;
1869 break;
1870 case 0x20: /* mov cr, reg */
1871 if (c->modrm_mod != 3)
1872 goto cannot_emulate;
1873 c->regs[c->modrm_rm] =
1874 realmode_get_cr(ctxt->vcpu, c->modrm_reg);
1875 c->dst.type = OP_NONE; /* no writeback */
1876 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001877 case 0x21: /* mov from dr to reg */
Laurent Viviere4e03de2007-09-18 11:52:50 +02001878 if (c->modrm_mod != 3)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001879 goto cannot_emulate;
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02001880 rc = emulator_get_dr(ctxt, c->modrm_reg, &c->regs[c->modrm_rm]);
Laurent Viviera01af5e2007-09-24 11:10:56 +02001881 if (rc)
1882 goto cannot_emulate;
1883 c->dst.type = OP_NONE; /* no writeback */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001884 break;
Avi Kivity018a98d2007-11-27 19:30:56 +02001885 case 0x22: /* mov reg, cr */
1886 if (c->modrm_mod != 3)
1887 goto cannot_emulate;
1888 realmode_set_cr(ctxt->vcpu,
1889 c->modrm_reg, c->modrm_val, &ctxt->eflags);
1890 c->dst.type = OP_NONE;
1891 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001892 case 0x23: /* mov from reg to dr */
Laurent Viviere4e03de2007-09-18 11:52:50 +02001893 if (c->modrm_mod != 3)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001894 goto cannot_emulate;
Laurent Viviere4e03de2007-09-18 11:52:50 +02001895 rc = emulator_set_dr(ctxt, c->modrm_reg,
1896 c->regs[c->modrm_rm]);
Laurent Viviera01af5e2007-09-24 11:10:56 +02001897 if (rc)
1898 goto cannot_emulate;
1899 c->dst.type = OP_NONE; /* no writeback */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001900 break;
Avi Kivity018a98d2007-11-27 19:30:56 +02001901 case 0x30:
1902 /* wrmsr */
1903 msr_data = (u32)c->regs[VCPU_REGS_RAX]
1904 | ((u64)c->regs[VCPU_REGS_RDX] << 32);
1905 rc = kvm_set_msr(ctxt->vcpu, c->regs[VCPU_REGS_RCX], msr_data);
1906 if (rc) {
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02001907 kvm_inject_gp(ctxt->vcpu, 0);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03001908 c->eip = kvm_rip_read(ctxt->vcpu);
Avi Kivity018a98d2007-11-27 19:30:56 +02001909 }
1910 rc = X86EMUL_CONTINUE;
1911 c->dst.type = OP_NONE;
1912 break;
1913 case 0x32:
1914 /* rdmsr */
1915 rc = kvm_get_msr(ctxt->vcpu, c->regs[VCPU_REGS_RCX], &msr_data);
1916 if (rc) {
Avi Kivityc1a5d4f2007-11-25 14:12:03 +02001917 kvm_inject_gp(ctxt->vcpu, 0);
Marcelo Tosatti5fdbf972008-06-27 14:58:02 -03001918 c->eip = kvm_rip_read(ctxt->vcpu);
Avi Kivity018a98d2007-11-27 19:30:56 +02001919 } else {
1920 c->regs[VCPU_REGS_RAX] = (u32)msr_data;
1921 c->regs[VCPU_REGS_RDX] = msr_data >> 32;
1922 }
1923 rc = X86EMUL_CONTINUE;
1924 c->dst.type = OP_NONE;
1925 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001926 case 0x40 ... 0x4f: /* cmov */
Laurent Viviere4e03de2007-09-18 11:52:50 +02001927 c->dst.val = c->dst.orig_val = c->src.val;
Laurent Viviera01af5e2007-09-24 11:10:56 +02001928 if (!test_cc(c->b, ctxt->eflags))
1929 c->dst.type = OP_NONE; /* no writeback */
Avi Kivity6aa8b732006-12-10 02:21:36 -08001930 break;
Avi Kivity018a98d2007-11-27 19:30:56 +02001931 case 0x80 ... 0x8f: /* jnz rel, etc*/ {
1932 long int rel;
1933
1934 switch (c->op_bytes) {
1935 case 2:
1936 rel = insn_fetch(s16, 2, c->eip);
1937 break;
1938 case 4:
1939 rel = insn_fetch(s32, 4, c->eip);
1940 break;
1941 case 8:
1942 rel = insn_fetch(s64, 8, c->eip);
1943 break;
1944 default:
1945 DPRINTF("jnz: Invalid op_bytes\n");
1946 goto cannot_emulate;
1947 }
1948 if (test_cc(c->b, ctxt->eflags))
Harvey Harrison7a9572752008-02-19 07:40:41 -08001949 jmp_rel(c, rel);
Avi Kivity018a98d2007-11-27 19:30:56 +02001950 c->dst.type = OP_NONE;
1951 break;
1952 }
Nitin A Kamble7de75242007-09-15 10:13:07 +03001953 case 0xa3:
1954 bt: /* bt */
Qing Hee4f8e032007-09-24 17:22:13 +08001955 c->dst.type = OP_NONE;
Laurent Viviere4e03de2007-09-18 11:52:50 +02001956 /* only subword offset */
1957 c->src.val &= (c->dst.bytes << 3) - 1;
Laurent Vivier05f086f2007-09-24 11:10:55 +02001958 emulate_2op_SrcV_nobyte("bt", c->src, c->dst, ctxt->eflags);
Nitin A Kamble7de75242007-09-15 10:13:07 +03001959 break;
1960 case 0xab:
1961 bts: /* bts */
Laurent Viviere4e03de2007-09-18 11:52:50 +02001962 /* only subword offset */
1963 c->src.val &= (c->dst.bytes << 3) - 1;
Laurent Vivier05f086f2007-09-24 11:10:55 +02001964 emulate_2op_SrcV_nobyte("bts", c->src, c->dst, ctxt->eflags);
Nitin A Kamble7de75242007-09-15 10:13:07 +03001965 break;
Glauber Costa2a7c5b82008-07-10 17:08:15 -03001966 case 0xae: /* clflush */
1967 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001968 case 0xb0 ... 0xb1: /* cmpxchg */
1969 /*
1970 * Save real source value, then compare EAX against
1971 * destination.
1972 */
Laurent Viviere4e03de2007-09-18 11:52:50 +02001973 c->src.orig_val = c->src.val;
1974 c->src.val = c->regs[VCPU_REGS_RAX];
Laurent Vivier05f086f2007-09-24 11:10:55 +02001975 emulate_2op_SrcV("cmp", c->src, c->dst, ctxt->eflags);
1976 if (ctxt->eflags & EFLG_ZF) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001977 /* Success: write back to memory. */
Laurent Viviere4e03de2007-09-18 11:52:50 +02001978 c->dst.val = c->src.orig_val;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001979 } else {
1980 /* Failure: write the value we saw to EAX. */
Laurent Viviere4e03de2007-09-18 11:52:50 +02001981 c->dst.type = OP_REG;
1982 c->dst.ptr = (unsigned long *)&c->regs[VCPU_REGS_RAX];
Avi Kivity6aa8b732006-12-10 02:21:36 -08001983 }
1984 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001985 case 0xb3:
1986 btr: /* btr */
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("btr", c->src, c->dst, ctxt->eflags);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001990 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001991 case 0xb6 ... 0xb7: /* movzx */
Laurent Viviere4e03de2007-09-18 11:52:50 +02001992 c->dst.bytes = c->op_bytes;
1993 c->dst.val = (c->d & ByteOp) ? (u8) c->src.val
1994 : (u16) c->src.val;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001995 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001996 case 0xba: /* Grp8 */
Laurent Viviere4e03de2007-09-18 11:52:50 +02001997 switch (c->modrm_reg & 3) {
Avi Kivity6aa8b732006-12-10 02:21:36 -08001998 case 0:
1999 goto bt;
2000 case 1:
2001 goto bts;
2002 case 2:
2003 goto btr;
2004 case 3:
2005 goto btc;
2006 }
2007 break;
Nitin A Kamble7de75242007-09-15 10:13:07 +03002008 case 0xbb:
2009 btc: /* btc */
Laurent Viviere4e03de2007-09-18 11:52:50 +02002010 /* only subword offset */
2011 c->src.val &= (c->dst.bytes << 3) - 1;
Laurent Vivier05f086f2007-09-24 11:10:55 +02002012 emulate_2op_SrcV_nobyte("btc", c->src, c->dst, ctxt->eflags);
Nitin A Kamble7de75242007-09-15 10:13:07 +03002013 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002014 case 0xbe ... 0xbf: /* movsx */
Laurent Viviere4e03de2007-09-18 11:52:50 +02002015 c->dst.bytes = c->op_bytes;
2016 c->dst.val = (c->d & ByteOp) ? (s8) c->src.val :
2017 (s16) c->src.val;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002018 break;
Sheng Yanga012e652007-10-15 14:24:20 +08002019 case 0xc3: /* movnti */
Laurent Viviere4e03de2007-09-18 11:52:50 +02002020 c->dst.bytes = c->op_bytes;
2021 c->dst.val = (c->op_bytes == 4) ? (u32) c->src.val :
2022 (u64) c->src.val;
Sheng Yanga012e652007-10-15 14:24:20 +08002023 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002024 case 0xc7: /* Grp9 (cmpxchg8b) */
Sheng Yange8d8d7f2007-11-16 16:29:15 +08002025 rc = emulate_grp9(ctxt, ops, memop);
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02002026 if (rc != 0)
2027 goto done;
Avi Kivity018a98d2007-11-27 19:30:56 +02002028 c->dst.type = OP_NONE;
Laurent Vivier8cdbd2c2007-09-24 11:10:54 +02002029 break;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002030 }
2031 goto writeback;
2032
2033cannot_emulate:
Laurent Viviere4e03de2007-09-18 11:52:50 +02002034 DPRINTF("Cannot emulate %02x\n", c->b);
Laurent Vivier34273182007-09-18 11:27:37 +02002035 c->eip = saved_eip;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002036 return -1;
2037}