blob: a0a38161ca4e4bcc4b9b05aeda3b0e05ed2dee86 [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)
57//#define OPCODE_ADD_I32_TO_RM32 (0x81) /* /0 */
58//#define OPCODE_ADD_I8_TO_RM32 (0x83) /* /0 */
59//#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
278#if 0
279void asm_x86_add_i32_to_r32(asm_x86_t *as, int src_i32, int dest_r32)
280{
281 if (SIGNED_FIT8(src_i32))
282 {
283 asm_x86_write_byte_2(as, OPCODE_ADD_I8_TO_RM32, MODRM_R32(0) | MODRM_RM_REG | MODRM_RM_R32(dest_r32));
284 asm_x86_write_byte_1(as, src_i32 & 0xff);
285 }
286 else
287 {
288 asm_x86_write_byte_2(as, OPCODE_ADD_I32_TO_RM32, MODRM_R32(0) | MODRM_RM_REG | MODRM_RM_R32(dest_r32));
289 asm_x86_write_word32(as, src_i32);
290 }
291}
292
293void asm_x86_sub_r32_from_r32(asm_x86_t *as, int src_r32, int dest_r32) {
294 asm_x86_write_byte_2(as, OPCODE_SUB_R32_FROM_RM32, MODRM_R32(src_r32) | MODRM_RM_REG | MODRM_RM_R32(dest_r32));
295}
296#endif
297
298void asm_x86_sub_i32_from_r32(asm_x86_t *as, int src_i32, int dest_r32) {
299 if (SIGNED_FIT8(src_i32)) {
300 // defaults to 32 bit operation
301 asm_x86_write_byte_2(as, OPCODE_SUB_I8_FROM_RM32, MODRM_R32(5) | MODRM_RM_REG | MODRM_RM_R32(dest_r32));
302 asm_x86_write_byte_1(as, src_i32 & 0xff);
303 } else {
304 // defaults to 32 bit operation
305 asm_x86_write_byte_2(as, OPCODE_SUB_I32_FROM_RM32, MODRM_R32(5) | MODRM_RM_REG | MODRM_RM_R32(dest_r32));
306 asm_x86_write_word32(as, src_i32);
307 }
308}
309
310#if 0
311/* shifts not tested */
312void asm_x86_shl_r32_by_imm(asm_x86_t *as, int r32, int imm) {
313 asm_x86_write_byte_2(as, OPCODE_SHL_RM32_BY_I8, MODRM_R32(4) | MODRM_RM_REG | MODRM_RM_R32(r32));
314 asm_x86_write_byte_1(as, imm);
315}
316
317void asm_x86_shr_r32_by_imm(asm_x86_t *as, int r32, int imm) {
318 asm_x86_write_byte_2(as, OPCODE_SHR_RM32_BY_I8, MODRM_R32(5) | MODRM_RM_REG | MODRM_RM_R32(r32));
319 asm_x86_write_byte_1(as, imm);
320}
321
322void asm_x86_sar_r32_by_imm(asm_x86_t *as, int r32, int imm) {
323 asm_x86_write_byte_2(as, OPCODE_SAR_RM32_BY_I8, MODRM_R32(7) | MODRM_RM_REG | MODRM_RM_R32(r32));
324 asm_x86_write_byte_1(as, imm);
325}
326#endif
327
328void asm_x86_cmp_r32_with_r32(asm_x86_t *as, int src_r32_a, int src_r32_b) {
329 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));
330}
331
332#if 0
333void asm_x86_cmp_i32_with_r32(asm_x86_t *as, int src_i32, int src_r32) {
334 if (SIGNED_FIT8(src_i32)) {
335 asm_x86_write_byte_2(as, OPCODE_CMP_I8_WITH_RM32, MODRM_R32(7) | MODRM_RM_REG | MODRM_RM_R32(src_r32));
336 asm_x86_write_byte_1(as, src_i32 & 0xff);
337 } else {
338 asm_x86_write_byte_2(as, OPCODE_CMP_I32_WITH_RM32, MODRM_R32(7) | MODRM_RM_REG | MODRM_RM_R32(src_r32));
339 asm_x86_write_word32(as, src_i32);
340 }
341}
342#endif
343
344void asm_x86_test_r8_with_r8(asm_x86_t *as, int src_r32_a, int src_r32_b) {
345 // TODO implement for other registers
346 assert(src_r32_a == REG_EAX);
347 assert(src_r32_b == REG_EAX);
348 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));
349}
350
351void asm_x86_setcc_r8(asm_x86_t *as, mp_uint_t jcc_type, int dest_r8) {
352 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));
353}
354
355void asm_x86_label_assign(asm_x86_t *as, mp_uint_t label) {
356 assert(label < as->max_num_labels);
357 if (as->pass < ASM_X86_PASS_EMIT) {
358 // assign label offset
359 assert(as->label_offsets[label] == -1);
360 as->label_offsets[label] = as->code_offset;
361 } else {
362 // ensure label offset has not changed from PASS_COMPUTE to PASS_EMIT
363 //printf("l%d: (at %d=%ld)\n", label, as->label_offsets[label], as->code_offset);
364 assert(as->label_offsets[label] == as->code_offset);
365 }
366}
367
368STATIC int get_label_dest(asm_x86_t *as, int label) {
369 assert(label < as->max_num_labels);
370 return as->label_offsets[label];
371}
372
373void asm_x86_jmp_label(asm_x86_t *as, mp_uint_t label) {
374 int dest = get_label_dest(as, label);
375 int rel = dest - as->code_offset;
376 if (dest >= 0 && rel < 0) {
377 // is a backwards jump, so we know the size of the jump on the first pass
378 // calculate rel assuming 8 bit relative jump
379 rel -= 2;
380 if (SIGNED_FIT8(rel)) {
381 asm_x86_write_byte_2(as, OPCODE_JMP_REL8, rel & 0xff);
382 } else {
383 rel += 2;
384 goto large_jump;
385 }
386 } else {
387 // is a forwards jump, so need to assume it's large
388 large_jump:
389 rel -= 5;
390 asm_x86_write_byte_1(as, OPCODE_JMP_REL32);
391 asm_x86_write_word32(as, rel);
392 }
393}
394
395void asm_x86_jcc_label(asm_x86_t *as, mp_uint_t jcc_type, mp_uint_t label) {
396 int dest = get_label_dest(as, label);
397 int rel = dest - as->code_offset;
398 if (dest >= 0 && rel < 0) {
399 // is a backwards jump, so we know the size of the jump on the first pass
400 // calculate rel assuming 8 bit relative jump
401 rel -= 2;
402 if (SIGNED_FIT8(rel)) {
403 asm_x86_write_byte_2(as, OPCODE_JCC_REL8 | jcc_type, rel & 0xff);
404 } else {
405 rel += 2;
406 goto large_jump;
407 }
408 } else {
409 // is a forwards jump, so need to assume it's large
410 large_jump:
411 rel -= 6;
412 asm_x86_write_byte_2(as, OPCODE_JCC_REL32_A, OPCODE_JCC_REL32_B | jcc_type);
413 asm_x86_write_word32(as, rel);
414 }
415}
416
417void asm_x86_entry(asm_x86_t *as, mp_uint_t num_locals) {
418 asm_x86_push_r32(as, REG_EBP);
419 asm_x86_mov_r32_to_r32(as, REG_ESP, REG_EBP);
420 asm_x86_sub_i32_from_r32(as, num_locals * WORD_SIZE, REG_ESP);
421 asm_x86_push_r32(as, REG_EBX);
422 as->num_locals = num_locals;
423}
424
425void asm_x86_exit(asm_x86_t *as) {
426 asm_x86_pop_r32(as, REG_EBX);
427 asm_x86_write_byte_1(as, OPCODE_LEAVE);
428 asm_x86_ret(as);
429}
430
431#if 0
432void asm_x86_push_arg(asm_x86_t *as, int src_arg_num) {
433 assert(0);
434 asm_x86_push_disp(as, REG_EBP, 8 + src_arg_num * WORD_SIZE);
435}
436
437void asm_x86_mov_arg_to_r32(asm_x86_t *as, int src_arg_num, int dest_r32) {
438 assert(0);
439 //asm_x86_mov_disp_to_r32(as, REG_EBP, 8 + src_arg_num * WORD_SIZE, dest_r32);
440}
441
442void asm_x86_mov_r32_to_arg(asm_x86_t *as, int src_r32, int dest_arg_num) {
443 assert(0);
444 //asm_x86_mov_r32_to_disp(as, src_r32, REG_EBP, 8 + dest_arg_num * WORD_SIZE);
445}
446#endif
447
448// locals:
449// - stored on the stack in ascending order
450// - numbered 0 through as->num_locals-1
451// - EBP points above the last local
452//
453// | EPB
454// v
455// l0 l1 l2 ... l(n-1)
456// ^ ^
457// | low address | high address in RAM
458//
459STATIC int asm_x86_local_offset_from_ebp(asm_x86_t *as, int local_num) {
460 return (-as->num_locals + local_num) * WORD_SIZE;
461}
462
463void asm_x86_mov_local_to_r32(asm_x86_t *as, int src_local_num, int dest_r32) {
464 asm_x86_mov_disp_to_r32(as, REG_EBP, asm_x86_local_offset_from_ebp(as, src_local_num), dest_r32);
465}
466
467void asm_x86_mov_r32_to_local(asm_x86_t *as, int src_r32, int dest_local_num) {
468 asm_x86_mov_r32_to_disp(as, src_r32, REG_EBP, asm_x86_local_offset_from_ebp(as, dest_local_num));
469}
470
471void asm_x86_mov_local_addr_to_r32(asm_x86_t *as, int local_num, int dest_r32) {
472 int offset = asm_x86_local_offset_from_ebp(as, local_num);
473 if (offset == 0) {
474 asm_x86_mov_r32_to_r32(as, REG_EBP, dest_r32);
475 } else {
476 asm_x86_lea_disp_to_r32(as, REG_EBP, offset, dest_r32);
477 }
478}
479
480#if 0
481void asm_x86_push_local(asm_x86_t *as, int local_num) {
482 asm_x86_push_disp(as, REG_EBP, asm_x86_local_offset_from_ebp(as, local_num));
483}
484
485void asm_x86_push_local_addr(asm_x86_t *as, int local_num, int temp_r32)
486{
487 asm_x86_mov_r32_to_r32(as, REG_EBP, temp_r32);
488 asm_x86_add_i32_to_r32(as, asm_x86_local_offset_from_ebp(as, local_num), temp_r32);
489 asm_x86_push_r32(as, temp_r32);
490}
491#endif
492
493void asm_x86_call_ind(asm_x86_t *as, void *ptr, mp_uint_t n_args, int temp_r32) {
494 assert(n_args <= 3);
495 if (n_args > 2) {
496 asm_x86_push_r32(as, REG_ARG_3);
497 }
498 if (n_args > 1) {
499 asm_x86_push_r32(as, REG_ARG_2);
500 }
501 if (n_args > 0) {
502 asm_x86_push_r32(as, REG_ARG_1);
503 }
504#ifdef __LP64__
505 // We wouldn't run x86 code on an x64 machine. This is here to enable
506 // testing of the x86 emitter only.
507 asm_x86_mov_i32_to_r32(as, (int32_t)(int64_t)ptr, temp_r32);
508#else
509 // If we get here, sizeof(int) == sizeof(void*).
510 asm_x86_mov_i32_to_r32(as, (int32_t)ptr, temp_r32);
511#endif
512 asm_x86_write_byte_2(as, OPCODE_CALL_RM32, MODRM_R32(2) | MODRM_RM_REG | MODRM_RM_R32(temp_r32));
513 // this reduces code size by 2 bytes per call, but doesn't seem to speed it up at all
514 /*
515 asm_x86_write_byte_1(as, OPCODE_CALL_REL32);
516 asm_x86_write_word32(as, ptr - (void*)(as->code_base + as->code_offset + 4));
517 */
518}
519
520#endif // MICROPY_EMIT_X86