blob: 1946973bad2a61733d062623b15e7cc704b46ebc [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
32#include "mpconfig.h"
33#include "misc.h"
34
35// wrapper around everything in this file
36#if MICROPY_EMIT_X86
37
38#include "asmx86.h"
39
40/* all offsets are measured in multiples of 4 bytes */
41#define WORD_SIZE (4)
42
43#define OPCODE_NOP (0x90)
44#define OPCODE_PUSH_R32 (0x50)
45//#define OPCODE_PUSH_I32 (0x68)
46//#define OPCODE_PUSH_M32 (0xff) /* /6 */
47#define OPCODE_POP_R32 (0x58)
48#define OPCODE_RET (0xc3)
49//#define OPCODE_MOV_I8_TO_R8 (0xb0) /* +rb */
50#define OPCODE_MOV_I32_TO_R32 (0xb8)
51//#define OPCODE_MOV_I32_TO_RM32 (0xc7)
52#define OPCODE_MOV_R32_TO_RM32 (0x89)
53#define OPCODE_MOV_RM32_TO_R32 (0x8b)
54#define OPCODE_LEA_MEM_TO_R32 (0x8d) /* /r */
55#define OPCODE_XOR_R32_TO_RM32 (0x31) /* /r */
56#define OPCODE_ADD_R32_TO_RM32 (0x01)
Damien George03281b32014-09-06 22:38:50 +000057#define OPCODE_ADD_I32_TO_RM32 (0x81) /* /0 */
58#define OPCODE_ADD_I8_TO_RM32 (0x83) /* /0 */
Damien Georgec90f59e2014-09-06 23:06:36 +010059//#define OPCODE_SUB_R32_FROM_RM32 (0x29)
60#define OPCODE_SUB_I32_FROM_RM32 (0x81) /* /5 */
61#define OPCODE_SUB_I8_FROM_RM32 (0x83) /* /5 */
62//#define OPCODE_SHL_RM32_BY_I8 (0xc1) /* /4 */
63//#define OPCODE_SHR_RM32_BY_I8 (0xc1) /* /5 */
64//#define OPCODE_SAR_RM32_BY_I8 (0xc1) /* /7 */
65//#define OPCODE_CMP_I32_WITH_RM32 (0x81) /* /7 */
66//#define OPCODE_CMP_I8_WITH_RM32 (0x83) /* /7 */
67#define OPCODE_CMP_R32_WITH_RM32 (0x39)
68//#define OPCODE_CMP_RM32_WITH_R32 (0x3b)
69#define OPCODE_TEST_R8_WITH_RM8 (0x84) /* /r */
70#define OPCODE_JMP_REL8 (0xeb)
71#define OPCODE_JMP_REL32 (0xe9)
72#define OPCODE_JCC_REL8 (0x70) /* | jcc type */
73#define OPCODE_JCC_REL32_A (0x0f)
74#define OPCODE_JCC_REL32_B (0x80) /* | jcc type */
75#define OPCODE_SETCC_RM8_A (0x0f)
76#define OPCODE_SETCC_RM8_B (0x90) /* | jcc type, /0 */
77#define OPCODE_CALL_REL32 (0xe8)
78#define OPCODE_CALL_RM32 (0xff) /* /2 */
79#define OPCODE_LEAVE (0xc9)
80
81#define MODRM_R32(x) ((x) << 3)
82#define MODRM_RM_DISP0 (0x00)
83#define MODRM_RM_DISP8 (0x40)
84#define MODRM_RM_DISP32 (0x80)
85#define MODRM_RM_REG (0xc0)
86#define MODRM_RM_R32(x) (x)
87
88#define IMM32_L0(x) ((x) & 0xff)
89#define IMM32_L1(x) (((x) >> 8) & 0xff)
90#define IMM32_L2(x) (((x) >> 16) & 0xff)
91#define IMM32_L3(x) (((x) >> 24) & 0xff)
92
93#define SIGNED_FIT8(x) (((x) & 0xffffff80) == 0) || (((x) & 0xffffff80) == 0xffffff80)
94
95struct _asm_x86_t {
96 uint pass;
97 mp_uint_t code_offset;
98 mp_uint_t code_size;
99 byte *code_base;
100 byte dummy_data[8];
101
102 uint max_num_labels;
103 int *label_offsets;
104 int num_locals;
105};
106
107asm_x86_t *asm_x86_new(mp_uint_t max_num_labels) {
108 asm_x86_t *as;
109
110 as = m_new0(asm_x86_t, 1);
111 as->max_num_labels = max_num_labels;
112 as->label_offsets = m_new(int, max_num_labels);
113
114 return as;
115}
116
117void asm_x86_free(asm_x86_t *as, bool free_code) {
118 if (free_code) {
119 MP_PLAT_FREE_EXEC(as->code_base, as->code_size);
120 }
121 m_del_obj(asm_x86_t, as);
122}
123
124void asm_x86_start_pass(asm_x86_t *as, mp_uint_t pass) {
125 as->pass = pass;
126 as->code_offset = 0;
127 if (pass == ASM_X86_PASS_COMPUTE) {
128 // reset all labels
129 memset(as->label_offsets, -1, as->max_num_labels * sizeof(int));
130 }
131}
132
133void asm_x86_end_pass(asm_x86_t *as) {
134 if (as->pass == ASM_X86_PASS_COMPUTE) {
135 MP_PLAT_ALLOC_EXEC(as->code_offset, (void**) &as->code_base, &as->code_size);
136 if(as->code_base == NULL) {
137 assert(0);
138 }
139 }
140}
141
142// all functions must go through this one to emit bytes
143STATIC byte *asm_x86_get_cur_to_write_bytes(asm_x86_t *as, int num_bytes_to_write) {
144 //printf("emit %d\n", num_bytes_to_write);
145 if (as->pass < ASM_X86_PASS_EMIT) {
146 as->code_offset += num_bytes_to_write;
147 return as->dummy_data;
148 } else {
149 assert(as->code_offset + num_bytes_to_write <= as->code_size);
150 byte *c = as->code_base + as->code_offset;
151 as->code_offset += num_bytes_to_write;
152 return c;
153 }
154}
155
156mp_uint_t asm_x86_get_code_size(asm_x86_t *as) {
157 return as->code_size;
158}
159
160void *asm_x86_get_code(asm_x86_t *as) {
161 return as->code_base;
162}
163
164STATIC void asm_x86_write_byte_1(asm_x86_t *as, byte b1) {
165 byte* c = asm_x86_get_cur_to_write_bytes(as, 1);
166 c[0] = b1;
167}
168
169STATIC void asm_x86_write_byte_2(asm_x86_t *as, byte b1, byte b2) {
170 byte* c = asm_x86_get_cur_to_write_bytes(as, 2);
171 c[0] = b1;
172 c[1] = b2;
173}
174
175STATIC void asm_x86_write_byte_3(asm_x86_t *as, byte b1, byte b2, byte b3) {
176 byte* c = asm_x86_get_cur_to_write_bytes(as, 3);
177 c[0] = b1;
178 c[1] = b2;
179 c[2] = b3;
180}
181
182STATIC void asm_x86_write_word32(asm_x86_t *as, int w32) {
183 byte* c = asm_x86_get_cur_to_write_bytes(as, 4);
184 c[0] = IMM32_L0(w32);
185 c[1] = IMM32_L1(w32);
186 c[2] = IMM32_L2(w32);
187 c[3] = IMM32_L3(w32);
188}
189
190STATIC void asm_x86_write_r32_disp(asm_x86_t *as, int r32, int disp_r32, int disp_offset) {
191 assert(disp_r32 != REG_ESP);
192
193 if (disp_offset == 0 && disp_r32 != REG_EBP) {
194 asm_x86_write_byte_1(as, MODRM_R32(r32) | MODRM_RM_DISP0 | MODRM_RM_R32(disp_r32));
195 } else if (SIGNED_FIT8(disp_offset)) {
196 asm_x86_write_byte_2(as, MODRM_R32(r32) | MODRM_RM_DISP8 | MODRM_RM_R32(disp_r32), IMM32_L0(disp_offset));
197 } else {
198 asm_x86_write_byte_1(as, MODRM_R32(r32) | MODRM_RM_DISP32 | MODRM_RM_R32(disp_r32));
199 asm_x86_write_word32(as, disp_offset);
200 }
201}
202
203STATIC void asm_x86_nop(asm_x86_t *as) {
204 asm_x86_write_byte_1(as, OPCODE_NOP);
205}
206
207STATIC void asm_x86_push_r32(asm_x86_t *as, int src_r32) {
208 asm_x86_write_byte_1(as, OPCODE_PUSH_R32 | src_r32);
209}
210
211#if 0
212void asm_x86_push_i32(asm_x86_t *as, int src_i32) {
213 asm_x86_write_byte_1(as, OPCODE_PUSH_I32);
214 asm_x86_write_word32(as, src_i32);
215}
216
217void asm_x86_push_disp(asm_x86_t *as, int src_r32, int src_offset) {
218 asm_x86_write_byte_1(as, OPCODE_PUSH_M32);
219 asm_x86_write_r32_disp(as, 6, src_r32, src_offset);
220}
221#endif
222
223STATIC void asm_x86_pop_r32(asm_x86_t *as, int dest_r32) {
224 asm_x86_write_byte_1(as, OPCODE_POP_R32 | dest_r32);
225}
226
227STATIC void asm_x86_ret(asm_x86_t *as) {
228 asm_x86_write_byte_1(as, OPCODE_RET);
229}
230
231void asm_x86_mov_r32_to_r32(asm_x86_t *as, int src_r32, int dest_r32) {
232 asm_x86_write_byte_2(as, OPCODE_MOV_R32_TO_RM32, MODRM_R32(src_r32) | MODRM_RM_REG | MODRM_RM_R32(dest_r32));
233}
234
235STATIC void asm_x86_mov_r32_to_disp(asm_x86_t *as, int src_r32, int dest_r32, int dest_disp) {
236 asm_x86_write_byte_1(as, OPCODE_MOV_R32_TO_RM32);
237 asm_x86_write_r32_disp(as, src_r32, dest_r32, dest_disp);
238}
239
240STATIC void asm_x86_mov_disp_to_r32(asm_x86_t *as, int src_r32, int src_disp, int dest_r32) {
241 asm_x86_write_byte_1(as, OPCODE_MOV_RM32_TO_R32);
242 asm_x86_write_r32_disp(as, dest_r32, src_r32, src_disp);
243}
244
245STATIC void asm_x86_lea_disp_to_r32(asm_x86_t *as, int src_r32, int src_disp, int dest_r32) {
246 asm_x86_write_byte_1(as, OPCODE_LEA_MEM_TO_R32);
247 asm_x86_write_r32_disp(as, dest_r32, src_r32, src_disp);
248}
249
250#if 0
251void asm_x86_mov_i8_to_r8(asm_x86_t *as, int src_i8, int dest_r32) {
252 asm_x86_write_byte_2(as, OPCODE_MOV_I8_TO_R8 | dest_r32, src_i8);
253}
254#endif
255
256void asm_x86_mov_i32_to_r32(asm_x86_t *as, int src_i32, int dest_r32) {
257 asm_x86_write_byte_1(as, OPCODE_MOV_I32_TO_R32 | dest_r32);
258 asm_x86_write_word32(as, src_i32);
259}
260
261// src_i32 is stored as a full word in the code, and aligned to machine-word boundary
262void asm_x86_mov_i32_to_r32_aligned(asm_x86_t *as, int32_t src_i32, int dest_r32) {
263 // mov instruction uses 1 byte for the instruction, before the i32
264 while (((as->code_offset + 1) & (WORD_SIZE - 1)) != 0) {
265 asm_x86_nop(as);
266 }
267 asm_x86_mov_i32_to_r32(as, src_i32, dest_r32);
268}
269
270void asm_x86_xor_r32_to_r32(asm_x86_t *as, int src_r32, int dest_r32) {
271 asm_x86_write_byte_2(as, OPCODE_XOR_R32_TO_RM32, MODRM_R32(src_r32) | MODRM_RM_REG | MODRM_RM_R32(dest_r32));
272}
273
274void asm_x86_add_r32_to_r32(asm_x86_t *as, int src_r32, int dest_r32) {
275 asm_x86_write_byte_2(as, OPCODE_ADD_R32_TO_RM32, MODRM_R32(src_r32) | MODRM_RM_REG | MODRM_RM_R32(dest_r32));
276}
277
Damien George03281b32014-09-06 22:38:50 +0000278void asm_x86_add_i32_to_r32(asm_x86_t *as, int src_i32, int dest_r32) {
279 if (SIGNED_FIT8(src_i32)) {
Damien Georgec90f59e2014-09-06 23:06:36 +0100280 asm_x86_write_byte_2(as, OPCODE_ADD_I8_TO_RM32, MODRM_R32(0) | MODRM_RM_REG | MODRM_RM_R32(dest_r32));
281 asm_x86_write_byte_1(as, src_i32 & 0xff);
Damien George03281b32014-09-06 22:38:50 +0000282 } else {
Damien Georgec90f59e2014-09-06 23:06:36 +0100283 asm_x86_write_byte_2(as, OPCODE_ADD_I32_TO_RM32, MODRM_R32(0) | MODRM_RM_REG | MODRM_RM_R32(dest_r32));
284 asm_x86_write_word32(as, src_i32);
285 }
286}
287
Damien George03281b32014-09-06 22:38:50 +0000288#if 0
Damien Georgec90f59e2014-09-06 23:06:36 +0100289void asm_x86_sub_r32_from_r32(asm_x86_t *as, int src_r32, int dest_r32) {
290 asm_x86_write_byte_2(as, OPCODE_SUB_R32_FROM_RM32, MODRM_R32(src_r32) | MODRM_RM_REG | MODRM_RM_R32(dest_r32));
291}
292#endif
293
294void asm_x86_sub_i32_from_r32(asm_x86_t *as, int src_i32, int dest_r32) {
295 if (SIGNED_FIT8(src_i32)) {
296 // defaults to 32 bit operation
297 asm_x86_write_byte_2(as, OPCODE_SUB_I8_FROM_RM32, MODRM_R32(5) | MODRM_RM_REG | MODRM_RM_R32(dest_r32));
298 asm_x86_write_byte_1(as, src_i32 & 0xff);
299 } else {
300 // defaults to 32 bit operation
301 asm_x86_write_byte_2(as, OPCODE_SUB_I32_FROM_RM32, MODRM_R32(5) | MODRM_RM_REG | MODRM_RM_R32(dest_r32));
302 asm_x86_write_word32(as, src_i32);
303 }
304}
305
306#if 0
307/* shifts not tested */
308void asm_x86_shl_r32_by_imm(asm_x86_t *as, int r32, int imm) {
309 asm_x86_write_byte_2(as, OPCODE_SHL_RM32_BY_I8, MODRM_R32(4) | MODRM_RM_REG | MODRM_RM_R32(r32));
310 asm_x86_write_byte_1(as, imm);
311}
312
313void asm_x86_shr_r32_by_imm(asm_x86_t *as, int r32, int imm) {
314 asm_x86_write_byte_2(as, OPCODE_SHR_RM32_BY_I8, MODRM_R32(5) | MODRM_RM_REG | MODRM_RM_R32(r32));
315 asm_x86_write_byte_1(as, imm);
316}
317
318void asm_x86_sar_r32_by_imm(asm_x86_t *as, int r32, int imm) {
319 asm_x86_write_byte_2(as, OPCODE_SAR_RM32_BY_I8, MODRM_R32(7) | MODRM_RM_REG | MODRM_RM_R32(r32));
320 asm_x86_write_byte_1(as, imm);
321}
322#endif
323
324void asm_x86_cmp_r32_with_r32(asm_x86_t *as, int src_r32_a, int src_r32_b) {
325 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));
326}
327
328#if 0
329void asm_x86_cmp_i32_with_r32(asm_x86_t *as, int src_i32, int src_r32) {
330 if (SIGNED_FIT8(src_i32)) {
331 asm_x86_write_byte_2(as, OPCODE_CMP_I8_WITH_RM32, MODRM_R32(7) | MODRM_RM_REG | MODRM_RM_R32(src_r32));
332 asm_x86_write_byte_1(as, src_i32 & 0xff);
333 } else {
334 asm_x86_write_byte_2(as, OPCODE_CMP_I32_WITH_RM32, MODRM_R32(7) | MODRM_RM_REG | MODRM_RM_R32(src_r32));
335 asm_x86_write_word32(as, src_i32);
336 }
337}
338#endif
339
340void asm_x86_test_r8_with_r8(asm_x86_t *as, int src_r32_a, int src_r32_b) {
341 // TODO implement for other registers
342 assert(src_r32_a == REG_EAX);
343 assert(src_r32_b == REG_EAX);
344 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));
345}
346
347void asm_x86_setcc_r8(asm_x86_t *as, mp_uint_t jcc_type, int dest_r8) {
348 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));
349}
350
351void asm_x86_label_assign(asm_x86_t *as, mp_uint_t label) {
352 assert(label < as->max_num_labels);
353 if (as->pass < ASM_X86_PASS_EMIT) {
354 // assign label offset
355 assert(as->label_offsets[label] == -1);
356 as->label_offsets[label] = as->code_offset;
357 } else {
358 // ensure label offset has not changed from PASS_COMPUTE to PASS_EMIT
359 //printf("l%d: (at %d=%ld)\n", label, as->label_offsets[label], as->code_offset);
360 assert(as->label_offsets[label] == as->code_offset);
361 }
362}
363
364STATIC int get_label_dest(asm_x86_t *as, int label) {
365 assert(label < as->max_num_labels);
366 return as->label_offsets[label];
367}
368
369void asm_x86_jmp_label(asm_x86_t *as, mp_uint_t label) {
370 int dest = get_label_dest(as, label);
371 int rel = dest - as->code_offset;
372 if (dest >= 0 && rel < 0) {
373 // is a backwards jump, so we know the size of the jump on the first pass
374 // calculate rel assuming 8 bit relative jump
375 rel -= 2;
376 if (SIGNED_FIT8(rel)) {
377 asm_x86_write_byte_2(as, OPCODE_JMP_REL8, rel & 0xff);
378 } else {
379 rel += 2;
380 goto large_jump;
381 }
382 } else {
383 // is a forwards jump, so need to assume it's large
384 large_jump:
385 rel -= 5;
386 asm_x86_write_byte_1(as, OPCODE_JMP_REL32);
387 asm_x86_write_word32(as, rel);
388 }
389}
390
391void asm_x86_jcc_label(asm_x86_t *as, mp_uint_t jcc_type, mp_uint_t label) {
392 int dest = get_label_dest(as, label);
393 int rel = dest - as->code_offset;
394 if (dest >= 0 && rel < 0) {
395 // is a backwards jump, so we know the size of the jump on the first pass
396 // calculate rel assuming 8 bit relative jump
397 rel -= 2;
398 if (SIGNED_FIT8(rel)) {
399 asm_x86_write_byte_2(as, OPCODE_JCC_REL8 | jcc_type, rel & 0xff);
400 } else {
401 rel += 2;
402 goto large_jump;
403 }
404 } else {
405 // is a forwards jump, so need to assume it's large
406 large_jump:
407 rel -= 6;
408 asm_x86_write_byte_2(as, OPCODE_JCC_REL32_A, OPCODE_JCC_REL32_B | jcc_type);
409 asm_x86_write_word32(as, rel);
410 }
411}
412
413void asm_x86_entry(asm_x86_t *as, mp_uint_t num_locals) {
414 asm_x86_push_r32(as, REG_EBP);
415 asm_x86_mov_r32_to_r32(as, REG_ESP, REG_EBP);
Damien George25d90412014-09-06 23:24:32 +0000416 if (num_locals > 0) {
417 asm_x86_sub_i32_from_r32(as, num_locals * WORD_SIZE, REG_ESP);
418 }
Damien Georgec90f59e2014-09-06 23:06:36 +0100419 asm_x86_push_r32(as, REG_EBX);
Damien George03281b32014-09-06 22:38:50 +0000420 asm_x86_push_r32(as, REG_ESI);
421 asm_x86_push_r32(as, REG_EDI);
422 // TODO align stack on 16-byte boundary
Damien Georgec90f59e2014-09-06 23:06:36 +0100423 as->num_locals = num_locals;
424}
425
426void asm_x86_exit(asm_x86_t *as) {
Damien George03281b32014-09-06 22:38:50 +0000427 asm_x86_pop_r32(as, REG_EDI);
428 asm_x86_pop_r32(as, REG_ESI);
Damien Georgec90f59e2014-09-06 23:06:36 +0100429 asm_x86_pop_r32(as, REG_EBX);
430 asm_x86_write_byte_1(as, OPCODE_LEAVE);
431 asm_x86_ret(as);
432}
433
434#if 0
435void asm_x86_push_arg(asm_x86_t *as, int src_arg_num) {
Damien George03281b32014-09-06 22:38:50 +0000436 asm_x86_push_disp(as, REG_EBP, 2 * WORD_SIZE + src_arg_num * WORD_SIZE);
Damien Georgec90f59e2014-09-06 23:06:36 +0100437}
Damien George03281b32014-09-06 22:38:50 +0000438#endif
Damien Georgec90f59e2014-09-06 23:06:36 +0100439
440void asm_x86_mov_arg_to_r32(asm_x86_t *as, int src_arg_num, int dest_r32) {
Damien George03281b32014-09-06 22:38:50 +0000441 asm_x86_mov_disp_to_r32(as, REG_EBP, 2 * WORD_SIZE + src_arg_num * WORD_SIZE, dest_r32);
Damien Georgec90f59e2014-09-06 23:06:36 +0100442}
443
Damien George03281b32014-09-06 22:38:50 +0000444#if 0
Damien Georgec90f59e2014-09-06 23:06:36 +0100445void asm_x86_mov_r32_to_arg(asm_x86_t *as, int src_r32, int dest_arg_num) {
Damien George03281b32014-09-06 22:38:50 +0000446 asm_x86_mov_r32_to_disp(as, src_r32, REG_EBP, 2 * WORD_SIZE + dest_arg_num * WORD_SIZE);
Damien Georgec90f59e2014-09-06 23:06:36 +0100447}
448#endif
449
450// locals:
451// - stored on the stack in ascending order
452// - numbered 0 through as->num_locals-1
453// - EBP points above the last local
454//
455// | EPB
456// v
457// l0 l1 l2 ... l(n-1)
458// ^ ^
459// | low address | high address in RAM
460//
461STATIC int asm_x86_local_offset_from_ebp(asm_x86_t *as, int local_num) {
462 return (-as->num_locals + local_num) * WORD_SIZE;
463}
464
465void asm_x86_mov_local_to_r32(asm_x86_t *as, int src_local_num, int dest_r32) {
466 asm_x86_mov_disp_to_r32(as, REG_EBP, asm_x86_local_offset_from_ebp(as, src_local_num), dest_r32);
467}
468
469void asm_x86_mov_r32_to_local(asm_x86_t *as, int src_r32, int dest_local_num) {
470 asm_x86_mov_r32_to_disp(as, src_r32, REG_EBP, asm_x86_local_offset_from_ebp(as, dest_local_num));
471}
472
473void asm_x86_mov_local_addr_to_r32(asm_x86_t *as, int local_num, int dest_r32) {
474 int offset = asm_x86_local_offset_from_ebp(as, local_num);
475 if (offset == 0) {
476 asm_x86_mov_r32_to_r32(as, REG_EBP, dest_r32);
477 } else {
478 asm_x86_lea_disp_to_r32(as, REG_EBP, offset, dest_r32);
479 }
480}
481
482#if 0
483void asm_x86_push_local(asm_x86_t *as, int local_num) {
484 asm_x86_push_disp(as, REG_EBP, asm_x86_local_offset_from_ebp(as, local_num));
485}
486
487void asm_x86_push_local_addr(asm_x86_t *as, int local_num, int temp_r32)
488{
489 asm_x86_mov_r32_to_r32(as, REG_EBP, temp_r32);
490 asm_x86_add_i32_to_r32(as, asm_x86_local_offset_from_ebp(as, local_num), temp_r32);
491 asm_x86_push_r32(as, temp_r32);
492}
493#endif
494
495void 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 +0000496 // TODO align stack on 16-byte boundary before the call
Damien Georgec90f59e2014-09-06 23:06:36 +0100497 assert(n_args <= 3);
498 if (n_args > 2) {
499 asm_x86_push_r32(as, REG_ARG_3);
500 }
501 if (n_args > 1) {
502 asm_x86_push_r32(as, REG_ARG_2);
503 }
504 if (n_args > 0) {
505 asm_x86_push_r32(as, REG_ARG_1);
506 }
507#ifdef __LP64__
508 // We wouldn't run x86 code on an x64 machine. This is here to enable
509 // testing of the x86 emitter only.
510 asm_x86_mov_i32_to_r32(as, (int32_t)(int64_t)ptr, temp_r32);
511#else
512 // If we get here, sizeof(int) == sizeof(void*).
513 asm_x86_mov_i32_to_r32(as, (int32_t)ptr, temp_r32);
514#endif
515 asm_x86_write_byte_2(as, OPCODE_CALL_RM32, MODRM_R32(2) | MODRM_RM_REG | MODRM_RM_R32(temp_r32));
516 // this reduces code size by 2 bytes per call, but doesn't seem to speed it up at all
517 /*
518 asm_x86_write_byte_1(as, OPCODE_CALL_REL32);
519 asm_x86_write_word32(as, ptr - (void*)(as->code_base + as->code_offset + 4));
520 */
Damien George03281b32014-09-06 22:38:50 +0000521
522 // the caller must clean up the stack
523 if (n_args > 0) {
524 asm_x86_add_i32_to_r32(as, WORD_SIZE * n_args, REG_ESP);
525 }
Damien Georgec90f59e2014-09-06 23:06:36 +0100526}
527
528#endif // MICROPY_EMIT_X86