2 * X86 code generator for TCC
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 */
26 #define CONFIG_TCC_ASM
28 /* a register can belong to several classes. The classes must be
29 sorted from more general to more precise (see gv2() code which does
30 assumptions on it). */
31 #define RC_INT 0x0001 /* generic integer register */
32 #define RC_FLOAT 0x0002 /* generic float register */
39 #define RC_IRET RC_EAX /* function return: integer register */
40 #define RC_LRET RC_EDX /* function return: second integer register */
41 #define RC_FRET RC_ST0 /* function return: float register */
43 /* pretty names for the registers */
53 /* return registers for function */
54 #define REG_IRET TREG_EAX /* single word int return register */
55 #define REG_LRET TREG_EDX /* second word return register (for long long) */
56 #define REG_FRET TREG_ST0 /* float return register */
58 /* defined if function parameters must be evaluated in reverse order */
59 #define INVERT_FUNC_PARAMS
61 /* defined if structures are passed as pointers. Otherwise structures
62 are directly pushed on stack. */
63 /* #define FUNC_STRUCT_PARAM_AS_PTR */
65 /* pointer size, in bytes */
68 /* long double size and alignment, in bytes */
69 #define LDOUBLE_SIZE 12
70 #define LDOUBLE_ALIGN 4
71 /* maximum alignment (for aligned attribute support) */
74 /******************************************************/
75 #else /* ! TARGET_DEFS_ONLY */
76 /******************************************************/
79 /* define to 1/0 to [not] have EBX as 4th register */
82 ST_DATA
const int reg_classes
[NB_REGS
] = {
83 /* eax */ RC_INT
| RC_EAX
,
84 /* ecx */ RC_INT
| RC_ECX
,
85 /* edx */ RC_INT
| RC_EDX
,
86 /* ebx */ (RC_INT
| RC_EBX
) * USE_EBX
,
87 /* st0 */ RC_FLOAT
| RC_ST0
,
90 static unsigned long func_sub_sp_offset
;
91 static int func_ret_sub
;
92 #ifdef CONFIG_TCC_BCHECK
93 static addr_t func_bound_offset
;
94 static unsigned long func_bound_ind
;
97 /* XXX: make it faster ? */
104 if (ind1
> cur_text_section
->data_allocated
)
105 section_realloc(cur_text_section
, ind1
);
106 cur_text_section
->data
[ind
] = c
;
110 ST_FUNC
void o(unsigned int c
)
118 ST_FUNC
void gen_le16(int v
)
124 ST_FUNC
void gen_le32(int c
)
132 /* output a symbol and patch all calls to it */
133 ST_FUNC
void gsym_addr(int t
, int a
)
136 unsigned char *ptr
= cur_text_section
->data
+ t
;
137 uint32_t n
= read32le(ptr
); /* next value */
138 write32le(ptr
, a
- t
- 4);
143 ST_FUNC
void gsym(int t
)
148 /* instruction + 4 bytes data. Return the address of the data */
149 static int oad(int c
, int s
)
160 ST_FUNC
void gen_fill_nops(int bytes
)
166 /* generate jmp to a label */
167 #define gjmp2(instr,lbl) oad(instr,lbl)
169 /* output constant with relocation if 'r & VT_SYM' is true */
170 ST_FUNC
void gen_addr32(int r
, Sym
*sym
, int c
)
173 greloc(cur_text_section
, sym
, ind
, R_386_32
);
177 ST_FUNC
void gen_addrpc32(int r
, Sym
*sym
, int c
)
180 greloc(cur_text_section
, sym
, ind
, R_386_PC32
);
184 /* generate a modrm reference. 'op_reg' contains the additional 3
186 static void gen_modrm(int op_reg
, int r
, Sym
*sym
, int c
)
188 op_reg
= op_reg
<< 3;
189 if ((r
& VT_VALMASK
) == VT_CONST
) {
190 /* constant memory reference */
192 gen_addr32(r
, sym
, c
);
193 } else if ((r
& VT_VALMASK
) == VT_LOCAL
) {
194 /* currently, we use only ebp as base */
196 /* short reference */
200 oad(0x85 | op_reg
, c
);
203 g(0x00 | op_reg
| (r
& VT_VALMASK
));
207 /* load 'r' from value 'sv' */
208 ST_FUNC
void load(int r
, SValue
*sv
)
210 int v
, t
, ft
, fc
, fr
;
215 sv
= pe_getimport(sv
, &v2
);
219 ft
= sv
->type
.t
& ~VT_DEFSIGN
;
222 ft
&= ~(VT_VOLATILE
| VT_CONSTANT
);
226 if (v
== VT_LLOCAL
) {
228 v1
.r
= VT_LOCAL
| VT_LVAL
;
231 if (!(reg_classes
[fr
] & RC_INT
))
232 fr
= get_reg(RC_INT
);
235 if ((ft
& VT_BTYPE
) == VT_FLOAT
) {
238 } else if ((ft
& VT_BTYPE
) == VT_DOUBLE
) {
241 } else if ((ft
& VT_BTYPE
) == VT_LDOUBLE
) {
244 } else if ((ft
& VT_TYPE
) == VT_BYTE
|| (ft
& VT_TYPE
) == VT_BOOL
) {
245 o(0xbe0f); /* movsbl */
246 } else if ((ft
& VT_TYPE
) == (VT_BYTE
| VT_UNSIGNED
)) {
247 o(0xb60f); /* movzbl */
248 } else if ((ft
& VT_TYPE
) == VT_SHORT
) {
249 o(0xbf0f); /* movswl */
250 } else if ((ft
& VT_TYPE
) == (VT_SHORT
| VT_UNSIGNED
)) {
251 o(0xb70f); /* movzwl */
255 gen_modrm(r
, fr
, sv
->sym
, fc
);
258 o(0xb8 + r
); /* mov $xx, r */
259 gen_addr32(fr
, sv
->sym
, fc
);
260 } else if (v
== VT_LOCAL
) {
262 o(0x8d); /* lea xxx(%ebp), r */
263 gen_modrm(r
, VT_LOCAL
, sv
->sym
, fc
);
266 o(0xe8 + r
); /* mov %ebp, r */
268 } else if (v
== VT_CMP
) {
269 oad(0xb8 + r
, 0); /* mov $0, r */
270 o(0x0f); /* setxx %br */
273 } else if (v
== VT_JMP
|| v
== VT_JMPI
) {
275 oad(0xb8 + r
, t
); /* mov $1, r */
276 o(0x05eb); /* jmp after */
278 oad(0xb8 + r
, t
^ 1); /* mov $0, r */
281 o(0xc0 + r
+ v
* 8); /* mov v, r */
286 /* store register 'r' in lvalue 'v' */
287 ST_FUNC
void store(int r
, SValue
*v
)
293 v
= pe_getimport(v
, &v2
);
298 fr
= v
->r
& VT_VALMASK
;
299 ft
&= ~(VT_VOLATILE
| VT_CONSTANT
);
301 /* XXX: incorrect if float reg to reg */
302 if (bt
== VT_FLOAT
) {
305 } else if (bt
== VT_DOUBLE
) {
308 } else if (bt
== VT_LDOUBLE
) {
309 o(0xc0d9); /* fld %st(0) */
315 if (bt
== VT_BYTE
|| bt
== VT_BOOL
)
320 if (fr
== VT_CONST
||
323 gen_modrm(r
, v
->r
, v
->sym
, fc
);
324 } else if (fr
!= r
) {
325 o(0xc0 + fr
+ r
* 8); /* mov r, fr */
329 static void gadd_sp(int val
)
331 if (val
== (char)val
) {
335 oad(0xc481, val
); /* add $xxx, %esp */
339 #if defined CONFIG_TCC_BCHECK || defined TCC_TARGET_PE
340 static void gen_static_call(int v
)
344 sym
= external_global_sym(v
, &func_old_type
, 0);
346 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
)
354 if ((vtop
->r
& (VT_VALMASK
| VT_LVAL
)) == VT_CONST
&& (vtop
->r
& VT_SYM
)) {
355 /* constant and relocation case */
356 greloc(cur_text_section
, vtop
->sym
, ind
+ 1, R_386_PC32
);
357 oad(0xe8 + is_jmp
, vtop
->c
.i
- 4); /* call/jmp im */
359 /* otherwise, indirect call */
361 o(0xff); /* call/jmp *r */
362 o(0xd0 + r
+ (is_jmp
<< 4));
366 /* extend the return value to the whole register if necessary
367 visual studio and gcc do not always set the whole eax register
368 when assigning the return value of a function */
369 rt
= vtop
->type
.ref
->type
.t
;
370 switch (rt
& VT_BTYPE
) {
372 if (rt
& VT_UNSIGNED
) {
373 o(0xc0b60f); /* movzx %al, %eax */
376 o(0xc0be0f); /* movsx %al, %eax */
380 if (rt
& VT_UNSIGNED
) {
381 o(0xc0b70f); /* movzx %ax, %eax */
384 o(0xc0bf0f); /* movsx %ax, %eax */
393 static uint8_t fastcall_regs
[3] = { TREG_EAX
, TREG_EDX
, TREG_ECX
};
394 static uint8_t fastcallw_regs
[2] = { TREG_ECX
, TREG_EDX
};
396 /* Return the number of registers needed to return the struct, or 0 if
397 returning via struct pointer. */
398 ST_FUNC
int gfunc_sret(CType
*vt
, int variadic
, CType
*ret
, int *ret_align
, int *regsize
)
402 *ret_align
= 1; // Never have to re-align return values for x86
404 size
= type_size(vt
, &align
);
405 if (size
> 8 || (size
& (size
- 1)))
418 *ret_align
= 1; // Never have to re-align return values for x86
423 /* Generate function call. The function address is pushed first, then
424 all the parameters in call order. This functions pops all the
425 parameters and the function address. */
426 ST_FUNC
void gfunc_call(int nb_args
)
428 int size
, align
, r
, args_size
, i
, func_call
;
432 for(i
= 0;i
< nb_args
; i
++) {
433 if ((vtop
->type
.t
& VT_BTYPE
) == VT_STRUCT
) {
434 size
= type_size(&vtop
->type
, &align
);
435 /* align to stack align size */
436 size
= (size
+ 3) & ~3;
437 /* allocate the necessary size on stack */
438 oad(0xec81, size
); /* sub $xxx, %esp */
439 /* generate structure store */
441 o(0x89); /* mov %esp, r */
443 vset(&vtop
->type
, r
| VT_LVAL
, 0);
447 } else if (is_float(vtop
->type
.t
)) {
448 gv(RC_FLOAT
); /* only one float register */
449 if ((vtop
->type
.t
& VT_BTYPE
) == VT_FLOAT
)
451 else if ((vtop
->type
.t
& VT_BTYPE
) == VT_DOUBLE
)
455 oad(0xec81, size
); /* sub $xxx, %esp */
459 o(0x5cd9 + size
- 4); /* fstp[s|l] 0(%esp) */
464 /* simple type (currently always same size) */
465 /* XXX: implicit cast ? */
467 if ((vtop
->type
.t
& VT_BTYPE
) == VT_LLONG
) {
469 o(0x50 + vtop
->r2
); /* push r */
473 o(0x50 + r
); /* push r */
478 save_regs(0); /* save used temporary registers */
479 func_sym
= vtop
->type
.ref
;
480 func_call
= func_sym
->f
.func_call
;
482 if ((func_call
>= FUNC_FASTCALL1
&& func_call
<= FUNC_FASTCALL3
) ||
483 func_call
== FUNC_FASTCALLW
) {
484 int fastcall_nb_regs
;
485 uint8_t *fastcall_regs_ptr
;
486 if (func_call
== FUNC_FASTCALLW
) {
487 fastcall_regs_ptr
= fastcallw_regs
;
488 fastcall_nb_regs
= 2;
490 fastcall_regs_ptr
= fastcall_regs
;
491 fastcall_nb_regs
= func_call
- FUNC_FASTCALL1
+ 1;
493 for(i
= 0;i
< fastcall_nb_regs
; i
++) {
496 o(0x58 + fastcall_regs_ptr
[i
]); /* pop r */
497 /* XXX: incorrect for struct/floats */
501 #ifndef TCC_TARGET_PE
502 else if ((vtop
->type
.ref
->type
.t
& VT_BTYPE
) == VT_STRUCT
)
507 if (args_size
&& func_call
!= FUNC_STDCALL
&& func_call
!= FUNC_FASTCALLW
)
513 #define FUNC_PROLOG_SIZE (10 + USE_EBX)
515 #define FUNC_PROLOG_SIZE (9 + USE_EBX)
518 /* generate function prolog of type 't' */
519 ST_FUNC
void gfunc_prolog(CType
*func_type
)
521 int addr
, align
, size
, func_call
, fastcall_nb_regs
;
522 int param_index
, param_addr
;
523 uint8_t *fastcall_regs_ptr
;
527 sym
= func_type
->ref
;
528 func_call
= sym
->f
.func_call
;
533 if (func_call
>= FUNC_FASTCALL1
&& func_call
<= FUNC_FASTCALL3
) {
534 fastcall_nb_regs
= func_call
- FUNC_FASTCALL1
+ 1;
535 fastcall_regs_ptr
= fastcall_regs
;
536 } else if (func_call
== FUNC_FASTCALLW
) {
537 fastcall_nb_regs
= 2;
538 fastcall_regs_ptr
= fastcallw_regs
;
540 fastcall_nb_regs
= 0;
541 fastcall_regs_ptr
= NULL
;
545 ind
+= FUNC_PROLOG_SIZE
;
546 func_sub_sp_offset
= ind
;
547 /* if the function returns a structure, then add an
548 implicit pointer parameter */
550 func_var
= (sym
->f
.func_type
== FUNC_ELLIPSIS
);
552 size
= type_size(&func_vt
,&align
);
553 if (((func_vt
.t
& VT_BTYPE
) == VT_STRUCT
)
554 && (size
> 8 || (size
& (size
- 1)))) {
556 if ((func_vt
.t
& VT_BTYPE
) == VT_STRUCT
) {
558 /* XXX: fastcall case ? */
563 /* define parameters */
564 while ((sym
= sym
->next
) != NULL
) {
566 size
= type_size(type
, &align
);
567 size
= (size
+ 3) & ~3;
568 #ifdef FUNC_STRUCT_PARAM_AS_PTR
569 /* structs are passed as pointer */
570 if ((type
->t
& VT_BTYPE
) == VT_STRUCT
) {
574 if (param_index
< fastcall_nb_regs
) {
575 /* save FASTCALL register */
578 gen_modrm(fastcall_regs_ptr
[param_index
], VT_LOCAL
, NULL
, loc
);
584 sym_push(sym
->v
& ~SYM_FIELD
, type
,
585 VT_LOCAL
| lvalue_type(type
->t
), param_addr
);
589 /* pascal type call or fastcall ? */
590 if (func_call
== FUNC_STDCALL
|| func_call
== FUNC_FASTCALLW
)
591 func_ret_sub
= addr
- 8;
592 #ifndef TCC_TARGET_PE
597 #ifdef CONFIG_TCC_BCHECK
598 /* leave some room for bound checking code */
599 if (tcc_state
->do_bounds_check
) {
600 func_bound_offset
= lbounds_section
->data_offset
;
601 func_bound_ind
= ind
;
602 oad(0xb8, 0); /* lbound section pointer */
603 oad(0xb8, 0); /* call to function */
608 /* generate function epilog */
609 ST_FUNC
void gfunc_epilog(void)
613 #ifdef CONFIG_TCC_BCHECK
614 if (tcc_state
->do_bounds_check
615 && func_bound_offset
!= lbounds_section
->data_offset
) {
620 /* add end of table info */
621 bounds_ptr
= section_ptr_add(lbounds_section
, sizeof(addr_t
));
624 /* generate bound local allocation */
626 ind
= func_bound_ind
;
627 sym_data
= get_sym_ref(&char_pointer_type
, lbounds_section
,
628 func_bound_offset
, lbounds_section
->data_offset
);
629 greloc(cur_text_section
, sym_data
,
631 oad(0xb8, 0); /* mov %eax, xxx */
632 gen_static_call(TOK___bound_local_new
);
635 /* generate bound check local freeing */
636 o(0x5250); /* save returned value, if any */
637 greloc(cur_text_section
, sym_data
, ind
+ 1, R_386_32
);
638 oad(0xb8, 0); /* mov %eax, xxx */
639 gen_static_call(TOK___bound_local_delete
);
640 o(0x585a); /* restore returned value, if any */
644 /* align local size to word & save local variables */
649 gen_modrm(TREG_EBX
, VT_LOCAL
, NULL
, -(v
+4));
653 if (func_ret_sub
== 0) {
658 g(func_ret_sub
>> 8);
661 ind
= func_sub_sp_offset
- FUNC_PROLOG_SIZE
;
664 oad(0xb8, v
); /* mov stacksize, %eax */
665 gen_static_call(TOK___chkstk
); /* call __chkstk, (does the stackframe too) */
669 o(0xe58955); /* push %ebp, mov %esp, %ebp */
670 o(0xec81); /* sub esp, stacksize */
673 o(0x90); /* adjust to FUNC_PROLOG_SIZE */
676 o(0x53 * USE_EBX
); /* push ebx */
680 /* generate a jump to a label */
681 ST_FUNC
int gjmp(int t
)
683 return gjmp2(0xe9, t
);
686 /* generate a jump to a fixed address */
687 ST_FUNC
void gjmp_addr(int a
)
695 oad(0xe9, a
- ind
- 5);
699 ST_FUNC
void gtst_addr(int inv
, int a
)
701 int v
= vtop
->r
& VT_VALMASK
;
703 inv
^= (vtop
--)->c
.i
;
710 oad(inv
- 16, a
- 4);
712 } else if ((v
& ~1) == VT_JMP
) {
713 if ((v
& 1) != inv
) {
725 /* generate a test. set 'inv' to invert test. Stack entry is popped */
726 ST_FUNC
int gtst(int inv
, int t
)
728 int v
= vtop
->r
& VT_VALMASK
;
731 } else if (v
== VT_CMP
) {
732 /* fast case : can jump directly since flags are set */
734 t
= gjmp2((vtop
->c
.i
- 16) ^ inv
, t
);
735 } else if (v
== VT_JMP
|| v
== VT_JMPI
) {
736 /* && or || optimization */
737 if ((v
& 1) == inv
) {
738 /* insert vtop->c jump list in t */
739 uint32_t n1
, n
= vtop
->c
.i
;
741 while ((n1
= read32le(cur_text_section
->data
+ n
)))
743 write32le(cur_text_section
->data
+ n
, t
);
755 /* generate an integer binary operation */
756 ST_FUNC
void gen_opi(int op
)
762 case TOK_ADDC1
: /* add with carry generation */
765 if ((vtop
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) == VT_CONST
) {
772 /* generate inc and dec for smaller code */
773 if (c
==1 && opc
==0 && op
!= TOK_ADDC1
) {
775 } else if (c
==1 && opc
==5 && op
!= TOK_SUBC1
) {
779 o(0xc0 | (opc
<< 3) | r
);
784 oad(0xc0 | (opc
<< 3) | r
, c
);
790 o((opc
<< 3) | 0x01);
791 o(0xc0 + r
+ fr
* 8);
794 if (op
>= TOK_ULT
&& op
<= TOK_GT
) {
800 case TOK_SUBC1
: /* sub with carry generation */
803 case TOK_ADDC2
: /* add with carry use */
806 case TOK_SUBC2
: /* sub with carry use */
823 o(0xaf0f); /* imul fr, r */
824 o(0xc0 + fr
+ r
* 8);
835 opc
= 0xc0 | (opc
<< 3);
836 if ((vtop
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) == VT_CONST
) {
841 c
= vtop
->c
.i
& 0x1f;
842 o(0xc1); /* shl/shr/sar $xxx, r */
846 /* we generate the shift in ecx */
849 o(0xd3); /* shl/shr/sar %cl, r */
860 /* first operand must be in eax */
861 /* XXX: need better constraint for second operand */
867 /* save EAX too if used otherwise */
868 save_reg_upstack(TREG_EAX
, 1);
869 if (op
== TOK_UMULL
) {
870 o(0xf7); /* mul fr */
875 if (op
== TOK_UDIV
|| op
== TOK_UMOD
) {
876 o(0xf7d231); /* xor %edx, %edx, div fr, %eax */
879 o(0xf799); /* cltd, idiv fr, %eax */
882 if (op
== '%' || op
== TOK_UMOD
)
895 /* generate a floating point operation 'v = t1 op t2' instruction. The
896 two operands are guaranteed to have the same floating point type */
897 /* XXX: need to use ST1 too */
898 ST_FUNC
void gen_opf(int op
)
900 int a
, ft
, fc
, swapped
, r
;
902 /* convert constants to memory references */
903 if ((vtop
[-1].r
& (VT_VALMASK
| VT_LVAL
)) == VT_CONST
) {
908 if ((vtop
[0].r
& (VT_VALMASK
| VT_LVAL
)) == VT_CONST
)
911 /* must put at least one value in the floating point register */
912 if ((vtop
[-1].r
& VT_LVAL
) &&
913 (vtop
[0].r
& VT_LVAL
)) {
919 /* swap the stack if needed so that t1 is the register and t2 is
920 the memory reference */
921 if (vtop
[-1].r
& VT_LVAL
) {
925 if (op
>= TOK_ULT
&& op
<= TOK_GT
) {
926 /* load on stack second operand */
927 load(TREG_ST0
, vtop
);
928 save_reg(TREG_EAX
); /* eax is used by FP comparison code */
929 if (op
== TOK_GE
|| op
== TOK_GT
)
931 else if (op
== TOK_EQ
|| op
== TOK_NE
)
934 o(0xc9d9); /* fxch %st(1) */
935 if (op
== TOK_EQ
|| op
== TOK_NE
)
936 o(0xe9da); /* fucompp */
938 o(0xd9de); /* fcompp */
939 o(0xe0df); /* fnstsw %ax */
941 o(0x45e480); /* and $0x45, %ah */
942 o(0x40fC80); /* cmp $0x40, %ah */
943 } else if (op
== TOK_NE
) {
944 o(0x45e480); /* and $0x45, %ah */
945 o(0x40f480); /* xor $0x40, %ah */
947 } else if (op
== TOK_GE
|| op
== TOK_LE
) {
948 o(0x05c4f6); /* test $0x05, %ah */
951 o(0x45c4f6); /* test $0x45, %ah */
958 /* no memory reference possible for long double operations */
959 if ((vtop
->type
.t
& VT_BTYPE
) == VT_LDOUBLE
) {
960 load(TREG_ST0
, vtop
);
985 if ((ft
& VT_BTYPE
) == VT_LDOUBLE
) {
986 o(0xde); /* fxxxp %st, %st(1) */
989 /* if saved lvalue, then we must reload it */
991 if ((r
& VT_VALMASK
) == VT_LLOCAL
) {
995 v1
.r
= VT_LOCAL
| VT_LVAL
;
1001 if ((ft
& VT_BTYPE
) == VT_DOUBLE
)
1005 gen_modrm(a
, r
, vtop
->sym
, fc
);
1011 /* convert integers to fp 't' type. Must handle 'int', 'unsigned int'
1012 and 'long long' cases. */
1013 ST_FUNC
void gen_cvt_itof(int t
)
1017 if ((vtop
->type
.t
& VT_BTYPE
) == VT_LLONG
) {
1018 /* signed long long to float/double/long double (unsigned case
1019 is handled generically) */
1020 o(0x50 + vtop
->r2
); /* push r2 */
1021 o(0x50 + (vtop
->r
& VT_VALMASK
)); /* push r */
1022 o(0x242cdf); /* fildll (%esp) */
1023 o(0x08c483); /* add $8, %esp */
1024 } else if ((vtop
->type
.t
& (VT_BTYPE
| VT_UNSIGNED
)) ==
1025 (VT_INT
| VT_UNSIGNED
)) {
1026 /* unsigned int to float/double/long double */
1027 o(0x6a); /* push $0 */
1029 o(0x50 + (vtop
->r
& VT_VALMASK
)); /* push r */
1030 o(0x242cdf); /* fildll (%esp) */
1031 o(0x08c483); /* add $8, %esp */
1033 /* int to float/double/long double */
1034 o(0x50 + (vtop
->r
& VT_VALMASK
)); /* push r */
1035 o(0x2404db); /* fildl (%esp) */
1036 o(0x04c483); /* add $4, %esp */
1041 /* convert fp to int 't' type */
1042 ST_FUNC
void gen_cvt_ftoi(int t
)
1044 int bt
= vtop
->type
.t
& VT_BTYPE
;
1046 vpush_global_sym(&func_old_type
, TOK___fixsfdi
);
1047 else if (bt
== VT_LDOUBLE
)
1048 vpush_global_sym(&func_old_type
, TOK___fixxfdi
);
1050 vpush_global_sym(&func_old_type
, TOK___fixdfdi
);
1055 vtop
->r2
= REG_LRET
;
1058 /* convert from one floating point type to another */
1059 ST_FUNC
void gen_cvt_ftof(int t
)
1061 /* all we have to do on i386 is to put the float in a register */
1065 /* computed goto support */
1066 ST_FUNC
void ggoto(void)
1072 /* bound check support functions */
1073 #ifdef CONFIG_TCC_BCHECK
1075 /* generate a bounded pointer addition */
1076 ST_FUNC
void gen_bounded_ptr_add(void)
1078 /* prepare fast i386 function call (args in eax and edx) */
1079 gv2(RC_EAX
, RC_EDX
);
1080 /* save all temporary registers */
1083 /* do a fast function call */
1084 gen_static_call(TOK___bound_ptr_add
);
1085 /* returned pointer is in eax */
1087 vtop
->r
= TREG_EAX
| VT_BOUNDED
;
1088 /* address of bounding function call point */
1089 vtop
->c
.i
= (cur_text_section
->reloc
->data_offset
- sizeof(Elf32_Rel
));
1092 /* patch pointer addition in vtop so that pointer dereferencing is
1094 ST_FUNC
void gen_bounded_ptr_deref(void)
1102 /* XXX: put that code in generic part of tcc */
1103 if (!is_float(vtop
->type
.t
)) {
1104 if (vtop
->r
& VT_LVAL_BYTE
)
1106 else if (vtop
->r
& VT_LVAL_SHORT
)
1110 size
= type_size(&vtop
->type
, &align
);
1112 case 1: func
= TOK___bound_ptr_indir1
; break;
1113 case 2: func
= TOK___bound_ptr_indir2
; break;
1114 case 4: func
= TOK___bound_ptr_indir4
; break;
1115 case 8: func
= TOK___bound_ptr_indir8
; break;
1116 case 12: func
= TOK___bound_ptr_indir12
; break;
1117 case 16: func
= TOK___bound_ptr_indir16
; break;
1119 tcc_error("unhandled size when dereferencing bounded pointer");
1124 /* patch relocation */
1125 /* XXX: find a better solution ? */
1126 rel
= (Elf32_Rel
*)(cur_text_section
->reloc
->data
+ vtop
->c
.i
);
1127 sym
= external_global_sym(func
, &func_old_type
, 0);
1129 put_extern_sym(sym
, NULL
, 0, 0);
1130 rel
->r_info
= ELF32_R_INFO(sym
->c
, ELF32_R_TYPE(rel
->r_info
));
1134 /* Save the stack pointer onto the stack */
1135 ST_FUNC
void gen_vla_sp_save(int addr
) {
1136 /* mov %esp,addr(%ebp)*/
1138 gen_modrm(TREG_ESP
, VT_LOCAL
, NULL
, addr
);
1141 /* Restore the SP from a location on the stack */
1142 ST_FUNC
void gen_vla_sp_restore(int addr
) {
1144 gen_modrm(TREG_ESP
, VT_LOCAL
, NULL
, addr
);
1147 /* Subtract from the stack pointer, and push the resulting value onto the stack */
1148 ST_FUNC
void gen_vla_alloc(CType
*type
, int align
) {
1149 #ifdef TCC_TARGET_PE
1150 /* alloca does more than just adjust %rsp on Windows */
1151 vpush_global_sym(&func_old_type
, TOK_alloca
);
1152 vswap(); /* Move alloca ref past allocation size */
1156 r
= gv(RC_INT
); /* allocation size */
1160 /* We align to 16 bytes rather than align */
1167 /* end of X86 code generator */
1168 /*************************************************************/
1170 /*************************************************************/