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 */
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 */
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 */
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 */
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) */
73 /******************************************************/
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 /******************************************************/
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 addr_t func_bound_offset
;
105 /* XXX: make it faster ? */
106 ST_FUNC
void g(int c
)
110 if (ind1
> cur_text_section
->data_allocated
)
111 section_realloc(cur_text_section
, ind1
);
112 cur_text_section
->data
[ind
] = c
;
116 ST_FUNC
void o(unsigned int c
)
124 ST_FUNC
void gen_le16(int v
)
130 ST_FUNC
void gen_le32(int c
)
138 /* output a symbol and patch all calls to it */
139 ST_FUNC
void gsym_addr(int t
, int a
)
143 ptr
= (int *)(cur_text_section
->data
+ t
);
144 n
= *ptr
; /* next value */
150 ST_FUNC
void gsym(int t
)
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 ! */
159 /* instruction + 4 bytes data. Return the address of the data */
160 ST_FUNC
int oad(int c
, int s
)
166 if (ind1
> cur_text_section
->data_allocated
)
167 section_realloc(cur_text_section
, ind1
);
168 *(int *)(cur_text_section
->data
+ ind
) = s
;
174 /* output constant with relocation if 'r & VT_SYM' is true */
175 ST_FUNC
void gen_addr32(int r
, Sym
*sym
, int c
)
178 greloc(cur_text_section
, sym
, ind
, R_386_32
);
182 ST_FUNC
void gen_addrpc32(int r
, Sym
*sym
, int c
)
185 greloc(cur_text_section
, sym
, ind
, R_386_PC32
);
189 /* generate a modrm reference. 'op_reg' contains the addtionnal 3
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 */
197 gen_addr32(r
, sym
, c
);
198 } else if ((r
& VT_VALMASK
) == VT_LOCAL
) {
199 /* currently, we use only ebp as base */
201 /* short reference */
205 oad(0x85 | op_reg
, c
);
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
;
220 sv
= pe_getimport(sv
, &v2
);
229 if (v
== VT_LLOCAL
) {
231 v1
.r
= VT_LOCAL
| VT_LVAL
;
234 if (!(reg_classes
[fr
] & RC_INT
))
235 fr
= get_reg(RC_INT
);
238 if ((ft
& VT_BTYPE
) == VT_FLOAT
) {
241 } else if ((ft
& VT_BTYPE
) == VT_DOUBLE
) {
244 } else if ((ft
& VT_BTYPE
) == VT_LDOUBLE
) {
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 */
258 gen_modrm(r
, fr
, sv
->sym
, fc
);
261 o(0xb8 + r
); /* mov $xx, r */
262 gen_addr32(fr
, sv
->sym
, fc
);
263 } else if (v
== VT_LOCAL
) {
265 o(0x8d); /* lea xxx(%ebp), r */
266 gen_modrm(r
, VT_LOCAL
, sv
->sym
, fc
);
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 */
276 } else if (v
== VT_JMP
|| v
== VT_JMPI
) {
278 oad(0xb8 + r
, t
); /* mov $1, r */
279 o(0x05eb); /* jmp after */
281 oad(0xb8 + r
, t
^ 1); /* mov $0, r */
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
)
296 v
= pe_getimport(v
, &v2
);
301 fr
= v
->r
& VT_VALMASK
;
303 /* XXX: incorrect if float reg to reg */
304 if (bt
== VT_FLOAT
) {
307 } else if (bt
== VT_DOUBLE
) {
310 } else if (bt
== VT_LDOUBLE
) {
311 o(0xc0d9); /* fld %st(0) */
317 if (bt
== VT_BYTE
|| bt
== VT_BOOL
)
322 if (fr
== VT_CONST
||
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
) {
337 oad(0xc481, val
); /* add $xxx, %esp */
341 static void gen_static_call(int v
)
345 sym
= external_global_sym(v
, &func_old_type
, 0);
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
)
354 if ((vtop
->r
& (VT_VALMASK
| VT_LVAL
)) == VT_CONST
) {
356 if (vtop
->r
& VT_SYM
) {
357 /* relocation case */
358 greloc(cur_text_section
, vtop
->sym
,
359 ind
+ 1, R_386_PC32
);
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 */
367 /* otherwise, indirect call */
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
, int variadic
, CType
*ret
, int *ret_align
, int *regsize
)
384 *ret_align
= 1; // Never have to re-align return values for x86
386 size
= type_size(vt
, &align
);
389 } else if (size
> 4) {
399 *ret_align
= 1; // Never have to re-align return values for x86
404 /* Generate function call. The function address is pushed first, then
405 all the parameters in call order. This functions pops all the
406 parameters and the function address. */
407 ST_FUNC
void gfunc_call(int nb_args
)
409 int size
, align
, r
, args_size
, i
, func_call
;
413 for(i
= 0;i
< nb_args
; i
++) {
414 if ((vtop
->type
.t
& VT_BTYPE
) == VT_STRUCT
) {
415 size
= type_size(&vtop
->type
, &align
);
416 /* align to stack align size */
417 size
= (size
+ 3) & ~3;
418 /* allocate the necessary size on stack */
419 oad(0xec81, size
); /* sub $xxx, %esp */
420 /* generate structure store */
422 o(0x89); /* mov %esp, r */
424 vset(&vtop
->type
, r
| VT_LVAL
, 0);
428 } else if (is_float(vtop
->type
.t
)) {
429 gv(RC_FLOAT
); /* only one float register */
430 if ((vtop
->type
.t
& VT_BTYPE
) == VT_FLOAT
)
432 else if ((vtop
->type
.t
& VT_BTYPE
) == VT_DOUBLE
)
436 oad(0xec81, size
); /* sub $xxx, %esp */
440 o(0x5cd9 + size
- 4); /* fstp[s|l] 0(%esp) */
445 /* simple type (currently always same size) */
446 /* XXX: implicit cast ? */
448 if ((vtop
->type
.t
& VT_BTYPE
) == VT_LLONG
) {
450 o(0x50 + vtop
->r2
); /* push r */
454 o(0x50 + r
); /* push r */
459 save_regs(0); /* save used temporary registers */
460 func_sym
= vtop
->type
.ref
;
461 func_call
= func_sym
->a
.func_call
;
463 if ((func_call
>= FUNC_FASTCALL1
&& func_call
<= FUNC_FASTCALL3
) ||
464 func_call
== FUNC_FASTCALLW
) {
465 int fastcall_nb_regs
;
466 uint8_t *fastcall_regs_ptr
;
467 if (func_call
== FUNC_FASTCALLW
) {
468 fastcall_regs_ptr
= fastcallw_regs
;
469 fastcall_nb_regs
= 2;
471 fastcall_regs_ptr
= fastcall_regs
;
472 fastcall_nb_regs
= func_call
- FUNC_FASTCALL1
+ 1;
474 for(i
= 0;i
< fastcall_nb_regs
; i
++) {
477 o(0x58 + fastcall_regs_ptr
[i
]); /* pop r */
478 /* XXX: incorrect for struct/floats */
482 #ifndef TCC_TARGET_PE
483 else if ((vtop
->type
.ref
->type
.t
& VT_BTYPE
) == VT_STRUCT
)
488 if (args_size
&& func_call
!= FUNC_STDCALL
)
494 #define FUNC_PROLOG_SIZE 10
496 #define FUNC_PROLOG_SIZE 9
499 /* generate function prolog of type 't' */
500 ST_FUNC
void gfunc_prolog(CType
*func_type
)
502 int addr
, align
, size
, func_call
, fastcall_nb_regs
;
503 int param_index
, param_addr
;
504 uint8_t *fastcall_regs_ptr
;
508 sym
= func_type
->ref
;
509 func_call
= sym
->a
.func_call
;
514 if (func_call
>= FUNC_FASTCALL1
&& func_call
<= FUNC_FASTCALL3
) {
515 fastcall_nb_regs
= func_call
- FUNC_FASTCALL1
+ 1;
516 fastcall_regs_ptr
= fastcall_regs
;
517 } else if (func_call
== FUNC_FASTCALLW
) {
518 fastcall_nb_regs
= 2;
519 fastcall_regs_ptr
= fastcallw_regs
;
521 fastcall_nb_regs
= 0;
522 fastcall_regs_ptr
= NULL
;
526 ind
+= FUNC_PROLOG_SIZE
;
527 func_sub_sp_offset
= ind
;
528 /* if the function returns a structure, then add an
529 implicit pointer parameter */
531 func_var
= (sym
->c
== FUNC_ELLIPSIS
);
533 size
= type_size(&func_vt
,&align
);
534 if (((func_vt
.t
& VT_BTYPE
) == VT_STRUCT
) && (size
> 8)) {
536 if ((func_vt
.t
& VT_BTYPE
) == VT_STRUCT
) {
538 /* XXX: fastcall case ? */
543 /* define parameters */
544 while ((sym
= sym
->next
) != NULL
) {
546 size
= type_size(type
, &align
);
547 size
= (size
+ 3) & ~3;
548 #ifdef FUNC_STRUCT_PARAM_AS_PTR
549 /* structs are passed as pointer */
550 if ((type
->t
& VT_BTYPE
) == VT_STRUCT
) {
554 if (param_index
< fastcall_nb_regs
) {
555 /* save FASTCALL register */
558 gen_modrm(fastcall_regs_ptr
[param_index
], VT_LOCAL
, NULL
, loc
);
564 sym_push(sym
->v
& ~SYM_FIELD
, type
,
565 VT_LOCAL
| lvalue_type(type
->t
), param_addr
);
569 /* pascal type call ? */
570 if (func_call
== FUNC_STDCALL
)
571 func_ret_sub
= addr
- 8;
572 #ifndef TCC_TARGET_PE
577 #ifdef CONFIG_TCC_BCHECK
578 /* leave some room for bound checking code */
579 if (tcc_state
->do_bounds_check
) {
580 oad(0xb8, 0); /* lbound section pointer */
581 oad(0xb8, 0); /* call to function */
582 func_bound_offset
= lbounds_section
->data_offset
;
587 /* generate function epilog */
588 ST_FUNC
void gfunc_epilog(void)
592 #ifdef CONFIG_TCC_BCHECK
593 if (tcc_state
->do_bounds_check
594 && func_bound_offset
!= lbounds_section
->data_offset
) {
598 /* add end of table info */
599 bounds_ptr
= section_ptr_add(lbounds_section
, sizeof(addr_t
));
601 /* generate bound local allocation */
603 ind
= func_sub_sp_offset
;
604 sym_data
= get_sym_ref(&char_pointer_type
, lbounds_section
,
605 func_bound_offset
, lbounds_section
->data_offset
);
606 greloc(cur_text_section
, sym_data
,
608 oad(0xb8, 0); /* mov %eax, xxx */
609 gen_static_call(TOK___bound_local_new
);
612 /* generate bound check local freeing */
613 o(0x5250); /* save returned value, if any */
614 greloc(cur_text_section
, sym_data
,
616 oad(0xb8, 0); /* mov %eax, xxx */
617 gen_static_call(TOK___bound_local_delete
);
619 o(0x585a); /* restore returned value, if any */
623 if (func_ret_sub
== 0) {
628 g(func_ret_sub
>> 8);
630 /* align local size to word & save local variables */
634 ind
= func_sub_sp_offset
- FUNC_PROLOG_SIZE
;
637 oad(0xb8, v
); /* mov stacksize, %eax */
638 gen_static_call(TOK___chkstk
); /* call __chkstk, (does the stackframe too) */
642 o(0xe58955); /* push %ebp, mov %esp, %ebp */
643 o(0xec81); /* sub esp, stacksize */
645 #if FUNC_PROLOG_SIZE == 10
646 o(0x90); /* adjust to FUNC_PROLOG_SIZE */
652 /* generate a jump to a label */
653 ST_FUNC
int gjmp(int t
)
655 return psym(0xe9, t
);
658 /* generate a jump to a fixed address */
659 ST_FUNC
void gjmp_addr(int a
)
667 oad(0xe9, a
- ind
- 5);
671 /* generate a test. set 'inv' to invert test. Stack entry is popped */
672 ST_FUNC
int gtst(int inv
, int t
)
676 v
= vtop
->r
& VT_VALMASK
;
678 /* fast case : can jump directly since flags are set */
680 t
= psym((vtop
->c
.i
- 16) ^ inv
, t
);
681 } else if (v
== VT_JMP
|| v
== VT_JMPI
) {
682 /* && or || optimization */
683 if ((v
& 1) == inv
) {
684 /* insert vtop->c jump list in t */
687 p
= (int *)(cur_text_section
->data
+ *p
);
699 /* generate an integer binary operation */
700 ST_FUNC
void gen_opi(int op
)
706 case TOK_ADDC1
: /* add with carry generation */
709 if ((vtop
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) == VT_CONST
) {
716 /* generate inc and dec for smaller code */
717 if (c
==1 && opc
==0) {
719 } else if (c
==1 && opc
==5) {
723 o(0xc0 | (opc
<< 3) | r
);
728 oad(0xc0 | (opc
<< 3) | r
, c
);
734 o((opc
<< 3) | 0x01);
735 o(0xc0 + r
+ fr
* 8);
738 if (op
>= TOK_ULT
&& op
<= TOK_GT
) {
744 case TOK_SUBC1
: /* sub with carry generation */
747 case TOK_ADDC2
: /* add with carry use */
750 case TOK_SUBC2
: /* sub with carry use */
767 o(0xaf0f); /* imul fr, r */
768 o(0xc0 + fr
+ r
* 8);
779 opc
= 0xc0 | (opc
<< 3);
780 if ((vtop
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) == VT_CONST
) {
785 c
= vtop
->c
.i
& 0x1f;
786 o(0xc1); /* shl/shr/sar $xxx, r */
790 /* we generate the shift in ecx */
793 o(0xd3); /* shl/shr/sar %cl, r */
804 /* first operand must be in eax */
805 /* XXX: need better constraint for second operand */
811 if (op
== TOK_UMULL
) {
812 o(0xf7); /* mul fr */
817 if (op
== TOK_UDIV
|| op
== TOK_UMOD
) {
818 o(0xf7d231); /* xor %edx, %edx, div fr, %eax */
821 o(0xf799); /* cltd, idiv fr, %eax */
824 if (op
== '%' || op
== TOK_UMOD
)
837 /* generate a floating point operation 'v = t1 op t2' instruction. The
838 two operands are guaranted to have the same floating point type */
839 /* XXX: need to use ST1 too */
840 ST_FUNC
void gen_opf(int op
)
842 int a
, ft
, fc
, swapped
, r
;
844 /* convert constants to memory references */
845 if ((vtop
[-1].r
& (VT_VALMASK
| VT_LVAL
)) == VT_CONST
) {
850 if ((vtop
[0].r
& (VT_VALMASK
| VT_LVAL
)) == VT_CONST
)
853 /* must put at least one value in the floating point register */
854 if ((vtop
[-1].r
& VT_LVAL
) &&
855 (vtop
[0].r
& VT_LVAL
)) {
861 /* swap the stack if needed so that t1 is the register and t2 is
862 the memory reference */
863 if (vtop
[-1].r
& VT_LVAL
) {
867 if (op
>= TOK_ULT
&& op
<= TOK_GT
) {
868 /* load on stack second operand */
869 load(TREG_ST0
, vtop
);
870 save_reg(TREG_EAX
); /* eax is used by FP comparison code */
871 if (op
== TOK_GE
|| op
== TOK_GT
)
873 else if (op
== TOK_EQ
|| op
== TOK_NE
)
876 o(0xc9d9); /* fxch %st(1) */
877 if (op
== TOK_EQ
|| op
== TOK_NE
)
878 o(0xe9da); /* fucompp */
880 o(0xd9de); /* fcompp */
881 o(0xe0df); /* fnstsw %ax */
883 o(0x45e480); /* and $0x45, %ah */
884 o(0x40fC80); /* cmp $0x40, %ah */
885 } else if (op
== TOK_NE
) {
886 o(0x45e480); /* and $0x45, %ah */
887 o(0x40f480); /* xor $0x40, %ah */
889 } else if (op
== TOK_GE
|| op
== TOK_LE
) {
890 o(0x05c4f6); /* test $0x05, %ah */
893 o(0x45c4f6); /* test $0x45, %ah */
900 /* no memory reference possible for long double operations */
901 if ((vtop
->type
.t
& VT_BTYPE
) == VT_LDOUBLE
) {
902 load(TREG_ST0
, vtop
);
927 if ((ft
& VT_BTYPE
) == VT_LDOUBLE
) {
928 o(0xde); /* fxxxp %st, %st(1) */
931 /* if saved lvalue, then we must reload it */
933 if ((r
& VT_VALMASK
) == VT_LLOCAL
) {
937 v1
.r
= VT_LOCAL
| VT_LVAL
;
943 if ((ft
& VT_BTYPE
) == VT_DOUBLE
)
947 gen_modrm(a
, r
, vtop
->sym
, fc
);
953 /* convert integers to fp 't' type. Must handle 'int', 'unsigned int'
954 and 'long long' cases. */
955 ST_FUNC
void gen_cvt_itof(int t
)
959 if ((vtop
->type
.t
& VT_BTYPE
) == VT_LLONG
) {
960 /* signed long long to float/double/long double (unsigned case
961 is handled generically) */
962 o(0x50 + vtop
->r2
); /* push r2 */
963 o(0x50 + (vtop
->r
& VT_VALMASK
)); /* push r */
964 o(0x242cdf); /* fildll (%esp) */
965 o(0x08c483); /* add $8, %esp */
966 } else if ((vtop
->type
.t
& (VT_BTYPE
| VT_UNSIGNED
)) ==
967 (VT_INT
| VT_UNSIGNED
)) {
968 /* unsigned int to float/double/long double */
969 o(0x6a); /* push $0 */
971 o(0x50 + (vtop
->r
& VT_VALMASK
)); /* push r */
972 o(0x242cdf); /* fildll (%esp) */
973 o(0x08c483); /* add $8, %esp */
975 /* int to float/double/long double */
976 o(0x50 + (vtop
->r
& VT_VALMASK
)); /* push r */
977 o(0x2404db); /* fildl (%esp) */
978 o(0x04c483); /* add $4, %esp */
983 /* convert fp to int 't' type */
984 ST_FUNC
void gen_cvt_ftoi(int t
)
986 #ifndef COMMIT_4ad186c5ef61_IS_FIXED
987 /* a good version but it takes a more time to execute */
991 gen_static_call(TOK___tcc_cvt_ftol
);
992 vtop
->r
= TREG_EAX
; /* mark reg as used */
996 /* a new version with a bug: t2a = 44100312 */
1002 int t2a = (int)(t1 * f); // must be 44100313
1003 int t2b = (int)(t1 * (float)0.25f);
1004 printf("t2a=%d t2b=%d \n",t2a,t2b);
1008 int bt
= vtop
->type
.t
& VT_BTYPE
;
1010 vpush_global_sym(&func_old_type
, TOK___fixsfdi
);
1011 else if (bt
== VT_LDOUBLE
)
1012 vpush_global_sym(&func_old_type
, TOK___fixxfdi
);
1014 vpush_global_sym(&func_old_type
, TOK___fixdfdi
);
1019 vtop
->r2
= REG_LRET
;
1023 /* convert from one floating point type to another */
1024 ST_FUNC
void gen_cvt_ftof(int t
)
1026 /* all we have to do on i386 is to put the float in a register */
1030 /* computed goto support */
1031 ST_FUNC
void ggoto(void)
1037 /* bound check support functions */
1038 #ifdef CONFIG_TCC_BCHECK
1040 /* generate a bounded pointer addition */
1041 ST_FUNC
void gen_bounded_ptr_add(void)
1043 /* prepare fast i386 function call (args in eax and edx) */
1044 gv2(RC_EAX
, RC_EDX
);
1045 /* save all temporary registers */
1048 /* do a fast function call */
1049 gen_static_call(TOK___bound_ptr_add
);
1050 /* returned pointer is in eax */
1052 vtop
->r
= TREG_EAX
| VT_BOUNDED
;
1053 /* address of bounding function call point */
1054 vtop
->c
.ul
= (cur_text_section
->reloc
->data_offset
- sizeof(Elf32_Rel
));
1057 /* patch pointer addition in vtop so that pointer dereferencing is
1059 ST_FUNC
void gen_bounded_ptr_deref(void)
1067 /* XXX: put that code in generic part of tcc */
1068 if (!is_float(vtop
->type
.t
)) {
1069 if (vtop
->r
& VT_LVAL_BYTE
)
1071 else if (vtop
->r
& VT_LVAL_SHORT
)
1075 size
= type_size(&vtop
->type
, &align
);
1077 case 1: func
= TOK___bound_ptr_indir1
; break;
1078 case 2: func
= TOK___bound_ptr_indir2
; break;
1079 case 4: func
= TOK___bound_ptr_indir4
; break;
1080 case 8: func
= TOK___bound_ptr_indir8
; break;
1081 case 12: func
= TOK___bound_ptr_indir12
; break;
1082 case 16: func
= TOK___bound_ptr_indir16
; break;
1084 tcc_error("unhandled size when dereferencing bounded pointer");
1089 /* patch relocation */
1090 /* XXX: find a better solution ? */
1091 rel
= (Elf32_Rel
*)(cur_text_section
->reloc
->data
+ vtop
->c
.ul
);
1092 sym
= external_global_sym(func
, &func_old_type
, 0);
1094 put_extern_sym(sym
, NULL
, 0, 0);
1095 rel
->r_info
= ELF32_R_INFO(sym
->c
, ELF32_R_TYPE(rel
->r_info
));
1099 /* Save the stack pointer onto the stack */
1100 ST_FUNC
void gen_vla_sp_save(int addr
) {
1101 /* mov %esp,addr(%ebp)*/
1103 gen_modrm(TREG_ESP
, VT_LOCAL
, NULL
, addr
);
1106 /* Restore the SP from a location on the stack */
1107 ST_FUNC
void gen_vla_sp_restore(int addr
) {
1109 gen_modrm(TREG_ESP
, VT_LOCAL
, NULL
, addr
);
1112 /* Subtract from the stack pointer, and push the resulting value onto the stack */
1113 ST_FUNC
void gen_vla_alloc(CType
*type
, int align
) {
1114 #ifdef TCC_TARGET_PE
1115 /* alloca does more than just adjust %rsp on Windows */
1116 vpush_global_sym(&func_old_type
, TOK_alloca
);
1117 vswap(); /* Move alloca ref past allocation size */
1119 vset(type
, REG_IRET
, 0);
1122 r
= gv(RC_INT
); /* allocation size */
1126 /* We align to 16 bytes rather than align */
1137 /* end of X86 code generator */
1138 /*************************************************************/
1140 /*************************************************************/