added CType structure for type storage - supressed define hash table - added time...
[tinycc.git] / i386-gen.c
blobab2d794f3f307cc51a668d4fa31778ed069aeae3
1 /*
2 * X86 code generator for TCC
3 *
4 * Copyright (c) 2001, 2002 Fabrice Bellard
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program 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
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 /* number of available registers */
22 #define NB_REGS 4
24 /* a register can belong to several classes. The classes must be
25 sorted from more general to more precise (see gv2() code which does
26 assumptions on it). */
27 #define RC_INT 0x0001 /* generic integer register */
28 #define RC_FLOAT 0x0002 /* generic float register */
29 #define RC_EAX 0x0004
30 #define RC_ST0 0x0008
31 #define RC_ECX 0x0010
32 #define RC_EDX 0x0020
33 #define RC_IRET RC_EAX /* function return: integer register */
34 #define RC_LRET RC_EDX /* function return: second integer register */
35 #define RC_FRET RC_ST0 /* function return: float register */
37 /* pretty names for the registers */
38 enum {
39 REG_EAX = 0,
40 REG_ECX,
41 REG_EDX,
42 REG_ST0,
45 int reg_classes[NB_REGS] = {
46 /* eax */ RC_INT | RC_EAX,
47 /* ecx */ RC_INT | RC_ECX,
48 /* edx */ RC_INT | RC_EDX,
49 /* st0 */ RC_FLOAT | RC_ST0,
52 /* return registers for function */
53 #define REG_IRET REG_EAX /* single word int return register */
54 #define REG_LRET REG_EDX /* second word return register (for long long) */
55 #define REG_FRET REG_ST0 /* float return register */
57 /* defined if function parameters must be evaluated in reverse order */
58 #define INVERT_FUNC_PARAMS
60 /* defined if structures are passed as pointers. Otherwise structures
61 are directly pushed on stack. */
62 //#define FUNC_STRUCT_PARAM_AS_PTR
64 /* pointer size, in bytes */
65 #define PTR_SIZE 4
67 /* long double size and alignment, in bytes */
68 #define LDOUBLE_SIZE 12
69 #define LDOUBLE_ALIGN 4
71 /* relocation type for 32 bit data relocation */
72 #define R_DATA_32 R_386_32
74 /* function call context */
75 typedef struct GFuncContext {
76 int args_size;
77 int func_call; /* func call type (FUNC_STDCALL or FUNC_CDECL) */
78 } GFuncContext;
80 /******************************************************/
82 static unsigned long func_sub_sp_offset;
83 static unsigned long func_bound_offset;
84 static int func_ret_sub;
86 /* XXX: make it faster ? */
87 void g(int c)
89 int ind1;
90 ind1 = ind + 1;
91 if (ind1 > cur_text_section->data_allocated)
92 section_realloc(cur_text_section, ind1);
93 cur_text_section->data[ind] = c;
94 ind = ind1;
97 void o(int c)
99 while (c) {
100 g(c);
101 c = c / 256;
105 void gen_le32(int c)
107 g(c);
108 g(c >> 8);
109 g(c >> 16);
110 g(c >> 24);
113 /* output a symbol and patch all calls to it */
114 void gsym_addr(int t, int a)
116 int n, *ptr;
117 while (t) {
118 ptr = (int *)(cur_text_section->data + t);
119 n = *ptr; /* next value */
120 *ptr = a - t - 4;
121 t = n;
125 void gsym(int t)
127 gsym_addr(t, ind);
130 /* psym is used to put an instruction with a data field which is a
131 reference to a symbol. It is in fact the same as oad ! */
132 #define psym oad
134 /* instruction + 4 bytes data. Return the address of the data */
135 static int oad(int c, int s)
137 int ind1;
139 o(c);
140 ind1 = ind + 4;
141 if (ind1 > cur_text_section->data_allocated)
142 section_realloc(cur_text_section, ind1);
143 *(int *)(cur_text_section->data + ind) = s;
144 s = ind;
145 ind = ind1;
146 return s;
149 /* output constant with relocation if 'r & VT_SYM' is true */
150 static void gen_addr32(int r, Sym *sym, int c)
152 if (r & VT_SYM)
153 greloc(cur_text_section, sym, ind, R_386_32);
154 gen_le32(c);
157 /* generate a modrm reference. 'op_reg' contains the addtionnal 3
158 opcode bits */
159 static void gen_modrm(int op_reg, int r, Sym *sym, int c)
161 op_reg = op_reg << 3;
162 if ((r & VT_VALMASK) == VT_CONST) {
163 /* constant memory reference */
164 o(0x05 | op_reg);
165 gen_addr32(r, sym, c);
166 } else if ((r & VT_VALMASK) == VT_LOCAL) {
167 /* currently, we use only ebp as base */
168 if (c == (char)c) {
169 /* short reference */
170 o(0x45 | op_reg);
171 g(c);
172 } else {
173 oad(0x85 | op_reg, c);
175 } else {
176 g(0x00 | op_reg | (r & VT_VALMASK));
181 /* load 'r' from value 'sv' */
182 void load(int r, SValue *sv)
184 int v, t, ft, fc, fr;
185 SValue v1;
187 fr = sv->r;
188 ft = sv->type.t;
189 fc = sv->c.ul;
191 v = fr & VT_VALMASK;
192 if (fr & VT_LVAL) {
193 if (v == VT_LLOCAL) {
194 v1.type.t = VT_INT;
195 v1.r = VT_LOCAL | VT_LVAL;
196 v1.c.ul = fc;
197 load(r, &v1);
198 fr = r;
200 if ((ft & VT_BTYPE) == VT_FLOAT) {
201 o(0xd9); /* flds */
202 r = 0;
203 } else if ((ft & VT_BTYPE) == VT_DOUBLE) {
204 o(0xdd); /* fldl */
205 r = 0;
206 } else if ((ft & VT_BTYPE) == VT_LDOUBLE) {
207 o(0xdb); /* fldt */
208 r = 5;
209 } else if ((ft & VT_TYPE) == VT_BYTE) {
210 o(0xbe0f); /* movsbl */
211 } else if ((ft & VT_TYPE) == (VT_BYTE | VT_UNSIGNED)) {
212 o(0xb60f); /* movzbl */
213 } else if ((ft & VT_TYPE) == VT_SHORT) {
214 o(0xbf0f); /* movswl */
215 } else if ((ft & VT_TYPE) == (VT_SHORT | VT_UNSIGNED)) {
216 o(0xb70f); /* movzwl */
217 } else {
218 o(0x8b); /* movl */
220 gen_modrm(r, fr, sv->sym, fc);
221 } else {
222 if (v == VT_CONST) {
223 o(0xb8 + r); /* mov $xx, r */
224 gen_addr32(fr, sv->sym, fc);
225 } else if (v == VT_LOCAL) {
226 o(0x8d); /* lea xxx(%ebp), r */
227 gen_modrm(r, VT_LOCAL, sv->sym, fc);
228 } else if (v == VT_CMP) {
229 oad(0xb8 + r, 0); /* mov $0, r */
230 o(0x0f); /* setxx %br */
231 o(fc);
232 o(0xc0 + r);
233 } else if (v == VT_JMP || v == VT_JMPI) {
234 t = v & 1;
235 oad(0xb8 + r, t); /* mov $1, r */
236 o(0x05eb); /* jmp after */
237 gsym(fc);
238 oad(0xb8 + r, t ^ 1); /* mov $0, r */
239 } else if (v != r) {
240 o(0x89);
241 o(0xc0 + r + v * 8); /* mov v, r */
246 /* store register 'r' in lvalue 'v' */
247 void store(int r, SValue *v)
249 int fr, bt, ft, fc;
251 ft = v->type.t;
252 fc = v->c.ul;
253 fr = v->r & VT_VALMASK;
254 bt = ft & VT_BTYPE;
255 /* XXX: incorrect if float reg to reg */
256 if (bt == VT_FLOAT) {
257 o(0xd9); /* fsts */
258 r = 2;
259 } else if (bt == VT_DOUBLE) {
260 o(0xdd); /* fstpl */
261 r = 2;
262 } else if (bt == VT_LDOUBLE) {
263 o(0xc0d9); /* fld %st(0) */
264 o(0xdb); /* fstpt */
265 r = 7;
266 } else {
267 if (bt == VT_SHORT)
268 o(0x66);
269 if (bt == VT_BYTE)
270 o(0x88);
271 else
272 o(0x89);
274 if (fr == VT_CONST ||
275 fr == VT_LOCAL ||
276 (v->r & VT_LVAL)) {
277 gen_modrm(r, v->r, v->sym, fc);
278 } else if (fr != r) {
279 o(0xc0 + fr + r * 8); /* mov r, fr */
283 /* start function call and return function call context */
284 void gfunc_start(GFuncContext *c, int func_call)
286 c->args_size = 0;
287 c->func_call = func_call;
290 /* push function parameter which is in (vtop->t, vtop->c). Stack entry
291 is then popped. */
292 void gfunc_param(GFuncContext *c)
294 int size, align, r;
296 if ((vtop->type.t & VT_BTYPE) == VT_STRUCT) {
297 size = type_size(&vtop->type, &align);
298 /* align to stack align size */
299 size = (size + 3) & ~3;
300 /* allocate the necessary size on stack */
301 oad(0xec81, size); /* sub $xxx, %esp */
302 /* generate structure store */
303 r = get_reg(RC_INT);
304 o(0x89); /* mov %esp, r */
305 o(0xe0 + r);
306 vset(&vtop->type, r | VT_LVAL, 0);
307 vswap();
308 vstore();
309 c->args_size += size;
310 } else if (is_float(vtop->type.t)) {
311 gv(RC_FLOAT); /* only one float register */
312 if ((vtop->type.t & VT_BTYPE) == VT_FLOAT)
313 size = 4;
314 else if ((vtop->type.t & VT_BTYPE) == VT_DOUBLE)
315 size = 8;
316 else
317 size = 12;
318 oad(0xec81, size); /* sub $xxx, %esp */
319 if (size == 12)
320 o(0x7cdb);
321 else
322 o(0x5cd9 + size - 4); /* fstp[s|l] 0(%esp) */
323 g(0x24);
324 g(0x00);
325 c->args_size += size;
326 } else {
327 /* simple type (currently always same size) */
328 /* XXX: implicit cast ? */
329 r = gv(RC_INT);
330 if ((vtop->type.t & VT_BTYPE) == VT_LLONG) {
331 size = 8;
332 o(0x50 + vtop->r2); /* push r */
333 } else {
334 size = 4;
336 o(0x50 + r); /* push r */
337 c->args_size += size;
339 vtop--;
342 static void gadd_sp(int val)
344 if (val == (char)val) {
345 o(0xc483);
346 g(val);
347 } else {
348 oad(0xc481, val); /* add $xxx, %esp */
352 /* 'is_jmp' is '1' if it is a jump */
353 static void gcall_or_jmp(int is_jmp)
355 int r;
356 if ((vtop->r & (VT_VALMASK | VT_LVAL)) == VT_CONST) {
357 /* constant case */
358 if (vtop->r & VT_SYM) {
359 /* relocation case */
360 greloc(cur_text_section, vtop->sym,
361 ind + 1, R_386_PC32);
362 } else {
363 /* put an empty PC32 relocation */
364 put_elf_reloc(symtab_section, cur_text_section,
365 ind + 1, R_386_PC32, 0);
367 oad(0xe8 + is_jmp, vtop->c.ul - 4); /* call/jmp im */
368 } else {
369 /* otherwise, indirect call */
370 r = gv(RC_INT);
371 o(0xff); /* call/jmp *r */
372 o(0xd0 + r + (is_jmp << 4));
376 /* generate function call with address in (vtop->t, vtop->c) and free function
377 context. Stack entry is popped */
378 void gfunc_call(GFuncContext *c)
380 gcall_or_jmp(0);
381 if (c->args_size && c->func_call == FUNC_CDECL)
382 gadd_sp(c->args_size);
383 vtop--;
386 /* generate function prolog of type 't' */
387 void gfunc_prolog(CType *func_type)
389 int addr, align, size, func_call;
390 Sym *sym;
391 CType *type;
393 sym = func_type->ref;
394 func_call = sym->r;
395 addr = 8;
396 /* if the function returns a structure, then add an
397 implicit pointer parameter */
398 func_vt = sym->type;
399 if ((func_vt.t & VT_BTYPE) == VT_STRUCT) {
400 func_vc = addr;
401 addr += 4;
403 /* define parameters */
404 while ((sym = sym->next) != NULL) {
405 type = &sym->type;
406 sym_push(sym->v & ~SYM_FIELD, type,
407 VT_LOCAL | VT_LVAL, addr);
408 size = type_size(type, &align);
409 size = (size + 3) & ~3;
410 #ifdef FUNC_STRUCT_PARAM_AS_PTR
411 /* structs are passed as pointer */
412 if ((type->t & VT_BTYPE) == VT_STRUCT) {
413 size = 4;
415 #endif
416 addr += size;
418 func_ret_sub = 0;
419 /* pascal type call ? */
420 if (func_call == FUNC_STDCALL)
421 func_ret_sub = addr - 8;
422 o(0xe58955); /* push %ebp, mov %esp, %ebp */
423 func_sub_sp_offset = oad(0xec81, 0); /* sub $xxx, %esp */
424 /* leave some room for bound checking code */
425 if (do_bounds_check) {
426 oad(0xb8, 0); /* lbound section pointer */
427 oad(0xb8, 0); /* call to function */
428 func_bound_offset = lbounds_section->data_offset;
432 /* generate function epilog */
433 void gfunc_epilog(void)
435 #ifdef CONFIG_TCC_BCHECK
436 if (do_bounds_check && func_bound_offset != lbounds_section->data_offset) {
437 int saved_ind;
438 int *bounds_ptr;
439 Sym *sym, *sym_data;
440 /* add end of table info */
441 bounds_ptr = section_ptr_add(lbounds_section, sizeof(int));
442 *bounds_ptr = 0;
443 /* generate bound local allocation */
444 saved_ind = ind;
445 ind = func_sub_sp_offset + 4;
446 sym_data = get_sym_ref(&char_pointer_type, lbounds_section,
447 func_bound_offset, lbounds_section->data_offset);
448 greloc(cur_text_section, sym_data,
449 ind + 1, R_386_32);
450 oad(0xb8, 0); /* mov %eax, xxx */
451 sym = external_global_sym(TOK___bound_local_new, &func_old_type, 0);
452 greloc(cur_text_section, sym,
453 ind + 1, R_386_PC32);
454 oad(0xe8, -4);
455 ind = saved_ind;
456 /* generate bound check local freeing */
457 o(0x5250); /* save returned value, if any */
458 greloc(cur_text_section, sym_data,
459 ind + 1, R_386_32);
460 oad(0xb8, 0); /* mov %eax, xxx */
461 sym = external_global_sym(TOK___bound_local_delete, &func_old_type, 0);
462 greloc(cur_text_section, sym,
463 ind + 1, R_386_PC32);
464 oad(0xe8, -4);
465 o(0x585a); /* restore returned value, if any */
467 #endif
468 o(0xc9); /* leave */
469 if (func_ret_sub == 0) {
470 o(0xc3); /* ret */
471 } else {
472 o(0xc2); /* ret n */
473 g(func_ret_sub);
474 g(func_ret_sub >> 8);
476 /* align local size to word & save local variables */
477 *(int *)(cur_text_section->data + func_sub_sp_offset) = (-loc + 3) & -4;
480 /* generate a jump to a label */
481 int gjmp(int t)
483 return psym(0xe9, t);
486 /* generate a jump to a fixed address */
487 void gjmp_addr(int a)
489 int r;
490 r = a - ind - 2;
491 if (r == (char)r) {
492 g(0xeb);
493 g(r);
494 } else {
495 oad(0xe9, a - ind - 5);
499 /* generate a test. set 'inv' to invert test. Stack entry is popped */
500 int gtst(int inv, int t)
502 int v, *p;
503 v = vtop->r & VT_VALMASK;
504 if (v == VT_CMP) {
505 /* fast case : can jump directly since flags are set */
506 g(0x0f);
507 t = psym((vtop->c.i - 16) ^ inv, t);
508 } else if (v == VT_JMP || v == VT_JMPI) {
509 /* && or || optimization */
510 if ((v & 1) == inv) {
511 /* insert vtop->c jump list in t */
512 p = &vtop->c.i;
513 while (*p != 0)
514 p = (int *)(cur_text_section->data + *p);
515 *p = t;
516 t = vtop->c.i;
517 } else {
518 t = gjmp(t);
519 gsym(vtop->c.i);
521 } else {
522 if (is_float(vtop->type.t)) {
523 vpushi(0);
524 gen_op(TOK_NE);
526 if ((vtop->r & (VT_VALMASK | VT_LVAL | VT_SYM)) == VT_CONST) {
527 /* constant jmp optimization */
528 if ((vtop->c.i != 0) != inv)
529 t = gjmp(t);
530 } else {
531 v = gv(RC_INT);
532 o(0x85);
533 o(0xc0 + v * 9);
534 g(0x0f);
535 t = psym(0x85 ^ inv, t);
538 vtop--;
539 return t;
542 /* generate an integer binary operation */
543 void gen_opi(int op)
545 int r, fr, opc, c;
547 switch(op) {
548 case '+':
549 case TOK_ADDC1: /* add with carry generation */
550 opc = 0;
551 gen_op8:
552 if ((vtop->r & (VT_VALMASK | VT_LVAL | VT_SYM)) == VT_CONST) {
553 /* constant case */
554 vswap();
555 r = gv(RC_INT);
556 vswap();
557 c = vtop->c.i;
558 if (c == (char)c) {
559 /* XXX: generate inc and dec for smaller code ? */
560 o(0x83);
561 o(0xc0 | (opc << 3) | r);
562 g(c);
563 } else {
564 o(0x81);
565 oad(0xc0 | (opc << 3) | r, c);
567 } else {
568 gv2(RC_INT, RC_INT);
569 r = vtop[-1].r;
570 fr = vtop[0].r;
571 o((opc << 3) | 0x01);
572 o(0xc0 + r + fr * 8);
574 vtop--;
575 if (op >= TOK_ULT && op <= TOK_GT) {
576 vtop->r = VT_CMP;
577 vtop->c.i = op;
579 break;
580 case '-':
581 case TOK_SUBC1: /* sub with carry generation */
582 opc = 5;
583 goto gen_op8;
584 case TOK_ADDC2: /* add with carry use */
585 opc = 2;
586 goto gen_op8;
587 case TOK_SUBC2: /* sub with carry use */
588 opc = 3;
589 goto gen_op8;
590 case '&':
591 opc = 4;
592 goto gen_op8;
593 case '^':
594 opc = 6;
595 goto gen_op8;
596 case '|':
597 opc = 1;
598 goto gen_op8;
599 case '*':
600 gv2(RC_INT, RC_INT);
601 r = vtop[-1].r;
602 fr = vtop[0].r;
603 vtop--;
604 o(0xaf0f); /* imul fr, r */
605 o(0xc0 + fr + r * 8);
606 break;
607 case TOK_SHL:
608 opc = 4;
609 goto gen_shift;
610 case TOK_SHR:
611 opc = 5;
612 goto gen_shift;
613 case TOK_SAR:
614 opc = 7;
615 gen_shift:
616 opc = 0xc0 | (opc << 3);
617 if ((vtop->r & (VT_VALMASK | VT_LVAL | VT_SYM)) == VT_CONST) {
618 /* constant case */
619 vswap();
620 r = gv(RC_INT);
621 vswap();
622 c = vtop->c.i & 0x1f;
623 o(0xc1); /* shl/shr/sar $xxx, r */
624 o(opc | r);
625 g(c);
626 } else {
627 /* we generate the shift in ecx */
628 gv2(RC_INT, RC_ECX);
629 r = vtop[-1].r;
630 o(0xd3); /* shl/shr/sar %cl, r */
631 o(opc | r);
633 vtop--;
634 break;
635 case '/':
636 case TOK_UDIV:
637 case TOK_PDIV:
638 case '%':
639 case TOK_UMOD:
640 case TOK_UMULL:
641 /* first operand must be in eax */
642 /* XXX: need better constraint for second operand */
643 gv2(RC_EAX, RC_ECX);
644 r = vtop[-1].r;
645 fr = vtop[0].r;
646 vtop--;
647 save_reg(REG_EDX);
648 if (op == TOK_UMULL) {
649 o(0xf7); /* mul fr */
650 o(0xe0 + fr);
651 vtop->r2 = REG_EDX;
652 r = REG_EAX;
653 } else {
654 if (op == TOK_UDIV || op == TOK_UMOD) {
655 o(0xf7d231); /* xor %edx, %edx, div fr, %eax */
656 o(0xf0 + fr);
657 } else {
658 o(0xf799); /* cltd, idiv fr, %eax */
659 o(0xf8 + fr);
661 if (op == '%' || op == TOK_UMOD)
662 r = REG_EDX;
663 else
664 r = REG_EAX;
666 vtop->r = r;
667 break;
668 default:
669 opc = 7;
670 goto gen_op8;
674 /* generate a floating point operation 'v = t1 op t2' instruction. The
675 two operands are guaranted to have the same floating point type */
676 /* XXX: need to use ST1 too */
677 void gen_opf(int op)
679 int a, ft, fc, swapped, r;
681 /* convert constants to memory references */
682 if ((vtop[-1].r & (VT_VALMASK | VT_LVAL)) == VT_CONST) {
683 vswap();
684 gv(RC_FLOAT);
685 vswap();
687 if ((vtop[0].r & (VT_VALMASK | VT_LVAL)) == VT_CONST)
688 gv(RC_FLOAT);
690 /* must put at least one value in the floating point register */
691 if ((vtop[-1].r & VT_LVAL) &&
692 (vtop[0].r & VT_LVAL)) {
693 vswap();
694 gv(RC_FLOAT);
695 vswap();
697 swapped = 0;
698 /* swap the stack if needed so that t1 is the register and t2 is
699 the memory reference */
700 if (vtop[-1].r & VT_LVAL) {
701 vswap();
702 swapped = 1;
704 if (op >= TOK_ULT && op <= TOK_GT) {
705 /* load on stack second operand */
706 load(REG_ST0, vtop);
707 save_reg(REG_EAX); /* eax is used by FP comparison code */
708 if (op == TOK_GE || op == TOK_GT)
709 swapped = !swapped;
710 else if (op == TOK_EQ || op == TOK_NE)
711 swapped = 0;
712 if (swapped)
713 o(0xc9d9); /* fxch %st(1) */
714 o(0xe9da); /* fucompp */
715 o(0xe0df); /* fnstsw %ax */
716 if (op == TOK_EQ) {
717 o(0x45e480); /* and $0x45, %ah */
718 o(0x40fC80); /* cmp $0x40, %ah */
719 } else if (op == TOK_NE) {
720 o(0x45e480); /* and $0x45, %ah */
721 o(0x40f480); /* xor $0x40, %ah */
722 op = TOK_NE;
723 } else if (op == TOK_GE || op == TOK_LE) {
724 o(0x05c4f6); /* test $0x05, %ah */
725 op = TOK_EQ;
726 } else {
727 o(0x45c4f6); /* test $0x45, %ah */
728 op = TOK_EQ;
730 vtop--;
731 vtop->r = VT_CMP;
732 vtop->c.i = op;
733 } else {
734 /* no memory reference possible for long double operations */
735 if ((vtop->type.t & VT_BTYPE) == VT_LDOUBLE) {
736 load(REG_ST0, vtop);
737 swapped = !swapped;
740 switch(op) {
741 default:
742 case '+':
743 a = 0;
744 break;
745 case '-':
746 a = 4;
747 if (swapped)
748 a++;
749 break;
750 case '*':
751 a = 1;
752 break;
753 case '/':
754 a = 6;
755 if (swapped)
756 a++;
757 break;
759 ft = vtop->type.t;
760 fc = vtop->c.ul;
761 if ((ft & VT_BTYPE) == VT_LDOUBLE) {
762 o(0xde); /* fxxxp %st, %st(1) */
763 o(0xc1 + (a << 3));
764 } else {
765 /* if saved lvalue, then we must reload it */
766 r = vtop->r;
767 if ((r & VT_VALMASK) == VT_LLOCAL) {
768 SValue v1;
769 r = get_reg(RC_INT);
770 v1.type.t = VT_INT;
771 v1.r = VT_LOCAL | VT_LVAL;
772 v1.c.ul = fc;
773 load(r, &v1);
774 fc = 0;
777 if ((ft & VT_BTYPE) == VT_DOUBLE)
778 o(0xdc);
779 else
780 o(0xd8);
781 gen_modrm(a, r, vtop->sym, fc);
783 vtop--;
787 /* convert integers to fp 't' type. Must handle 'int', 'unsigned int'
788 and 'long long' cases. */
789 void gen_cvt_itof(int t)
791 save_reg(REG_ST0);
792 gv(RC_INT);
793 if ((vtop->type.t & VT_BTYPE) == VT_LLONG) {
794 /* signed long long to float/double/long double (unsigned case
795 is handled generically) */
796 o(0x50 + vtop->r2); /* push r2 */
797 o(0x50 + (vtop->r & VT_VALMASK)); /* push r */
798 o(0x242cdf); /* fildll (%esp) */
799 o(0x08c483); /* add $8, %esp */
800 } else if ((vtop->type.t & (VT_BTYPE | VT_UNSIGNED)) ==
801 (VT_INT | VT_UNSIGNED)) {
802 /* unsigned int to float/double/long double */
803 o(0x6a); /* push $0 */
804 g(0x00);
805 o(0x50 + (vtop->r & VT_VALMASK)); /* push r */
806 o(0x242cdf); /* fildll (%esp) */
807 o(0x08c483); /* add $8, %esp */
808 } else {
809 /* int to float/double/long double */
810 o(0x50 + (vtop->r & VT_VALMASK)); /* push r */
811 o(0x2404db); /* fildl (%esp) */
812 o(0x04c483); /* add $4, %esp */
814 vtop->r = REG_ST0;
817 /* convert fp to int 't' type */
818 /* XXX: handle long long case */
819 void gen_cvt_ftoi(int t)
821 int r, r2, size;
822 Sym *sym;
823 CType ushort_type;
825 ushort_type.t = VT_SHORT | VT_UNSIGNED;
827 gv(RC_FLOAT);
828 if (t != VT_INT)
829 size = 8;
830 else
831 size = 4;
833 o(0x2dd9); /* ldcw xxx */
834 sym = external_global_sym(TOK___tcc_int_fpu_control,
835 &ushort_type, VT_LVAL);
836 greloc(cur_text_section, sym,
837 ind, R_386_32);
838 gen_le32(0);
840 oad(0xec81, size); /* sub $xxx, %esp */
841 if (size == 4)
842 o(0x1cdb); /* fistpl */
843 else
844 o(0x3cdf); /* fistpll */
845 o(0x24);
846 o(0x2dd9); /* ldcw xxx */
847 sym = external_global_sym(TOK___tcc_fpu_control,
848 &ushort_type, VT_LVAL);
849 greloc(cur_text_section, sym,
850 ind, R_386_32);
851 gen_le32(0);
853 r = get_reg(RC_INT);
854 o(0x58 + r); /* pop r */
855 if (size == 8) {
856 if (t == VT_LLONG) {
857 vtop->r = r; /* mark reg as used */
858 r2 = get_reg(RC_INT);
859 o(0x58 + r2); /* pop r2 */
860 vtop->r2 = r2;
861 } else {
862 o(0x04c483); /* add $4, %esp */
865 vtop->r = r;
868 /* convert from one floating point type to another */
869 void gen_cvt_ftof(int t)
871 /* all we have to do on i386 is to put the float in a register */
872 gv(RC_FLOAT);
875 /* computed goto support */
876 void ggoto(void)
878 gcall_or_jmp(1);
879 vtop--;
882 /* bound check support functions */
883 #ifdef CONFIG_TCC_BCHECK
885 /* generate a bounded pointer addition */
886 void gen_bounded_ptr_add(void)
888 Sym *sym;
890 /* prepare fast i386 function call (args in eax and edx) */
891 gv2(RC_EAX, RC_EDX);
892 /* save all temporary registers */
893 vtop -= 2;
894 save_regs(0);
895 /* do a fast function call */
896 sym = external_global_sym(TOK___bound_ptr_add, &func_old_type, 0);
897 greloc(cur_text_section, sym,
898 ind + 1, R_386_PC32);
899 oad(0xe8, -4);
900 /* returned pointer is in eax */
901 vtop++;
902 vtop->r = REG_EAX | VT_BOUNDED;
903 /* address of bounding function call point */
904 vtop->c.ul = (cur_text_section->reloc->data_offset - sizeof(Elf32_Rel));
907 /* patch pointer addition in vtop so that pointer dereferencing is
908 also tested */
909 void gen_bounded_ptr_deref(void)
911 int func;
912 int size, align;
913 Elf32_Rel *rel;
914 Sym *sym;
916 size = 0;
917 /* XXX: put that code in generic part of tcc */
918 if (!is_float(vtop->type.t)) {
919 if (vtop->r & VT_LVAL_BYTE)
920 size = 1;
921 else if (vtop->r & VT_LVAL_SHORT)
922 size = 2;
924 if (!size)
925 size = type_size(&vtop->type, &align);
926 switch(size) {
927 case 1: func = TOK___bound_ptr_indir1; break;
928 case 2: func = TOK___bound_ptr_indir2; break;
929 case 4: func = TOK___bound_ptr_indir4; break;
930 case 8: func = TOK___bound_ptr_indir8; break;
931 case 12: func = TOK___bound_ptr_indir12; break;
932 case 16: func = TOK___bound_ptr_indir16; break;
933 default:
934 error("unhandled size when derefencing bounded pointer");
935 func = 0;
936 break;
939 /* patch relocation */
940 /* XXX: find a better solution ? */
941 rel = (Elf32_Rel *)(cur_text_section->reloc->data + vtop->c.ul);
942 sym = external_global_sym(func, &func_old_type, 0);
943 if (!sym->c)
944 put_extern_sym(sym, NULL, 0, 0);
945 rel->r_info = ELF32_R_INFO(sym->c, ELF32_R_TYPE(rel->r_info));
947 #endif
949 /* end of X86 code generator */
950 /*************************************************************/