Fix structure passing in ARM calling convention
[tinycc.git] / i386-gen.c
blobeaab2b7ea24ac783553c5120f6165330e7336019
1 /*
2 * X86 code generator for TCC
3 *
4 * Copyright (c) 2001-2004 Fabrice Bellard
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 #ifdef TARGET_DEFS_ONLY
23 /* number of available registers */
24 #define NB_REGS 4
25 #define NB_ASM_REGS 8
27 /* a register can belong to several classes. The classes must be
28 sorted from more general to more precise (see gv2() code which does
29 assumptions on it). */
30 #define RC_INT 0x0001 /* generic integer register */
31 #define RC_FLOAT 0x0002 /* generic float register */
32 #define RC_EAX 0x0004
33 #define RC_ST0 0x0008
34 #define RC_ECX 0x0010
35 #define RC_EDX 0x0020
36 #define RC_IRET RC_EAX /* function return: integer register */
37 #define RC_LRET RC_EDX /* function return: second integer register */
38 #define RC_FRET RC_ST0 /* function return: float register */
40 /* pretty names for the registers */
41 enum {
42 TREG_EAX = 0,
43 TREG_ECX,
44 TREG_EDX,
45 TREG_ST0,
46 TREG_ESP = 4
49 /* return registers for function */
50 #define REG_IRET TREG_EAX /* single word int return register */
51 #define REG_LRET TREG_EDX /* second word return register (for long long) */
52 #define REG_FRET TREG_ST0 /* float return register */
54 /* defined if function parameters must be evaluated in reverse order */
55 #define INVERT_FUNC_PARAMS
57 /* defined if structures are passed as pointers. Otherwise structures
58 are directly pushed on stack. */
59 /* #define FUNC_STRUCT_PARAM_AS_PTR */
61 /* pointer size, in bytes */
62 #define PTR_SIZE 4
64 /* long double size and alignment, in bytes */
65 #define LDOUBLE_SIZE 12
66 #define LDOUBLE_ALIGN 4
67 /* maximum alignment (for aligned attribute support) */
68 #define MAX_ALIGN 8
71 #define psym oad
73 /******************************************************/
74 /* ELF defines */
76 #define EM_TCC_TARGET EM_386
78 /* relocation type for 32 bit data relocation */
79 #define R_DATA_32 R_386_32
80 #define R_DATA_PTR R_386_32
81 #define R_JMP_SLOT R_386_JMP_SLOT
82 #define R_COPY R_386_COPY
84 #define ELF_START_ADDR 0x08048000
85 #define ELF_PAGE_SIZE 0x1000
87 /******************************************************/
88 #else /* ! TARGET_DEFS_ONLY */
89 /******************************************************/
90 #include "tcc.h"
92 ST_DATA const int reg_classes[NB_REGS] = {
93 /* eax */ RC_INT | RC_EAX,
94 /* ecx */ RC_INT | RC_ECX,
95 /* edx */ RC_INT | RC_EDX,
96 /* st0 */ RC_FLOAT | RC_ST0,
99 static unsigned long func_sub_sp_offset;
100 static int func_ret_sub;
101 #ifdef CONFIG_TCC_BCHECK
102 static unsigned long func_bound_offset;
103 #endif
105 /* XXX: make it faster ? */
106 ST_FUNC void g(int c)
108 int ind1;
109 ind1 = ind + 1;
110 if (ind1 > cur_text_section->data_allocated)
111 section_realloc(cur_text_section, ind1);
112 cur_text_section->data[ind] = c;
113 ind = ind1;
116 ST_FUNC void o(unsigned int c)
118 while (c) {
119 g(c);
120 c = c >> 8;
124 ST_FUNC void gen_le16(int v)
126 g(v);
127 g(v >> 8);
130 ST_FUNC void gen_le32(int c)
132 g(c);
133 g(c >> 8);
134 g(c >> 16);
135 g(c >> 24);
138 /* output a symbol and patch all calls to it */
139 ST_FUNC void gsym_addr(int t, int a)
141 int n, *ptr;
142 while (t) {
143 ptr = (int *)(cur_text_section->data + t);
144 n = *ptr; /* next value */
145 *ptr = a - t - 4;
146 t = n;
150 ST_FUNC void gsym(int t)
152 gsym_addr(t, ind);
155 /* psym is used to put an instruction with a data field which is a
156 reference to a symbol. It is in fact the same as oad ! */
157 #define psym oad
159 /* instruction + 4 bytes data. Return the address of the data */
160 ST_FUNC int oad(int c, int s)
162 int ind1;
164 o(c);
165 ind1 = ind + 4;
166 if (ind1 > cur_text_section->data_allocated)
167 section_realloc(cur_text_section, ind1);
168 *(int *)(cur_text_section->data + ind) = s;
169 s = ind;
170 ind = ind1;
171 return s;
174 /* output constant with relocation if 'r & VT_SYM' is true */
175 ST_FUNC void gen_addr32(int r, Sym *sym, int c)
177 if (r & VT_SYM)
178 greloc(cur_text_section, sym, ind, R_386_32);
179 gen_le32(c);
182 ST_FUNC void gen_addrpc32(int r, Sym *sym, int c)
184 if (r & VT_SYM)
185 greloc(cur_text_section, sym, ind, R_386_PC32);
186 gen_le32(c - 4);
189 /* generate a modrm reference. 'op_reg' contains the addtionnal 3
190 opcode bits */
191 static void gen_modrm(int op_reg, int r, Sym *sym, int c)
193 op_reg = op_reg << 3;
194 if ((r & VT_VALMASK) == VT_CONST) {
195 /* constant memory reference */
196 o(0x05 | op_reg);
197 gen_addr32(r, sym, c);
198 } else if ((r & VT_VALMASK) == VT_LOCAL) {
199 /* currently, we use only ebp as base */
200 if (c == (char)c) {
201 /* short reference */
202 o(0x45 | op_reg);
203 g(c);
204 } else {
205 oad(0x85 | op_reg, c);
207 } else {
208 g(0x00 | op_reg | (r & VT_VALMASK));
212 /* load 'r' from value 'sv' */
213 ST_FUNC void load(int r, SValue *sv)
215 int v, t, ft, fc, fr;
216 SValue v1;
218 #ifdef TCC_TARGET_PE
219 SValue v2;
220 sv = pe_getimport(sv, &v2);
221 #endif
223 fr = sv->r;
224 ft = sv->type.t;
225 fc = sv->c.ul;
227 v = fr & VT_VALMASK;
228 if (fr & VT_LVAL) {
229 if (v == VT_LLOCAL) {
230 v1.type.t = VT_INT;
231 v1.r = VT_LOCAL | VT_LVAL;
232 v1.c.ul = fc;
233 fr = r;
234 if (!(reg_classes[fr] & RC_INT))
235 fr = get_reg(RC_INT);
236 load(fr, &v1);
238 if ((ft & VT_BTYPE) == VT_FLOAT) {
239 o(0xd9); /* flds */
240 r = 0;
241 } else if ((ft & VT_BTYPE) == VT_DOUBLE) {
242 o(0xdd); /* fldl */
243 r = 0;
244 } else if ((ft & VT_BTYPE) == VT_LDOUBLE) {
245 o(0xdb); /* fldt */
246 r = 5;
247 } else if ((ft & VT_TYPE) == VT_BYTE || (ft & VT_TYPE) == VT_BOOL) {
248 o(0xbe0f); /* movsbl */
249 } else if ((ft & VT_TYPE) == (VT_BYTE | VT_UNSIGNED)) {
250 o(0xb60f); /* movzbl */
251 } else if ((ft & VT_TYPE) == VT_SHORT) {
252 o(0xbf0f); /* movswl */
253 } else if ((ft & VT_TYPE) == (VT_SHORT | VT_UNSIGNED)) {
254 o(0xb70f); /* movzwl */
255 } else {
256 o(0x8b); /* movl */
258 gen_modrm(r, fr, sv->sym, fc);
259 } else {
260 if (v == VT_CONST) {
261 o(0xb8 + r); /* mov $xx, r */
262 gen_addr32(fr, sv->sym, fc);
263 } else if (v == VT_LOCAL) {
264 if (fc) {
265 o(0x8d); /* lea xxx(%ebp), r */
266 gen_modrm(r, VT_LOCAL, sv->sym, fc);
267 } else {
268 o(0x89);
269 o(0xe8 + r); /* mov %ebp, r */
271 } else if (v == VT_CMP) {
272 oad(0xb8 + r, 0); /* mov $0, r */
273 o(0x0f); /* setxx %br */
274 o(fc);
275 o(0xc0 + r);
276 } else if (v == VT_JMP || v == VT_JMPI) {
277 t = v & 1;
278 oad(0xb8 + r, t); /* mov $1, r */
279 o(0x05eb); /* jmp after */
280 gsym(fc);
281 oad(0xb8 + r, t ^ 1); /* mov $0, r */
282 } else if (v != r) {
283 o(0x89);
284 o(0xc0 + r + v * 8); /* mov v, r */
289 /* store register 'r' in lvalue 'v' */
290 ST_FUNC void store(int r, SValue *v)
292 int fr, bt, ft, fc;
294 #ifdef TCC_TARGET_PE
295 SValue v2;
296 v = pe_getimport(v, &v2);
297 #endif
299 ft = v->type.t;
300 fc = v->c.ul;
301 fr = v->r & VT_VALMASK;
302 bt = ft & VT_BTYPE;
303 /* XXX: incorrect if float reg to reg */
304 if (bt == VT_FLOAT) {
305 o(0xd9); /* fsts */
306 r = 2;
307 } else if (bt == VT_DOUBLE) {
308 o(0xdd); /* fstpl */
309 r = 2;
310 } else if (bt == VT_LDOUBLE) {
311 o(0xc0d9); /* fld %st(0) */
312 o(0xdb); /* fstpt */
313 r = 7;
314 } else {
315 if (bt == VT_SHORT)
316 o(0x66);
317 if (bt == VT_BYTE || bt == VT_BOOL)
318 o(0x88);
319 else
320 o(0x89);
322 if (fr == VT_CONST ||
323 fr == VT_LOCAL ||
324 (v->r & VT_LVAL)) {
325 gen_modrm(r, v->r, v->sym, fc);
326 } else if (fr != r) {
327 o(0xc0 + fr + r * 8); /* mov r, fr */
331 static void gadd_sp(int val)
333 if (val == (char)val) {
334 o(0xc483);
335 g(val);
336 } else {
337 oad(0xc481, val); /* add $xxx, %esp */
341 static void gen_static_call(int v)
343 Sym *sym;
345 sym = external_global_sym(v, &func_old_type, 0);
346 oad(0xe8, -4);
347 greloc(cur_text_section, sym, ind-4, R_386_PC32);
350 /* 'is_jmp' is '1' if it is a jump */
351 static void gcall_or_jmp(int is_jmp)
353 int r;
354 if ((vtop->r & (VT_VALMASK | VT_LVAL)) == VT_CONST) {
355 /* constant case */
356 if (vtop->r & VT_SYM) {
357 /* relocation case */
358 greloc(cur_text_section, vtop->sym,
359 ind + 1, R_386_PC32);
360 } else {
361 /* put an empty PC32 relocation */
362 put_elf_reloc(symtab_section, cur_text_section,
363 ind + 1, R_386_PC32, 0);
365 oad(0xe8 + is_jmp, vtop->c.ul - 4); /* call/jmp im */
366 } else {
367 /* otherwise, indirect call */
368 r = gv(RC_INT);
369 o(0xff); /* call/jmp *r */
370 o(0xd0 + r + (is_jmp << 4));
374 static uint8_t fastcall_regs[3] = { TREG_EAX, TREG_EDX, TREG_ECX };
375 static uint8_t fastcallw_regs[2] = { TREG_ECX, TREG_EDX };
377 /* Return the number of registers needed to return the struct, or 0 if
378 returning via struct pointer. */
379 ST_FUNC int gfunc_sret(CType *vt, CType *ret, int *ret_align)
381 #ifdef TCC_TARGET_PE
382 int size, align;
384 *ret_align = 1; // Never have to re-align return values for x86
385 size = type_size(vt, &align);
386 if (size > 8) {
387 return 0;
388 } else if (size > 4) {
389 ret->ref = NULL;
390 ret->t = VT_LLONG;
391 return 1;
392 } else {
393 ret->ref = NULL;
394 ret->t = VT_INT;
395 return 0;
397 #else
398 *ret_align = 1; // Never have to re-align return values for x86
399 return 0;
400 #endif
403 /* Generate function call. The function address is pushed first, then
404 all the parameters in call order. This functions pops all the
405 parameters and the function address. */
406 ST_FUNC void gfunc_call(int nb_args)
408 int size, align, r, args_size, i, func_call;
409 Sym *func_sym;
411 args_size = 0;
412 for(i = 0;i < nb_args; i++) {
413 if ((vtop->type.t & VT_BTYPE) == VT_STRUCT) {
414 size = type_size(&vtop->type, &align);
415 /* align to stack align size */
416 size = (size + 3) & ~3;
417 /* allocate the necessary size on stack */
418 oad(0xec81, size); /* sub $xxx, %esp */
419 /* generate structure store */
420 r = get_reg(RC_INT);
421 o(0x89); /* mov %esp, r */
422 o(0xe0 + r);
423 vset(&vtop->type, r | VT_LVAL, 0);
424 vswap();
425 vstore();
426 args_size += size;
427 } else if (is_float(vtop->type.t)) {
428 gv(RC_FLOAT); /* only one float register */
429 if ((vtop->type.t & VT_BTYPE) == VT_FLOAT)
430 size = 4;
431 else if ((vtop->type.t & VT_BTYPE) == VT_DOUBLE)
432 size = 8;
433 else
434 size = 12;
435 oad(0xec81, size); /* sub $xxx, %esp */
436 if (size == 12)
437 o(0x7cdb);
438 else
439 o(0x5cd9 + size - 4); /* fstp[s|l] 0(%esp) */
440 g(0x24);
441 g(0x00);
442 args_size += size;
443 } else {
444 /* simple type (currently always same size) */
445 /* XXX: implicit cast ? */
446 r = gv(RC_INT);
447 if ((vtop->type.t & VT_BTYPE) == VT_LLONG) {
448 size = 8;
449 o(0x50 + vtop->r2); /* push r */
450 } else {
451 size = 4;
453 o(0x50 + r); /* push r */
454 args_size += size;
456 vtop--;
458 save_regs(0); /* save used temporary registers */
459 func_sym = vtop->type.ref;
460 func_call = FUNC_CALL(func_sym->r);
461 /* fast call case */
462 if ((func_call >= FUNC_FASTCALL1 && func_call <= FUNC_FASTCALL3) ||
463 func_call == FUNC_FASTCALLW) {
464 int fastcall_nb_regs;
465 uint8_t *fastcall_regs_ptr;
466 if (func_call == FUNC_FASTCALLW) {
467 fastcall_regs_ptr = fastcallw_regs;
468 fastcall_nb_regs = 2;
469 } else {
470 fastcall_regs_ptr = fastcall_regs;
471 fastcall_nb_regs = func_call - FUNC_FASTCALL1 + 1;
473 for(i = 0;i < fastcall_nb_regs; i++) {
474 if (args_size <= 0)
475 break;
476 o(0x58 + fastcall_regs_ptr[i]); /* pop r */
477 /* XXX: incorrect for struct/floats */
478 args_size -= 4;
481 #ifndef TCC_TARGET_PE
482 else if ((vtop->type.ref->type.t & VT_BTYPE) == VT_STRUCT)
483 args_size -= 4;
484 #endif
485 gcall_or_jmp(0);
487 if (args_size && func_call != FUNC_STDCALL)
488 gadd_sp(args_size);
489 vtop--;
492 #ifdef TCC_TARGET_PE
493 #define FUNC_PROLOG_SIZE 10
494 #else
495 #define FUNC_PROLOG_SIZE 9
496 #endif
498 /* generate function prolog of type 't' */
499 ST_FUNC void gfunc_prolog(CType *func_type)
501 int addr, align, size, func_call, fastcall_nb_regs;
502 int param_index, param_addr;
503 uint8_t *fastcall_regs_ptr;
504 Sym *sym;
505 CType *type;
507 sym = func_type->ref;
508 func_call = FUNC_CALL(sym->r);
509 addr = 8;
510 loc = 0;
511 func_vc = 0;
513 if (func_call >= FUNC_FASTCALL1 && func_call <= FUNC_FASTCALL3) {
514 fastcall_nb_regs = func_call - FUNC_FASTCALL1 + 1;
515 fastcall_regs_ptr = fastcall_regs;
516 } else if (func_call == FUNC_FASTCALLW) {
517 fastcall_nb_regs = 2;
518 fastcall_regs_ptr = fastcallw_regs;
519 } else {
520 fastcall_nb_regs = 0;
521 fastcall_regs_ptr = NULL;
523 param_index = 0;
525 ind += FUNC_PROLOG_SIZE;
526 func_sub_sp_offset = ind;
527 /* if the function returns a structure, then add an
528 implicit pointer parameter */
529 func_vt = sym->type;
530 #ifdef TCC_TARGET_PE
531 size = type_size(&func_vt,&align);
532 if (((func_vt.t & VT_BTYPE) == VT_STRUCT) && (size > 8)) {
533 #else
534 if ((func_vt.t & VT_BTYPE) == VT_STRUCT) {
535 #endif
536 /* XXX: fastcall case ? */
537 func_vc = addr;
538 addr += 4;
539 param_index++;
541 /* define parameters */
542 while ((sym = sym->next) != NULL) {
543 type = &sym->type;
544 size = type_size(type, &align);
545 size = (size + 3) & ~3;
546 #ifdef FUNC_STRUCT_PARAM_AS_PTR
547 /* structs are passed as pointer */
548 if ((type->t & VT_BTYPE) == VT_STRUCT) {
549 size = 4;
551 #endif
552 if (param_index < fastcall_nb_regs) {
553 /* save FASTCALL register */
554 loc -= 4;
555 o(0x89); /* movl */
556 gen_modrm(fastcall_regs_ptr[param_index], VT_LOCAL, NULL, loc);
557 param_addr = loc;
558 } else {
559 param_addr = addr;
560 addr += size;
562 sym_push(sym->v & ~SYM_FIELD, type,
563 VT_LOCAL | lvalue_type(type->t), param_addr);
564 param_index++;
566 func_ret_sub = 0;
567 /* pascal type call ? */
568 if (func_call == FUNC_STDCALL)
569 func_ret_sub = addr - 8;
570 #ifndef TCC_TARGET_PE
571 else if (func_vc)
572 func_ret_sub = 4;
573 #endif
575 #ifdef CONFIG_TCC_BCHECK
576 /* leave some room for bound checking code */
577 if (tcc_state->do_bounds_check) {
578 oad(0xb8, 0); /* lbound section pointer */
579 oad(0xb8, 0); /* call to function */
580 func_bound_offset = lbounds_section->data_offset;
582 #endif
584 #ifndef TCC_TARGET_PE
585 if (0 == strcmp(funcname, "main"))
586 gen_static_call(TOK___tcc_fpinit);
587 #endif
591 /* generate function epilog */
592 ST_FUNC void gfunc_epilog(void)
594 int v, saved_ind;
596 #ifdef CONFIG_TCC_BCHECK
597 if (tcc_state->do_bounds_check
598 && func_bound_offset != lbounds_section->data_offset) {
599 int saved_ind;
600 int *bounds_ptr;
601 Sym *sym_data;
602 /* add end of table info */
603 bounds_ptr = section_ptr_add(lbounds_section, sizeof(int));
604 *bounds_ptr = 0;
605 /* generate bound local allocation */
606 saved_ind = ind;
607 ind = func_sub_sp_offset;
608 sym_data = get_sym_ref(&char_pointer_type, lbounds_section,
609 func_bound_offset, lbounds_section->data_offset);
610 greloc(cur_text_section, sym_data,
611 ind + 1, R_386_32);
612 oad(0xb8, 0); /* mov %eax, xxx */
613 gen_static_call(TOK___bound_local_new);
615 ind = saved_ind;
616 /* generate bound check local freeing */
617 o(0x5250); /* save returned value, if any */
618 greloc(cur_text_section, sym_data,
619 ind + 1, R_386_32);
620 oad(0xb8, 0); /* mov %eax, xxx */
621 gen_static_call(TOK___bound_local_delete);
623 o(0x585a); /* restore returned value, if any */
625 #endif
626 o(0xc9); /* leave */
627 if (func_ret_sub == 0) {
628 o(0xc3); /* ret */
629 } else {
630 o(0xc2); /* ret n */
631 g(func_ret_sub);
632 g(func_ret_sub >> 8);
634 /* align local size to word & save local variables */
636 v = (-loc + 3) & -4;
637 saved_ind = ind;
638 ind = func_sub_sp_offset - FUNC_PROLOG_SIZE;
639 #ifdef TCC_TARGET_PE
640 if (v >= 4096) {
641 oad(0xb8, v); /* mov stacksize, %eax */
642 gen_static_call(TOK___chkstk); /* call __chkstk, (does the stackframe too) */
643 } else
644 #endif
646 o(0xe58955); /* push %ebp, mov %esp, %ebp */
647 o(0xec81); /* sub esp, stacksize */
648 gen_le32(v);
649 #if FUNC_PROLOG_SIZE == 10
650 o(0x90); /* adjust to FUNC_PROLOG_SIZE */
651 #endif
653 ind = saved_ind;
656 /* generate a jump to a label */
657 ST_FUNC int gjmp(int t)
659 return psym(0xe9, t);
662 /* generate a jump to a fixed address */
663 ST_FUNC void gjmp_addr(int a)
665 int r;
666 r = a - ind - 2;
667 if (r == (char)r) {
668 g(0xeb);
669 g(r);
670 } else {
671 oad(0xe9, a - ind - 5);
675 /* generate a test. set 'inv' to invert test. Stack entry is popped */
676 ST_FUNC int gtst(int inv, int t)
678 int v, *p;
680 v = vtop->r & VT_VALMASK;
681 if (v == VT_CMP) {
682 /* fast case : can jump directly since flags are set */
683 g(0x0f);
684 t = psym((vtop->c.i - 16) ^ inv, t);
685 } else if (v == VT_JMP || v == VT_JMPI) {
686 /* && or || optimization */
687 if ((v & 1) == inv) {
688 /* insert vtop->c jump list in t */
689 p = &vtop->c.i;
690 while (*p != 0)
691 p = (int *)(cur_text_section->data + *p);
692 *p = t;
693 t = vtop->c.i;
694 } else {
695 t = gjmp(t);
696 gsym(vtop->c.i);
698 } else {
699 if (is_float(vtop->type.t) ||
700 (vtop->type.t & VT_BTYPE) == VT_LLONG) {
701 vpushi(0);
702 gen_op(TOK_NE);
704 if ((vtop->r & (VT_VALMASK | VT_LVAL | VT_SYM)) == VT_CONST) {
705 /* constant jmp optimization */
706 if ((vtop->c.i != 0) != inv)
707 t = gjmp(t);
708 } else {
709 v = gv(RC_INT);
710 o(0x85);
711 o(0xc0 + v * 9);
712 g(0x0f);
713 t = psym(0x85 ^ inv, t);
716 vtop--;
717 return t;
720 /* generate an integer binary operation */
721 ST_FUNC void gen_opi(int op)
723 int r, fr, opc, c;
725 switch(op) {
726 case '+':
727 case TOK_ADDC1: /* add with carry generation */
728 opc = 0;
729 gen_op8:
730 if ((vtop->r & (VT_VALMASK | VT_LVAL | VT_SYM)) == VT_CONST) {
731 /* constant case */
732 vswap();
733 r = gv(RC_INT);
734 vswap();
735 c = vtop->c.i;
736 if (c == (char)c) {
737 /* generate inc and dec for smaller code */
738 if (c==1 && opc==0) {
739 o (0x40 | r); // inc
740 } else if (c==1 && opc==5) {
741 o (0x48 | r); // dec
742 } else {
743 o(0x83);
744 o(0xc0 | (opc << 3) | r);
745 g(c);
747 } else {
748 o(0x81);
749 oad(0xc0 | (opc << 3) | r, c);
751 } else {
752 gv2(RC_INT, RC_INT);
753 r = vtop[-1].r;
754 fr = vtop[0].r;
755 o((opc << 3) | 0x01);
756 o(0xc0 + r + fr * 8);
758 vtop--;
759 if (op >= TOK_ULT && op <= TOK_GT) {
760 vtop->r = VT_CMP;
761 vtop->c.i = op;
763 break;
764 case '-':
765 case TOK_SUBC1: /* sub with carry generation */
766 opc = 5;
767 goto gen_op8;
768 case TOK_ADDC2: /* add with carry use */
769 opc = 2;
770 goto gen_op8;
771 case TOK_SUBC2: /* sub with carry use */
772 opc = 3;
773 goto gen_op8;
774 case '&':
775 opc = 4;
776 goto gen_op8;
777 case '^':
778 opc = 6;
779 goto gen_op8;
780 case '|':
781 opc = 1;
782 goto gen_op8;
783 case '*':
784 gv2(RC_INT, RC_INT);
785 r = vtop[-1].r;
786 fr = vtop[0].r;
787 vtop--;
788 o(0xaf0f); /* imul fr, r */
789 o(0xc0 + fr + r * 8);
790 break;
791 case TOK_SHL:
792 opc = 4;
793 goto gen_shift;
794 case TOK_SHR:
795 opc = 5;
796 goto gen_shift;
797 case TOK_SAR:
798 opc = 7;
799 gen_shift:
800 opc = 0xc0 | (opc << 3);
801 if ((vtop->r & (VT_VALMASK | VT_LVAL | VT_SYM)) == VT_CONST) {
802 /* constant case */
803 vswap();
804 r = gv(RC_INT);
805 vswap();
806 c = vtop->c.i & 0x1f;
807 o(0xc1); /* shl/shr/sar $xxx, r */
808 o(opc | r);
809 g(c);
810 } else {
811 /* we generate the shift in ecx */
812 gv2(RC_INT, RC_ECX);
813 r = vtop[-1].r;
814 o(0xd3); /* shl/shr/sar %cl, r */
815 o(opc | r);
817 vtop--;
818 break;
819 case '/':
820 case TOK_UDIV:
821 case TOK_PDIV:
822 case '%':
823 case TOK_UMOD:
824 case TOK_UMULL:
825 /* first operand must be in eax */
826 /* XXX: need better constraint for second operand */
827 gv2(RC_EAX, RC_ECX);
828 r = vtop[-1].r;
829 fr = vtop[0].r;
830 vtop--;
831 save_reg(TREG_EDX);
832 if (op == TOK_UMULL) {
833 o(0xf7); /* mul fr */
834 o(0xe0 + fr);
835 vtop->r2 = TREG_EDX;
836 r = TREG_EAX;
837 } else {
838 if (op == TOK_UDIV || op == TOK_UMOD) {
839 o(0xf7d231); /* xor %edx, %edx, div fr, %eax */
840 o(0xf0 + fr);
841 } else {
842 o(0xf799); /* cltd, idiv fr, %eax */
843 o(0xf8 + fr);
845 if (op == '%' || op == TOK_UMOD)
846 r = TREG_EDX;
847 else
848 r = TREG_EAX;
850 vtop->r = r;
851 break;
852 default:
853 opc = 7;
854 goto gen_op8;
858 /* generate a floating point operation 'v = t1 op t2' instruction. The
859 two operands are guaranted to have the same floating point type */
860 /* XXX: need to use ST1 too */
861 ST_FUNC void gen_opf(int op)
863 int a, ft, fc, swapped, r;
865 /* convert constants to memory references */
866 if ((vtop[-1].r & (VT_VALMASK | VT_LVAL)) == VT_CONST) {
867 vswap();
868 gv(RC_FLOAT);
869 vswap();
871 if ((vtop[0].r & (VT_VALMASK | VT_LVAL)) == VT_CONST)
872 gv(RC_FLOAT);
874 /* must put at least one value in the floating point register */
875 if ((vtop[-1].r & VT_LVAL) &&
876 (vtop[0].r & VT_LVAL)) {
877 vswap();
878 gv(RC_FLOAT);
879 vswap();
881 swapped = 0;
882 /* swap the stack if needed so that t1 is the register and t2 is
883 the memory reference */
884 if (vtop[-1].r & VT_LVAL) {
885 vswap();
886 swapped = 1;
888 if (op >= TOK_ULT && op <= TOK_GT) {
889 /* load on stack second operand */
890 load(TREG_ST0, vtop);
891 save_reg(TREG_EAX); /* eax is used by FP comparison code */
892 if (op == TOK_GE || op == TOK_GT)
893 swapped = !swapped;
894 else if (op == TOK_EQ || op == TOK_NE)
895 swapped = 0;
896 if (swapped)
897 o(0xc9d9); /* fxch %st(1) */
898 o(0xe9da); /* fucompp */
899 o(0xe0df); /* fnstsw %ax */
900 if (op == TOK_EQ) {
901 o(0x45e480); /* and $0x45, %ah */
902 o(0x40fC80); /* cmp $0x40, %ah */
903 } else if (op == TOK_NE) {
904 o(0x45e480); /* and $0x45, %ah */
905 o(0x40f480); /* xor $0x40, %ah */
906 op = TOK_NE;
907 } else if (op == TOK_GE || op == TOK_LE) {
908 o(0x05c4f6); /* test $0x05, %ah */
909 op = TOK_EQ;
910 } else {
911 o(0x45c4f6); /* test $0x45, %ah */
912 op = TOK_EQ;
914 vtop--;
915 vtop->r = VT_CMP;
916 vtop->c.i = op;
917 } else {
918 /* no memory reference possible for long double operations */
919 if ((vtop->type.t & VT_BTYPE) == VT_LDOUBLE) {
920 load(TREG_ST0, vtop);
921 swapped = !swapped;
924 switch(op) {
925 default:
926 case '+':
927 a = 0;
928 break;
929 case '-':
930 a = 4;
931 if (swapped)
932 a++;
933 break;
934 case '*':
935 a = 1;
936 break;
937 case '/':
938 a = 6;
939 if (swapped)
940 a++;
941 break;
943 ft = vtop->type.t;
944 fc = vtop->c.ul;
945 if ((ft & VT_BTYPE) == VT_LDOUBLE) {
946 o(0xde); /* fxxxp %st, %st(1) */
947 o(0xc1 + (a << 3));
948 } else {
949 /* if saved lvalue, then we must reload it */
950 r = vtop->r;
951 if ((r & VT_VALMASK) == VT_LLOCAL) {
952 SValue v1;
953 r = get_reg(RC_INT);
954 v1.type.t = VT_INT;
955 v1.r = VT_LOCAL | VT_LVAL;
956 v1.c.ul = fc;
957 load(r, &v1);
958 fc = 0;
961 if ((ft & VT_BTYPE) == VT_DOUBLE)
962 o(0xdc);
963 else
964 o(0xd8);
965 gen_modrm(a, r, vtop->sym, fc);
967 vtop--;
971 /* convert integers to fp 't' type. Must handle 'int', 'unsigned int'
972 and 'long long' cases. */
973 ST_FUNC void gen_cvt_itof(int t)
975 save_reg(TREG_ST0);
976 gv(RC_INT);
977 if ((vtop->type.t & VT_BTYPE) == VT_LLONG) {
978 /* signed long long to float/double/long double (unsigned case
979 is handled generically) */
980 o(0x50 + vtop->r2); /* push r2 */
981 o(0x50 + (vtop->r & VT_VALMASK)); /* push r */
982 o(0x242cdf); /* fildll (%esp) */
983 o(0x08c483); /* add $8, %esp */
984 } else if ((vtop->type.t & (VT_BTYPE | VT_UNSIGNED)) ==
985 (VT_INT | VT_UNSIGNED)) {
986 /* unsigned int to float/double/long double */
987 o(0x6a); /* push $0 */
988 g(0x00);
989 o(0x50 + (vtop->r & VT_VALMASK)); /* push r */
990 o(0x242cdf); /* fildll (%esp) */
991 o(0x08c483); /* add $8, %esp */
992 } else {
993 /* int to float/double/long double */
994 o(0x50 + (vtop->r & VT_VALMASK)); /* push r */
995 o(0x2404db); /* fildl (%esp) */
996 o(0x04c483); /* add $4, %esp */
998 vtop->r = TREG_ST0;
1001 /* convert fp to int 't' type */
1002 /* XXX: handle long long case */
1003 ST_FUNC void gen_cvt_ftoi(int t)
1005 gv(RC_FLOAT);
1006 save_reg(TREG_EAX);
1007 save_reg(TREG_EDX);
1008 gen_static_call(TOK___tcc_cvt_ftol);
1009 vtop->r = TREG_EAX; /* mark reg as used */
1010 if (t == VT_LLONG)
1011 vtop->r2 = TREG_EDX;
1014 /* convert from one floating point type to another */
1015 ST_FUNC void gen_cvt_ftof(int t)
1017 /* all we have to do on i386 is to put the float in a register */
1018 gv(RC_FLOAT);
1021 /* computed goto support */
1022 ST_FUNC void ggoto(void)
1024 gcall_or_jmp(1);
1025 vtop--;
1028 /* bound check support functions */
1029 #ifdef CONFIG_TCC_BCHECK
1031 /* generate a bounded pointer addition */
1032 ST_FUNC void gen_bounded_ptr_add(void)
1034 /* prepare fast i386 function call (args in eax and edx) */
1035 gv2(RC_EAX, RC_EDX);
1036 /* save all temporary registers */
1037 vtop -= 2;
1038 save_regs(0);
1039 /* do a fast function call */
1040 gen_static_call(TOK___bound_ptr_add);
1041 /* returned pointer is in eax */
1042 vtop++;
1043 vtop->r = TREG_EAX | VT_BOUNDED;
1044 /* address of bounding function call point */
1045 vtop->c.ul = (cur_text_section->reloc->data_offset - sizeof(Elf32_Rel));
1048 /* patch pointer addition in vtop so that pointer dereferencing is
1049 also tested */
1050 ST_FUNC void gen_bounded_ptr_deref(void)
1052 int func;
1053 int size, align;
1054 Elf32_Rel *rel;
1055 Sym *sym;
1057 size = 0;
1058 /* XXX: put that code in generic part of tcc */
1059 if (!is_float(vtop->type.t)) {
1060 if (vtop->r & VT_LVAL_BYTE)
1061 size = 1;
1062 else if (vtop->r & VT_LVAL_SHORT)
1063 size = 2;
1065 if (!size)
1066 size = type_size(&vtop->type, &align);
1067 switch(size) {
1068 case 1: func = TOK___bound_ptr_indir1; break;
1069 case 2: func = TOK___bound_ptr_indir2; break;
1070 case 4: func = TOK___bound_ptr_indir4; break;
1071 case 8: func = TOK___bound_ptr_indir8; break;
1072 case 12: func = TOK___bound_ptr_indir12; break;
1073 case 16: func = TOK___bound_ptr_indir16; break;
1074 default:
1075 tcc_error("unhandled size when dereferencing bounded pointer");
1076 func = 0;
1077 break;
1080 /* patch relocation */
1081 /* XXX: find a better solution ? */
1082 rel = (Elf32_Rel *)(cur_text_section->reloc->data + vtop->c.ul);
1083 sym = external_global_sym(func, &func_old_type, 0);
1084 if (!sym->c)
1085 put_extern_sym(sym, NULL, 0, 0);
1086 rel->r_info = ELF32_R_INFO(sym->c, ELF32_R_TYPE(rel->r_info));
1088 #endif
1090 /* Save the stack pointer onto the stack */
1091 ST_FUNC void gen_vla_sp_save(int addr) {
1092 /* mov %esp,addr(%ebp)*/
1093 o(0x89);
1094 gen_modrm(TREG_ESP, VT_LOCAL, NULL, addr);
1097 /* Restore the SP from a location on the stack */
1098 ST_FUNC void gen_vla_sp_restore(int addr) {
1099 o(0x8b);
1100 gen_modrm(TREG_ESP, VT_LOCAL, NULL, addr);
1103 /* Subtract from the stack pointer, and push the resulting value onto the stack */
1104 ST_FUNC void gen_vla_alloc(CType *type, int align) {
1105 #ifdef TCC_TARGET_PE
1106 /* alloca does more than just adjust %rsp on Windows */
1107 vpush_global_sym(&func_old_type, TOK_alloca);
1108 vswap(); /* Move alloca ref past allocation size */
1109 gfunc_call(1);
1110 vset(type, REG_IRET, 0);
1111 #else
1112 int r;
1113 r = gv(RC_INT); /* allocation size */
1114 /* sub r,%rsp */
1115 o(0x2b);
1116 o(0xe0 | r);
1117 /* We align to 16 bytes rather than align */
1118 /* and ~15, %esp */
1119 o(0xf0e483);
1120 /* mov %esp, r */
1121 o(0x89);
1122 o(0xe0 | r);
1123 vpop();
1124 vset(type, r, 0);
1125 #endif
1128 /* end of X86 code generator */
1129 /*************************************************************/
1130 #endif
1131 /*************************************************************/