2 * TCC - Tiny C Compiler
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
23 /********************************************************/
24 /* global variables */
26 /* loc : local variable index
27 ind : output code index
29 anon_sym: anonymous symbol index
31 ST_DATA
int rsym
, anon_sym
, ind
, loc
;
33 ST_DATA Section
*text_section
, *data_section
, *bss_section
; /* predefined sections */
34 ST_DATA Section
*cur_text_section
; /* current section where function code is generated */
36 ST_DATA Section
*last_text_section
; /* to handle .previous asm directive */
38 #ifdef CONFIG_TCC_BCHECK
39 /* bound check related sections */
40 ST_DATA Section
*bounds_section
; /* contains global data bound description */
41 ST_DATA Section
*lbounds_section
; /* contains local data bound description */
44 ST_DATA Section
*symtab_section
, *strtab_section
;
46 ST_DATA Section
*stab_section
, *stabstr_section
;
47 ST_DATA Sym
*sym_free_first
;
48 ST_DATA
void **sym_pools
;
49 ST_DATA
int nb_sym_pools
;
51 ST_DATA Sym
*global_stack
;
52 ST_DATA Sym
*local_stack
;
53 ST_DATA Sym
*define_stack
;
54 ST_DATA Sym
*global_label_stack
;
55 ST_DATA Sym
*local_label_stack
;
57 ST_DATA SValue vstack
[VSTACK_SIZE
], *vtop
;
59 ST_DATA
int const_wanted
; /* true if constant wanted */
60 ST_DATA
int nocode_wanted
; /* true if no code generation wanted for an expression */
61 ST_DATA
int global_expr
; /* true if compound literals must be allocated globally (used during initializers parsing */
62 ST_DATA CType func_vt
; /* current function return type (used by return instruction) */
64 ST_DATA
int last_line_num
, last_ind
, func_ind
; /* debug last line number and pc */
65 ST_DATA
char *funcname
;
67 ST_DATA CType char_pointer_type
, func_old_type
, int_type
;
69 /* ------------------------------------------------------------------------- */
70 static void gen_cast(CType
*type
);
71 static inline CType
*pointed_type(CType
*type
);
72 static int is_compatible_types(CType
*type1
, CType
*type2
);
73 static int parse_btype(CType
*type
, AttributeDef
*ad
);
74 static void type_decl(CType
*type
, AttributeDef
*ad
, int *v
, int td
);
75 static void parse_expr_type(CType
*type
);
76 static void decl_initializer(CType
*type
, Section
*sec
, unsigned long c
, int first
, int size_only
);
77 static void block(int *bsym
, int *csym
, int *case_sym
, int *def_sym
, int case_reg
, int is_expr
);
78 static void decl_initializer_alloc(CType
*type
, AttributeDef
*ad
, int r
, int has_init
, int v
, char *asm_label
, int scope
);
79 static int decl0(int l
, int is_for_loop_init
);
80 static void expr_eq(void);
81 static void unary_type(CType
*type
);
82 static void vla_runtime_type_size(CType
*type
, int *a
);
83 static int is_compatible_parameter_types(CType
*type1
, CType
*type2
);
84 static void expr_type(CType
*type
);
86 ST_INLN
int is_float(int t
)
90 return bt
== VT_LDOUBLE
|| bt
== VT_DOUBLE
|| bt
== VT_FLOAT
;
93 /* we use our own 'finite' function to avoid potential problems with
94 non standard math libs */
95 /* XXX: endianness dependent */
96 ST_FUNC
int ieee_finite(double d
)
99 return ((unsigned)((p
[1] | 0x800fffff) + 1)) >> 31;
102 ST_FUNC
void test_lvalue(void)
104 if (!(vtop
->r
& VT_LVAL
))
108 /* ------------------------------------------------------------------------- */
109 /* symbol allocator */
110 static Sym
*__sym_malloc(void)
112 Sym
*sym_pool
, *sym
, *last_sym
;
115 sym_pool
= tcc_malloc(SYM_POOL_NB
* sizeof(Sym
));
116 dynarray_add(&sym_pools
, &nb_sym_pools
, sym_pool
);
118 last_sym
= sym_free_first
;
120 for(i
= 0; i
< SYM_POOL_NB
; i
++) {
121 sym
->next
= last_sym
;
125 sym_free_first
= last_sym
;
129 static inline Sym
*sym_malloc(void)
132 sym
= sym_free_first
;
134 sym
= __sym_malloc();
135 sym_free_first
= sym
->next
;
139 ST_INLN
void sym_free(Sym
*sym
)
141 sym
->next
= sym_free_first
;
142 tcc_free(sym
->asm_label
);
143 sym_free_first
= sym
;
146 /* push, without hashing */
147 ST_FUNC Sym
*sym_push2(Sym
**ps
, int v
, int t
, long c
)
166 /* find a symbol and return its associated structure. 's' is the top
167 of the symbol stack */
168 ST_FUNC Sym
*sym_find2(Sym
*s
, int v
)
178 /* structure lookup */
179 ST_INLN Sym
*struct_find(int v
)
182 if ((unsigned)v
>= (unsigned)(tok_ident
- TOK_IDENT
))
184 return table_ident
[v
]->sym_struct
;
187 /* find an identifier */
188 ST_INLN Sym
*sym_find(int v
)
191 if ((unsigned)v
>= (unsigned)(tok_ident
- TOK_IDENT
))
193 return table_ident
[v
]->sym_identifier
;
196 /* push a given symbol on the symbol stack */
197 ST_FUNC Sym
*sym_push(int v
, CType
*type
, int r
, int c
)
206 s
= sym_push2(ps
, v
, type
->t
, c
);
207 s
->type
.ref
= type
->ref
;
209 /* don't record fields or anonymous symbols */
211 if (!(v
& SYM_FIELD
) && (v
& ~SYM_STRUCT
) < SYM_FIRST_ANOM
) {
212 /* record symbol in token array */
213 ts
= table_ident
[(v
& ~SYM_STRUCT
) - TOK_IDENT
];
215 ps
= &ts
->sym_struct
;
217 ps
= &ts
->sym_identifier
;
224 /* push a global identifier */
225 ST_FUNC Sym
*global_identifier_push(int v
, int t
, int c
)
228 s
= sym_push2(&global_stack
, v
, t
, c
);
229 /* don't record anonymous symbol */
230 if (v
< SYM_FIRST_ANOM
) {
231 ps
= &table_ident
[v
- TOK_IDENT
]->sym_identifier
;
232 /* modify the top most local identifier, so that
233 sym_identifier will point to 's' when popped */
235 ps
= &(*ps
)->prev_tok
;
242 /* pop symbols until top reaches 'b' */
243 ST_FUNC
void sym_pop(Sym
**ptop
, Sym
*b
)
253 /* remove symbol in token array */
255 if (!(v
& SYM_FIELD
) && (v
& ~SYM_STRUCT
) < SYM_FIRST_ANOM
) {
256 ts
= table_ident
[(v
& ~SYM_STRUCT
) - TOK_IDENT
];
258 ps
= &ts
->sym_struct
;
260 ps
= &ts
->sym_identifier
;
269 static void weaken_symbol(Sym
*sym
)
271 sym
->type
.t
|= VT_WEAK
;
276 esym
= &((ElfW(Sym
) *)symtab_section
->data
)[sym
->c
];
277 esym_type
= ELFW(ST_TYPE
)(esym
->st_info
);
278 esym
->st_info
= ELFW(ST_INFO
)(STB_WEAK
, esym_type
);
282 /* ------------------------------------------------------------------------- */
284 ST_FUNC
void swap(int *p
, int *q
)
292 static void vsetc(CType
*type
, int r
, CValue
*vc
)
296 if (vtop
>= vstack
+ (VSTACK_SIZE
- 1))
297 tcc_error("memory full");
298 /* cannot let cpu flags if other instruction are generated. Also
299 avoid leaving VT_JMP anywhere except on the top of the stack
300 because it would complicate the code generator. */
301 if (vtop
>= vstack
) {
302 v
= vtop
->r
& VT_VALMASK
;
303 if (v
== VT_CMP
|| (v
& ~1) == VT_JMP
)
313 /* push constant of type "type" with useless value */
314 void vpush(CType
*type
)
317 vsetc(type
, VT_CONST
, &cval
);
320 /* push integer constant */
321 ST_FUNC
void vpushi(int v
)
325 vsetc(&int_type
, VT_CONST
, &cval
);
328 /* push long long constant */
329 static void vpushll(long long v
)
336 vsetc(&ctype
, VT_CONST
, &cval
);
339 /* push arbitrary 64bit constant */
340 void vpush64(int ty
, unsigned long long v
)
346 vsetc(&ctype
, VT_CONST
, &cval
);
349 /* Return a static symbol pointing to a section */
350 ST_FUNC Sym
*get_sym_ref(CType
*type
, Section
*sec
, unsigned long offset
, unsigned long size
)
356 sym
= global_identifier_push(v
, type
->t
| VT_STATIC
, 0);
357 sym
->type
.ref
= type
->ref
;
358 sym
->r
= VT_CONST
| VT_SYM
;
359 put_extern_sym(sym
, sec
, offset
, size
);
363 /* push a reference to a section offset by adding a dummy symbol */
364 static void vpush_ref(CType
*type
, Section
*sec
, unsigned long offset
, unsigned long size
)
369 vsetc(type
, VT_CONST
| VT_SYM
, &cval
);
370 vtop
->sym
= get_sym_ref(type
, sec
, offset
, size
);
373 /* define a new external reference to a symbol 'v' of type 'u' */
374 ST_FUNC Sym
*external_global_sym(int v
, CType
*type
, int r
)
380 /* push forward reference */
381 s
= global_identifier_push(v
, type
->t
| VT_EXTERN
, 0);
382 s
->type
.ref
= type
->ref
;
383 s
->r
= r
| VT_CONST
| VT_SYM
;
388 /* define a new external reference to a symbol 'v' with alternate asm
389 name 'asm_label' of type 'u'. 'asm_label' is equal to NULL if there
390 is no alternate name (most cases) */
391 static Sym
*external_sym(int v
, CType
*type
, int r
, char *asm_label
)
397 /* push forward reference */
398 s
= sym_push(v
, type
, r
| VT_CONST
| VT_SYM
, 0);
399 s
->asm_label
= asm_label
;
400 s
->type
.t
|= VT_EXTERN
;
401 } else if (s
->type
.ref
== func_old_type
.ref
) {
402 s
->type
.ref
= type
->ref
;
403 s
->r
= r
| VT_CONST
| VT_SYM
;
404 s
->type
.t
|= VT_EXTERN
;
405 } else if (!is_compatible_types(&s
->type
, type
)) {
406 tcc_error("incompatible types for redefinition of '%s'",
407 get_tok_str(v
, NULL
));
412 /* push a reference to global symbol v */
413 ST_FUNC
void vpush_global_sym(CType
*type
, int v
)
418 sym
= external_global_sym(v
, type
, 0);
420 vsetc(type
, VT_CONST
| VT_SYM
, &cval
);
424 ST_FUNC
void vset(CType
*type
, int r
, int v
)
429 vsetc(type
, r
, &cval
);
432 static void vseti(int r
, int v
)
440 ST_FUNC
void vswap(void)
449 ST_FUNC
void vpushv(SValue
*v
)
451 if (vtop
>= vstack
+ (VSTACK_SIZE
- 1))
452 tcc_error("memory full");
457 static void vdup(void)
462 /* save r to the memory stack, and mark it as being free */
463 ST_FUNC
void save_reg(int r
)
465 int l
, saved
, size
, align
;
469 /* modify all stack values */
472 for(p
=vstack
;p
<=vtop
;p
++) {
473 if ((p
->r
& VT_VALMASK
) == r
||
474 ((p
->type
.t
& VT_BTYPE
) == VT_LLONG
&& (p
->r2
& VT_VALMASK
) == r
)) {
475 /* must save value on stack if not already done */
477 /* NOTE: must reload 'r' because r might be equal to r2 */
478 r
= p
->r
& VT_VALMASK
;
479 /* store register in the stack */
481 if ((p
->r
& VT_LVAL
) ||
482 (!is_float(type
->t
) && (type
->t
& VT_BTYPE
) != VT_LLONG
))
483 #ifdef TCC_TARGET_X86_64
484 type
= &char_pointer_type
;
488 size
= type_size(type
, &align
);
489 loc
= (loc
- size
) & -align
;
491 sv
.r
= VT_LOCAL
| VT_LVAL
;
494 #if defined(TCC_TARGET_I386) || defined(TCC_TARGET_X86_64)
495 /* x86 specific: need to pop fp register ST0 if saved */
497 o(0xd8dd); /* fstp %st(0) */
500 #ifndef TCC_TARGET_X86_64
501 /* special long long case */
502 if ((type
->t
& VT_BTYPE
) == VT_LLONG
) {
510 /* mark that stack entry as being saved on the stack */
511 if (p
->r
& VT_LVAL
) {
512 /* also clear the bounded flag because the
513 relocation address of the function was stored in
515 p
->r
= (p
->r
& ~(VT_VALMASK
| VT_BOUNDED
)) | VT_LLOCAL
;
517 p
->r
= lvalue_type(p
->type
.t
) | VT_LOCAL
;
525 #ifdef TCC_TARGET_ARM
526 /* find a register of class 'rc2' with at most one reference on stack.
527 * If none, call get_reg(rc) */
528 ST_FUNC
int get_reg_ex(int rc
, int rc2
)
533 for(r
=0;r
<NB_REGS
;r
++) {
534 if (reg_classes
[r
] & rc2
) {
537 for(p
= vstack
; p
<= vtop
; p
++) {
538 if ((p
->r
& VT_VALMASK
) == r
||
539 (p
->r2
& VT_VALMASK
) == r
)
550 /* find a free register of class 'rc'. If none, save one register */
551 ST_FUNC
int get_reg(int rc
)
556 /* find a free register */
557 for(r
=0;r
<NB_REGS
;r
++) {
558 if (reg_classes
[r
] & rc
) {
559 for(p
=vstack
;p
<=vtop
;p
++) {
560 if ((p
->r
& VT_VALMASK
) == r
||
561 (p
->r2
& VT_VALMASK
) == r
)
569 /* no register left : free the first one on the stack (VERY
570 IMPORTANT to start from the bottom to ensure that we don't
571 spill registers used in gen_opi()) */
572 for(p
=vstack
;p
<=vtop
;p
++) {
573 r
= p
->r
& VT_VALMASK
;
574 if (r
< VT_CONST
&& (reg_classes
[r
] & rc
))
576 /* also look at second register (if long long) */
577 r
= p
->r2
& VT_VALMASK
;
578 if (r
< VT_CONST
&& (reg_classes
[r
] & rc
)) {
584 /* Should never comes here */
588 /* save registers up to (vtop - n) stack entry */
589 ST_FUNC
void save_regs(int n
)
594 for(p
= vstack
;p
<= p1
; p
++) {
595 r
= p
->r
& VT_VALMASK
;
602 /* move register 's' to 'r', and flush previous value of r to memory
604 static void move_reg(int r
, int s
)
617 /* get address of vtop (vtop MUST BE an lvalue) */
618 static void gaddrof(void)
620 if (vtop
->r
& VT_REF
)
623 /* tricky: if saved lvalue, then we can go back to lvalue */
624 if ((vtop
->r
& VT_VALMASK
) == VT_LLOCAL
)
625 vtop
->r
= (vtop
->r
& ~(VT_VALMASK
| VT_LVAL_TYPE
)) | VT_LOCAL
| VT_LVAL
;
630 #ifdef CONFIG_TCC_BCHECK
631 /* generate lvalue bound code */
632 static void gbound(void)
637 vtop
->r
&= ~VT_MUSTBOUND
;
638 /* if lvalue, then use checking code before dereferencing */
639 if (vtop
->r
& VT_LVAL
) {
640 /* if not VT_BOUNDED value, then make one */
641 if (!(vtop
->r
& VT_BOUNDED
)) {
642 lval_type
= vtop
->r
& (VT_LVAL_TYPE
| VT_LVAL
);
643 /* must save type because we must set it to int to get pointer */
645 vtop
->type
.t
= VT_INT
;
648 gen_bounded_ptr_add();
649 vtop
->r
|= lval_type
;
652 /* then check for dereferencing */
653 gen_bounded_ptr_deref();
658 /* store vtop a register belonging to class 'rc'. lvalues are
659 converted to values. Cannot be used if cannot be converted to
660 register value (such as structures). */
661 ST_FUNC
int gv(int rc
)
663 int r
, bit_pos
, bit_size
, size
, align
, i
;
664 #ifndef TCC_TARGET_X86_64
668 /* NOTE: get_reg can modify vstack[] */
669 if (vtop
->type
.t
& VT_BITFIELD
) {
672 bit_pos
= (vtop
->type
.t
>> VT_STRUCT_SHIFT
) & 0x3f;
673 bit_size
= (vtop
->type
.t
>> (VT_STRUCT_SHIFT
+ 6)) & 0x3f;
674 /* remove bit field info to avoid loops */
675 vtop
->type
.t
&= ~(VT_BITFIELD
| (-1 << VT_STRUCT_SHIFT
));
676 /* cast to int to propagate signedness in following ops */
677 if ((vtop
->type
.t
& VT_BTYPE
) == VT_LLONG
) {
682 if((vtop
->type
.t
& VT_UNSIGNED
) ||
683 (vtop
->type
.t
& VT_BTYPE
) == VT_BOOL
)
684 type
.t
|= VT_UNSIGNED
;
686 /* generate shifts */
687 vpushi(bits
- (bit_pos
+ bit_size
));
689 vpushi(bits
- bit_size
);
690 /* NOTE: transformed to SHR if unsigned */
694 if (is_float(vtop
->type
.t
) &&
695 (vtop
->r
& (VT_VALMASK
| VT_LVAL
)) == VT_CONST
) {
698 unsigned long offset
;
699 #if defined(TCC_TARGET_ARM) && !defined(TCC_ARM_VFP)
703 /* XXX: unify with initializers handling ? */
704 /* CPUs usually cannot use float constants, so we store them
705 generically in data segment */
706 size
= type_size(&vtop
->type
, &align
);
707 offset
= (data_section
->data_offset
+ align
- 1) & -align
;
708 data_section
->data_offset
= offset
;
709 /* XXX: not portable yet */
710 #if defined(__i386__) || defined(__x86_64__)
711 /* Zero pad x87 tenbyte long doubles */
712 if (size
== LDOUBLE_SIZE
) {
713 vtop
->c
.tab
[2] &= 0xffff;
714 #if LDOUBLE_SIZE == 16
719 ptr
= section_ptr_add(data_section
, size
);
721 #if defined(TCC_TARGET_ARM) && !defined(TCC_ARM_VFP)
725 ptr
[i
] = vtop
->c
.tab
[size
-1-i
];
729 ptr
[i
] = vtop
->c
.tab
[i
];
730 sym
= get_sym_ref(&vtop
->type
, data_section
, offset
, size
<< 2);
731 vtop
->r
|= VT_LVAL
| VT_SYM
;
735 #ifdef CONFIG_TCC_BCHECK
736 if (vtop
->r
& VT_MUSTBOUND
)
740 r
= vtop
->r
& VT_VALMASK
;
741 #ifndef TCC_TARGET_X86_64
746 /* need to reload if:
748 - lvalue (need to dereference pointer)
749 - already a register, but not in the right class */
751 || (vtop
->r
& VT_LVAL
)
752 || !(reg_classes
[r
] & rc
)
753 #ifndef TCC_TARGET_X86_64
754 || ((vtop
->type
.t
& VT_BTYPE
) == VT_LLONG
&& !(reg_classes
[vtop
->r2
] & rc2
))
759 #ifndef TCC_TARGET_X86_64
760 if ((vtop
->type
.t
& VT_BTYPE
) == VT_LLONG
) {
762 unsigned long long ll
;
763 /* two register type load : expand to two words
765 if ((vtop
->r
& (VT_VALMASK
| VT_LVAL
)) == VT_CONST
) {
768 vtop
->c
.ui
= ll
; /* first word */
770 vtop
->r
= r
; /* save register value */
771 vpushi(ll
>> 32); /* second word */
772 } else if (r
>= VT_CONST
|| /* XXX: test to VT_CONST incorrect ? */
773 (vtop
->r
& VT_LVAL
)) {
774 /* We do not want to modifier the long long
775 pointer here, so the safest (and less
776 efficient) is to save all the other registers
777 in the stack. XXX: totally inefficient. */
779 /* load from memory */
782 vtop
[-1].r
= r
; /* save register value */
783 /* increment pointer to get second word */
784 vtop
->type
.t
= VT_INT
;
793 vtop
[-1].r
= r
; /* save register value */
794 vtop
->r
= vtop
[-1].r2
;
796 /* allocate second register */
800 /* write second register */
804 if ((vtop
->r
& VT_LVAL
) && !is_float(vtop
->type
.t
)) {
806 /* lvalue of scalar type : need to use lvalue type
807 because of possible cast */
810 /* compute memory access type */
811 if (vtop
->r
& VT_LVAL_BYTE
)
813 else if (vtop
->r
& VT_LVAL_SHORT
)
815 if (vtop
->r
& VT_LVAL_UNSIGNED
)
819 /* restore wanted type */
822 /* one register type load */
827 #ifdef TCC_TARGET_C67
828 /* uses register pairs for doubles */
829 if ((vtop
->type
.t
& VT_BTYPE
) == VT_DOUBLE
)
836 /* generate vtop[-1] and vtop[0] in resp. classes rc1 and rc2 */
837 ST_FUNC
void gv2(int rc1
, int rc2
)
841 /* generate more generic register first. But VT_JMP or VT_CMP
842 values must be generated first in all cases to avoid possible
844 v
= vtop
[0].r
& VT_VALMASK
;
845 if (v
!= VT_CMP
&& (v
& ~1) != VT_JMP
&& rc1
<= rc2
) {
850 /* test if reload is needed for first register */
851 if ((vtop
[-1].r
& VT_VALMASK
) >= VT_CONST
) {
861 /* test if reload is needed for first register */
862 if ((vtop
[0].r
& VT_VALMASK
) >= VT_CONST
) {
868 /* wrapper around RC_FRET to return a register by type */
869 static int rc_fret(int t
)
871 #ifdef TCC_TARGET_X86_64
872 if (t
== VT_LDOUBLE
) {
879 /* wrapper around REG_FRET to return a register by type */
880 static int reg_fret(int t
)
882 #ifdef TCC_TARGET_X86_64
883 if (t
== VT_LDOUBLE
) {
890 /* expand long long on stack in two int registers */
891 static void lexpand(void)
895 u
= vtop
->type
.t
& VT_UNSIGNED
;
898 vtop
[0].r
= vtop
[-1].r2
;
899 vtop
[0].r2
= VT_CONST
;
900 vtop
[-1].r2
= VT_CONST
;
901 vtop
[0].type
.t
= VT_INT
| u
;
902 vtop
[-1].type
.t
= VT_INT
| u
;
905 #ifdef TCC_TARGET_ARM
906 /* expand long long on stack */
907 ST_FUNC
void lexpand_nr(void)
911 u
= vtop
->type
.t
& VT_UNSIGNED
;
914 vtop
->type
.t
= VT_INT
| u
;
915 v
=vtop
[-1].r
& (VT_VALMASK
| VT_LVAL
);
917 vtop
[-1].c
.ui
= vtop
->c
.ull
;
918 vtop
->c
.ui
= vtop
->c
.ull
>> 32;
920 } else if (v
== (VT_LVAL
|VT_CONST
) || v
== (VT_LVAL
|VT_LOCAL
)) {
922 vtop
->r
= vtop
[-1].r
;
923 } else if (v
> VT_CONST
) {
927 vtop
->r
= vtop
[-1].r2
;
928 vtop
[-1].r2
= VT_CONST
;
929 vtop
[-1].type
.t
= VT_INT
| u
;
933 /* build a long long from two ints */
934 static void lbuild(int t
)
937 vtop
[-1].r2
= vtop
[0].r
;
942 /* rotate n first stack elements to the bottom
943 I1 ... In -> I2 ... In I1 [top is right]
945 static void vrotb(int n
)
956 /* rotate n first stack elements to the top
957 I1 ... In -> In I1 ... I(n-1) [top is right]
959 ST_FUNC
void vrott(int n
)
965 for(i
= 0;i
< n
- 1; i
++)
966 vtop
[-i
] = vtop
[-i
- 1];
970 #ifdef TCC_TARGET_ARM
971 /* like vrott but in other direction
972 In ... I1 -> I(n-1) ... I1 In [top is right]
974 ST_FUNC
void vnrott(int n
)
980 for(i
= n
- 1; i
> 0; i
--)
981 vtop
[-i
] = vtop
[-i
+ 1];
986 /* pop stack value */
987 ST_FUNC
void vpop(void)
990 v
= vtop
->r
& VT_VALMASK
;
991 #if defined(TCC_TARGET_I386) || defined(TCC_TARGET_X86_64)
992 /* for x86, we need to pop the FP stack */
993 if (v
== TREG_ST0
&& !nocode_wanted
) {
994 o(0xd8dd); /* fstp %st(0) */
997 if (v
== VT_JMP
|| v
== VT_JMPI
) {
998 /* need to put correct jump if && or || without test */
1004 /* convert stack entry to register and duplicate its value in another
1006 static void gv_dup(void)
1012 if ((t
& VT_BTYPE
) == VT_LLONG
) {
1019 /* stack: H L L1 H1 */
1027 /* duplicate value */
1032 #ifdef TCC_TARGET_X86_64
1033 if ((t
& VT_BTYPE
) == VT_LDOUBLE
) {
1043 load(r1
, &sv
); /* move r to r1 */
1045 /* duplicates value */
1051 #ifndef TCC_TARGET_X86_64
1052 /* generate CPU independent (unsigned) long long operations */
1053 static void gen_opl(int op
)
1055 int t
, a
, b
, op1
, c
, i
;
1057 unsigned short reg_iret
= REG_IRET
;
1058 unsigned short reg_lret
= REG_LRET
;
1064 func
= TOK___divdi3
;
1067 func
= TOK___udivdi3
;
1070 func
= TOK___moddi3
;
1073 func
= TOK___umoddi3
;
1080 /* call generic long long function */
1081 vpush_global_sym(&func_old_type
, func
);
1086 vtop
->r2
= reg_lret
;
1099 /* stack: L1 H1 L2 H2 */
1104 vtop
[-2] = vtop
[-3];
1107 /* stack: H1 H2 L1 L2 */
1113 /* stack: H1 H2 L1 L2 ML MH */
1116 /* stack: ML MH H1 H2 L1 L2 */
1120 /* stack: ML MH H1 L2 H2 L1 */
1125 /* stack: ML MH M1 M2 */
1128 } else if (op
== '+' || op
== '-') {
1129 /* XXX: add non carry method too (for MIPS or alpha) */
1135 /* stack: H1 H2 (L1 op L2) */
1138 gen_op(op1
+ 1); /* TOK_xxxC2 */
1141 /* stack: H1 H2 (L1 op L2) */
1144 /* stack: (L1 op L2) H1 H2 */
1146 /* stack: (L1 op L2) (H1 op H2) */
1154 if ((vtop
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) == VT_CONST
) {
1155 t
= vtop
[-1].type
.t
;
1159 /* stack: L H shift */
1161 /* constant: simpler */
1162 /* NOTE: all comments are for SHL. the other cases are
1163 done by swaping words */
1174 if (op
!= TOK_SAR
) {
1207 /* XXX: should provide a faster fallback on x86 ? */
1210 func
= TOK___ashrdi3
;
1213 func
= TOK___lshrdi3
;
1216 func
= TOK___ashldi3
;
1222 /* compare operations */
1228 /* stack: L1 H1 L2 H2 */
1230 vtop
[-1] = vtop
[-2];
1232 /* stack: L1 L2 H1 H2 */
1235 /* when values are equal, we need to compare low words. since
1236 the jump is inverted, we invert the test too. */
1239 else if (op1
== TOK_GT
)
1241 else if (op1
== TOK_ULT
)
1243 else if (op1
== TOK_UGT
)
1248 if (op1
!= TOK_NE
) {
1252 /* generate non equal test */
1253 /* XXX: NOT PORTABLE yet */
1257 #if defined(TCC_TARGET_I386)
1258 b
= psym(0x850f, 0);
1259 #elif defined(TCC_TARGET_ARM)
1261 o(0x1A000000 | encbranch(ind
, 0, 1));
1262 #elif defined(TCC_TARGET_C67)
1263 tcc_error("not implemented");
1265 #error not supported
1269 /* compare low. Always unsigned */
1273 else if (op1
== TOK_LE
)
1275 else if (op1
== TOK_GT
)
1277 else if (op1
== TOK_GE
)
1288 /* handle integer constant optimizations and various machine
1290 static void gen_opic(int op
)
1292 int c1
, c2
, t1
, t2
, n
;
1295 typedef unsigned long long U
;
1299 t1
= v1
->type
.t
& VT_BTYPE
;
1300 t2
= v2
->type
.t
& VT_BTYPE
;
1304 else if (v1
->type
.t
& VT_UNSIGNED
)
1311 else if (v2
->type
.t
& VT_UNSIGNED
)
1316 /* currently, we cannot do computations with forward symbols */
1317 c1
= (v1
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) == VT_CONST
;
1318 c2
= (v2
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) == VT_CONST
;
1321 case '+': l1
+= l2
; break;
1322 case '-': l1
-= l2
; break;
1323 case '&': l1
&= l2
; break;
1324 case '^': l1
^= l2
; break;
1325 case '|': l1
|= l2
; break;
1326 case '*': l1
*= l2
; break;
1333 /* if division by zero, generate explicit division */
1336 tcc_error("division by zero in constant");
1340 default: l1
/= l2
; break;
1341 case '%': l1
%= l2
; break;
1342 case TOK_UDIV
: l1
= (U
)l1
/ l2
; break;
1343 case TOK_UMOD
: l1
= (U
)l1
% l2
; break;
1346 case TOK_SHL
: l1
<<= l2
; break;
1347 case TOK_SHR
: l1
= (U
)l1
>> l2
; break;
1348 case TOK_SAR
: l1
>>= l2
; break;
1350 case TOK_ULT
: l1
= (U
)l1
< (U
)l2
; break;
1351 case TOK_UGE
: l1
= (U
)l1
>= (U
)l2
; break;
1352 case TOK_EQ
: l1
= l1
== l2
; break;
1353 case TOK_NE
: l1
= l1
!= l2
; break;
1354 case TOK_ULE
: l1
= (U
)l1
<= (U
)l2
; break;
1355 case TOK_UGT
: l1
= (U
)l1
> (U
)l2
; break;
1356 case TOK_LT
: l1
= l1
< l2
; break;
1357 case TOK_GE
: l1
= l1
>= l2
; break;
1358 case TOK_LE
: l1
= l1
<= l2
; break;
1359 case TOK_GT
: l1
= l1
> l2
; break;
1361 case TOK_LAND
: l1
= l1
&& l2
; break;
1362 case TOK_LOR
: l1
= l1
|| l2
; break;
1369 /* if commutative ops, put c2 as constant */
1370 if (c1
&& (op
== '+' || op
== '&' || op
== '^' ||
1371 op
== '|' || op
== '*')) {
1373 c2
= c1
; //c = c1, c1 = c2, c2 = c;
1374 l2
= l1
; //l = l1, l1 = l2, l2 = l;
1376 /* Filter out NOP operations like x*1, x-0, x&-1... */
1377 if (c2
&& (((op
== '*' || op
== '/' || op
== TOK_UDIV
||
1380 ((op
== '+' || op
== '-' || op
== '|' || op
== '^' ||
1381 op
== TOK_SHL
|| op
== TOK_SHR
|| op
== TOK_SAR
) &&
1387 } else if (c2
&& (op
== '*' || op
== TOK_PDIV
|| op
== TOK_UDIV
)) {
1388 /* try to use shifts instead of muls or divs */
1389 if (l2
> 0 && (l2
& (l2
- 1)) == 0) {
1398 else if (op
== TOK_PDIV
)
1404 } else if (c2
&& (op
== '+' || op
== '-') &&
1405 (((vtop
[-1].r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) == (VT_CONST
| VT_SYM
))
1406 || (vtop
[-1].r
& (VT_VALMASK
| VT_LVAL
)) == VT_LOCAL
)) {
1407 /* symbol + constant case */
1414 if (!nocode_wanted
) {
1415 /* call low level op generator */
1416 if (t1
== VT_LLONG
|| t2
== VT_LLONG
)
1427 /* generate a floating point operation with constant propagation */
1428 static void gen_opif(int op
)
1436 /* currently, we cannot do computations with forward symbols */
1437 c1
= (v1
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) == VT_CONST
;
1438 c2
= (v2
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) == VT_CONST
;
1440 if (v1
->type
.t
== VT_FLOAT
) {
1443 } else if (v1
->type
.t
== VT_DOUBLE
) {
1451 /* NOTE: we only do constant propagation if finite number (not
1452 NaN or infinity) (ANSI spec) */
1453 if (!ieee_finite(f1
) || !ieee_finite(f2
))
1457 case '+': f1
+= f2
; break;
1458 case '-': f1
-= f2
; break;
1459 case '*': f1
*= f2
; break;
1463 tcc_error("division by zero in constant");
1468 /* XXX: also handles tests ? */
1472 /* XXX: overflow test ? */
1473 if (v1
->type
.t
== VT_FLOAT
) {
1475 } else if (v1
->type
.t
== VT_DOUBLE
) {
1483 if (!nocode_wanted
) {
1491 static int pointed_size(CType
*type
)
1494 return type_size(pointed_type(type
), &align
);
1497 static void vla_runtime_pointed_size(CType
*type
)
1500 vla_runtime_type_size(pointed_type(type
), &align
);
1503 static inline int is_null_pointer(SValue
*p
)
1505 if ((p
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) != VT_CONST
)
1507 return ((p
->type
.t
& VT_BTYPE
) == VT_INT
&& p
->c
.i
== 0) ||
1508 ((p
->type
.t
& VT_BTYPE
) == VT_LLONG
&& p
->c
.ll
== 0);
1511 static inline int is_integer_btype(int bt
)
1513 return (bt
== VT_BYTE
|| bt
== VT_SHORT
||
1514 bt
== VT_INT
|| bt
== VT_LLONG
);
1517 /* check types for comparison or substraction of pointers */
1518 static void check_comparison_pointer_types(SValue
*p1
, SValue
*p2
, int op
)
1520 CType
*type1
, *type2
, tmp_type1
, tmp_type2
;
1523 /* null pointers are accepted for all comparisons as gcc */
1524 if (is_null_pointer(p1
) || is_null_pointer(p2
))
1528 bt1
= type1
->t
& VT_BTYPE
;
1529 bt2
= type2
->t
& VT_BTYPE
;
1530 /* accept comparison between pointer and integer with a warning */
1531 if ((is_integer_btype(bt1
) || is_integer_btype(bt2
)) && op
!= '-') {
1532 if (op
!= TOK_LOR
&& op
!= TOK_LAND
)
1533 tcc_warning("comparison between pointer and integer");
1537 /* both must be pointers or implicit function pointers */
1538 if (bt1
== VT_PTR
) {
1539 type1
= pointed_type(type1
);
1540 } else if (bt1
!= VT_FUNC
)
1541 goto invalid_operands
;
1543 if (bt2
== VT_PTR
) {
1544 type2
= pointed_type(type2
);
1545 } else if (bt2
!= VT_FUNC
) {
1547 tcc_error("invalid operands to binary %s", get_tok_str(op
, NULL
));
1549 if ((type1
->t
& VT_BTYPE
) == VT_VOID
||
1550 (type2
->t
& VT_BTYPE
) == VT_VOID
)
1554 tmp_type1
.t
&= ~(VT_UNSIGNED
| VT_CONSTANT
| VT_VOLATILE
);
1555 tmp_type2
.t
&= ~(VT_UNSIGNED
| VT_CONSTANT
| VT_VOLATILE
);
1556 if (!is_compatible_types(&tmp_type1
, &tmp_type2
)) {
1557 /* gcc-like error if '-' is used */
1559 goto invalid_operands
;
1561 tcc_warning("comparison of distinct pointer types lacks a cast");
1565 /* generic gen_op: handles types problems */
1566 ST_FUNC
void gen_op(int op
)
1568 int u
, t1
, t2
, bt1
, bt2
, t
;
1571 t1
= vtop
[-1].type
.t
;
1572 t2
= vtop
[0].type
.t
;
1573 bt1
= t1
& VT_BTYPE
;
1574 bt2
= t2
& VT_BTYPE
;
1576 if (bt1
== VT_PTR
|| bt2
== VT_PTR
) {
1577 /* at least one operand is a pointer */
1578 /* relationnal op: must be both pointers */
1579 if (op
>= TOK_ULT
&& op
<= TOK_LOR
) {
1580 check_comparison_pointer_types(vtop
- 1, vtop
, op
);
1581 /* pointers are handled are unsigned */
1582 #ifdef TCC_TARGET_X86_64
1583 t
= VT_LLONG
| VT_UNSIGNED
;
1585 t
= VT_INT
| VT_UNSIGNED
;
1589 /* if both pointers, then it must be the '-' op */
1590 if (bt1
== VT_PTR
&& bt2
== VT_PTR
) {
1592 tcc_error("cannot use pointers here");
1593 check_comparison_pointer_types(vtop
- 1, vtop
, op
);
1594 /* XXX: check that types are compatible */
1595 if (vtop
[-1].type
.t
& VT_VLA
) {
1596 vla_runtime_pointed_size(&vtop
[-1].type
);
1598 vpushi(pointed_size(&vtop
[-1].type
));
1602 /* set to integer type */
1603 #ifdef TCC_TARGET_X86_64
1604 vtop
->type
.t
= VT_LLONG
;
1606 vtop
->type
.t
= VT_INT
;
1611 /* exactly one pointer : must be '+' or '-'. */
1612 if (op
!= '-' && op
!= '+')
1613 tcc_error("cannot use pointers here");
1614 /* Put pointer as first operand */
1615 if (bt2
== VT_PTR
) {
1619 type1
= vtop
[-1].type
;
1620 type1
.t
&= ~VT_ARRAY
;
1621 if (vtop
[-1].type
.t
& VT_VLA
)
1622 vla_runtime_pointed_size(&vtop
[-1].type
);
1624 u
= pointed_size(&vtop
[-1].type
);
1626 tcc_error("unknown array element size");
1627 #ifdef TCC_TARGET_X86_64
1630 /* XXX: cast to int ? (long long case) */
1635 #ifdef CONFIG_TCC_BCHECK
1636 /* if evaluating constant expression, no code should be
1637 generated, so no bound check */
1638 if (tcc_state
->do_bounds_check
&& !const_wanted
) {
1639 /* if bounded pointers, we generate a special code to
1646 gen_bounded_ptr_add();
1652 /* put again type if gen_opic() swaped operands */
1655 } else if (is_float(bt1
) || is_float(bt2
)) {
1656 /* compute bigger type and do implicit casts */
1657 if (bt1
== VT_LDOUBLE
|| bt2
== VT_LDOUBLE
) {
1659 } else if (bt1
== VT_DOUBLE
|| bt2
== VT_DOUBLE
) {
1664 /* floats can only be used for a few operations */
1665 if (op
!= '+' && op
!= '-' && op
!= '*' && op
!= '/' &&
1666 (op
< TOK_ULT
|| op
> TOK_GT
))
1667 tcc_error("invalid operands for binary operation");
1669 } else if (bt1
== VT_LLONG
|| bt2
== VT_LLONG
) {
1670 /* cast to biggest op */
1672 /* convert to unsigned if it does not fit in a long long */
1673 if ((t1
& (VT_BTYPE
| VT_UNSIGNED
)) == (VT_LLONG
| VT_UNSIGNED
) ||
1674 (t2
& (VT_BTYPE
| VT_UNSIGNED
)) == (VT_LLONG
| VT_UNSIGNED
))
1678 /* integer operations */
1680 /* convert to unsigned if it does not fit in an integer */
1681 if ((t1
& (VT_BTYPE
| VT_UNSIGNED
)) == (VT_INT
| VT_UNSIGNED
) ||
1682 (t2
& (VT_BTYPE
| VT_UNSIGNED
)) == (VT_INT
| VT_UNSIGNED
))
1685 /* XXX: currently, some unsigned operations are explicit, so
1686 we modify them here */
1687 if (t
& VT_UNSIGNED
) {
1694 else if (op
== TOK_LT
)
1696 else if (op
== TOK_GT
)
1698 else if (op
== TOK_LE
)
1700 else if (op
== TOK_GE
)
1707 /* special case for shifts and long long: we keep the shift as
1709 if (op
== TOK_SHR
|| op
== TOK_SAR
|| op
== TOK_SHL
)
1716 if (op
>= TOK_ULT
&& op
<= TOK_GT
) {
1717 /* relationnal op: the result is an int */
1718 vtop
->type
.t
= VT_INT
;
1725 #ifndef TCC_TARGET_ARM
1726 /* generic itof for unsigned long long case */
1727 static void gen_cvt_itof1(int t
)
1729 if ((vtop
->type
.t
& (VT_BTYPE
| VT_UNSIGNED
)) ==
1730 (VT_LLONG
| VT_UNSIGNED
)) {
1733 vpush_global_sym(&func_old_type
, TOK___floatundisf
);
1734 #if LDOUBLE_SIZE != 8
1735 else if (t
== VT_LDOUBLE
)
1736 vpush_global_sym(&func_old_type
, TOK___floatundixf
);
1739 vpush_global_sym(&func_old_type
, TOK___floatundidf
);
1743 vtop
->r
= reg_fret(t
);
1750 /* generic ftoi for unsigned long long case */
1751 static void gen_cvt_ftoi1(int t
)
1755 if (t
== (VT_LLONG
| VT_UNSIGNED
)) {
1756 /* not handled natively */
1757 st
= vtop
->type
.t
& VT_BTYPE
;
1759 vpush_global_sym(&func_old_type
, TOK___fixunssfdi
);
1760 #if LDOUBLE_SIZE != 8
1761 else if (st
== VT_LDOUBLE
)
1762 vpush_global_sym(&func_old_type
, TOK___fixunsxfdi
);
1765 vpush_global_sym(&func_old_type
, TOK___fixunsdfdi
);
1770 vtop
->r2
= REG_LRET
;
1776 /* force char or short cast */
1777 static void force_charshort_cast(int t
)
1781 /* XXX: add optimization if lvalue : just change type and offset */
1786 if (t
& VT_UNSIGNED
) {
1787 vpushi((1 << bits
) - 1);
1793 /* result must be signed or the SAR is converted to an SHL
1794 This was not the case when "t" was a signed short
1795 and the last value on the stack was an unsigned int */
1796 vtop
->type
.t
&= ~VT_UNSIGNED
;
1802 /* cast 'vtop' to 'type'. Casting to bitfields is forbidden. */
1803 static void gen_cast(CType
*type
)
1805 int sbt
, dbt
, sf
, df
, c
, p
;
1807 /* special delayed cast for char/short */
1808 /* XXX: in some cases (multiple cascaded casts), it may still
1810 if (vtop
->r
& VT_MUSTCAST
) {
1811 vtop
->r
&= ~VT_MUSTCAST
;
1812 force_charshort_cast(vtop
->type
.t
);
1815 /* bitfields first get cast to ints */
1816 if (vtop
->type
.t
& VT_BITFIELD
) {
1820 dbt
= type
->t
& (VT_BTYPE
| VT_UNSIGNED
);
1821 sbt
= vtop
->type
.t
& (VT_BTYPE
| VT_UNSIGNED
);
1826 c
= (vtop
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) == VT_CONST
;
1827 p
= (vtop
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) == (VT_CONST
| VT_SYM
);
1829 /* constant case: we can do it now */
1830 /* XXX: in ISOC, cannot do it if error in convert */
1831 if (sbt
== VT_FLOAT
)
1832 vtop
->c
.ld
= vtop
->c
.f
;
1833 else if (sbt
== VT_DOUBLE
)
1834 vtop
->c
.ld
= vtop
->c
.d
;
1837 if ((sbt
& VT_BTYPE
) == VT_LLONG
) {
1838 if (sbt
& VT_UNSIGNED
)
1839 vtop
->c
.ld
= vtop
->c
.ull
;
1841 vtop
->c
.ld
= vtop
->c
.ll
;
1843 if (sbt
& VT_UNSIGNED
)
1844 vtop
->c
.ld
= vtop
->c
.ui
;
1846 vtop
->c
.ld
= vtop
->c
.i
;
1849 if (dbt
== VT_FLOAT
)
1850 vtop
->c
.f
= (float)vtop
->c
.ld
;
1851 else if (dbt
== VT_DOUBLE
)
1852 vtop
->c
.d
= (double)vtop
->c
.ld
;
1853 } else if (sf
&& dbt
== (VT_LLONG
|VT_UNSIGNED
)) {
1854 vtop
->c
.ull
= (unsigned long long)vtop
->c
.ld
;
1855 } else if (sf
&& dbt
== VT_BOOL
) {
1856 vtop
->c
.i
= (vtop
->c
.ld
!= 0);
1859 vtop
->c
.ll
= (long long)vtop
->c
.ld
;
1860 else if (sbt
== (VT_LLONG
|VT_UNSIGNED
))
1861 vtop
->c
.ll
= vtop
->c
.ull
;
1862 else if (sbt
& VT_UNSIGNED
)
1863 vtop
->c
.ll
= vtop
->c
.ui
;
1864 #ifdef TCC_TARGET_X86_64
1865 else if (sbt
== VT_PTR
)
1868 else if (sbt
!= VT_LLONG
)
1869 vtop
->c
.ll
= vtop
->c
.i
;
1871 if (dbt
== (VT_LLONG
|VT_UNSIGNED
))
1872 vtop
->c
.ull
= vtop
->c
.ll
;
1873 else if (dbt
== VT_BOOL
)
1874 vtop
->c
.i
= (vtop
->c
.ll
!= 0);
1875 else if (dbt
!= VT_LLONG
) {
1877 if ((dbt
& VT_BTYPE
) == VT_BYTE
)
1879 else if ((dbt
& VT_BTYPE
) == VT_SHORT
)
1882 if(dbt
& VT_UNSIGNED
)
1883 vtop
->c
.ui
= ((unsigned int)vtop
->c
.ll
<< s
) >> s
;
1885 vtop
->c
.i
= ((int)vtop
->c
.ll
<< s
) >> s
;
1888 } else if (p
&& dbt
== VT_BOOL
) {
1891 } else if (!nocode_wanted
) {
1892 /* non constant case: generate code */
1894 /* convert from fp to fp */
1897 /* convert int to fp */
1900 /* convert fp to int */
1901 if (dbt
== VT_BOOL
) {
1905 /* we handle char/short/etc... with generic code */
1906 if (dbt
!= (VT_INT
| VT_UNSIGNED
) &&
1907 dbt
!= (VT_LLONG
| VT_UNSIGNED
) &&
1911 if (dbt
== VT_INT
&& (type
->t
& (VT_BTYPE
| VT_UNSIGNED
)) != dbt
) {
1912 /* additional cast for char/short... */
1917 #ifndef TCC_TARGET_X86_64
1918 } else if ((dbt
& VT_BTYPE
) == VT_LLONG
) {
1919 if ((sbt
& VT_BTYPE
) != VT_LLONG
) {
1920 /* scalar to long long */
1921 /* machine independent conversion */
1923 /* generate high word */
1924 if (sbt
== (VT_INT
| VT_UNSIGNED
)) {
1928 if (sbt
== VT_PTR
) {
1929 /* cast from pointer to int before we apply
1930 shift operation, which pointers don't support*/
1931 gen_cast(&int_type
);
1937 /* patch second register */
1938 vtop
[-1].r2
= vtop
->r
;
1942 } else if ((dbt
& VT_BTYPE
) == VT_LLONG
||
1943 (dbt
& VT_BTYPE
) == VT_PTR
||
1944 (dbt
& VT_BTYPE
) == VT_FUNC
) {
1945 if ((sbt
& VT_BTYPE
) != VT_LLONG
&&
1946 (sbt
& VT_BTYPE
) != VT_PTR
&&
1947 (sbt
& VT_BTYPE
) != VT_FUNC
) {
1948 /* need to convert from 32bit to 64bit */
1950 if (sbt
!= (VT_INT
| VT_UNSIGNED
)) {
1951 /* x86_64 specific: movslq */
1953 o(0xc0 + (REG_VALUE(r
) << 3) + REG_VALUE(r
));
1957 } else if (dbt
== VT_BOOL
) {
1958 /* scalar to bool */
1961 } else if ((dbt
& VT_BTYPE
) == VT_BYTE
||
1962 (dbt
& VT_BTYPE
) == VT_SHORT
) {
1963 if (sbt
== VT_PTR
) {
1964 vtop
->type
.t
= VT_INT
;
1965 tcc_warning("nonportable conversion from pointer to char/short");
1967 force_charshort_cast(dbt
);
1968 } else if ((dbt
& VT_BTYPE
) == VT_INT
) {
1970 if (sbt
== VT_LLONG
) {
1971 /* from long long: just take low order word */
1975 /* if lvalue and single word type, nothing to do because
1976 the lvalue already contains the real type size (see
1977 VT_LVAL_xxx constants) */
1980 } else if ((dbt
& VT_BTYPE
) == VT_PTR
&& !(vtop
->r
& VT_LVAL
)) {
1981 /* if we are casting between pointer types,
1982 we must update the VT_LVAL_xxx size */
1983 vtop
->r
= (vtop
->r
& ~VT_LVAL_TYPE
)
1984 | (lvalue_type(type
->ref
->type
.t
) & VT_LVAL_TYPE
);
1989 /* return type size as known at compile time. Put alignment at 'a' */
1990 ST_FUNC
int type_size(CType
*type
, int *a
)
1995 bt
= type
->t
& VT_BTYPE
;
1996 if (bt
== VT_STRUCT
) {
2001 } else if (bt
== VT_PTR
) {
2002 if (type
->t
& VT_ARRAY
) {
2006 ts
= type_size(&s
->type
, a
);
2008 if (ts
< 0 && s
->c
< 0)
2016 } else if (bt
== VT_LDOUBLE
) {
2018 return LDOUBLE_SIZE
;
2019 } else if (bt
== VT_DOUBLE
|| bt
== VT_LLONG
) {
2020 #ifdef TCC_TARGET_I386
2021 #ifdef TCC_TARGET_PE
2026 #elif defined(TCC_TARGET_ARM)
2036 } else if (bt
== VT_INT
|| bt
== VT_ENUM
|| bt
== VT_FLOAT
) {
2039 } else if (bt
== VT_SHORT
) {
2043 /* char, void, function, _Bool */
2049 /* push type size as known at runtime time on top of value stack. Put
2051 ST_FUNC
void vla_runtime_type_size(CType
*type
, int *a
)
2053 if (type
->t
& VT_VLA
) {
2054 vset(&int_type
, VT_LOCAL
|VT_LVAL
, type
->ref
->c
);
2056 vpushi(type_size(type
, a
));
2060 /* return the pointed type of t */
2061 static inline CType
*pointed_type(CType
*type
)
2063 return &type
->ref
->type
;
2066 /* modify type so that its it is a pointer to type. */
2067 ST_FUNC
void mk_pointer(CType
*type
)
2070 s
= sym_push(SYM_FIELD
, type
, 0, -1);
2071 type
->t
= VT_PTR
| (type
->t
& ~VT_TYPE
);
2075 /* compare function types. OLD functions match any new functions */
2076 static int is_compatible_func(CType
*type1
, CType
*type2
)
2082 if (!is_compatible_types(&s1
->type
, &s2
->type
))
2084 /* check func_call */
2085 if (FUNC_CALL(s1
->r
) != FUNC_CALL(s2
->r
))
2087 /* XXX: not complete */
2088 if (s1
->c
== FUNC_OLD
|| s2
->c
== FUNC_OLD
)
2092 while (s1
!= NULL
) {
2095 if (!is_compatible_parameter_types(&s1
->type
, &s2
->type
))
2105 /* return true if type1 and type2 are the same. If unqualified is
2106 true, qualifiers on the types are ignored.
2108 - enums are not checked as gcc __builtin_types_compatible_p ()
2110 static int compare_types(CType
*type1
, CType
*type2
, int unqualified
)
2114 t1
= type1
->t
& VT_TYPE
;
2115 t2
= type2
->t
& VT_TYPE
;
2117 /* strip qualifiers before comparing */
2118 t1
&= ~(VT_CONSTANT
| VT_VOLATILE
);
2119 t2
&= ~(VT_CONSTANT
| VT_VOLATILE
);
2121 /* XXX: bitfields ? */
2124 /* test more complicated cases */
2125 bt1
= t1
& VT_BTYPE
;
2126 if (bt1
== VT_PTR
) {
2127 type1
= pointed_type(type1
);
2128 type2
= pointed_type(type2
);
2129 return is_compatible_types(type1
, type2
);
2130 } else if (bt1
== VT_STRUCT
) {
2131 return (type1
->ref
== type2
->ref
);
2132 } else if (bt1
== VT_FUNC
) {
2133 return is_compatible_func(type1
, type2
);
2139 /* return true if type1 and type2 are exactly the same (including
2142 static int is_compatible_types(CType
*type1
, CType
*type2
)
2144 return compare_types(type1
,type2
,0);
2147 /* return true if type1 and type2 are the same (ignoring qualifiers).
2149 static int is_compatible_parameter_types(CType
*type1
, CType
*type2
)
2151 return compare_types(type1
,type2
,1);
2154 /* print a type. If 'varstr' is not NULL, then the variable is also
2155 printed in the type */
2157 /* XXX: add array and function pointers */
2158 static void type_to_str(char *buf
, int buf_size
,
2159 CType
*type
, const char *varstr
)
2166 t
= type
->t
& VT_TYPE
;
2169 if (t
& VT_CONSTANT
)
2170 pstrcat(buf
, buf_size
, "const ");
2171 if (t
& VT_VOLATILE
)
2172 pstrcat(buf
, buf_size
, "volatile ");
2173 if (t
& VT_UNSIGNED
)
2174 pstrcat(buf
, buf_size
, "unsigned ");
2204 tstr
= "long double";
2206 pstrcat(buf
, buf_size
, tstr
);
2210 if (bt
== VT_STRUCT
)
2214 pstrcat(buf
, buf_size
, tstr
);
2215 v
= type
->ref
->v
& ~SYM_STRUCT
;
2216 if (v
>= SYM_FIRST_ANOM
)
2217 pstrcat(buf
, buf_size
, "<anonymous>");
2219 pstrcat(buf
, buf_size
, get_tok_str(v
, NULL
));
2223 type_to_str(buf
, buf_size
, &s
->type
, varstr
);
2224 pstrcat(buf
, buf_size
, "(");
2226 while (sa
!= NULL
) {
2227 type_to_str(buf1
, sizeof(buf1
), &sa
->type
, NULL
);
2228 pstrcat(buf
, buf_size
, buf1
);
2231 pstrcat(buf
, buf_size
, ", ");
2233 pstrcat(buf
, buf_size
, ")");
2237 pstrcpy(buf1
, sizeof(buf1
), "*");
2239 pstrcat(buf1
, sizeof(buf1
), varstr
);
2240 type_to_str(buf
, buf_size
, &s
->type
, buf1
);
2244 pstrcat(buf
, buf_size
, " ");
2245 pstrcat(buf
, buf_size
, varstr
);
2250 /* verify type compatibility to store vtop in 'dt' type, and generate
2252 static void gen_assign_cast(CType
*dt
)
2254 CType
*st
, *type1
, *type2
, tmp_type1
, tmp_type2
;
2255 char buf1
[256], buf2
[256];
2258 st
= &vtop
->type
; /* source type */
2259 dbt
= dt
->t
& VT_BTYPE
;
2260 sbt
= st
->t
& VT_BTYPE
;
2262 tcc_error("Cannot assign void value");
2263 if (dt
->t
& VT_CONSTANT
)
2264 tcc_warning("assignment of read-only location");
2267 /* special cases for pointers */
2268 /* '0' can also be a pointer */
2269 if (is_null_pointer(vtop
))
2271 /* accept implicit pointer to integer cast with warning */
2272 if (is_integer_btype(sbt
)) {
2273 tcc_warning("assignment makes pointer from integer without a cast");
2276 type1
= pointed_type(dt
);
2277 /* a function is implicitely a function pointer */
2278 if (sbt
== VT_FUNC
) {
2279 if ((type1
->t
& VT_BTYPE
) != VT_VOID
&&
2280 !is_compatible_types(pointed_type(dt
), st
))
2281 tcc_warning("assignment from incompatible pointer type");
2286 type2
= pointed_type(st
);
2287 if ((type1
->t
& VT_BTYPE
) == VT_VOID
||
2288 (type2
->t
& VT_BTYPE
) == VT_VOID
) {
2289 /* void * can match anything */
2291 /* exact type match, except for unsigned */
2294 tmp_type1
.t
&= ~(VT_UNSIGNED
| VT_CONSTANT
| VT_VOLATILE
);
2295 tmp_type2
.t
&= ~(VT_UNSIGNED
| VT_CONSTANT
| VT_VOLATILE
);
2296 if (!is_compatible_types(&tmp_type1
, &tmp_type2
))
2297 tcc_warning("assignment from incompatible pointer type");
2299 /* check const and volatile */
2300 if ((!(type1
->t
& VT_CONSTANT
) && (type2
->t
& VT_CONSTANT
)) ||
2301 (!(type1
->t
& VT_VOLATILE
) && (type2
->t
& VT_VOLATILE
)))
2302 tcc_warning("assignment discards qualifiers from pointer target type");
2308 if (sbt
== VT_PTR
|| sbt
== VT_FUNC
) {
2309 tcc_warning("assignment makes integer from pointer without a cast");
2311 /* XXX: more tests */
2316 tmp_type1
.t
&= ~(VT_CONSTANT
| VT_VOLATILE
);
2317 tmp_type2
.t
&= ~(VT_CONSTANT
| VT_VOLATILE
);
2318 if (!is_compatible_types(&tmp_type1
, &tmp_type2
)) {
2320 type_to_str(buf1
, sizeof(buf1
), st
, NULL
);
2321 type_to_str(buf2
, sizeof(buf2
), dt
, NULL
);
2322 tcc_error("cannot cast '%s' to '%s'", buf1
, buf2
);
2330 /* store vtop in lvalue pushed on stack */
2331 ST_FUNC
void vstore(void)
2333 int sbt
, dbt
, ft
, r
, t
, size
, align
, bit_size
, bit_pos
, rc
, delayed_cast
;
2335 ft
= vtop
[-1].type
.t
;
2336 sbt
= vtop
->type
.t
& VT_BTYPE
;
2337 dbt
= ft
& VT_BTYPE
;
2338 if (((sbt
== VT_INT
|| sbt
== VT_SHORT
) && dbt
== VT_BYTE
) ||
2339 (sbt
== VT_INT
&& dbt
== VT_SHORT
)) {
2340 /* optimize char/short casts */
2341 delayed_cast
= VT_MUSTCAST
;
2342 vtop
->type
.t
= ft
& (VT_TYPE
& ~(VT_BITFIELD
| (-1 << VT_STRUCT_SHIFT
)));
2343 /* XXX: factorize */
2344 if (ft
& VT_CONSTANT
)
2345 tcc_warning("assignment of read-only location");
2348 if (!(ft
& VT_BITFIELD
))
2349 gen_assign_cast(&vtop
[-1].type
);
2352 if (sbt
== VT_STRUCT
) {
2353 /* if structure, only generate pointer */
2354 /* structure assignment : generate memcpy */
2355 /* XXX: optimize if small size */
2356 if (!nocode_wanted
) {
2357 size
= type_size(&vtop
->type
, &align
);
2361 vtop
->type
.t
= VT_PTR
;
2364 /* address of memcpy() */
2367 vpush_global_sym(&func_old_type
, TOK_memcpy8
);
2368 else if(!(align
& 3))
2369 vpush_global_sym(&func_old_type
, TOK_memcpy4
);
2372 vpush_global_sym(&func_old_type
, TOK_memcpy
);
2377 vtop
->type
.t
= VT_PTR
;
2386 /* leave source on stack */
2387 } else if (ft
& VT_BITFIELD
) {
2388 /* bitfield store handling */
2389 bit_pos
= (ft
>> VT_STRUCT_SHIFT
) & 0x3f;
2390 bit_size
= (ft
>> (VT_STRUCT_SHIFT
+ 6)) & 0x3f;
2391 /* remove bit field info to avoid loops */
2392 vtop
[-1].type
.t
= ft
& ~(VT_BITFIELD
| (-1 << VT_STRUCT_SHIFT
));
2394 /* duplicate source into other register */
2399 if((ft
& VT_BTYPE
) == VT_BOOL
) {
2400 gen_cast(&vtop
[-1].type
);
2401 vtop
[-1].type
.t
= (vtop
[-1].type
.t
& ~VT_BTYPE
) | (VT_BYTE
| VT_UNSIGNED
);
2404 /* duplicate destination */
2406 vtop
[-1] = vtop
[-2];
2408 /* mask and shift source */
2409 if((ft
& VT_BTYPE
) != VT_BOOL
) {
2410 if((ft
& VT_BTYPE
) == VT_LLONG
) {
2411 vpushll((1ULL << bit_size
) - 1ULL);
2413 vpushi((1 << bit_size
) - 1);
2419 /* load destination, mask and or with source */
2421 if((ft
& VT_BTYPE
) == VT_LLONG
) {
2422 vpushll(~(((1ULL << bit_size
) - 1ULL) << bit_pos
));
2424 vpushi(~(((1 << bit_size
) - 1) << bit_pos
));
2431 /* pop off shifted source from "duplicate source..." above */
2435 #ifdef CONFIG_TCC_BCHECK
2436 /* bound check case */
2437 if (vtop
[-1].r
& VT_MUSTBOUND
) {
2443 if (!nocode_wanted
) {
2447 #ifdef TCC_TARGET_X86_64
2448 if ((ft
& VT_BTYPE
) == VT_LDOUBLE
) {
2453 r
= gv(rc
); /* generate value */
2454 /* if lvalue was saved on stack, must read it */
2455 if ((vtop
[-1].r
& VT_VALMASK
) == VT_LLOCAL
) {
2457 t
= get_reg(RC_INT
);
2458 #ifdef TCC_TARGET_X86_64
2463 sv
.r
= VT_LOCAL
| VT_LVAL
;
2464 sv
.c
.ul
= vtop
[-1].c
.ul
;
2466 vtop
[-1].r
= t
| VT_LVAL
;
2469 #ifndef TCC_TARGET_X86_64
2470 /* two word case handling : store second register at word + 4 */
2471 if ((ft
& VT_BTYPE
) == VT_LLONG
) {
2473 /* convert to int to increment easily */
2474 vtop
->type
.t
= VT_INT
;
2480 /* XXX: it works because r2 is spilled last ! */
2481 store(vtop
->r2
, vtop
- 1);
2486 vtop
--; /* NOT vpop() because on x86 it would flush the fp stack */
2487 vtop
->r
|= delayed_cast
;
2491 /* post defines POST/PRE add. c is the token ++ or -- */
2492 ST_FUNC
void inc(int post
, int c
)
2495 vdup(); /* save lvalue */
2497 gv_dup(); /* duplicate value */
2502 vpushi(c
- TOK_MID
);
2504 vstore(); /* store value */
2506 vpop(); /* if post op, return saved value */
2509 /* Parse GNUC __attribute__ extension. Currently, the following
2510 extensions are recognized:
2511 - aligned(n) : set data/function alignment.
2512 - packed : force data alignment to 1
2513 - section(x) : generate data/code in this section.
2514 - unused : currently ignored, but may be used someday.
2515 - regparm(n) : pass function parameters in registers (i386 only)
2517 static void parse_attribute(AttributeDef
*ad
)
2521 while (tok
== TOK_ATTRIBUTE1
|| tok
== TOK_ATTRIBUTE2
) {
2525 while (tok
!= ')') {
2526 if (tok
< TOK_IDENT
)
2527 expect("attribute name");
2535 expect("section name");
2536 ad
->section
= find_section(tcc_state
, (char *)tokc
.cstr
->data
);
2544 expect("alias(\"target\")");
2545 ad
->alias_target
= /* save string as token, for later */
2546 tok_alloc((char*)tokc
.cstr
->data
, tokc
.cstr
->size
-1)->tok
;
2555 if (n
<= 0 || (n
& (n
- 1)) != 0)
2556 tcc_error("alignment must be a positive power of two");
2573 /* currently, no need to handle it because tcc does not
2574 track unused objects */
2578 /* currently, no need to handle it because tcc does not
2579 track unused objects */
2584 ad
->func_call
= FUNC_CDECL
;
2589 ad
->func_call
= FUNC_STDCALL
;
2591 #ifdef TCC_TARGET_I386
2601 ad
->func_call
= FUNC_FASTCALL1
+ n
- 1;
2607 ad
->func_call
= FUNC_FASTCALLW
;
2614 ad
->mode
= VT_LLONG
+ 1;
2617 ad
->mode
= VT_SHORT
+ 1;
2620 ad
->mode
= VT_INT
+ 1;
2623 tcc_warning("__mode__(%s) not supported\n", get_tok_str(tok
, NULL
));
2630 ad
->func_export
= 1;
2633 ad
->func_import
= 1;
2636 if (tcc_state
->warn_unsupported
)
2637 tcc_warning("'%s' attribute ignored", get_tok_str(t
, NULL
));
2638 /* skip parameters */
2640 int parenthesis
= 0;
2644 else if (tok
== ')')
2647 } while (parenthesis
&& tok
!= -1);
2660 /* enum/struct/union declaration. u is either VT_ENUM or VT_STRUCT */
2661 static void struct_decl(CType
*type
, int u
)
2663 int a
, v
, size
, align
, maxalign
, c
, offset
;
2664 int bit_size
, bit_pos
, bsize
, bt
, lbit_pos
, prevbt
;
2665 Sym
*s
, *ss
, *ass
, **ps
;
2669 a
= tok
; /* save decl type */
2674 /* struct already defined ? return it */
2676 expect("struct/union/enum name");
2680 tcc_error("invalid type");
2687 /* we put an undefined size for struct/union */
2688 s
= sym_push(v
| SYM_STRUCT
, &type1
, 0, -1);
2689 s
->r
= 0; /* default alignment is zero as gcc */
2690 /* put struct/union/enum name in type */
2698 tcc_error("struct/union/enum already defined");
2699 /* cannot be empty */
2701 /* non empty enums are not allowed */
2702 if (a
== TOK_ENUM
) {
2706 expect("identifier");
2712 /* enum symbols have static storage */
2713 ss
= sym_push(v
, &int_type
, VT_CONST
, c
);
2714 ss
->type
.t
|= VT_STATIC
;
2719 /* NOTE: we accept a trailing comma */
2730 while (tok
!= '}') {
2731 parse_btype(&btype
, &ad
);
2737 type_decl(&type1
, &ad
, &v
, TYPE_DIRECT
| TYPE_ABSTRACT
);
2738 if (v
== 0 && (type1
.t
& VT_BTYPE
) != VT_STRUCT
)
2739 expect("identifier");
2740 if ((type1
.t
& VT_BTYPE
) == VT_FUNC
||
2741 (type1
.t
& (VT_TYPEDEF
| VT_STATIC
| VT_EXTERN
| VT_INLINE
)))
2742 tcc_error("invalid type for '%s'",
2743 get_tok_str(v
, NULL
));
2747 bit_size
= expr_const();
2748 /* XXX: handle v = 0 case for messages */
2750 tcc_error("negative width in bit-field '%s'",
2751 get_tok_str(v
, NULL
));
2752 if (v
&& bit_size
== 0)
2753 tcc_error("zero width for bit-field '%s'",
2754 get_tok_str(v
, NULL
));
2756 size
= type_size(&type1
, &align
);
2758 if (align
< ad
.aligned
)
2760 } else if (ad
.packed
) {
2762 } else if (*tcc_state
->pack_stack_ptr
) {
2763 if (align
> *tcc_state
->pack_stack_ptr
)
2764 align
= *tcc_state
->pack_stack_ptr
;
2767 if (bit_size
>= 0) {
2768 bt
= type1
.t
& VT_BTYPE
;
2775 tcc_error("bitfields must have scalar type");
2777 if (bit_size
> bsize
) {
2778 tcc_error("width of '%s' exceeds its type",
2779 get_tok_str(v
, NULL
));
2780 } else if (bit_size
== bsize
) {
2781 /* no need for bit fields */
2783 } else if (bit_size
== 0) {
2784 /* XXX: what to do if only padding in a
2786 /* zero size: means to pad */
2789 /* we do not have enough room ?
2790 did the type change?
2792 if ((bit_pos
+ bit_size
) > bsize
||
2793 bt
!= prevbt
|| a
== TOK_UNION
)
2796 /* XXX: handle LSB first */
2797 type1
.t
|= VT_BITFIELD
|
2798 (bit_pos
<< VT_STRUCT_SHIFT
) |
2799 (bit_size
<< (VT_STRUCT_SHIFT
+ 6));
2800 bit_pos
+= bit_size
;
2806 if (v
!= 0 || (type1
.t
& VT_BTYPE
) == VT_STRUCT
) {
2807 /* add new memory data only if starting
2809 if (lbit_pos
== 0) {
2810 if (a
== TOK_STRUCT
) {
2811 c
= (c
+ align
- 1) & -align
;
2820 if (align
> maxalign
)
2824 printf("add field %s offset=%d",
2825 get_tok_str(v
, NULL
), offset
);
2826 if (type1
.t
& VT_BITFIELD
) {
2827 printf(" pos=%d size=%d",
2828 (type1
.t
>> VT_STRUCT_SHIFT
) & 0x3f,
2829 (type1
.t
>> (VT_STRUCT_SHIFT
+ 6)) & 0x3f);
2834 if (v
== 0 && (type1
.t
& VT_BTYPE
) == VT_STRUCT
) {
2836 while ((ass
= ass
->next
) != NULL
) {
2837 ss
= sym_push(ass
->v
, &ass
->type
, 0, offset
+ ass
->c
);
2842 ss
= sym_push(v
| SYM_FIELD
, &type1
, 0, offset
);
2846 if (tok
== ';' || tok
== TOK_EOF
)
2853 /* store size and alignment */
2854 s
->c
= (c
+ maxalign
- 1) & -maxalign
;
2860 /* return 0 if no type declaration. otherwise, return the basic type
2863 static int parse_btype(CType
*type
, AttributeDef
*ad
)
2865 int t
, u
, type_found
, typespec_found
, typedef_found
;
2869 memset(ad
, 0, sizeof(AttributeDef
));
2877 /* currently, we really ignore extension */
2887 if ((t
& VT_BTYPE
) != 0)
2888 tcc_error("too many basic types");
2904 if ((t
& VT_BTYPE
) == VT_DOUBLE
) {
2905 #ifndef TCC_TARGET_PE
2906 t
= (t
& ~VT_BTYPE
) | VT_LDOUBLE
;
2908 } else if ((t
& VT_BTYPE
) == VT_LONG
) {
2909 t
= (t
& ~VT_BTYPE
) | VT_LLONG
;
2923 if ((t
& VT_BTYPE
) == VT_LONG
) {
2924 #ifdef TCC_TARGET_PE
2925 t
= (t
& ~VT_BTYPE
) | VT_DOUBLE
;
2927 t
= (t
& ~VT_BTYPE
) | VT_LDOUBLE
;
2935 struct_decl(&type1
, VT_ENUM
);
2938 type
->ref
= type1
.ref
;
2942 struct_decl(&type1
, VT_STRUCT
);
2945 /* type modifiers */
2998 /* GNUC attribute */
2999 case TOK_ATTRIBUTE1
:
3000 case TOK_ATTRIBUTE2
:
3001 parse_attribute(ad
);
3004 t
= (t
& ~VT_BTYPE
) | u
;
3012 parse_expr_type(&type1
);
3013 /* remove all storage modifiers except typedef */
3014 type1
.t
&= ~(VT_STORAGE
&~VT_TYPEDEF
);
3017 if (typespec_found
|| typedef_found
)
3020 if (!s
|| !(s
->type
.t
& VT_TYPEDEF
))
3023 t
|= (s
->type
.t
& ~VT_TYPEDEF
);
3024 type
->ref
= s
->type
.ref
;
3026 /* get attributes from typedef */
3027 if (0 == ad
->aligned
)
3028 ad
->aligned
= FUNC_ALIGN(s
->r
);
3029 if (0 == ad
->func_call
)
3030 ad
->func_call
= FUNC_CALL(s
->r
);
3031 ad
->packed
|= FUNC_PACKED(s
->r
);
3040 if ((t
& (VT_SIGNED
|VT_UNSIGNED
)) == (VT_SIGNED
|VT_UNSIGNED
))
3041 tcc_error("signed and unsigned modifier");
3042 if (tcc_state
->char_is_unsigned
) {
3043 if ((t
& (VT_SIGNED
|VT_UNSIGNED
|VT_BTYPE
)) == VT_BYTE
)
3048 /* long is never used as type */
3049 if ((t
& VT_BTYPE
) == VT_LONG
)
3050 #if !defined TCC_TARGET_X86_64 || defined TCC_TARGET_PE
3051 t
= (t
& ~VT_BTYPE
) | VT_INT
;
3053 t
= (t
& ~VT_BTYPE
) | VT_LLONG
;
3059 /* convert a function parameter type (array to pointer and function to
3060 function pointer) */
3061 static inline void convert_parameter_type(CType
*pt
)
3063 /* remove const and volatile qualifiers (XXX: const could be used
3064 to indicate a const function parameter */
3065 pt
->t
&= ~(VT_CONSTANT
| VT_VOLATILE
);
3066 /* array must be transformed to pointer according to ANSI C */
3068 if ((pt
->t
& VT_BTYPE
) == VT_FUNC
) {
3073 ST_FUNC
void parse_asm_str(CString
*astr
)
3076 /* read the string */
3078 expect("string constant");
3080 while (tok
== TOK_STR
) {
3081 /* XXX: add \0 handling too ? */
3082 cstr_cat(astr
, tokc
.cstr
->data
);
3085 cstr_ccat(astr
, '\0');
3088 /* Parse an asm label and return the label
3089 * Don't forget to free the CString in the caller! */
3090 static void asm_label_instr(CString
*astr
)
3093 parse_asm_str(astr
);
3096 printf("asm_alias: \"%s\"\n", (char *)astr
->data
);
3100 static void post_type(CType
*type
, AttributeDef
*ad
)
3102 int n
, l
, t1
, arg_size
, align
;
3103 Sym
**plast
, *s
, *first
;
3108 /* function declaration */
3116 /* read param name and compute offset */
3117 if (l
!= FUNC_OLD
) {
3118 if (!parse_btype(&pt
, &ad1
)) {
3120 tcc_error("invalid type");
3127 if ((pt
.t
& VT_BTYPE
) == VT_VOID
&& tok
== ')')
3129 type_decl(&pt
, &ad1
, &n
, TYPE_DIRECT
| TYPE_ABSTRACT
);
3130 if ((pt
.t
& VT_BTYPE
) == VT_VOID
)
3131 tcc_error("parameter declared as void");
3132 arg_size
+= (type_size(&pt
, &align
) + PTR_SIZE
- 1) / PTR_SIZE
;
3137 expect("identifier");
3141 convert_parameter_type(&pt
);
3142 s
= sym_push(n
| SYM_FIELD
, &pt
, 0, 0);
3148 if (l
== FUNC_NEW
&& tok
== TOK_DOTS
) {
3155 /* if no parameters, then old type prototype */
3159 /* NOTE: const is ignored in returned type as it has a special
3160 meaning in gcc / C++ */
3161 type
->t
&= ~VT_CONSTANT
;
3162 /* some ancient pre-K&R C allows a function to return an array
3163 and the array brackets to be put after the arguments, such
3164 that "int c()[]" means something like "int[] c()" */
3167 skip(']'); /* only handle simple "[]" */
3170 /* we push a anonymous symbol which will contain the function prototype */
3171 ad
->func_args
= arg_size
;
3172 s
= sym_push(SYM_FIELD
, type
, INT_ATTR(ad
), l
);
3176 } else if (tok
== '[') {
3177 /* array definition */
3179 if (tok
== TOK_RESTRICT1
)
3184 if (!local_stack
|| nocode_wanted
)
3185 vpushi(expr_const());
3187 if ((vtop
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) == VT_CONST
) {
3190 tcc_error("invalid array size");
3192 if (!is_integer_btype(vtop
->type
.t
& VT_BTYPE
))
3193 tcc_error("size of variable length array should be an integer");
3198 /* parse next post type */
3199 post_type(type
, ad
);
3200 t1
|= type
->t
& VT_VLA
;
3203 loc
-= type_size(&int_type
, &align
);
3207 vla_runtime_type_size(type
, &align
);
3209 vset(&int_type
, VT_LOCAL
|VT_LVAL
, loc
);
3216 /* we push an anonymous symbol which will contain the array
3218 s
= sym_push(SYM_FIELD
, type
, 0, n
);
3219 type
->t
= (t1
? VT_VLA
: VT_ARRAY
) | VT_PTR
;
3224 /* Parse a type declaration (except basic type), and return the type
3225 in 'type'. 'td' is a bitmask indicating which kind of type decl is
3226 expected. 'type' should contain the basic type. 'ad' is the
3227 attribute definition of the basic type. It can be modified by
3230 static void type_decl(CType
*type
, AttributeDef
*ad
, int *v
, int td
)
3233 CType type1
, *type2
;
3234 int qualifiers
, storage
;
3236 while (tok
== '*') {
3244 qualifiers
|= VT_CONSTANT
;
3249 qualifiers
|= VT_VOLATILE
;
3257 type
->t
|= qualifiers
;
3260 /* XXX: clarify attribute handling */
3261 if (tok
== TOK_ATTRIBUTE1
|| tok
== TOK_ATTRIBUTE2
)
3262 parse_attribute(ad
);
3264 /* recursive type */
3265 /* XXX: incorrect if abstract type for functions (e.g. 'int ()') */
3266 type1
.t
= 0; /* XXX: same as int */
3269 /* XXX: this is not correct to modify 'ad' at this point, but
3270 the syntax is not clear */
3271 if (tok
== TOK_ATTRIBUTE1
|| tok
== TOK_ATTRIBUTE2
)
3272 parse_attribute(ad
);
3273 type_decl(&type1
, ad
, v
, td
);
3276 /* type identifier */
3277 if (tok
>= TOK_IDENT
&& (td
& TYPE_DIRECT
)) {
3281 if (!(td
& TYPE_ABSTRACT
))
3282 expect("identifier");
3286 storage
= type
->t
& VT_STORAGE
;
3287 type
->t
&= ~VT_STORAGE
;
3288 post_type(type
, ad
);
3290 if (tok
== TOK_ATTRIBUTE1
|| tok
== TOK_ATTRIBUTE2
)
3291 parse_attribute(ad
);
3295 /* append type at the end of type1 */
3308 /* compute the lvalue VT_LVAL_xxx needed to match type t. */
3309 ST_FUNC
int lvalue_type(int t
)
3314 if (bt
== VT_BYTE
|| bt
== VT_BOOL
)
3316 else if (bt
== VT_SHORT
)
3320 if (t
& VT_UNSIGNED
)
3321 r
|= VT_LVAL_UNSIGNED
;
3325 /* indirection with full error checking and bound check */
3326 ST_FUNC
void indir(void)
3328 if ((vtop
->type
.t
& VT_BTYPE
) != VT_PTR
) {
3329 if ((vtop
->type
.t
& VT_BTYPE
) == VT_FUNC
)
3333 if ((vtop
->r
& VT_LVAL
) && !nocode_wanted
)
3335 vtop
->type
= *pointed_type(&vtop
->type
);
3336 /* Arrays and functions are never lvalues */
3337 if (!(vtop
->type
.t
& VT_ARRAY
) && !(vtop
->type
.t
& VT_VLA
)
3338 && (vtop
->type
.t
& VT_BTYPE
) != VT_FUNC
) {
3339 vtop
->r
|= lvalue_type(vtop
->type
.t
);
3340 /* if bound checking, the referenced pointer must be checked */
3341 #ifdef CONFIG_TCC_BCHECK
3342 if (tcc_state
->do_bounds_check
)
3343 vtop
->r
|= VT_MUSTBOUND
;
3348 /* pass a parameter to a function and do type checking and casting */
3349 static void gfunc_param_typed(Sym
*func
, Sym
*arg
)
3354 func_type
= func
->c
;
3355 if (func_type
== FUNC_OLD
||
3356 (func_type
== FUNC_ELLIPSIS
&& arg
== NULL
)) {
3357 /* default casting : only need to convert float to double */
3358 if ((vtop
->type
.t
& VT_BTYPE
) == VT_FLOAT
) {
3362 } else if (arg
== NULL
) {
3363 tcc_error("too many arguments to function");
3366 type
.t
&= ~VT_CONSTANT
; /* need to do that to avoid false warning */
3367 gen_assign_cast(&type
);
3371 /* parse an expression of the form '(type)' or '(expr)' and return its
3373 static void parse_expr_type(CType
*type
)
3379 if (parse_btype(type
, &ad
)) {
3380 type_decl(type
, &ad
, &n
, TYPE_ABSTRACT
);
3387 static void parse_type(CType
*type
)
3392 if (!parse_btype(type
, &ad
)) {
3395 type_decl(type
, &ad
, &n
, TYPE_ABSTRACT
);
3398 static void vpush_tokc(int t
)
3403 vsetc(&type
, VT_CONST
, &tokc
);
3406 ST_FUNC
void unary(void)
3408 int n
, t
, align
, size
, r
, sizeof_caller
;
3412 static int in_sizeof
= 0;
3414 sizeof_caller
= in_sizeof
;
3416 /* XXX: GCC 2.95.3 does not generate a table although it should be
3430 vpush_tokc(VT_INT
| VT_UNSIGNED
);
3434 vpush_tokc(VT_LLONG
);
3438 vpush_tokc(VT_LLONG
| VT_UNSIGNED
);
3442 vpush_tokc(VT_FLOAT
);
3446 vpush_tokc(VT_DOUBLE
);
3450 vpush_tokc(VT_LDOUBLE
);
3453 case TOK___FUNCTION__
:
3455 goto tok_identifier
;
3461 /* special function name identifier */
3462 len
= strlen(funcname
) + 1;
3463 /* generate char[len] type */
3468 vpush_ref(&type
, data_section
, data_section
->data_offset
, len
);
3469 ptr
= section_ptr_add(data_section
, len
);
3470 memcpy(ptr
, funcname
, len
);
3475 #ifdef TCC_TARGET_PE
3476 t
= VT_SHORT
| VT_UNSIGNED
;
3482 /* string parsing */
3485 if (tcc_state
->warn_write_strings
)
3490 memset(&ad
, 0, sizeof(AttributeDef
));
3491 decl_initializer_alloc(&type
, &ad
, VT_CONST
, 2, 0, NULL
, 0);
3496 if (parse_btype(&type
, &ad
)) {
3497 type_decl(&type
, &ad
, &n
, TYPE_ABSTRACT
);
3499 /* check ISOC99 compound literal */
3501 /* data is allocated locally by default */
3506 /* all except arrays are lvalues */
3507 if (!(type
.t
& VT_ARRAY
))
3508 r
|= lvalue_type(type
.t
);
3509 memset(&ad
, 0, sizeof(AttributeDef
));
3510 decl_initializer_alloc(&type
, &ad
, r
, 1, 0, NULL
, 0);
3512 if (sizeof_caller
) {
3519 } else if (tok
== '{') {
3520 /* save all registers */
3522 /* statement expression : we do not accept break/continue
3523 inside as GCC does */
3524 block(NULL
, NULL
, NULL
, NULL
, 0, 1);
3539 /* functions names must be treated as function pointers,
3540 except for unary '&' and sizeof. Since we consider that
3541 functions are not lvalues, we only have to handle it
3542 there and in function calls. */
3543 /* arrays can also be used although they are not lvalues */
3544 if ((vtop
->type
.t
& VT_BTYPE
) != VT_FUNC
&&
3545 !(vtop
->type
.t
& VT_ARRAY
) && !(vtop
->type
.t
& VT_LLOCAL
))
3547 mk_pointer(&vtop
->type
);
3553 if ((vtop
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) == VT_CONST
) {
3555 boolean
.t
= VT_BOOL
;
3557 vtop
->c
.i
= !vtop
->c
.i
;
3558 } else if ((vtop
->r
& VT_VALMASK
) == VT_CMP
)
3559 vtop
->c
.i
= vtop
->c
.i
^ 1;
3562 vseti(VT_JMP
, gtst(1, 0));
3573 /* in order to force cast, we add zero */
3575 if ((vtop
->type
.t
& VT_BTYPE
) == VT_PTR
)
3576 tcc_error("pointer not accepted for unary plus");
3586 unary_type(&type
); // Perform a in_sizeof = 0;
3587 size
= type_size(&type
, &align
);
3588 if (t
== TOK_SIZEOF
) {
3589 if (!(type
.t
& VT_VLA
)) {
3591 tcc_error("sizeof applied to an incomplete type");
3594 vla_runtime_type_size(&type
, &align
);
3599 vtop
->type
.t
|= VT_UNSIGNED
;
3602 case TOK_builtin_types_compatible_p
:
3611 type1
.t
&= ~(VT_CONSTANT
| VT_VOLATILE
);
3612 type2
.t
&= ~(VT_CONSTANT
| VT_VOLATILE
);
3613 vpushi(is_compatible_types(&type1
, &type2
));
3616 case TOK_builtin_constant_p
:
3618 int saved_nocode_wanted
, res
;
3621 saved_nocode_wanted
= nocode_wanted
;
3624 res
= (vtop
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) == VT_CONST
;
3626 nocode_wanted
= saved_nocode_wanted
;
3631 case TOK_builtin_frame_address
:
3636 if (tok
!= TOK_CINT
) {
3637 tcc_error("__builtin_frame_address only takes integers");
3640 tcc_error("TCC only supports __builtin_frame_address(0)");
3646 vset(&type
, VT_LOCAL
, 0);
3649 #ifdef TCC_TARGET_X86_64
3650 case TOK_builtin_va_arg_types
:
3652 /* This definition must be synced with stdarg.h */
3653 enum __va_arg_type
{
3654 __va_gen_reg
, __va_float_reg
, __va_stack
3662 bt
= type
.t
& VT_BTYPE
;
3663 if (bt
== VT_STRUCT
|| bt
== VT_LDOUBLE
) {
3665 } else if (bt
== VT_FLOAT
|| bt
== VT_DOUBLE
) {
3666 vpushi(__va_float_reg
);
3668 vpushi(__va_gen_reg
);
3688 goto tok_identifier
;
3690 /* allow to take the address of a label */
3691 if (tok
< TOK_UIDENT
)
3692 expect("label identifier");
3693 s
= label_find(tok
);
3695 s
= label_push(&global_label_stack
, tok
, LABEL_FORWARD
);
3697 if (s
->r
== LABEL_DECLARED
)
3698 s
->r
= LABEL_FORWARD
;
3701 s
->type
.t
= VT_VOID
;
3702 mk_pointer(&s
->type
);
3703 s
->type
.t
|= VT_STATIC
;
3705 vset(&s
->type
, VT_CONST
| VT_SYM
, 0);
3710 // special qnan , snan and infinity values
3712 vpush64(VT_DOUBLE
, 0x7ff8000000000000ULL
);
3716 vpush64(VT_DOUBLE
, 0x7ff0000000000001ULL
);
3720 vpush64(VT_DOUBLE
, 0x7ff0000000000000ULL
);
3729 expect("identifier");
3733 tcc_error("'%s' undeclared", get_tok_str(t
, NULL
));
3734 /* for simple function calls, we tolerate undeclared
3735 external reference to int() function */
3736 if (tcc_state
->warn_implicit_function_declaration
)
3737 tcc_warning("implicit declaration of function '%s'",
3738 get_tok_str(t
, NULL
));
3739 s
= external_global_sym(t
, &func_old_type
, 0);
3741 if ((s
->type
.t
& (VT_STATIC
| VT_INLINE
| VT_BTYPE
)) ==
3742 (VT_STATIC
| VT_INLINE
| VT_FUNC
)) {
3743 /* if referencing an inline function, then we generate a
3744 symbol to it if not already done. It will have the
3745 effect to generate code for it at the end of the
3746 compilation unit. Inline function as always
3747 generated in the text section. */
3749 put_extern_sym(s
, text_section
, 0, 0);
3750 r
= VT_SYM
| VT_CONST
;
3754 vset(&s
->type
, r
, s
->c
);
3755 /* if forward reference, we must point to s */
3756 if (vtop
->r
& VT_SYM
) {
3763 /* post operations */
3765 if (tok
== TOK_INC
|| tok
== TOK_DEC
) {
3768 } else if (tok
== '.' || tok
== TOK_ARROW
) {
3771 if (tok
== TOK_ARROW
)
3773 qualifiers
= vtop
->type
.t
& (VT_CONSTANT
| VT_VOLATILE
);
3777 /* expect pointer on structure */
3778 if ((vtop
->type
.t
& VT_BTYPE
) != VT_STRUCT
)
3779 expect("struct or union");
3783 while ((s
= s
->next
) != NULL
) {
3788 tcc_error("field not found: %s", get_tok_str(tok
& ~SYM_FIELD
, NULL
));
3789 /* add field offset to pointer */
3790 vtop
->type
= char_pointer_type
; /* change type to 'char *' */
3793 /* change type to field type, and set to lvalue */
3794 vtop
->type
= s
->type
;
3795 vtop
->type
.t
|= qualifiers
;
3796 /* an array is never an lvalue */
3797 if (!(vtop
->type
.t
& VT_ARRAY
)) {
3798 vtop
->r
|= lvalue_type(vtop
->type
.t
);
3799 #ifdef CONFIG_TCC_BCHECK
3800 /* if bound checking, the referenced pointer must be checked */
3801 if (tcc_state
->do_bounds_check
)
3802 vtop
->r
|= VT_MUSTBOUND
;
3806 } else if (tok
== '[') {
3812 } else if (tok
== '(') {
3818 if ((vtop
->type
.t
& VT_BTYPE
) != VT_FUNC
) {
3819 /* pointer test (no array accepted) */
3820 if ((vtop
->type
.t
& (VT_BTYPE
| VT_ARRAY
)) == VT_PTR
) {
3821 vtop
->type
= *pointed_type(&vtop
->type
);
3822 if ((vtop
->type
.t
& VT_BTYPE
) != VT_FUNC
)
3826 expect("function pointer");
3829 vtop
->r
&= ~VT_LVAL
; /* no lvalue */
3831 /* get return type */
3834 sa
= s
->next
; /* first parameter */
3837 /* compute first implicit argument if a structure is returned */
3838 if ((s
->type
.t
& VT_BTYPE
) == VT_STRUCT
) {
3839 /* get some space for the returned structure */
3840 size
= type_size(&s
->type
, &align
);
3841 loc
= (loc
- size
) & -align
;
3843 ret
.r
= VT_LOCAL
| VT_LVAL
;
3844 /* pass it as 'int' to avoid structure arg passing
3846 vseti(VT_LOCAL
, loc
);
3851 /* return in register */
3852 if (is_float(ret
.type
.t
)) {
3853 ret
.r
= reg_fret(ret
.type
.t
);
3855 if ((ret
.type
.t
& VT_BTYPE
) == VT_LLONG
)
3864 gfunc_param_typed(s
, sa
);
3874 tcc_error("too few arguments to function");
3876 if (!nocode_wanted
) {
3877 gfunc_call(nb_args
);
3879 vtop
-= (nb_args
+ 1);
3882 vsetc(&ret
.type
, ret
.r
, &ret
.c
);
3890 ST_FUNC
void expr_prod(void)
3895 while (tok
== '*' || tok
== '/' || tok
== '%') {
3903 ST_FUNC
void expr_sum(void)
3908 while (tok
== '+' || tok
== '-') {
3916 static void expr_shift(void)
3921 while (tok
== TOK_SHL
|| tok
== TOK_SAR
) {
3929 static void expr_cmp(void)
3934 while ((tok
>= TOK_ULE
&& tok
<= TOK_GT
) ||
3935 tok
== TOK_ULT
|| tok
== TOK_UGE
) {
3943 static void expr_cmpeq(void)
3948 while (tok
== TOK_EQ
|| tok
== TOK_NE
) {
3956 static void expr_and(void)
3959 while (tok
== '&') {
3966 static void expr_xor(void)
3969 while (tok
== '^') {
3976 static void expr_or(void)
3979 while (tok
== '|') {
3986 /* XXX: fix this mess */
3987 static void expr_land_const(void)
3990 while (tok
== TOK_LAND
) {
3997 /* XXX: fix this mess */
3998 static void expr_lor_const(void)
4001 while (tok
== TOK_LOR
) {
4008 /* only used if non constant */
4009 static void expr_land(void)
4014 if (tok
== TOK_LAND
) {
4019 if (tok
!= TOK_LAND
) {
4029 static void expr_lor(void)
4034 if (tok
== TOK_LOR
) {
4039 if (tok
!= TOK_LOR
) {
4049 /* XXX: better constant handling */
4050 static void expr_cond(void)
4052 int tt
, u
, r1
, r2
, rc
, t1
, t2
, bt1
, bt2
;
4054 CType type
, type1
, type2
;
4061 boolean
.t
= VT_BOOL
;
4067 if (tok
!= ':' || !gnu_ext
) {
4082 if (vtop
!= vstack
) {
4083 /* needed to avoid having different registers saved in
4085 if (is_float(vtop
->type
.t
)) {
4087 #ifdef TCC_TARGET_X86_64
4088 if ((vtop
->type
.t
& VT_BTYPE
) == VT_LDOUBLE
) {
4098 if (tok
== ':' && gnu_ext
) {
4106 sv
= *vtop
; /* save value to handle it later */
4107 vtop
--; /* no vpop so that FP stack is not flushed */
4115 bt1
= t1
& VT_BTYPE
;
4117 bt2
= t2
& VT_BTYPE
;
4118 /* cast operands to correct type according to ISOC rules */
4119 if (is_float(bt1
) || is_float(bt2
)) {
4120 if (bt1
== VT_LDOUBLE
|| bt2
== VT_LDOUBLE
) {
4121 type
.t
= VT_LDOUBLE
;
4122 } else if (bt1
== VT_DOUBLE
|| bt2
== VT_DOUBLE
) {
4127 } else if (bt1
== VT_LLONG
|| bt2
== VT_LLONG
) {
4128 /* cast to biggest op */
4130 /* convert to unsigned if it does not fit in a long long */
4131 if ((t1
& (VT_BTYPE
| VT_UNSIGNED
)) == (VT_LLONG
| VT_UNSIGNED
) ||
4132 (t2
& (VT_BTYPE
| VT_UNSIGNED
)) == (VT_LLONG
| VT_UNSIGNED
))
4133 type
.t
|= VT_UNSIGNED
;
4134 } else if (bt1
== VT_PTR
|| bt2
== VT_PTR
) {
4135 /* XXX: test pointer compatibility */
4137 } else if (bt1
== VT_FUNC
|| bt2
== VT_FUNC
) {
4138 /* XXX: test function pointer compatibility */
4140 } else if (bt1
== VT_STRUCT
|| bt2
== VT_STRUCT
) {
4141 /* XXX: test structure compatibility */
4143 } else if (bt1
== VT_VOID
|| bt2
== VT_VOID
) {
4144 /* NOTE: as an extension, we accept void on only one side */
4147 /* integer operations */
4149 /* convert to unsigned if it does not fit in an integer */
4150 if ((t1
& (VT_BTYPE
| VT_UNSIGNED
)) == (VT_INT
| VT_UNSIGNED
) ||
4151 (t2
& (VT_BTYPE
| VT_UNSIGNED
)) == (VT_INT
| VT_UNSIGNED
))
4152 type
.t
|= VT_UNSIGNED
;
4155 /* now we convert second operand */
4157 if (VT_STRUCT
== (vtop
->type
.t
& VT_BTYPE
))
4160 if (is_float(type
.t
)) {
4162 #ifdef TCC_TARGET_X86_64
4163 if ((type
.t
& VT_BTYPE
) == VT_LDOUBLE
) {
4167 } else if ((type
.t
& VT_BTYPE
) == VT_LLONG
) {
4168 /* for long longs, we use fixed registers to avoid having
4169 to handle a complicated move */
4174 /* this is horrible, but we must also convert first
4178 /* put again first value and cast it */
4181 if (VT_STRUCT
== (vtop
->type
.t
& VT_BTYPE
))
4191 static void expr_eq(void)
4197 (tok
>= TOK_A_MOD
&& tok
<= TOK_A_DIV
) ||
4198 tok
== TOK_A_XOR
|| tok
== TOK_A_OR
||
4199 tok
== TOK_A_SHL
|| tok
== TOK_A_SAR
) {
4214 ST_FUNC
void gexpr(void)
4225 /* parse an expression and return its type without any side effect. */
4226 static void expr_type(CType
*type
)
4228 int saved_nocode_wanted
;
4230 saved_nocode_wanted
= nocode_wanted
;
4235 nocode_wanted
= saved_nocode_wanted
;
4238 /* parse a unary expression and return its type without any side
4240 static void unary_type(CType
*type
)
4252 /* parse a constant expression and return value in vtop. */
4253 static void expr_const1(void)
4262 /* parse an integer constant and return its value. */
4263 ST_FUNC
int expr_const(void)
4267 if ((vtop
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) != VT_CONST
)
4268 expect("constant expression");
4274 /* return the label token if current token is a label, otherwise
4276 static int is_label(void)
4280 /* fast test first */
4281 if (tok
< TOK_UIDENT
)
4283 /* no need to save tokc because tok is an identifier */
4290 unget_tok(last_tok
);
4295 static void block(int *bsym
, int *csym
, int *case_sym
, int *def_sym
,
4296 int case_reg
, int is_expr
)
4301 /* generate line number info */
4302 if (tcc_state
->do_debug
&&
4303 (last_line_num
!= file
->line_num
|| last_ind
!= ind
)) {
4304 put_stabn(N_SLINE
, 0, file
->line_num
, ind
- func_ind
);
4306 last_line_num
= file
->line_num
;
4310 /* default return value is (void) */
4312 vtop
->type
.t
= VT_VOID
;
4315 if (tok
== TOK_IF
) {
4322 block(bsym
, csym
, case_sym
, def_sym
, case_reg
, 0);
4324 if (c
== TOK_ELSE
) {
4328 block(bsym
, csym
, case_sym
, def_sym
, case_reg
, 0);
4329 gsym(d
); /* patch else jmp */
4332 } else if (tok
== TOK_WHILE
) {
4340 block(&a
, &b
, case_sym
, def_sym
, case_reg
, 0);
4344 } else if (tok
== '{') {
4348 /* record local declaration stack position */
4350 llabel
= local_label_stack
;
4351 /* handle local labels declarations */
4352 if (tok
== TOK_LABEL
) {
4355 if (tok
< TOK_UIDENT
)
4356 expect("label identifier");
4357 label_push(&local_label_stack
, tok
, LABEL_DECLARED
);
4367 while (tok
!= '}') {
4372 block(bsym
, csym
, case_sym
, def_sym
, case_reg
, is_expr
);
4375 /* pop locally defined labels */
4376 label_pop(&local_label_stack
, llabel
);
4378 /* XXX: this solution makes only valgrind happy...
4379 triggered by gcc.c-torture/execute/20000917-1.c */
4381 switch(vtop
->type
.t
& VT_BTYPE
) {
4386 for(p
=vtop
->type
.ref
;p
;p
=p
->prev
)
4388 tcc_error("unsupported expression type");
4391 /* pop locally defined symbols */
4392 sym_pop(&local_stack
, s
);
4394 } else if (tok
== TOK_RETURN
) {
4398 gen_assign_cast(&func_vt
);
4399 if ((func_vt
.t
& VT_BTYPE
) == VT_STRUCT
) {
4401 /* if returning structure, must copy it to implicit
4402 first pointer arg location */
4405 size
= type_size(&func_vt
,&align
);
4408 if((vtop
->r
!= (VT_LOCAL
| VT_LVAL
) || (vtop
->c
.i
& 3))
4412 loc
= (loc
- size
) & -4;
4415 vset(&type
, VT_LOCAL
| VT_LVAL
, addr
);
4418 vset(&int_type
, VT_LOCAL
| VT_LVAL
, addr
);
4420 vtop
->type
= int_type
;
4426 vset(&type
, VT_LOCAL
| VT_LVAL
, func_vc
);
4429 /* copy structure value to pointer */
4434 } else if (is_float(func_vt
.t
)) {
4435 gv(rc_fret(func_vt
.t
));
4439 vtop
--; /* NOT vpop() because on x86 it would flush the fp stack */
4442 rsym
= gjmp(rsym
); /* jmp */
4443 } else if (tok
== TOK_BREAK
) {
4446 tcc_error("cannot break");
4447 *bsym
= gjmp(*bsym
);
4450 } else if (tok
== TOK_CONTINUE
) {
4453 tcc_error("cannot continue");
4454 *csym
= gjmp(*csym
);
4457 } else if (tok
== TOK_FOR
) {
4463 /* c99 for-loop init decl? */
4464 if (!decl0(VT_LOCAL
, 1)) {
4465 /* no, regular for-loop init expr */
4489 block(&a
, &b
, case_sym
, def_sym
, case_reg
, 0);
4493 sym_pop(&local_stack
, s
);
4495 if (tok
== TOK_DO
) {
4500 block(&a
, &b
, case_sym
, def_sym
, case_reg
, 0);
4511 if (tok
== TOK_SWITCH
) {
4515 /* XXX: other types than integer */
4516 case_reg
= gv(RC_INT
);
4520 b
= gjmp(0); /* jump to first case */
4522 block(&a
, csym
, &b
, &c
, case_reg
, 0);
4523 /* if no default, jmp after switch */
4531 if (tok
== TOK_CASE
) {
4538 if (gnu_ext
&& tok
== TOK_DOTS
) {
4542 tcc_warning("empty case range");
4544 /* since a case is like a label, we must skip it with a jmp */
4551 *case_sym
= gtst(1, 0);
4554 *case_sym
= gtst(1, 0);
4558 *case_sym
= gtst(1, *case_sym
);
4563 goto block_after_label
;
4565 if (tok
== TOK_DEFAULT
) {
4571 tcc_error("too many 'default'");
4574 goto block_after_label
;
4576 if (tok
== TOK_GOTO
) {
4578 if (tok
== '*' && gnu_ext
) {
4582 if ((vtop
->type
.t
& VT_BTYPE
) != VT_PTR
)
4585 } else if (tok
>= TOK_UIDENT
) {
4586 s
= label_find(tok
);
4587 /* put forward definition if needed */
4589 s
= label_push(&global_label_stack
, tok
, LABEL_FORWARD
);
4591 if (s
->r
== LABEL_DECLARED
)
4592 s
->r
= LABEL_FORWARD
;
4594 /* label already defined */
4595 if (s
->r
& LABEL_FORWARD
)
4596 s
->jnext
= gjmp(s
->jnext
);
4598 gjmp_addr(s
->jnext
);
4601 expect("label identifier");
4604 } else if (tok
== TOK_ASM1
|| tok
== TOK_ASM2
|| tok
== TOK_ASM3
) {
4612 if (s
->r
== LABEL_DEFINED
)
4613 tcc_error("duplicate label '%s'", get_tok_str(s
->v
, NULL
));
4615 s
->r
= LABEL_DEFINED
;
4617 s
= label_push(&global_label_stack
, b
, LABEL_DEFINED
);
4620 /* we accept this, but it is a mistake */
4623 tcc_warning("deprecated use of label at end of compound statement");
4627 block(bsym
, csym
, case_sym
, def_sym
, case_reg
, is_expr
);
4630 /* expression case */
4645 /* t is the array or struct type. c is the array or struct
4646 address. cur_index/cur_field is the pointer to the current
4647 value. 'size_only' is true if only size info is needed (only used
4649 static void decl_designator(CType
*type
, Section
*sec
, unsigned long c
,
4650 int *cur_index
, Sym
**cur_field
,
4654 int notfirst
, index
, index_last
, align
, l
, nb_elems
, elem_size
;
4660 if (gnu_ext
&& (l
= is_label()) != 0)
4662 while (tok
== '[' || tok
== '.') {
4664 if (!(type
->t
& VT_ARRAY
))
4665 expect("array type");
4668 index
= expr_const();
4669 if (index
< 0 || (s
->c
>= 0 && index
>= s
->c
))
4670 expect("invalid index");
4671 if (tok
== TOK_DOTS
&& gnu_ext
) {
4673 index_last
= expr_const();
4674 if (index_last
< 0 ||
4675 (s
->c
>= 0 && index_last
>= s
->c
) ||
4677 expect("invalid index");
4683 *cur_index
= index_last
;
4684 type
= pointed_type(type
);
4685 elem_size
= type_size(type
, &align
);
4686 c
+= index
* elem_size
;
4687 /* NOTE: we only support ranges for last designator */
4688 nb_elems
= index_last
- index
+ 1;
4689 if (nb_elems
!= 1) {
4698 if ((type
->t
& VT_BTYPE
) != VT_STRUCT
)
4699 expect("struct/union type");
4712 /* XXX: fix this mess by using explicit storage field */
4714 type1
.t
|= (type
->t
& ~VT_TYPE
);
4728 if (type
->t
& VT_ARRAY
) {
4730 type
= pointed_type(type
);
4731 c
+= index
* type_size(type
, &align
);
4735 tcc_error("too many field init");
4736 /* XXX: fix this mess by using explicit storage field */
4738 type1
.t
|= (type
->t
& ~VT_TYPE
);
4743 decl_initializer(type
, sec
, c
, 0, size_only
);
4745 /* XXX: make it more general */
4746 if (!size_only
&& nb_elems
> 1) {
4747 unsigned long c_end
;
4752 tcc_error("range init not supported yet for dynamic storage");
4753 c_end
= c
+ nb_elems
* elem_size
;
4754 if (c_end
> sec
->data_allocated
)
4755 section_realloc(sec
, c_end
);
4756 src
= sec
->data
+ c
;
4758 for(i
= 1; i
< nb_elems
; i
++) {
4760 memcpy(dst
, src
, elem_size
);
4766 #define EXPR_CONST 1
4769 /* store a value or an expression directly in global data or in local array */
4770 static void init_putv(CType
*type
, Section
*sec
, unsigned long c
,
4771 int v
, int expr_type
)
4773 int saved_global_expr
, bt
, bit_pos
, bit_size
;
4775 unsigned long long bit_mask
;
4783 /* compound literals must be allocated globally in this case */
4784 saved_global_expr
= global_expr
;
4787 global_expr
= saved_global_expr
;
4788 /* NOTE: symbols are accepted */
4789 if ((vtop
->r
& (VT_VALMASK
| VT_LVAL
)) != VT_CONST
)
4790 tcc_error("initializer element is not constant");
4798 dtype
.t
&= ~VT_CONSTANT
; /* need to do that to avoid false warning */
4801 /* XXX: not portable */
4802 /* XXX: generate error if incorrect relocation */
4803 gen_assign_cast(&dtype
);
4804 bt
= type
->t
& VT_BTYPE
;
4805 /* we'll write at most 12 bytes */
4806 if (c
+ 12 > sec
->data_allocated
) {
4807 section_realloc(sec
, c
+ 12);
4809 ptr
= sec
->data
+ c
;
4810 /* XXX: make code faster ? */
4811 if (!(type
->t
& VT_BITFIELD
)) {
4816 bit_pos
= (vtop
->type
.t
>> VT_STRUCT_SHIFT
) & 0x3f;
4817 bit_size
= (vtop
->type
.t
>> (VT_STRUCT_SHIFT
+ 6)) & 0x3f;
4818 bit_mask
= (1LL << bit_size
) - 1;
4820 if ((vtop
->r
& VT_SYM
) &&
4826 (bt
== VT_INT
&& bit_size
!= 32)))
4827 tcc_error("initializer element is not computable at load time");
4830 vtop
->c
.i
= (vtop
->c
.i
!= 0);
4832 *(char *)ptr
|= (vtop
->c
.i
& bit_mask
) << bit_pos
;
4835 *(short *)ptr
|= (vtop
->c
.i
& bit_mask
) << bit_pos
;
4838 *(double *)ptr
= vtop
->c
.d
;
4841 *(long double *)ptr
= vtop
->c
.ld
;
4844 *(long long *)ptr
|= (vtop
->c
.ll
& bit_mask
) << bit_pos
;
4847 if (vtop
->r
& VT_SYM
) {
4848 greloc(sec
, vtop
->sym
, c
, R_DATA_PTR
);
4850 *(int *)ptr
|= (vtop
->c
.i
& bit_mask
) << bit_pos
;
4855 vset(&dtype
, VT_LOCAL
|VT_LVAL
, c
);
4862 /* put zeros for variable based init */
4863 static void init_putz(CType
*t
, Section
*sec
, unsigned long c
, int size
)
4866 /* nothing to do because globals are already set to zero */
4868 vpush_global_sym(&func_old_type
, TOK_memset
);
4876 /* 't' contains the type and storage info. 'c' is the offset of the
4877 object in section 'sec'. If 'sec' is NULL, it means stack based
4878 allocation. 'first' is true if array '{' must be read (multi
4879 dimension implicit array init handling). 'size_only' is true if
4880 size only evaluation is wanted (only for arrays). */
4881 static void decl_initializer(CType
*type
, Section
*sec
, unsigned long c
,
4882 int first
, int size_only
)
4884 int index
, array_length
, n
, no_oblock
, nb
, parlevel
, parlevel1
, i
;
4885 int size1
, align1
, expr_type
;
4889 if (type
->t
& VT_VLA
) {
4890 #if defined TCC_TARGET_I386 || defined TCC_TARGET_X86_64
4894 vpush_global_sym(&func_old_type
, TOK_alloca
);
4895 vla_runtime_type_size(type
, &a
);
4900 vsetc(type
, REG_IRET
, &retcval
);
4901 vset(type
, VT_LOCAL
|VT_LVAL
, c
);
4906 tcc_error("variable length arrays unsupported for this target");
4908 } else if (type
->t
& VT_ARRAY
) {
4912 t1
= pointed_type(type
);
4913 size1
= type_size(t1
, &align1
);
4916 if ((first
&& tok
!= TOK_LSTR
&& tok
!= TOK_STR
) ||
4919 tcc_error("character array initializer must be a literal,"
4920 " optionally enclosed in braces");
4925 /* only parse strings here if correct type (otherwise: handle
4926 them as ((w)char *) expressions */
4927 if ((tok
== TOK_LSTR
&&
4928 #ifdef TCC_TARGET_PE
4929 (t1
->t
& VT_BTYPE
) == VT_SHORT
&& (t1
->t
& VT_UNSIGNED
)
4931 (t1
->t
& VT_BTYPE
) == VT_INT
4933 ) || (tok
== TOK_STR
&& (t1
->t
& VT_BTYPE
) == VT_BYTE
)) {
4934 while (tok
== TOK_STR
|| tok
== TOK_LSTR
) {
4939 /* compute maximum number of chars wanted */
4941 cstr_len
= cstr
->size
;
4943 cstr_len
= cstr
->size
/ sizeof(nwchar_t
);
4946 if (n
>= 0 && nb
> (n
- array_length
))
4947 nb
= n
- array_length
;
4950 tcc_warning("initializer-string for array is too long");
4951 /* in order to go faster for common case (char
4952 string in global variable, we handle it
4954 if (sec
&& tok
== TOK_STR
&& size1
== 1) {
4955 memcpy(sec
->data
+ c
+ array_length
, cstr
->data
, nb
);
4959 ch
= ((unsigned char *)cstr
->data
)[i
];
4961 ch
= ((nwchar_t
*)cstr
->data
)[i
];
4962 init_putv(t1
, sec
, c
+ (array_length
+ i
) * size1
,
4970 /* only add trailing zero if enough storage (no
4971 warning in this case since it is standard) */
4972 if (n
< 0 || array_length
< n
) {
4974 init_putv(t1
, sec
, c
+ (array_length
* size1
), 0, EXPR_VAL
);
4980 while (tok
!= '}') {
4981 decl_designator(type
, sec
, c
, &index
, NULL
, size_only
);
4982 if (n
>= 0 && index
>= n
)
4983 tcc_error("index too large");
4984 /* must put zero in holes (note that doing it that way
4985 ensures that it even works with designators) */
4986 if (!size_only
&& array_length
< index
) {
4987 init_putz(t1
, sec
, c
+ array_length
* size1
,
4988 (index
- array_length
) * size1
);
4991 if (index
> array_length
)
4992 array_length
= index
;
4993 /* special test for multi dimensional arrays (may not
4994 be strictly correct if designators are used at the
4996 if (index
>= n
&& no_oblock
)
5005 /* put zeros at the end */
5006 if (!size_only
&& n
>= 0 && array_length
< n
) {
5007 init_putz(t1
, sec
, c
+ array_length
* size1
,
5008 (n
- array_length
) * size1
);
5010 /* patch type size if needed */
5012 s
->c
= array_length
;
5013 } else if ((type
->t
& VT_BTYPE
) == VT_STRUCT
&&
5014 (sec
|| !first
|| tok
== '{')) {
5017 /* NOTE: the previous test is a specific case for automatic
5018 struct/union init */
5019 /* XXX: union needs only one init */
5021 /* XXX: this test is incorrect for local initializers
5022 beginning with ( without {. It would be much more difficult
5023 to do it correctly (ideally, the expression parser should
5024 be used in all cases) */
5030 while (tok
== '(') {
5034 if (!parse_btype(&type1
, &ad1
))
5036 type_decl(&type1
, &ad1
, &n
, TYPE_ABSTRACT
);
5038 if (!is_assignable_types(type
, &type1
))
5039 tcc_error("invalid type for cast");
5044 if (first
|| tok
== '{') {
5053 while (tok
!= '}') {
5054 decl_designator(type
, sec
, c
, NULL
, &f
, size_only
);
5056 if (!size_only
&& array_length
< index
) {
5057 init_putz(type
, sec
, c
+ array_length
,
5058 index
- array_length
);
5060 index
= index
+ type_size(&f
->type
, &align1
);
5061 if (index
> array_length
)
5062 array_length
= index
;
5064 /* gr: skip fields from same union - ugly. */
5066 ///printf("index: %2d %08x -- %2d %08x\n", f->c, f->type.t, f->next->c, f->next->type.t);
5067 /* test for same offset */
5068 if (f
->next
->c
!= f
->c
)
5070 /* if yes, test for bitfield shift */
5071 if ((f
->type
.t
& VT_BITFIELD
) && (f
->next
->type
.t
& VT_BITFIELD
)) {
5072 int bit_pos_1
= (f
->type
.t
>> VT_STRUCT_SHIFT
) & 0x3f;
5073 int bit_pos_2
= (f
->next
->type
.t
>> VT_STRUCT_SHIFT
) & 0x3f;
5074 //printf("bitfield %d %d\n", bit_pos_1, bit_pos_2);
5075 if (bit_pos_1
!= bit_pos_2
)
5082 if (no_oblock
&& f
== NULL
)
5088 /* put zeros at the end */
5089 if (!size_only
&& array_length
< n
) {
5090 init_putz(type
, sec
, c
+ array_length
,
5099 } else if (tok
== '{') {
5101 decl_initializer(type
, sec
, c
, first
, size_only
);
5103 } else if (size_only
) {
5104 /* just skip expression */
5105 parlevel
= parlevel1
= 0;
5106 while ((parlevel
> 0 || parlevel1
> 0 ||
5107 (tok
!= '}' && tok
!= ',')) && tok
!= -1) {
5110 else if (tok
== ')')
5112 else if (tok
== '{')
5114 else if (tok
== '}')
5119 /* currently, we always use constant expression for globals
5120 (may change for scripting case) */
5121 expr_type
= EXPR_CONST
;
5123 expr_type
= EXPR_ANY
;
5124 init_putv(type
, sec
, c
, 0, expr_type
);
5128 /* parse an initializer for type 't' if 'has_init' is non zero, and
5129 allocate space in local or global data space ('r' is either
5130 VT_LOCAL or VT_CONST). If 'v' is non zero, then an associated
5131 variable 'v' with an associated name represented by 'asm_label' of
5132 scope 'scope' is declared before initializers are parsed. If 'v' is
5133 zero, then a reference to the new object is put in the value stack.
5134 If 'has_init' is 2, a special parsing is done to handle string
5136 static void decl_initializer_alloc(CType
*type
, AttributeDef
*ad
, int r
,
5137 int has_init
, int v
, char *asm_label
,
5140 int size
, align
, addr
, data_offset
;
5142 ParseState saved_parse_state
= {0};
5143 TokenString init_str
;
5145 Sym
*flexible_array
;
5147 flexible_array
= NULL
;
5148 if ((type
->t
& VT_BTYPE
) == VT_STRUCT
) {
5151 while (field
&& field
->next
)
5152 field
= field
->next
;
5153 if (field
->type
.t
& VT_ARRAY
&& field
->type
.ref
->c
< 0)
5154 flexible_array
= field
;
5157 size
= type_size(type
, &align
);
5158 /* If unknown size, we must evaluate it before
5159 evaluating initializers because
5160 initializers can generate global data too
5161 (e.g. string pointers or ISOC99 compound
5162 literals). It also simplifies local
5163 initializers handling */
5164 tok_str_new(&init_str
);
5165 if (size
< 0 || (flexible_array
&& has_init
)) {
5167 tcc_error("unknown type size");
5168 /* get all init string */
5169 if (has_init
== 2) {
5170 /* only get strings */
5171 while (tok
== TOK_STR
|| tok
== TOK_LSTR
) {
5172 tok_str_add_tok(&init_str
);
5177 while (level
> 0 || (tok
!= ',' && tok
!= ';')) {
5179 tcc_error("unexpected end of file in initializer");
5180 tok_str_add_tok(&init_str
);
5183 else if (tok
== '}') {
5193 tok_str_add(&init_str
, -1);
5194 tok_str_add(&init_str
, 0);
5197 save_parse_state(&saved_parse_state
);
5199 macro_ptr
= init_str
.str
;
5201 decl_initializer(type
, NULL
, 0, 1, 1);
5202 /* prepare second initializer parsing */
5203 macro_ptr
= init_str
.str
;
5206 /* if still unknown size, error */
5207 size
= type_size(type
, &align
);
5209 tcc_error("unknown type size");
5212 size
+= flexible_array
->type
.ref
->c
* pointed_size(&flexible_array
->type
);
5213 /* take into account specified alignment if bigger */
5215 if (ad
->aligned
> align
)
5216 align
= ad
->aligned
;
5217 } else if (ad
->packed
) {
5220 if ((r
& VT_VALMASK
) == VT_LOCAL
) {
5222 #ifdef CONFIG_TCC_BCHECK
5223 if (tcc_state
->do_bounds_check
&& (type
->t
& VT_ARRAY
)) {
5227 loc
= (loc
- size
) & -align
;
5229 #ifdef CONFIG_TCC_BCHECK
5230 /* handles bounds */
5231 /* XXX: currently, since we do only one pass, we cannot track
5232 '&' operators, so we add only arrays */
5233 if (tcc_state
->do_bounds_check
&& (type
->t
& VT_ARRAY
)) {
5234 unsigned long *bounds_ptr
;
5235 /* add padding between regions */
5237 /* then add local bound info */
5238 bounds_ptr
= section_ptr_add(lbounds_section
, 2 * sizeof(unsigned long));
5239 bounds_ptr
[0] = addr
;
5240 bounds_ptr
[1] = size
;
5244 /* local variable */
5245 sym_push(v
, type
, r
, addr
);
5247 /* push local reference */
5248 vset(type
, r
, addr
);
5254 if (v
&& scope
== VT_CONST
) {
5255 /* see if the symbol was already defined */
5258 if (!is_compatible_types(&sym
->type
, type
))
5259 tcc_error("incompatible types for redefinition of '%s'",
5260 get_tok_str(v
, NULL
));
5261 if (sym
->type
.t
& VT_EXTERN
) {
5262 /* if the variable is extern, it was not allocated */
5263 sym
->type
.t
&= ~VT_EXTERN
;
5264 /* set array size if it was ommited in extern
5266 if ((sym
->type
.t
& VT_ARRAY
) &&
5267 sym
->type
.ref
->c
< 0 &&
5269 sym
->type
.ref
->c
= type
->ref
->c
;
5271 /* we accept several definitions of the same
5272 global variable. this is tricky, because we
5273 must play with the SHN_COMMON type of the symbol */
5274 /* XXX: should check if the variable was already
5275 initialized. It is incorrect to initialized it
5277 /* no init data, we won't add more to the symbol */
5284 /* allocate symbol in corresponding section */
5289 else if (tcc_state
->nocommon
)
5293 data_offset
= sec
->data_offset
;
5294 data_offset
= (data_offset
+ align
- 1) & -align
;
5296 /* very important to increment global pointer at this time
5297 because initializers themselves can create new initializers */
5298 data_offset
+= size
;
5299 #ifdef CONFIG_TCC_BCHECK
5300 /* add padding if bound check */
5301 if (tcc_state
->do_bounds_check
)
5304 sec
->data_offset
= data_offset
;
5305 /* allocate section space to put the data */
5306 if (sec
->sh_type
!= SHT_NOBITS
&&
5307 data_offset
> sec
->data_allocated
)
5308 section_realloc(sec
, data_offset
);
5309 /* align section if needed */
5310 if (align
> sec
->sh_addralign
)
5311 sec
->sh_addralign
= align
;
5313 addr
= 0; /* avoid warning */
5317 if (scope
!= VT_CONST
|| !sym
) {
5318 sym
= sym_push(v
, type
, r
| VT_SYM
, 0);
5319 sym
->asm_label
= asm_label
;
5321 /* update symbol definition */
5323 put_extern_sym(sym
, sec
, addr
, size
);
5326 /* put a common area */
5327 put_extern_sym(sym
, NULL
, align
, size
);
5328 /* XXX: find a nicer way */
5329 esym
= &((ElfW(Sym
) *)symtab_section
->data
)[sym
->c
];
5330 esym
->st_shndx
= SHN_COMMON
;
5335 /* push global reference */
5336 sym
= get_sym_ref(type
, sec
, addr
, size
);
5338 vsetc(type
, VT_CONST
| VT_SYM
, &cval
);
5341 /* patch symbol weakness */
5342 if (type
->t
& VT_WEAK
)
5344 #ifdef CONFIG_TCC_BCHECK
5345 /* handles bounds now because the symbol must be defined
5346 before for the relocation */
5347 if (tcc_state
->do_bounds_check
) {
5348 unsigned long *bounds_ptr
;
5350 greloc(bounds_section
, sym
, bounds_section
->data_offset
, R_DATA_PTR
);
5351 /* then add global bound info */
5352 bounds_ptr
= section_ptr_add(bounds_section
, 2 * sizeof(long));
5353 bounds_ptr
[0] = 0; /* relocated */
5354 bounds_ptr
[1] = size
;
5358 if (has_init
|| (type
->t
& VT_VLA
)) {
5359 decl_initializer(type
, sec
, addr
, 1, 0);
5360 /* restore parse state if needed */
5362 tok_str_free(init_str
.str
);
5363 restore_parse_state(&saved_parse_state
);
5365 /* patch flexible array member size back to -1, */
5366 /* for possible subsequent similar declarations */
5368 flexible_array
->type
.ref
->c
= -1;
5373 static void put_func_debug(Sym
*sym
)
5378 /* XXX: we put here a dummy type */
5379 snprintf(buf
, sizeof(buf
), "%s:%c1",
5380 funcname
, sym
->type
.t
& VT_STATIC
? 'f' : 'F');
5381 put_stabs_r(buf
, N_FUN
, 0, file
->line_num
, 0,
5382 cur_text_section
, sym
->c
);
5383 /* //gr gdb wants a line at the function */
5384 put_stabn(N_SLINE
, 0, file
->line_num
, 0);
5389 /* parse an old style function declaration list */
5390 /* XXX: check multiple parameter */
5391 static void func_decl_list(Sym
*func_sym
)
5398 /* parse each declaration */
5399 while (tok
!= '{' && tok
!= ';' && tok
!= ',' && tok
!= TOK_EOF
&&
5400 tok
!= TOK_ASM1
&& tok
!= TOK_ASM2
&& tok
!= TOK_ASM3
) {
5401 if (!parse_btype(&btype
, &ad
))
5402 expect("declaration list");
5403 if (((btype
.t
& VT_BTYPE
) == VT_ENUM
||
5404 (btype
.t
& VT_BTYPE
) == VT_STRUCT
) &&
5406 /* we accept no variable after */
5410 type_decl(&type
, &ad
, &v
, TYPE_DIRECT
);
5411 /* find parameter in function parameter list */
5414 if ((s
->v
& ~SYM_FIELD
) == v
)
5418 tcc_error("declaration for parameter '%s' but no such parameter",
5419 get_tok_str(v
, NULL
));
5421 /* check that no storage specifier except 'register' was given */
5422 if (type
.t
& VT_STORAGE
)
5423 tcc_error("storage class specified for '%s'", get_tok_str(v
, NULL
));
5424 convert_parameter_type(&type
);
5425 /* we can add the type (NOTE: it could be local to the function) */
5427 /* accept other parameters */
5438 /* parse a function defined by symbol 'sym' and generate its code in
5439 'cur_text_section' */
5440 static void gen_function(Sym
*sym
)
5442 int saved_nocode_wanted
= nocode_wanted
;
5444 ind
= cur_text_section
->data_offset
;
5445 /* NOTE: we patch the symbol size later */
5446 put_extern_sym(sym
, cur_text_section
, ind
, 0);
5447 funcname
= get_tok_str(sym
->v
, NULL
);
5449 /* put debug symbol */
5450 if (tcc_state
->do_debug
)
5451 put_func_debug(sym
);
5452 /* push a dummy symbol to enable local sym storage */
5453 sym_push2(&local_stack
, SYM_FIELD
, 0, 0);
5454 gfunc_prolog(&sym
->type
);
5456 block(NULL
, NULL
, NULL
, NULL
, 0, 0);
5459 cur_text_section
->data_offset
= ind
;
5460 label_pop(&global_label_stack
, NULL
);
5461 sym_pop(&local_stack
, NULL
); /* reset local stack */
5462 /* end of function */
5463 /* patch symbol size */
5464 ((ElfW(Sym
) *)symtab_section
->data
)[sym
->c
].st_size
=
5466 /* patch symbol weakness (this definition overrules any prototype) */
5467 if (sym
->type
.t
& VT_WEAK
)
5469 if (tcc_state
->do_debug
) {
5470 put_stabn(N_FUN
, 0, 0, ind
- func_ind
);
5472 /* It's better to crash than to generate wrong code */
5473 cur_text_section
= NULL
;
5474 funcname
= ""; /* for safety */
5475 func_vt
.t
= VT_VOID
; /* for safety */
5476 ind
= 0; /* for safety */
5477 nocode_wanted
= saved_nocode_wanted
;
5480 ST_FUNC
void gen_inline_functions(void)
5483 int *str
, inline_generated
, i
;
5484 struct InlineFunc
*fn
;
5486 /* iterate while inline function are referenced */
5488 inline_generated
= 0;
5489 for (i
= 0; i
< tcc_state
->nb_inline_fns
; ++i
) {
5490 fn
= tcc_state
->inline_fns
[i
];
5492 if (sym
&& sym
->c
) {
5493 /* the function was used: generate its code and
5494 convert it to a normal function */
5495 str
= fn
->token_str
;
5498 strcpy(file
->filename
, fn
->filename
);
5499 sym
->r
= VT_SYM
| VT_CONST
;
5500 sym
->type
.t
&= ~VT_INLINE
;
5504 cur_text_section
= text_section
;
5506 macro_ptr
= NULL
; /* fail safe */
5508 inline_generated
= 1;
5511 if (!inline_generated
)
5514 for (i
= 0; i
< tcc_state
->nb_inline_fns
; ++i
) {
5515 fn
= tcc_state
->inline_fns
[i
];
5516 str
= fn
->token_str
;
5519 dynarray_reset(&tcc_state
->inline_fns
, &tcc_state
->nb_inline_fns
);
5522 /* 'l' is VT_LOCAL or VT_CONST to define default storage type */
5523 static int decl0(int l
, int is_for_loop_init
)
5531 if (!parse_btype(&btype
, &ad
)) {
5532 if (is_for_loop_init
)
5534 /* skip redundant ';' */
5535 /* XXX: find more elegant solution */
5540 if (l
== VT_CONST
&&
5541 (tok
== TOK_ASM1
|| tok
== TOK_ASM2
|| tok
== TOK_ASM3
)) {
5542 /* global asm block */
5546 /* special test for old K&R protos without explicit int
5547 type. Only accepted when defining global data */
5548 if (l
== VT_LOCAL
|| tok
< TOK_DEFINE
)
5552 if (((btype
.t
& VT_BTYPE
) == VT_ENUM
||
5553 (btype
.t
& VT_BTYPE
) == VT_STRUCT
) &&
5555 /* we accept no variable after */
5559 while (1) { /* iterate thru each declaration */
5560 char *asm_label
; // associated asm label
5562 type_decl(&type
, &ad
, &v
, TYPE_DIRECT
);
5566 type_to_str(buf
, sizeof(buf
), t
, get_tok_str(v
, NULL
));
5567 printf("type = '%s'\n", buf
);
5570 if ((type
.t
& VT_BTYPE
) == VT_FUNC
) {
5571 if ((type
.t
& VT_STATIC
) && (l
== VT_LOCAL
)) {
5572 tcc_error("function without file scope cannot be static");
5574 /* if old style function prototype, we accept a
5577 if (sym
->c
== FUNC_OLD
)
5578 func_decl_list(sym
);
5582 if (gnu_ext
&& (tok
== TOK_ASM1
|| tok
== TOK_ASM2
|| tok
== TOK_ASM3
)) {
5585 asm_label_instr(&astr
);
5586 asm_label
= tcc_strdup(astr
.data
);
5589 /* parse one last attribute list, after asm label */
5590 parse_attribute(&ad
);
5595 #ifdef TCC_TARGET_PE
5597 type
.t
|= VT_IMPORT
;
5599 type
.t
|= VT_EXPORT
;
5603 tcc_error("cannot use local functions");
5604 if ((type
.t
& VT_BTYPE
) != VT_FUNC
)
5605 expect("function definition");
5607 /* reject abstract declarators in function definition */
5609 while ((sym
= sym
->next
) != NULL
)
5610 if (!(sym
->v
& ~SYM_FIELD
))
5611 expect("identifier");
5613 /* XXX: cannot do better now: convert extern line to static inline */
5614 if ((type
.t
& (VT_EXTERN
| VT_INLINE
)) == (VT_EXTERN
| VT_INLINE
))
5615 type
.t
= (type
.t
& ~VT_EXTERN
) | VT_STATIC
;
5619 if ((sym
->type
.t
& VT_BTYPE
) != VT_FUNC
)
5622 r
= sym
->type
.ref
->r
;
5623 /* use func_call from prototype if not defined */
5624 if (FUNC_CALL(r
) != FUNC_CDECL
5625 && FUNC_CALL(type
.ref
->r
) == FUNC_CDECL
)
5626 FUNC_CALL(type
.ref
->r
) = FUNC_CALL(r
);
5628 /* use export from prototype */
5630 FUNC_EXPORT(type
.ref
->r
) = 1;
5632 /* use static from prototype */
5633 if (sym
->type
.t
& VT_STATIC
)
5634 type
.t
= (type
.t
& ~VT_EXTERN
) | VT_STATIC
;
5636 if (!is_compatible_types(&sym
->type
, &type
)) {
5638 tcc_error("incompatible types for redefinition of '%s'",
5639 get_tok_str(v
, NULL
));
5641 /* if symbol is already defined, then put complete type */
5644 /* put function symbol */
5645 sym
= global_identifier_push(v
, type
.t
, 0);
5646 sym
->type
.ref
= type
.ref
;
5649 /* static inline functions are just recorded as a kind
5650 of macro. Their code will be emitted at the end of
5651 the compilation unit only if they are used */
5652 if ((type
.t
& (VT_INLINE
| VT_STATIC
)) ==
5653 (VT_INLINE
| VT_STATIC
)) {
5654 TokenString func_str
;
5656 struct InlineFunc
*fn
;
5657 const char *filename
;
5659 tok_str_new(&func_str
);
5665 tcc_error("unexpected end of file");
5666 tok_str_add_tok(&func_str
);
5671 } else if (t
== '}') {
5673 if (block_level
== 0)
5677 tok_str_add(&func_str
, -1);
5678 tok_str_add(&func_str
, 0);
5679 filename
= file
? file
->filename
: "";
5680 fn
= tcc_malloc(sizeof *fn
+ strlen(filename
));
5681 strcpy(fn
->filename
, filename
);
5683 fn
->token_str
= func_str
.str
;
5684 dynarray_add((void ***)&tcc_state
->inline_fns
, &tcc_state
->nb_inline_fns
, fn
);
5687 /* compute text section */
5688 cur_text_section
= ad
.section
;
5689 if (!cur_text_section
)
5690 cur_text_section
= text_section
;
5691 sym
->r
= VT_SYM
| VT_CONST
;
5696 if (btype
.t
& VT_TYPEDEF
) {
5697 /* save typedefed type */
5698 /* XXX: test storage specifiers ? */
5699 sym
= sym_push(v
, &type
, INT_ATTR(&ad
), 0);
5700 sym
->type
.t
|= VT_TYPEDEF
;
5703 if ((type
.t
& VT_BTYPE
) == VT_FUNC
) {
5704 /* external function definition */
5705 /* specific case for func_call attribute */
5706 type
.ref
->r
= INT_ATTR(&ad
);
5707 } else if (!(type
.t
& VT_ARRAY
)) {
5708 /* not lvalue if array */
5709 r
|= lvalue_type(type
.t
);
5711 has_init
= (tok
== '=');
5712 if (has_init
&& (type
.t
& VT_VLA
))
5713 tcc_error("Variable length array cannot be initialized");
5714 if ((btype
.t
& VT_EXTERN
) || ((type
.t
& VT_BTYPE
) == VT_FUNC
) ||
5715 ((type
.t
& VT_ARRAY
) && (type
.t
& VT_STATIC
) &&
5716 !has_init
&& l
== VT_CONST
&& type
.ref
->c
< 0)) {
5717 /* external variable or function */
5718 /* NOTE: as GCC, uninitialized global static
5719 arrays of null size are considered as
5721 sym
= external_sym(v
, &type
, r
, asm_label
);
5723 if (type
.t
& VT_WEAK
)
5726 if (ad
.alias_target
) {
5731 alias_target
= sym_find(ad
.alias_target
);
5732 if (!alias_target
|| !alias_target
->c
)
5733 tcc_error("unsupported forward __alias__ attribute");
5734 esym
= &((Elf32_Sym
*)symtab_section
->data
)[alias_target
->c
];
5735 tsec
.sh_num
= esym
->st_shndx
;
5736 put_extern_sym2(sym
, &tsec
, esym
->st_value
, esym
->st_size
, 0);
5739 type
.t
|= (btype
.t
& VT_STATIC
); /* Retain "static". */
5740 if (type
.t
& VT_STATIC
)
5746 decl_initializer_alloc(&type
, &ad
, r
, has_init
, v
, asm_label
, l
);
5750 if (is_for_loop_init
)
5763 ST_FUNC
void decl(int l
)