blob: 46f5dd332b8764d9bcaaa658e6cd825c1d31032c [file] [log] [blame]
Brian Carlstrom7940e442013-07-12 13:46:57 -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 "codegen_x86.h"
18#include "dex/quick/mir_to_lir-inl.h"
19#include "x86_lir.h"
20
21namespace art {
22
23#define MAX_ASSEMBLER_RETRIES 50
24
25const X86EncodingMap X86Mir2Lir::EncodingMap[kX86Last] = {
Ian Rogers0f9b9c52014-06-09 01:32:12 -070026 { kX8632BitData, kData, IS_UNARY_OP, { 0, 0, 0x00, 0, 0, 0, 0, 4, false }, "data", "0x!0d" },
27 { kX86Bkpt, kNullary, NO_OPERAND | IS_BRANCH, { 0, 0, 0xCC, 0, 0, 0, 0, 0, false }, "int 3", "" },
28 { kX86Nop, kNop, NO_OPERAND, { 0, 0, 0x90, 0, 0, 0, 0, 0, false }, "nop", "" },
Brian Carlstrom7940e442013-07-12 13:46:57 -070029
30#define ENCODING_MAP(opname, mem_use, reg_def, uses_ccodes, \
31 rm8_r8, rm32_r32, \
32 r8_rm8, r32_rm32, \
33 ax8_i8, ax32_i32, \
34 rm8_i8, rm8_i8_modrm, \
35 rm32_i32, rm32_i32_modrm, \
36 rm32_i8, rm32_i8_modrm) \
Ian Rogers0f9b9c52014-06-09 01:32:12 -070037{ kX86 ## opname ## 8MR, kMemReg, mem_use | IS_TERTIARY_OP | REG_USE02 | SETS_CCODES | uses_ccodes, { 0, 0, rm8_r8, 0, 0, 0, 0, 0, true }, #opname "8MR", "[!0r+!1d],!2r" }, \
Mark Mendell2bc47702014-07-31 14:36:54 -040038{ kX86 ## opname ## 8AR, kArrayReg, mem_use | IS_QUIN_OP | REG_USE014 | SETS_CCODES | uses_ccodes, { 0, 0, rm8_r8, 0, 0, 0, 0, 0, true }, #opname "8AR", "[!0r+!1r<<!2d+!3d],!4r" }, \
Ian Rogers0f9b9c52014-06-09 01:32:12 -070039{ kX86 ## opname ## 8TR, kThreadReg, mem_use | IS_BINARY_OP | REG_USE1 | SETS_CCODES | uses_ccodes, { THREAD_PREFIX, 0, rm8_r8, 0, 0, 0, 0, 0, true }, #opname "8TR", "fs:[!0d],!1r" }, \
40{ kX86 ## opname ## 8RR, kRegReg, IS_BINARY_OP | reg_def | REG_USE01 | SETS_CCODES | uses_ccodes, { 0, 0, r8_rm8, 0, 0, 0, 0, 0, true }, #opname "8RR", "!0r,!1r" }, \
41{ kX86 ## opname ## 8RM, kRegMem, IS_LOAD | IS_TERTIARY_OP | reg_def | REG_USE01 | SETS_CCODES | uses_ccodes, { 0, 0, r8_rm8, 0, 0, 0, 0, 0, true }, #opname "8RM", "!0r,[!1r+!2d]" }, \
42{ kX86 ## opname ## 8RA, kRegArray, IS_LOAD | IS_QUIN_OP | reg_def | REG_USE012 | SETS_CCODES | uses_ccodes, { 0, 0, r8_rm8, 0, 0, 0, 0, 0, true }, #opname "8RA", "!0r,[!1r+!2r<<!3d+!4d]" }, \
43{ kX86 ## opname ## 8RT, kRegThread, IS_LOAD | IS_BINARY_OP | reg_def | REG_USE0 | SETS_CCODES | uses_ccodes, { THREAD_PREFIX, 0, r8_rm8, 0, 0, 0, 0, 0, true }, #opname "8RT", "!0r,fs:[!1d]" }, \
44{ kX86 ## opname ## 8RI, kRegImm, IS_BINARY_OP | reg_def | REG_USE0 | SETS_CCODES | uses_ccodes, { 0, 0, rm8_i8, 0, 0, rm8_i8_modrm, ax8_i8, 1, true }, #opname "8RI", "!0r,!1d" }, \
Mark Mendellfd0c2372014-07-31 13:20:21 -040045{ kX86 ## opname ## 8MI, kMemImm, mem_use | IS_TERTIARY_OP | REG_USE0 | SETS_CCODES | uses_ccodes, { 0, 0, rm8_i8, 0, 0, rm8_i8_modrm, 0, 1, false}, #opname "8MI", "[!0r+!1d],!2d" }, \
46{ kX86 ## opname ## 8AI, kArrayImm, mem_use | IS_QUIN_OP | REG_USE01 | SETS_CCODES | uses_ccodes, { 0, 0, rm8_i8, 0, 0, rm8_i8_modrm, 0, 1, false}, #opname "8AI", "[!0r+!1r<<!2d+!3d],!4d" }, \
47{ kX86 ## opname ## 8TI, kThreadImm, mem_use | IS_BINARY_OP | SETS_CCODES | uses_ccodes, { THREAD_PREFIX, 0, rm8_i8, 0, 0, rm8_i8_modrm, 0, 1, false}, #opname "8TI", "fs:[!0d],!1d" }, \
Brian Carlstrom7940e442013-07-12 13:46:57 -070048 \
Ian Rogers0f9b9c52014-06-09 01:32:12 -070049{ kX86 ## opname ## 16MR, kMemReg, mem_use | IS_TERTIARY_OP | REG_USE02 | SETS_CCODES | uses_ccodes, { 0x66, 0, rm32_r32, 0, 0, 0, 0, 0, false }, #opname "16MR", "[!0r+!1d],!2r" }, \
50{ kX86 ## opname ## 16AR, kArrayReg, mem_use | IS_QUIN_OP | REG_USE014 | SETS_CCODES | uses_ccodes, { 0x66, 0, rm32_r32, 0, 0, 0, 0, 0, false }, #opname "16AR", "[!0r+!1r<<!2d+!3d],!4r" }, \
51{ kX86 ## opname ## 16TR, kThreadReg, mem_use | IS_BINARY_OP | REG_USE1 | SETS_CCODES | uses_ccodes, { THREAD_PREFIX, 0x66, rm32_r32, 0, 0, 0, 0, 0, false }, #opname "16TR", "fs:[!0d],!1r" }, \
52{ kX86 ## opname ## 16RR, kRegReg, IS_BINARY_OP | reg_def | REG_USE01 | SETS_CCODES | uses_ccodes, { 0x66, 0, r32_rm32, 0, 0, 0, 0, 0, false }, #opname "16RR", "!0r,!1r" }, \
53{ kX86 ## opname ## 16RM, kRegMem, IS_LOAD | IS_TERTIARY_OP | reg_def | REG_USE01 | SETS_CCODES | uses_ccodes, { 0x66, 0, r32_rm32, 0, 0, 0, 0, 0, false }, #opname "16RM", "!0r,[!1r+!2d]" }, \
54{ kX86 ## opname ## 16RA, kRegArray, IS_LOAD | IS_QUIN_OP | reg_def | REG_USE012 | SETS_CCODES | uses_ccodes, { 0x66, 0, r32_rm32, 0, 0, 0, 0, 0, false }, #opname "16RA", "!0r,[!1r+!2r<<!3d+!4d]" }, \
55{ kX86 ## opname ## 16RT, kRegThread, IS_LOAD | IS_BINARY_OP | reg_def | REG_USE0 | SETS_CCODES | uses_ccodes, { THREAD_PREFIX, 0x66, r32_rm32, 0, 0, 0, 0, 0, false }, #opname "16RT", "!0r,fs:[!1d]" }, \
56{ kX86 ## opname ## 16RI, kRegImm, IS_BINARY_OP | reg_def | REG_USE0 | SETS_CCODES | uses_ccodes, { 0x66, 0, rm32_i32, 0, 0, rm32_i32_modrm, ax32_i32, 2, false }, #opname "16RI", "!0r,!1d" }, \
57{ kX86 ## opname ## 16MI, kMemImm, mem_use | IS_TERTIARY_OP | REG_USE0 | SETS_CCODES | uses_ccodes, { 0x66, 0, rm32_i32, 0, 0, rm32_i32_modrm, 0, 2, false }, #opname "16MI", "[!0r+!1d],!2d" }, \
58{ kX86 ## opname ## 16AI, kArrayImm, mem_use | IS_QUIN_OP | REG_USE01 | SETS_CCODES | uses_ccodes, { 0x66, 0, rm32_i32, 0, 0, rm32_i32_modrm, 0, 2, false }, #opname "16AI", "[!0r+!1r<<!2d+!3d],!4d" }, \
59{ kX86 ## opname ## 16TI, kThreadImm, mem_use | IS_BINARY_OP | SETS_CCODES | uses_ccodes, { THREAD_PREFIX, 0x66, rm32_i32, 0, 0, rm32_i32_modrm, 0, 2, false }, #opname "16TI", "fs:[!0d],!1d" }, \
60{ kX86 ## opname ## 16RI8, kRegImm, IS_BINARY_OP | reg_def | REG_USE0 | SETS_CCODES | uses_ccodes, { 0x66, 0, rm32_i8, 0, 0, rm32_i8_modrm, 0, 1, false }, #opname "16RI8", "!0r,!1d" }, \
61{ kX86 ## opname ## 16MI8, kMemImm, mem_use | IS_TERTIARY_OP | REG_USE0 | SETS_CCODES | uses_ccodes, { 0x66, 0, rm32_i8, 0, 0, rm32_i8_modrm, 0, 1, false }, #opname "16MI8", "[!0r+!1d],!2d" }, \
62{ kX86 ## opname ## 16AI8, kArrayImm, mem_use | IS_QUIN_OP | REG_USE01 | SETS_CCODES | uses_ccodes, { 0x66, 0, rm32_i8, 0, 0, rm32_i8_modrm, 0, 1, false }, #opname "16AI8", "[!0r+!1r<<!2d+!3d],!4d" }, \
63{ kX86 ## opname ## 16TI8, kThreadImm, mem_use | IS_BINARY_OP | SETS_CCODES | uses_ccodes, { THREAD_PREFIX, 0x66, rm32_i8, 0, 0, rm32_i8_modrm, 0, 1, false }, #opname "16TI8", "fs:[!0d],!1d" }, \
Brian Carlstrom7940e442013-07-12 13:46:57 -070064 \
Ian Rogers0f9b9c52014-06-09 01:32:12 -070065{ kX86 ## opname ## 32MR, kMemReg, mem_use | IS_TERTIARY_OP | REG_USE02 | SETS_CCODES | uses_ccodes, { 0, 0, rm32_r32, 0, 0, 0, 0, 0, false }, #opname "32MR", "[!0r+!1d],!2r" }, \
66{ kX86 ## opname ## 32AR, kArrayReg, mem_use | IS_QUIN_OP | REG_USE014 | SETS_CCODES | uses_ccodes, { 0, 0, rm32_r32, 0, 0, 0, 0, 0, false }, #opname "32AR", "[!0r+!1r<<!2d+!3d],!4r" }, \
67{ kX86 ## opname ## 32TR, kThreadReg, mem_use | IS_BINARY_OP | REG_USE1 | SETS_CCODES | uses_ccodes, { THREAD_PREFIX, 0, rm32_r32, 0, 0, 0, 0, 0, false }, #opname "32TR", "fs:[!0d],!1r" }, \
68{ kX86 ## opname ## 32RR, kRegReg, IS_BINARY_OP | reg_def | REG_USE01 | SETS_CCODES | uses_ccodes, { 0, 0, r32_rm32, 0, 0, 0, 0, 0, false }, #opname "32RR", "!0r,!1r" }, \
69{ kX86 ## opname ## 32RM, kRegMem, IS_LOAD | IS_TERTIARY_OP | reg_def | REG_USE01 | SETS_CCODES | uses_ccodes, { 0, 0, r32_rm32, 0, 0, 0, 0, 0, false }, #opname "32RM", "!0r,[!1r+!2d]" }, \
70{ kX86 ## opname ## 32RA, kRegArray, IS_LOAD | IS_QUIN_OP | reg_def | REG_USE012 | SETS_CCODES | uses_ccodes, { 0, 0, r32_rm32, 0, 0, 0, 0, 0, false }, #opname "32RA", "!0r,[!1r+!2r<<!3d+!4d]" }, \
71{ kX86 ## opname ## 32RT, kRegThread, IS_LOAD | IS_BINARY_OP | reg_def | REG_USE0 | SETS_CCODES | uses_ccodes, { THREAD_PREFIX, 0, r32_rm32, 0, 0, 0, 0, 0, false }, #opname "32RT", "!0r,fs:[!1d]" }, \
72{ kX86 ## opname ## 32RI, kRegImm, IS_BINARY_OP | reg_def | REG_USE0 | SETS_CCODES | uses_ccodes, { 0, 0, rm32_i32, 0, 0, rm32_i32_modrm, ax32_i32, 4, false }, #opname "32RI", "!0r,!1d" }, \
73{ kX86 ## opname ## 32MI, kMemImm, mem_use | IS_TERTIARY_OP | REG_USE0 | SETS_CCODES | uses_ccodes, { 0, 0, rm32_i32, 0, 0, rm32_i32_modrm, 0, 4, false }, #opname "32MI", "[!0r+!1d],!2d" }, \
74{ kX86 ## opname ## 32AI, kArrayImm, mem_use | IS_QUIN_OP | REG_USE01 | SETS_CCODES | uses_ccodes, { 0, 0, rm32_i32, 0, 0, rm32_i32_modrm, 0, 4, false }, #opname "32AI", "[!0r+!1r<<!2d+!3d],!4d" }, \
75{ kX86 ## opname ## 32TI, kThreadImm, mem_use | IS_BINARY_OP | SETS_CCODES | uses_ccodes, { THREAD_PREFIX, 0, rm32_i32, 0, 0, rm32_i32_modrm, 0, 4, false }, #opname "32TI", "fs:[!0d],!1d" }, \
76{ kX86 ## opname ## 32RI8, kRegImm, IS_BINARY_OP | reg_def | REG_USE0 | SETS_CCODES | uses_ccodes, { 0, 0, rm32_i8, 0, 0, rm32_i8_modrm, 0, 1, false }, #opname "32RI8", "!0r,!1d" }, \
77{ kX86 ## opname ## 32MI8, kMemImm, mem_use | IS_TERTIARY_OP | REG_USE0 | SETS_CCODES | uses_ccodes, { 0, 0, rm32_i8, 0, 0, rm32_i8_modrm, 0, 1, false }, #opname "32MI8", "[!0r+!1d],!2d" }, \
78{ kX86 ## opname ## 32AI8, kArrayImm, mem_use | IS_QUIN_OP | REG_USE01 | SETS_CCODES | uses_ccodes, { 0, 0, rm32_i8, 0, 0, rm32_i8_modrm, 0, 1, false }, #opname "32AI8", "[!0r+!1r<<!2d+!3d],!4d" }, \
79{ kX86 ## opname ## 32TI8, kThreadImm, mem_use | IS_BINARY_OP | SETS_CCODES | uses_ccodes, { THREAD_PREFIX, 0, rm32_i8, 0, 0, rm32_i8_modrm, 0, 1, false }, #opname "32TI8", "fs:[!0d],!1d" }, \
Dmitry Petrochenko96992e82014-05-20 04:03:46 +070080 \
Ian Rogers0f9b9c52014-06-09 01:32:12 -070081{ kX86 ## opname ## 64MR, kMemReg, mem_use | IS_TERTIARY_OP | REG_USE02 | SETS_CCODES | uses_ccodes, { REX_W, 0, rm32_r32, 0, 0, 0, 0, 0, false }, #opname "64MR", "[!0r+!1d],!2r" }, \
82{ kX86 ## opname ## 64AR, kArrayReg, mem_use | IS_QUIN_OP | REG_USE014 | SETS_CCODES | uses_ccodes, { REX_W, 0, rm32_r32, 0, 0, 0, 0, 0, false }, #opname "64AR", "[!0r+!1r<<!2d+!3d],!4r" }, \
83{ kX86 ## opname ## 64TR, kThreadReg, mem_use | IS_BINARY_OP | REG_USE1 | SETS_CCODES | uses_ccodes, { THREAD_PREFIX, REX_W, rm32_r32, 0, 0, 0, 0, 0, false }, #opname "64TR", "fs:[!0d],!1r" }, \
84{ kX86 ## opname ## 64RR, kRegReg, IS_BINARY_OP | reg_def | REG_USE01 | SETS_CCODES | uses_ccodes, { REX_W, 0, r32_rm32, 0, 0, 0, 0, 0, false }, #opname "64RR", "!0r,!1r" }, \
85{ kX86 ## opname ## 64RM, kRegMem, IS_LOAD | IS_TERTIARY_OP | reg_def | REG_USE01 | SETS_CCODES | uses_ccodes, { REX_W, 0, r32_rm32, 0, 0, 0, 0, 0, false }, #opname "64RM", "!0r,[!1r+!2d]" }, \
86{ kX86 ## opname ## 64RA, kRegArray, IS_LOAD | IS_QUIN_OP | reg_def | REG_USE012 | SETS_CCODES | uses_ccodes, { REX_W, 0, r32_rm32, 0, 0, 0, 0, 0, false }, #opname "64RA", "!0r,[!1r+!2r<<!3d+!4d]" }, \
87{ kX86 ## opname ## 64RT, kRegThread, IS_LOAD | IS_BINARY_OP | reg_def | REG_USE0 | SETS_CCODES | uses_ccodes, { THREAD_PREFIX, REX_W, r32_rm32, 0, 0, 0, 0, 0, false }, #opname "64RT", "!0r,fs:[!1d]" }, \
88{ kX86 ## opname ## 64RI, kRegImm, IS_BINARY_OP | reg_def | REG_USE0 | SETS_CCODES | uses_ccodes, { REX_W, 0, rm32_i32, 0, 0, rm32_i32_modrm, ax32_i32, 4, false }, #opname "64RI", "!0r,!1d" }, \
89{ kX86 ## opname ## 64MI, kMemImm, mem_use | IS_TERTIARY_OP | REG_USE0 | SETS_CCODES | uses_ccodes, { REX_W, 0, rm32_i32, 0, 0, rm32_i32_modrm, 0, 4, false }, #opname "64MI", "[!0r+!1d],!2d" }, \
90{ kX86 ## opname ## 64AI, kArrayImm, mem_use | IS_QUIN_OP | REG_USE01 | SETS_CCODES | uses_ccodes, { REX_W, 0, rm32_i32, 0, 0, rm32_i32_modrm, 0, 4, false }, #opname "64AI", "[!0r+!1r<<!2d+!3d],!4d" }, \
91{ kX86 ## opname ## 64TI, kThreadImm, mem_use | IS_BINARY_OP | SETS_CCODES | uses_ccodes, { THREAD_PREFIX, REX_W, rm32_i32, 0, 0, rm32_i32_modrm, 0, 4, false }, #opname "64TI", "fs:[!0d],!1d" }, \
92{ kX86 ## opname ## 64RI8, kRegImm, IS_BINARY_OP | reg_def | REG_USE0 | SETS_CCODES | uses_ccodes, { REX_W, 0, rm32_i8, 0, 0, rm32_i8_modrm, 0, 1, false }, #opname "64RI8", "!0r,!1d" }, \
93{ kX86 ## opname ## 64MI8, kMemImm, mem_use | IS_TERTIARY_OP | REG_USE0 | SETS_CCODES | uses_ccodes, { REX_W, 0, rm32_i8, 0, 0, rm32_i8_modrm, 0, 1, false }, #opname "64MI8", "[!0r+!1d],!2d" }, \
94{ kX86 ## opname ## 64AI8, kArrayImm, mem_use | IS_QUIN_OP | REG_USE01 | SETS_CCODES | uses_ccodes, { REX_W, 0, rm32_i8, 0, 0, rm32_i8_modrm, 0, 1, false }, #opname "64AI8", "[!0r+!1r<<!2d+!3d],!4d" }, \
95{ kX86 ## opname ## 64TI8, kThreadImm, mem_use | IS_BINARY_OP | SETS_CCODES | uses_ccodes, { THREAD_PREFIX, REX_W, rm32_i8, 0, 0, rm32_i8_modrm, 0, 1, false }, #opname "64TI8", "fs:[!0d],!1d" }
Brian Carlstrom7940e442013-07-12 13:46:57 -070096
97ENCODING_MAP(Add, IS_LOAD | IS_STORE, REG_DEF0, 0,
98 0x00 /* RegMem8/Reg8 */, 0x01 /* RegMem32/Reg32 */,
99 0x02 /* Reg8/RegMem8 */, 0x03 /* Reg32/RegMem32 */,
100 0x04 /* Rax8/imm8 opcode */, 0x05 /* Rax32/imm32 */,
101 0x80, 0x0 /* RegMem8/imm8 */,
102 0x81, 0x0 /* RegMem32/imm32 */, 0x83, 0x0 /* RegMem32/imm8 */),
103ENCODING_MAP(Or, IS_LOAD | IS_STORE, REG_DEF0, 0,
104 0x08 /* RegMem8/Reg8 */, 0x09 /* RegMem32/Reg32 */,
105 0x0A /* Reg8/RegMem8 */, 0x0B /* Reg32/RegMem32 */,
106 0x0C /* Rax8/imm8 opcode */, 0x0D /* Rax32/imm32 */,
107 0x80, 0x1 /* RegMem8/imm8 */,
108 0x81, 0x1 /* RegMem32/imm32 */, 0x83, 0x1 /* RegMem32/imm8 */),
109ENCODING_MAP(Adc, IS_LOAD | IS_STORE, REG_DEF0, USES_CCODES,
110 0x10 /* RegMem8/Reg8 */, 0x11 /* RegMem32/Reg32 */,
111 0x12 /* Reg8/RegMem8 */, 0x13 /* Reg32/RegMem32 */,
112 0x14 /* Rax8/imm8 opcode */, 0x15 /* Rax32/imm32 */,
113 0x80, 0x2 /* RegMem8/imm8 */,
114 0x81, 0x2 /* RegMem32/imm32 */, 0x83, 0x2 /* RegMem32/imm8 */),
115ENCODING_MAP(Sbb, IS_LOAD | IS_STORE, REG_DEF0, USES_CCODES,
116 0x18 /* RegMem8/Reg8 */, 0x19 /* RegMem32/Reg32 */,
117 0x1A /* Reg8/RegMem8 */, 0x1B /* Reg32/RegMem32 */,
118 0x1C /* Rax8/imm8 opcode */, 0x1D /* Rax32/imm32 */,
119 0x80, 0x3 /* RegMem8/imm8 */,
120 0x81, 0x3 /* RegMem32/imm32 */, 0x83, 0x3 /* RegMem32/imm8 */),
121ENCODING_MAP(And, IS_LOAD | IS_STORE, REG_DEF0, 0,
122 0x20 /* RegMem8/Reg8 */, 0x21 /* RegMem32/Reg32 */,
123 0x22 /* Reg8/RegMem8 */, 0x23 /* Reg32/RegMem32 */,
124 0x24 /* Rax8/imm8 opcode */, 0x25 /* Rax32/imm32 */,
125 0x80, 0x4 /* RegMem8/imm8 */,
126 0x81, 0x4 /* RegMem32/imm32 */, 0x83, 0x4 /* RegMem32/imm8 */),
127ENCODING_MAP(Sub, IS_LOAD | IS_STORE, REG_DEF0, 0,
128 0x28 /* RegMem8/Reg8 */, 0x29 /* RegMem32/Reg32 */,
129 0x2A /* Reg8/RegMem8 */, 0x2B /* Reg32/RegMem32 */,
130 0x2C /* Rax8/imm8 opcode */, 0x2D /* Rax32/imm32 */,
131 0x80, 0x5 /* RegMem8/imm8 */,
132 0x81, 0x5 /* RegMem32/imm32 */, 0x83, 0x5 /* RegMem32/imm8 */),
133ENCODING_MAP(Xor, IS_LOAD | IS_STORE, REG_DEF0, 0,
134 0x30 /* RegMem8/Reg8 */, 0x31 /* RegMem32/Reg32 */,
135 0x32 /* Reg8/RegMem8 */, 0x33 /* Reg32/RegMem32 */,
136 0x34 /* Rax8/imm8 opcode */, 0x35 /* Rax32/imm32 */,
137 0x80, 0x6 /* RegMem8/imm8 */,
138 0x81, 0x6 /* RegMem32/imm32 */, 0x83, 0x6 /* RegMem32/imm8 */),
139ENCODING_MAP(Cmp, IS_LOAD, 0, 0,
140 0x38 /* RegMem8/Reg8 */, 0x39 /* RegMem32/Reg32 */,
141 0x3A /* Reg8/RegMem8 */, 0x3B /* Reg32/RegMem32 */,
142 0x3C /* Rax8/imm8 opcode */, 0x3D /* Rax32/imm32 */,
143 0x80, 0x7 /* RegMem8/imm8 */,
144 0x81, 0x7 /* RegMem32/imm32 */, 0x83, 0x7 /* RegMem32/imm8 */),
145#undef ENCODING_MAP
146
Ian Rogers0f9b9c52014-06-09 01:32:12 -0700147 { kX86Imul16RRI, kRegRegImm, IS_TERTIARY_OP | REG_DEF0_USE1 | SETS_CCODES, { 0x66, 0, 0x69, 0, 0, 0, 0, 2, false }, "Imul16RRI", "!0r,!1r,!2d" },
148 { kX86Imul16RMI, kRegMemImm, IS_LOAD | IS_QUAD_OP | REG_DEF0_USE1 | SETS_CCODES, { 0x66, 0, 0x69, 0, 0, 0, 0, 2, false }, "Imul16RMI", "!0r,[!1r+!2d],!3d" },
149 { kX86Imul16RAI, kRegArrayImm, IS_LOAD | IS_SEXTUPLE_OP | REG_DEF0_USE12 | SETS_CCODES, { 0x66, 0, 0x69, 0, 0, 0, 0, 2, false }, "Imul16RAI", "!0r,[!1r+!2r<<!3d+!4d],!5d" },
Brian Carlstrom7940e442013-07-12 13:46:57 -0700150
Ian Rogers0f9b9c52014-06-09 01:32:12 -0700151 { kX86Imul32RRI, kRegRegImm, IS_TERTIARY_OP | REG_DEF0_USE1 | SETS_CCODES, { 0, 0, 0x69, 0, 0, 0, 0, 4, false }, "Imul32RRI", "!0r,!1r,!2d" },
152 { kX86Imul32RMI, kRegMemImm, IS_LOAD | IS_QUAD_OP | REG_DEF0_USE1 | SETS_CCODES, { 0, 0, 0x69, 0, 0, 0, 0, 4, false }, "Imul32RMI", "!0r,[!1r+!2d],!3d" },
153 { kX86Imul32RAI, kRegArrayImm, IS_LOAD | IS_SEXTUPLE_OP | REG_DEF0_USE12 | SETS_CCODES, { 0, 0, 0x69, 0, 0, 0, 0, 4, false }, "Imul32RAI", "!0r,[!1r+!2r<<!3d+!4d],!5d" },
154 { kX86Imul32RRI8, kRegRegImm, IS_TERTIARY_OP | REG_DEF0_USE1 | SETS_CCODES, { 0, 0, 0x6B, 0, 0, 0, 0, 1, false }, "Imul32RRI8", "!0r,!1r,!2d" },
155 { kX86Imul32RMI8, kRegMemImm, IS_LOAD | IS_QUAD_OP | REG_DEF0_USE1 | SETS_CCODES, { 0, 0, 0x6B, 0, 0, 0, 0, 1, false }, "Imul32RMI8", "!0r,[!1r+!2d],!3d" },
156 { kX86Imul32RAI8, kRegArrayImm, IS_LOAD | IS_SEXTUPLE_OP | REG_DEF0_USE12 | SETS_CCODES, { 0, 0, 0x6B, 0, 0, 0, 0, 1, false }, "Imul32RAI8", "!0r,[!1r+!2r<<!3d+!4d],!5d" },
Brian Carlstrom7940e442013-07-12 13:46:57 -0700157
Ian Rogers0f9b9c52014-06-09 01:32:12 -0700158 { kX86Imul64RRI, kRegRegImm, IS_TERTIARY_OP | REG_DEF0_USE1 | SETS_CCODES, { REX_W, 0, 0x69, 0, 0, 0, 0, 4, false }, "Imul64RRI", "!0r,!1r,!2d" },
159 { kX86Imul64RMI, kRegMemImm, IS_LOAD | IS_QUAD_OP | REG_DEF0_USE1 | SETS_CCODES, { REX_W, 0, 0x69, 0, 0, 0, 0, 4, false }, "Imul64RMI", "!0r,[!1r+!2d],!3d" },
160 { kX86Imul64RAI, kRegArrayImm, IS_LOAD | IS_SEXTUPLE_OP | REG_DEF0_USE12 | SETS_CCODES, { REX_W, 0, 0x69, 0, 0, 0, 0, 4, false }, "Imul64RAI", "!0r,[!1r+!2r<<!3d+!4d],!5d" },
161 { kX86Imul64RRI8, kRegRegImm, IS_TERTIARY_OP | REG_DEF0_USE1 | SETS_CCODES, { REX_W, 0, 0x6B, 0, 0, 0, 0, 1, false }, "Imul64RRI8", "!0r,!1r,!2d" },
162 { kX86Imul64RMI8, kRegMemImm, IS_LOAD | IS_QUAD_OP | REG_DEF0_USE1 | SETS_CCODES, { REX_W, 0, 0x6B, 0, 0, 0, 0, 1, false }, "Imul64RMI8", "!0r,[!1r+!2d],!3d" },
163 { kX86Imul64RAI8, kRegArrayImm, IS_LOAD | IS_SEXTUPLE_OP | REG_DEF0_USE12 | SETS_CCODES, { REX_W, 0, 0x6B, 0, 0, 0, 0, 1, false }, "Imul64RAI8", "!0r,[!1r+!2r<<!3d+!4d],!5d" },
Dmitry Petrochenko96992e82014-05-20 04:03:46 +0700164
Ian Rogers0f9b9c52014-06-09 01:32:12 -0700165 { kX86Mov8MR, kMemReg, IS_STORE | IS_TERTIARY_OP | REG_USE02, { 0, 0, 0x88, 0, 0, 0, 0, 0, true }, "Mov8MR", "[!0r+!1d],!2r" },
166 { kX86Mov8AR, kArrayReg, IS_STORE | IS_QUIN_OP | REG_USE014, { 0, 0, 0x88, 0, 0, 0, 0, 0, true }, "Mov8AR", "[!0r+!1r<<!2d+!3d],!4r" },
167 { kX86Mov8TR, kThreadReg, IS_STORE | IS_BINARY_OP | REG_USE1, { THREAD_PREFIX, 0, 0x88, 0, 0, 0, 0, 0, true }, "Mov8TR", "fs:[!0d],!1r" },
168 { kX86Mov8RR, kRegReg, IS_BINARY_OP | REG_DEF0_USE1, { 0, 0, 0x8A, 0, 0, 0, 0, 0, true }, "Mov8RR", "!0r,!1r" },
169 { kX86Mov8RM, kRegMem, IS_LOAD | IS_TERTIARY_OP | REG_DEF0_USE1, { 0, 0, 0x8A, 0, 0, 0, 0, 0, true }, "Mov8RM", "!0r,[!1r+!2d]" },
170 { kX86Mov8RA, kRegArray, IS_LOAD | IS_QUIN_OP | REG_DEF0_USE12, { 0, 0, 0x8A, 0, 0, 0, 0, 0, true }, "Mov8RA", "!0r,[!1r+!2r<<!3d+!4d]" },
171 { kX86Mov8RT, kRegThread, IS_LOAD | IS_BINARY_OP | REG_DEF0, { THREAD_PREFIX, 0, 0x8A, 0, 0, 0, 0, 0, true }, "Mov8RT", "!0r,fs:[!1d]" },
172 { kX86Mov8RI, kMovRegImm, IS_BINARY_OP | REG_DEF0, { 0, 0, 0xB0, 0, 0, 0, 0, 1, true }, "Mov8RI", "!0r,!1d" },
Mark Mendellfd0c2372014-07-31 13:20:21 -0400173 { kX86Mov8MI, kMemImm, IS_STORE | IS_TERTIARY_OP | REG_USE0, { 0, 0, 0xC6, 0, 0, 0, 0, 1, false}, "Mov8MI", "[!0r+!1d],!2d" },
174 { kX86Mov8AI, kArrayImm, IS_STORE | IS_QUIN_OP | REG_USE01, { 0, 0, 0xC6, 0, 0, 0, 0, 1, false}, "Mov8AI", "[!0r+!1r<<!2d+!3d],!4d" },
175 { kX86Mov8TI, kThreadImm, IS_STORE | IS_BINARY_OP, { THREAD_PREFIX, 0, 0xC6, 0, 0, 0, 0, 1, false}, "Mov8TI", "fs:[!0d],!1d" },
Brian Carlstrom7940e442013-07-12 13:46:57 -0700176
Ian Rogers0f9b9c52014-06-09 01:32:12 -0700177 { kX86Mov16MR, kMemReg, IS_STORE | IS_TERTIARY_OP | REG_USE02, { 0x66, 0, 0x89, 0, 0, 0, 0, 0, false }, "Mov16MR", "[!0r+!1d],!2r" },
178 { kX86Mov16AR, kArrayReg, IS_STORE | IS_QUIN_OP | REG_USE014, { 0x66, 0, 0x89, 0, 0, 0, 0, 0, false }, "Mov16AR", "[!0r+!1r<<!2d+!3d],!4r" },
179 { kX86Mov16TR, kThreadReg, IS_STORE | IS_BINARY_OP | REG_USE1, { THREAD_PREFIX, 0x66, 0x89, 0, 0, 0, 0, 0, false }, "Mov16TR", "fs:[!0d],!1r" },
180 { kX86Mov16RR, kRegReg, IS_BINARY_OP | REG_DEF0_USE1, { 0x66, 0, 0x8B, 0, 0, 0, 0, 0, false }, "Mov16RR", "!0r,!1r" },
181 { kX86Mov16RM, kRegMem, IS_LOAD | IS_TERTIARY_OP | REG_DEF0_USE1, { 0x66, 0, 0x8B, 0, 0, 0, 0, 0, false }, "Mov16RM", "!0r,[!1r+!2d]" },
182 { kX86Mov16RA, kRegArray, IS_LOAD | IS_QUIN_OP | REG_DEF0_USE12, { 0x66, 0, 0x8B, 0, 0, 0, 0, 0, false }, "Mov16RA", "!0r,[!1r+!2r<<!3d+!4d]" },
183 { kX86Mov16RT, kRegThread, IS_LOAD | IS_BINARY_OP | REG_DEF0, { THREAD_PREFIX, 0x66, 0x8B, 0, 0, 0, 0, 0, false }, "Mov16RT", "!0r,fs:[!1d]" },
184 { kX86Mov16RI, kMovRegImm, IS_BINARY_OP | REG_DEF0, { 0x66, 0, 0xB8, 0, 0, 0, 0, 2, false }, "Mov16RI", "!0r,!1d" },
185 { kX86Mov16MI, kMemImm, IS_STORE | IS_TERTIARY_OP | REG_USE0, { 0x66, 0, 0xC7, 0, 0, 0, 0, 2, false }, "Mov16MI", "[!0r+!1d],!2d" },
186 { kX86Mov16AI, kArrayImm, IS_STORE | IS_QUIN_OP | REG_USE01, { 0x66, 0, 0xC7, 0, 0, 0, 0, 2, false }, "Mov16AI", "[!0r+!1r<<!2d+!3d],!4d" },
187 { kX86Mov16TI, kThreadImm, IS_STORE | IS_BINARY_OP, { THREAD_PREFIX, 0x66, 0xC7, 0, 0, 0, 0, 2, false }, "Mov16TI", "fs:[!0d],!1d" },
Brian Carlstrom7940e442013-07-12 13:46:57 -0700188
Ian Rogers0f9b9c52014-06-09 01:32:12 -0700189 { kX86Mov32MR, kMemReg, IS_STORE | IS_TERTIARY_OP | REG_USE02, { 0, 0, 0x89, 0, 0, 0, 0, 0, false }, "Mov32MR", "[!0r+!1d],!2r" },
190 { kX86Mov32AR, kArrayReg, IS_STORE | IS_QUIN_OP | REG_USE014, { 0, 0, 0x89, 0, 0, 0, 0, 0, false }, "Mov32AR", "[!0r+!1r<<!2d+!3d],!4r" },
Jean Christophe Beylerb5bce7c2014-07-25 12:32:18 -0700191 { kX86Movnti32MR, kMemReg, IS_STORE | IS_TERTIARY_OP | REG_USE02, { 0x0F, 0, 0xC3, 0, 0, 0, 0, 0, false }, "Movnti32MR", "[!0r+!1d],!2r" },
192 { kX86Movnti32AR, kArrayReg, IS_STORE | IS_QUIN_OP | REG_USE014, { 0x0F, 0, 0xC3, 0, 0, 0, 0, 0, false }, "Movnti32AR", "[!0r+!1r<<!2d+!3d],!4r" },
Ian Rogers0f9b9c52014-06-09 01:32:12 -0700193 { kX86Mov32TR, kThreadReg, IS_STORE | IS_BINARY_OP | REG_USE1, { THREAD_PREFIX, 0, 0x89, 0, 0, 0, 0, 0, false }, "Mov32TR", "fs:[!0d],!1r" },
194 { kX86Mov32RR, kRegReg, IS_BINARY_OP | REG_DEF0_USE1, { 0, 0, 0x8B, 0, 0, 0, 0, 0, false }, "Mov32RR", "!0r,!1r" },
195 { kX86Mov32RM, kRegMem, IS_LOAD | IS_TERTIARY_OP | REG_DEF0_USE1, { 0, 0, 0x8B, 0, 0, 0, 0, 0, false }, "Mov32RM", "!0r,[!1r+!2d]" },
196 { kX86Mov32RA, kRegArray, IS_LOAD | IS_QUIN_OP | REG_DEF0_USE12, { 0, 0, 0x8B, 0, 0, 0, 0, 0, false }, "Mov32RA", "!0r,[!1r+!2r<<!3d+!4d]" },
197 { kX86Mov32RT, kRegThread, IS_LOAD | IS_BINARY_OP | REG_DEF0, { THREAD_PREFIX, 0, 0x8B, 0, 0, 0, 0, 0, false }, "Mov32RT", "!0r,fs:[!1d]" },
198 { kX86Mov32RI, kMovRegImm, IS_BINARY_OP | REG_DEF0, { 0, 0, 0xB8, 0, 0, 0, 0, 4, false }, "Mov32RI", "!0r,!1d" },
199 { kX86Mov32MI, kMemImm, IS_STORE | IS_TERTIARY_OP | REG_USE0, { 0, 0, 0xC7, 0, 0, 0, 0, 4, false }, "Mov32MI", "[!0r+!1d],!2d" },
200 { kX86Mov32AI, kArrayImm, IS_STORE | IS_QUIN_OP | REG_USE01, { 0, 0, 0xC7, 0, 0, 0, 0, 4, false }, "Mov32AI", "[!0r+!1r<<!2d+!3d],!4d" },
201 { kX86Mov32TI, kThreadImm, IS_STORE | IS_BINARY_OP, { THREAD_PREFIX, 0, 0xC7, 0, 0, 0, 0, 4, false }, "Mov32TI", "fs:[!0d],!1d" },
Brian Carlstrom7940e442013-07-12 13:46:57 -0700202
Ian Rogers0f9b9c52014-06-09 01:32:12 -0700203 { kX86Lea32RM, kRegMem, IS_TERTIARY_OP | IS_LOAD | REG_DEF0_USE1, { 0, 0, 0x8D, 0, 0, 0, 0, 0, false }, "Lea32RM", "!0r,[!1r+!2d]" },
204 { kX86Lea32RA, kRegArray, IS_QUIN_OP | REG_DEF0_USE12, { 0, 0, 0x8D, 0, 0, 0, 0, 0, false }, "Lea32RA", "!0r,[!1r+!2r<<!3d+!4d]" },
Mark Mendell4028a6c2014-02-19 20:06:20 -0800205
Ian Rogers0f9b9c52014-06-09 01:32:12 -0700206 { kX86Mov64MR, kMemReg, IS_STORE | IS_TERTIARY_OP | REG_USE02, { REX_W, 0, 0x89, 0, 0, 0, 0, 0, false }, "Mov64MR", "[!0r+!1d],!2r" },
207 { kX86Mov64AR, kArrayReg, IS_STORE | IS_QUIN_OP | REG_USE014, { REX_W, 0, 0x89, 0, 0, 0, 0, 0, false }, "Mov64AR", "[!0r+!1r<<!2d+!3d],!4r" },
Jean Christophe Beylerb5bce7c2014-07-25 12:32:18 -0700208 { kX86Movnti64MR, kMemReg, IS_STORE | IS_TERTIARY_OP | REG_USE02, { 0x0F, 0, 0xC3, 0, 0, 0, 0, 0, false }, "Movnti64MR", "[!0r+!1d],!2r" },
209 { kX86Movnti64AR, kArrayReg, IS_STORE | IS_QUIN_OP | REG_USE014, { 0x0F, 0, 0xC3, 0, 0, 0, 0, 0, false }, "Movnti64AR", "[!0r+!1r<<!2d+!3d],!4r" },
Ian Rogers0f9b9c52014-06-09 01:32:12 -0700210 { kX86Mov64TR, kThreadReg, IS_STORE | IS_BINARY_OP | REG_USE1, { THREAD_PREFIX, REX_W, 0x89, 0, 0, 0, 0, 0, false }, "Mov64TR", "fs:[!0d],!1r" },
211 { kX86Mov64RR, kRegReg, IS_BINARY_OP | REG_DEF0_USE1, { REX_W, 0, 0x8B, 0, 0, 0, 0, 0, false }, "Mov64RR", "!0r,!1r" },
212 { kX86Mov64RM, kRegMem, IS_LOAD | IS_TERTIARY_OP | REG_DEF0_USE1, { REX_W, 0, 0x8B, 0, 0, 0, 0, 0, false }, "Mov64RM", "!0r,[!1r+!2d]" },
213 { kX86Mov64RA, kRegArray, IS_LOAD | IS_QUIN_OP | REG_DEF0_USE12, { REX_W, 0, 0x8B, 0, 0, 0, 0, 0, false }, "Mov64RA", "!0r,[!1r+!2r<<!3d+!4d]" },
214 { kX86Mov64RT, kRegThread, IS_LOAD | IS_BINARY_OP | REG_DEF0, { THREAD_PREFIX, REX_W, 0x8B, 0, 0, 0, 0, 0, false }, "Mov64RT", "!0r,fs:[!1d]" },
Yixin Shou5192cbb2014-07-01 13:48:17 -0400215 { kX86Mov64RI32, kRegImm, IS_BINARY_OP | REG_DEF0, { REX_W, 0, 0xC7, 0, 0, 0, 0, 4, false }, "Mov64RI32", "!0r,!1d" },
216 { kX86Mov64RI64, kMovRegQuadImm, IS_TERTIARY_OP | REG_DEF0, { REX_W, 0, 0xB8, 0, 0, 0, 0, 8, false }, "Mov64RI64", "!0r,!1q" },
Ian Rogers0f9b9c52014-06-09 01:32:12 -0700217 { kX86Mov64MI, kMemImm, IS_STORE | IS_TERTIARY_OP | REG_USE0, { REX_W, 0, 0xC7, 0, 0, 0, 0, 4, false }, "Mov64MI", "[!0r+!1d],!2d" },
218 { kX86Mov64AI, kArrayImm, IS_STORE | IS_QUIN_OP | REG_USE01, { REX_W, 0, 0xC7, 0, 0, 0, 0, 4, false }, "Mov64AI", "[!0r+!1r<<!2d+!3d],!4d" },
219 { kX86Mov64TI, kThreadImm, IS_STORE | IS_BINARY_OP, { THREAD_PREFIX, REX_W, 0xC7, 0, 0, 0, 0, 4, false }, "Mov64TI", "fs:[!0d],!1d" },
Brian Carlstrom7940e442013-07-12 13:46:57 -0700220
Ian Rogers0f9b9c52014-06-09 01:32:12 -0700221 { kX86Lea64RM, kRegMem, IS_TERTIARY_OP | IS_LOAD | REG_DEF0_USE1, { REX_W, 0, 0x8D, 0, 0, 0, 0, 0, false }, "Lea64RM", "!0r,[!1r+!2d]" },
222 { kX86Lea64RA, kRegArray, IS_QUIN_OP | REG_DEF0_USE12, { REX_W, 0, 0x8D, 0, 0, 0, 0, 0, false }, "Lea64RA", "!0r,[!1r+!2r<<!3d+!4d]" },
Razvan A Lupusorubd288c22013-12-20 17:27:23 -0800223
Ian Rogers0f9b9c52014-06-09 01:32:12 -0700224 { kX86Cmov32RRC, kRegRegCond, IS_TERTIARY_OP | REG_DEF0_USE01 | USES_CCODES, { 0, 0, 0x0F, 0x40, 0, 0, 0, 0, false }, "Cmovcc32RR", "!2c !0r,!1r" },
225 { kX86Cmov64RRC, kRegRegCond, IS_TERTIARY_OP | REG_DEF0_USE01 | USES_CCODES, { REX_W, 0, 0x0F, 0x40, 0, 0, 0, 0, false }, "Cmovcc64RR", "!2c !0r,!1r" },
Dmitry Petrochenko96992e82014-05-20 04:03:46 +0700226
Ian Rogers0f9b9c52014-06-09 01:32:12 -0700227 { kX86Cmov32RMC, kRegMemCond, IS_QUAD_OP | IS_LOAD | REG_DEF0_USE01 | USES_CCODES, { 0, 0, 0x0F, 0x40, 0, 0, 0, 0, false }, "Cmovcc32RM", "!3c !0r,[!1r+!2d]" },
228 { kX86Cmov64RMC, kRegMemCond, IS_QUAD_OP | IS_LOAD | REG_DEF0_USE01 | USES_CCODES, { REX_W, 0, 0x0F, 0x40, 0, 0, 0, 0, false }, "Cmovcc64RM", "!3c !0r,[!1r+!2d]" },
Mark Mendell2637f2e2014-04-30 10:10:47 -0400229
Brian Carlstrom7940e442013-07-12 13:46:57 -0700230#define SHIFT_ENCODING_MAP(opname, modrm_opcode) \
Ian Rogers0f9b9c52014-06-09 01:32:12 -0700231{ kX86 ## opname ## 8RI, kShiftRegImm, IS_BINARY_OP | REG_DEF0_USE0 | SETS_CCODES, { 0, 0, 0xC0, 0, 0, modrm_opcode, 0xD1, 1, true }, #opname "8RI", "!0r,!1d" }, \
232{ kX86 ## opname ## 8MI, kShiftMemImm, IS_LOAD | IS_STORE | IS_TERTIARY_OP | REG_USE0 | SETS_CCODES, { 0, 0, 0xC0, 0, 0, modrm_opcode, 0xD1, 1, true }, #opname "8MI", "[!0r+!1d],!2d" }, \
233{ kX86 ## opname ## 8AI, kShiftArrayImm, IS_LOAD | IS_STORE | IS_QUIN_OP | REG_USE01 | SETS_CCODES, { 0, 0, 0xC0, 0, 0, modrm_opcode, 0xD1, 1, true }, #opname "8AI", "[!0r+!1r<<!2d+!3d],!4d" }, \
234{ kX86 ## opname ## 8RC, kShiftRegCl, IS_BINARY_OP | REG_DEF0_USE0 | REG_USEC | SETS_CCODES, { 0, 0, 0xD2, 0, 0, modrm_opcode, 0, 1, true }, #opname "8RC", "!0r,cl" }, \
235{ kX86 ## opname ## 8MC, kShiftMemCl, IS_LOAD | IS_STORE | IS_TERTIARY_OP | REG_USE0 | REG_USEC | SETS_CCODES, { 0, 0, 0xD2, 0, 0, modrm_opcode, 0, 1, true }, #opname "8MC", "[!0r+!1d],cl" }, \
236{ kX86 ## opname ## 8AC, kShiftArrayCl, IS_LOAD | IS_STORE | IS_QUIN_OP | REG_USE01 | REG_USEC | SETS_CCODES, { 0, 0, 0xD2, 0, 0, modrm_opcode, 0, 1, true }, #opname "8AC", "[!0r+!1r<<!2d+!3d],cl" }, \
Brian Carlstrom7940e442013-07-12 13:46:57 -0700237 \
Ian Rogers0f9b9c52014-06-09 01:32:12 -0700238{ kX86 ## opname ## 16RI, kShiftRegImm, IS_BINARY_OP | REG_DEF0_USE0 | SETS_CCODES, { 0x66, 0, 0xC1, 0, 0, modrm_opcode, 0xD1, 1, false }, #opname "16RI", "!0r,!1d" }, \
239{ kX86 ## opname ## 16MI, kShiftMemImm, IS_LOAD | IS_STORE | IS_TERTIARY_OP | REG_USE0 | SETS_CCODES, { 0x66, 0, 0xC1, 0, 0, modrm_opcode, 0xD1, 1, false }, #opname "16MI", "[!0r+!1d],!2d" }, \
240{ kX86 ## opname ## 16AI, kShiftArrayImm, IS_LOAD | IS_STORE | IS_QUIN_OP | REG_USE01 | SETS_CCODES, { 0x66, 0, 0xC1, 0, 0, modrm_opcode, 0xD1, 1, false }, #opname "16AI", "[!0r+!1r<<!2d+!3d],!4d" }, \
241{ kX86 ## opname ## 16RC, kShiftRegCl, IS_BINARY_OP | REG_DEF0_USE0 | REG_USEC | SETS_CCODES, { 0x66, 0, 0xD3, 0, 0, modrm_opcode, 0, 1, false }, #opname "16RC", "!0r,cl" }, \
242{ kX86 ## opname ## 16MC, kShiftMemCl, IS_LOAD | IS_STORE | IS_TERTIARY_OP | REG_USE0 | REG_USEC | SETS_CCODES, { 0x66, 0, 0xD3, 0, 0, modrm_opcode, 0, 1, false }, #opname "16MC", "[!0r+!1d],cl" }, \
243{ kX86 ## opname ## 16AC, kShiftArrayCl, IS_LOAD | IS_STORE | IS_QUIN_OP | REG_USE01 | REG_USEC | SETS_CCODES, { 0x66, 0, 0xD3, 0, 0, modrm_opcode, 0, 1, false }, #opname "16AC", "[!0r+!1r<<!2d+!3d],cl" }, \
Brian Carlstrom7940e442013-07-12 13:46:57 -0700244 \
Ian Rogers0f9b9c52014-06-09 01:32:12 -0700245{ kX86 ## opname ## 32RI, kShiftRegImm, IS_BINARY_OP | REG_DEF0_USE0 | SETS_CCODES, { 0, 0, 0xC1, 0, 0, modrm_opcode, 0xD1, 1, false }, #opname "32RI", "!0r,!1d" }, \
246{ kX86 ## opname ## 32MI, kShiftMemImm, IS_LOAD | IS_STORE | IS_TERTIARY_OP | REG_USE0 | SETS_CCODES, { 0, 0, 0xC1, 0, 0, modrm_opcode, 0xD1, 1, false }, #opname "32MI", "[!0r+!1d],!2d" }, \
247{ kX86 ## opname ## 32AI, kShiftArrayImm, IS_LOAD | IS_STORE | IS_QUIN_OP | REG_USE01 | SETS_CCODES, { 0, 0, 0xC1, 0, 0, modrm_opcode, 0xD1, 1, false }, #opname "32AI", "[!0r+!1r<<!2d+!3d],!4d" }, \
248{ kX86 ## opname ## 32RC, kShiftRegCl, IS_BINARY_OP | REG_DEF0_USE0 | REG_USEC | SETS_CCODES, { 0, 0, 0xD3, 0, 0, modrm_opcode, 0, 0, false }, #opname "32RC", "!0r,cl" }, \
249{ kX86 ## opname ## 32MC, kShiftMemCl, IS_LOAD | IS_STORE | IS_TERTIARY_OP | REG_USE0 | REG_USEC | SETS_CCODES, { 0, 0, 0xD3, 0, 0, modrm_opcode, 0, 0, false }, #opname "32MC", "[!0r+!1d],cl" }, \
250{ kX86 ## opname ## 32AC, kShiftArrayCl, IS_LOAD | IS_STORE | IS_QUIN_OP | REG_USE01 | REG_USEC | SETS_CCODES, { 0, 0, 0xD3, 0, 0, modrm_opcode, 0, 0, false }, #opname "32AC", "[!0r+!1r<<!2d+!3d],cl" }, \
Dmitry Petrochenko96992e82014-05-20 04:03:46 +0700251 \
Ian Rogers0f9b9c52014-06-09 01:32:12 -0700252{ kX86 ## opname ## 64RI, kShiftRegImm, IS_BINARY_OP | REG_DEF0_USE0 | SETS_CCODES, { REX_W, 0, 0xC1, 0, 0, modrm_opcode, 0xD1, 1, false }, #opname "64RI", "!0r,!1d" }, \
253{ kX86 ## opname ## 64MI, kShiftMemImm, IS_LOAD | IS_STORE | IS_TERTIARY_OP | REG_USE0 | SETS_CCODES, { REX_W, 0, 0xC1, 0, 0, modrm_opcode, 0xD1, 1, false }, #opname "64MI", "[!0r+!1d],!2d" }, \
254{ kX86 ## opname ## 64AI, kShiftArrayImm, IS_LOAD | IS_STORE | IS_QUIN_OP | REG_USE01 | SETS_CCODES, { REX_W, 0, 0xC1, 0, 0, modrm_opcode, 0xD1, 1, false }, #opname "64AI", "[!0r+!1r<<!2d+!3d],!4d" }, \
255{ kX86 ## opname ## 64RC, kShiftRegCl, IS_BINARY_OP | REG_DEF0_USE0 | REG_USEC | SETS_CCODES, { REX_W, 0, 0xD3, 0, 0, modrm_opcode, 0, 0, false }, #opname "64RC", "!0r,cl" }, \
256{ kX86 ## opname ## 64MC, kShiftMemCl, IS_LOAD | IS_STORE | IS_TERTIARY_OP | REG_USE0 | REG_USEC | SETS_CCODES, { REX_W, 0, 0xD3, 0, 0, modrm_opcode, 0, 0, false }, #opname "64MC", "[!0r+!1d],cl" }, \
257{ kX86 ## opname ## 64AC, kShiftArrayCl, IS_LOAD | IS_STORE | IS_QUIN_OP | REG_USE01 | REG_USEC | SETS_CCODES, { REX_W, 0, 0xD3, 0, 0, modrm_opcode, 0, 0, false }, #opname "64AC", "[!0r+!1r<<!2d+!3d],cl" }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700258
259 SHIFT_ENCODING_MAP(Rol, 0x0),
260 SHIFT_ENCODING_MAP(Ror, 0x1),
261 SHIFT_ENCODING_MAP(Rcl, 0x2),
262 SHIFT_ENCODING_MAP(Rcr, 0x3),
263 SHIFT_ENCODING_MAP(Sal, 0x4),
264 SHIFT_ENCODING_MAP(Shr, 0x5),
265 SHIFT_ENCODING_MAP(Sar, 0x7),
266#undef SHIFT_ENCODING_MAP
267
Ian Rogers0f9b9c52014-06-09 01:32:12 -0700268 { kX86Cmc, kNullary, NO_OPERAND, { 0, 0, 0xF5, 0, 0, 0, 0, 0, false }, "Cmc", "" },
269 { kX86Shld32RRI, kRegRegImmStore, IS_TERTIARY_OP | REG_DEF0_USE01 | SETS_CCODES, { 0, 0, 0x0F, 0xA4, 0, 0, 0, 1, false }, "Shld32RRI", "!0r,!1r,!2d" },
Yixin Shouf40f8902014-08-14 14:10:32 -0400270 { kX86Shld32RRC, kShiftRegRegCl, IS_TERTIARY_OP | REG_DEF0_USE01 | REG_USEC | SETS_CCODES, { 0, 0, 0x0F, 0xA5, 0, 0, 0, 0, false }, "Shld32RRC", "!0r,!1r,cl" },
Ian Rogers0f9b9c52014-06-09 01:32:12 -0700271 { kX86Shld32MRI, kMemRegImm, IS_QUAD_OP | REG_USE02 | IS_LOAD | IS_STORE | SETS_CCODES, { 0, 0, 0x0F, 0xA4, 0, 0, 0, 1, false }, "Shld32MRI", "[!0r+!1d],!2r,!3d" },
272 { kX86Shrd32RRI, kRegRegImmStore, IS_TERTIARY_OP | REG_DEF0_USE01 | SETS_CCODES, { 0, 0, 0x0F, 0xAC, 0, 0, 0, 1, false }, "Shrd32RRI", "!0r,!1r,!2d" },
Yixin Shouf40f8902014-08-14 14:10:32 -0400273 { kX86Shrd32RRC, kShiftRegRegCl, IS_TERTIARY_OP | REG_DEF0_USE01 | REG_USEC | SETS_CCODES, { 0, 0, 0x0F, 0xAD, 0, 0, 0, 0, false }, "Shrd32RRC", "!0r,!1r,cl" },
Ian Rogers0f9b9c52014-06-09 01:32:12 -0700274 { kX86Shrd32MRI, kMemRegImm, IS_QUAD_OP | REG_USE02 | IS_LOAD | IS_STORE | SETS_CCODES, { 0, 0, 0x0F, 0xAC, 0, 0, 0, 1, false }, "Shrd32MRI", "[!0r+!1d],!2r,!3d" },
275 { kX86Shld64RRI, kRegRegImmStore, IS_TERTIARY_OP | REG_DEF0_USE01 | SETS_CCODES, { REX_W, 0, 0x0F, 0xA4, 0, 0, 0, 1, false }, "Shld64RRI", "!0r,!1r,!2d" },
276 { kX86Shld64MRI, kMemRegImm, IS_QUAD_OP | REG_USE02 | IS_LOAD | IS_STORE | SETS_CCODES, { REX_W, 0, 0x0F, 0xA4, 0, 0, 0, 1, false }, "Shld64MRI", "[!0r+!1d],!2r,!3d" },
277 { kX86Shrd64RRI, kRegRegImmStore, IS_TERTIARY_OP | REG_DEF0_USE01 | SETS_CCODES, { REX_W, 0, 0x0F, 0xAC, 0, 0, 0, 1, false }, "Shrd64RRI", "!0r,!1r,!2d" },
278 { kX86Shrd64MRI, kMemRegImm, IS_QUAD_OP | REG_USE02 | IS_LOAD | IS_STORE | SETS_CCODES, { REX_W, 0, 0x0F, 0xAC, 0, 0, 0, 1, false }, "Shrd64MRI", "[!0r+!1d],!2r,!3d" },
Brian Carlstrom7940e442013-07-12 13:46:57 -0700279
Dave Allison69dfe512014-07-11 17:11:58 +0000280 { kX86Test8RI, kRegImm, IS_BINARY_OP | REG_USE0 | SETS_CCODES, { 0, 0, 0xF6, 0, 0, 0, 0, 1, true }, "Test8RI", "!0r,!1d" },
281 { kX86Test8MI, kMemImm, IS_LOAD | IS_TERTIARY_OP | REG_USE0 | SETS_CCODES, { 0, 0, 0xF6, 0, 0, 0, 0, 1, true }, "Test8MI", "[!0r+!1d],!2d" },
282 { kX86Test8AI, kArrayImm, IS_LOAD | IS_QUIN_OP | REG_USE01 | SETS_CCODES, { 0, 0, 0xF6, 0, 0, 0, 0, 1, true }, "Test8AI", "[!0r+!1r<<!2d+!3d],!4d" },
283 { kX86Test16RI, kRegImm, IS_BINARY_OP | REG_USE0 | SETS_CCODES, { 0x66, 0, 0xF7, 0, 0, 0, 0, 2, false }, "Test16RI", "!0r,!1d" },
284 { kX86Test16MI, kMemImm, IS_LOAD | IS_TERTIARY_OP | REG_USE0 | SETS_CCODES, { 0x66, 0, 0xF7, 0, 0, 0, 0, 2, false }, "Test16MI", "[!0r+!1d],!2d" },
285 { kX86Test16AI, kArrayImm, IS_LOAD | IS_QUIN_OP | REG_USE01 | SETS_CCODES, { 0x66, 0, 0xF7, 0, 0, 0, 0, 2, false }, "Test16AI", "[!0r+!1r<<!2d+!3d],!4d" },
286 { kX86Test32RI, kRegImm, IS_BINARY_OP | REG_USE0 | SETS_CCODES, { 0, 0, 0xF7, 0, 0, 0, 0, 4, false }, "Test32RI", "!0r,!1d" },
287 { kX86Test32MI, kMemImm, IS_LOAD | IS_TERTIARY_OP | REG_USE0 | SETS_CCODES, { 0, 0, 0xF7, 0, 0, 0, 0, 4, false }, "Test32MI", "[!0r+!1d],!2d" },
288 { kX86Test32AI, kArrayImm, IS_LOAD | IS_QUIN_OP | REG_USE01 | SETS_CCODES, { 0, 0, 0xF7, 0, 0, 0, 0, 4, false }, "Test32AI", "[!0r+!1r<<!2d+!3d],!4d" },
Ian Rogers0f9b9c52014-06-09 01:32:12 -0700289 { kX86Test64RI, kRegImm, IS_BINARY_OP | REG_USE0 | SETS_CCODES, { REX_W, 0, 0xF7, 0, 0, 0, 0, 4, false }, "Test64RI", "!0r,!1d" },
290 { kX86Test64MI, kMemImm, IS_LOAD | IS_TERTIARY_OP | REG_USE0 | SETS_CCODES, { REX_W, 0, 0xF7, 0, 0, 0, 0, 4, false }, "Test64MI", "[!0r+!1d],!2d" },
291 { kX86Test64AI, kArrayImm, IS_LOAD | IS_QUIN_OP | REG_USE01 | SETS_CCODES, { REX_W, 0, 0xF7, 0, 0, 0, 0, 4, false }, "Test64AI", "[!0r+!1r<<!2d+!3d],!4d" },
Dmitry Petrochenko96992e82014-05-20 04:03:46 +0700292
Dave Allison69dfe512014-07-11 17:11:58 +0000293 { kX86Test32RR, kRegReg, IS_BINARY_OP | REG_USE01 | SETS_CCODES, { 0, 0, 0x85, 0, 0, 0, 0, 0, false }, "Test32RR", "!0r,!1r" },
Ian Rogers0f9b9c52014-06-09 01:32:12 -0700294 { kX86Test64RR, kRegReg, IS_BINARY_OP | REG_USE01 | SETS_CCODES, { REX_W, 0, 0x85, 0, 0, 0, 0, 0, false }, "Test64RR", "!0r,!1r" },
Chao-ying Fucf818412014-07-24 12:08:28 -0700295 { kX86Test32RM, kRegMem, IS_LOAD | IS_TERTIARY_OP | REG_USE01 | SETS_CCODES, { 0, 0, 0x85, 0, 0, 0, 0, 0, false }, "Test32RM", "!0r,[!1r+!2d]" },
Brian Carlstrom7940e442013-07-12 13:46:57 -0700296
297#define UNARY_ENCODING_MAP(opname, modrm, is_store, sets_ccodes, \
298 reg, reg_kind, reg_flags, \
299 mem, mem_kind, mem_flags, \
300 arr, arr_kind, arr_flags, imm, \
301 b_flags, hw_flags, w_flags, \
302 b_format, hw_format, w_format) \
Ian Rogers0f9b9c52014-06-09 01:32:12 -0700303{ kX86 ## opname ## 8 ## reg, reg_kind, reg_flags | b_flags | sets_ccodes, { 0, 0, 0xF6, 0, 0, modrm, 0, imm << 0, true }, #opname "8" #reg, b_format "!0r" }, \
304{ kX86 ## opname ## 8 ## mem, mem_kind, IS_LOAD | is_store | mem_flags | b_flags | sets_ccodes, { 0, 0, 0xF6, 0, 0, modrm, 0, imm << 0, true }, #opname "8" #mem, b_format "[!0r+!1d]" }, \
305{ kX86 ## opname ## 8 ## arr, arr_kind, IS_LOAD | is_store | arr_flags | b_flags | sets_ccodes, { 0, 0, 0xF6, 0, 0, modrm, 0, imm << 0, true }, #opname "8" #arr, b_format "[!0r+!1r<<!2d+!3d]" }, \
306{ kX86 ## opname ## 16 ## reg, reg_kind, reg_flags | hw_flags | sets_ccodes, { 0x66, 0, 0xF7, 0, 0, modrm, 0, imm << 1, false }, #opname "16" #reg, hw_format "!0r" }, \
307{ kX86 ## opname ## 16 ## mem, mem_kind, IS_LOAD | is_store | mem_flags | hw_flags | sets_ccodes, { 0x66, 0, 0xF7, 0, 0, modrm, 0, imm << 1, false }, #opname "16" #mem, hw_format "[!0r+!1d]" }, \
308{ kX86 ## opname ## 16 ## arr, arr_kind, IS_LOAD | is_store | arr_flags | hw_flags | sets_ccodes, { 0x66, 0, 0xF7, 0, 0, modrm, 0, imm << 1, false }, #opname "16" #arr, hw_format "[!0r+!1r<<!2d+!3d]" }, \
309{ kX86 ## opname ## 32 ## reg, reg_kind, reg_flags | w_flags | sets_ccodes, { 0, 0, 0xF7, 0, 0, modrm, 0, imm << 2, false }, #opname "32" #reg, w_format "!0r" }, \
310{ kX86 ## opname ## 32 ## mem, mem_kind, IS_LOAD | is_store | mem_flags | w_flags | sets_ccodes, { 0, 0, 0xF7, 0, 0, modrm, 0, imm << 2, false }, #opname "32" #mem, w_format "[!0r+!1d]" }, \
311{ kX86 ## opname ## 32 ## arr, arr_kind, IS_LOAD | is_store | arr_flags | w_flags | sets_ccodes, { 0, 0, 0xF7, 0, 0, modrm, 0, imm << 2, false }, #opname "32" #arr, w_format "[!0r+!1r<<!2d+!3d]" }, \
312{ kX86 ## opname ## 64 ## reg, reg_kind, reg_flags | w_flags | sets_ccodes, { REX_W, 0, 0xF7, 0, 0, modrm, 0, imm << 2, false }, #opname "64" #reg, w_format "!0r" }, \
313{ kX86 ## opname ## 64 ## mem, mem_kind, IS_LOAD | is_store | mem_flags | w_flags | sets_ccodes, { REX_W, 0, 0xF7, 0, 0, modrm, 0, imm << 2, false }, #opname "64" #mem, w_format "[!0r+!1d]" }, \
314{ kX86 ## opname ## 64 ## arr, arr_kind, IS_LOAD | is_store | arr_flags | w_flags | sets_ccodes, { REX_W, 0, 0xF7, 0, 0, modrm, 0, imm << 2, false }, #opname "64" #arr, w_format "[!0r+!1r<<!2d+!3d]" }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700315
316 UNARY_ENCODING_MAP(Not, 0x2, IS_STORE, 0, R, kReg, IS_UNARY_OP | REG_DEF0_USE0, M, kMem, IS_BINARY_OP | REG_USE0, A, kArray, IS_QUAD_OP | REG_USE01, 0, 0, 0, 0, "", "", ""),
317 UNARY_ENCODING_MAP(Neg, 0x3, IS_STORE, SETS_CCODES, R, kReg, IS_UNARY_OP | REG_DEF0_USE0, M, kMem, IS_BINARY_OP | REG_USE0, A, kArray, IS_QUAD_OP | REG_USE01, 0, 0, 0, 0, "", "", ""),
318
Mark Mendell2bf31e62014-01-23 12:13:40 -0800319 UNARY_ENCODING_MAP(Mul, 0x4, 0, SETS_CCODES, DaR, kReg, IS_UNARY_OP | REG_USE0, DaM, kMem, IS_BINARY_OP | REG_USE0, DaA, kArray, IS_QUAD_OP | REG_USE01, 0, REG_DEFA_USEA, REG_DEFAD_USEA, REG_DEFAD_USEA, "ax,al,", "dx:ax,ax,", "edx:eax,eax,"),
320 UNARY_ENCODING_MAP(Imul, 0x5, 0, SETS_CCODES, DaR, kReg, IS_UNARY_OP | REG_USE0, DaM, kMem, IS_BINARY_OP | REG_USE0, DaA, kArray, IS_QUAD_OP | REG_USE01, 0, REG_DEFA_USEA, REG_DEFAD_USEA, REG_DEFAD_USEA, "ax,al,", "dx:ax,ax,", "edx:eax,eax,"),
321 UNARY_ENCODING_MAP(Divmod, 0x6, 0, SETS_CCODES, DaR, kReg, IS_UNARY_OP | REG_USE0, DaM, kMem, IS_BINARY_OP | REG_USE0, DaA, kArray, IS_QUAD_OP | REG_USE01, 0, REG_DEFA_USEA, REG_DEFAD_USEAD, REG_DEFAD_USEAD, "ah:al,ax,", "dx:ax,dx:ax,", "edx:eax,edx:eax,"),
322 UNARY_ENCODING_MAP(Idivmod, 0x7, 0, SETS_CCODES, DaR, kReg, IS_UNARY_OP | REG_USE0, DaM, kMem, IS_BINARY_OP | REG_USE0, DaA, kArray, IS_QUAD_OP | REG_USE01, 0, REG_DEFA_USEA, REG_DEFAD_USEAD, REG_DEFAD_USEAD, "ah:al,ax,", "dx:ax,dx:ax,", "edx:eax,edx:eax,"),
Brian Carlstrom7940e442013-07-12 13:46:57 -0700323#undef UNARY_ENCODING_MAP
324
Ian Rogers0f9b9c52014-06-09 01:32:12 -0700325 { kx86Cdq32Da, kRegOpcode, NO_OPERAND | REG_DEFAD_USEA, { 0, 0, 0x99, 0, 0, 0, 0, 0, false }, "Cdq", "" },
326 { kx86Cqo64Da, kRegOpcode, NO_OPERAND | REG_DEFAD_USEA, { REX_W, 0, 0x99, 0, 0, 0, 0, 0, false }, "Cqo", "" },
327 { kX86Bswap32R, kRegOpcode, IS_UNARY_OP | REG_DEF0_USE0, { 0, 0, 0x0F, 0xC8, 0, 0, 0, 0, false }, "Bswap32R", "!0r" },
nikolay serdjukc5e4ce12014-06-10 17:07:10 +0700328 { kX86Bswap64R, kRegOpcode, IS_UNARY_OP | REG_DEF0_USE0, { REX_W, 0, 0x0F, 0xC8, 0, 0, 0, 0, false }, "Bswap64R", "!0r" },
Ian Rogers0f9b9c52014-06-09 01:32:12 -0700329 { kX86Push32R, kRegOpcode, IS_UNARY_OP | REG_USE0 | REG_USE_SP | REG_DEF_SP | IS_STORE, { 0, 0, 0x50, 0, 0, 0, 0, 0, false }, "Push32R", "!0r" },
330 { kX86Pop32R, kRegOpcode, IS_UNARY_OP | REG_DEF0 | REG_USE_SP | REG_DEF_SP | IS_LOAD, { 0, 0, 0x58, 0, 0, 0, 0, 0, false }, "Pop32R", "!0r" },
Vladimir Markoa8b4caf2013-10-24 15:08:57 +0100331
Brian Carlstrom7940e442013-07-12 13:46:57 -0700332#define EXT_0F_ENCODING_MAP(opname, prefix, opcode, reg_def) \
Ian Rogers0f9b9c52014-06-09 01:32:12 -0700333{ kX86 ## opname ## RR, kRegReg, IS_BINARY_OP | reg_def | REG_USE1, { prefix, 0, 0x0F, opcode, 0, 0, 0, 0, false }, #opname "RR", "!0r,!1r" }, \
334{ kX86 ## opname ## RM, kRegMem, IS_LOAD | IS_TERTIARY_OP | reg_def | REG_USE1, { prefix, 0, 0x0F, opcode, 0, 0, 0, 0, false }, #opname "RM", "!0r,[!1r+!2d]" }, \
335{ kX86 ## opname ## RA, kRegArray, IS_LOAD | IS_QUIN_OP | reg_def | REG_USE12, { prefix, 0, 0x0F, opcode, 0, 0, 0, 0, false }, #opname "RA", "!0r,[!1r+!2r<<!3d+!4d]" }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700336
Chao-ying Fu021b60f2014-07-09 11:32:31 -0700337// This is a special encoding with r8_form on the second register only
338// for Movzx8 and Movsx8.
339#define EXT_0F_R8_FORM_ENCODING_MAP(opname, prefix, opcode, reg_def) \
340{ kX86 ## opname ## RR, kRegReg, IS_BINARY_OP | reg_def | REG_USE1, { prefix, 0, 0x0F, opcode, 0, 0, 0, 0, true }, #opname "RR", "!0r,!1r" }, \
341{ kX86 ## opname ## RM, kRegMem, IS_LOAD | IS_TERTIARY_OP | reg_def | REG_USE1, { prefix, 0, 0x0F, opcode, 0, 0, 0, 0, false }, #opname "RM", "!0r,[!1r+!2d]" }, \
342{ kX86 ## opname ## RA, kRegArray, IS_LOAD | IS_QUIN_OP | reg_def | REG_USE12, { prefix, 0, 0x0F, opcode, 0, 0, 0, 0, false }, #opname "RA", "!0r,[!1r+!2r<<!3d+!4d]" }
343
Chao-ying Fue0ccdc02014-06-06 17:32:37 -0700344#define EXT_0F_REX_W_ENCODING_MAP(opname, prefix, opcode, reg_def) \
Ian Rogers0f9b9c52014-06-09 01:32:12 -0700345{ kX86 ## opname ## RR, kRegReg, IS_BINARY_OP | reg_def | REG_USE1, { prefix, REX_W, 0x0F, opcode, 0, 0, 0, 0, false }, #opname "RR", "!0r,!1r" }, \
346{ kX86 ## opname ## RM, kRegMem, IS_LOAD | IS_TERTIARY_OP | reg_def | REG_USE1, { prefix, REX_W, 0x0F, opcode, 0, 0, 0, 0, false }, #opname "RM", "!0r,[!1r+!2d]" }, \
347{ kX86 ## opname ## RA, kRegArray, IS_LOAD | IS_QUIN_OP | reg_def | REG_USE12, { prefix, REX_W, 0x0F, opcode, 0, 0, 0, 0, false }, #opname "RA", "!0r,[!1r+!2r<<!3d+!4d]" }
Chao-ying Fue0ccdc02014-06-06 17:32:37 -0700348
Mark Mendellfe945782014-05-22 09:52:36 -0400349#define EXT_0F_ENCODING2_MAP(opname, prefix, opcode, opcode2, reg_def) \
Ian Rogers0f9b9c52014-06-09 01:32:12 -0700350{ kX86 ## opname ## RR, kRegReg, IS_BINARY_OP | reg_def | REG_USE1, { prefix, 0, 0x0F, opcode, opcode2, 0, 0, 0, false }, #opname "RR", "!0r,!1r" }, \
351{ kX86 ## opname ## RM, kRegMem, IS_LOAD | IS_TERTIARY_OP | reg_def | REG_USE1, { prefix, 0, 0x0F, opcode, opcode2, 0, 0, 0, false }, #opname "RM", "!0r,[!1r+!2d]" }, \
352{ kX86 ## opname ## RA, kRegArray, IS_LOAD | IS_QUIN_OP | reg_def | REG_USE12, { prefix, 0, 0x0F, opcode, opcode2, 0, 0, 0, false }, #opname "RA", "!0r,[!1r+!2r<<!3d+!4d]" }
Mark Mendellfe945782014-05-22 09:52:36 -0400353
Brian Carlstrom7940e442013-07-12 13:46:57 -0700354 EXT_0F_ENCODING_MAP(Movsd, 0xF2, 0x10, REG_DEF0),
Ian Rogers0f9b9c52014-06-09 01:32:12 -0700355 { kX86MovsdMR, kMemReg, IS_STORE | IS_TERTIARY_OP | REG_USE02, { 0xF2, 0, 0x0F, 0x11, 0, 0, 0, 0, false }, "MovsdMR", "[!0r+!1d],!2r" },
356 { kX86MovsdAR, kArrayReg, IS_STORE | IS_QUIN_OP | REG_USE014, { 0xF2, 0, 0x0F, 0x11, 0, 0, 0, 0, false }, "MovsdAR", "[!0r+!1r<<!2d+!3d],!4r" },
Brian Carlstrom7940e442013-07-12 13:46:57 -0700357
358 EXT_0F_ENCODING_MAP(Movss, 0xF3, 0x10, REG_DEF0),
Ian Rogers0f9b9c52014-06-09 01:32:12 -0700359 { kX86MovssMR, kMemReg, IS_STORE | IS_TERTIARY_OP | REG_USE02, { 0xF3, 0, 0x0F, 0x11, 0, 0, 0, 0, false }, "MovssMR", "[!0r+!1d],!2r" },
360 { kX86MovssAR, kArrayReg, IS_STORE | IS_QUIN_OP | REG_USE014, { 0xF3, 0, 0x0F, 0x11, 0, 0, 0, 0, false }, "MovssAR", "[!0r+!1r<<!2d+!3d],!4r" },
Brian Carlstrom7940e442013-07-12 13:46:57 -0700361
362 EXT_0F_ENCODING_MAP(Cvtsi2sd, 0xF2, 0x2A, REG_DEF0),
363 EXT_0F_ENCODING_MAP(Cvtsi2ss, 0xF3, 0x2A, REG_DEF0),
Chao-ying Fue0ccdc02014-06-06 17:32:37 -0700364 EXT_0F_REX_W_ENCODING_MAP(Cvtsqi2sd, 0xF2, 0x2A, REG_DEF0),
365 EXT_0F_REX_W_ENCODING_MAP(Cvtsqi2ss, 0xF3, 0x2A, REG_DEF0),
Brian Carlstrom7940e442013-07-12 13:46:57 -0700366 EXT_0F_ENCODING_MAP(Cvttsd2si, 0xF2, 0x2C, REG_DEF0),
367 EXT_0F_ENCODING_MAP(Cvttss2si, 0xF3, 0x2C, REG_DEF0),
Chao-ying Fue0ccdc02014-06-06 17:32:37 -0700368 EXT_0F_REX_W_ENCODING_MAP(Cvttsd2sqi, 0xF2, 0x2C, REG_DEF0),
369 EXT_0F_REX_W_ENCODING_MAP(Cvttss2sqi, 0xF3, 0x2C, REG_DEF0),
Brian Carlstrom7940e442013-07-12 13:46:57 -0700370 EXT_0F_ENCODING_MAP(Cvtsd2si, 0xF2, 0x2D, REG_DEF0),
371 EXT_0F_ENCODING_MAP(Cvtss2si, 0xF3, 0x2D, REG_DEF0),
Mark Mendell2637f2e2014-04-30 10:10:47 -0400372 EXT_0F_ENCODING_MAP(Ucomisd, 0x66, 0x2E, SETS_CCODES|REG_USE0),
373 EXT_0F_ENCODING_MAP(Ucomiss, 0x00, 0x2E, SETS_CCODES|REG_USE0),
374 EXT_0F_ENCODING_MAP(Comisd, 0x66, 0x2F, SETS_CCODES|REG_USE0),
375 EXT_0F_ENCODING_MAP(Comiss, 0x00, 0x2F, SETS_CCODES|REG_USE0),
Alexei Zavjalov1222c962014-07-16 00:54:13 +0700376 EXT_0F_ENCODING_MAP(Orpd, 0x66, 0x56, REG_DEF0_USE0),
Mark Mendell2637f2e2014-04-30 10:10:47 -0400377 EXT_0F_ENCODING_MAP(Orps, 0x00, 0x56, REG_DEF0_USE0),
Alexei Zavjalov1222c962014-07-16 00:54:13 +0700378 EXT_0F_ENCODING_MAP(Andpd, 0x66, 0x54, REG_DEF0_USE0),
379 EXT_0F_ENCODING_MAP(Andps, 0x00, 0x54, REG_DEF0_USE0),
380 EXT_0F_ENCODING_MAP(Xorpd, 0x66, 0x57, REG_DEF0_USE0),
Mark Mendell2637f2e2014-04-30 10:10:47 -0400381 EXT_0F_ENCODING_MAP(Xorps, 0x00, 0x57, REG_DEF0_USE0),
382 EXT_0F_ENCODING_MAP(Addsd, 0xF2, 0x58, REG_DEF0_USE0),
383 EXT_0F_ENCODING_MAP(Addss, 0xF3, 0x58, REG_DEF0_USE0),
384 EXT_0F_ENCODING_MAP(Mulsd, 0xF2, 0x59, REG_DEF0_USE0),
385 EXT_0F_ENCODING_MAP(Mulss, 0xF3, 0x59, REG_DEF0_USE0),
Brian Carlstrom7940e442013-07-12 13:46:57 -0700386 EXT_0F_ENCODING_MAP(Cvtsd2ss, 0xF2, 0x5A, REG_DEF0),
387 EXT_0F_ENCODING_MAP(Cvtss2sd, 0xF3, 0x5A, REG_DEF0),
Mark Mendell2637f2e2014-04-30 10:10:47 -0400388 EXT_0F_ENCODING_MAP(Subsd, 0xF2, 0x5C, REG_DEF0_USE0),
389 EXT_0F_ENCODING_MAP(Subss, 0xF3, 0x5C, REG_DEF0_USE0),
390 EXT_0F_ENCODING_MAP(Divsd, 0xF2, 0x5E, REG_DEF0_USE0),
391 EXT_0F_ENCODING_MAP(Divss, 0xF3, 0x5E, REG_DEF0_USE0),
392 EXT_0F_ENCODING_MAP(Punpckldq, 0x66, 0x62, REG_DEF0_USE0),
Mark Mendellfe945782014-05-22 09:52:36 -0400393 EXT_0F_ENCODING_MAP(Sqrtsd, 0xF2, 0x51, REG_DEF0_USE0),
394 EXT_0F_ENCODING2_MAP(Pmulld, 0x66, 0x38, 0x40, REG_DEF0_USE0),
395 EXT_0F_ENCODING_MAP(Pmullw, 0x66, 0xD5, REG_DEF0_USE0),
396 EXT_0F_ENCODING_MAP(Mulps, 0x00, 0x59, REG_DEF0_USE0),
397 EXT_0F_ENCODING_MAP(Mulpd, 0x66, 0x59, REG_DEF0_USE0),
398 EXT_0F_ENCODING_MAP(Paddb, 0x66, 0xFC, REG_DEF0_USE0),
399 EXT_0F_ENCODING_MAP(Paddw, 0x66, 0xFD, REG_DEF0_USE0),
400 EXT_0F_ENCODING_MAP(Paddd, 0x66, 0xFE, REG_DEF0_USE0),
401 EXT_0F_ENCODING_MAP(Addps, 0x00, 0x58, REG_DEF0_USE0),
402 EXT_0F_ENCODING_MAP(Addpd, 0xF2, 0x58, REG_DEF0_USE0),
403 EXT_0F_ENCODING_MAP(Psubb, 0x66, 0xF8, REG_DEF0_USE0),
404 EXT_0F_ENCODING_MAP(Psubw, 0x66, 0xF9, REG_DEF0_USE0),
405 EXT_0F_ENCODING_MAP(Psubd, 0x66, 0xFA, REG_DEF0_USE0),
406 EXT_0F_ENCODING_MAP(Subps, 0x00, 0x5C, REG_DEF0_USE0),
407 EXT_0F_ENCODING_MAP(Subpd, 0x66, 0x5C, REG_DEF0_USE0),
408 EXT_0F_ENCODING_MAP(Pand, 0x66, 0xDB, REG_DEF0_USE0),
409 EXT_0F_ENCODING_MAP(Por, 0x66, 0xEB, REG_DEF0_USE0),
410 EXT_0F_ENCODING_MAP(Pxor, 0x66, 0xEF, REG_DEF0_USE0),
411 EXT_0F_ENCODING2_MAP(Phaddw, 0x66, 0x38, 0x01, REG_DEF0_USE0),
412 EXT_0F_ENCODING2_MAP(Phaddd, 0x66, 0x38, 0x02, REG_DEF0_USE0),
Olivier Comefb0fecf2014-06-20 11:46:16 +0200413 EXT_0F_ENCODING_MAP(Haddpd, 0x66, 0x7C, REG_DEF0_USE0),
414 EXT_0F_ENCODING_MAP(Haddps, 0xF2, 0x7C, REG_DEF0_USE0),
Brian Carlstrom7940e442013-07-12 13:46:57 -0700415
Serguei Katkov35690632014-07-16 15:52:59 +0700416 { kX86PextrbRRI, kRegRegImmStore, IS_TERTIARY_OP | REG_DEF0 | REG_USE1, { 0x66, 0, 0x0F, 0x3A, 0x14, 0, 0, 1, false }, "PextbRRI", "!0r,!1r,!2d" },
Udayan Banerji60bfe7b2014-07-08 19:59:43 -0700417 { kX86PextrwRRI, kRegRegImm, IS_TERTIARY_OP | REG_DEF0 | REG_USE1, { 0x66, 0, 0x0F, 0xC5, 0x00, 0, 0, 1, false }, "PextwRRI", "!0r,!1r,!2d" },
Serguei Katkov35690632014-07-16 15:52:59 +0700418 { kX86PextrdRRI, kRegRegImmStore, IS_TERTIARY_OP | REG_DEF0 | REG_USE1, { 0x66, 0, 0x0F, 0x3A, 0x16, 0, 0, 1, false }, "PextdRRI", "!0r,!1r,!2d" },
Udayan Banerji60bfe7b2014-07-08 19:59:43 -0700419 { kX86PextrbMRI, kMemRegImm, IS_QUAD_OP | REG_USE02 | IS_STORE, { 0x66, 0, 0x0F, 0x3A, 0x16, 0, 0, 1, false }, "kX86PextrbMRI", "[!0r+!1d],!2r,!3d" },
420 { kX86PextrwMRI, kMemRegImm, IS_QUAD_OP | REG_USE02 | IS_STORE, { 0x66, 0, 0x0F, 0x3A, 0x16, 0, 0, 1, false }, "kX86PextrwMRI", "[!0r+!1d],!2r,!3d" },
421 { kX86PextrdMRI, kMemRegImm, IS_QUAD_OP | REG_USE02 | IS_STORE, { 0x66, 0, 0x0F, 0x3A, 0x16, 0, 0, 1, false }, "kX86PextrdMRI", "[!0r+!1d],!2r,!3d" },
Mark Mendellfe945782014-05-22 09:52:36 -0400422
Ian Rogers0f9b9c52014-06-09 01:32:12 -0700423 { kX86PshuflwRRI, kRegRegImm, IS_TERTIARY_OP | REG_DEF0 | REG_USE1, { 0xF2, 0, 0x0F, 0x70, 0, 0, 0, 1, false }, "PshuflwRRI", "!0r,!1r,!2d" },
424 { kX86PshufdRRI, kRegRegImm, IS_TERTIARY_OP | REG_DEF0 | REG_USE1, { 0x66, 0, 0x0F, 0x70, 0, 0, 0, 1, false }, "PshuffRRI", "!0r,!1r,!2d" },
Mark Mendellfe945782014-05-22 09:52:36 -0400425
Olivier Comefb0fecf2014-06-20 11:46:16 +0200426 { kX86ShufpsRRI, kRegRegImm, IS_TERTIARY_OP | REG_DEF0 | REG_USE1, { 0x00, 0, 0x0F, 0xC6, 0, 0, 0, 1, false }, "kX86ShufpsRRI", "!0r,!1r,!2d" },
427 { kX86ShufpdRRI, kRegRegImm, IS_TERTIARY_OP | REG_DEF0 | REG_USE1, { 0x66, 0, 0x0F, 0xC6, 0, 0, 0, 1, false }, "kX86ShufpdRRI", "!0r,!1r,!2d" },
428
Ian Rogers0f9b9c52014-06-09 01:32:12 -0700429 { kX86PsrawRI, kRegImm, IS_BINARY_OP | REG_DEF0_USE0, { 0x66, 0, 0x0F, 0x71, 0, 4, 0, 1, false }, "PsrawRI", "!0r,!1d" },
430 { kX86PsradRI, kRegImm, IS_BINARY_OP | REG_DEF0_USE0, { 0x66, 0, 0x0F, 0x72, 0, 4, 0, 1, false }, "PsradRI", "!0r,!1d" },
431 { kX86PsrlwRI, kRegImm, IS_BINARY_OP | REG_DEF0_USE0, { 0x66, 0, 0x0F, 0x71, 0, 2, 0, 1, false }, "PsrlwRI", "!0r,!1d" },
432 { kX86PsrldRI, kRegImm, IS_BINARY_OP | REG_DEF0_USE0, { 0x66, 0, 0x0F, 0x72, 0, 2, 0, 1, false }, "PsrldRI", "!0r,!1d" },
433 { kX86PsrlqRI, kRegImm, IS_BINARY_OP | REG_DEF0_USE0, { 0x66, 0, 0x0F, 0x73, 0, 2, 0, 1, false }, "PsrlqRI", "!0r,!1d" },
434 { kX86PsllwRI, kRegImm, IS_BINARY_OP | REG_DEF0_USE0, { 0x66, 0, 0x0F, 0x71, 0, 6, 0, 1, false }, "PsllwRI", "!0r,!1d" },
435 { kX86PslldRI, kRegImm, IS_BINARY_OP | REG_DEF0_USE0, { 0x66, 0, 0x0F, 0x72, 0, 6, 0, 1, false }, "PslldRI", "!0r,!1d" },
436 { kX86PsllqRI, kRegImm, IS_BINARY_OP | REG_DEF0_USE0, { 0x66, 0, 0x0F, 0x73, 0, 6, 0, 1, false }, "PsllqRI", "!0r,!1d" },
Razvan A Lupusoru614c2b42014-01-28 17:05:21 -0800437
Alexei Zavjalovbd3682e2014-06-12 03:08:01 +0700438 { kX86Fild32M, kMem, IS_LOAD | IS_UNARY_OP | REG_USE0 | USE_FP_STACK, { 0x0, 0, 0xDB, 0x00, 0, 0, 0, 0, false }, "Fild32M", "[!0r,!1d]" },
439 { kX86Fild64M, kMem, IS_LOAD | IS_UNARY_OP | REG_USE0 | USE_FP_STACK, { 0x0, 0, 0xDF, 0x00, 0, 5, 0, 0, false }, "Fild64M", "[!0r,!1d]" },
440 { kX86Fld32M, kMem, IS_LOAD | IS_UNARY_OP | REG_USE0 | USE_FP_STACK, { 0x0, 0, 0xD9, 0x00, 0, 0, 0, 0, false }, "Fld32M", "[!0r,!1d]" },
441 { kX86Fld64M, kMem, IS_LOAD | IS_UNARY_OP | REG_USE0 | USE_FP_STACK, { 0x0, 0, 0xDD, 0x00, 0, 0, 0, 0, false }, "Fld64M", "[!0r,!1d]" },
442 { kX86Fstp32M, kMem, IS_STORE | IS_UNARY_OP | REG_USE0 | USE_FP_STACK, { 0x0, 0, 0xD9, 0x00, 0, 3, 0, 0, false }, "Fstps32M", "[!0r,!1d]" },
443 { kX86Fstp64M, kMem, IS_STORE | IS_UNARY_OP | REG_USE0 | USE_FP_STACK, { 0x0, 0, 0xDD, 0x00, 0, 3, 0, 0, false }, "Fstpd64M", "[!0r,!1d]" },
Serguei Katkove63d9d42014-06-25 00:25:35 +0700444 { kX86Fst32M, kMem, IS_STORE | IS_UNARY_OP | REG_USE0 | USE_FP_STACK, { 0x0, 0, 0xD9, 0x00, 0, 2, 0, 0, false }, "Fsts32M", "[!0r,!1d]" },
445 { kX86Fst64M, kMem, IS_STORE | IS_UNARY_OP | REG_USE0 | USE_FP_STACK, { 0x0, 0, 0xDD, 0x00, 0, 2, 0, 0, false }, "Fstd64M", "[!0r,!1d]" },
Alexei Zavjalovbd3682e2014-06-12 03:08:01 +0700446 { kX86Fprem, kNullary, NO_OPERAND | USE_FP_STACK, { 0xD9, 0, 0xF8, 0, 0, 0, 0, 0, false }, "Fprem64", "" },
447 { kX86Fucompp, kNullary, NO_OPERAND | USE_FP_STACK, { 0xDA, 0, 0xE9, 0, 0, 0, 0, 0, false }, "Fucompp", "" },
Mark Mendell01a50d62014-07-06 12:24:40 -0400448 { kX86Fstsw16R, kNullary, NO_OPERAND | REG_DEFA | USE_FP_STACK, { 0x9B, 0xDF, 0xE0, 0, 0, 0, 0, 0, false }, "Fstsw16R", "ax" },
Brian Carlstrom7940e442013-07-12 13:46:57 -0700449
Mark Mendelld65c51a2014-04-29 16:55:20 -0400450 EXT_0F_ENCODING_MAP(Mova128, 0x66, 0x6F, REG_DEF0),
Ian Rogers0f9b9c52014-06-09 01:32:12 -0700451 { kX86Mova128MR, kMemReg, IS_STORE | IS_TERTIARY_OP | REG_USE02, { 0x66, 0, 0x0F, 0x6F, 0, 0, 0, 0, false }, "Mova128MR", "[!0r+!1d],!2r" },
452 { kX86Mova128AR, kArrayReg, IS_STORE | IS_QUIN_OP | REG_USE014, { 0x66, 0, 0x0F, 0x6F, 0, 0, 0, 0, false }, "Mova128AR", "[!0r+!1r<<!2d+!3d],!4r" },
Mark Mendelld65c51a2014-04-29 16:55:20 -0400453
454
Razvan A Lupusoru2c498d12014-01-29 16:02:57 -0800455 EXT_0F_ENCODING_MAP(Movups, 0x0, 0x10, REG_DEF0),
Ian Rogers0f9b9c52014-06-09 01:32:12 -0700456 { kX86MovupsMR, kMemReg, IS_STORE | IS_TERTIARY_OP | REG_USE02, { 0x0, 0, 0x0F, 0x11, 0, 0, 0, 0, false }, "MovupsMR", "[!0r+!1d],!2r" },
457 { kX86MovupsAR, kArrayReg, IS_STORE | IS_QUIN_OP | REG_USE014, { 0x0, 0, 0x0F, 0x11, 0, 0, 0, 0, false }, "MovupsAR", "[!0r+!1r<<!2d+!3d],!4r" },
Razvan A Lupusoru2c498d12014-01-29 16:02:57 -0800458
459 EXT_0F_ENCODING_MAP(Movaps, 0x0, 0x28, REG_DEF0),
Ian Rogers0f9b9c52014-06-09 01:32:12 -0700460 { kX86MovapsMR, kMemReg, IS_STORE | IS_TERTIARY_OP | REG_USE02, { 0x0, 0, 0x0F, 0x29, 0, 0, 0, 0, false }, "MovapsMR", "[!0r+!1d],!2r" },
461 { kX86MovapsAR, kArrayReg, IS_STORE | IS_QUIN_OP | REG_USE014, { 0x0, 0, 0x0F, 0x29, 0, 0, 0, 0, false }, "MovapsAR", "[!0r+!1r<<!2d+!3d],!4r" },
Razvan A Lupusoru2c498d12014-01-29 16:02:57 -0800462
Ian Rogers0f9b9c52014-06-09 01:32:12 -0700463 { kX86MovlpsRM, kRegMem, IS_LOAD | IS_TERTIARY_OP | REG_DEF0 | REG_USE01, { 0x0, 0, 0x0F, 0x12, 0, 0, 0, 0, false }, "MovlpsRM", "!0r,[!1r+!2d]" },
464 { kX86MovlpsRA, kRegArray, IS_LOAD | IS_QUIN_OP | REG_DEF0 | REG_USE012, { 0x0, 0, 0x0F, 0x12, 0, 0, 0, 0, false }, "MovlpsRA", "!0r,[!1r+!2r<<!3d+!4d]" },
465 { kX86MovlpsMR, kMemReg, IS_STORE | IS_TERTIARY_OP | REG_USE02, { 0x0, 0, 0x0F, 0x13, 0, 0, 0, 0, false }, "MovlpsMR", "[!0r+!1d],!2r" },
466 { kX86MovlpsAR, kArrayReg, IS_STORE | IS_QUIN_OP | REG_USE014, { 0x0, 0, 0x0F, 0x13, 0, 0, 0, 0, false }, "MovlpsAR", "[!0r+!1r<<!2d+!3d],!4r" },
Razvan A Lupusoru2c498d12014-01-29 16:02:57 -0800467
Ian Rogers0f9b9c52014-06-09 01:32:12 -0700468 { kX86MovhpsRM, kRegMem, IS_LOAD | IS_TERTIARY_OP | REG_DEF0 | REG_USE01, { 0x0, 0, 0x0F, 0x16, 0, 0, 0, 0, false }, "MovhpsRM", "!0r,[!1r+!2d]" },
469 { kX86MovhpsRA, kRegArray, IS_LOAD | IS_QUIN_OP | REG_DEF0 | REG_USE012, { 0x0, 0, 0x0F, 0x16, 0, 0, 0, 0, false }, "MovhpsRA", "!0r,[!1r+!2r<<!3d+!4d]" },
470 { kX86MovhpsMR, kMemReg, IS_STORE | IS_TERTIARY_OP | REG_USE02, { 0x0, 0, 0x0F, 0x17, 0, 0, 0, 0, false }, "MovhpsMR", "[!0r+!1d],!2r" },
471 { kX86MovhpsAR, kArrayReg, IS_STORE | IS_QUIN_OP | REG_USE014, { 0x0, 0, 0x0F, 0x17, 0, 0, 0, 0, false }, "MovhpsAR", "[!0r+!1r<<!2d+!3d],!4r" },
Razvan A Lupusoru2c498d12014-01-29 16:02:57 -0800472
Brian Carlstrom7940e442013-07-12 13:46:57 -0700473 EXT_0F_ENCODING_MAP(Movdxr, 0x66, 0x6E, REG_DEF0),
Chao-ying Fue0ccdc02014-06-06 17:32:37 -0700474 EXT_0F_REX_W_ENCODING_MAP(Movqxr, 0x66, 0x6E, REG_DEF0),
Ian Rogers0f9b9c52014-06-09 01:32:12 -0700475 { kX86MovqrxRR, kRegRegStore, IS_BINARY_OP | REG_DEF0 | REG_USE1, { 0x66, REX_W, 0x0F, 0x7E, 0, 0, 0, 0, false }, "MovqrxRR", "!0r,!1r" },
476 { kX86MovqrxMR, kMemReg, IS_STORE | IS_TERTIARY_OP | REG_USE02, { 0x66, REX_W, 0x0F, 0x7E, 0, 0, 0, 0, false }, "MovqrxMR", "[!0r+!1d],!2r" },
477 { kX86MovqrxAR, kArrayReg, IS_STORE | IS_QUIN_OP | REG_USE014, { 0x66, REX_W, 0x0F, 0x7E, 0, 0, 0, 0, false }, "MovqrxAR", "[!0r+!1r<<!2d+!3d],!4r" },
Chao-ying Fue0ccdc02014-06-06 17:32:37 -0700478
Ian Rogers0f9b9c52014-06-09 01:32:12 -0700479 { kX86MovdrxRR, kRegRegStore, IS_BINARY_OP | REG_DEF0 | REG_USE1, { 0x66, 0, 0x0F, 0x7E, 0, 0, 0, 0, false }, "MovdrxRR", "!0r,!1r" },
480 { kX86MovdrxMR, kMemReg, IS_STORE | IS_TERTIARY_OP | REG_USE02, { 0x66, 0, 0x0F, 0x7E, 0, 0, 0, 0, false }, "MovdrxMR", "[!0r+!1d],!2r" },
481 { kX86MovdrxAR, kArrayReg, IS_STORE | IS_QUIN_OP | REG_USE014, { 0x66, 0, 0x0F, 0x7E, 0, 0, 0, 0, false }, "MovdrxAR", "[!0r+!1r<<!2d+!3d],!4r" },
Brian Carlstrom7940e442013-07-12 13:46:57 -0700482
Ian Rogers0f9b9c52014-06-09 01:32:12 -0700483 { kX86MovsxdRR, kRegReg, IS_BINARY_OP | REG_DEF0 | REG_USE1, { REX_W, 0, 0x63, 0, 0, 0, 0, 0, false }, "MovsxdRR", "!0r,!1r" },
484 { kX86MovsxdRM, kRegMem, IS_LOAD | IS_TERTIARY_OP | REG_DEF0 | REG_USE1, { REX_W, 0, 0x63, 0, 0, 0, 0, 0, false }, "MovsxdRM", "!0r,[!1r+!2d]" },
485 { kX86MovsxdRA, kRegArray, IS_LOAD | IS_QUIN_OP | REG_DEF0 | REG_USE12, { REX_W, 0, 0x63, 0, 0, 0, 0, 0, false }, "MovsxdRA", "!0r,[!1r+!2r<<!3d+!4d]" },
Chao-ying Fue0ccdc02014-06-06 17:32:37 -0700486
Mark Mendell2bc47702014-07-31 14:36:54 -0400487 { kX86Set8R, kRegCond, IS_BINARY_OP | REG_DEF0 | REG_USE0 | USES_CCODES, { 0, 0, 0x0F, 0x90, 0, 0, 0, 0, true }, "Set8R", "!1c !0r" },
Ian Rogers0f9b9c52014-06-09 01:32:12 -0700488 { kX86Set8M, kMemCond, IS_STORE | IS_TERTIARY_OP | REG_USE0 | USES_CCODES, { 0, 0, 0x0F, 0x90, 0, 0, 0, 0, false }, "Set8M", "!2c [!0r+!1d]" },
489 { kX86Set8A, kArrayCond, IS_STORE | IS_QUIN_OP | REG_USE01 | USES_CCODES, { 0, 0, 0x0F, 0x90, 0, 0, 0, 0, false }, "Set8A", "!4c [!0r+!1r<<!2d+!3d]" },
Brian Carlstrom7940e442013-07-12 13:46:57 -0700490
491 // TODO: load/store?
492 // Encode the modrm opcode as an extra opcode byte to avoid computation during assembly.
Jean Christophe Beylerb5bce7c2014-07-25 12:32:18 -0700493 { kX86Lfence, kReg, NO_OPERAND, { 0, 0, 0x0F, 0xAE, 0, 5, 0, 0, false }, "Lfence", "" },
Ian Rogers0f9b9c52014-06-09 01:32:12 -0700494 { kX86Mfence, kReg, NO_OPERAND, { 0, 0, 0x0F, 0xAE, 0, 6, 0, 0, false }, "Mfence", "" },
Jean Christophe Beylerb5bce7c2014-07-25 12:32:18 -0700495 { kX86Sfence, kReg, NO_OPERAND, { 0, 0, 0x0F, 0xAE, 0, 7, 0, 0, false }, "Sfence", "" },
Brian Carlstrom7940e442013-07-12 13:46:57 -0700496
Mark Mendell2637f2e2014-04-30 10:10:47 -0400497 EXT_0F_ENCODING_MAP(Imul16, 0x66, 0xAF, REG_USE0 | REG_DEF0 | SETS_CCODES),
498 EXT_0F_ENCODING_MAP(Imul32, 0x00, 0xAF, REG_USE0 | REG_DEF0 | SETS_CCODES),
Chao-ying Fue0ccdc02014-06-06 17:32:37 -0700499 EXT_0F_ENCODING_MAP(Imul64, REX_W, 0xAF, REG_USE0 | REG_DEF0 | SETS_CCODES),
Brian Carlstrom7940e442013-07-12 13:46:57 -0700500
Ian Rogers0f9b9c52014-06-09 01:32:12 -0700501 { kX86CmpxchgRR, kRegRegStore, IS_BINARY_OP | REG_DEF0 | REG_USE01 | REG_DEFA_USEA | SETS_CCODES, { 0, 0, 0x0F, 0xB1, 0, 0, 0, 0, false }, "Cmpxchg", "!0r,!1r" },
502 { kX86CmpxchgMR, kMemReg, IS_STORE | IS_TERTIARY_OP | REG_USE02 | REG_DEFA_USEA | SETS_CCODES, { 0, 0, 0x0F, 0xB1, 0, 0, 0, 0, false }, "Cmpxchg", "[!0r+!1d],!2r" },
503 { kX86CmpxchgAR, kArrayReg, IS_STORE | IS_QUIN_OP | REG_USE014 | REG_DEFA_USEA | SETS_CCODES, { 0, 0, 0x0F, 0xB1, 0, 0, 0, 0, false }, "Cmpxchg", "[!0r+!1r<<!2d+!3d],!4r" },
504 { kX86LockCmpxchgMR, kMemReg, IS_STORE | IS_TERTIARY_OP | REG_USE02 | REG_DEFA_USEA | SETS_CCODES, { 0xF0, 0, 0x0F, 0xB1, 0, 0, 0, 0, false }, "Lock Cmpxchg", "[!0r+!1d],!2r" },
505 { kX86LockCmpxchgAR, kArrayReg, IS_STORE | IS_QUIN_OP | REG_USE014 | REG_DEFA_USEA | SETS_CCODES, { 0xF0, 0, 0x0F, 0xB1, 0, 0, 0, 0, false }, "Lock Cmpxchg", "[!0r+!1r<<!2d+!3d],!4r" },
nikolay serdjukc5e4ce12014-06-10 17:07:10 +0700506 { kX86LockCmpxchg64AR, kArrayReg, IS_STORE | IS_QUIN_OP | REG_USE014 | REG_DEFA_USEA | SETS_CCODES, { 0xF0, REX_W, 0x0F, 0xB1, 0, 0, 0, 0, false }, "Lock Cmpxchg", "[!0r+!1r<<!2d+!3d],!4r" },
Ian Rogers0f9b9c52014-06-09 01:32:12 -0700507 { kX86LockCmpxchg64M, kMem, IS_STORE | IS_BINARY_OP | REG_USE0 | REG_DEFAD_USEAD | REG_USEC | REG_USEB | SETS_CCODES, { 0xF0, 0, 0x0F, 0xC7, 0, 1, 0, 0, false }, "Lock Cmpxchg8b", "[!0r+!1d]" },
508 { kX86LockCmpxchg64A, kArray, IS_STORE | IS_QUAD_OP | REG_USE01 | REG_DEFAD_USEAD | REG_USEC | REG_USEB | SETS_CCODES, { 0xF0, 0, 0x0F, 0xC7, 0, 1, 0, 0, false }, "Lock Cmpxchg8b", "[!0r+!1r<<!2d+!3d]" },
509 { kX86XchgMR, kMemReg, IS_STORE | IS_LOAD | IS_TERTIARY_OP | REG_DEF2 | REG_USE02, { 0, 0, 0x87, 0, 0, 0, 0, 0, false }, "Xchg", "[!0r+!1d],!2r" },
Brian Carlstrom7940e442013-07-12 13:46:57 -0700510
Chao-ying Fu021b60f2014-07-09 11:32:31 -0700511 EXT_0F_R8_FORM_ENCODING_MAP(Movzx8, 0x00, 0xB6, REG_DEF0),
Brian Carlstrom7940e442013-07-12 13:46:57 -0700512 EXT_0F_ENCODING_MAP(Movzx16, 0x00, 0xB7, REG_DEF0),
Chao-ying Fu021b60f2014-07-09 11:32:31 -0700513 EXT_0F_R8_FORM_ENCODING_MAP(Movsx8, 0x00, 0xBE, REG_DEF0),
Brian Carlstrom7940e442013-07-12 13:46:57 -0700514 EXT_0F_ENCODING_MAP(Movsx16, 0x00, 0xBF, REG_DEF0),
Serguei Katkov94f3eb02014-06-24 13:23:17 +0700515 EXT_0F_ENCODING_MAP(Movzx8q, REX_W, 0xB6, REG_DEF0),
516 EXT_0F_ENCODING_MAP(Movzx16q, REX_W, 0xB7, REG_DEF0),
517 EXT_0F_ENCODING_MAP(Movsx8q, REX, 0xBE, REG_DEF0),
518 EXT_0F_ENCODING_MAP(Movsx16q, REX_W, 0xBF, REG_DEF0),
Brian Carlstrom7940e442013-07-12 13:46:57 -0700519#undef EXT_0F_ENCODING_MAP
520
Ian Rogers0f9b9c52014-06-09 01:32:12 -0700521 { kX86Jcc8, kJcc, IS_BINARY_OP | IS_BRANCH | NEEDS_FIXUP | USES_CCODES, { 0, 0, 0x70, 0, 0, 0, 0, 0, false }, "Jcc8", "!1c !0t" },
522 { kX86Jcc32, kJcc, IS_BINARY_OP | IS_BRANCH | NEEDS_FIXUP | USES_CCODES, { 0, 0, 0x0F, 0x80, 0, 0, 0, 0, false }, "Jcc32", "!1c !0t" },
523 { kX86Jmp8, kJmp, IS_UNARY_OP | IS_BRANCH | NEEDS_FIXUP, { 0, 0, 0xEB, 0, 0, 0, 0, 0, false }, "Jmp8", "!0t" },
524 { kX86Jmp32, kJmp, IS_UNARY_OP | IS_BRANCH | NEEDS_FIXUP, { 0, 0, 0xE9, 0, 0, 0, 0, 0, false }, "Jmp32", "!0t" },
525 { kX86JmpR, kJmp, IS_UNARY_OP | IS_BRANCH | REG_USE0, { 0, 0, 0xFF, 0, 0, 4, 0, 0, false }, "JmpR", "!0r" },
526 { kX86Jecxz8, kJmp, NO_OPERAND | IS_BRANCH | NEEDS_FIXUP | REG_USEC, { 0, 0, 0xE3, 0, 0, 0, 0, 0, false }, "Jecxz", "!0t" },
527 { kX86JmpT, kJmp, IS_UNARY_OP | IS_BRANCH | IS_LOAD, { THREAD_PREFIX, 0, 0xFF, 0, 0, 4, 0, 0, false }, "JmpT", "fs:[!0d]" },
528 { kX86CallR, kCall, IS_UNARY_OP | IS_BRANCH | REG_USE0, { 0, 0, 0xE8, 0, 0, 0, 0, 0, false }, "CallR", "!0r" },
529 { kX86CallM, kCall, IS_BINARY_OP | IS_BRANCH | IS_LOAD | REG_USE0, { 0, 0, 0xFF, 0, 0, 2, 0, 0, false }, "CallM", "[!0r+!1d]" },
530 { kX86CallA, kCall, IS_QUAD_OP | IS_BRANCH | IS_LOAD | REG_USE01, { 0, 0, 0xFF, 0, 0, 2, 0, 0, false }, "CallA", "[!0r+!1r<<!2d+!3d]" },
531 { kX86CallT, kCall, IS_UNARY_OP | IS_BRANCH | IS_LOAD, { THREAD_PREFIX, 0, 0xFF, 0, 0, 2, 0, 0, false }, "CallT", "fs:[!0d]" },
532 { kX86CallI, kCall, IS_UNARY_OP | IS_BRANCH, { 0, 0, 0xE8, 0, 0, 0, 0, 4, false }, "CallI", "!0d" },
533 { kX86Ret, kNullary, NO_OPERAND | IS_BRANCH, { 0, 0, 0xC3, 0, 0, 0, 0, 0, false }, "Ret", "" },
Brian Carlstrom7940e442013-07-12 13:46:57 -0700534
Ian Rogers0f9b9c52014-06-09 01:32:12 -0700535 { kX86StartOfMethod, kMacro, IS_UNARY_OP | SETS_CCODES, { 0, 0, 0, 0, 0, 0, 0, 0, false }, "StartOfMethod", "!0r" },
536 { kX86PcRelLoadRA, kPcRel, IS_LOAD | IS_QUIN_OP | REG_DEF0_USE12, { 0, 0, 0x8B, 0, 0, 0, 0, 0, false }, "PcRelLoadRA", "!0r,[!1r+!2r<<!3d+!4p]" },
Haitao Fenge70f1792014-08-09 08:31:02 +0800537 { kX86PcRelAdr, kPcRel, IS_LOAD | IS_BINARY_OP | REG_DEF0, { 0, 0, 0xB8, 0, 0, 0, 0, 4, false }, "PcRelAdr", "!0r,!1p" },
Ian Rogers0f9b9c52014-06-09 01:32:12 -0700538 { kX86RepneScasw, kNullary, NO_OPERAND | REG_USEA | REG_USEC | SETS_CCODES, { 0x66, 0xF2, 0xAF, 0, 0, 0, 0, 0, false }, "RepNE ScasW", "" },
Brian Carlstrom7940e442013-07-12 13:46:57 -0700539};
540
Ian Rogers0f9b9c52014-06-09 01:32:12 -0700541static bool NeedsRex(int32_t raw_reg) {
542 return RegStorage::RegNum(raw_reg) > 7;
543}
544
545static uint8_t LowRegisterBits(int32_t raw_reg) {
546 uint8_t low_reg = RegStorage::RegNum(raw_reg) & kRegNumMask32; // 3 bits
547 DCHECK_LT(low_reg, 8);
548 return low_reg;
549}
550
Ian Rogers5aa6e042014-06-13 16:38:24 -0700551static bool HasModrm(const X86EncodingMap* entry) {
552 switch (entry->kind) {
553 case kNullary: return false;
554 case kRegOpcode: return false;
555 default: return true;
556 }
557}
558
559static bool HasSib(const X86EncodingMap* entry) {
560 switch (entry->kind) {
561 case kArray: return true;
562 case kArrayReg: return true;
563 case kRegArray: return true;
564 case kArrayImm: return true;
565 case kRegArrayImm: return true;
566 case kShiftArrayImm: return true;
567 case kShiftArrayCl: return true;
568 case kArrayCond: return true;
569 case kCall:
570 switch (entry->opcode) {
571 case kX86CallA: return true;
572 default: return false;
573 }
574 case kPcRel: return true;
575 switch (entry->opcode) {
576 case kX86PcRelLoadRA: return true;
577 default: return false;
578 }
579 default: return false;
580 }
581}
582
583static bool ModrmIsRegReg(const X86EncodingMap* entry) {
584 switch (entry->kind) {
585 // There is no modrm for this kind of instruction, therefore the reg doesn't form part of the
586 // modrm:
587 case kNullary: return true;
588 case kRegOpcode: return true;
589 case kMovRegImm: return true;
590 // Regular modrm value of 3 cases, when there is one register the other register holds an
591 // opcode so the base register is special.
592 case kReg: return true;
593 case kRegReg: return true;
594 case kRegRegStore: return true;
595 case kRegImm: return true;
596 case kRegRegImm: return true;
597 case kRegRegImmStore: return true;
598 case kShiftRegImm: return true;
599 case kShiftRegCl: return true;
600 case kRegCond: return true;
601 case kRegRegCond: return true;
Yixin Shouf40f8902014-08-14 14:10:32 -0400602 case kShiftRegRegCl: return true;
Ian Rogers5aa6e042014-06-13 16:38:24 -0700603 case kJmp:
604 switch (entry->opcode) {
605 case kX86JmpR: return true;
606 default: return false;
607 }
608 case kCall:
609 switch (entry->opcode) {
610 case kX86CallR: return true;
611 default: return false;
612 }
613 default: return false;
614 }
615}
616
Chao-ying Fu021b60f2014-07-09 11:32:31 -0700617static bool IsByteSecondOperand(const X86EncodingMap* entry) {
618 return StartsWith(entry->name, "Movzx8") || StartsWith(entry->name, "Movsx8");
619}
620
Ian Rogers0f9b9c52014-06-09 01:32:12 -0700621size_t X86Mir2Lir::ComputeSize(const X86EncodingMap* entry, int32_t raw_reg, int32_t raw_index,
Ian Rogers5aa6e042014-06-13 16:38:24 -0700622 int32_t raw_base, int32_t displacement) {
623 bool has_modrm = HasModrm(entry);
624 bool has_sib = HasSib(entry);
625 bool r8_form = entry->skeleton.r8_form;
626 bool modrm_is_reg_reg = ModrmIsRegReg(entry);
627 if (has_sib) {
628 DCHECK(!modrm_is_reg_reg);
629 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700630 size_t size = 0;
631 if (entry->skeleton.prefix1 > 0) {
632 ++size;
633 if (entry->skeleton.prefix2 > 0) {
634 ++size;
635 }
636 }
Elena Sayapinadd644502014-07-01 18:39:52 +0700637 if (cu_->target64 || kIsDebugBuild) {
Ian Rogers5aa6e042014-06-13 16:38:24 -0700638 bool registers_need_rex_prefix = NeedsRex(raw_reg) || NeedsRex(raw_index) || NeedsRex(raw_base);
639 if (r8_form) {
640 // Do we need an empty REX prefix to normalize byte registers?
Chao-ying Fu021b60f2014-07-09 11:32:31 -0700641 registers_need_rex_prefix = registers_need_rex_prefix ||
642 (RegStorage::RegNum(raw_reg) >= 4 && !IsByteSecondOperand(entry));
Ian Rogers5aa6e042014-06-13 16:38:24 -0700643 registers_need_rex_prefix = registers_need_rex_prefix ||
644 (modrm_is_reg_reg && (RegStorage::RegNum(raw_base) >= 4));
645 }
646 if (registers_need_rex_prefix) {
Elena Sayapinadd644502014-07-01 18:39:52 +0700647 DCHECK(cu_->target64) << "Attempt to use a 64-bit only addressable register "
Ian Rogers5aa6e042014-06-13 16:38:24 -0700648 << RegStorage::RegNum(raw_reg) << " with instruction " << entry->name;
Serguei Katkov94f3eb02014-06-24 13:23:17 +0700649 if (entry->skeleton.prefix1 != REX_W && entry->skeleton.prefix2 != REX_W
650 && entry->skeleton.prefix1 != REX && entry->skeleton.prefix2 != REX) {
Ian Rogers5aa6e042014-06-13 16:38:24 -0700651 ++size; // rex
652 }
Ian Rogers0f9b9c52014-06-09 01:32:12 -0700653 }
Dmitry Petrochenkoa20468c2014-04-30 13:40:19 +0700654 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700655 ++size; // opcode
656 if (entry->skeleton.opcode == 0x0F) {
657 ++size;
658 if (entry->skeleton.extra_opcode1 == 0x38 || entry->skeleton.extra_opcode1 == 0x3A) {
659 ++size;
660 }
661 }
Ian Rogers5aa6e042014-06-13 16:38:24 -0700662 if (has_modrm) {
663 ++size; // modrm
Brian Carlstrom7940e442013-07-12 13:46:57 -0700664 }
Ian Rogers5aa6e042014-06-13 16:38:24 -0700665 if (!modrm_is_reg_reg) {
666 if (has_sib || LowRegisterBits(raw_base) == rs_rX86_SP.GetRegNum()
Elena Sayapinadd644502014-07-01 18:39:52 +0700667 || (cu_->target64 && entry->skeleton.prefix1 == THREAD_PREFIX)) {
Ian Rogers5aa6e042014-06-13 16:38:24 -0700668 // SP requires a SIB byte.
669 // GS access also needs a SIB byte for absolute adressing in 64-bit mode.
670 ++size;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700671 }
Ian Rogers5aa6e042014-06-13 16:38:24 -0700672 if (displacement != 0 || LowRegisterBits(raw_base) == rs_rBP.GetRegNum()) {
673 // BP requires an explicit displacement, even when it's 0.
674 if (entry->opcode != kX86Lea32RA && entry->opcode != kX86Lea64RA) {
675 DCHECK_NE(entry->flags & (IS_LOAD | IS_STORE), UINT64_C(0)) << entry->name;
676 }
677 size += IS_SIMM8(displacement) ? 1 : 4;
678 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700679 }
680 size += entry->skeleton.immediate_bytes;
681 return size;
682}
683
Ian Rogers5aa6e042014-06-13 16:38:24 -0700684size_t X86Mir2Lir::GetInsnSize(LIR* lir) {
buzbee409fe942013-10-11 10:49:56 -0700685 DCHECK(!IsPseudoLirOp(lir->opcode));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700686 const X86EncodingMap* entry = &X86Mir2Lir::EncodingMap[lir->opcode];
Ian Rogers0f9b9c52014-06-09 01:32:12 -0700687 DCHECK_EQ(entry->opcode, lir->opcode) << entry->name;
Ian Rogers5aa6e042014-06-13 16:38:24 -0700688
Brian Carlstrom7940e442013-07-12 13:46:57 -0700689 switch (entry->kind) {
690 case kData:
Ian Rogers0f9b9c52014-06-09 01:32:12 -0700691 return 4; // 4 bytes of data.
Brian Carlstrom7940e442013-07-12 13:46:57 -0700692 case kNop:
Ian Rogers0f9b9c52014-06-09 01:32:12 -0700693 return lir->operands[0]; // Length of nop is sole operand.
Brian Carlstrom7940e442013-07-12 13:46:57 -0700694 case kNullary:
Ian Rogers5aa6e042014-06-13 16:38:24 -0700695 return ComputeSize(entry, NO_REG, NO_REG, NO_REG, 0);
Vladimir Markoa8b4caf2013-10-24 15:08:57 +0100696 case kRegOpcode: // lir operands - 0: reg
Ian Rogers5aa6e042014-06-13 16:38:24 -0700697 return ComputeSize(entry, NO_REG, NO_REG, lir->operands[0], 0);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700698 case kReg: // lir operands - 0: reg
Ian Rogers5aa6e042014-06-13 16:38:24 -0700699 return ComputeSize(entry, NO_REG, NO_REG, lir->operands[0], 0);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700700 case kMem: // lir operands - 0: base, 1: disp
Ian Rogers5aa6e042014-06-13 16:38:24 -0700701 return ComputeSize(entry, NO_REG, NO_REG, lir->operands[0], lir->operands[1]);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700702 case kArray: // lir operands - 0: base, 1: index, 2: scale, 3: disp
Ian Rogers5aa6e042014-06-13 16:38:24 -0700703 return ComputeSize(entry, NO_REG, lir->operands[1], lir->operands[0], lir->operands[3]);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700704 case kMemReg: // lir operands - 0: base, 1: disp, 2: reg
Ian Rogers5aa6e042014-06-13 16:38:24 -0700705 return ComputeSize(entry, lir->operands[2], NO_REG, lir->operands[0], lir->operands[1]);
Mark Mendell2637f2e2014-04-30 10:10:47 -0400706 case kMemRegImm: // lir operands - 0: base, 1: disp, 2: reg 3: immediate
Ian Rogers5aa6e042014-06-13 16:38:24 -0700707 return ComputeSize(entry, lir->operands[2], NO_REG, lir->operands[0], lir->operands[1]);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700708 case kArrayReg: // lir operands - 0: base, 1: index, 2: scale, 3: disp, 4: reg
Ian Rogers0f9b9c52014-06-09 01:32:12 -0700709 return ComputeSize(entry, lir->operands[4], lir->operands[1], lir->operands[0],
Ian Rogers5aa6e042014-06-13 16:38:24 -0700710 lir->operands[3]);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700711 case kThreadReg: // lir operands - 0: disp, 1: reg
Ian Rogers0f9b9c52014-06-09 01:32:12 -0700712 // Thread displacement size is always 32bit.
Ian Rogers5aa6e042014-06-13 16:38:24 -0700713 return ComputeSize(entry, lir->operands[1], NO_REG, NO_REG, 0x12345678);
Dmitry Petrochenkoa20468c2014-04-30 13:40:19 +0700714 case kRegReg: // lir operands - 0: reg1, 1: reg2
Ian Rogers5aa6e042014-06-13 16:38:24 -0700715 return ComputeSize(entry, lir->operands[0], NO_REG, lir->operands[1], 0);
Dmitry Petrochenkoa20468c2014-04-30 13:40:19 +0700716 case kRegRegStore: // lir operands - 0: reg2, 1: reg1
Ian Rogers5aa6e042014-06-13 16:38:24 -0700717 return ComputeSize(entry, lir->operands[1], NO_REG, lir->operands[0], 0);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700718 case kRegMem: // lir operands - 0: reg, 1: base, 2: disp
Ian Rogers5aa6e042014-06-13 16:38:24 -0700719 return ComputeSize(entry, lir->operands[0], NO_REG, lir->operands[1], lir->operands[2]);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700720 case kRegArray: // lir operands - 0: reg, 1: base, 2: index, 3: scale, 4: disp
Ian Rogers0f9b9c52014-06-09 01:32:12 -0700721 return ComputeSize(entry, lir->operands[0], lir->operands[2], lir->operands[1],
Ian Rogers5aa6e042014-06-13 16:38:24 -0700722 lir->operands[4]);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700723 case kRegThread: // lir operands - 0: reg, 1: disp
Ian Rogers0f9b9c52014-06-09 01:32:12 -0700724 // Thread displacement size is always 32bit.
Ian Rogers5aa6e042014-06-13 16:38:24 -0700725 return ComputeSize(entry, lir->operands[0], NO_REG, NO_REG, 0x12345678);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700726 case kRegImm: { // lir operands - 0: reg, 1: immediate
Ian Rogers5aa6e042014-06-13 16:38:24 -0700727 size_t size = ComputeSize(entry, lir->operands[0], NO_REG, NO_REG, 0);
Ian Rogers0f9b9c52014-06-09 01:32:12 -0700728 // AX opcodes don't require the modrm byte.
Brian Carlstrom7940e442013-07-12 13:46:57 -0700729 if (entry->skeleton.ax_opcode == 0) {
730 return size;
731 } else {
Ian Rogers0f9b9c52014-06-09 01:32:12 -0700732 return size - (RegStorage::RegNum(lir->operands[0]) == rs_rAX.GetRegNum() ? 1 : 0);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700733 }
734 }
735 case kMemImm: // lir operands - 0: base, 1: disp, 2: immediate
Ian Rogers5aa6e042014-06-13 16:38:24 -0700736 return ComputeSize(entry, NO_REG, NO_REG, lir->operands[0], lir->operands[1]);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700737 case kArrayImm: // lir operands - 0: base, 1: index, 2: scale, 3: disp 4: immediate
Ian Rogers5aa6e042014-06-13 16:38:24 -0700738 return ComputeSize(entry, NO_REG, lir->operands[1], lir->operands[0], lir->operands[3]);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700739 case kThreadImm: // lir operands - 0: disp, 1: imm
Ian Rogers0f9b9c52014-06-09 01:32:12 -0700740 // Thread displacement size is always 32bit.
Ian Rogers5aa6e042014-06-13 16:38:24 -0700741 return ComputeSize(entry, NO_REG, NO_REG, NO_REG, 0x12345678);
Ian Rogers0f9b9c52014-06-09 01:32:12 -0700742 case kRegRegImm: // lir operands - 0: reg1, 1: reg2, 2: imm
743 // Note: RegRegImm form passes reg2 as index but encodes it using base.
Ian Rogers5aa6e042014-06-13 16:38:24 -0700744 return ComputeSize(entry, lir->operands[0], lir->operands[1], NO_REG, 0);
Ian Rogers0f9b9c52014-06-09 01:32:12 -0700745 case kRegRegImmStore: // lir operands - 0: reg2, 1: reg1, 2: imm
746 // Note: RegRegImmStore form passes reg1 as index but encodes it using base.
Ian Rogers5aa6e042014-06-13 16:38:24 -0700747 return ComputeSize(entry, lir->operands[1], lir->operands[0], NO_REG, 0);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700748 case kRegMemImm: // lir operands - 0: reg, 1: base, 2: disp, 3: imm
Ian Rogers5aa6e042014-06-13 16:38:24 -0700749 return ComputeSize(entry, lir->operands[0], NO_REG, lir->operands[1], lir->operands[2]);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700750 case kRegArrayImm: // lir operands - 0: reg, 1: base, 2: index, 3: scale, 4: disp, 5: imm
Ian Rogers0f9b9c52014-06-09 01:32:12 -0700751 return ComputeSize(entry, lir->operands[0], lir->operands[2], lir->operands[1],
Ian Rogers5aa6e042014-06-13 16:38:24 -0700752 lir->operands[4]);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700753 case kMovRegImm: // lir operands - 0: reg, 1: immediate
Yixin Shou5192cbb2014-07-01 13:48:17 -0400754 case kMovRegQuadImm:
Ian Rogers0f9b9c52014-06-09 01:32:12 -0700755 return ((entry->skeleton.prefix1 != 0 || NeedsRex(lir->operands[0])) ? 1 : 0) + 1 +
756 entry->skeleton.immediate_bytes;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700757 case kShiftRegImm: // lir operands - 0: reg, 1: immediate
758 // Shift by immediate one has a shorter opcode.
Ian Rogers5aa6e042014-06-13 16:38:24 -0700759 return ComputeSize(entry, lir->operands[0], NO_REG, NO_REG, 0) -
Ian Rogers0f9b9c52014-06-09 01:32:12 -0700760 (lir->operands[1] == 1 ? 1 : 0);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700761 case kShiftMemImm: // lir operands - 0: base, 1: disp, 2: immediate
762 // Shift by immediate one has a shorter opcode.
Ian Rogers5aa6e042014-06-13 16:38:24 -0700763 return ComputeSize(entry, NO_REG, NO_REG, lir->operands[0], lir->operands[1]) -
Ian Rogers0f9b9c52014-06-09 01:32:12 -0700764 (lir->operands[2] == 1 ? 1 : 0);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700765 case kShiftArrayImm: // lir operands - 0: base, 1: index, 2: scale, 3: disp 4: immediate
766 // Shift by immediate one has a shorter opcode.
Ian Rogers5aa6e042014-06-13 16:38:24 -0700767 return ComputeSize(entry, NO_REG, lir->operands[1], lir->operands[0], lir->operands[3]) -
Ian Rogers0f9b9c52014-06-09 01:32:12 -0700768 (lir->operands[4] == 1 ? 1 : 0);
Dmitry Petrochenkoa20468c2014-04-30 13:40:19 +0700769 case kShiftRegCl: // lir operands - 0: reg, 1: cl
Ian Rogers0f9b9c52014-06-09 01:32:12 -0700770 DCHECK_EQ(rs_rCX.GetRegNum(), RegStorage::RegNum(lir->operands[1]));
771 // Note: ShiftRegCl form passes reg as reg but encodes it using base.
Ian Rogers5aa6e042014-06-13 16:38:24 -0700772 return ComputeSize(entry, lir->operands[0], NO_REG, NO_REG, 0);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700773 case kShiftMemCl: // lir operands - 0: base, 1: disp, 2: cl
Ian Rogers0f9b9c52014-06-09 01:32:12 -0700774 DCHECK_EQ(rs_rCX.GetRegNum(), RegStorage::RegNum(lir->operands[2]));
Ian Rogers5aa6e042014-06-13 16:38:24 -0700775 return ComputeSize(entry, NO_REG, NO_REG, lir->operands[0], lir->operands[1]);
Ian Rogers0f9b9c52014-06-09 01:32:12 -0700776 case kShiftArrayCl: // lir operands - 0: base, 1: index, 2: scale, 3: disp, 4: cl
Ian Rogers0f9b9c52014-06-09 01:32:12 -0700777 DCHECK_EQ(rs_rCX.GetRegNum(), RegStorage::RegNum(lir->operands[4]));
778 return ComputeSize(entry, lir->operands[4], lir->operands[1], lir->operands[0],
Ian Rogers5aa6e042014-06-13 16:38:24 -0700779 lir->operands[3]);
Yixin Shouf40f8902014-08-14 14:10:32 -0400780 case kShiftRegRegCl: // lir operands - 0: reg1, 1: reg2, 2: cl
781 DCHECK_EQ(rs_rCX.GetRegNum(), RegStorage::RegNum(lir->operands[2]));
782 return ComputeSize(entry, lir->operands[0], NO_REG, lir->operands[1], 0);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700783 case kRegCond: // lir operands - 0: reg, 1: cond
Ian Rogers5aa6e042014-06-13 16:38:24 -0700784 return ComputeSize(entry, NO_REG, NO_REG, lir->operands[0], 0);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700785 case kMemCond: // lir operands - 0: base, 1: disp, 2: cond
Ian Rogers5aa6e042014-06-13 16:38:24 -0700786 return ComputeSize(entry, NO_REG, NO_REG, lir->operands[0], lir->operands[1]);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700787 case kArrayCond: // lir operands - 0: base, 1: index, 2: scale, 3: disp, 4: cond
Ian Rogers0f9b9c52014-06-09 01:32:12 -0700788 DCHECK_EQ(false, entry->skeleton.r8_form);
Ian Rogers5aa6e042014-06-13 16:38:24 -0700789 return ComputeSize(entry, NO_REG, lir->operands[1], lir->operands[0], lir->operands[3]);
Ian Rogers0f9b9c52014-06-09 01:32:12 -0700790 case kRegRegCond: // lir operands - 0: reg1, 1: reg2, 2: cond
Ian Rogers0f9b9c52014-06-09 01:32:12 -0700791 DCHECK_EQ(false, entry->skeleton.r8_form);
Ian Rogers5aa6e042014-06-13 16:38:24 -0700792 return ComputeSize(entry, lir->operands[0], NO_REG, lir->operands[1], 0);
Ian Rogers0f9b9c52014-06-09 01:32:12 -0700793 case kRegMemCond: // lir operands - 0: reg, 1: base, 2: disp, 3:cond
794 DCHECK_EQ(false, entry->skeleton.r8_form);
Ian Rogers5aa6e042014-06-13 16:38:24 -0700795 return ComputeSize(entry, lir->operands[0], NO_REG, lir->operands[1], lir->operands[2]);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700796 case kJcc:
797 if (lir->opcode == kX86Jcc8) {
798 return 2; // opcode + rel8
799 } else {
800 DCHECK(lir->opcode == kX86Jcc32);
801 return 6; // 2 byte opcode + rel32
802 }
803 case kJmp:
Mark Mendell4028a6c2014-02-19 20:06:20 -0800804 if (lir->opcode == kX86Jmp8 || lir->opcode == kX86Jecxz8) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700805 return 2; // opcode + rel8
806 } else if (lir->opcode == kX86Jmp32) {
807 return 5; // opcode + rel32
Brian Carlstrom60d7a652014-03-13 18:10:08 -0700808 } else if (lir->opcode == kX86JmpT) {
Ian Rogers0f9b9c52014-06-09 01:32:12 -0700809 // Thread displacement size is always 32bit.
Ian Rogers5aa6e042014-06-13 16:38:24 -0700810 return ComputeSize(entry, NO_REG, NO_REG, NO_REG, 0x12345678);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700811 } else {
812 DCHECK(lir->opcode == kX86JmpR);
Dmitry Petrochenkoa20468c2014-04-30 13:40:19 +0700813 if (NeedsRex(lir->operands[0])) {
814 return 3; // REX.B + opcode + modrm
815 } else {
816 return 2; // opcode + modrm
817 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700818 }
819 case kCall:
820 switch (lir->opcode) {
Mark Mendell55d0eac2014-02-06 11:02:52 -0800821 case kX86CallI: return 5; // opcode 0:disp
Brian Carlstrom7940e442013-07-12 13:46:57 -0700822 case kX86CallR: return 2; // opcode modrm
823 case kX86CallM: // lir operands - 0: base, 1: disp
Ian Rogers5aa6e042014-06-13 16:38:24 -0700824 return ComputeSize(entry, NO_REG, NO_REG, lir->operands[0], lir->operands[1]);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700825 case kX86CallA: // lir operands - 0: base, 1: index, 2: scale, 3: disp
Ian Rogers5aa6e042014-06-13 16:38:24 -0700826 return ComputeSize(entry, NO_REG, lir->operands[1], lir->operands[0], lir->operands[3]);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700827 case kX86CallT: // lir operands - 0: disp
Ian Rogers0f9b9c52014-06-09 01:32:12 -0700828 // Thread displacement size is always 32bit.
Ian Rogers5aa6e042014-06-13 16:38:24 -0700829 return ComputeSize(entry, NO_REG, NO_REG, NO_REG, 0x12345678);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700830 default:
831 break;
832 }
833 break;
834 case kPcRel:
835 if (entry->opcode == kX86PcRelLoadRA) {
836 // lir operands - 0: reg, 1: base, 2: index, 3: scale, 4: table
Ian Rogers0f9b9c52014-06-09 01:32:12 -0700837 // Force the displacement size to 32bit, it will hold a computed offset later.
838 return ComputeSize(entry, lir->operands[0], lir->operands[2], lir->operands[1],
Ian Rogers5aa6e042014-06-13 16:38:24 -0700839 0x12345678);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700840 } else {
Ian Rogers0f9b9c52014-06-09 01:32:12 -0700841 DCHECK_EQ(entry->opcode, kX86PcRelAdr);
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700842 return 5; // opcode with reg + 4 byte immediate
Brian Carlstrom7940e442013-07-12 13:46:57 -0700843 }
Dmitry Petrochenkoa20468c2014-04-30 13:40:19 +0700844 case kMacro: // lir operands - 0: reg
Brian Carlstrom7940e442013-07-12 13:46:57 -0700845 DCHECK_EQ(lir->opcode, static_cast<int>(kX86StartOfMethod));
846 return 5 /* call opcode + 4 byte displacement */ + 1 /* pop reg */ +
Elena Sayapinadd644502014-07-01 18:39:52 +0700847 ComputeSize(&X86Mir2Lir::EncodingMap[cu_->target64 ? kX86Sub64RI : kX86Sub32RI],
Ian Rogers5aa6e042014-06-13 16:38:24 -0700848 lir->operands[0], NO_REG, NO_REG, 0) -
Ian Rogers0f9b9c52014-06-09 01:32:12 -0700849 // Shorter ax encoding.
850 (RegStorage::RegNum(lir->operands[0]) == rs_rAX.GetRegNum() ? 1 : 0);
851 case kUnimplemented:
Brian Carlstrom7940e442013-07-12 13:46:57 -0700852 break;
853 }
854 UNIMPLEMENTED(FATAL) << "Unimplemented size encoding for: " << entry->name;
855 return 0;
856}
857
Ian Rogers0f9b9c52014-06-09 01:32:12 -0700858static uint8_t ModrmForDisp(int base, int disp) {
859 // BP requires an explicit disp, so do not omit it in the 0 case
860 if (disp == 0 && RegStorage::RegNum(base) != rs_rBP.GetRegNum()) {
861 return 0;
862 } else if (IS_SIMM8(disp)) {
863 return 1;
864 } else {
865 return 2;
866 }
867}
868
869void X86Mir2Lir::CheckValidByteRegister(const X86EncodingMap* entry, int32_t raw_reg) {
870 if (kIsDebugBuild) {
871 // Sanity check r8_form is correctly specified.
872 if (entry->skeleton.r8_form) {
873 CHECK(strchr(entry->name, '8') != nullptr) << entry->name;
874 } else {
875 if (entry->skeleton.immediate_bytes != 1) { // Ignore ...I8 instructions.
Serguei Katkov1c557032014-06-23 13:23:38 +0700876 if (!StartsWith(entry->name, "Movzx8") && !StartsWith(entry->name, "Movsx8")
877 && !StartsWith(entry->name, "Movzx8q") && !StartsWith(entry->name, "Movsx8q")) {
Ian Rogers0f9b9c52014-06-09 01:32:12 -0700878 CHECK(strchr(entry->name, '8') == nullptr) << entry->name;
879 }
880 }
881 }
882 if (RegStorage::RegNum(raw_reg) >= 4) {
883 // ah, bh, ch and dh are not valid registers in 32-bit.
Elena Sayapinadd644502014-07-01 18:39:52 +0700884 CHECK(cu_->target64 || !entry->skeleton.r8_form)
Ian Rogers0f9b9c52014-06-09 01:32:12 -0700885 << "Invalid register " << static_cast<int>(RegStorage::RegNum(raw_reg))
886 << " for instruction " << entry->name << " in "
887 << PrettyMethod(cu_->method_idx, *cu_->dex_file);
888 }
889 }
Dmitry Petrochenkoa20468c2014-04-30 13:40:19 +0700890}
891
892void X86Mir2Lir::EmitPrefix(const X86EncodingMap* entry,
Ian Rogers5aa6e042014-06-13 16:38:24 -0700893 int32_t raw_reg_r, int32_t raw_reg_x, int32_t raw_reg_b) {
Dmitry Petrochenkoa20468c2014-04-30 13:40:19 +0700894 // REX.WRXB
895 // W - 64-bit operand
896 // R - MODRM.reg
897 // X - SIB.index
898 // B - MODRM.rm/SIB.base
Dmitry Petrochenkoa20468c2014-04-30 13:40:19 +0700899 bool w = (entry->skeleton.prefix1 == REX_W) || (entry->skeleton.prefix2 == REX_W);
Ian Rogers0f9b9c52014-06-09 01:32:12 -0700900 bool r = NeedsRex(raw_reg_r);
901 bool x = NeedsRex(raw_reg_x);
902 bool b = NeedsRex(raw_reg_b);
Ian Rogers5aa6e042014-06-13 16:38:24 -0700903 bool r8_form = entry->skeleton.r8_form;
904 bool modrm_is_reg_reg = ModrmIsRegReg(entry);
905
Ian Rogers0f9b9c52014-06-09 01:32:12 -0700906 uint8_t rex = 0;
Chao-ying Fu7e399fd2014-06-10 18:11:11 -0700907 if (r8_form) {
908 // Do we need an empty REX prefix to normalize byte register addressing?
Chao-ying Fu021b60f2014-07-09 11:32:31 -0700909 if (RegStorage::RegNum(raw_reg_r) >= 4 && !IsByteSecondOperand(entry)) {
Chao-ying Fu7e399fd2014-06-10 18:11:11 -0700910 rex |= 0x40; // REX.0000
911 } else if (modrm_is_reg_reg && RegStorage::RegNum(raw_reg_b) >= 4) {
912 rex |= 0x40; // REX.0000
913 }
Ian Rogers0f9b9c52014-06-09 01:32:12 -0700914 }
Dmitry Petrochenkoa20468c2014-04-30 13:40:19 +0700915 if (w) {
916 rex |= 0x48; // REX.W000
917 }
918 if (r) {
919 rex |= 0x44; // REX.0R00
920 }
921 if (x) {
922 rex |= 0x42; // REX.00X0
923 }
924 if (b) {
925 rex |= 0x41; // REX.000B
926 }
Vladimir Marko057c74a2013-12-03 15:20:45 +0000927 if (entry->skeleton.prefix1 != 0) {
Elena Sayapinadd644502014-07-01 18:39:52 +0700928 if (cu_->target64 && entry->skeleton.prefix1 == THREAD_PREFIX) {
Ian Rogers0f9b9c52014-06-09 01:32:12 -0700929 // 64 bit addresses by GS, not FS.
Dmitry Petrochenko9ee801f2014-05-12 11:31:37 +0700930 code_buffer_.push_back(THREAD_PREFIX_GS);
931 } else {
Serguei Katkov94f3eb02014-06-24 13:23:17 +0700932 if (entry->skeleton.prefix1 == REX_W || entry->skeleton.prefix1 == REX) {
933 DCHECK(cu_->target64);
Dmitry Petrochenkoa20468c2014-04-30 13:40:19 +0700934 rex |= entry->skeleton.prefix1;
935 code_buffer_.push_back(rex);
936 rex = 0;
937 } else {
938 code_buffer_.push_back(entry->skeleton.prefix1);
939 }
Dmitry Petrochenko9ee801f2014-05-12 11:31:37 +0700940 }
Vladimir Marko057c74a2013-12-03 15:20:45 +0000941 if (entry->skeleton.prefix2 != 0) {
Serguei Katkov94f3eb02014-06-24 13:23:17 +0700942 if (entry->skeleton.prefix2 == REX_W || entry->skeleton.prefix1 == REX) {
943 DCHECK(cu_->target64);
Dmitry Petrochenkoa20468c2014-04-30 13:40:19 +0700944 rex |= entry->skeleton.prefix2;
945 code_buffer_.push_back(rex);
946 rex = 0;
947 } else {
948 code_buffer_.push_back(entry->skeleton.prefix2);
949 }
Vladimir Marko057c74a2013-12-03 15:20:45 +0000950 }
951 } else {
952 DCHECK_EQ(0, entry->skeleton.prefix2);
953 }
Dmitry Petrochenkoa20468c2014-04-30 13:40:19 +0700954 if (rex != 0) {
Elena Sayapinadd644502014-07-01 18:39:52 +0700955 DCHECK(cu_->target64);
Dmitry Petrochenkoa20468c2014-04-30 13:40:19 +0700956 code_buffer_.push_back(rex);
957 }
Vladimir Marko057c74a2013-12-03 15:20:45 +0000958}
959
960void X86Mir2Lir::EmitOpcode(const X86EncodingMap* entry) {
961 code_buffer_.push_back(entry->skeleton.opcode);
962 if (entry->skeleton.opcode == 0x0F) {
963 code_buffer_.push_back(entry->skeleton.extra_opcode1);
964 if (entry->skeleton.extra_opcode1 == 0x38 || entry->skeleton.extra_opcode1 == 0x3A) {
965 code_buffer_.push_back(entry->skeleton.extra_opcode2);
966 } else {
967 DCHECK_EQ(0, entry->skeleton.extra_opcode2);
968 }
969 } else {
970 DCHECK_EQ(0, entry->skeleton.extra_opcode1);
971 DCHECK_EQ(0, entry->skeleton.extra_opcode2);
972 }
973}
974
Dmitry Petrochenkoa20468c2014-04-30 13:40:19 +0700975void X86Mir2Lir::EmitPrefixAndOpcode(const X86EncodingMap* entry,
Ian Rogers5aa6e042014-06-13 16:38:24 -0700976 int32_t raw_reg_r, int32_t raw_reg_x, int32_t raw_reg_b) {
977 EmitPrefix(entry, raw_reg_r, raw_reg_x, raw_reg_b);
Vladimir Marko057c74a2013-12-03 15:20:45 +0000978 EmitOpcode(entry);
979}
980
Ian Rogers0f9b9c52014-06-09 01:32:12 -0700981void X86Mir2Lir::EmitDisp(uint8_t base, int32_t disp) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700982 // BP requires an explicit disp, so do not omit it in the 0 case
buzbee091cc402014-03-31 10:14:40 -0700983 if (disp == 0 && RegStorage::RegNum(base) != rs_rBP.GetRegNum()) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700984 return;
985 } else if (IS_SIMM8(disp)) {
986 code_buffer_.push_back(disp & 0xFF);
987 } else {
988 code_buffer_.push_back(disp & 0xFF);
989 code_buffer_.push_back((disp >> 8) & 0xFF);
990 code_buffer_.push_back((disp >> 16) & 0xFF);
991 code_buffer_.push_back((disp >> 24) & 0xFF);
992 }
993}
994
Dmitry Petrochenko9ee801f2014-05-12 11:31:37 +0700995void X86Mir2Lir::EmitModrmThread(uint8_t reg_or_opcode) {
Elena Sayapinadd644502014-07-01 18:39:52 +0700996 if (cu_->target64) {
Dmitry Petrochenko9ee801f2014-05-12 11:31:37 +0700997 // Absolute adressing for GS access.
998 uint8_t modrm = (0 << 6) | (reg_or_opcode << 3) | rs_rX86_SP.GetRegNum();
999 code_buffer_.push_back(modrm);
1000 uint8_t sib = (0/*TIMES_1*/ << 6) | (rs_rX86_SP.GetRegNum() << 3) | rs_rBP.GetRegNum();
1001 code_buffer_.push_back(sib);
1002 } else {
1003 uint8_t modrm = (0 << 6) | (reg_or_opcode << 3) | rs_rBP.GetRegNum();
1004 code_buffer_.push_back(modrm);
1005 }
1006}
1007
Ian Rogers0f9b9c52014-06-09 01:32:12 -07001008void X86Mir2Lir::EmitModrmDisp(uint8_t reg_or_opcode, uint8_t base, int32_t disp) {
1009 DCHECK_LT(reg_or_opcode, 8);
1010 DCHECK_LT(base, 8);
1011 uint8_t modrm = (ModrmForDisp(base, disp) << 6) | (reg_or_opcode << 3) | base;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001012 code_buffer_.push_back(modrm);
Ian Rogers0f9b9c52014-06-09 01:32:12 -07001013 if (base == rs_rX86_SP.GetRegNum()) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001014 // Special SIB for SP base
buzbee091cc402014-03-31 10:14:40 -07001015 code_buffer_.push_back(0 << 6 | rs_rX86_SP.GetRegNum() << 3 | rs_rX86_SP.GetRegNum());
Brian Carlstrom7940e442013-07-12 13:46:57 -07001016 }
1017 EmitDisp(base, disp);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001018}
1019
Vladimir Marko057c74a2013-12-03 15:20:45 +00001020void X86Mir2Lir::EmitModrmSibDisp(uint8_t reg_or_opcode, uint8_t base, uint8_t index,
Ian Rogers0f9b9c52014-06-09 01:32:12 -07001021 int scale, int32_t disp) {
buzbee091cc402014-03-31 10:14:40 -07001022 DCHECK_LT(RegStorage::RegNum(reg_or_opcode), 8);
1023 uint8_t modrm = (ModrmForDisp(base, disp) << 6) | RegStorage::RegNum(reg_or_opcode) << 3 |
1024 rs_rX86_SP.GetRegNum();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001025 code_buffer_.push_back(modrm);
1026 DCHECK_LT(scale, 4);
buzbee091cc402014-03-31 10:14:40 -07001027 DCHECK_LT(RegStorage::RegNum(index), 8);
1028 DCHECK_LT(RegStorage::RegNum(base), 8);
1029 uint8_t sib = (scale << 6) | (RegStorage::RegNum(index) << 3) | RegStorage::RegNum(base);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001030 code_buffer_.push_back(sib);
1031 EmitDisp(base, disp);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001032}
1033
Dmitry Petrochenko96992e82014-05-20 04:03:46 +07001034void X86Mir2Lir::EmitImm(const X86EncodingMap* entry, int64_t imm) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001035 switch (entry->skeleton.immediate_bytes) {
1036 case 1:
1037 DCHECK(IS_SIMM8(imm));
1038 code_buffer_.push_back(imm & 0xFF);
1039 break;
1040 case 2:
1041 DCHECK(IS_SIMM16(imm));
1042 code_buffer_.push_back(imm & 0xFF);
1043 code_buffer_.push_back((imm >> 8) & 0xFF);
1044 break;
1045 case 4:
Ian Rogers0f9b9c52014-06-09 01:32:12 -07001046 DCHECK(IS_SIMM32(imm));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001047 code_buffer_.push_back(imm & 0xFF);
1048 code_buffer_.push_back((imm >> 8) & 0xFF);
1049 code_buffer_.push_back((imm >> 16) & 0xFF);
1050 code_buffer_.push_back((imm >> 24) & 0xFF);
1051 break;
Dmitry Petrochenko96992e82014-05-20 04:03:46 +07001052 case 8:
1053 code_buffer_.push_back(imm & 0xFF);
1054 code_buffer_.push_back((imm >> 8) & 0xFF);
1055 code_buffer_.push_back((imm >> 16) & 0xFF);
1056 code_buffer_.push_back((imm >> 24) & 0xFF);
1057 code_buffer_.push_back((imm >> 32) & 0xFF);
1058 code_buffer_.push_back((imm >> 40) & 0xFF);
1059 code_buffer_.push_back((imm >> 48) & 0xFF);
1060 code_buffer_.push_back((imm >> 56) & 0xFF);
1061 break;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001062 default:
1063 LOG(FATAL) << "Unexpected immediate bytes (" << entry->skeleton.immediate_bytes
1064 << ") for instruction: " << entry->name;
1065 break;
1066 }
1067}
1068
Ian Rogers0f9b9c52014-06-09 01:32:12 -07001069void X86Mir2Lir::EmitNullary(const X86EncodingMap* entry) {
1070 DCHECK_EQ(false, entry->skeleton.r8_form);
Ian Rogers5aa6e042014-06-13 16:38:24 -07001071 EmitPrefixAndOpcode(entry, NO_REG, NO_REG, NO_REG);
Ian Rogers0f9b9c52014-06-09 01:32:12 -07001072 DCHECK_EQ(0, entry->skeleton.modrm_opcode);
Vladimir Marko057c74a2013-12-03 15:20:45 +00001073 DCHECK_EQ(0, entry->skeleton.ax_opcode);
1074 DCHECK_EQ(0, entry->skeleton.immediate_bytes);
1075}
1076
Ian Rogers0f9b9c52014-06-09 01:32:12 -07001077void X86Mir2Lir::EmitOpRegOpcode(const X86EncodingMap* entry, int32_t raw_reg) {
1078 DCHECK_EQ(false, entry->skeleton.r8_form);
Ian Rogers5aa6e042014-06-13 16:38:24 -07001079 EmitPrefixAndOpcode(entry, NO_REG, NO_REG, raw_reg);
Ian Rogers0f9b9c52014-06-09 01:32:12 -07001080 // There's no 3-byte instruction with +rd
1081 DCHECK(entry->skeleton.opcode != 0x0F ||
1082 (entry->skeleton.extra_opcode1 != 0x38 && entry->skeleton.extra_opcode1 != 0x3A));
1083 DCHECK(!RegStorage::IsFloat(raw_reg));
1084 uint8_t low_reg = LowRegisterBits(raw_reg);
1085 code_buffer_.back() += low_reg;
1086 DCHECK_EQ(0, entry->skeleton.ax_opcode);
1087 DCHECK_EQ(0, entry->skeleton.immediate_bytes);
1088}
1089
1090void X86Mir2Lir::EmitOpReg(const X86EncodingMap* entry, int32_t raw_reg) {
1091 CheckValidByteRegister(entry, raw_reg);
Ian Rogers5aa6e042014-06-13 16:38:24 -07001092 EmitPrefixAndOpcode(entry, NO_REG, NO_REG, raw_reg);
Ian Rogers0f9b9c52014-06-09 01:32:12 -07001093 uint8_t low_reg = LowRegisterBits(raw_reg);
1094 uint8_t modrm = (3 << 6) | (entry->skeleton.modrm_opcode << 3) | low_reg;
Vladimir Marko057c74a2013-12-03 15:20:45 +00001095 code_buffer_.push_back(modrm);
1096 DCHECK_EQ(0, entry->skeleton.ax_opcode);
1097 DCHECK_EQ(0, entry->skeleton.immediate_bytes);
1098}
1099
Ian Rogers0f9b9c52014-06-09 01:32:12 -07001100void X86Mir2Lir::EmitOpMem(const X86EncodingMap* entry, int32_t raw_base, int32_t disp) {
1101 DCHECK_EQ(false, entry->skeleton.r8_form);
Ian Rogers5aa6e042014-06-13 16:38:24 -07001102 EmitPrefix(entry, NO_REG, NO_REG, raw_base);
Vladimir Marko057c74a2013-12-03 15:20:45 +00001103 code_buffer_.push_back(entry->skeleton.opcode);
1104 DCHECK_NE(0x0F, entry->skeleton.opcode);
1105 DCHECK_EQ(0, entry->skeleton.extra_opcode1);
1106 DCHECK_EQ(0, entry->skeleton.extra_opcode2);
Ian Rogers0f9b9c52014-06-09 01:32:12 -07001107 uint8_t low_base = LowRegisterBits(raw_base);
1108 EmitModrmDisp(entry->skeleton.modrm_opcode, low_base, disp);
Vladimir Marko057c74a2013-12-03 15:20:45 +00001109 DCHECK_EQ(0, entry->skeleton.ax_opcode);
1110 DCHECK_EQ(0, entry->skeleton.immediate_bytes);
1111}
1112
Ian Rogers0f9b9c52014-06-09 01:32:12 -07001113void X86Mir2Lir::EmitOpArray(const X86EncodingMap* entry, int32_t raw_base, int32_t raw_index,
1114 int scale, int32_t disp) {
1115 DCHECK_EQ(false, entry->skeleton.r8_form);
Ian Rogers5aa6e042014-06-13 16:38:24 -07001116 EmitPrefixAndOpcode(entry, NO_REG, raw_index, raw_base);
Ian Rogers0f9b9c52014-06-09 01:32:12 -07001117 uint8_t low_index = LowRegisterBits(raw_index);
1118 uint8_t low_base = LowRegisterBits(raw_base);
1119 EmitModrmSibDisp(entry->skeleton.modrm_opcode, low_base, low_index, scale, disp);
Vladimir Marko057c74a2013-12-03 15:20:45 +00001120 DCHECK_EQ(0, entry->skeleton.ax_opcode);
1121 DCHECK_EQ(0, entry->skeleton.immediate_bytes);
1122}
1123
Ian Rogers0f9b9c52014-06-09 01:32:12 -07001124void X86Mir2Lir::EmitMemReg(const X86EncodingMap* entry, int32_t raw_base, int32_t disp,
1125 int32_t raw_reg) {
1126 CheckValidByteRegister(entry, raw_reg);
Ian Rogers5aa6e042014-06-13 16:38:24 -07001127 EmitPrefixAndOpcode(entry, raw_reg, NO_REG, raw_base);
Ian Rogers0f9b9c52014-06-09 01:32:12 -07001128 uint8_t low_reg = LowRegisterBits(raw_reg);
1129 uint8_t low_base = LowRegisterBits(raw_base);
1130 EmitModrmDisp(low_reg, low_base, disp);
Vladimir Marko057c74a2013-12-03 15:20:45 +00001131 DCHECK_EQ(0, entry->skeleton.modrm_opcode);
1132 DCHECK_EQ(0, entry->skeleton.ax_opcode);
1133 DCHECK_EQ(0, entry->skeleton.immediate_bytes);
1134}
1135
Ian Rogers0f9b9c52014-06-09 01:32:12 -07001136void X86Mir2Lir::EmitRegMem(const X86EncodingMap* entry, int32_t raw_reg, int32_t raw_base,
1137 int32_t disp) {
Vladimir Marko057c74a2013-12-03 15:20:45 +00001138 // Opcode will flip operands.
Ian Rogers0f9b9c52014-06-09 01:32:12 -07001139 EmitMemReg(entry, raw_base, disp, raw_reg);
Vladimir Marko057c74a2013-12-03 15:20:45 +00001140}
1141
Ian Rogers0f9b9c52014-06-09 01:32:12 -07001142void X86Mir2Lir::EmitRegArray(const X86EncodingMap* entry, int32_t raw_reg, int32_t raw_base,
1143 int32_t raw_index, int scale, int32_t disp) {
1144 CheckValidByteRegister(entry, raw_reg);
Ian Rogers5aa6e042014-06-13 16:38:24 -07001145 EmitPrefixAndOpcode(entry, raw_reg, raw_index, raw_base);
Ian Rogers0f9b9c52014-06-09 01:32:12 -07001146 uint8_t low_reg = LowRegisterBits(raw_reg);
1147 uint8_t low_index = LowRegisterBits(raw_index);
1148 uint8_t low_base = LowRegisterBits(raw_base);
1149 EmitModrmSibDisp(low_reg, low_base, low_index, scale, disp);
Vladimir Marko057c74a2013-12-03 15:20:45 +00001150 DCHECK_EQ(0, entry->skeleton.modrm_opcode);
1151 DCHECK_EQ(0, entry->skeleton.ax_opcode);
1152 DCHECK_EQ(0, entry->skeleton.immediate_bytes);
1153}
1154
Ian Rogers0f9b9c52014-06-09 01:32:12 -07001155void X86Mir2Lir::EmitArrayReg(const X86EncodingMap* entry, int32_t raw_base, int32_t raw_index,
1156 int scale, int32_t disp, int32_t raw_reg) {
Vladimir Marko057c74a2013-12-03 15:20:45 +00001157 // Opcode will flip operands.
Ian Rogers0f9b9c52014-06-09 01:32:12 -07001158 EmitRegArray(entry, raw_reg, raw_base, raw_index, scale, disp);
Vladimir Marko057c74a2013-12-03 15:20:45 +00001159}
1160
Ian Rogers0f9b9c52014-06-09 01:32:12 -07001161void X86Mir2Lir::EmitMemImm(const X86EncodingMap* entry, int32_t raw_base, int32_t disp,
1162 int32_t imm) {
1163 DCHECK_EQ(false, entry->skeleton.r8_form);
Ian Rogers5aa6e042014-06-13 16:38:24 -07001164 EmitPrefixAndOpcode(entry, NO_REG, NO_REG, raw_base);
Ian Rogers0f9b9c52014-06-09 01:32:12 -07001165 uint8_t low_base = LowRegisterBits(raw_base);
1166 EmitModrmDisp(entry->skeleton.modrm_opcode, low_base, disp);
Mark Mendell2637f2e2014-04-30 10:10:47 -04001167 DCHECK_EQ(0, entry->skeleton.ax_opcode);
Mark Mendell9ed42772014-05-07 17:26:12 -04001168 EmitImm(entry, imm);
Mark Mendell2637f2e2014-04-30 10:10:47 -04001169}
1170
Ian Rogers0f9b9c52014-06-09 01:32:12 -07001171void X86Mir2Lir::EmitArrayImm(const X86EncodingMap* entry,
1172 int32_t raw_base, int32_t raw_index, int scale, int32_t disp,
1173 int32_t imm) {
1174 DCHECK_EQ(false, entry->skeleton.r8_form);
Ian Rogers5aa6e042014-06-13 16:38:24 -07001175 EmitPrefixAndOpcode(entry, NO_REG, raw_index, raw_base);
Ian Rogers0f9b9c52014-06-09 01:32:12 -07001176 uint8_t low_index = LowRegisterBits(raw_index);
1177 uint8_t low_base = LowRegisterBits(raw_base);
1178 EmitModrmSibDisp(entry->skeleton.modrm_opcode, low_base, low_index, scale, disp);
1179 DCHECK_EQ(0, entry->skeleton.ax_opcode);
1180 EmitImm(entry, imm);
1181}
1182
1183void X86Mir2Lir::EmitRegThread(const X86EncodingMap* entry, int32_t raw_reg, int32_t disp) {
1184 DCHECK_EQ(false, entry->skeleton.r8_form);
Vladimir Marko057c74a2013-12-03 15:20:45 +00001185 DCHECK_NE(entry->skeleton.prefix1, 0);
Ian Rogers5aa6e042014-06-13 16:38:24 -07001186 EmitPrefixAndOpcode(entry, raw_reg, NO_REG, NO_REG);
Ian Rogers0f9b9c52014-06-09 01:32:12 -07001187 uint8_t low_reg = LowRegisterBits(raw_reg);
1188 EmitModrmThread(low_reg);
Vladimir Marko057c74a2013-12-03 15:20:45 +00001189 code_buffer_.push_back(disp & 0xFF);
1190 code_buffer_.push_back((disp >> 8) & 0xFF);
1191 code_buffer_.push_back((disp >> 16) & 0xFF);
1192 code_buffer_.push_back((disp >> 24) & 0xFF);
1193 DCHECK_EQ(0, entry->skeleton.modrm_opcode);
1194 DCHECK_EQ(0, entry->skeleton.ax_opcode);
1195 DCHECK_EQ(0, entry->skeleton.immediate_bytes);
1196}
1197
Ian Rogers0f9b9c52014-06-09 01:32:12 -07001198void X86Mir2Lir::EmitRegReg(const X86EncodingMap* entry, int32_t raw_reg1, int32_t raw_reg2) {
Chao-ying Fu021b60f2014-07-09 11:32:31 -07001199 if (!IsByteSecondOperand(entry)) {
1200 CheckValidByteRegister(entry, raw_reg1);
1201 }
Ian Rogers0f9b9c52014-06-09 01:32:12 -07001202 CheckValidByteRegister(entry, raw_reg2);
Ian Rogers5aa6e042014-06-13 16:38:24 -07001203 EmitPrefixAndOpcode(entry, raw_reg1, NO_REG, raw_reg2);
Ian Rogers0f9b9c52014-06-09 01:32:12 -07001204 uint8_t low_reg1 = LowRegisterBits(raw_reg1);
1205 uint8_t low_reg2 = LowRegisterBits(raw_reg2);
1206 uint8_t modrm = (3 << 6) | (low_reg1 << 3) | low_reg2;
Vladimir Marko057c74a2013-12-03 15:20:45 +00001207 code_buffer_.push_back(modrm);
1208 DCHECK_EQ(0, entry->skeleton.modrm_opcode);
1209 DCHECK_EQ(0, entry->skeleton.ax_opcode);
1210 DCHECK_EQ(0, entry->skeleton.immediate_bytes);
1211}
1212
Ian Rogers0f9b9c52014-06-09 01:32:12 -07001213void X86Mir2Lir::EmitRegRegImm(const X86EncodingMap* entry, int32_t raw_reg1, int32_t raw_reg2,
1214 int32_t imm) {
1215 DCHECK_EQ(false, entry->skeleton.r8_form);
Ian Rogers5aa6e042014-06-13 16:38:24 -07001216 EmitPrefixAndOpcode(entry, raw_reg1, NO_REG, raw_reg2);
Ian Rogers0f9b9c52014-06-09 01:32:12 -07001217 uint8_t low_reg1 = LowRegisterBits(raw_reg1);
1218 uint8_t low_reg2 = LowRegisterBits(raw_reg2);
1219 uint8_t modrm = (3 << 6) | (low_reg1 << 3) | low_reg2;
Vladimir Marko057c74a2013-12-03 15:20:45 +00001220 code_buffer_.push_back(modrm);
1221 DCHECK_EQ(0, entry->skeleton.modrm_opcode);
1222 DCHECK_EQ(0, entry->skeleton.ax_opcode);
1223 EmitImm(entry, imm);
1224}
1225
Mark Mendell4708dcd2014-01-22 09:05:18 -08001226void X86Mir2Lir::EmitRegMemImm(const X86EncodingMap* entry,
Ian Rogers0f9b9c52014-06-09 01:32:12 -07001227 int32_t raw_reg, int32_t raw_base, int disp, int32_t imm) {
1228 DCHECK(!RegStorage::IsFloat(raw_reg));
1229 CheckValidByteRegister(entry, raw_reg);
Ian Rogers5aa6e042014-06-13 16:38:24 -07001230 EmitPrefixAndOpcode(entry, raw_reg, NO_REG, raw_base);
Ian Rogers0f9b9c52014-06-09 01:32:12 -07001231 uint8_t low_reg = LowRegisterBits(raw_reg);
1232 uint8_t low_base = LowRegisterBits(raw_base);
1233 EmitModrmDisp(low_reg, low_base, disp);
Mark Mendell4708dcd2014-01-22 09:05:18 -08001234 DCHECK_EQ(0, entry->skeleton.modrm_opcode);
1235 DCHECK_EQ(0, entry->skeleton.ax_opcode);
1236 EmitImm(entry, imm);
1237}
1238
Mark Mendell2637f2e2014-04-30 10:10:47 -04001239void X86Mir2Lir::EmitMemRegImm(const X86EncodingMap* entry,
Ian Rogers0f9b9c52014-06-09 01:32:12 -07001240 int32_t raw_base, int32_t disp, int32_t raw_reg, int32_t imm) {
1241 // Opcode will flip operands.
1242 EmitRegMemImm(entry, raw_reg, raw_base, disp, imm);
Mark Mendell2637f2e2014-04-30 10:10:47 -04001243}
1244
Ian Rogers0f9b9c52014-06-09 01:32:12 -07001245void X86Mir2Lir::EmitRegImm(const X86EncodingMap* entry, int32_t raw_reg, int32_t imm) {
1246 CheckValidByteRegister(entry, raw_reg);
Ian Rogers5aa6e042014-06-13 16:38:24 -07001247 EmitPrefix(entry, NO_REG, NO_REG, raw_reg);
Ian Rogers0f9b9c52014-06-09 01:32:12 -07001248 if (RegStorage::RegNum(raw_reg) == rs_rAX.GetRegNum() && entry->skeleton.ax_opcode != 0) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001249 code_buffer_.push_back(entry->skeleton.ax_opcode);
1250 } else {
Ian Rogers0f9b9c52014-06-09 01:32:12 -07001251 uint8_t low_reg = LowRegisterBits(raw_reg);
Vladimir Marko057c74a2013-12-03 15:20:45 +00001252 EmitOpcode(entry);
Ian Rogers0f9b9c52014-06-09 01:32:12 -07001253 uint8_t modrm = (3 << 6) | (entry->skeleton.modrm_opcode << 3) | low_reg;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001254 code_buffer_.push_back(modrm);
1255 }
Vladimir Marko057c74a2013-12-03 15:20:45 +00001256 EmitImm(entry, imm);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001257}
1258
Ian Rogers0f9b9c52014-06-09 01:32:12 -07001259void X86Mir2Lir::EmitThreadImm(const X86EncodingMap* entry, int32_t disp, int32_t imm) {
Chao-ying Fu7e399fd2014-06-10 18:11:11 -07001260 DCHECK_EQ(false, entry->skeleton.r8_form);
Ian Rogers5aa6e042014-06-13 16:38:24 -07001261 EmitPrefixAndOpcode(entry, NO_REG, NO_REG, NO_REG);
Dmitry Petrochenko9ee801f2014-05-12 11:31:37 +07001262 EmitModrmThread(entry->skeleton.modrm_opcode);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001263 code_buffer_.push_back(disp & 0xFF);
1264 code_buffer_.push_back((disp >> 8) & 0xFF);
1265 code_buffer_.push_back((disp >> 16) & 0xFF);
1266 code_buffer_.push_back((disp >> 24) & 0xFF);
Vladimir Marko057c74a2013-12-03 15:20:45 +00001267 EmitImm(entry, imm);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001268 DCHECK_EQ(entry->skeleton.ax_opcode, 0);
1269}
1270
Ian Rogers0f9b9c52014-06-09 01:32:12 -07001271void X86Mir2Lir::EmitMovRegImm(const X86EncodingMap* entry, int32_t raw_reg, int64_t imm) {
1272 DCHECK_EQ(false, entry->skeleton.r8_form);
Ian Rogers5aa6e042014-06-13 16:38:24 -07001273 EmitPrefix(entry, NO_REG, NO_REG, raw_reg);
Ian Rogers0f9b9c52014-06-09 01:32:12 -07001274 uint8_t low_reg = LowRegisterBits(raw_reg);
1275 code_buffer_.push_back(0xB8 + low_reg);
Dmitry Petrochenko96992e82014-05-20 04:03:46 +07001276 switch (entry->skeleton.immediate_bytes) {
1277 case 4:
1278 code_buffer_.push_back(imm & 0xFF);
1279 code_buffer_.push_back((imm >> 8) & 0xFF);
1280 code_buffer_.push_back((imm >> 16) & 0xFF);
1281 code_buffer_.push_back((imm >> 24) & 0xFF);
1282 break;
1283 case 8:
1284 code_buffer_.push_back(imm & 0xFF);
1285 code_buffer_.push_back((imm >> 8) & 0xFF);
1286 code_buffer_.push_back((imm >> 16) & 0xFF);
1287 code_buffer_.push_back((imm >> 24) & 0xFF);
1288 code_buffer_.push_back((imm >> 32) & 0xFF);
1289 code_buffer_.push_back((imm >> 40) & 0xFF);
1290 code_buffer_.push_back((imm >> 48) & 0xFF);
1291 code_buffer_.push_back((imm >> 56) & 0xFF);
1292 break;
1293 default:
Dmitry Petrochenkoa20468c2014-04-30 13:40:19 +07001294 LOG(FATAL) << "Unsupported immediate size for EmitMovRegImm: "
1295 << static_cast<uint32_t>(entry->skeleton.immediate_bytes);
Dmitry Petrochenko96992e82014-05-20 04:03:46 +07001296 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001297}
1298
Ian Rogers0f9b9c52014-06-09 01:32:12 -07001299void X86Mir2Lir::EmitShiftRegImm(const X86EncodingMap* entry, int32_t raw_reg, int32_t imm) {
1300 CheckValidByteRegister(entry, raw_reg);
Ian Rogers5aa6e042014-06-13 16:38:24 -07001301 EmitPrefix(entry, NO_REG, NO_REG, raw_reg);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001302 if (imm != 1) {
1303 code_buffer_.push_back(entry->skeleton.opcode);
1304 } else {
1305 // Shorter encoding for 1 bit shift
1306 code_buffer_.push_back(entry->skeleton.ax_opcode);
1307 }
Vladimir Marko057c74a2013-12-03 15:20:45 +00001308 DCHECK_NE(0x0F, entry->skeleton.opcode);
1309 DCHECK_EQ(0, entry->skeleton.extra_opcode1);
1310 DCHECK_EQ(0, entry->skeleton.extra_opcode2);
Ian Rogers0f9b9c52014-06-09 01:32:12 -07001311 uint8_t low_reg = LowRegisterBits(raw_reg);
1312 uint8_t modrm = (3 << 6) | (entry->skeleton.modrm_opcode << 3) | low_reg;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001313 code_buffer_.push_back(modrm);
1314 if (imm != 1) {
1315 DCHECK_EQ(entry->skeleton.immediate_bytes, 1);
1316 DCHECK(IS_SIMM8(imm));
1317 code_buffer_.push_back(imm & 0xFF);
1318 }
1319}
1320
Ian Rogers0f9b9c52014-06-09 01:32:12 -07001321void X86Mir2Lir::EmitShiftRegCl(const X86EncodingMap* entry, int32_t raw_reg, int32_t raw_cl) {
1322 CheckValidByteRegister(entry, raw_reg);
1323 DCHECK_EQ(rs_rCX.GetRegNum(), RegStorage::RegNum(raw_cl));
Ian Rogers5aa6e042014-06-13 16:38:24 -07001324 EmitPrefix(entry, NO_REG, NO_REG, raw_reg);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001325 code_buffer_.push_back(entry->skeleton.opcode);
Vladimir Marko057c74a2013-12-03 15:20:45 +00001326 DCHECK_NE(0x0F, entry->skeleton.opcode);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001327 DCHECK_EQ(0, entry->skeleton.extra_opcode1);
1328 DCHECK_EQ(0, entry->skeleton.extra_opcode2);
Ian Rogers0f9b9c52014-06-09 01:32:12 -07001329 uint8_t low_reg = LowRegisterBits(raw_reg);
1330 uint8_t modrm = (3 << 6) | (entry->skeleton.modrm_opcode << 3) | low_reg;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001331 code_buffer_.push_back(modrm);
1332 DCHECK_EQ(0, entry->skeleton.ax_opcode);
1333 DCHECK_EQ(0, entry->skeleton.immediate_bytes);
1334}
1335
Ian Rogers0f9b9c52014-06-09 01:32:12 -07001336void X86Mir2Lir::EmitShiftMemCl(const X86EncodingMap* entry, int32_t raw_base,
1337 int32_t displacement, int32_t raw_cl) {
1338 DCHECK_EQ(false, entry->skeleton.r8_form);
1339 DCHECK_EQ(rs_rCX.GetRegNum(), RegStorage::RegNum(raw_cl));
Ian Rogers5aa6e042014-06-13 16:38:24 -07001340 EmitPrefix(entry, NO_REG, NO_REG, raw_base);
Mark Mendellfeb2b4e2014-01-28 12:59:49 -08001341 code_buffer_.push_back(entry->skeleton.opcode);
1342 DCHECK_NE(0x0F, entry->skeleton.opcode);
1343 DCHECK_EQ(0, entry->skeleton.extra_opcode1);
1344 DCHECK_EQ(0, entry->skeleton.extra_opcode2);
Ian Rogers0f9b9c52014-06-09 01:32:12 -07001345 uint8_t low_base = LowRegisterBits(raw_base);
1346 EmitModrmDisp(entry->skeleton.modrm_opcode, low_base, displacement);
Mark Mendellfeb2b4e2014-01-28 12:59:49 -08001347 DCHECK_EQ(0, entry->skeleton.ax_opcode);
1348 DCHECK_EQ(0, entry->skeleton.immediate_bytes);
1349}
1350
Yixin Shouf40f8902014-08-14 14:10:32 -04001351void X86Mir2Lir::EmitShiftRegRegCl(const X86EncodingMap* entry, int32_t raw_reg1, int32_t raw_reg2, int32_t raw_cl) {
1352 DCHECK_EQ(false, entry->skeleton.r8_form);
1353 DCHECK_EQ(rs_rCX.GetRegNum(), RegStorage::RegNum(raw_cl));
1354 EmitPrefixAndOpcode(entry, raw_reg1, NO_REG, raw_reg2);
1355 uint8_t low_reg1 = LowRegisterBits(raw_reg1);
1356 uint8_t low_reg2 = LowRegisterBits(raw_reg2);
1357 uint8_t modrm = (3 << 6) | (low_reg1 << 3) | low_reg2;
1358 code_buffer_.push_back(modrm);
1359 DCHECK_EQ(0, entry->skeleton.modrm_opcode);
1360 DCHECK_EQ(0, entry->skeleton.ax_opcode);
1361 DCHECK_EQ(0, entry->skeleton.immediate_bytes);
1362}
1363
Ian Rogers0f9b9c52014-06-09 01:32:12 -07001364void X86Mir2Lir::EmitShiftMemImm(const X86EncodingMap* entry, int32_t raw_base, int32_t disp,
1365 int32_t imm) {
1366 DCHECK_EQ(false, entry->skeleton.r8_form);
Ian Rogers5aa6e042014-06-13 16:38:24 -07001367 EmitPrefix(entry, NO_REG, NO_REG, raw_base);
Mark Mendell2637f2e2014-04-30 10:10:47 -04001368 if (imm != 1) {
1369 code_buffer_.push_back(entry->skeleton.opcode);
1370 } else {
1371 // Shorter encoding for 1 bit shift
1372 code_buffer_.push_back(entry->skeleton.ax_opcode);
1373 }
1374 DCHECK_NE(0x0F, entry->skeleton.opcode);
1375 DCHECK_EQ(0, entry->skeleton.extra_opcode1);
1376 DCHECK_EQ(0, entry->skeleton.extra_opcode2);
Ian Rogers0f9b9c52014-06-09 01:32:12 -07001377 uint8_t low_base = LowRegisterBits(raw_base);
1378 EmitModrmDisp(entry->skeleton.modrm_opcode, low_base, disp);
Mark Mendell2637f2e2014-04-30 10:10:47 -04001379 if (imm != 1) {
1380 DCHECK_EQ(entry->skeleton.immediate_bytes, 1);
1381 DCHECK(IS_SIMM8(imm));
1382 code_buffer_.push_back(imm & 0xFF);
1383 }
1384}
1385
Ian Rogers0f9b9c52014-06-09 01:32:12 -07001386void X86Mir2Lir::EmitRegCond(const X86EncodingMap* entry, int32_t raw_reg, int32_t cc) {
1387 CheckValidByteRegister(entry, raw_reg);
Ian Rogers5aa6e042014-06-13 16:38:24 -07001388 EmitPrefix(entry, NO_REG, NO_REG, raw_reg);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001389 DCHECK_EQ(0, entry->skeleton.ax_opcode);
1390 DCHECK_EQ(0x0F, entry->skeleton.opcode);
1391 code_buffer_.push_back(0x0F);
1392 DCHECK_EQ(0x90, entry->skeleton.extra_opcode1);
Ian Rogers0f9b9c52014-06-09 01:32:12 -07001393 DCHECK_GE(cc, 0);
1394 DCHECK_LT(cc, 16);
1395 code_buffer_.push_back(0x90 | cc);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001396 DCHECK_EQ(0, entry->skeleton.extra_opcode2);
Ian Rogers0f9b9c52014-06-09 01:32:12 -07001397 uint8_t low_reg = LowRegisterBits(raw_reg);
1398 uint8_t modrm = (3 << 6) | (entry->skeleton.modrm_opcode << 3) | low_reg;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001399 code_buffer_.push_back(modrm);
1400 DCHECK_EQ(entry->skeleton.immediate_bytes, 0);
1401}
1402
Ian Rogers0f9b9c52014-06-09 01:32:12 -07001403void X86Mir2Lir::EmitMemCond(const X86EncodingMap* entry, int32_t raw_base, int32_t disp,
1404 int32_t cc) {
1405 DCHECK_EQ(false, entry->skeleton.r8_form);
Mark Mendell2637f2e2014-04-30 10:10:47 -04001406 if (entry->skeleton.prefix1 != 0) {
1407 code_buffer_.push_back(entry->skeleton.prefix1);
1408 if (entry->skeleton.prefix2 != 0) {
1409 code_buffer_.push_back(entry->skeleton.prefix2);
1410 }
1411 } else {
1412 DCHECK_EQ(0, entry->skeleton.prefix2);
1413 }
1414 DCHECK_EQ(0, entry->skeleton.ax_opcode);
1415 DCHECK_EQ(0x0F, entry->skeleton.opcode);
1416 code_buffer_.push_back(0x0F);
1417 DCHECK_EQ(0x90, entry->skeleton.extra_opcode1);
Ian Rogers0f9b9c52014-06-09 01:32:12 -07001418 DCHECK_GE(cc, 0);
1419 DCHECK_LT(cc, 16);
1420 code_buffer_.push_back(0x90 | cc);
Mark Mendell2637f2e2014-04-30 10:10:47 -04001421 DCHECK_EQ(0, entry->skeleton.extra_opcode2);
Ian Rogers0f9b9c52014-06-09 01:32:12 -07001422 uint8_t low_base = LowRegisterBits(raw_base);
1423 EmitModrmDisp(entry->skeleton.modrm_opcode, low_base, disp);
Mark Mendell2637f2e2014-04-30 10:10:47 -04001424 DCHECK_EQ(entry->skeleton.immediate_bytes, 0);
1425}
1426
Ian Rogers0f9b9c52014-06-09 01:32:12 -07001427void X86Mir2Lir::EmitRegRegCond(const X86EncodingMap* entry, int32_t raw_reg1, int32_t raw_reg2,
1428 int32_t cc) {
1429 // Generate prefix and opcode without the condition.
1430 DCHECK_EQ(false, entry->skeleton.r8_form);
Ian Rogers5aa6e042014-06-13 16:38:24 -07001431 EmitPrefixAndOpcode(entry, raw_reg1, NO_REG, raw_reg2);
Razvan A Lupusorubd288c22013-12-20 17:27:23 -08001432
1433 // Now add the condition. The last byte of opcode is the one that receives it.
Ian Rogers0f9b9c52014-06-09 01:32:12 -07001434 DCHECK_GE(cc, 0);
1435 DCHECK_LT(cc, 16);
1436 code_buffer_.back() += cc;
Razvan A Lupusorubd288c22013-12-20 17:27:23 -08001437
Ian Rogers0f9b9c52014-06-09 01:32:12 -07001438 // Not expecting to have to encode immediate or do anything special for ModR/M since there are
1439 // two registers.
Razvan A Lupusorubd288c22013-12-20 17:27:23 -08001440 DCHECK_EQ(0, entry->skeleton.immediate_bytes);
1441 DCHECK_EQ(0, entry->skeleton.modrm_opcode);
1442
Razvan A Lupusorubd288c22013-12-20 17:27:23 -08001443 // For register to register encoding, the mod is 3.
1444 const uint8_t mod = (3 << 6);
1445
1446 // Encode the ModR/M byte now.
Ian Rogers0f9b9c52014-06-09 01:32:12 -07001447 uint8_t low_reg1 = LowRegisterBits(raw_reg1);
1448 uint8_t low_reg2 = LowRegisterBits(raw_reg2);
1449 const uint8_t modrm = mod | (low_reg1 << 3) | low_reg2;
Razvan A Lupusorubd288c22013-12-20 17:27:23 -08001450 code_buffer_.push_back(modrm);
1451}
1452
Ian Rogers0f9b9c52014-06-09 01:32:12 -07001453void X86Mir2Lir::EmitRegMemCond(const X86EncodingMap* entry, int32_t raw_reg1, int32_t raw_base,
1454 int32_t disp, int32_t cc) {
1455 // Generate prefix and opcode without the condition.
1456 DCHECK_EQ(false, entry->skeleton.r8_form);
Ian Rogers5aa6e042014-06-13 16:38:24 -07001457 EmitPrefixAndOpcode(entry, raw_reg1, NO_REG, raw_base);
Mark Mendell2637f2e2014-04-30 10:10:47 -04001458
1459 // Now add the condition. The last byte of opcode is the one that receives it.
Ian Rogers0f9b9c52014-06-09 01:32:12 -07001460 DCHECK_GE(cc, 0);
1461 DCHECK_LT(cc, 16);
1462 code_buffer_.back() += cc;
Mark Mendell2637f2e2014-04-30 10:10:47 -04001463
Ian Rogers0f9b9c52014-06-09 01:32:12 -07001464 // Not expecting to have to encode immediate or do anything special for ModR/M since there are
1465 // two registers.
Mark Mendell2637f2e2014-04-30 10:10:47 -04001466 DCHECK_EQ(0, entry->skeleton.immediate_bytes);
1467 DCHECK_EQ(0, entry->skeleton.modrm_opcode);
1468
Ian Rogers0f9b9c52014-06-09 01:32:12 -07001469 uint8_t low_reg1 = LowRegisterBits(raw_reg1);
1470 uint8_t low_base = LowRegisterBits(raw_base);
1471 EmitModrmDisp(low_reg1, low_base, disp);
Mark Mendell2637f2e2014-04-30 10:10:47 -04001472}
1473
Ian Rogers0f9b9c52014-06-09 01:32:12 -07001474void X86Mir2Lir::EmitJmp(const X86EncodingMap* entry, int32_t rel) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001475 if (entry->opcode == kX86Jmp8) {
1476 DCHECK(IS_SIMM8(rel));
1477 code_buffer_.push_back(0xEB);
1478 code_buffer_.push_back(rel & 0xFF);
1479 } else if (entry->opcode == kX86Jmp32) {
1480 code_buffer_.push_back(0xE9);
1481 code_buffer_.push_back(rel & 0xFF);
1482 code_buffer_.push_back((rel >> 8) & 0xFF);
1483 code_buffer_.push_back((rel >> 16) & 0xFF);
1484 code_buffer_.push_back((rel >> 24) & 0xFF);
Mark Mendell4028a6c2014-02-19 20:06:20 -08001485 } else if (entry->opcode == kX86Jecxz8) {
1486 DCHECK(IS_SIMM8(rel));
1487 code_buffer_.push_back(0xE3);
1488 code_buffer_.push_back(rel & 0xFF);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001489 } else {
1490 DCHECK(entry->opcode == kX86JmpR);
Ian Rogers0f9b9c52014-06-09 01:32:12 -07001491 DCHECK_EQ(false, entry->skeleton.r8_form);
Ian Rogers5aa6e042014-06-13 16:38:24 -07001492 EmitPrefix(entry, NO_REG, NO_REG, rel);
Dmitry Petrochenkoa20468c2014-04-30 13:40:19 +07001493 code_buffer_.push_back(entry->skeleton.opcode);
Ian Rogers0f9b9c52014-06-09 01:32:12 -07001494 uint8_t low_reg = LowRegisterBits(rel);
1495 uint8_t modrm = (3 << 6) | (entry->skeleton.modrm_opcode << 3) | low_reg;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001496 code_buffer_.push_back(modrm);
1497 }
1498}
1499
Ian Rogers0f9b9c52014-06-09 01:32:12 -07001500void X86Mir2Lir::EmitJcc(const X86EncodingMap* entry, int32_t rel, int32_t cc) {
1501 DCHECK_GE(cc, 0);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001502 DCHECK_LT(cc, 16);
1503 if (entry->opcode == kX86Jcc8) {
1504 DCHECK(IS_SIMM8(rel));
1505 code_buffer_.push_back(0x70 | cc);
1506 code_buffer_.push_back(rel & 0xFF);
1507 } else {
1508 DCHECK(entry->opcode == kX86Jcc32);
1509 code_buffer_.push_back(0x0F);
1510 code_buffer_.push_back(0x80 | cc);
1511 code_buffer_.push_back(rel & 0xFF);
1512 code_buffer_.push_back((rel >> 8) & 0xFF);
1513 code_buffer_.push_back((rel >> 16) & 0xFF);
1514 code_buffer_.push_back((rel >> 24) & 0xFF);
1515 }
1516}
1517
Ian Rogers0f9b9c52014-06-09 01:32:12 -07001518void X86Mir2Lir::EmitCallMem(const X86EncodingMap* entry, int32_t raw_base, int32_t disp) {
1519 DCHECK_EQ(false, entry->skeleton.r8_form);
Ian Rogers5aa6e042014-06-13 16:38:24 -07001520 EmitPrefixAndOpcode(entry, NO_REG, NO_REG, raw_base);
Ian Rogers0f9b9c52014-06-09 01:32:12 -07001521 uint8_t low_base = LowRegisterBits(raw_base);
1522 EmitModrmDisp(entry->skeleton.modrm_opcode, low_base, disp);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001523 DCHECK_EQ(0, entry->skeleton.ax_opcode);
1524 DCHECK_EQ(0, entry->skeleton.immediate_bytes);
1525}
1526
Ian Rogers0f9b9c52014-06-09 01:32:12 -07001527void X86Mir2Lir::EmitCallImmediate(const X86EncodingMap* entry, int32_t disp) {
1528 DCHECK_EQ(false, entry->skeleton.r8_form);
Ian Rogers5aa6e042014-06-13 16:38:24 -07001529 EmitPrefixAndOpcode(entry, NO_REG, NO_REG, NO_REG);
Mark Mendell55d0eac2014-02-06 11:02:52 -08001530 DCHECK_EQ(4, entry->skeleton.immediate_bytes);
1531 code_buffer_.push_back(disp & 0xFF);
1532 code_buffer_.push_back((disp >> 8) & 0xFF);
1533 code_buffer_.push_back((disp >> 16) & 0xFF);
1534 code_buffer_.push_back((disp >> 24) & 0xFF);
1535 DCHECK_EQ(0, entry->skeleton.ax_opcode);
1536}
1537
Ian Rogers0f9b9c52014-06-09 01:32:12 -07001538void X86Mir2Lir::EmitCallThread(const X86EncodingMap* entry, int32_t disp) {
1539 DCHECK_EQ(false, entry->skeleton.r8_form);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001540 DCHECK_NE(entry->skeleton.prefix1, 0);
Ian Rogers5aa6e042014-06-13 16:38:24 -07001541 EmitPrefixAndOpcode(entry, NO_REG, NO_REG, NO_REG);
Dmitry Petrochenko9ee801f2014-05-12 11:31:37 +07001542 EmitModrmThread(entry->skeleton.modrm_opcode);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001543 code_buffer_.push_back(disp & 0xFF);
1544 code_buffer_.push_back((disp >> 8) & 0xFF);
1545 code_buffer_.push_back((disp >> 16) & 0xFF);
1546 code_buffer_.push_back((disp >> 24) & 0xFF);
1547 DCHECK_EQ(0, entry->skeleton.ax_opcode);
1548 DCHECK_EQ(0, entry->skeleton.immediate_bytes);
1549}
1550
Ian Rogers0f9b9c52014-06-09 01:32:12 -07001551void X86Mir2Lir::EmitPcRel(const X86EncodingMap* entry, int32_t raw_reg, int32_t raw_base_or_table,
1552 int32_t raw_index, int scale, int32_t table_or_disp) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001553 int disp;
1554 if (entry->opcode == kX86PcRelLoadRA) {
buzbee0d829482013-10-11 15:24:55 -07001555 Mir2Lir::EmbeddedData *tab_rec =
1556 reinterpret_cast<Mir2Lir::EmbeddedData*>(UnwrapPointer(table_or_disp));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001557 disp = tab_rec->offset;
1558 } else {
1559 DCHECK(entry->opcode == kX86PcRelAdr);
buzbee0d829482013-10-11 15:24:55 -07001560 Mir2Lir::EmbeddedData *tab_rec =
Ian Rogers0f9b9c52014-06-09 01:32:12 -07001561 reinterpret_cast<Mir2Lir::EmbeddedData*>(UnwrapPointer(raw_base_or_table));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001562 disp = tab_rec->offset;
1563 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001564 if (entry->opcode == kX86PcRelLoadRA) {
Ian Rogers0f9b9c52014-06-09 01:32:12 -07001565 DCHECK_EQ(false, entry->skeleton.r8_form);
Ian Rogers5aa6e042014-06-13 16:38:24 -07001566 EmitPrefix(entry, raw_reg, raw_index, raw_base_or_table);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001567 code_buffer_.push_back(entry->skeleton.opcode);
Vladimir Marko057c74a2013-12-03 15:20:45 +00001568 DCHECK_NE(0x0F, entry->skeleton.opcode);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001569 DCHECK_EQ(0, entry->skeleton.extra_opcode1);
1570 DCHECK_EQ(0, entry->skeleton.extra_opcode2);
Ian Rogers0f9b9c52014-06-09 01:32:12 -07001571 uint8_t low_reg = LowRegisterBits(raw_reg);
1572 uint8_t modrm = (2 << 6) | (low_reg << 3) | rs_rX86_SP.GetRegNum();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001573 code_buffer_.push_back(modrm);
1574 DCHECK_LT(scale, 4);
Ian Rogers0f9b9c52014-06-09 01:32:12 -07001575 uint8_t low_base_or_table = LowRegisterBits(raw_base_or_table);
1576 uint8_t low_index = LowRegisterBits(raw_index);
1577 uint8_t sib = (scale << 6) | (low_index << 3) | low_base_or_table;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001578 code_buffer_.push_back(sib);
1579 DCHECK_EQ(0, entry->skeleton.immediate_bytes);
1580 } else {
Ian Rogers0f9b9c52014-06-09 01:32:12 -07001581 uint8_t low_reg = LowRegisterBits(raw_reg);
1582 code_buffer_.push_back(entry->skeleton.opcode + low_reg);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001583 }
1584 code_buffer_.push_back(disp & 0xFF);
1585 code_buffer_.push_back((disp >> 8) & 0xFF);
1586 code_buffer_.push_back((disp >> 16) & 0xFF);
1587 code_buffer_.push_back((disp >> 24) & 0xFF);
1588 DCHECK_EQ(0, entry->skeleton.modrm_opcode);
1589 DCHECK_EQ(0, entry->skeleton.ax_opcode);
1590}
1591
Ian Rogers0f9b9c52014-06-09 01:32:12 -07001592void X86Mir2Lir::EmitMacro(const X86EncodingMap* entry, int32_t raw_reg, int32_t offset) {
1593 DCHECK_EQ(entry->opcode, kX86StartOfMethod) << entry->name;
1594 DCHECK_EQ(false, entry->skeleton.r8_form);
Ian Rogers5aa6e042014-06-13 16:38:24 -07001595 EmitPrefix(entry, raw_reg, NO_REG, NO_REG);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001596 code_buffer_.push_back(0xE8); // call +0
1597 code_buffer_.push_back(0);
1598 code_buffer_.push_back(0);
1599 code_buffer_.push_back(0);
1600 code_buffer_.push_back(0);
1601
Ian Rogers0f9b9c52014-06-09 01:32:12 -07001602 uint8_t low_reg = LowRegisterBits(raw_reg);
1603 code_buffer_.push_back(0x58 + low_reg); // pop reg
Brian Carlstrom7940e442013-07-12 13:46:57 -07001604
Elena Sayapinadd644502014-07-01 18:39:52 +07001605 EmitRegImm(&X86Mir2Lir::EncodingMap[cu_->target64 ? kX86Sub64RI : kX86Sub32RI],
Ian Rogers0f9b9c52014-06-09 01:32:12 -07001606 raw_reg, offset + 5 /* size of call +0 */);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001607}
1608
1609void X86Mir2Lir::EmitUnimplemented(const X86EncodingMap* entry, LIR* lir) {
1610 UNIMPLEMENTED(WARNING) << "encoding kind for " << entry->name << " "
1611 << BuildInsnString(entry->fmt, lir, 0);
Ian Rogers5aa6e042014-06-13 16:38:24 -07001612 for (size_t i = 0; i < GetInsnSize(lir); ++i) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001613 code_buffer_.push_back(0xCC); // push breakpoint instruction - int 3
1614 }
1615}
1616
1617/*
1618 * Assemble the LIR into binary instruction format. Note that we may
1619 * discover that pc-relative displacements may not fit the selected
1620 * instruction. In those cases we will try to substitute a new code
1621 * sequence or request that the trace be shortened and retried.
1622 */
buzbee0d829482013-10-11 15:24:55 -07001623AssemblerStatus X86Mir2Lir::AssembleInstructions(CodeOffset start_addr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001624 LIR *lir;
1625 AssemblerStatus res = kSuccess; // Assume success
1626
1627 const bool kVerbosePcFixup = false;
1628 for (lir = first_lir_insn_; lir != NULL; lir = NEXT_LIR(lir)) {
buzbee409fe942013-10-11 10:49:56 -07001629 if (IsPseudoLirOp(lir->opcode)) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001630 continue;
1631 }
1632
1633 if (lir->flags.is_nop) {
1634 continue;
1635 }
1636
buzbeeb48819d2013-09-14 16:15:25 -07001637 if (lir->flags.fixup != kFixupNone) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001638 switch (lir->opcode) {
1639 case kX86Jcc8: {
1640 LIR *target_lir = lir->target;
1641 DCHECK(target_lir != NULL);
1642 int delta = 0;
buzbee0d829482013-10-11 15:24:55 -07001643 CodeOffset pc;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001644 if (IS_SIMM8(lir->operands[0])) {
1645 pc = lir->offset + 2 /* opcode + rel8 */;
1646 } else {
1647 pc = lir->offset + 6 /* 2 byte opcode + rel32 */;
1648 }
buzbee0d829482013-10-11 15:24:55 -07001649 CodeOffset target = target_lir->offset;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001650 delta = target - pc;
1651 if (IS_SIMM8(delta) != IS_SIMM8(lir->operands[0])) {
1652 if (kVerbosePcFixup) {
1653 LOG(INFO) << "Retry for JCC growth at " << lir->offset
1654 << " delta: " << delta << " old delta: " << lir->operands[0];
1655 }
1656 lir->opcode = kX86Jcc32;
Vladimir Marko8dea81c2014-06-06 14:50:36 +01001657 lir->flags.size = GetInsnSize(lir);
1658 DCHECK(lir->u.m.def_mask->Equals(kEncodeAll));
1659 DCHECK(lir->u.m.use_mask->Equals(kEncodeAll));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001660 res = kRetryAll;
1661 }
1662 if (kVerbosePcFixup) {
1663 LOG(INFO) << "Source:";
1664 DumpLIRInsn(lir, 0);
1665 LOG(INFO) << "Target:";
1666 DumpLIRInsn(target_lir, 0);
1667 LOG(INFO) << "Delta " << delta;
1668 }
1669 lir->operands[0] = delta;
1670 break;
1671 }
1672 case kX86Jcc32: {
1673 LIR *target_lir = lir->target;
1674 DCHECK(target_lir != NULL);
buzbee0d829482013-10-11 15:24:55 -07001675 CodeOffset pc = lir->offset + 6 /* 2 byte opcode + rel32 */;
1676 CodeOffset target = target_lir->offset;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001677 int delta = target - pc;
1678 if (kVerbosePcFixup) {
1679 LOG(INFO) << "Source:";
1680 DumpLIRInsn(lir, 0);
1681 LOG(INFO) << "Target:";
1682 DumpLIRInsn(target_lir, 0);
1683 LOG(INFO) << "Delta " << delta;
1684 }
1685 lir->operands[0] = delta;
1686 break;
1687 }
Mark Mendell4028a6c2014-02-19 20:06:20 -08001688 case kX86Jecxz8: {
1689 LIR *target_lir = lir->target;
1690 DCHECK(target_lir != NULL);
1691 CodeOffset pc;
1692 pc = lir->offset + 2; // opcode + rel8
1693 CodeOffset target = target_lir->offset;
1694 int delta = target - pc;
1695 lir->operands[0] = delta;
1696 DCHECK(IS_SIMM8(delta));
1697 break;
1698 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001699 case kX86Jmp8: {
1700 LIR *target_lir = lir->target;
1701 DCHECK(target_lir != NULL);
1702 int delta = 0;
buzbee0d829482013-10-11 15:24:55 -07001703 CodeOffset pc;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001704 if (IS_SIMM8(lir->operands[0])) {
1705 pc = lir->offset + 2 /* opcode + rel8 */;
1706 } else {
1707 pc = lir->offset + 5 /* opcode + rel32 */;
1708 }
buzbee0d829482013-10-11 15:24:55 -07001709 CodeOffset target = target_lir->offset;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001710 delta = target - pc;
1711 if (!(cu_->disable_opt & (1 << kSafeOptimizations)) && delta == 0) {
1712 // Useless branch
buzbee252254b2013-09-08 16:20:53 -07001713 NopLIR(lir);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001714 if (kVerbosePcFixup) {
1715 LOG(INFO) << "Retry for useless branch at " << lir->offset;
1716 }
1717 res = kRetryAll;
1718 } else if (IS_SIMM8(delta) != IS_SIMM8(lir->operands[0])) {
1719 if (kVerbosePcFixup) {
1720 LOG(INFO) << "Retry for JMP growth at " << lir->offset;
1721 }
1722 lir->opcode = kX86Jmp32;
Vladimir Marko8dea81c2014-06-06 14:50:36 +01001723 lir->flags.size = GetInsnSize(lir);
1724 DCHECK(lir->u.m.def_mask->Equals(kEncodeAll));
1725 DCHECK(lir->u.m.use_mask->Equals(kEncodeAll));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001726 res = kRetryAll;
1727 }
1728 lir->operands[0] = delta;
1729 break;
1730 }
1731 case kX86Jmp32: {
1732 LIR *target_lir = lir->target;
1733 DCHECK(target_lir != NULL);
buzbee0d829482013-10-11 15:24:55 -07001734 CodeOffset pc = lir->offset + 5 /* opcode + rel32 */;
1735 CodeOffset target = target_lir->offset;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001736 int delta = target - pc;
1737 lir->operands[0] = delta;
1738 break;
1739 }
1740 default:
Mark Mendell67c39c42014-01-31 17:28:00 -08001741 if (lir->flags.fixup == kFixupLoad) {
1742 LIR *target_lir = lir->target;
1743 DCHECK(target_lir != NULL);
1744 CodeOffset target = target_lir->offset;
1745 lir->operands[2] = target;
1746 int newSize = GetInsnSize(lir);
1747 if (newSize != lir->flags.size) {
1748 lir->flags.size = newSize;
1749 res = kRetryAll;
1750 }
1751 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001752 break;
1753 }
1754 }
1755
1756 /*
1757 * If one of the pc-relative instructions expanded we'll have
1758 * to make another pass. Don't bother to fully assemble the
1759 * instruction.
1760 */
1761 if (res != kSuccess) {
1762 continue;
1763 }
1764 CHECK_EQ(static_cast<size_t>(lir->offset), code_buffer_.size());
1765 const X86EncodingMap *entry = &X86Mir2Lir::EncodingMap[lir->opcode];
1766 size_t starting_cbuf_size = code_buffer_.size();
1767 switch (entry->kind) {
1768 case kData: // 4 bytes of data
1769 code_buffer_.push_back(lir->operands[0]);
1770 break;
Ian Rogers0f9b9c52014-06-09 01:32:12 -07001771 case kNullary: // 1 byte of opcode and possible prefixes.
1772 EmitNullary(entry);
Mark Mendell4028a6c2014-02-19 20:06:20 -08001773 break;
Vladimir Markoa8b4caf2013-10-24 15:08:57 +01001774 case kRegOpcode: // lir operands - 0: reg
1775 EmitOpRegOpcode(entry, lir->operands[0]);
1776 break;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001777 case kReg: // lir operands - 0: reg
1778 EmitOpReg(entry, lir->operands[0]);
1779 break;
1780 case kMem: // lir operands - 0: base, 1: disp
1781 EmitOpMem(entry, lir->operands[0], lir->operands[1]);
1782 break;
Vladimir Marko057c74a2013-12-03 15:20:45 +00001783 case kArray: // lir operands - 0: base, 1: index, 2: scale, 3: disp
1784 EmitOpArray(entry, lir->operands[0], lir->operands[1], lir->operands[2], lir->operands[3]);
1785 break;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001786 case kMemReg: // lir operands - 0: base, 1: disp, 2: reg
1787 EmitMemReg(entry, lir->operands[0], lir->operands[1], lir->operands[2]);
1788 break;
Mark Mendell343adb52013-12-18 06:02:17 -08001789 case kMemImm: // lir operands - 0: base, 1: disp, 2: immediate
1790 EmitMemImm(entry, lir->operands[0], lir->operands[1], lir->operands[2]);
1791 break;
Mark Mendell2637f2e2014-04-30 10:10:47 -04001792 case kArrayImm: // lir operands - 0: base, 1: index, 2: disp, 3:scale, 4:immediate
1793 EmitArrayImm(entry, lir->operands[0], lir->operands[1], lir->operands[2],
1794 lir->operands[3], lir->operands[4]);
1795 break;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001796 case kArrayReg: // lir operands - 0: base, 1: index, 2: scale, 3: disp, 4: reg
1797 EmitArrayReg(entry, lir->operands[0], lir->operands[1], lir->operands[2],
1798 lir->operands[3], lir->operands[4]);
1799 break;
1800 case kRegMem: // lir operands - 0: reg, 1: base, 2: disp
1801 EmitRegMem(entry, lir->operands[0], lir->operands[1], lir->operands[2]);
1802 break;
1803 case kRegArray: // lir operands - 0: reg, 1: base, 2: index, 3: scale, 4: disp
1804 EmitRegArray(entry, lir->operands[0], lir->operands[1], lir->operands[2],
1805 lir->operands[3], lir->operands[4]);
1806 break;
1807 case kRegThread: // lir operands - 0: reg, 1: disp
1808 EmitRegThread(entry, lir->operands[0], lir->operands[1]);
1809 break;
1810 case kRegReg: // lir operands - 0: reg1, 1: reg2
1811 EmitRegReg(entry, lir->operands[0], lir->operands[1]);
1812 break;
1813 case kRegRegStore: // lir operands - 0: reg2, 1: reg1
1814 EmitRegReg(entry, lir->operands[1], lir->operands[0]);
1815 break;
Ian Rogers0f9b9c52014-06-09 01:32:12 -07001816 case kMemRegImm: // lir operands - 0: base, 1: disp, 2: reg 3: immediate
Mark Mendell2637f2e2014-04-30 10:10:47 -04001817 EmitMemRegImm(entry, lir->operands[0], lir->operands[1], lir->operands[2],
1818 lir->operands[3]);
1819 break;
Ian Rogers0f9b9c52014-06-09 01:32:12 -07001820 case kRegRegImm: // lir operands - 0: reg1, 1: reg2, 2: imm
Brian Carlstrom7940e442013-07-12 13:46:57 -07001821 EmitRegRegImm(entry, lir->operands[0], lir->operands[1], lir->operands[2]);
1822 break;
Ian Rogers0f9b9c52014-06-09 01:32:12 -07001823 case kRegRegImmStore: // lir operands - 0: reg2, 1: reg1, 2: imm
1824 EmitRegRegImm(entry, lir->operands[1], lir->operands[0], lir->operands[2]);
1825 break;
1826 case kRegMemImm: // lir operands - 0: reg, 1: base, 2: disp, 3: imm
Mark Mendell4708dcd2014-01-22 09:05:18 -08001827 EmitRegMemImm(entry, lir->operands[0], lir->operands[1], lir->operands[2],
1828 lir->operands[3]);
1829 break;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001830 case kRegImm: // lir operands - 0: reg, 1: immediate
1831 EmitRegImm(entry, lir->operands[0], lir->operands[1]);
1832 break;
1833 case kThreadImm: // lir operands - 0: disp, 1: immediate
1834 EmitThreadImm(entry, lir->operands[0], lir->operands[1]);
1835 break;
1836 case kMovRegImm: // lir operands - 0: reg, 1: immediate
1837 EmitMovRegImm(entry, lir->operands[0], lir->operands[1]);
1838 break;
Yixin Shou5192cbb2014-07-01 13:48:17 -04001839 case kMovRegQuadImm: {
1840 int64_t value = static_cast<int64_t>(static_cast<int64_t>(lir->operands[1]) << 32 |
1841 static_cast<uint32_t>(lir->operands[2]));
1842 EmitMovRegImm(entry, lir->operands[0], value);
1843 }
1844 break;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001845 case kShiftRegImm: // lir operands - 0: reg, 1: immediate
1846 EmitShiftRegImm(entry, lir->operands[0], lir->operands[1]);
1847 break;
Mark Mendell2637f2e2014-04-30 10:10:47 -04001848 case kShiftMemImm: // lir operands - 0: base, 1: disp, 2:immediate
1849 EmitShiftMemImm(entry, lir->operands[0], lir->operands[1], lir->operands[2]);
1850 break;
Brian Carlstrom7934ac22013-07-26 10:54:15 -07001851 case kShiftRegCl: // lir operands - 0: reg, 1: cl
Brian Carlstrom7940e442013-07-12 13:46:57 -07001852 EmitShiftRegCl(entry, lir->operands[0], lir->operands[1]);
1853 break;
Mark Mendellfeb2b4e2014-01-28 12:59:49 -08001854 case kShiftMemCl: // lir operands - 0: base, 1:displacement, 2: cl
1855 EmitShiftMemCl(entry, lir->operands[0], lir->operands[1], lir->operands[2]);
1856 break;
Yixin Shouf40f8902014-08-14 14:10:32 -04001857 case kShiftRegRegCl: // lir operands - 0: reg1, 1: reg2, 2: cl
1858 EmitShiftRegRegCl(entry, lir->operands[1], lir->operands[0], lir->operands[2]);
1859 break;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001860 case kRegCond: // lir operands - 0: reg, 1: condition
1861 EmitRegCond(entry, lir->operands[0], lir->operands[1]);
1862 break;
Mark Mendell2637f2e2014-04-30 10:10:47 -04001863 case kMemCond: // lir operands - 0: base, 1: displacement, 2: condition
1864 EmitMemCond(entry, lir->operands[0], lir->operands[1], lir->operands[2]);
1865 break;
Razvan A Lupusorubd288c22013-12-20 17:27:23 -08001866 case kRegRegCond: // lir operands - 0: reg, 1: reg, 2: condition
1867 EmitRegRegCond(entry, lir->operands[0], lir->operands[1], lir->operands[2]);
1868 break;
Mark Mendell2637f2e2014-04-30 10:10:47 -04001869 case kRegMemCond: // lir operands - 0: reg, 1: reg, displacement, 3: condition
Dmitry Petrochenkoa20468c2014-04-30 13:40:19 +07001870 EmitRegMemCond(entry, lir->operands[0], lir->operands[1], lir->operands[2],
1871 lir->operands[3]);
Mark Mendell2637f2e2014-04-30 10:10:47 -04001872 break;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001873 case kJmp: // lir operands - 0: rel
Brian Carlstrom60d7a652014-03-13 18:10:08 -07001874 if (entry->opcode == kX86JmpT) {
1875 // This works since the instruction format for jmp and call is basically the same and
1876 // EmitCallThread loads opcode info.
1877 EmitCallThread(entry, lir->operands[0]);
1878 } else {
1879 EmitJmp(entry, lir->operands[0]);
1880 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001881 break;
1882 case kJcc: // lir operands - 0: rel, 1: CC, target assigned
1883 EmitJcc(entry, lir->operands[0], lir->operands[1]);
1884 break;
1885 case kCall:
1886 switch (entry->opcode) {
Mark Mendell55d0eac2014-02-06 11:02:52 -08001887 case kX86CallI: // lir operands - 0: disp
1888 EmitCallImmediate(entry, lir->operands[0]);
1889 break;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001890 case kX86CallM: // lir operands - 0: base, 1: disp
1891 EmitCallMem(entry, lir->operands[0], lir->operands[1]);
1892 break;
1893 case kX86CallT: // lir operands - 0: disp
1894 EmitCallThread(entry, lir->operands[0]);
1895 break;
1896 default:
1897 EmitUnimplemented(entry, lir);
1898 break;
1899 }
1900 break;
1901 case kPcRel: // lir operands - 0: reg, 1: base, 2: index, 3: scale, 4: table
1902 EmitPcRel(entry, lir->operands[0], lir->operands[1], lir->operands[2],
1903 lir->operands[3], lir->operands[4]);
1904 break;
Dmitry Petrochenkoa20468c2014-04-30 13:40:19 +07001905 case kMacro: // lir operands - 0: reg
Brian Carlstrom7940e442013-07-12 13:46:57 -07001906 EmitMacro(entry, lir->operands[0], lir->offset);
1907 break;
Ian Rogers0f9b9c52014-06-09 01:32:12 -07001908 case kNop: // TODO: these instruction kinds are missing implementations.
1909 case kThreadReg:
1910 case kRegArrayImm:
1911 case kShiftArrayImm:
1912 case kShiftArrayCl:
1913 case kArrayCond:
1914 case kUnimplemented:
Brian Carlstrom7940e442013-07-12 13:46:57 -07001915 EmitUnimplemented(entry, lir);
1916 break;
1917 }
Ian Rogers5aa6e042014-06-13 16:38:24 -07001918 DCHECK_EQ(lir->flags.size, GetInsnSize(lir));
1919 CHECK_EQ(lir->flags.size, code_buffer_.size() - starting_cbuf_size)
Brian Carlstrom7940e442013-07-12 13:46:57 -07001920 << "Instruction size mismatch for entry: " << X86Mir2Lir::EncodingMap[lir->opcode].name;
1921 }
1922 return res;
1923}
1924
buzbeeb48819d2013-09-14 16:15:25 -07001925// LIR offset assignment.
1926// TODO: consolidate w/ Arm assembly mechanism.
1927int X86Mir2Lir::AssignInsnOffsets() {
1928 LIR* lir;
1929 int offset = 0;
1930
1931 for (lir = first_lir_insn_; lir != NULL; lir = NEXT_LIR(lir)) {
1932 lir->offset = offset;
buzbee409fe942013-10-11 10:49:56 -07001933 if (LIKELY(!IsPseudoLirOp(lir->opcode))) {
buzbeeb48819d2013-09-14 16:15:25 -07001934 if (!lir->flags.is_nop) {
1935 offset += lir->flags.size;
1936 }
1937 } else if (UNLIKELY(lir->opcode == kPseudoPseudoAlign4)) {
1938 if (offset & 0x2) {
1939 offset += 2;
1940 lir->operands[0] = 1;
1941 } else {
1942 lir->operands[0] = 0;
1943 }
1944 }
1945 /* Pseudo opcodes don't consume space */
1946 }
1947 return offset;
1948}
1949
1950/*
1951 * Walk the compilation unit and assign offsets to instructions
1952 * and literals and compute the total size of the compiled unit.
1953 * TODO: consolidate w/ Arm assembly mechanism.
1954 */
1955void X86Mir2Lir::AssignOffsets() {
1956 int offset = AssignInsnOffsets();
1957
Mark Mendelld65c51a2014-04-29 16:55:20 -04001958 if (const_vectors_ != nullptr) {
1959 /* assign offsets to vector literals */
1960
1961 // First, get offset to 12 mod 16 to align to 16 byte boundary.
1962 // This will ensure that the vector is 16 byte aligned, as the procedure is
1963 // always aligned at at 4 mod 16.
1964 int align_size = (16-4) - (offset & 0xF);
1965 if (align_size < 0) {
1966 align_size += 16;
1967 }
1968
1969 offset += align_size;
1970
1971 // Now assign each literal the right offset.
1972 for (LIR *p = const_vectors_; p != nullptr; p = p->next) {
1973 p->offset = offset;
1974 offset += 16;
1975 }
1976 }
1977
buzbeeb48819d2013-09-14 16:15:25 -07001978 /* Const values have to be word aligned */
Andreas Gampe66018822014-05-05 20:47:19 -07001979 offset = RoundUp(offset, 4);
buzbeeb48819d2013-09-14 16:15:25 -07001980
1981 /* Set up offsets for literals */
1982 data_offset_ = offset;
1983
1984 offset = AssignLiteralOffset(offset);
1985
1986 offset = AssignSwitchTablesOffset(offset);
1987
1988 offset = AssignFillArrayDataOffset(offset);
1989
1990 total_size_ = offset;
1991}
1992
1993/*
1994 * Go over each instruction in the list and calculate the offset from the top
1995 * before sending them off to the assembler. If out-of-range branch distance is
1996 * seen rearrange the instructions a bit to correct it.
1997 * TODO: consolidate w/ Arm assembly mechanism.
1998 */
1999void X86Mir2Lir::AssembleLIR() {
buzbeea61f4952013-08-23 14:27:06 -07002000 cu_->NewTimingSplit("Assemble");
Mark Mendell55d0eac2014-02-06 11:02:52 -08002001
2002 // We will remove the method address if we never ended up using it
2003 if (store_method_addr_ && !store_method_addr_used_) {
2004 setup_method_address_[0]->flags.is_nop = true;
2005 setup_method_address_[1]->flags.is_nop = true;
2006 }
2007
buzbeeb48819d2013-09-14 16:15:25 -07002008 AssignOffsets();
2009 int assembler_retries = 0;
2010 /*
2011 * Assemble here. Note that we generate code with optimistic assumptions
2012 * and if found now to work, we'll have to redo the sequence and retry.
2013 */
2014
2015 while (true) {
2016 AssemblerStatus res = AssembleInstructions(0);
2017 if (res == kSuccess) {
2018 break;
2019 } else {
2020 assembler_retries++;
2021 if (assembler_retries > MAX_ASSEMBLER_RETRIES) {
2022 CodegenDump();
2023 LOG(FATAL) << "Assembler error - too many retries";
2024 }
2025 // Redo offsets and try again
2026 AssignOffsets();
2027 code_buffer_.clear();
2028 }
2029 }
2030
2031 // Install literals
2032 InstallLiteralPools();
2033
2034 // Install switch tables
2035 InstallSwitchTables();
2036
2037 // Install fill array data
2038 InstallFillArrayData();
2039
2040 // Create the mapping table and native offset to reference map.
buzbeea61f4952013-08-23 14:27:06 -07002041 cu_->NewTimingSplit("PcMappingTable");
buzbeeb48819d2013-09-14 16:15:25 -07002042 CreateMappingTables();
2043
buzbeea61f4952013-08-23 14:27:06 -07002044 cu_->NewTimingSplit("GcMap");
buzbeeb48819d2013-09-14 16:15:25 -07002045 CreateNativeGcMap();
2046}
2047
Brian Carlstrom7940e442013-07-12 13:46:57 -07002048} // namespace art