blob: 44787a7ac8dcfa25f0fdeccbd4213058647fe3d0 [file] [log] [blame]
Ian Rogers706a10e2012-03-23 17:00:55 -07001/*
2 * Copyright (C) 2012 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include "disassembler_x86.h"
18
Ian Rogerscf7f1912014-10-22 22:06:39 -070019#include <inttypes.h>
20
21#include <ostream>
Ian Rogersc7dd2952014-10-21 23:31:19 -070022#include <sstream>
Ian Rogers706a10e2012-03-23 17:00:55 -070023
Elliott Hughes07ed66b2012-12-12 18:34:25 -080024#include "base/logging.h"
Elliott Hughese222ee02012-12-13 14:41:43 -080025#include "base/stringprintf.h"
Elliott Hughes92301d92012-04-10 15:57:52 -070026#include "thread.h"
Elliott Hughes0f3c5532012-03-30 14:51:51 -070027
Ian Rogers706a10e2012-03-23 17:00:55 -070028namespace art {
29namespace x86 {
30
Ian Rogersb23a7722012-10-09 16:54:26 -070031size_t DisassemblerX86::Dump(std::ostream& os, const uint8_t* begin) {
32 return DumpInstruction(os, begin);
33}
34
Ian Rogers706a10e2012-03-23 17:00:55 -070035void DisassemblerX86::Dump(std::ostream& os, const uint8_t* begin, const uint8_t* end) {
36 size_t length = 0;
37 for (const uint8_t* cur = begin; cur < end; cur += length) {
38 length = DumpInstruction(os, cur);
39 }
40}
41
Vladimir Kostyukov122113a2014-05-30 17:56:23 +070042static const char* gReg8Names[] = {
43 "al", "cl", "dl", "bl", "ah", "ch", "dh", "bh"
44};
45static const char* gExtReg8Names[] = {
46 "al", "cl", "dl", "bl", "spl", "bpl", "sil", "dil",
47 "r8l", "r9l", "r10l", "r11l", "r12l", "r13l", "r14l", "r15l"
48};
49static const char* gReg16Names[] = {
50 "ax", "cx", "dx", "bx", "sp", "bp", "si", "di",
51 "r8w", "r9w", "r10w", "r11w", "r12w", "r13w", "r14w", "r15w"
52};
53static const char* gReg32Names[] = {
54 "eax", "ecx", "edx", "ebx", "esp", "ebp", "esi", "edi",
55 "r8d", "r9d", "r10d", "r11d", "r12d", "r13d", "r14d", "r15d"
56};
Ian Rogers38e12032014-03-14 14:06:14 -070057static const char* gReg64Names[] = {
58 "rax", "rcx", "rdx", "rbx", "rsp", "rbp", "rsi", "rdi",
59 "r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15"
60};
Ian Rogers706a10e2012-03-23 17:00:55 -070061
Mark Mendella33720c2014-06-18 21:02:29 -040062// 64-bit opcode REX modifier.
Andreas Gampec8ccf682014-09-29 20:07:43 -070063constexpr uint8_t REX_W = 8U /* 0b1000 */;
64constexpr uint8_t REX_R = 4U /* 0b0100 */;
65constexpr uint8_t REX_X = 2U /* 0b0010 */;
66constexpr uint8_t REX_B = 1U /* 0b0001 */;
Mark Mendella33720c2014-06-18 21:02:29 -040067
Ian Rogers38e12032014-03-14 14:06:14 -070068static void DumpReg0(std::ostream& os, uint8_t rex, size_t reg,
Ian Rogers706a10e2012-03-23 17:00:55 -070069 bool byte_operand, uint8_t size_override) {
Ian Rogers38e12032014-03-14 14:06:14 -070070 DCHECK_LT(reg, (rex == 0) ? 8u : 16u);
Mark Mendella33720c2014-06-18 21:02:29 -040071 bool rex_w = (rex & REX_W) != 0;
Vladimir Kostyukov122113a2014-05-30 17:56:23 +070072 if (byte_operand) {
73 os << ((rex == 0) ? gReg8Names[reg] : gExtReg8Names[reg]);
74 } else if (rex_w) {
75 os << gReg64Names[reg];
76 } else if (size_override == 0x66) {
77 os << gReg16Names[reg];
78 } else {
79 os << gReg32Names[reg];
Ian Rogers706a10e2012-03-23 17:00:55 -070080 }
81}
82
Mark Mendell88649c72014-06-04 21:20:00 -040083static void DumpAnyReg(std::ostream& os, uint8_t rex, size_t reg,
Vladimir Kostyukov122113a2014-05-30 17:56:23 +070084 bool byte_operand, uint8_t size_override, RegFile reg_file) {
85 if (reg_file == GPR) {
86 DumpReg0(os, rex, reg, byte_operand, size_override);
87 } else if (reg_file == SSE) {
88 os << "xmm" << reg;
89 } else {
90 os << "mm" << reg;
91 }
92}
93
Ian Rogers706a10e2012-03-23 17:00:55 -070094static void DumpReg(std::ostream& os, uint8_t rex, uint8_t reg,
Ian Rogersbf989802012-04-16 16:07:49 -070095 bool byte_operand, uint8_t size_override, RegFile reg_file) {
Mark Mendella33720c2014-06-18 21:02:29 -040096 bool rex_r = (rex & REX_R) != 0;
Ian Rogers38e12032014-03-14 14:06:14 -070097 size_t reg_num = rex_r ? (reg + 8) : reg;
Vladimir Kostyukov122113a2014-05-30 17:56:23 +070098 DumpAnyReg(os, rex, reg_num, byte_operand, size_override, reg_file);
99}
100
101static void DumpRmReg(std::ostream& os, uint8_t rex, uint8_t reg,
102 bool byte_operand, uint8_t size_override, RegFile reg_file) {
Mark Mendella33720c2014-06-18 21:02:29 -0400103 bool rex_b = (rex & REX_B) != 0;
Vladimir Kostyukov122113a2014-05-30 17:56:23 +0700104 size_t reg_num = rex_b ? (reg + 8) : reg;
105 DumpAnyReg(os, rex, reg_num, byte_operand, size_override, reg_file);
106}
107
108static void DumpAddrReg(std::ostream& os, uint8_t rex, uint8_t reg) {
109 if (rex != 0) {
110 os << gReg64Names[reg];
Ian Rogersbf989802012-04-16 16:07:49 -0700111 } else {
Vladimir Kostyukov122113a2014-05-30 17:56:23 +0700112 os << gReg32Names[reg];
Ian Rogersbf989802012-04-16 16:07:49 -0700113 }
Ian Rogers706a10e2012-03-23 17:00:55 -0700114}
115
Ian Rogers7caad772012-03-30 01:07:54 -0700116static void DumpBaseReg(std::ostream& os, uint8_t rex, uint8_t reg) {
Mark Mendella33720c2014-06-18 21:02:29 -0400117 bool rex_b = (rex & REX_B) != 0;
Ian Rogers38e12032014-03-14 14:06:14 -0700118 size_t reg_num = rex_b ? (reg + 8) : reg;
Vladimir Kostyukov122113a2014-05-30 17:56:23 +0700119 DumpAddrReg(os, rex, reg_num);
Ian Rogers706a10e2012-03-23 17:00:55 -0700120}
121
Vladimir Kostyukov79bb1842014-07-01 18:28:43 +0700122static void DumpOpcodeReg(std::ostream& os, uint8_t rex, uint8_t reg,
123 bool byte_operand, uint8_t size_override) {
Mark Mendella33720c2014-06-18 21:02:29 -0400124 bool rex_b = (rex & REX_B) != 0;
Vladimir Kostyukov122113a2014-05-30 17:56:23 +0700125 size_t reg_num = rex_b ? (reg + 8) : reg;
Vladimir Kostyukov79bb1842014-07-01 18:28:43 +0700126 DumpReg0(os, rex, reg_num, byte_operand, size_override);
Ian Rogers706a10e2012-03-23 17:00:55 -0700127}
128
Elliott Hughes92301d92012-04-10 15:57:52 -0700129enum SegmentPrefix {
130 kCs = 0x2e,
131 kSs = 0x36,
132 kDs = 0x3e,
133 kEs = 0x26,
134 kFs = 0x64,
135 kGs = 0x65,
136};
137
Ian Rogers706a10e2012-03-23 17:00:55 -0700138static void DumpSegmentOverride(std::ostream& os, uint8_t segment_prefix) {
139 switch (segment_prefix) {
Elliott Hughes92301d92012-04-10 15:57:52 -0700140 case kCs: os << "cs:"; break;
141 case kSs: os << "ss:"; break;
142 case kDs: os << "ds:"; break;
143 case kEs: os << "es:"; break;
144 case kFs: os << "fs:"; break;
145 case kGs: os << "gs:"; break;
Ian Rogers706a10e2012-03-23 17:00:55 -0700146 default: break;
147 }
148}
149
Andreas Gampee5eb7062014-12-12 18:44:19 -0800150// Do not inline to avoid Clang stack frame problems. b/18733806
Andreas Gampe86830382014-12-12 21:41:29 -0800151NO_INLINE
152static std::string DumpCodeHex(const uint8_t* begin, const uint8_t* end) {
Andreas Gampee5eb7062014-12-12 18:44:19 -0800153 std::stringstream hex;
154 for (size_t i = 0; begin + i < end; ++i) {
155 hex << StringPrintf("%02X", begin[i]);
156 }
157 return hex.str();
158}
159
160std::string DisassemblerX86::DumpAddress(uint8_t mod, uint8_t rm, uint8_t rex64, uint8_t rex_w,
161 bool no_ops, bool byte_operand, bool byte_second_operand,
162 uint8_t* prefix, bool load, RegFile src_reg_file,
163 RegFile dst_reg_file, const uint8_t** instr,
164 uint32_t* address_bits) {
165 std::ostringstream address;
166 if (mod == 0 && rm == 5) {
167 if (!supports_rex_) { // Absolute address.
Nicolas Geoffray6a0b9202014-12-16 14:54:18 +0000168 *address_bits = *reinterpret_cast<const uint32_t*>(*instr);
Andreas Gampee5eb7062014-12-12 18:44:19 -0800169 address << StringPrintf("[0x%x]", *address_bits);
170 } else { // 64-bit RIP relative addressing.
171 address << StringPrintf("[RIP + 0x%x]", *reinterpret_cast<const uint32_t*>(*instr));
172 }
173 (*instr) += 4;
174 } else if (rm == 4 && mod != 3) { // SIB
175 uint8_t sib = **instr;
176 (*instr)++;
177 uint8_t scale = (sib >> 6) & 3;
178 uint8_t index = (sib >> 3) & 7;
179 uint8_t base = sib & 7;
180 address << "[";
Andreas Gampe031b00d2015-01-26 19:30:23 -0800181
182 // REX.x is bit 3 of index.
183 if ((rex64 & REX_X) != 0) {
184 index += 8;
185 }
186
187 // Mod = 0 && base = 5 (ebp): no base (ignores REX.b).
188 bool has_base = false;
Andreas Gampee5eb7062014-12-12 18:44:19 -0800189 if (base != 5 || mod != 0) {
Andreas Gampe031b00d2015-01-26 19:30:23 -0800190 has_base = true;
Andreas Gampee5eb7062014-12-12 18:44:19 -0800191 DumpBaseReg(address, rex64, base);
Andreas Gampe031b00d2015-01-26 19:30:23 -0800192 }
193
194 // Index = 4 (esp/rsp) is disallowed.
195 if (index != 4) {
196 if (has_base) {
Andreas Gampee5eb7062014-12-12 18:44:19 -0800197 address << " + ";
198 }
Andreas Gampe031b00d2015-01-26 19:30:23 -0800199 DumpAddrReg(address, rex64, index);
Andreas Gampee5eb7062014-12-12 18:44:19 -0800200 if (scale != 0) {
201 address << StringPrintf(" * %d", 1 << scale);
202 }
203 }
Andreas Gampe031b00d2015-01-26 19:30:23 -0800204
Andreas Gampee5eb7062014-12-12 18:44:19 -0800205 if (mod == 0) {
206 if (base == 5) {
207 if (index != 4) {
208 address << StringPrintf(" + %d", *reinterpret_cast<const int32_t*>(*instr));
209 } else {
210 // 64-bit low 32-bit absolute address, redundant absolute address encoding on 32-bit.
211 *address_bits = *reinterpret_cast<const uint32_t*>(*instr);
212 address << StringPrintf("%d", *address_bits);
213 }
214 (*instr) += 4;
215 }
216 } else if (mod == 1) {
217 address << StringPrintf(" + %d", *reinterpret_cast<const int8_t*>(*instr));
218 (*instr)++;
219 } else if (mod == 2) {
220 address << StringPrintf(" + %d", *reinterpret_cast<const int32_t*>(*instr));
221 (*instr) += 4;
222 }
223 address << "]";
224 } else {
225 if (mod == 3) {
226 if (!no_ops) {
227 DumpRmReg(address, rex_w, rm, byte_operand || byte_second_operand,
228 prefix[2], load ? src_reg_file : dst_reg_file);
229 }
230 } else {
231 address << "[";
232 DumpBaseReg(address, rex64, rm);
233 if (mod == 1) {
234 address << StringPrintf(" + %d", *reinterpret_cast<const int8_t*>(*instr));
235 (*instr)++;
236 } else if (mod == 2) {
237 address << StringPrintf(" + %d", *reinterpret_cast<const int32_t*>(*instr));
238 (*instr) += 4;
239 }
240 address << "]";
241 }
242 }
243 return address.str();
244}
245
Ian Rogers706a10e2012-03-23 17:00:55 -0700246size_t DisassemblerX86::DumpInstruction(std::ostream& os, const uint8_t* instr) {
247 const uint8_t* begin_instr = instr;
248 bool have_prefixes = true;
249 uint8_t prefix[4] = {0, 0, 0, 0};
Ian Rogers706a10e2012-03-23 17:00:55 -0700250 do {
251 switch (*instr) {
Ian Rogers7caad772012-03-30 01:07:54 -0700252 // Group 1 - lock and repeat prefixes:
Ian Rogers706a10e2012-03-23 17:00:55 -0700253 case 0xF0:
254 case 0xF2:
255 case 0xF3:
256 prefix[0] = *instr;
257 break;
258 // Group 2 - segment override prefixes:
Elliott Hughes92301d92012-04-10 15:57:52 -0700259 case kCs:
260 case kSs:
261 case kDs:
262 case kEs:
263 case kFs:
264 case kGs:
Ian Rogers706a10e2012-03-23 17:00:55 -0700265 prefix[1] = *instr;
266 break;
267 // Group 3 - operand size override:
268 case 0x66:
269 prefix[2] = *instr;
270 break;
271 // Group 4 - address size override:
272 case 0x67:
273 prefix[3] = *instr;
274 break;
275 default:
276 have_prefixes = false;
277 break;
278 }
279 if (have_prefixes) {
280 instr++;
281 }
282 } while (have_prefixes);
Ian Rogers38e12032014-03-14 14:06:14 -0700283 uint8_t rex = (supports_rex_ && (*instr >= 0x40) && (*instr <= 0x4F)) ? *instr : 0;
Vladimir Kostyukove8861b32014-04-18 17:06:15 +0700284 if (rex != 0) {
285 instr++;
286 }
Ian Rogers677c12f2014-11-07 16:58:38 -0800287 const char** modrm_opcodes = nullptr;
Ian Rogers706a10e2012-03-23 17:00:55 -0700288 bool has_modrm = false;
289 bool reg_is_opcode = false;
290 size_t immediate_bytes = 0;
291 size_t branch_bytes = 0;
Andreas Gampee5eb7062014-12-12 18:44:19 -0800292 std::string opcode_tmp; // Storage to keep StringPrintf result alive.
293 const char* opcode0 = ""; // Prefix part.
294 const char* opcode1 = ""; // Main opcode.
295 const char* opcode2 = ""; // Sub-opcode. E.g., jump type.
296 const char* opcode3 = ""; // Mod-rm part.
297 const char* opcode4 = ""; // Suffix part.
Ian Rogers706a10e2012-03-23 17:00:55 -0700298 bool store = false; // stores to memory (ie rm is on the left)
299 bool load = false; // loads from memory (ie rm is on the right)
Serguei Katkov94f3eb02014-06-24 13:23:17 +0700300 bool byte_operand = false; // true when the opcode is dealing with byte operands
Ian Rogers677c12f2014-11-07 16:58:38 -0800301 // true when the source operand is a byte register but the target register isn't
302 // (ie movsxb/movzxb).
303 bool byte_second_operand = false;
Vladimir Kostyukov122113a2014-05-30 17:56:23 +0700304 bool target_specific = false; // register name depends on target (64 vs 32 bits).
Ian Rogers706a10e2012-03-23 17:00:55 -0700305 bool ax = false; // implicit use of ax
jeffhaoe2962482012-06-28 11:29:57 -0700306 bool cx = false; // implicit use of cx
Ian Rogers706a10e2012-03-23 17:00:55 -0700307 bool reg_in_opcode = false; // low 3-bits of opcode encode register parameter
jeffhao703f2cd2012-07-13 17:25:52 -0700308 bool no_ops = false;
Ian Rogersbf989802012-04-16 16:07:49 -0700309 RegFile src_reg_file = GPR;
310 RegFile dst_reg_file = GPR;
Ian Rogers706a10e2012-03-23 17:00:55 -0700311 switch (*instr) {
312#define DISASSEMBLER_ENTRY(opname, \
313 rm8_r8, rm32_r32, \
314 r8_rm8, r32_rm32, \
315 ax8_i8, ax32_i32) \
Andreas Gampee5eb7062014-12-12 18:44:19 -0800316 case rm8_r8: opcode1 = #opname; store = true; has_modrm = true; byte_operand = true; break; \
317 case rm32_r32: opcode1 = #opname; store = true; has_modrm = true; break; \
318 case r8_rm8: opcode1 = #opname; load = true; has_modrm = true; byte_operand = true; break; \
319 case r32_rm32: opcode1 = #opname; load = true; has_modrm = true; break; \
320 case ax8_i8: opcode1 = #opname; ax = true; immediate_bytes = 1; byte_operand = true; break; \
321 case ax32_i32: opcode1 = #opname; ax = true; immediate_bytes = 4; break;
Ian Rogers706a10e2012-03-23 17:00:55 -0700322
323DISASSEMBLER_ENTRY(add,
324 0x00 /* RegMem8/Reg8 */, 0x01 /* RegMem32/Reg32 */,
325 0x02 /* Reg8/RegMem8 */, 0x03 /* Reg32/RegMem32 */,
326 0x04 /* Rax8/imm8 opcode */, 0x05 /* Rax32/imm32 */)
327DISASSEMBLER_ENTRY(or,
328 0x08 /* RegMem8/Reg8 */, 0x09 /* RegMem32/Reg32 */,
329 0x0A /* Reg8/RegMem8 */, 0x0B /* Reg32/RegMem32 */,
330 0x0C /* Rax8/imm8 opcode */, 0x0D /* Rax32/imm32 */)
331DISASSEMBLER_ENTRY(adc,
332 0x10 /* RegMem8/Reg8 */, 0x11 /* RegMem32/Reg32 */,
333 0x12 /* Reg8/RegMem8 */, 0x13 /* Reg32/RegMem32 */,
334 0x14 /* Rax8/imm8 opcode */, 0x15 /* Rax32/imm32 */)
335DISASSEMBLER_ENTRY(sbb,
336 0x18 /* RegMem8/Reg8 */, 0x19 /* RegMem32/Reg32 */,
337 0x1A /* Reg8/RegMem8 */, 0x1B /* Reg32/RegMem32 */,
338 0x1C /* Rax8/imm8 opcode */, 0x1D /* Rax32/imm32 */)
339DISASSEMBLER_ENTRY(and,
340 0x20 /* RegMem8/Reg8 */, 0x21 /* RegMem32/Reg32 */,
341 0x22 /* Reg8/RegMem8 */, 0x23 /* Reg32/RegMem32 */,
342 0x24 /* Rax8/imm8 opcode */, 0x25 /* Rax32/imm32 */)
343DISASSEMBLER_ENTRY(sub,
344 0x28 /* RegMem8/Reg8 */, 0x29 /* RegMem32/Reg32 */,
345 0x2A /* Reg8/RegMem8 */, 0x2B /* Reg32/RegMem32 */,
346 0x2C /* Rax8/imm8 opcode */, 0x2D /* Rax32/imm32 */)
347DISASSEMBLER_ENTRY(xor,
348 0x30 /* RegMem8/Reg8 */, 0x31 /* RegMem32/Reg32 */,
349 0x32 /* Reg8/RegMem8 */, 0x33 /* Reg32/RegMem32 */,
350 0x34 /* Rax8/imm8 opcode */, 0x35 /* Rax32/imm32 */)
351DISASSEMBLER_ENTRY(cmp,
352 0x38 /* RegMem8/Reg8 */, 0x39 /* RegMem32/Reg32 */,
353 0x3A /* Reg8/RegMem8 */, 0x3B /* Reg32/RegMem32 */,
354 0x3C /* Rax8/imm8 opcode */, 0x3D /* Rax32/imm32 */)
355
356#undef DISASSEMBLER_ENTRY
357 case 0x50: case 0x51: case 0x52: case 0x53: case 0x54: case 0x55: case 0x56: case 0x57:
Andreas Gampee5eb7062014-12-12 18:44:19 -0800358 opcode1 = "push";
Ian Rogers706a10e2012-03-23 17:00:55 -0700359 reg_in_opcode = true;
Vladimir Kostyukov122113a2014-05-30 17:56:23 +0700360 target_specific = true;
Ian Rogers706a10e2012-03-23 17:00:55 -0700361 break;
362 case 0x58: case 0x59: case 0x5A: case 0x5B: case 0x5C: case 0x5D: case 0x5E: case 0x5F:
Andreas Gampee5eb7062014-12-12 18:44:19 -0800363 opcode1 = "pop";
Ian Rogers706a10e2012-03-23 17:00:55 -0700364 reg_in_opcode = true;
Vladimir Kostyukov122113a2014-05-30 17:56:23 +0700365 target_specific = true;
Ian Rogers706a10e2012-03-23 17:00:55 -0700366 break;
Mark Mendell33ecf8d2014-06-06 15:19:45 -0400367 case 0x63:
Vladimir Kostyukovec95f722014-07-23 12:10:07 +0700368 if ((rex & REX_W) != 0) {
Andreas Gampee5eb7062014-12-12 18:44:19 -0800369 opcode1 = "movsxd";
Mark Mendell33ecf8d2014-06-06 15:19:45 -0400370 has_modrm = true;
371 load = true;
372 } else {
373 // In 32-bit mode (!supports_rex_) this is ARPL, with no REX prefix the functionality is the
374 // same as 'mov' but the use of the instruction is discouraged.
Andreas Gampee5eb7062014-12-12 18:44:19 -0800375 opcode_tmp = StringPrintf("unknown opcode '%02X'", *instr);
376 opcode1 = opcode_tmp.c_str();
Mark Mendell33ecf8d2014-06-06 15:19:45 -0400377 }
378 break;
Andreas Gampee5eb7062014-12-12 18:44:19 -0800379 case 0x68: opcode1 = "push"; immediate_bytes = 4; break;
380 case 0x69: opcode1 = "imul"; load = true; has_modrm = true; immediate_bytes = 4; break;
381 case 0x6A: opcode1 = "push"; immediate_bytes = 1; break;
382 case 0x6B: opcode1 = "imul"; load = true; has_modrm = true; immediate_bytes = 1; break;
Ian Rogers706a10e2012-03-23 17:00:55 -0700383 case 0x70: case 0x71: case 0x72: case 0x73: case 0x74: case 0x75: case 0x76: case 0x77:
384 case 0x78: case 0x79: case 0x7A: case 0x7B: case 0x7C: case 0x7D: case 0x7E: case 0x7F:
385 static const char* condition_codes[] =
Elliott Hughesb25c3f62012-03-26 16:35:06 -0700386 {"o", "no", "b/nae/c", "nb/ae/nc", "z/eq", "nz/ne", "be/na", "nbe/a",
387 "s", "ns", "p/pe", "np/po", "l/nge", "nl/ge", "le/ng", "nle/g"
Ian Rogers706a10e2012-03-23 17:00:55 -0700388 };
Andreas Gampee5eb7062014-12-12 18:44:19 -0800389 opcode1 = "j";
390 opcode2 = condition_codes[*instr & 0xF];
Ian Rogers706a10e2012-03-23 17:00:55 -0700391 branch_bytes = 1;
392 break;
Razvan A Lupusoru99ad7232014-02-25 17:41:08 -0800393 case 0x86: case 0x87:
Andreas Gampee5eb7062014-12-12 18:44:19 -0800394 opcode1 = "xchg";
Razvan A Lupusoru99ad7232014-02-25 17:41:08 -0800395 store = true;
396 has_modrm = true;
397 byte_operand = (*instr == 0x86);
398 break;
Andreas Gampee5eb7062014-12-12 18:44:19 -0800399 case 0x88: opcode1 = "mov"; store = true; has_modrm = true; byte_operand = true; break;
400 case 0x89: opcode1 = "mov"; store = true; has_modrm = true; break;
401 case 0x8A: opcode1 = "mov"; load = true; has_modrm = true; byte_operand = true; break;
402 case 0x8B: opcode1 = "mov"; load = true; has_modrm = true; break;
Ian Rogers706a10e2012-03-23 17:00:55 -0700403
404 case 0x0F: // 2 byte extended opcode
405 instr++;
406 switch (*instr) {
Ian Rogers7caad772012-03-30 01:07:54 -0700407 case 0x10: case 0x11:
408 if (prefix[0] == 0xF2) {
Andreas Gampee5eb7062014-12-12 18:44:19 -0800409 opcode1 = "movsd";
jeffhaofdffdf82012-07-11 16:08:43 -0700410 prefix[0] = 0; // clear prefix now it's served its purpose as part of the opcode
Ian Rogers7caad772012-03-30 01:07:54 -0700411 } else if (prefix[0] == 0xF3) {
Andreas Gampee5eb7062014-12-12 18:44:19 -0800412 opcode1 = "movss";
jeffhaofdffdf82012-07-11 16:08:43 -0700413 prefix[0] = 0; // clear prefix now it's served its purpose as part of the opcode
Ian Rogers7caad772012-03-30 01:07:54 -0700414 } else if (prefix[2] == 0x66) {
Andreas Gampee5eb7062014-12-12 18:44:19 -0800415 opcode1 = "movupd";
jeffhaofdffdf82012-07-11 16:08:43 -0700416 prefix[2] = 0; // clear prefix now it's served its purpose as part of the opcode
Ian Rogers7caad772012-03-30 01:07:54 -0700417 } else {
Andreas Gampee5eb7062014-12-12 18:44:19 -0800418 opcode1 = "movups";
Ian Rogers7caad772012-03-30 01:07:54 -0700419 }
420 has_modrm = true;
Ian Rogersbf989802012-04-16 16:07:49 -0700421 src_reg_file = dst_reg_file = SSE;
Ian Rogers7caad772012-03-30 01:07:54 -0700422 load = *instr == 0x10;
423 store = !load;
424 break;
Razvan A Lupusoru2c498d12014-01-29 16:02:57 -0800425 case 0x12: case 0x13:
426 if (prefix[2] == 0x66) {
Andreas Gampee5eb7062014-12-12 18:44:19 -0800427 opcode1 = "movlpd";
Razvan A Lupusoru2c498d12014-01-29 16:02:57 -0800428 prefix[2] = 0; // clear prefix now it's served its purpose as part of the opcode
429 } else if (prefix[0] == 0) {
Andreas Gampee5eb7062014-12-12 18:44:19 -0800430 opcode1 = "movlps";
Razvan A Lupusoru2c498d12014-01-29 16:02:57 -0800431 }
432 has_modrm = true;
433 src_reg_file = dst_reg_file = SSE;
434 load = *instr == 0x12;
435 store = !load;
436 break;
437 case 0x16: case 0x17:
438 if (prefix[2] == 0x66) {
Andreas Gampee5eb7062014-12-12 18:44:19 -0800439 opcode1 = "movhpd";
Razvan A Lupusoru2c498d12014-01-29 16:02:57 -0800440 prefix[2] = 0; // clear prefix now it's served its purpose as part of the opcode
441 } else if (prefix[0] == 0) {
Andreas Gampee5eb7062014-12-12 18:44:19 -0800442 opcode1 = "movhps";
Razvan A Lupusoru2c498d12014-01-29 16:02:57 -0800443 }
444 has_modrm = true;
445 src_reg_file = dst_reg_file = SSE;
446 load = *instr == 0x16;
447 store = !load;
448 break;
449 case 0x28: case 0x29:
450 if (prefix[2] == 0x66) {
Andreas Gampee5eb7062014-12-12 18:44:19 -0800451 opcode1 = "movapd";
Razvan A Lupusoru2c498d12014-01-29 16:02:57 -0800452 prefix[2] = 0; // clear prefix now it's served its purpose as part of the opcode
453 } else if (prefix[0] == 0) {
Andreas Gampee5eb7062014-12-12 18:44:19 -0800454 opcode1 = "movaps";
Razvan A Lupusoru2c498d12014-01-29 16:02:57 -0800455 }
456 has_modrm = true;
457 src_reg_file = dst_reg_file = SSE;
458 load = *instr == 0x28;
459 store = !load;
460 break;
jeffhaofdffdf82012-07-11 16:08:43 -0700461 case 0x2A:
462 if (prefix[2] == 0x66) {
Andreas Gampee5eb7062014-12-12 18:44:19 -0800463 opcode1 = "cvtpi2pd";
jeffhaofdffdf82012-07-11 16:08:43 -0700464 prefix[2] = 0; // clear prefix now it's served its purpose as part of the opcode
465 } else if (prefix[0] == 0xF2) {
Andreas Gampee5eb7062014-12-12 18:44:19 -0800466 opcode1 = "cvtsi2sd";
jeffhaofdffdf82012-07-11 16:08:43 -0700467 prefix[0] = 0; // clear prefix now it's served its purpose as part of the opcode
468 } else if (prefix[0] == 0xF3) {
Andreas Gampee5eb7062014-12-12 18:44:19 -0800469 opcode1 = "cvtsi2ss";
jeffhaofdffdf82012-07-11 16:08:43 -0700470 prefix[0] = 0; // clear prefix now it's served its purpose as part of the opcode
471 } else {
Andreas Gampee5eb7062014-12-12 18:44:19 -0800472 opcode1 = "cvtpi2ps";
jeffhaofdffdf82012-07-11 16:08:43 -0700473 }
474 load = true;
475 has_modrm = true;
476 dst_reg_file = SSE;
477 break;
478 case 0x2C:
479 if (prefix[2] == 0x66) {
Andreas Gampee5eb7062014-12-12 18:44:19 -0800480 opcode1 = "cvttpd2pi";
jeffhaofdffdf82012-07-11 16:08:43 -0700481 prefix[2] = 0; // clear prefix now it's served its purpose as part of the opcode
482 } else if (prefix[0] == 0xF2) {
Andreas Gampee5eb7062014-12-12 18:44:19 -0800483 opcode1 = "cvttsd2si";
jeffhaofdffdf82012-07-11 16:08:43 -0700484 prefix[0] = 0; // clear prefix now it's served its purpose as part of the opcode
485 } else if (prefix[0] == 0xF3) {
Andreas Gampee5eb7062014-12-12 18:44:19 -0800486 opcode1 = "cvttss2si";
jeffhaofdffdf82012-07-11 16:08:43 -0700487 prefix[0] = 0; // clear prefix now it's served its purpose as part of the opcode
488 } else {
Andreas Gampee5eb7062014-12-12 18:44:19 -0800489 opcode1 = "cvttps2pi";
jeffhaofdffdf82012-07-11 16:08:43 -0700490 }
491 load = true;
492 has_modrm = true;
493 src_reg_file = SSE;
494 break;
495 case 0x2D:
496 if (prefix[2] == 0x66) {
Andreas Gampee5eb7062014-12-12 18:44:19 -0800497 opcode1 = "cvtpd2pi";
jeffhaofdffdf82012-07-11 16:08:43 -0700498 prefix[2] = 0; // clear prefix now it's served its purpose as part of the opcode
499 } else if (prefix[0] == 0xF2) {
Andreas Gampee5eb7062014-12-12 18:44:19 -0800500 opcode1 = "cvtsd2si";
jeffhaofdffdf82012-07-11 16:08:43 -0700501 prefix[0] = 0; // clear prefix now it's served its purpose as part of the opcode
502 } else if (prefix[0] == 0xF3) {
Andreas Gampee5eb7062014-12-12 18:44:19 -0800503 opcode1 = "cvtss2si";
jeffhaofdffdf82012-07-11 16:08:43 -0700504 prefix[0] = 0; // clear prefix now it's served its purpose as part of the opcode
505 } else {
Andreas Gampee5eb7062014-12-12 18:44:19 -0800506 opcode1 = "cvtps2pi";
jeffhaofdffdf82012-07-11 16:08:43 -0700507 }
508 load = true;
509 has_modrm = true;
510 src_reg_file = SSE;
511 break;
512 case 0x2E:
Andreas Gampee5eb7062014-12-12 18:44:19 -0800513 opcode0 = "u";
Ian Rogersfc787ec2014-10-09 21:56:44 -0700514 FALLTHROUGH_INTENDED;
jeffhaofdffdf82012-07-11 16:08:43 -0700515 case 0x2F:
516 if (prefix[2] == 0x66) {
Andreas Gampee5eb7062014-12-12 18:44:19 -0800517 opcode1 = "comisd";
jeffhaofdffdf82012-07-11 16:08:43 -0700518 prefix[2] = 0; // clear prefix now it's served its purpose as part of the opcode
519 } else {
Andreas Gampee5eb7062014-12-12 18:44:19 -0800520 opcode1 = "comiss";
jeffhaofdffdf82012-07-11 16:08:43 -0700521 }
522 has_modrm = true;
523 load = true;
524 src_reg_file = dst_reg_file = SSE;
525 break;
Ian Rogers706a10e2012-03-23 17:00:55 -0700526 case 0x38: // 3 byte extended opcode
Mark Mendellfe945782014-05-22 09:52:36 -0400527 instr++;
528 if (prefix[2] == 0x66) {
529 switch (*instr) {
Udayan Banerji60bfe7b2014-07-08 19:59:43 -0700530 case 0x01:
Andreas Gampee5eb7062014-12-12 18:44:19 -0800531 opcode1 = "phaddw";
Udayan Banerji60bfe7b2014-07-08 19:59:43 -0700532 prefix[2] = 0;
533 has_modrm = true;
534 load = true;
535 src_reg_file = dst_reg_file = SSE;
536 break;
537 case 0x02:
Andreas Gampee5eb7062014-12-12 18:44:19 -0800538 opcode1 = "phaddd";
Udayan Banerji60bfe7b2014-07-08 19:59:43 -0700539 prefix[2] = 0;
540 has_modrm = true;
541 load = true;
542 src_reg_file = dst_reg_file = SSE;
543 break;
Mark Mendellfe945782014-05-22 09:52:36 -0400544 case 0x40:
Andreas Gampee5eb7062014-12-12 18:44:19 -0800545 opcode1 = "pmulld";
Mark Mendellfe945782014-05-22 09:52:36 -0400546 prefix[2] = 0;
547 has_modrm = true;
548 load = true;
549 src_reg_file = dst_reg_file = SSE;
550 break;
551 default:
Andreas Gampee5eb7062014-12-12 18:44:19 -0800552 opcode_tmp = StringPrintf("unknown opcode '0F 38 %02X'", *instr);
553 opcode1 = opcode_tmp.c_str();
Mark Mendellfe945782014-05-22 09:52:36 -0400554 }
555 } else {
Andreas Gampee5eb7062014-12-12 18:44:19 -0800556 opcode_tmp = StringPrintf("unknown opcode '0F 38 %02X'", *instr);
557 opcode1 = opcode_tmp.c_str();
Mark Mendellfe945782014-05-22 09:52:36 -0400558 }
Ian Rogers706a10e2012-03-23 17:00:55 -0700559 break;
560 case 0x3A: // 3 byte extended opcode
Mark Mendellfe945782014-05-22 09:52:36 -0400561 instr++;
562 if (prefix[2] == 0x66) {
563 switch (*instr) {
Mark Mendellfb8d2792015-03-31 22:16:59 -0400564 case 0x0A:
565 opcode1 = "roundss";
566 prefix[2] = 0;
567 has_modrm = true;
568 store = true;
569 src_reg_file = SSE;
570 dst_reg_file = SSE;
571 immediate_bytes = 1;
572 break;
573 case 0x0B:
574 opcode1 = "roundsd";
575 prefix[2] = 0;
576 has_modrm = true;
577 store = true;
578 src_reg_file = SSE;
579 dst_reg_file = SSE;
580 immediate_bytes = 1;
581 break;
Mark Mendellfe945782014-05-22 09:52:36 -0400582 case 0x14:
Andreas Gampee5eb7062014-12-12 18:44:19 -0800583 opcode1 = "pextrb";
Mark Mendellfe945782014-05-22 09:52:36 -0400584 prefix[2] = 0;
585 has_modrm = true;
586 store = true;
Udayan Banerji60bfe7b2014-07-08 19:59:43 -0700587 src_reg_file = SSE;
Mark Mendellfe945782014-05-22 09:52:36 -0400588 immediate_bytes = 1;
589 break;
nikolay serdjuke0705f52015-04-27 17:52:57 +0600590 case 0x15:
591 opcode1 = "pextrw";
592 prefix[2] = 0;
593 has_modrm = true;
594 store = true;
595 src_reg_file = SSE;
596 immediate_bytes = 1;
597 break;
Mark Mendellfe945782014-05-22 09:52:36 -0400598 case 0x16:
Andreas Gampee5eb7062014-12-12 18:44:19 -0800599 opcode1 = "pextrd";
Mark Mendellfe945782014-05-22 09:52:36 -0400600 prefix[2] = 0;
601 has_modrm = true;
602 store = true;
Udayan Banerji60bfe7b2014-07-08 19:59:43 -0700603 src_reg_file = SSE;
Mark Mendellfe945782014-05-22 09:52:36 -0400604 immediate_bytes = 1;
605 break;
606 default:
Andreas Gampee5eb7062014-12-12 18:44:19 -0800607 opcode_tmp = StringPrintf("unknown opcode '0F 3A %02X'", *instr);
608 opcode1 = opcode_tmp.c_str();
Mark Mendellfe945782014-05-22 09:52:36 -0400609 }
610 } else {
Andreas Gampee5eb7062014-12-12 18:44:19 -0800611 opcode_tmp = StringPrintf("unknown opcode '0F 3A %02X'", *instr);
612 opcode1 = opcode_tmp.c_str();
Mark Mendellfe945782014-05-22 09:52:36 -0400613 }
Ian Rogers706a10e2012-03-23 17:00:55 -0700614 break;
Razvan A Lupusorubd288c22013-12-20 17:27:23 -0800615 case 0x40: case 0x41: case 0x42: case 0x43: case 0x44: case 0x45: case 0x46: case 0x47:
616 case 0x48: case 0x49: case 0x4A: case 0x4B: case 0x4C: case 0x4D: case 0x4E: case 0x4F:
Andreas Gampee5eb7062014-12-12 18:44:19 -0800617 opcode1 = "cmov";
618 opcode2 = condition_codes[*instr & 0xF];
Razvan A Lupusorubd288c22013-12-20 17:27:23 -0800619 has_modrm = true;
620 load = true;
621 break;
Ian Rogersbf989802012-04-16 16:07:49 -0700622 case 0x50: case 0x51: case 0x52: case 0x53: case 0x54: case 0x55: case 0x56: case 0x57:
623 case 0x58: case 0x59: case 0x5C: case 0x5D: case 0x5E: case 0x5F: {
624 switch (*instr) {
Andreas Gampee5eb7062014-12-12 18:44:19 -0800625 case 0x50: opcode1 = "movmsk"; break;
626 case 0x51: opcode1 = "sqrt"; break;
627 case 0x52: opcode1 = "rsqrt"; break;
628 case 0x53: opcode1 = "rcp"; break;
629 case 0x54: opcode1 = "and"; break;
630 case 0x55: opcode1 = "andn"; break;
631 case 0x56: opcode1 = "or"; break;
632 case 0x57: opcode1 = "xor"; break;
633 case 0x58: opcode1 = "add"; break;
634 case 0x59: opcode1 = "mul"; break;
635 case 0x5C: opcode1 = "sub"; break;
636 case 0x5D: opcode1 = "min"; break;
637 case 0x5E: opcode1 = "div"; break;
638 case 0x5F: opcode1 = "max"; break;
Ian Rogers2c4257b2014-10-24 14:20:06 -0700639 default: LOG(FATAL) << "Unreachable"; UNREACHABLE();
Ian Rogersbf989802012-04-16 16:07:49 -0700640 }
641 if (prefix[2] == 0x66) {
Andreas Gampee5eb7062014-12-12 18:44:19 -0800642 opcode2 = "pd";
jeffhaofdffdf82012-07-11 16:08:43 -0700643 prefix[2] = 0; // clear prefix now it's served its purpose as part of the opcode
Ian Rogersbf989802012-04-16 16:07:49 -0700644 } else if (prefix[0] == 0xF2) {
Andreas Gampee5eb7062014-12-12 18:44:19 -0800645 opcode2 = "sd";
jeffhaofdffdf82012-07-11 16:08:43 -0700646 prefix[0] = 0; // clear prefix now it's served its purpose as part of the opcode
Ian Rogersbf989802012-04-16 16:07:49 -0700647 } else if (prefix[0] == 0xF3) {
Andreas Gampee5eb7062014-12-12 18:44:19 -0800648 opcode2 = "ss";
jeffhaofdffdf82012-07-11 16:08:43 -0700649 prefix[0] = 0; // clear prefix now it's served its purpose as part of the opcode
Ian Rogersbf989802012-04-16 16:07:49 -0700650 } else {
Andreas Gampee5eb7062014-12-12 18:44:19 -0800651 opcode2 = "ps";
Ian Rogersbf989802012-04-16 16:07:49 -0700652 }
653 load = true;
654 has_modrm = true;
655 src_reg_file = dst_reg_file = SSE;
656 break;
657 }
658 case 0x5A:
659 if (prefix[2] == 0x66) {
Andreas Gampee5eb7062014-12-12 18:44:19 -0800660 opcode1 = "cvtpd2ps";
jeffhaofdffdf82012-07-11 16:08:43 -0700661 prefix[2] = 0; // clear prefix now it's served its purpose as part of the opcode
Ian Rogersbf989802012-04-16 16:07:49 -0700662 } else if (prefix[0] == 0xF2) {
Andreas Gampee5eb7062014-12-12 18:44:19 -0800663 opcode1 = "cvtsd2ss";
jeffhaofdffdf82012-07-11 16:08:43 -0700664 prefix[0] = 0; // clear prefix now it's served its purpose as part of the opcode
Ian Rogersbf989802012-04-16 16:07:49 -0700665 } else if (prefix[0] == 0xF3) {
Andreas Gampee5eb7062014-12-12 18:44:19 -0800666 opcode1 = "cvtss2sd";
jeffhaofdffdf82012-07-11 16:08:43 -0700667 prefix[0] = 0; // clear prefix now it's served its purpose as part of the opcode
Ian Rogersbf989802012-04-16 16:07:49 -0700668 } else {
Andreas Gampee5eb7062014-12-12 18:44:19 -0800669 opcode1 = "cvtps2pd";
Ian Rogersbf989802012-04-16 16:07:49 -0700670 }
671 load = true;
672 has_modrm = true;
673 src_reg_file = dst_reg_file = SSE;
674 break;
675 case 0x5B:
676 if (prefix[2] == 0x66) {
Andreas Gampee5eb7062014-12-12 18:44:19 -0800677 opcode1 = "cvtps2dq";
jeffhaofdffdf82012-07-11 16:08:43 -0700678 prefix[2] = 0; // clear prefix now it's served its purpose as part of the opcode
Ian Rogersbf989802012-04-16 16:07:49 -0700679 } else if (prefix[0] == 0xF2) {
Andreas Gampee5eb7062014-12-12 18:44:19 -0800680 opcode1 = "bad opcode F2 0F 5B";
Ian Rogersbf989802012-04-16 16:07:49 -0700681 } else if (prefix[0] == 0xF3) {
Andreas Gampee5eb7062014-12-12 18:44:19 -0800682 opcode1 = "cvttps2dq";
jeffhaofdffdf82012-07-11 16:08:43 -0700683 prefix[0] = 0; // clear prefix now it's served its purpose as part of the opcode
Ian Rogersbf989802012-04-16 16:07:49 -0700684 } else {
Andreas Gampee5eb7062014-12-12 18:44:19 -0800685 opcode1 = "cvtdq2ps";
Ian Rogersbf989802012-04-16 16:07:49 -0700686 }
687 load = true;
688 has_modrm = true;
689 src_reg_file = dst_reg_file = SSE;
690 break;
Lupusoru, Razvan Ab3a84e22014-07-28 14:11:01 -0700691 case 0x60: case 0x61: case 0x62: case 0x6C:
Razvan A Lupusorud3266bc2014-01-24 12:55:31 -0800692 if (prefix[2] == 0x66) {
693 src_reg_file = dst_reg_file = SSE;
694 prefix[2] = 0; // Clear prefix now. It has served its purpose as part of the opcode.
695 } else {
696 src_reg_file = dst_reg_file = MMX;
697 }
Lupusoru, Razvan Ab3a84e22014-07-28 14:11:01 -0700698 switch (*instr) {
Andreas Gampee5eb7062014-12-12 18:44:19 -0800699 case 0x60: opcode1 = "punpcklbw"; break;
700 case 0x61: opcode1 = "punpcklwd"; break;
701 case 0x62: opcode1 = "punpckldq"; break;
702 case 0x6c: opcode1 = "punpcklqdq"; break;
Lupusoru, Razvan Ab3a84e22014-07-28 14:11:01 -0700703 }
Razvan A Lupusorud3266bc2014-01-24 12:55:31 -0800704 load = true;
705 has_modrm = true;
706 break;
Ian Rogersbf989802012-04-16 16:07:49 -0700707 case 0x6E:
708 if (prefix[2] == 0x66) {
709 dst_reg_file = SSE;
jeffhaofdffdf82012-07-11 16:08:43 -0700710 prefix[2] = 0; // clear prefix now it's served its purpose as part of the opcode
Ian Rogersbf989802012-04-16 16:07:49 -0700711 } else {
712 dst_reg_file = MMX;
Ian Rogersbf989802012-04-16 16:07:49 -0700713 }
Andreas Gampee5eb7062014-12-12 18:44:19 -0800714 opcode1 = "movd";
Ian Rogersbf989802012-04-16 16:07:49 -0700715 load = true;
716 has_modrm = true;
717 break;
718 case 0x6F:
719 if (prefix[2] == 0x66) {
Mark Mendellfe945782014-05-22 09:52:36 -0400720 src_reg_file = dst_reg_file = SSE;
Andreas Gampee5eb7062014-12-12 18:44:19 -0800721 opcode1 = "movdqa";
jeffhaofdffdf82012-07-11 16:08:43 -0700722 prefix[2] = 0; // clear prefix now it's served its purpose as part of the opcode
Ian Rogersbf989802012-04-16 16:07:49 -0700723 } else if (prefix[0] == 0xF3) {
Mark Mendellfe945782014-05-22 09:52:36 -0400724 src_reg_file = dst_reg_file = SSE;
Andreas Gampee5eb7062014-12-12 18:44:19 -0800725 opcode1 = "movdqu";
jeffhaofdffdf82012-07-11 16:08:43 -0700726 prefix[0] = 0; // clear prefix now it's served its purpose as part of the opcode
Ian Rogersbf989802012-04-16 16:07:49 -0700727 } else {
728 dst_reg_file = MMX;
Andreas Gampee5eb7062014-12-12 18:44:19 -0800729 opcode1 = "movq";
Ian Rogersbf989802012-04-16 16:07:49 -0700730 }
731 load = true;
732 has_modrm = true;
733 break;
Mark Mendellfe945782014-05-22 09:52:36 -0400734 case 0x70:
735 if (prefix[2] == 0x66) {
Andreas Gampee5eb7062014-12-12 18:44:19 -0800736 opcode1 = "pshufd";
Mark Mendellfe945782014-05-22 09:52:36 -0400737 prefix[2] = 0;
738 has_modrm = true;
739 store = true;
740 src_reg_file = dst_reg_file = SSE;
741 immediate_bytes = 1;
742 } else if (prefix[0] == 0xF2) {
Andreas Gampee5eb7062014-12-12 18:44:19 -0800743 opcode1 = "pshuflw";
Mark Mendellfe945782014-05-22 09:52:36 -0400744 prefix[0] = 0;
745 has_modrm = true;
746 store = true;
747 src_reg_file = dst_reg_file = SSE;
748 immediate_bytes = 1;
749 } else {
Andreas Gampee5eb7062014-12-12 18:44:19 -0800750 opcode_tmp = StringPrintf("unknown opcode '0F %02X'", *instr);
751 opcode1 = opcode_tmp.c_str();
Mark Mendellfe945782014-05-22 09:52:36 -0400752 }
753 break;
jeffhaofdffdf82012-07-11 16:08:43 -0700754 case 0x71:
755 if (prefix[2] == 0x66) {
756 dst_reg_file = SSE;
757 prefix[2] = 0; // clear prefix now it's served its purpose as part of the opcode
758 } else {
759 dst_reg_file = MMX;
760 }
Ian Rogers677c12f2014-11-07 16:58:38 -0800761 static const char* x71_opcodes[] = {
762 "unknown-71", "unknown-71", "psrlw", "unknown-71",
763 "psraw", "unknown-71", "psllw", "unknown-71"};
jeffhaofdffdf82012-07-11 16:08:43 -0700764 modrm_opcodes = x71_opcodes;
765 reg_is_opcode = true;
766 has_modrm = true;
767 store = true;
768 immediate_bytes = 1;
769 break;
770 case 0x72:
771 if (prefix[2] == 0x66) {
772 dst_reg_file = SSE;
773 prefix[2] = 0; // clear prefix now it's served its purpose as part of the opcode
774 } else {
775 dst_reg_file = MMX;
776 }
Ian Rogers677c12f2014-11-07 16:58:38 -0800777 static const char* x72_opcodes[] = {
778 "unknown-72", "unknown-72", "psrld", "unknown-72",
779 "psrad", "unknown-72", "pslld", "unknown-72"};
jeffhaofdffdf82012-07-11 16:08:43 -0700780 modrm_opcodes = x72_opcodes;
781 reg_is_opcode = true;
782 has_modrm = true;
783 store = true;
784 immediate_bytes = 1;
785 break;
786 case 0x73:
787 if (prefix[2] == 0x66) {
788 dst_reg_file = SSE;
789 prefix[2] = 0; // clear prefix now it's served its purpose as part of the opcode
790 } else {
791 dst_reg_file = MMX;
792 }
Ian Rogers677c12f2014-11-07 16:58:38 -0800793 static const char* x73_opcodes[] = {
794 "unknown-73", "unknown-73", "psrlq", "psrldq",
795 "unknown-73", "unknown-73", "psllq", "unknown-73"};
jeffhaofdffdf82012-07-11 16:08:43 -0700796 modrm_opcodes = x73_opcodes;
797 reg_is_opcode = true;
798 has_modrm = true;
799 store = true;
800 immediate_bytes = 1;
801 break;
Olivier Comefb0fecf2014-06-20 11:46:16 +0200802 case 0x7C:
803 if (prefix[0] == 0xF2) {
Andreas Gampee5eb7062014-12-12 18:44:19 -0800804 opcode1 = "haddps";
Olivier Comefb0fecf2014-06-20 11:46:16 +0200805 prefix[0] = 0; // clear prefix now it's served its purpose as part of the opcode
806 } else if (prefix[2] == 0x66) {
Andreas Gampee5eb7062014-12-12 18:44:19 -0800807 opcode1 = "haddpd";
Olivier Comefb0fecf2014-06-20 11:46:16 +0200808 prefix[2] = 0; // clear prefix now it's served its purpose as part of the opcode
809 } else {
Andreas Gampee5eb7062014-12-12 18:44:19 -0800810 opcode_tmp = StringPrintf("unknown opcode '0F %02X'", *instr);
811 opcode1 = opcode_tmp.c_str();
Olivier Comefb0fecf2014-06-20 11:46:16 +0200812 break;
813 }
814 src_reg_file = dst_reg_file = SSE;
815 has_modrm = true;
816 load = true;
817 break;
jeffhaofdffdf82012-07-11 16:08:43 -0700818 case 0x7E:
819 if (prefix[2] == 0x66) {
820 src_reg_file = SSE;
821 prefix[2] = 0; // clear prefix now it's served its purpose as part of the opcode
822 } else {
823 src_reg_file = MMX;
824 }
Andreas Gampee5eb7062014-12-12 18:44:19 -0800825 opcode1 = "movd";
jeffhaofdffdf82012-07-11 16:08:43 -0700826 has_modrm = true;
827 store = true;
828 break;
Ian Rogers706a10e2012-03-23 17:00:55 -0700829 case 0x80: case 0x81: case 0x82: case 0x83: case 0x84: case 0x85: case 0x86: case 0x87:
830 case 0x88: case 0x89: case 0x8A: case 0x8B: case 0x8C: case 0x8D: case 0x8E: case 0x8F:
Andreas Gampee5eb7062014-12-12 18:44:19 -0800831 opcode1 = "j";
832 opcode2 = condition_codes[*instr & 0xF];
Ian Rogers706a10e2012-03-23 17:00:55 -0700833 branch_bytes = 4;
834 break;
Ian Rogers7caad772012-03-30 01:07:54 -0700835 case 0x90: case 0x91: case 0x92: case 0x93: case 0x94: case 0x95: case 0x96: case 0x97:
836 case 0x98: case 0x99: case 0x9A: case 0x9B: case 0x9C: case 0x9D: case 0x9E: case 0x9F:
Andreas Gampee5eb7062014-12-12 18:44:19 -0800837 opcode1 = "set";
838 opcode2 = condition_codes[*instr & 0xF];
Ian Rogers677c12f2014-11-07 16:58:38 -0800839 modrm_opcodes = nullptr;
Ian Rogers7caad772012-03-30 01:07:54 -0700840 reg_is_opcode = true;
841 has_modrm = true;
842 store = true;
843 break;
Mark Mendell4708dcd2014-01-22 09:05:18 -0800844 case 0xA4:
Andreas Gampee5eb7062014-12-12 18:44:19 -0800845 opcode1 = "shld";
Mark Mendell4708dcd2014-01-22 09:05:18 -0800846 has_modrm = true;
847 load = true;
848 immediate_bytes = 1;
849 break;
Yixin Shouf40f8902014-08-14 14:10:32 -0400850 case 0xA5:
Andreas Gampee5eb7062014-12-12 18:44:19 -0800851 opcode1 = "shld";
Yixin Shouf40f8902014-08-14 14:10:32 -0400852 has_modrm = true;
853 load = true;
854 cx = true;
855 break;
Mark Mendell4708dcd2014-01-22 09:05:18 -0800856 case 0xAC:
Andreas Gampee5eb7062014-12-12 18:44:19 -0800857 opcode1 = "shrd";
Mark Mendell4708dcd2014-01-22 09:05:18 -0800858 has_modrm = true;
859 load = true;
860 immediate_bytes = 1;
861 break;
Yixin Shouf40f8902014-08-14 14:10:32 -0400862 case 0xAD:
Andreas Gampee5eb7062014-12-12 18:44:19 -0800863 opcode1 = "shrd";
Yixin Shouf40f8902014-08-14 14:10:32 -0400864 has_modrm = true;
865 load = true;
866 cx = true;
867 break;
jeffhao703f2cd2012-07-13 17:25:52 -0700868 case 0xAE:
869 if (prefix[0] == 0xF3) {
Ian Rogers5e588b32013-02-21 15:05:09 -0800870 prefix[0] = 0; // clear prefix now it's served its purpose as part of the opcode
Ian Rogers677c12f2014-11-07 16:58:38 -0800871 static const char* xAE_opcodes[] = {
872 "rdfsbase", "rdgsbase", "wrfsbase", "wrgsbase",
873 "unknown-AE", "unknown-AE", "unknown-AE", "unknown-AE"};
jeffhao703f2cd2012-07-13 17:25:52 -0700874 modrm_opcodes = xAE_opcodes;
875 reg_is_opcode = true;
876 has_modrm = true;
877 uint8_t reg_or_opcode = (instr[1] >> 3) & 7;
878 switch (reg_or_opcode) {
879 case 0:
880 prefix[1] = kFs;
881 load = true;
882 break;
883 case 1:
884 prefix[1] = kGs;
885 load = true;
886 break;
887 case 2:
888 prefix[1] = kFs;
889 store = true;
890 break;
891 case 3:
892 prefix[1] = kGs;
893 store = true;
894 break;
895 default:
896 load = true;
897 break;
898 }
899 } else {
Ian Rogers677c12f2014-11-07 16:58:38 -0800900 static const char* xAE_opcodes[] = {
901 "unknown-AE", "unknown-AE", "unknown-AE", "unknown-AE",
902 "unknown-AE", "lfence", "mfence", "sfence"};
jeffhao703f2cd2012-07-13 17:25:52 -0700903 modrm_opcodes = xAE_opcodes;
904 reg_is_opcode = true;
905 has_modrm = true;
906 load = true;
907 no_ops = true;
908 }
909 break;
Ian Rogers677c12f2014-11-07 16:58:38 -0800910 case 0xAF:
Andreas Gampee5eb7062014-12-12 18:44:19 -0800911 opcode1 = "imul";
Ian Rogers677c12f2014-11-07 16:58:38 -0800912 has_modrm = true;
913 load = true;
914 break;
915 case 0xB1:
Andreas Gampee5eb7062014-12-12 18:44:19 -0800916 opcode1 = "cmpxchg";
Ian Rogers677c12f2014-11-07 16:58:38 -0800917 has_modrm = true;
918 store = true;
919 break;
920 case 0xB6:
Andreas Gampee5eb7062014-12-12 18:44:19 -0800921 opcode1 = "movzxb";
Ian Rogers677c12f2014-11-07 16:58:38 -0800922 has_modrm = true;
923 load = true;
924 byte_second_operand = true;
925 break;
926 case 0xB7:
Andreas Gampee5eb7062014-12-12 18:44:19 -0800927 opcode1 = "movzxw";
Ian Rogers677c12f2014-11-07 16:58:38 -0800928 has_modrm = true;
929 load = true;
930 break;
931 case 0xBE:
Andreas Gampee5eb7062014-12-12 18:44:19 -0800932 opcode1 = "movsxb";
Ian Rogers677c12f2014-11-07 16:58:38 -0800933 has_modrm = true;
934 load = true;
935 byte_second_operand = true;
936 rex |= (rex == 0 ? 0 : REX_W);
937 break;
938 case 0xBF:
Andreas Gampee5eb7062014-12-12 18:44:19 -0800939 opcode1 = "movsxw";
Ian Rogers677c12f2014-11-07 16:58:38 -0800940 has_modrm = true;
941 load = true;
942 break;
943 case 0xC3:
Andreas Gampee5eb7062014-12-12 18:44:19 -0800944 opcode1 = "movnti";
Ian Rogers677c12f2014-11-07 16:58:38 -0800945 store = true;
946 has_modrm = true;
947 break;
Mark Mendellfe945782014-05-22 09:52:36 -0400948 case 0xC5:
949 if (prefix[2] == 0x66) {
Andreas Gampee5eb7062014-12-12 18:44:19 -0800950 opcode1 = "pextrw";
Mark Mendellfe945782014-05-22 09:52:36 -0400951 prefix[2] = 0;
952 has_modrm = true;
nikolay serdjukbd4e6a82015-03-27 16:32:27 +0600953 load = true;
Udayan Banerji60bfe7b2014-07-08 19:59:43 -0700954 src_reg_file = SSE;
Mark Mendellfe945782014-05-22 09:52:36 -0400955 immediate_bytes = 1;
956 } else {
Andreas Gampee5eb7062014-12-12 18:44:19 -0800957 opcode_tmp = StringPrintf("unknown opcode '0F %02X'", *instr);
958 opcode1 = opcode_tmp.c_str();
Mark Mendellfe945782014-05-22 09:52:36 -0400959 }
960 break;
Olivier Comefb0fecf2014-06-20 11:46:16 +0200961 case 0xC6:
962 if (prefix[2] == 0x66) {
Andreas Gampee5eb7062014-12-12 18:44:19 -0800963 opcode1 = "shufpd";
Olivier Comefb0fecf2014-06-20 11:46:16 +0200964 prefix[2] = 0;
965 } else {
Andreas Gampee5eb7062014-12-12 18:44:19 -0800966 opcode1 = "shufps";
Olivier Comefb0fecf2014-06-20 11:46:16 +0200967 }
968 has_modrm = true;
969 store = true;
970 src_reg_file = dst_reg_file = SSE;
971 immediate_bytes = 1;
972 break;
Vladimir Marko70b797d2013-12-03 15:25:24 +0000973 case 0xC7:
Ian Rogers677c12f2014-11-07 16:58:38 -0800974 static const char* x0FxC7_opcodes[] = {
975 "unknown-0f-c7", "cmpxchg8b", "unknown-0f-c7", "unknown-0f-c7",
976 "unknown-0f-c7", "unknown-0f-c7", "unknown-0f-c7", "unknown-0f-c7"};
Vladimir Marko70b797d2013-12-03 15:25:24 +0000977 modrm_opcodes = x0FxC7_opcodes;
978 has_modrm = true;
979 reg_is_opcode = true;
980 store = true;
981 break;
Vladimir Markoa8b4caf2013-10-24 15:08:57 +0100982 case 0xC8: case 0xC9: case 0xCA: case 0xCB: case 0xCC: case 0xCD: case 0xCE: case 0xCF:
Andreas Gampee5eb7062014-12-12 18:44:19 -0800983 opcode1 = "bswap";
Vladimir Markoa8b4caf2013-10-24 15:08:57 +0100984 reg_in_opcode = true;
985 break;
Lupusoru, Razvan Ab3a84e22014-07-28 14:11:01 -0700986 case 0xD4:
987 if (prefix[2] == 0x66) {
988 src_reg_file = dst_reg_file = SSE;
989 prefix[2] = 0;
990 } else {
991 src_reg_file = dst_reg_file = MMX;
992 }
Andreas Gampee5eb7062014-12-12 18:44:19 -0800993 opcode1 = "paddq";
Lupusoru, Razvan Ab3a84e22014-07-28 14:11:01 -0700994 prefix[2] = 0;
995 has_modrm = true;
996 load = true;
997 break;
Mark Mendellfe945782014-05-22 09:52:36 -0400998 case 0xDB:
999 if (prefix[2] == 0x66) {
1000 src_reg_file = dst_reg_file = SSE;
1001 prefix[2] = 0; // clear prefix now it's served its purpose as part of the opcode
1002 } else {
1003 src_reg_file = dst_reg_file = MMX;
1004 }
Andreas Gampee5eb7062014-12-12 18:44:19 -08001005 opcode1 = "pand";
Mark Mendellfe945782014-05-22 09:52:36 -04001006 prefix[2] = 0;
1007 has_modrm = true;
1008 load = true;
1009 break;
1010 case 0xD5:
1011 if (prefix[2] == 0x66) {
Andreas Gampee5eb7062014-12-12 18:44:19 -08001012 opcode1 = "pmullw";
Mark Mendellfe945782014-05-22 09:52:36 -04001013 prefix[2] = 0;
1014 has_modrm = true;
1015 load = true;
1016 src_reg_file = dst_reg_file = SSE;
1017 } else {
Andreas Gampee5eb7062014-12-12 18:44:19 -08001018 opcode_tmp = StringPrintf("unknown opcode '0F %02X'", *instr);
1019 opcode1 = opcode_tmp.c_str();
Mark Mendellfe945782014-05-22 09:52:36 -04001020 }
1021 break;
1022 case 0xEB:
1023 if (prefix[2] == 0x66) {
1024 src_reg_file = dst_reg_file = SSE;
1025 prefix[2] = 0; // clear prefix now it's served its purpose as part of the opcode
1026 } else {
1027 src_reg_file = dst_reg_file = MMX;
1028 }
Andreas Gampee5eb7062014-12-12 18:44:19 -08001029 opcode1 = "por";
Mark Mendellfe945782014-05-22 09:52:36 -04001030 prefix[2] = 0;
1031 has_modrm = true;
1032 load = true;
1033 break;
1034 case 0xEF:
1035 if (prefix[2] == 0x66) {
1036 src_reg_file = dst_reg_file = SSE;
1037 prefix[2] = 0; // clear prefix now it's served its purpose as part of the opcode
1038 } else {
1039 src_reg_file = dst_reg_file = MMX;
1040 }
Andreas Gampee5eb7062014-12-12 18:44:19 -08001041 opcode1 = "pxor";
Mark Mendellfe945782014-05-22 09:52:36 -04001042 prefix[2] = 0;
1043 has_modrm = true;
1044 load = true;
1045 break;
Lupusoru, Razvan Ab3a84e22014-07-28 14:11:01 -07001046 case 0xF4:
1047 case 0xF6:
Mark Mendellfe945782014-05-22 09:52:36 -04001048 case 0xF8:
Mark Mendellfe945782014-05-22 09:52:36 -04001049 case 0xF9:
Mark Mendellfe945782014-05-22 09:52:36 -04001050 case 0xFA:
Lupusoru, Razvan Ab3a84e22014-07-28 14:11:01 -07001051 case 0xFB:
Mark Mendellfe945782014-05-22 09:52:36 -04001052 case 0xFC:
Mark Mendellfe945782014-05-22 09:52:36 -04001053 case 0xFD:
Mark Mendellfe945782014-05-22 09:52:36 -04001054 case 0xFE:
1055 if (prefix[2] == 0x66) {
1056 src_reg_file = dst_reg_file = SSE;
1057 prefix[2] = 0; // clear prefix now it's served its purpose as part of the opcode
1058 } else {
1059 src_reg_file = dst_reg_file = MMX;
1060 }
Lupusoru, Razvan Ab3a84e22014-07-28 14:11:01 -07001061 switch (*instr) {
Andreas Gampee5eb7062014-12-12 18:44:19 -08001062 case 0xF4: opcode1 = "pmuludq"; break;
1063 case 0xF6: opcode1 = "psadbw"; break;
1064 case 0xF8: opcode1 = "psubb"; break;
1065 case 0xF9: opcode1 = "psubw"; break;
1066 case 0xFA: opcode1 = "psubd"; break;
1067 case 0xFB: opcode1 = "psubq"; break;
1068 case 0xFC: opcode1 = "paddb"; break;
1069 case 0xFD: opcode1 = "paddw"; break;
1070 case 0xFE: opcode1 = "paddd"; break;
Lupusoru, Razvan Ab3a84e22014-07-28 14:11:01 -07001071 }
Mark Mendellfe945782014-05-22 09:52:36 -04001072 prefix[2] = 0;
1073 has_modrm = true;
1074 load = true;
1075 break;
Ian Rogers706a10e2012-03-23 17:00:55 -07001076 default:
Andreas Gampee5eb7062014-12-12 18:44:19 -08001077 opcode_tmp = StringPrintf("unknown opcode '0F %02X'", *instr);
1078 opcode1 = opcode_tmp.c_str();
Ian Rogers706a10e2012-03-23 17:00:55 -07001079 break;
1080 }
1081 break;
1082 case 0x80: case 0x81: case 0x82: case 0x83:
1083 static const char* x80_opcodes[] = {"add", "or", "adc", "sbb", "and", "sub", "xor", "cmp"};
1084 modrm_opcodes = x80_opcodes;
1085 has_modrm = true;
1086 reg_is_opcode = true;
1087 store = true;
1088 byte_operand = (*instr & 1) == 0;
1089 immediate_bytes = *instr == 0x81 ? 4 : 1;
1090 break;
jeffhao703f2cd2012-07-13 17:25:52 -07001091 case 0x84: case 0x85:
Andreas Gampee5eb7062014-12-12 18:44:19 -08001092 opcode1 = "test";
jeffhao703f2cd2012-07-13 17:25:52 -07001093 has_modrm = true;
1094 load = true;
1095 byte_operand = (*instr & 1) == 0;
1096 break;
Ian Rogers7caad772012-03-30 01:07:54 -07001097 case 0x8D:
Andreas Gampee5eb7062014-12-12 18:44:19 -08001098 opcode1 = "lea";
Ian Rogers7caad772012-03-30 01:07:54 -07001099 has_modrm = true;
1100 load = true;
1101 break;
jeffhao703f2cd2012-07-13 17:25:52 -07001102 case 0x8F:
Andreas Gampee5eb7062014-12-12 18:44:19 -08001103 opcode1 = "pop";
jeffhao703f2cd2012-07-13 17:25:52 -07001104 has_modrm = true;
1105 reg_is_opcode = true;
1106 store = true;
1107 break;
Mark Mendell2bf31e62014-01-23 12:13:40 -08001108 case 0x99:
Andreas Gampee5eb7062014-12-12 18:44:19 -08001109 opcode1 = "cdq";
Mark Mendell2bf31e62014-01-23 12:13:40 -08001110 break;
Vladimir Kostyukovd48b8a22014-06-24 16:40:19 +07001111 case 0x9B:
1112 if (instr[1] == 0xDF && instr[2] == 0xE0) {
Andreas Gampee5eb7062014-12-12 18:44:19 -08001113 opcode1 = "fstsw\tax";
Vladimir Kostyukovd48b8a22014-06-24 16:40:19 +07001114 instr += 2;
1115 } else {
Andreas Gampee5eb7062014-12-12 18:44:19 -08001116 opcode_tmp = StringPrintf("unknown opcode '%02X'", *instr);
1117 opcode1 = opcode_tmp.c_str();
Vladimir Kostyukovd48b8a22014-06-24 16:40:19 +07001118 }
1119 break;
agicsaki124b3922015-07-30 13:40:13 -07001120 case 0xA7:
1121 opcode1 = (prefix[2] == 0x66 ? "cmpsw" : "cmpsl");
1122 break;
Mark Mendell4028a6c2014-02-19 20:06:20 -08001123 case 0xAF:
Andreas Gampee5eb7062014-12-12 18:44:19 -08001124 opcode1 = (prefix[2] == 0x66 ? "scasw" : "scasl");
Mark Mendell4028a6c2014-02-19 20:06:20 -08001125 break;
Ian Rogers706a10e2012-03-23 17:00:55 -07001126 case 0xB0: case 0xB1: case 0xB2: case 0xB3: case 0xB4: case 0xB5: case 0xB6: case 0xB7:
Andreas Gampee5eb7062014-12-12 18:44:19 -08001127 opcode1 = "mov";
Ian Rogers706a10e2012-03-23 17:00:55 -07001128 immediate_bytes = 1;
Mark Mendella33720c2014-06-18 21:02:29 -04001129 byte_operand = true;
Ian Rogers706a10e2012-03-23 17:00:55 -07001130 reg_in_opcode = true;
Vladimir Kostyukov79bb1842014-07-01 18:28:43 +07001131 byte_operand = true;
Ian Rogers706a10e2012-03-23 17:00:55 -07001132 break;
1133 case 0xB8: case 0xB9: case 0xBA: case 0xBB: case 0xBC: case 0xBD: case 0xBE: case 0xBF:
Vladimir Kostyukovec95f722014-07-23 12:10:07 +07001134 if ((rex & REX_W) != 0) {
Andreas Gampee5eb7062014-12-12 18:44:19 -08001135 opcode1 = "movabsq";
Yixin Shou5192cbb2014-07-01 13:48:17 -04001136 immediate_bytes = 8;
1137 reg_in_opcode = true;
1138 break;
1139 }
Andreas Gampee5eb7062014-12-12 18:44:19 -08001140 opcode1 = "mov";
Ian Rogers706a10e2012-03-23 17:00:55 -07001141 immediate_bytes = 4;
1142 reg_in_opcode = true;
1143 break;
Ian Rogers7caad772012-03-30 01:07:54 -07001144 case 0xC0: case 0xC1:
jeffhaoe2962482012-06-28 11:29:57 -07001145 case 0xD0: case 0xD1: case 0xD2: case 0xD3:
Ian Rogers7caad772012-03-30 01:07:54 -07001146 static const char* shift_opcodes[] =
1147 {"rol", "ror", "rcl", "rcr", "shl", "shr", "unknown-shift", "sar"};
1148 modrm_opcodes = shift_opcodes;
1149 has_modrm = true;
1150 reg_is_opcode = true;
1151 store = true;
Elliott Hughes16b5c292012-04-16 20:37:16 -07001152 immediate_bytes = ((*instr & 0xf0) == 0xc0) ? 1 : 0;
jeffhaoe2962482012-06-28 11:29:57 -07001153 cx = (*instr == 0xD2) || (*instr == 0xD3);
1154 byte_operand = (*instr == 0xC0);
Ian Rogers7caad772012-03-30 01:07:54 -07001155 break;
Andreas Gampee5eb7062014-12-12 18:44:19 -08001156 case 0xC3: opcode1 = "ret"; break;
Mark Mendella33720c2014-06-18 21:02:29 -04001157 case 0xC6:
Ian Rogers677c12f2014-11-07 16:58:38 -08001158 static const char* c6_opcodes[] = {"mov", "unknown-c6", "unknown-c6",
1159 "unknown-c6", "unknown-c6", "unknown-c6",
1160 "unknown-c6", "unknown-c6"};
Mark Mendella33720c2014-06-18 21:02:29 -04001161 modrm_opcodes = c6_opcodes;
1162 store = true;
1163 immediate_bytes = 1;
1164 has_modrm = true;
1165 reg_is_opcode = true;
1166 byte_operand = true;
1167 break;
Elliott Hughes0589ca92012-04-09 18:26:20 -07001168 case 0xC7:
Ian Rogers677c12f2014-11-07 16:58:38 -08001169 static const char* c7_opcodes[] = {"mov", "unknown-c7", "unknown-c7",
1170 "unknown-c7", "unknown-c7", "unknown-c7",
1171 "unknown-c7", "unknown-c7"};
Elliott Hughes0589ca92012-04-09 18:26:20 -07001172 modrm_opcodes = c7_opcodes;
1173 store = true;
1174 immediate_bytes = 4;
1175 has_modrm = true;
1176 reg_is_opcode = true;
1177 break;
Andreas Gampee5eb7062014-12-12 18:44:19 -08001178 case 0xCC: opcode1 = "int 3"; break;
Mark Mendelld19b55a2013-12-12 09:55:34 -08001179 case 0xD9:
Vladimir Kostyukovd48b8a22014-06-24 16:40:19 +07001180 if (instr[1] == 0xF8) {
Andreas Gampee5eb7062014-12-12 18:44:19 -08001181 opcode1 = "fprem";
Vladimir Kostyukovd48b8a22014-06-24 16:40:19 +07001182 instr++;
1183 } else {
1184 static const char* d9_opcodes[] = {"flds", "unknown-d9", "fsts", "fstps", "fldenv", "fldcw",
1185 "fnstenv", "fnstcw"};
1186 modrm_opcodes = d9_opcodes;
1187 store = true;
1188 has_modrm = true;
1189 reg_is_opcode = true;
1190 }
1191 break;
1192 case 0xDA:
1193 if (instr[1] == 0xE9) {
Andreas Gampee5eb7062014-12-12 18:44:19 -08001194 opcode1 = "fucompp";
Vladimir Kostyukovd48b8a22014-06-24 16:40:19 +07001195 instr++;
1196 } else {
Andreas Gampee5eb7062014-12-12 18:44:19 -08001197 opcode_tmp = StringPrintf("unknown opcode '%02X'", *instr);
1198 opcode1 = opcode_tmp.c_str();
Vladimir Kostyukovd48b8a22014-06-24 16:40:19 +07001199 }
Mark Mendelld19b55a2013-12-12 09:55:34 -08001200 break;
Razvan A Lupusoru614c2b42014-01-28 17:05:21 -08001201 case 0xDB:
Ian Rogers677c12f2014-11-07 16:58:38 -08001202 static const char* db_opcodes[] = {"fildl", "unknown-db", "unknown-db",
1203 "unknown-db", "unknown-db", "unknown-db",
1204 "unknown-db", "unknown-db"};
Razvan A Lupusoru614c2b42014-01-28 17:05:21 -08001205 modrm_opcodes = db_opcodes;
1206 load = true;
1207 has_modrm = true;
1208 reg_is_opcode = true;
1209 break;
Mark Mendelld19b55a2013-12-12 09:55:34 -08001210 case 0xDD:
Ian Rogers677c12f2014-11-07 16:58:38 -08001211 static const char* dd_opcodes[] = {"fldl", "fisttp", "fstl",
1212 "fstpl", "frstor", "unknown-dd",
1213 "fnsave", "fnstsw"};
Mark Mendelld19b55a2013-12-12 09:55:34 -08001214 modrm_opcodes = dd_opcodes;
1215 store = true;
1216 has_modrm = true;
1217 reg_is_opcode = true;
1218 break;
Razvan A Lupusoru614c2b42014-01-28 17:05:21 -08001219 case 0xDF:
Ian Rogers677c12f2014-11-07 16:58:38 -08001220 static const char* df_opcodes[] = {"fild", "unknown-df", "unknown-df",
1221 "unknown-df", "unknown-df", "fildll",
1222 "unknown-df", "unknown-df"};
Razvan A Lupusoru614c2b42014-01-28 17:05:21 -08001223 modrm_opcodes = df_opcodes;
1224 load = true;
1225 has_modrm = true;
1226 reg_is_opcode = true;
1227 break;
Andreas Gampee5eb7062014-12-12 18:44:19 -08001228 case 0xE3: opcode1 = "jecxz"; branch_bytes = 1; break;
1229 case 0xE8: opcode1 = "call"; branch_bytes = 4; break;
1230 case 0xE9: opcode1 = "jmp"; branch_bytes = 4; break;
1231 case 0xEB: opcode1 = "jmp"; branch_bytes = 1; break;
1232 case 0xF5: opcode1 = "cmc"; break;
jeffhao174651d2012-04-19 15:27:22 -07001233 case 0xF6: case 0xF7:
Ian Rogers677c12f2014-11-07 16:58:38 -08001234 static const char* f7_opcodes[] = {
1235 "test", "unknown-f7", "not", "neg", "mul edx:eax, eax *",
1236 "imul edx:eax, eax *", "div edx:eax, edx:eax /",
1237 "idiv edx:eax, edx:eax /"};
jeffhao174651d2012-04-19 15:27:22 -07001238 modrm_opcodes = f7_opcodes;
1239 has_modrm = true;
1240 reg_is_opcode = true;
1241 store = true;
1242 immediate_bytes = ((instr[1] & 0x38) == 0) ? 1 : 0;
1243 break;
Ian Rogers706a10e2012-03-23 17:00:55 -07001244 case 0xFF:
Vladimir Kostyukove443a802014-06-30 15:44:12 +07001245 {
Ian Rogers677c12f2014-11-07 16:58:38 -08001246 static const char* ff_opcodes[] = {
1247 "inc", "dec", "call", "call",
1248 "jmp", "jmp", "push", "unknown-ff"};
Vladimir Kostyukove443a802014-06-30 15:44:12 +07001249 modrm_opcodes = ff_opcodes;
1250 has_modrm = true;
1251 reg_is_opcode = true;
1252 load = true;
1253 const uint8_t opcode_digit = (instr[1] >> 3) & 7;
1254 // 'call', 'jmp' and 'push' are target specific instructions
1255 if (opcode_digit == 2 || opcode_digit == 4 || opcode_digit == 6) {
1256 target_specific = true;
1257 }
1258 }
Ian Rogers706a10e2012-03-23 17:00:55 -07001259 break;
1260 default:
Andreas Gampee5eb7062014-12-12 18:44:19 -08001261 opcode_tmp = StringPrintf("unknown opcode '%02X'", *instr);
1262 opcode1 = opcode_tmp.c_str();
Ian Rogers706a10e2012-03-23 17:00:55 -07001263 break;
1264 }
1265 std::ostringstream args;
Vladimir Kostyukov122113a2014-05-30 17:56:23 +07001266 // We force the REX prefix to be available for 64-bit target
1267 // in order to dump addr (base/index) registers correctly.
1268 uint8_t rex64 = supports_rex_ ? (rex | 0x40) : rex;
Vladimir Kostyukove443a802014-06-30 15:44:12 +07001269 // REX.W should be forced for 64-target and target-specific instructions (i.e., push or pop).
1270 uint8_t rex_w = (supports_rex_ && target_specific) ? (rex | 0x48) : rex;
Ian Rogers706a10e2012-03-23 17:00:55 -07001271 if (reg_in_opcode) {
1272 DCHECK(!has_modrm);
Vladimir Kostyukov79bb1842014-07-01 18:28:43 +07001273 DumpOpcodeReg(args, rex_w, *instr & 0x7, byte_operand, prefix[2]);
Ian Rogers706a10e2012-03-23 17:00:55 -07001274 }
1275 instr++;
Elliott Hughes92301d92012-04-10 15:57:52 -07001276 uint32_t address_bits = 0;
Ian Rogers706a10e2012-03-23 17:00:55 -07001277 if (has_modrm) {
1278 uint8_t modrm = *instr;
1279 instr++;
1280 uint8_t mod = modrm >> 6;
1281 uint8_t reg_or_opcode = (modrm >> 3) & 7;
1282 uint8_t rm = modrm & 7;
Andreas Gampee5eb7062014-12-12 18:44:19 -08001283 std::string address = DumpAddress(mod, rm, rex64, rex_w, no_ops, byte_operand,
1284 byte_second_operand, prefix, load, src_reg_file, dst_reg_file,
1285 &instr, &address_bits);
Ian Rogers706a10e2012-03-23 17:00:55 -07001286
Ian Rogers677c12f2014-11-07 16:58:38 -08001287 if (reg_is_opcode && modrm_opcodes != nullptr) {
Andreas Gampee5eb7062014-12-12 18:44:19 -08001288 opcode3 = modrm_opcodes[reg_or_opcode];
Ian Rogers706a10e2012-03-23 17:00:55 -07001289 }
Mark Mendella33720c2014-06-18 21:02:29 -04001290
1291 // Add opcode suffixes to indicate size.
1292 if (byte_operand) {
Andreas Gampee5eb7062014-12-12 18:44:19 -08001293 opcode4 = "b";
Mark Mendella33720c2014-06-18 21:02:29 -04001294 } else if ((rex & REX_W) != 0) {
Andreas Gampee5eb7062014-12-12 18:44:19 -08001295 opcode4 = "q";
Mark Mendella33720c2014-06-18 21:02:29 -04001296 } else if (prefix[2] == 0x66) {
Andreas Gampee5eb7062014-12-12 18:44:19 -08001297 opcode4 = "w";
Mark Mendella33720c2014-06-18 21:02:29 -04001298 }
1299
Ian Rogers706a10e2012-03-23 17:00:55 -07001300 if (load) {
1301 if (!reg_is_opcode) {
Ian Rogersbf989802012-04-16 16:07:49 -07001302 DumpReg(args, rex, reg_or_opcode, byte_operand, prefix[2], dst_reg_file);
Ian Rogers706a10e2012-03-23 17:00:55 -07001303 args << ", ";
1304 }
1305 DumpSegmentOverride(args, prefix[1]);
Andreas Gampee5eb7062014-12-12 18:44:19 -08001306 args << address;
Ian Rogers706a10e2012-03-23 17:00:55 -07001307 } else {
1308 DCHECK(store);
1309 DumpSegmentOverride(args, prefix[1]);
Andreas Gampee5eb7062014-12-12 18:44:19 -08001310 args << address;
Ian Rogers706a10e2012-03-23 17:00:55 -07001311 if (!reg_is_opcode) {
1312 args << ", ";
Ian Rogersbf989802012-04-16 16:07:49 -07001313 DumpReg(args, rex, reg_or_opcode, byte_operand, prefix[2], src_reg_file);
Ian Rogers706a10e2012-03-23 17:00:55 -07001314 }
1315 }
1316 }
1317 if (ax) {
jeffhaofdffdf82012-07-11 16:08:43 -07001318 // If this opcode implicitly uses ax, ax is always the first arg.
Ian Rogersbf989802012-04-16 16:07:49 -07001319 DumpReg(args, rex, 0 /* EAX */, byte_operand, prefix[2], GPR);
Ian Rogers706a10e2012-03-23 17:00:55 -07001320 }
jeffhaoe2962482012-06-28 11:29:57 -07001321 if (cx) {
1322 args << ", ";
1323 DumpReg(args, rex, 1 /* ECX */, true, prefix[2], GPR);
1324 }
Ian Rogers706a10e2012-03-23 17:00:55 -07001325 if (immediate_bytes > 0) {
jeffhaoe2962482012-06-28 11:29:57 -07001326 if (has_modrm || reg_in_opcode || ax || cx) {
Ian Rogers706a10e2012-03-23 17:00:55 -07001327 args << ", ";
1328 }
1329 if (immediate_bytes == 1) {
1330 args << StringPrintf("%d", *reinterpret_cast<const int8_t*>(instr));
1331 instr++;
Yixin Shou5192cbb2014-07-01 13:48:17 -04001332 } else if (immediate_bytes == 4) {
Mark Mendell67d18be2014-05-30 15:05:09 -04001333 if (prefix[2] == 0x66) { // Operand size override from 32-bit to 16-bit.
1334 args << StringPrintf("%d", *reinterpret_cast<const int16_t*>(instr));
1335 instr += 2;
1336 } else {
1337 args << StringPrintf("%d", *reinterpret_cast<const int32_t*>(instr));
1338 instr += 4;
1339 }
Yixin Shou5192cbb2014-07-01 13:48:17 -04001340 } else {
1341 CHECK_EQ(immediate_bytes, 8u);
1342 args << StringPrintf("%" PRId64, *reinterpret_cast<const int64_t*>(instr));
1343 instr += 8;
Ian Rogers706a10e2012-03-23 17:00:55 -07001344 }
1345 } else if (branch_bytes > 0) {
1346 DCHECK(!has_modrm);
1347 int32_t displacement;
1348 if (branch_bytes == 1) {
1349 displacement = *reinterpret_cast<const int8_t*>(instr);
1350 instr++;
1351 } else {
1352 CHECK_EQ(branch_bytes, 4u);
1353 displacement = *reinterpret_cast<const int32_t*>(instr);
1354 instr += 4;
1355 }
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -07001356 args << StringPrintf("%+d (", displacement)
1357 << FormatInstructionPointer(instr + displacement)
1358 << ")";
Ian Rogers706a10e2012-03-23 17:00:55 -07001359 }
Ian Rogersdd7624d2014-03-14 17:43:00 -07001360 if (prefix[1] == kFs && !supports_rex_) {
Elliott Hughes92301d92012-04-10 15:57:52 -07001361 args << " ; ";
Ian Rogersdd7624d2014-03-14 17:43:00 -07001362 Thread::DumpThreadOffset<4>(args, address_bits);
1363 }
1364 if (prefix[1] == kGs && supports_rex_) {
1365 args << " ; ";
1366 Thread::DumpThreadOffset<8>(args, address_bits);
Elliott Hughes92301d92012-04-10 15:57:52 -07001367 }
Andreas Gampee5eb7062014-12-12 18:44:19 -08001368 const char* prefix_str;
Ian Rogers5e588b32013-02-21 15:05:09 -08001369 switch (prefix[0]) {
Andreas Gampee5eb7062014-12-12 18:44:19 -08001370 case 0xF0: prefix_str = "lock "; break;
1371 case 0xF2: prefix_str = "repne "; break;
1372 case 0xF3: prefix_str = "repe "; break;
1373 case 0: prefix_str = ""; break;
Ian Rogers2c4257b2014-10-24 14:20:06 -07001374 default: LOG(FATAL) << "Unreachable"; UNREACHABLE();
Ian Rogers5e588b32013-02-21 15:05:09 -08001375 }
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -07001376 os << FormatInstructionPointer(begin_instr)
Andreas Gampee5eb7062014-12-12 18:44:19 -08001377 << StringPrintf(": %22s \t%-7s%s%s%s%s%s ", DumpCodeHex(begin_instr, instr).c_str(),
1378 prefix_str, opcode0, opcode1, opcode2, opcode3, opcode4)
Ian Rogers5e588b32013-02-21 15:05:09 -08001379 << args.str() << '\n';
Ian Rogers706a10e2012-03-23 17:00:55 -07001380 return instr - begin_instr;
Brian Carlstrom7934ac22013-07-26 10:54:15 -07001381} // NOLINT(readability/fn_size)
Ian Rogers706a10e2012-03-23 17:00:55 -07001382
1383} // namespace x86
1384} // namespace art