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 /* number of available registers */
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 */
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 */
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 TREG_EAX /* single word int return register */
54 #define REG_LRET TREG_EDX /* second word return register (for long long) */
55 #define REG_FRET TREG_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 */
67 /* long double size and alignment, in bytes */
68 #define LDOUBLE_SIZE 12
69 #define LDOUBLE_ALIGN 4
70 /* 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_JMP_SLOT R_386_JMP_SLOT
81 #define R_COPY R_386_COPY
83 #define ELF_START_ADDR 0x08048000
84 #define ELF_PAGE_SIZE 0x1000
86 /******************************************************/
88 static unsigned long func_sub_sp_offset
;
89 static unsigned long func_bound_offset
;
90 static int func_ret_sub
;
92 /* XXX: make it faster ? */
97 if (ind1
> cur_text_section
->data_allocated
)
98 section_realloc(cur_text_section
, ind1
);
99 cur_text_section
->data
[ind
] = c
;
103 void o(unsigned int c
)
119 /* output a symbol and patch all calls to it */
120 void gsym_addr(int t
, int a
)
124 ptr
= (int *)(cur_text_section
->data
+ t
);
125 n
= *ptr
; /* next value */
136 /* psym is used to put an instruction with a data field which is a
137 reference to a symbol. It is in fact the same as oad ! */
140 /* instruction + 4 bytes data. Return the address of the data */
141 static int oad(int c
, int s
)
147 if (ind1
> cur_text_section
->data_allocated
)
148 section_realloc(cur_text_section
, ind1
);
149 *(int *)(cur_text_section
->data
+ ind
) = s
;
155 /* output constant with relocation if 'r & VT_SYM' is true */
156 static void gen_addr32(int r
, Sym
*sym
, int c
)
159 greloc(cur_text_section
, sym
, ind
, R_386_32
);
163 /* generate a modrm reference. 'op_reg' contains the addtionnal 3
165 static void gen_modrm(int op_reg
, int r
, Sym
*sym
, int c
)
167 op_reg
= op_reg
<< 3;
168 if ((r
& VT_VALMASK
) == VT_CONST
) {
169 /* constant memory reference */
171 gen_addr32(r
, sym
, c
);
172 } else if ((r
& VT_VALMASK
) == VT_LOCAL
) {
173 /* currently, we use only ebp as base */
175 /* short reference */
179 oad(0x85 | op_reg
, c
);
182 g(0x00 | op_reg
| (r
& VT_VALMASK
));
187 /* load 'r' from value 'sv' */
188 void load(int r
, SValue
*sv
)
190 int v
, t
, ft
, fc
, fr
;
199 if (v
== VT_LLOCAL
) {
201 v1
.r
= VT_LOCAL
| VT_LVAL
;
206 if ((ft
& VT_BTYPE
) == VT_FLOAT
) {
209 } else if ((ft
& VT_BTYPE
) == VT_DOUBLE
) {
212 } else if ((ft
& VT_BTYPE
) == VT_LDOUBLE
) {
215 } else if ((ft
& VT_TYPE
) == VT_BYTE
) {
216 o(0xbe0f); /* movsbl */
217 } else if ((ft
& VT_TYPE
) == (VT_BYTE
| VT_UNSIGNED
)) {
218 o(0xb60f); /* movzbl */
219 } else if ((ft
& VT_TYPE
) == VT_SHORT
) {
220 o(0xbf0f); /* movswl */
221 } else if ((ft
& VT_TYPE
) == (VT_SHORT
| VT_UNSIGNED
)) {
222 o(0xb70f); /* movzwl */
226 gen_modrm(r
, fr
, sv
->sym
, fc
);
229 o(0xb8 + r
); /* mov $xx, r */
230 gen_addr32(fr
, sv
->sym
, fc
);
231 } else if (v
== VT_LOCAL
) {
232 o(0x8d); /* lea xxx(%ebp), r */
233 gen_modrm(r
, VT_LOCAL
, sv
->sym
, fc
);
234 } else if (v
== VT_CMP
) {
235 oad(0xb8 + r
, 0); /* mov $0, r */
236 o(0x0f); /* setxx %br */
239 } else if (v
== VT_JMP
|| v
== VT_JMPI
) {
241 oad(0xb8 + r
, t
); /* mov $1, r */
242 o(0x05eb); /* jmp after */
244 oad(0xb8 + r
, t
^ 1); /* mov $0, r */
247 o(0xc0 + r
+ v
* 8); /* mov v, r */
252 /* store register 'r' in lvalue 'v' */
253 void store(int r
, SValue
*v
)
259 fr
= v
->r
& VT_VALMASK
;
261 /* XXX: incorrect if float reg to reg */
262 if (bt
== VT_FLOAT
) {
265 } else if (bt
== VT_DOUBLE
) {
268 } else if (bt
== VT_LDOUBLE
) {
269 o(0xc0d9); /* fld %st(0) */
275 if (bt
== VT_BYTE
|| bt
== VT_BOOL
)
280 if (fr
== VT_CONST
||
283 gen_modrm(r
, v
->r
, v
->sym
, fc
);
284 } else if (fr
!= r
) {
285 o(0xc0 + fr
+ r
* 8); /* mov r, fr */
289 static void gadd_sp(int val
)
291 if (val
== (char)val
) {
295 oad(0xc481, val
); /* add $xxx, %esp */
299 /* 'is_jmp' is '1' if it is a jump */
300 static void gcall_or_jmp(int is_jmp
)
303 if ((vtop
->r
& (VT_VALMASK
| VT_LVAL
)) == VT_CONST
) {
305 if (vtop
->r
& VT_SYM
) {
306 /* relocation case */
307 greloc(cur_text_section
, vtop
->sym
,
308 ind
+ 1, R_386_PC32
);
310 /* put an empty PC32 relocation */
311 put_elf_reloc(symtab_section
, cur_text_section
,
312 ind
+ 1, R_386_PC32
, 0);
314 oad(0xe8 + is_jmp
, vtop
->c
.ul
- 4); /* call/jmp im */
316 /* otherwise, indirect call */
318 o(0xff); /* call/jmp *r */
319 o(0xd0 + r
+ (is_jmp
<< 4));
323 static uint8_t fastcall_regs
[3] = { TREG_EAX
, TREG_EDX
, TREG_ECX
};
324 static uint8_t fastcallw_regs
[2] = { TREG_ECX
, TREG_EDX
};
326 /* Generate function call. The function address is pushed first, then
327 all the parameters in call order. This functions pops all the
328 parameters and the function address. */
329 void gfunc_call(int nb_args
)
331 int size
, align
, r
, args_size
, i
, func_call
;
335 for(i
= 0;i
< nb_args
; i
++) {
336 if ((vtop
->type
.t
& VT_BTYPE
) == VT_STRUCT
) {
337 size
= type_size(&vtop
->type
, &align
);
338 /* align to stack align size */
339 size
= (size
+ 3) & ~3;
340 /* allocate the necessary size on stack */
341 oad(0xec81, size
); /* sub $xxx, %esp */
342 /* generate structure store */
344 o(0x89); /* mov %esp, r */
346 vset(&vtop
->type
, r
| VT_LVAL
, 0);
350 } else if (is_float(vtop
->type
.t
)) {
351 gv(RC_FLOAT
); /* only one float register */
352 if ((vtop
->type
.t
& VT_BTYPE
) == VT_FLOAT
)
354 else if ((vtop
->type
.t
& VT_BTYPE
) == VT_DOUBLE
)
358 oad(0xec81, size
); /* sub $xxx, %esp */
362 o(0x5cd9 + size
- 4); /* fstp[s|l] 0(%esp) */
367 /* simple type (currently always same size) */
368 /* XXX: implicit cast ? */
370 if ((vtop
->type
.t
& VT_BTYPE
) == VT_LLONG
) {
372 o(0x50 + vtop
->r2
); /* push r */
376 o(0x50 + r
); /* push r */
381 save_regs(0); /* save used temporary registers */
382 func_sym
= vtop
->type
.ref
;
383 func_call
= FUNC_CALL(func_sym
->r
);
385 if ((func_call
>= FUNC_FASTCALL1
&& func_call
<= FUNC_FASTCALL3
) ||
386 func_call
== FUNC_FASTCALLW
) {
387 int fastcall_nb_regs
;
388 uint8_t *fastcall_regs_ptr
;
389 if (func_call
== FUNC_FASTCALLW
) {
390 fastcall_regs_ptr
= fastcallw_regs
;
391 fastcall_nb_regs
= 2;
393 fastcall_regs_ptr
= fastcall_regs
;
394 fastcall_nb_regs
= func_call
- FUNC_FASTCALL1
+ 1;
396 for(i
= 0;i
< fastcall_nb_regs
; i
++) {
399 o(0x58 + fastcall_regs_ptr
[i
]); /* pop r */
400 /* XXX: incorrect for struct/floats */
405 if (args_size
&& func_call
!= FUNC_STDCALL
)
411 #define FUNC_PROLOG_SIZE 10
413 #define FUNC_PROLOG_SIZE 9
416 /* generate function prolog of type 't' */
417 void gfunc_prolog(CType
*func_type
)
419 int addr
, align
, size
, func_call
, fastcall_nb_regs
;
420 int param_index
, param_addr
;
421 uint8_t *fastcall_regs_ptr
;
425 sym
= func_type
->ref
;
426 func_call
= FUNC_CALL(sym
->r
);
429 if (func_call
>= FUNC_FASTCALL1
&& func_call
<= FUNC_FASTCALL3
) {
430 fastcall_nb_regs
= func_call
- FUNC_FASTCALL1
+ 1;
431 fastcall_regs_ptr
= fastcall_regs
;
432 } else if (func_call
== FUNC_FASTCALLW
) {
433 fastcall_nb_regs
= 2;
434 fastcall_regs_ptr
= fastcallw_regs
;
436 fastcall_nb_regs
= 0;
437 fastcall_regs_ptr
= NULL
;
441 ind
+= FUNC_PROLOG_SIZE
;
442 func_sub_sp_offset
= ind
;
443 /* if the function returns a structure, then add an
444 implicit pointer parameter */
446 if ((func_vt
.t
& VT_BTYPE
) == VT_STRUCT
) {
447 /* XXX: fastcall case ? */
452 /* define parameters */
453 while ((sym
= sym
->next
) != NULL
) {
455 size
= type_size(type
, &align
);
456 size
= (size
+ 3) & ~3;
457 #ifdef FUNC_STRUCT_PARAM_AS_PTR
458 /* structs are passed as pointer */
459 if ((type
->t
& VT_BTYPE
) == VT_STRUCT
) {
463 if (param_index
< fastcall_nb_regs
) {
464 /* save FASTCALL register */
467 gen_modrm(fastcall_regs_ptr
[param_index
], VT_LOCAL
, NULL
, loc
);
473 sym_push(sym
->v
& ~SYM_FIELD
, type
,
474 VT_LOCAL
| lvalue_type(type
->t
), param_addr
);
478 /* pascal type call ? */
479 if (func_call
== FUNC_STDCALL
)
480 func_ret_sub
= addr
- 8;
482 /* leave some room for bound checking code */
483 if (do_bounds_check
) {
484 oad(0xb8, 0); /* lbound section pointer */
485 oad(0xb8, 0); /* call to function */
486 func_bound_offset
= lbounds_section
->data_offset
;
490 /* generate function epilog */
491 void gfunc_epilog(void)
495 #ifdef CONFIG_TCC_BCHECK
496 if (do_bounds_check
&& func_bound_offset
!= lbounds_section
->data_offset
) {
500 /* add end of table info */
501 bounds_ptr
= section_ptr_add(lbounds_section
, sizeof(int));
503 /* generate bound local allocation */
505 ind
= func_sub_sp_offset
;
506 sym_data
= get_sym_ref(&char_pointer_type
, lbounds_section
,
507 func_bound_offset
, lbounds_section
->data_offset
);
508 greloc(cur_text_section
, sym_data
,
510 oad(0xb8, 0); /* mov %eax, xxx */
511 sym
= external_global_sym(TOK___bound_local_new
, &func_old_type
, 0);
512 greloc(cur_text_section
, sym
,
513 ind
+ 1, R_386_PC32
);
516 /* generate bound check local freeing */
517 o(0x5250); /* save returned value, if any */
518 greloc(cur_text_section
, sym_data
,
520 oad(0xb8, 0); /* mov %eax, xxx */
521 sym
= external_global_sym(TOK___bound_local_delete
, &func_old_type
, 0);
522 greloc(cur_text_section
, sym
,
523 ind
+ 1, R_386_PC32
);
525 o(0x585a); /* restore returned value, if any */
529 if (func_ret_sub
== 0) {
534 g(func_ret_sub
>> 8);
536 /* align local size to word & save local variables */
540 ind
= func_sub_sp_offset
- FUNC_PROLOG_SIZE
;
543 Sym
*sym
= external_global_sym(TOK___chkstk
, &func_old_type
, 0);
544 oad(0xb8, v
); /* mov stacksize, %eax */
545 oad(0xe8, -4); /* call __chkstk, (does the stackframe too) */
546 greloc(cur_text_section
, sym
, ind
-4, R_386_PC32
);
550 o(0xe58955); /* push %ebp, mov %esp, %ebp */
551 o(0xec81); /* sub esp, stacksize */
553 #if FUNC_PROLOG_SIZE == 10
554 o(0x90); /* adjust to FUNC_PROLOG_SIZE */
560 /* generate a jump to a label */
563 return psym(0xe9, t
);
566 /* generate a jump to a fixed address */
567 void gjmp_addr(int a
)
575 oad(0xe9, a
- ind
- 5);
579 /* generate a test. set 'inv' to invert test. Stack entry is popped */
580 int gtst(int inv
, int t
)
584 v
= vtop
->r
& VT_VALMASK
;
586 /* fast case : can jump directly since flags are set */
588 t
= psym((vtop
->c
.i
- 16) ^ inv
, t
);
589 } else if (v
== VT_JMP
|| v
== VT_JMPI
) {
590 /* && or || optimization */
591 if ((v
& 1) == inv
) {
592 /* insert vtop->c jump list in t */
595 p
= (int *)(cur_text_section
->data
+ *p
);
603 if (is_float(vtop
->type
.t
) ||
604 (vtop
->type
.t
& VT_BTYPE
) == VT_LLONG
) {
608 if ((vtop
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) == VT_CONST
) {
609 /* constant jmp optimization */
610 if ((vtop
->c
.i
!= 0) != inv
)
617 t
= psym(0x85 ^ inv
, t
);
624 /* generate an integer binary operation */
631 case TOK_ADDC1
: /* add with carry generation */
634 if ((vtop
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) == VT_CONST
) {
641 /* XXX: generate inc and dec for smaller code ? */
643 o(0xc0 | (opc
<< 3) | r
);
647 oad(0xc0 | (opc
<< 3) | r
, c
);
653 o((opc
<< 3) | 0x01);
654 o(0xc0 + r
+ fr
* 8);
657 if (op
>= TOK_ULT
&& op
<= TOK_GT
) {
663 case TOK_SUBC1
: /* sub with carry generation */
666 case TOK_ADDC2
: /* add with carry use */
669 case TOK_SUBC2
: /* sub with carry use */
686 o(0xaf0f); /* imul fr, r */
687 o(0xc0 + fr
+ r
* 8);
698 opc
= 0xc0 | (opc
<< 3);
699 if ((vtop
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) == VT_CONST
) {
704 c
= vtop
->c
.i
& 0x1f;
705 o(0xc1); /* shl/shr/sar $xxx, r */
709 /* we generate the shift in ecx */
712 o(0xd3); /* shl/shr/sar %cl, r */
723 /* first operand must be in eax */
724 /* XXX: need better constraint for second operand */
730 if (op
== TOK_UMULL
) {
731 o(0xf7); /* mul fr */
736 if (op
== TOK_UDIV
|| op
== TOK_UMOD
) {
737 o(0xf7d231); /* xor %edx, %edx, div fr, %eax */
740 o(0xf799); /* cltd, idiv fr, %eax */
743 if (op
== '%' || op
== TOK_UMOD
)
756 /* generate a floating point operation 'v = t1 op t2' instruction. The
757 two operands are guaranted to have the same floating point type */
758 /* XXX: need to use ST1 too */
761 int a
, ft
, fc
, swapped
, r
;
763 /* convert constants to memory references */
764 if ((vtop
[-1].r
& (VT_VALMASK
| VT_LVAL
)) == VT_CONST
) {
769 if ((vtop
[0].r
& (VT_VALMASK
| VT_LVAL
)) == VT_CONST
)
772 /* must put at least one value in the floating point register */
773 if ((vtop
[-1].r
& VT_LVAL
) &&
774 (vtop
[0].r
& VT_LVAL
)) {
780 /* swap the stack if needed so that t1 is the register and t2 is
781 the memory reference */
782 if (vtop
[-1].r
& VT_LVAL
) {
786 if (op
>= TOK_ULT
&& op
<= TOK_GT
) {
787 /* load on stack second operand */
788 load(TREG_ST0
, vtop
);
789 save_reg(TREG_EAX
); /* eax is used by FP comparison code */
790 if (op
== TOK_GE
|| op
== TOK_GT
)
792 else if (op
== TOK_EQ
|| op
== TOK_NE
)
795 o(0xc9d9); /* fxch %st(1) */
796 o(0xe9da); /* fucompp */
797 o(0xe0df); /* fnstsw %ax */
799 o(0x45e480); /* and $0x45, %ah */
800 o(0x40fC80); /* cmp $0x40, %ah */
801 } else if (op
== TOK_NE
) {
802 o(0x45e480); /* and $0x45, %ah */
803 o(0x40f480); /* xor $0x40, %ah */
805 } else if (op
== TOK_GE
|| op
== TOK_LE
) {
806 o(0x05c4f6); /* test $0x05, %ah */
809 o(0x45c4f6); /* test $0x45, %ah */
816 /* no memory reference possible for long double operations */
817 if ((vtop
->type
.t
& VT_BTYPE
) == VT_LDOUBLE
) {
818 load(TREG_ST0
, vtop
);
843 if ((ft
& VT_BTYPE
) == VT_LDOUBLE
) {
844 o(0xde); /* fxxxp %st, %st(1) */
847 /* if saved lvalue, then we must reload it */
849 if ((r
& VT_VALMASK
) == VT_LLOCAL
) {
853 v1
.r
= VT_LOCAL
| VT_LVAL
;
859 if ((ft
& VT_BTYPE
) == VT_DOUBLE
)
863 gen_modrm(a
, r
, vtop
->sym
, fc
);
869 /* convert integers to fp 't' type. Must handle 'int', 'unsigned int'
870 and 'long long' cases. */
871 void gen_cvt_itof(int t
)
875 if ((vtop
->type
.t
& VT_BTYPE
) == VT_LLONG
) {
876 /* signed long long to float/double/long double (unsigned case
877 is handled generically) */
878 o(0x50 + vtop
->r2
); /* push r2 */
879 o(0x50 + (vtop
->r
& VT_VALMASK
)); /* push r */
880 o(0x242cdf); /* fildll (%esp) */
881 o(0x08c483); /* add $8, %esp */
882 } else if ((vtop
->type
.t
& (VT_BTYPE
| VT_UNSIGNED
)) ==
883 (VT_INT
| VT_UNSIGNED
)) {
884 /* unsigned int to float/double/long double */
885 o(0x6a); /* push $0 */
887 o(0x50 + (vtop
->r
& VT_VALMASK
)); /* push r */
888 o(0x242cdf); /* fildll (%esp) */
889 o(0x08c483); /* add $8, %esp */
891 /* int to float/double/long double */
892 o(0x50 + (vtop
->r
& VT_VALMASK
)); /* push r */
893 o(0x2404db); /* fildl (%esp) */
894 o(0x04c483); /* add $4, %esp */
899 /* convert fp to int 't' type */
900 /* XXX: handle long long case */
901 void gen_cvt_ftoi(int t
)
907 ushort_type
.t
= VT_SHORT
| VT_UNSIGNED
;
915 o(0x2dd9); /* ldcw xxx */
916 sym
= external_global_sym(TOK___tcc_int_fpu_control
,
917 &ushort_type
, VT_LVAL
);
918 greloc(cur_text_section
, sym
,
922 oad(0xec81, size
); /* sub $xxx, %esp */
924 o(0x1cdb); /* fistpl */
926 o(0x3cdf); /* fistpll */
928 o(0x2dd9); /* ldcw xxx */
929 sym
= external_global_sym(TOK___tcc_fpu_control
,
930 &ushort_type
, VT_LVAL
);
931 greloc(cur_text_section
, sym
,
936 o(0x58 + r
); /* pop r */
939 vtop
->r
= r
; /* mark reg as used */
940 r2
= get_reg(RC_INT
);
941 o(0x58 + r2
); /* pop r2 */
944 o(0x04c483); /* add $4, %esp */
950 /* convert from one floating point type to another */
951 void gen_cvt_ftof(int t
)
953 /* all we have to do on i386 is to put the float in a register */
957 /* computed goto support */
964 /* bound check support functions */
965 #ifdef CONFIG_TCC_BCHECK
967 /* generate a bounded pointer addition */
968 void gen_bounded_ptr_add(void)
972 /* prepare fast i386 function call (args in eax and edx) */
974 /* save all temporary registers */
977 /* do a fast function call */
978 sym
= external_global_sym(TOK___bound_ptr_add
, &func_old_type
, 0);
979 greloc(cur_text_section
, sym
,
980 ind
+ 1, R_386_PC32
);
982 /* returned pointer is in eax */
984 vtop
->r
= TREG_EAX
| VT_BOUNDED
;
985 /* address of bounding function call point */
986 vtop
->c
.ul
= (cur_text_section
->reloc
->data_offset
- sizeof(Elf32_Rel
));
989 /* patch pointer addition in vtop so that pointer dereferencing is
991 void gen_bounded_ptr_deref(void)
999 /* XXX: put that code in generic part of tcc */
1000 if (!is_float(vtop
->type
.t
)) {
1001 if (vtop
->r
& VT_LVAL_BYTE
)
1003 else if (vtop
->r
& VT_LVAL_SHORT
)
1007 size
= type_size(&vtop
->type
, &align
);
1009 case 1: func
= TOK___bound_ptr_indir1
; break;
1010 case 2: func
= TOK___bound_ptr_indir2
; break;
1011 case 4: func
= TOK___bound_ptr_indir4
; break;
1012 case 8: func
= TOK___bound_ptr_indir8
; break;
1013 case 12: func
= TOK___bound_ptr_indir12
; break;
1014 case 16: func
= TOK___bound_ptr_indir16
; break;
1016 error("unhandled size when derefencing bounded pointer");
1021 /* patch relocation */
1022 /* XXX: find a better solution ? */
1023 rel
= (Elf32_Rel
*)(cur_text_section
->reloc
->data
+ vtop
->c
.ul
);
1024 sym
= external_global_sym(func
, &func_old_type
, 0);
1026 put_extern_sym(sym
, NULL
, 0, 0);
1027 rel
->r_info
= ELF32_R_INFO(sym
->c
, ELF32_R_TYPE(rel
->r_info
));
1031 /* end of X86 code generator */
1032 /*************************************************************/