blob: d35712e23503794be88af7a3187b0a5ee14a4e22 [file] [log] [blame]
Damien Georgec90f59e2014-09-06 23:06:36 +01001/*
2 * This file is part of the Micro Python project, http://micropython.org/
3 *
4 * The MIT License (MIT)
5 *
6 * Copyright (c) 2014 Damien P. George
7 *
8 * Permission is hereby granted, free of charge, to any person obtaining a copy
9 * of this software and associated documentation files (the "Software"), to deal
10 * in the Software without restriction, including without limitation the rights
11 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12 * copies of the Software, and to permit persons to whom the Software is
13 * furnished to do so, subject to the following conditions:
14 *
15 * The above copyright notice and this permission notice shall be included in
16 * all copies or substantial portions of the Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
21 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
24 * THE SOFTWARE.
25 */
26
27#include <stdint.h>
28#include <stdio.h>
29#include <assert.h>
30#include <string.h>
31
Damien George51dfcb42015-01-01 20:27:54 +000032#include "py/mpconfig.h"
Damien Georgec90f59e2014-09-06 23:06:36 +010033
34// wrapper around everything in this file
35#if MICROPY_EMIT_X86
36
Damien George51dfcb42015-01-01 20:27:54 +000037#include "py/asmx86.h"
Damien Georgec90f59e2014-09-06 23:06:36 +010038
39/* all offsets are measured in multiples of 4 bytes */
40#define WORD_SIZE (4)
41
42#define OPCODE_NOP (0x90)
43#define OPCODE_PUSH_R32 (0x50)
44//#define OPCODE_PUSH_I32 (0x68)
45//#define OPCODE_PUSH_M32 (0xff) /* /6 */
46#define OPCODE_POP_R32 (0x58)
47#define OPCODE_RET (0xc3)
48//#define OPCODE_MOV_I8_TO_R8 (0xb0) /* +rb */
49#define OPCODE_MOV_I32_TO_R32 (0xb8)
50//#define OPCODE_MOV_I32_TO_RM32 (0xc7)
Damien Georged66e4862014-09-29 10:13:49 +010051#define OPCODE_MOV_R8_TO_RM8 (0x88) /* /r */
Damien George91cfd412014-10-12 16:59:29 +010052#define OPCODE_MOV_R32_TO_RM32 (0x89) /* /r */
53#define OPCODE_MOV_RM32_TO_R32 (0x8b) /* /r */
54#define OPCODE_MOVZX_RM8_TO_R32 (0xb6) /* 0x0f 0xb6/r */
55#define OPCODE_MOVZX_RM16_TO_R32 (0xb7) /* 0x0f 0xb7/r */
Damien Georgec90f59e2014-09-06 23:06:36 +010056#define OPCODE_LEA_MEM_TO_R32 (0x8d) /* /r */
Damien George1ef23482014-10-12 14:21:06 +010057#define OPCODE_AND_R32_TO_RM32 (0x21) /* /r */
58#define OPCODE_OR_R32_TO_RM32 (0x09) /* /r */
Damien Georgec90f59e2014-09-06 23:06:36 +010059#define OPCODE_XOR_R32_TO_RM32 (0x31) /* /r */
60#define OPCODE_ADD_R32_TO_RM32 (0x01)
Damien George03281b32014-09-06 22:38:50 +000061#define OPCODE_ADD_I32_TO_RM32 (0x81) /* /0 */
62#define OPCODE_ADD_I8_TO_RM32 (0x83) /* /0 */
Damien George3112cde2014-09-29 18:45:42 +010063#define OPCODE_SUB_R32_FROM_RM32 (0x29)
Damien Georgec90f59e2014-09-06 23:06:36 +010064#define OPCODE_SUB_I32_FROM_RM32 (0x81) /* /5 */
65#define OPCODE_SUB_I8_FROM_RM32 (0x83) /* /5 */
66//#define OPCODE_SHL_RM32_BY_I8 (0xc1) /* /4 */
67//#define OPCODE_SHR_RM32_BY_I8 (0xc1) /* /5 */
68//#define OPCODE_SAR_RM32_BY_I8 (0xc1) /* /7 */
Damien George3112cde2014-09-29 18:45:42 +010069#define OPCODE_SHL_RM32_CL (0xd3) /* /4 */
70#define OPCODE_SAR_RM32_CL (0xd3) /* /7 */
Damien Georgec90f59e2014-09-06 23:06:36 +010071//#define OPCODE_CMP_I32_WITH_RM32 (0x81) /* /7 */
72//#define OPCODE_CMP_I8_WITH_RM32 (0x83) /* /7 */
73#define OPCODE_CMP_R32_WITH_RM32 (0x39)
74//#define OPCODE_CMP_RM32_WITH_R32 (0x3b)
75#define OPCODE_TEST_R8_WITH_RM8 (0x84) /* /r */
76#define OPCODE_JMP_REL8 (0xeb)
77#define OPCODE_JMP_REL32 (0xe9)
78#define OPCODE_JCC_REL8 (0x70) /* | jcc type */
79#define OPCODE_JCC_REL32_A (0x0f)
80#define OPCODE_JCC_REL32_B (0x80) /* | jcc type */
81#define OPCODE_SETCC_RM8_A (0x0f)
82#define OPCODE_SETCC_RM8_B (0x90) /* | jcc type, /0 */
83#define OPCODE_CALL_REL32 (0xe8)
84#define OPCODE_CALL_RM32 (0xff) /* /2 */
85#define OPCODE_LEAVE (0xc9)
86
87#define MODRM_R32(x) ((x) << 3)
88#define MODRM_RM_DISP0 (0x00)
89#define MODRM_RM_DISP8 (0x40)
90#define MODRM_RM_DISP32 (0x80)
91#define MODRM_RM_REG (0xc0)
92#define MODRM_RM_R32(x) (x)
93
Damien Georged66e4862014-09-29 10:13:49 +010094#define OP_SIZE_PREFIX (0x66)
95
Damien Georgec90f59e2014-09-06 23:06:36 +010096#define IMM32_L0(x) ((x) & 0xff)
97#define IMM32_L1(x) (((x) >> 8) & 0xff)
98#define IMM32_L2(x) (((x) >> 16) & 0xff)
99#define IMM32_L3(x) (((x) >> 24) & 0xff)
100
101#define SIGNED_FIT8(x) (((x) & 0xffffff80) == 0) || (((x) & 0xffffff80) == 0xffffff80)
102
103struct _asm_x86_t {
104 uint pass;
105 mp_uint_t code_offset;
106 mp_uint_t code_size;
107 byte *code_base;
108 byte dummy_data[8];
109
Damien George0b610de2014-09-29 16:25:04 +0100110 mp_uint_t max_num_labels;
111 mp_uint_t *label_offsets;
Damien Georgec90f59e2014-09-06 23:06:36 +0100112 int num_locals;
113};
114
115asm_x86_t *asm_x86_new(mp_uint_t max_num_labels) {
116 asm_x86_t *as;
117
118 as = m_new0(asm_x86_t, 1);
119 as->max_num_labels = max_num_labels;
Damien George0b610de2014-09-29 16:25:04 +0100120 as->label_offsets = m_new(mp_uint_t, max_num_labels);
Damien Georgec90f59e2014-09-06 23:06:36 +0100121
122 return as;
123}
124
125void asm_x86_free(asm_x86_t *as, bool free_code) {
126 if (free_code) {
127 MP_PLAT_FREE_EXEC(as->code_base, as->code_size);
128 }
Damien George0b610de2014-09-29 16:25:04 +0100129 m_del(mp_uint_t, as->label_offsets, as->max_num_labels);
Damien Georgec90f59e2014-09-06 23:06:36 +0100130 m_del_obj(asm_x86_t, as);
131}
132
133void asm_x86_start_pass(asm_x86_t *as, mp_uint_t pass) {
Damien Georgec90f59e2014-09-06 23:06:36 +0100134 if (pass == ASM_X86_PASS_COMPUTE) {
135 // reset all labels
Damien George0b610de2014-09-29 16:25:04 +0100136 memset(as->label_offsets, -1, as->max_num_labels * sizeof(mp_uint_t));
Damien Georged9dc6ff2015-01-14 00:38:33 +0000137 } else if (pass == ASM_X86_PASS_EMIT) {
138 MP_PLAT_ALLOC_EXEC(as->code_offset, (void**)&as->code_base, &as->code_size);
139 if (as->code_base == NULL) {
Damien Georgec90f59e2014-09-06 23:06:36 +0100140 assert(0);
141 }
142 }
Damien Georged9dc6ff2015-01-14 00:38:33 +0000143 as->pass = pass;
144 as->code_offset = 0;
145}
146
147void asm_x86_end_pass(asm_x86_t *as) {
Damien Georgec90f59e2014-09-06 23:06:36 +0100148}
149
150// all functions must go through this one to emit bytes
151STATIC byte *asm_x86_get_cur_to_write_bytes(asm_x86_t *as, int num_bytes_to_write) {
152 //printf("emit %d\n", num_bytes_to_write);
153 if (as->pass < ASM_X86_PASS_EMIT) {
154 as->code_offset += num_bytes_to_write;
155 return as->dummy_data;
156 } else {
157 assert(as->code_offset + num_bytes_to_write <= as->code_size);
158 byte *c = as->code_base + as->code_offset;
159 as->code_offset += num_bytes_to_write;
160 return c;
161 }
162}
163
164mp_uint_t asm_x86_get_code_size(asm_x86_t *as) {
165 return as->code_size;
166}
167
168void *asm_x86_get_code(asm_x86_t *as) {
169 return as->code_base;
170}
171
172STATIC void asm_x86_write_byte_1(asm_x86_t *as, byte b1) {
173 byte* c = asm_x86_get_cur_to_write_bytes(as, 1);
174 c[0] = b1;
175}
176
177STATIC void asm_x86_write_byte_2(asm_x86_t *as, byte b1, byte b2) {
178 byte* c = asm_x86_get_cur_to_write_bytes(as, 2);
179 c[0] = b1;
180 c[1] = b2;
181}
182
183STATIC void asm_x86_write_byte_3(asm_x86_t *as, byte b1, byte b2, byte b3) {
184 byte* c = asm_x86_get_cur_to_write_bytes(as, 3);
185 c[0] = b1;
186 c[1] = b2;
187 c[2] = b3;
188}
189
190STATIC void asm_x86_write_word32(asm_x86_t *as, int w32) {
191 byte* c = asm_x86_get_cur_to_write_bytes(as, 4);
192 c[0] = IMM32_L0(w32);
193 c[1] = IMM32_L1(w32);
194 c[2] = IMM32_L2(w32);
195 c[3] = IMM32_L3(w32);
196}
197
198STATIC void asm_x86_write_r32_disp(asm_x86_t *as, int r32, int disp_r32, int disp_offset) {
Damien George0b610de2014-09-29 16:25:04 +0100199 assert(disp_r32 != ASM_X86_REG_ESP);
Damien Georgec90f59e2014-09-06 23:06:36 +0100200
Damien George0b610de2014-09-29 16:25:04 +0100201 if (disp_offset == 0 && disp_r32 != ASM_X86_REG_EBP) {
Damien Georgec90f59e2014-09-06 23:06:36 +0100202 asm_x86_write_byte_1(as, MODRM_R32(r32) | MODRM_RM_DISP0 | MODRM_RM_R32(disp_r32));
203 } else if (SIGNED_FIT8(disp_offset)) {
204 asm_x86_write_byte_2(as, MODRM_R32(r32) | MODRM_RM_DISP8 | MODRM_RM_R32(disp_r32), IMM32_L0(disp_offset));
205 } else {
206 asm_x86_write_byte_1(as, MODRM_R32(r32) | MODRM_RM_DISP32 | MODRM_RM_R32(disp_r32));
207 asm_x86_write_word32(as, disp_offset);
208 }
209}
210
Damien George3112cde2014-09-29 18:45:42 +0100211STATIC void asm_x86_generic_r32_r32(asm_x86_t *as, int dest_r32, int src_r32, int op) {
212 asm_x86_write_byte_2(as, op, MODRM_R32(src_r32) | MODRM_RM_REG | MODRM_RM_R32(dest_r32));
213}
214
Damien Georgec90f59e2014-09-06 23:06:36 +0100215STATIC void asm_x86_nop(asm_x86_t *as) {
216 asm_x86_write_byte_1(as, OPCODE_NOP);
217}
218
219STATIC void asm_x86_push_r32(asm_x86_t *as, int src_r32) {
220 asm_x86_write_byte_1(as, OPCODE_PUSH_R32 | src_r32);
221}
222
223#if 0
224void asm_x86_push_i32(asm_x86_t *as, int src_i32) {
225 asm_x86_write_byte_1(as, OPCODE_PUSH_I32);
226 asm_x86_write_word32(as, src_i32);
227}
228
229void asm_x86_push_disp(asm_x86_t *as, int src_r32, int src_offset) {
230 asm_x86_write_byte_1(as, OPCODE_PUSH_M32);
231 asm_x86_write_r32_disp(as, 6, src_r32, src_offset);
232}
233#endif
234
235STATIC void asm_x86_pop_r32(asm_x86_t *as, int dest_r32) {
236 asm_x86_write_byte_1(as, OPCODE_POP_R32 | dest_r32);
237}
238
239STATIC void asm_x86_ret(asm_x86_t *as) {
240 asm_x86_write_byte_1(as, OPCODE_RET);
241}
242
Damien George3112cde2014-09-29 18:45:42 +0100243void asm_x86_mov_r32_r32(asm_x86_t *as, int dest_r32, int src_r32) {
244 asm_x86_generic_r32_r32(as, dest_r32, src_r32, OPCODE_MOV_R32_TO_RM32);
Damien Georgec90f59e2014-09-06 23:06:36 +0100245}
246
Damien George91cfd412014-10-12 16:59:29 +0100247void asm_x86_mov_r8_to_mem8(asm_x86_t *as, int src_r32, int dest_r32, int dest_disp) {
Damien Georged66e4862014-09-29 10:13:49 +0100248 asm_x86_write_byte_1(as, OPCODE_MOV_R8_TO_RM8);
249 asm_x86_write_r32_disp(as, src_r32, dest_r32, dest_disp);
250}
251
Damien George91cfd412014-10-12 16:59:29 +0100252void asm_x86_mov_r16_to_mem16(asm_x86_t *as, int src_r32, int dest_r32, int dest_disp) {
Damien Georged66e4862014-09-29 10:13:49 +0100253 asm_x86_write_byte_2(as, OP_SIZE_PREFIX, OPCODE_MOV_R32_TO_RM32);
254 asm_x86_write_r32_disp(as, src_r32, dest_r32, dest_disp);
255}
256
Damien George91cfd412014-10-12 16:59:29 +0100257void asm_x86_mov_r32_to_mem32(asm_x86_t *as, int src_r32, int dest_r32, int dest_disp) {
Damien Georgec90f59e2014-09-06 23:06:36 +0100258 asm_x86_write_byte_1(as, OPCODE_MOV_R32_TO_RM32);
259 asm_x86_write_r32_disp(as, src_r32, dest_r32, dest_disp);
260}
261
Damien George91cfd412014-10-12 16:59:29 +0100262void asm_x86_mov_mem8_to_r32zx(asm_x86_t *as, int src_r32, int src_disp, int dest_r32) {
263 asm_x86_write_byte_2(as, 0x0f, OPCODE_MOVZX_RM8_TO_R32);
264 asm_x86_write_r32_disp(as, dest_r32, src_r32, src_disp);
265}
266
267void asm_x86_mov_mem16_to_r32zx(asm_x86_t *as, int src_r32, int src_disp, int dest_r32) {
268 asm_x86_write_byte_2(as, 0x0f, OPCODE_MOVZX_RM16_TO_R32);
269 asm_x86_write_r32_disp(as, dest_r32, src_r32, src_disp);
270}
271
272void asm_x86_mov_mem32_to_r32(asm_x86_t *as, int src_r32, int src_disp, int dest_r32) {
Damien Georgec90f59e2014-09-06 23:06:36 +0100273 asm_x86_write_byte_1(as, OPCODE_MOV_RM32_TO_R32);
274 asm_x86_write_r32_disp(as, dest_r32, src_r32, src_disp);
275}
276
277STATIC void asm_x86_lea_disp_to_r32(asm_x86_t *as, int src_r32, int src_disp, int dest_r32) {
278 asm_x86_write_byte_1(as, OPCODE_LEA_MEM_TO_R32);
279 asm_x86_write_r32_disp(as, dest_r32, src_r32, src_disp);
280}
281
282#if 0
283void asm_x86_mov_i8_to_r8(asm_x86_t *as, int src_i8, int dest_r32) {
284 asm_x86_write_byte_2(as, OPCODE_MOV_I8_TO_R8 | dest_r32, src_i8);
285}
286#endif
287
288void asm_x86_mov_i32_to_r32(asm_x86_t *as, int src_i32, int dest_r32) {
289 asm_x86_write_byte_1(as, OPCODE_MOV_I32_TO_R32 | dest_r32);
290 asm_x86_write_word32(as, src_i32);
291}
292
293// src_i32 is stored as a full word in the code, and aligned to machine-word boundary
294void asm_x86_mov_i32_to_r32_aligned(asm_x86_t *as, int32_t src_i32, int dest_r32) {
295 // mov instruction uses 1 byte for the instruction, before the i32
296 while (((as->code_offset + 1) & (WORD_SIZE - 1)) != 0) {
297 asm_x86_nop(as);
298 }
299 asm_x86_mov_i32_to_r32(as, src_i32, dest_r32);
300}
301
Damien George1ef23482014-10-12 14:21:06 +0100302void asm_x86_and_r32_r32(asm_x86_t *as, int dest_r32, int src_r32) {
303 asm_x86_generic_r32_r32(as, dest_r32, src_r32, OPCODE_AND_R32_TO_RM32);
304}
305
306void asm_x86_or_r32_r32(asm_x86_t *as, int dest_r32, int src_r32) {
307 asm_x86_generic_r32_r32(as, dest_r32, src_r32, OPCODE_OR_R32_TO_RM32);
308}
309
Damien George3112cde2014-09-29 18:45:42 +0100310void asm_x86_xor_r32_r32(asm_x86_t *as, int dest_r32, int src_r32) {
311 asm_x86_generic_r32_r32(as, dest_r32, src_r32, OPCODE_XOR_R32_TO_RM32);
Damien Georgec90f59e2014-09-06 23:06:36 +0100312}
313
Damien George3112cde2014-09-29 18:45:42 +0100314void asm_x86_shl_r32_cl(asm_x86_t* as, int dest_r32) {
315 asm_x86_generic_r32_r32(as, dest_r32, 4, OPCODE_SHL_RM32_CL);
316}
317
318void asm_x86_sar_r32_cl(asm_x86_t* as, int dest_r32) {
319 asm_x86_generic_r32_r32(as, dest_r32, 7, OPCODE_SAR_RM32_CL);
320}
321
322void asm_x86_add_r32_r32(asm_x86_t *as, int dest_r32, int src_r32) {
323 asm_x86_generic_r32_r32(as, dest_r32, src_r32, OPCODE_ADD_R32_TO_RM32);
Damien Georgec90f59e2014-09-06 23:06:36 +0100324}
325
Damien George969a6b32014-12-10 22:07:04 +0000326STATIC void asm_x86_add_i32_to_r32(asm_x86_t *as, int src_i32, int dest_r32) {
Damien George03281b32014-09-06 22:38:50 +0000327 if (SIGNED_FIT8(src_i32)) {
Damien Georgec90f59e2014-09-06 23:06:36 +0100328 asm_x86_write_byte_2(as, OPCODE_ADD_I8_TO_RM32, MODRM_R32(0) | MODRM_RM_REG | MODRM_RM_R32(dest_r32));
329 asm_x86_write_byte_1(as, src_i32 & 0xff);
Damien George03281b32014-09-06 22:38:50 +0000330 } else {
Damien Georgec90f59e2014-09-06 23:06:36 +0100331 asm_x86_write_byte_2(as, OPCODE_ADD_I32_TO_RM32, MODRM_R32(0) | MODRM_RM_REG | MODRM_RM_R32(dest_r32));
332 asm_x86_write_word32(as, src_i32);
333 }
334}
335
Damien George3112cde2014-09-29 18:45:42 +0100336void asm_x86_sub_r32_r32(asm_x86_t *as, int dest_r32, int src_r32) {
337 asm_x86_generic_r32_r32(as, dest_r32, src_r32, OPCODE_SUB_R32_FROM_RM32);
Damien Georgec90f59e2014-09-06 23:06:36 +0100338}
Damien Georgec90f59e2014-09-06 23:06:36 +0100339
Damien George3112cde2014-09-29 18:45:42 +0100340STATIC void asm_x86_sub_r32_i32(asm_x86_t *as, int dest_r32, int src_i32) {
Damien Georgec90f59e2014-09-06 23:06:36 +0100341 if (SIGNED_FIT8(src_i32)) {
342 // defaults to 32 bit operation
343 asm_x86_write_byte_2(as, OPCODE_SUB_I8_FROM_RM32, MODRM_R32(5) | MODRM_RM_REG | MODRM_RM_R32(dest_r32));
344 asm_x86_write_byte_1(as, src_i32 & 0xff);
345 } else {
346 // defaults to 32 bit operation
347 asm_x86_write_byte_2(as, OPCODE_SUB_I32_FROM_RM32, MODRM_R32(5) | MODRM_RM_REG | MODRM_RM_R32(dest_r32));
348 asm_x86_write_word32(as, src_i32);
349 }
350}
351
352#if 0
353/* shifts not tested */
354void asm_x86_shl_r32_by_imm(asm_x86_t *as, int r32, int imm) {
355 asm_x86_write_byte_2(as, OPCODE_SHL_RM32_BY_I8, MODRM_R32(4) | MODRM_RM_REG | MODRM_RM_R32(r32));
356 asm_x86_write_byte_1(as, imm);
357}
358
359void asm_x86_shr_r32_by_imm(asm_x86_t *as, int r32, int imm) {
360 asm_x86_write_byte_2(as, OPCODE_SHR_RM32_BY_I8, MODRM_R32(5) | MODRM_RM_REG | MODRM_RM_R32(r32));
361 asm_x86_write_byte_1(as, imm);
362}
363
364void asm_x86_sar_r32_by_imm(asm_x86_t *as, int r32, int imm) {
365 asm_x86_write_byte_2(as, OPCODE_SAR_RM32_BY_I8, MODRM_R32(7) | MODRM_RM_REG | MODRM_RM_R32(r32));
366 asm_x86_write_byte_1(as, imm);
367}
368#endif
369
370void asm_x86_cmp_r32_with_r32(asm_x86_t *as, int src_r32_a, int src_r32_b) {
371 asm_x86_write_byte_2(as, OPCODE_CMP_R32_WITH_RM32, MODRM_R32(src_r32_a) | MODRM_RM_REG | MODRM_RM_R32(src_r32_b));
372}
373
374#if 0
375void asm_x86_cmp_i32_with_r32(asm_x86_t *as, int src_i32, int src_r32) {
376 if (SIGNED_FIT8(src_i32)) {
377 asm_x86_write_byte_2(as, OPCODE_CMP_I8_WITH_RM32, MODRM_R32(7) | MODRM_RM_REG | MODRM_RM_R32(src_r32));
378 asm_x86_write_byte_1(as, src_i32 & 0xff);
379 } else {
380 asm_x86_write_byte_2(as, OPCODE_CMP_I32_WITH_RM32, MODRM_R32(7) | MODRM_RM_REG | MODRM_RM_R32(src_r32));
381 asm_x86_write_word32(as, src_i32);
382 }
383}
384#endif
385
386void asm_x86_test_r8_with_r8(asm_x86_t *as, int src_r32_a, int src_r32_b) {
387 // TODO implement for other registers
Damien George0b610de2014-09-29 16:25:04 +0100388 assert(src_r32_a == ASM_X86_REG_EAX);
389 assert(src_r32_b == ASM_X86_REG_EAX);
Damien Georgec90f59e2014-09-06 23:06:36 +0100390 asm_x86_write_byte_2(as, OPCODE_TEST_R8_WITH_RM8, MODRM_R32(src_r32_a) | MODRM_RM_REG | MODRM_RM_R32(src_r32_b));
391}
392
393void asm_x86_setcc_r8(asm_x86_t *as, mp_uint_t jcc_type, int dest_r8) {
394 asm_x86_write_byte_3(as, OPCODE_SETCC_RM8_A, OPCODE_SETCC_RM8_B | jcc_type, MODRM_R32(0) | MODRM_RM_REG | MODRM_RM_R32(dest_r8));
395}
396
397void asm_x86_label_assign(asm_x86_t *as, mp_uint_t label) {
398 assert(label < as->max_num_labels);
399 if (as->pass < ASM_X86_PASS_EMIT) {
400 // assign label offset
401 assert(as->label_offsets[label] == -1);
402 as->label_offsets[label] = as->code_offset;
403 } else {
404 // ensure label offset has not changed from PASS_COMPUTE to PASS_EMIT
405 //printf("l%d: (at %d=%ld)\n", label, as->label_offsets[label], as->code_offset);
406 assert(as->label_offsets[label] == as->code_offset);
407 }
408}
409
Damien George0b610de2014-09-29 16:25:04 +0100410STATIC mp_uint_t get_label_dest(asm_x86_t *as, int label) {
Damien Georgec90f59e2014-09-06 23:06:36 +0100411 assert(label < as->max_num_labels);
412 return as->label_offsets[label];
413}
414
415void asm_x86_jmp_label(asm_x86_t *as, mp_uint_t label) {
Damien George0b610de2014-09-29 16:25:04 +0100416 mp_uint_t dest = get_label_dest(as, label);
417 mp_int_t rel = dest - as->code_offset;
418 if (dest != -1 && rel < 0) {
Damien Georgec90f59e2014-09-06 23:06:36 +0100419 // is a backwards jump, so we know the size of the jump on the first pass
420 // calculate rel assuming 8 bit relative jump
421 rel -= 2;
422 if (SIGNED_FIT8(rel)) {
423 asm_x86_write_byte_2(as, OPCODE_JMP_REL8, rel & 0xff);
424 } else {
425 rel += 2;
426 goto large_jump;
427 }
428 } else {
429 // is a forwards jump, so need to assume it's large
430 large_jump:
431 rel -= 5;
432 asm_x86_write_byte_1(as, OPCODE_JMP_REL32);
433 asm_x86_write_word32(as, rel);
434 }
435}
436
437void asm_x86_jcc_label(asm_x86_t *as, mp_uint_t jcc_type, mp_uint_t label) {
Damien George0b610de2014-09-29 16:25:04 +0100438 mp_uint_t dest = get_label_dest(as, label);
439 mp_int_t rel = dest - as->code_offset;
440 if (dest != -1 && rel < 0) {
Damien Georgec90f59e2014-09-06 23:06:36 +0100441 // is a backwards jump, so we know the size of the jump on the first pass
442 // calculate rel assuming 8 bit relative jump
443 rel -= 2;
444 if (SIGNED_FIT8(rel)) {
445 asm_x86_write_byte_2(as, OPCODE_JCC_REL8 | jcc_type, rel & 0xff);
446 } else {
447 rel += 2;
448 goto large_jump;
449 }
450 } else {
451 // is a forwards jump, so need to assume it's large
452 large_jump:
453 rel -= 6;
454 asm_x86_write_byte_2(as, OPCODE_JCC_REL32_A, OPCODE_JCC_REL32_B | jcc_type);
455 asm_x86_write_word32(as, rel);
456 }
457}
458
459void asm_x86_entry(asm_x86_t *as, mp_uint_t num_locals) {
Damien George0b610de2014-09-29 16:25:04 +0100460 asm_x86_push_r32(as, ASM_X86_REG_EBP);
Damien George3112cde2014-09-29 18:45:42 +0100461 asm_x86_mov_r32_r32(as, ASM_X86_REG_EBP, ASM_X86_REG_ESP);
Damien George25d90412014-09-06 23:24:32 +0000462 if (num_locals > 0) {
Damien George3112cde2014-09-29 18:45:42 +0100463 asm_x86_sub_r32_i32(as, ASM_X86_REG_ESP, num_locals * WORD_SIZE);
Damien George25d90412014-09-06 23:24:32 +0000464 }
Damien George0b610de2014-09-29 16:25:04 +0100465 asm_x86_push_r32(as, ASM_X86_REG_EBX);
466 asm_x86_push_r32(as, ASM_X86_REG_ESI);
467 asm_x86_push_r32(as, ASM_X86_REG_EDI);
Damien George03281b32014-09-06 22:38:50 +0000468 // TODO align stack on 16-byte boundary
Damien Georgec90f59e2014-09-06 23:06:36 +0100469 as->num_locals = num_locals;
470}
471
472void asm_x86_exit(asm_x86_t *as) {
Damien George0b610de2014-09-29 16:25:04 +0100473 asm_x86_pop_r32(as, ASM_X86_REG_EDI);
474 asm_x86_pop_r32(as, ASM_X86_REG_ESI);
475 asm_x86_pop_r32(as, ASM_X86_REG_EBX);
Damien Georgec90f59e2014-09-06 23:06:36 +0100476 asm_x86_write_byte_1(as, OPCODE_LEAVE);
477 asm_x86_ret(as);
478}
479
480#if 0
481void asm_x86_push_arg(asm_x86_t *as, int src_arg_num) {
Damien George0b610de2014-09-29 16:25:04 +0100482 asm_x86_push_disp(as, ASM_X86_REG_EBP, 2 * WORD_SIZE + src_arg_num * WORD_SIZE);
Damien Georgec90f59e2014-09-06 23:06:36 +0100483}
Damien George03281b32014-09-06 22:38:50 +0000484#endif
Damien Georgec90f59e2014-09-06 23:06:36 +0100485
486void asm_x86_mov_arg_to_r32(asm_x86_t *as, int src_arg_num, int dest_r32) {
Damien George91cfd412014-10-12 16:59:29 +0100487 asm_x86_mov_mem32_to_r32(as, ASM_X86_REG_EBP, 2 * WORD_SIZE + src_arg_num * WORD_SIZE, dest_r32);
Damien Georgec90f59e2014-09-06 23:06:36 +0100488}
489
Damien George03281b32014-09-06 22:38:50 +0000490#if 0
Damien Georgec90f59e2014-09-06 23:06:36 +0100491void asm_x86_mov_r32_to_arg(asm_x86_t *as, int src_r32, int dest_arg_num) {
Damien George91cfd412014-10-12 16:59:29 +0100492 asm_x86_mov_r32_to_mem32(as, src_r32, ASM_X86_REG_EBP, 2 * WORD_SIZE + dest_arg_num * WORD_SIZE);
Damien Georgec90f59e2014-09-06 23:06:36 +0100493}
494#endif
495
496// locals:
497// - stored on the stack in ascending order
498// - numbered 0 through as->num_locals-1
499// - EBP points above the last local
500//
501// | EPB
502// v
503// l0 l1 l2 ... l(n-1)
504// ^ ^
505// | low address | high address in RAM
506//
507STATIC int asm_x86_local_offset_from_ebp(asm_x86_t *as, int local_num) {
508 return (-as->num_locals + local_num) * WORD_SIZE;
509}
510
511void asm_x86_mov_local_to_r32(asm_x86_t *as, int src_local_num, int dest_r32) {
Damien George91cfd412014-10-12 16:59:29 +0100512 asm_x86_mov_mem32_to_r32(as, ASM_X86_REG_EBP, asm_x86_local_offset_from_ebp(as, src_local_num), dest_r32);
Damien Georgec90f59e2014-09-06 23:06:36 +0100513}
514
515void asm_x86_mov_r32_to_local(asm_x86_t *as, int src_r32, int dest_local_num) {
Damien George91cfd412014-10-12 16:59:29 +0100516 asm_x86_mov_r32_to_mem32(as, src_r32, ASM_X86_REG_EBP, asm_x86_local_offset_from_ebp(as, dest_local_num));
Damien Georgec90f59e2014-09-06 23:06:36 +0100517}
518
519void asm_x86_mov_local_addr_to_r32(asm_x86_t *as, int local_num, int dest_r32) {
520 int offset = asm_x86_local_offset_from_ebp(as, local_num);
521 if (offset == 0) {
Damien George3112cde2014-09-29 18:45:42 +0100522 asm_x86_mov_r32_r32(as, dest_r32, ASM_X86_REG_EBP);
Damien Georgec90f59e2014-09-06 23:06:36 +0100523 } else {
Damien George0b610de2014-09-29 16:25:04 +0100524 asm_x86_lea_disp_to_r32(as, ASM_X86_REG_EBP, offset, dest_r32);
Damien Georgec90f59e2014-09-06 23:06:36 +0100525 }
526}
527
528#if 0
529void asm_x86_push_local(asm_x86_t *as, int local_num) {
Damien George0b610de2014-09-29 16:25:04 +0100530 asm_x86_push_disp(as, ASM_X86_REG_EBP, asm_x86_local_offset_from_ebp(as, local_num));
Damien Georgec90f59e2014-09-06 23:06:36 +0100531}
532
533void asm_x86_push_local_addr(asm_x86_t *as, int local_num, int temp_r32)
534{
Damien George3112cde2014-09-29 18:45:42 +0100535 asm_x86_mov_r32_r32(as, temp_r32, ASM_X86_REG_EBP);
Damien Georgec90f59e2014-09-06 23:06:36 +0100536 asm_x86_add_i32_to_r32(as, asm_x86_local_offset_from_ebp(as, local_num), temp_r32);
537 asm_x86_push_r32(as, temp_r32);
538}
539#endif
540
541void asm_x86_call_ind(asm_x86_t *as, void *ptr, mp_uint_t n_args, int temp_r32) {
Damien George03281b32014-09-06 22:38:50 +0000542 // TODO align stack on 16-byte boundary before the call
Damien Georgec90f59e2014-09-06 23:06:36 +0100543 assert(n_args <= 3);
544 if (n_args > 2) {
Damien George6eae8612014-09-08 22:16:35 +0000545 asm_x86_push_r32(as, ASM_X86_REG_ARG_3);
Damien Georgec90f59e2014-09-06 23:06:36 +0100546 }
547 if (n_args > 1) {
Damien George6eae8612014-09-08 22:16:35 +0000548 asm_x86_push_r32(as, ASM_X86_REG_ARG_2);
Damien Georgec90f59e2014-09-06 23:06:36 +0100549 }
550 if (n_args > 0) {
Damien George6eae8612014-09-08 22:16:35 +0000551 asm_x86_push_r32(as, ASM_X86_REG_ARG_1);
Damien Georgec90f59e2014-09-06 23:06:36 +0100552 }
553#ifdef __LP64__
554 // We wouldn't run x86 code on an x64 machine. This is here to enable
555 // testing of the x86 emitter only.
556 asm_x86_mov_i32_to_r32(as, (int32_t)(int64_t)ptr, temp_r32);
557#else
558 // If we get here, sizeof(int) == sizeof(void*).
559 asm_x86_mov_i32_to_r32(as, (int32_t)ptr, temp_r32);
560#endif
561 asm_x86_write_byte_2(as, OPCODE_CALL_RM32, MODRM_R32(2) | MODRM_RM_REG | MODRM_RM_R32(temp_r32));
562 // this reduces code size by 2 bytes per call, but doesn't seem to speed it up at all
563 /*
564 asm_x86_write_byte_1(as, OPCODE_CALL_REL32);
565 asm_x86_write_word32(as, ptr - (void*)(as->code_base + as->code_offset + 4));
566 */
Damien George03281b32014-09-06 22:38:50 +0000567
568 // the caller must clean up the stack
569 if (n_args > 0) {
Damien George0b610de2014-09-29 16:25:04 +0100570 asm_x86_add_i32_to_r32(as, WORD_SIZE * n_args, ASM_X86_REG_ESP);
Damien George03281b32014-09-06 22:38:50 +0000571 }
Damien Georgec90f59e2014-09-06 23:06:36 +0100572}
573
574#endif // MICROPY_EMIT_X86