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 ST_FUNC
void test_lvalue(void)
95 if (!(vtop
->r
& VT_LVAL
))
99 /* ------------------------------------------------------------------------- */
100 /* symbol allocator */
101 static Sym
*__sym_malloc(void)
103 Sym
*sym_pool
, *sym
, *last_sym
;
106 sym_pool
= tcc_malloc(SYM_POOL_NB
* sizeof(Sym
));
107 dynarray_add(&sym_pools
, &nb_sym_pools
, sym_pool
);
109 last_sym
= sym_free_first
;
111 for(i
= 0; i
< SYM_POOL_NB
; i
++) {
112 sym
->next
= last_sym
;
116 sym_free_first
= last_sym
;
120 static inline Sym
*sym_malloc(void)
123 sym
= sym_free_first
;
125 sym
= __sym_malloc();
126 sym_free_first
= sym
->next
;
130 ST_INLN
void sym_free(Sym
*sym
)
132 sym
->next
= sym_free_first
;
133 tcc_free(sym
->asm_label
);
134 sym_free_first
= sym
;
137 /* push, without hashing */
138 ST_FUNC Sym
*sym_push2(Sym
**ps
, int v
, int t
, long c
)
157 /* find a symbol and return its associated structure. 's' is the top
158 of the symbol stack */
159 ST_FUNC Sym
*sym_find2(Sym
*s
, int v
)
169 /* structure lookup */
170 ST_INLN Sym
*struct_find(int v
)
173 if ((unsigned)v
>= (unsigned)(tok_ident
- TOK_IDENT
))
175 return table_ident
[v
]->sym_struct
;
178 /* find an identifier */
179 ST_INLN Sym
*sym_find(int v
)
182 if ((unsigned)v
>= (unsigned)(tok_ident
- TOK_IDENT
))
184 return table_ident
[v
]->sym_identifier
;
187 /* push a given symbol on the symbol stack */
188 ST_FUNC Sym
*sym_push(int v
, CType
*type
, int r
, int c
)
197 s
= sym_push2(ps
, v
, type
->t
, c
);
198 s
->type
.ref
= type
->ref
;
200 /* don't record fields or anonymous symbols */
202 if (!(v
& SYM_FIELD
) && (v
& ~SYM_STRUCT
) < SYM_FIRST_ANOM
) {
203 /* record symbol in token array */
204 ts
= table_ident
[(v
& ~SYM_STRUCT
) - TOK_IDENT
];
206 ps
= &ts
->sym_struct
;
208 ps
= &ts
->sym_identifier
;
215 /* push a global identifier */
216 ST_FUNC Sym
*global_identifier_push(int v
, int t
, int c
)
219 s
= sym_push2(&global_stack
, v
, t
, c
);
220 /* don't record anonymous symbol */
221 if (v
< SYM_FIRST_ANOM
) {
222 ps
= &table_ident
[v
- TOK_IDENT
]->sym_identifier
;
223 /* modify the top most local identifier, so that
224 sym_identifier will point to 's' when popped */
226 ps
= &(*ps
)->prev_tok
;
233 /* pop symbols until top reaches 'b' */
234 ST_FUNC
void sym_pop(Sym
**ptop
, Sym
*b
)
244 /* remove symbol in token array */
246 if (!(v
& SYM_FIELD
) && (v
& ~SYM_STRUCT
) < SYM_FIRST_ANOM
) {
247 ts
= table_ident
[(v
& ~SYM_STRUCT
) - TOK_IDENT
];
249 ps
= &ts
->sym_struct
;
251 ps
= &ts
->sym_identifier
;
260 static void weaken_symbol(Sym
*sym
)
262 sym
->type
.t
|= VT_WEAK
;
267 esym
= &((ElfW(Sym
) *)symtab_section
->data
)[sym
->c
];
268 esym_type
= ELFW(ST_TYPE
)(esym
->st_info
);
269 esym
->st_info
= ELFW(ST_INFO
)(STB_WEAK
, esym_type
);
273 /* ------------------------------------------------------------------------- */
275 ST_FUNC
void swap(int *p
, int *q
)
283 static void vsetc(CType
*type
, int r
, CValue
*vc
)
287 if (vtop
>= vstack
+ (VSTACK_SIZE
- 1))
288 error("memory full");
289 /* cannot let cpu flags if other instruction are generated. Also
290 avoid leaving VT_JMP anywhere except on the top of the stack
291 because it would complicate the code generator. */
292 if (vtop
>= vstack
) {
293 v
= vtop
->r
& VT_VALMASK
;
294 if (v
== VT_CMP
|| (v
& ~1) == VT_JMP
)
304 /* push constant of type "type" with useless value */
305 void vpush(CType
*type
)
308 vsetc(type
, VT_CONST
, &cval
);
311 /* push integer constant */
312 ST_FUNC
void vpushi(int v
)
316 vsetc(&int_type
, VT_CONST
, &cval
);
319 /* push long long constant */
320 static void vpushll(long long v
)
327 vsetc(&ctype
, VT_CONST
, &cval
);
330 /* push arbitrary 64bit constant */
331 void vpush64(int ty
, unsigned long long v
)
337 vsetc(&ctype
, VT_CONST
, &cval
);
340 /* Return a static symbol pointing to a section */
341 ST_FUNC Sym
*get_sym_ref(CType
*type
, Section
*sec
, unsigned long offset
, unsigned long size
)
347 sym
= global_identifier_push(v
, type
->t
| VT_STATIC
, 0);
348 sym
->type
.ref
= type
->ref
;
349 sym
->r
= VT_CONST
| VT_SYM
;
350 put_extern_sym(sym
, sec
, offset
, size
);
354 /* push a reference to a section offset by adding a dummy symbol */
355 static void vpush_ref(CType
*type
, Section
*sec
, unsigned long offset
, unsigned long size
)
360 vsetc(type
, VT_CONST
| VT_SYM
, &cval
);
361 vtop
->sym
= get_sym_ref(type
, sec
, offset
, size
);
364 /* define a new external reference to a symbol 'v' of type 'u' */
365 ST_FUNC Sym
*external_global_sym(int v
, CType
*type
, int r
)
371 /* push forward reference */
372 s
= global_identifier_push(v
, type
->t
| VT_EXTERN
, 0);
373 s
->type
.ref
= type
->ref
;
374 s
->r
= r
| VT_CONST
| VT_SYM
;
379 /* define a new external reference to a symbol 'v' with alternate asm
380 name 'asm_label' of type 'u'. 'asm_label' is equal to NULL if there
381 is no alternate name (most cases) */
382 static Sym
*external_sym(int v
, CType
*type
, int r
, char *asm_label
)
388 /* push forward reference */
389 s
= sym_push(v
, type
, r
| VT_CONST
| VT_SYM
, 0);
390 s
->asm_label
= asm_label
;
391 s
->type
.t
|= VT_EXTERN
;
392 } else if (s
->type
.ref
== func_old_type
.ref
) {
393 s
->type
.ref
= type
->ref
;
394 s
->r
= r
| VT_CONST
| VT_SYM
;
395 s
->type
.t
|= VT_EXTERN
;
396 } else if (!is_compatible_types(&s
->type
, type
)) {
397 error("incompatible types for redefinition of '%s'",
398 get_tok_str(v
, NULL
));
403 /* push a reference to global symbol v */
404 ST_FUNC
void vpush_global_sym(CType
*type
, int v
)
409 sym
= external_global_sym(v
, type
, 0);
411 vsetc(type
, VT_CONST
| VT_SYM
, &cval
);
415 ST_FUNC
void vset(CType
*type
, int r
, int v
)
420 vsetc(type
, r
, &cval
);
423 static void vseti(int r
, int v
)
431 ST_FUNC
void vswap(void)
440 ST_FUNC
void vpushv(SValue
*v
)
442 if (vtop
>= vstack
+ (VSTACK_SIZE
- 1))
443 error("memory full");
448 static void vdup(void)
453 /* save r to the memory stack, and mark it as being free */
454 ST_FUNC
void save_reg(int r
)
456 int l
, saved
, size
, align
;
460 /* modify all stack values */
463 for(p
=vstack
;p
<=vtop
;p
++) {
464 if ((p
->r
& VT_VALMASK
) == r
||
465 ((p
->type
.t
& VT_BTYPE
) == VT_LLONG
&& (p
->r2
& VT_VALMASK
) == r
)) {
466 /* must save value on stack if not already done */
468 /* NOTE: must reload 'r' because r might be equal to r2 */
469 r
= p
->r
& VT_VALMASK
;
470 /* store register in the stack */
472 if ((p
->r
& VT_LVAL
) ||
473 (!is_float(type
->t
) && (type
->t
& VT_BTYPE
) != VT_LLONG
))
474 #ifdef TCC_TARGET_X86_64
475 type
= &char_pointer_type
;
479 size
= type_size(type
, &align
);
480 loc
= (loc
- size
) & -align
;
482 sv
.r
= VT_LOCAL
| VT_LVAL
;
485 #if defined(TCC_TARGET_I386) || defined(TCC_TARGET_X86_64)
486 /* x86 specific: need to pop fp register ST0 if saved */
488 o(0xd8dd); /* fstp %st(0) */
491 #ifndef TCC_TARGET_X86_64
492 /* special long long case */
493 if ((type
->t
& VT_BTYPE
) == VT_LLONG
) {
501 /* mark that stack entry as being saved on the stack */
502 if (p
->r
& VT_LVAL
) {
503 /* also clear the bounded flag because the
504 relocation address of the function was stored in
506 p
->r
= (p
->r
& ~(VT_VALMASK
| VT_BOUNDED
)) | VT_LLOCAL
;
508 p
->r
= lvalue_type(p
->type
.t
) | VT_LOCAL
;
516 #ifdef TCC_TARGET_ARM
517 /* find a register of class 'rc2' with at most one reference on stack.
518 * If none, call get_reg(rc) */
519 ST_FUNC
int get_reg_ex(int rc
, int rc2
)
524 for(r
=0;r
<NB_REGS
;r
++) {
525 if (reg_classes
[r
] & rc2
) {
528 for(p
= vstack
; p
<= vtop
; p
++) {
529 if ((p
->r
& VT_VALMASK
) == r
||
530 (p
->r2
& VT_VALMASK
) == r
)
541 /* find a free register of class 'rc'. If none, save one register */
542 ST_FUNC
int get_reg(int rc
)
547 /* find a free register */
548 for(r
=0;r
<NB_REGS
;r
++) {
549 if (reg_classes
[r
] & rc
) {
550 for(p
=vstack
;p
<=vtop
;p
++) {
551 if ((p
->r
& VT_VALMASK
) == r
||
552 (p
->r2
& VT_VALMASK
) == r
)
560 /* no register left : free the first one on the stack (VERY
561 IMPORTANT to start from the bottom to ensure that we don't
562 spill registers used in gen_opi()) */
563 for(p
=vstack
;p
<=vtop
;p
++) {
564 r
= p
->r
& VT_VALMASK
;
565 if (r
< VT_CONST
&& (reg_classes
[r
] & rc
))
567 /* also look at second register (if long long) */
568 r
= p
->r2
& VT_VALMASK
;
569 if (r
< VT_CONST
&& (reg_classes
[r
] & rc
)) {
575 /* Should never comes here */
579 /* save registers up to (vtop - n) stack entry */
580 ST_FUNC
void save_regs(int n
)
585 for(p
= vstack
;p
<= p1
; p
++) {
586 r
= p
->r
& VT_VALMASK
;
593 /* move register 's' to 'r', and flush previous value of r to memory
595 static void move_reg(int r
, int s
)
608 /* get address of vtop (vtop MUST BE an lvalue) */
609 static void gaddrof(void)
611 if (vtop
->r
& VT_REF
)
614 /* tricky: if saved lvalue, then we can go back to lvalue */
615 if ((vtop
->r
& VT_VALMASK
) == VT_LLOCAL
)
616 vtop
->r
= (vtop
->r
& ~(VT_VALMASK
| VT_LVAL_TYPE
)) | VT_LOCAL
| VT_LVAL
;
621 #ifdef CONFIG_TCC_BCHECK
622 /* generate lvalue bound code */
623 static void gbound(void)
628 vtop
->r
&= ~VT_MUSTBOUND
;
629 /* if lvalue, then use checking code before dereferencing */
630 if (vtop
->r
& VT_LVAL
) {
631 /* if not VT_BOUNDED value, then make one */
632 if (!(vtop
->r
& VT_BOUNDED
)) {
633 lval_type
= vtop
->r
& (VT_LVAL_TYPE
| VT_LVAL
);
634 /* must save type because we must set it to int to get pointer */
636 vtop
->type
.t
= VT_INT
;
639 gen_bounded_ptr_add();
640 vtop
->r
|= lval_type
;
643 /* then check for dereferencing */
644 gen_bounded_ptr_deref();
649 /* store vtop a register belonging to class 'rc'. lvalues are
650 converted to values. Cannot be used if cannot be converted to
651 register value (such as structures). */
652 ST_FUNC
int gv(int rc
)
654 int r
, bit_pos
, bit_size
, size
, align
, i
;
655 #ifndef TCC_TARGET_X86_64
659 /* NOTE: get_reg can modify vstack[] */
660 if (vtop
->type
.t
& VT_BITFIELD
) {
663 bit_pos
= (vtop
->type
.t
>> VT_STRUCT_SHIFT
) & 0x3f;
664 bit_size
= (vtop
->type
.t
>> (VT_STRUCT_SHIFT
+ 6)) & 0x3f;
665 /* remove bit field info to avoid loops */
666 vtop
->type
.t
&= ~(VT_BITFIELD
| (-1 << VT_STRUCT_SHIFT
));
667 /* cast to int to propagate signedness in following ops */
668 if ((vtop
->type
.t
& VT_BTYPE
) == VT_LLONG
) {
673 if((vtop
->type
.t
& VT_UNSIGNED
) ||
674 (vtop
->type
.t
& VT_BTYPE
) == VT_BOOL
)
675 type
.t
|= VT_UNSIGNED
;
677 /* generate shifts */
678 vpushi(bits
- (bit_pos
+ bit_size
));
680 vpushi(bits
- bit_size
);
681 /* NOTE: transformed to SHR if unsigned */
685 if (is_float(vtop
->type
.t
) &&
686 (vtop
->r
& (VT_VALMASK
| VT_LVAL
)) == VT_CONST
) {
689 unsigned long offset
;
690 #if defined(TCC_TARGET_ARM) && !defined(TCC_ARM_VFP)
694 /* XXX: unify with initializers handling ? */
695 /* CPUs usually cannot use float constants, so we store them
696 generically in data segment */
697 size
= type_size(&vtop
->type
, &align
);
698 offset
= (data_section
->data_offset
+ align
- 1) & -align
;
699 data_section
->data_offset
= offset
;
700 /* XXX: not portable yet */
701 #if defined(__i386__) || defined(__x86_64__)
702 /* Zero pad x87 tenbyte long doubles */
703 if (size
== LDOUBLE_SIZE
)
704 vtop
->c
.tab
[2] &= 0xffff;
706 ptr
= section_ptr_add(data_section
, size
);
708 #if defined(TCC_TARGET_ARM) && !defined(TCC_ARM_VFP)
712 ptr
[i
] = vtop
->c
.tab
[size
-1-i
];
716 ptr
[i
] = vtop
->c
.tab
[i
];
717 sym
= get_sym_ref(&vtop
->type
, data_section
, offset
, size
<< 2);
718 vtop
->r
|= VT_LVAL
| VT_SYM
;
722 #ifdef CONFIG_TCC_BCHECK
723 if (vtop
->r
& VT_MUSTBOUND
)
727 r
= vtop
->r
& VT_VALMASK
;
728 #ifndef TCC_TARGET_X86_64
733 /* need to reload if:
735 - lvalue (need to dereference pointer)
736 - already a register, but not in the right class */
738 || (vtop
->r
& VT_LVAL
)
739 || !(reg_classes
[r
] & rc
)
740 #ifndef TCC_TARGET_X86_64
741 || ((vtop
->type
.t
& VT_BTYPE
) == VT_LLONG
&& !(reg_classes
[vtop
->r2
] & rc2
))
746 #ifndef TCC_TARGET_X86_64
747 if ((vtop
->type
.t
& VT_BTYPE
) == VT_LLONG
) {
749 unsigned long long ll
;
750 /* two register type load : expand to two words
752 if ((vtop
->r
& (VT_VALMASK
| VT_LVAL
)) == VT_CONST
) {
755 vtop
->c
.ui
= ll
; /* first word */
757 vtop
->r
= r
; /* save register value */
758 vpushi(ll
>> 32); /* second word */
759 } else if (r
>= VT_CONST
|| /* XXX: test to VT_CONST incorrect ? */
760 (vtop
->r
& VT_LVAL
)) {
761 /* We do not want to modifier the long long
762 pointer here, so the safest (and less
763 efficient) is to save all the other registers
764 in the stack. XXX: totally inefficient. */
766 /* load from memory */
769 vtop
[-1].r
= r
; /* save register value */
770 /* increment pointer to get second word */
771 vtop
->type
.t
= VT_INT
;
780 vtop
[-1].r
= r
; /* save register value */
781 vtop
->r
= vtop
[-1].r2
;
783 /* allocate second register */
787 /* write second register */
791 if ((vtop
->r
& VT_LVAL
) && !is_float(vtop
->type
.t
)) {
793 /* lvalue of scalar type : need to use lvalue type
794 because of possible cast */
797 /* compute memory access type */
798 if (vtop
->r
& VT_LVAL_BYTE
)
800 else if (vtop
->r
& VT_LVAL_SHORT
)
802 if (vtop
->r
& VT_LVAL_UNSIGNED
)
806 /* restore wanted type */
809 /* one register type load */
814 #ifdef TCC_TARGET_C67
815 /* uses register pairs for doubles */
816 if ((vtop
->type
.t
& VT_BTYPE
) == VT_DOUBLE
)
823 /* generate vtop[-1] and vtop[0] in resp. classes rc1 and rc2 */
824 ST_FUNC
void gv2(int rc1
, int rc2
)
828 /* generate more generic register first. But VT_JMP or VT_CMP
829 values must be generated first in all cases to avoid possible
831 v
= vtop
[0].r
& VT_VALMASK
;
832 if (v
!= VT_CMP
&& (v
& ~1) != VT_JMP
&& rc1
<= rc2
) {
837 /* test if reload is needed for first register */
838 if ((vtop
[-1].r
& VT_VALMASK
) >= VT_CONST
) {
848 /* test if reload is needed for first register */
849 if ((vtop
[0].r
& VT_VALMASK
) >= VT_CONST
) {
855 /* wrapper around RC_FRET to return a register by type */
856 static int rc_fret(int t
)
858 #ifdef TCC_TARGET_X86_64
859 if (t
== VT_LDOUBLE
) {
866 /* wrapper around REG_FRET to return a register by type */
867 static int reg_fret(int t
)
869 #ifdef TCC_TARGET_X86_64
870 if (t
== VT_LDOUBLE
) {
877 /* expand long long on stack in two int registers */
878 static void lexpand(void)
882 u
= vtop
->type
.t
& VT_UNSIGNED
;
885 vtop
[0].r
= vtop
[-1].r2
;
886 vtop
[0].r2
= VT_CONST
;
887 vtop
[-1].r2
= VT_CONST
;
888 vtop
[0].type
.t
= VT_INT
| u
;
889 vtop
[-1].type
.t
= VT_INT
| u
;
892 #ifdef TCC_TARGET_ARM
893 /* expand long long on stack */
894 ST_FUNC
void lexpand_nr(void)
898 u
= vtop
->type
.t
& VT_UNSIGNED
;
901 vtop
->type
.t
= VT_INT
| u
;
902 v
=vtop
[-1].r
& (VT_VALMASK
| VT_LVAL
);
904 vtop
[-1].c
.ui
= vtop
->c
.ull
;
905 vtop
->c
.ui
= vtop
->c
.ull
>> 32;
907 } else if (v
== (VT_LVAL
|VT_CONST
) || v
== (VT_LVAL
|VT_LOCAL
)) {
909 vtop
->r
= vtop
[-1].r
;
910 } else if (v
> VT_CONST
) {
914 vtop
->r
= vtop
[-1].r2
;
915 vtop
[-1].r2
= VT_CONST
;
916 vtop
[-1].type
.t
= VT_INT
| u
;
920 /* build a long long from two ints */
921 static void lbuild(int t
)
924 vtop
[-1].r2
= vtop
[0].r
;
929 /* rotate n first stack elements to the bottom
930 I1 ... In -> I2 ... In I1 [top is right]
932 static void vrotb(int n
)
943 /* rotate n first stack elements to the top
944 I1 ... In -> In I1 ... I(n-1) [top is right]
946 ST_FUNC
void vrott(int n
)
952 for(i
= 0;i
< n
- 1; i
++)
953 vtop
[-i
] = vtop
[-i
- 1];
957 #ifdef TCC_TARGET_ARM
958 /* like vrott but in other direction
959 In ... I1 -> I(n-1) ... I1 In [top is right]
961 ST_FUNC
void vnrott(int n
)
967 for(i
= n
- 1; i
> 0; i
--)
968 vtop
[-i
] = vtop
[-i
+ 1];
973 /* pop stack value */
974 ST_FUNC
void vpop(void)
977 v
= vtop
->r
& VT_VALMASK
;
978 #if defined(TCC_TARGET_I386) || defined(TCC_TARGET_X86_64)
979 /* for x86, we need to pop the FP stack */
980 if (v
== TREG_ST0
&& !nocode_wanted
) {
981 o(0xd8dd); /* fstp %st(0) */
984 if (v
== VT_JMP
|| v
== VT_JMPI
) {
985 /* need to put correct jump if && or || without test */
991 /* convert stack entry to register and duplicate its value in another
993 static void gv_dup(void)
999 if ((t
& VT_BTYPE
) == VT_LLONG
) {
1006 /* stack: H L L1 H1 */
1014 /* duplicate value */
1019 #ifdef TCC_TARGET_X86_64
1020 if ((t
& VT_BTYPE
) == VT_LDOUBLE
) {
1030 load(r1
, &sv
); /* move r to r1 */
1032 /* duplicates value */
1038 #ifndef TCC_TARGET_X86_64
1039 /* generate CPU independent (unsigned) long long operations */
1040 static void gen_opl(int op
)
1042 int t
, a
, b
, op1
, c
, i
;
1044 unsigned short reg_iret
= REG_IRET
;
1045 unsigned short reg_lret
= REG_LRET
;
1051 func
= TOK___divdi3
;
1054 func
= TOK___udivdi3
;
1057 func
= TOK___moddi3
;
1060 func
= TOK___umoddi3
;
1067 /* call generic long long function */
1068 vpush_global_sym(&func_old_type
, func
);
1073 vtop
->r2
= reg_lret
;
1086 /* stack: L1 H1 L2 H2 */
1091 vtop
[-2] = vtop
[-3];
1094 /* stack: H1 H2 L1 L2 */
1100 /* stack: H1 H2 L1 L2 ML MH */
1103 /* stack: ML MH H1 H2 L1 L2 */
1107 /* stack: ML MH H1 L2 H2 L1 */
1112 /* stack: ML MH M1 M2 */
1115 } else if (op
== '+' || op
== '-') {
1116 /* XXX: add non carry method too (for MIPS or alpha) */
1122 /* stack: H1 H2 (L1 op L2) */
1125 gen_op(op1
+ 1); /* TOK_xxxC2 */
1128 /* stack: H1 H2 (L1 op L2) */
1131 /* stack: (L1 op L2) H1 H2 */
1133 /* stack: (L1 op L2) (H1 op H2) */
1141 if ((vtop
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) == VT_CONST
) {
1142 t
= vtop
[-1].type
.t
;
1146 /* stack: L H shift */
1148 /* constant: simpler */
1149 /* NOTE: all comments are for SHL. the other cases are
1150 done by swaping words */
1161 if (op
!= TOK_SAR
) {
1194 /* XXX: should provide a faster fallback on x86 ? */
1197 func
= TOK___ashrdi3
;
1200 func
= TOK___lshrdi3
;
1203 func
= TOK___ashldi3
;
1209 /* compare operations */
1215 /* stack: L1 H1 L2 H2 */
1217 vtop
[-1] = vtop
[-2];
1219 /* stack: L1 L2 H1 H2 */
1222 /* when values are equal, we need to compare low words. since
1223 the jump is inverted, we invert the test too. */
1226 else if (op1
== TOK_GT
)
1228 else if (op1
== TOK_ULT
)
1230 else if (op1
== TOK_UGT
)
1235 if (op1
!= TOK_NE
) {
1239 /* generate non equal test */
1240 /* XXX: NOT PORTABLE yet */
1244 #if defined(TCC_TARGET_I386)
1245 b
= psym(0x850f, 0);
1246 #elif defined(TCC_TARGET_ARM)
1248 o(0x1A000000 | encbranch(ind
, 0, 1));
1249 #elif defined(TCC_TARGET_C67)
1250 error("not implemented");
1252 #error not supported
1256 /* compare low. Always unsigned */
1260 else if (op1
== TOK_LE
)
1262 else if (op1
== TOK_GT
)
1264 else if (op1
== TOK_GE
)
1275 /* handle integer constant optimizations and various machine
1277 static void gen_opic(int op
)
1279 int c1
, c2
, t1
, t2
, n
;
1282 typedef unsigned long long U
;
1286 t1
= v1
->type
.t
& VT_BTYPE
;
1287 t2
= v2
->type
.t
& VT_BTYPE
;
1291 else if (v1
->type
.t
& VT_UNSIGNED
)
1298 else if (v2
->type
.t
& VT_UNSIGNED
)
1303 /* currently, we cannot do computations with forward symbols */
1304 c1
= (v1
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) == VT_CONST
;
1305 c2
= (v2
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) == VT_CONST
;
1308 case '+': l1
+= l2
; break;
1309 case '-': l1
-= l2
; break;
1310 case '&': l1
&= l2
; break;
1311 case '^': l1
^= l2
; break;
1312 case '|': l1
|= l2
; break;
1313 case '*': l1
*= l2
; break;
1320 /* if division by zero, generate explicit division */
1323 error("division by zero in constant");
1327 default: l1
/= l2
; break;
1328 case '%': l1
%= l2
; break;
1329 case TOK_UDIV
: l1
= (U
)l1
/ l2
; break;
1330 case TOK_UMOD
: l1
= (U
)l1
% l2
; break;
1333 case TOK_SHL
: l1
<<= l2
; break;
1334 case TOK_SHR
: l1
= (U
)l1
>> l2
; break;
1335 case TOK_SAR
: l1
>>= l2
; break;
1337 case TOK_ULT
: l1
= (U
)l1
< (U
)l2
; break;
1338 case TOK_UGE
: l1
= (U
)l1
>= (U
)l2
; break;
1339 case TOK_EQ
: l1
= l1
== l2
; break;
1340 case TOK_NE
: l1
= l1
!= l2
; break;
1341 case TOK_ULE
: l1
= (U
)l1
<= (U
)l2
; break;
1342 case TOK_UGT
: l1
= (U
)l1
> (U
)l2
; break;
1343 case TOK_LT
: l1
= l1
< l2
; break;
1344 case TOK_GE
: l1
= l1
>= l2
; break;
1345 case TOK_LE
: l1
= l1
<= l2
; break;
1346 case TOK_GT
: l1
= l1
> l2
; break;
1348 case TOK_LAND
: l1
= l1
&& l2
; break;
1349 case TOK_LOR
: l1
= l1
|| l2
; break;
1356 /* if commutative ops, put c2 as constant */
1357 if (c1
&& (op
== '+' || op
== '&' || op
== '^' ||
1358 op
== '|' || op
== '*')) {
1360 c2
= c1
; //c = c1, c1 = c2, c2 = c;
1361 l2
= l1
; //l = l1, l1 = l2, l2 = l;
1363 /* Filter out NOP operations like x*1, x-0, x&-1... */
1364 if (c2
&& (((op
== '*' || op
== '/' || op
== TOK_UDIV
||
1367 ((op
== '+' || op
== '-' || op
== '|' || op
== '^' ||
1368 op
== TOK_SHL
|| op
== TOK_SHR
|| op
== TOK_SAR
) &&
1374 } else if (c2
&& (op
== '*' || op
== TOK_PDIV
|| op
== TOK_UDIV
)) {
1375 /* try to use shifts instead of muls or divs */
1376 if (l2
> 0 && (l2
& (l2
- 1)) == 0) {
1385 else if (op
== TOK_PDIV
)
1391 } else if (c2
&& (op
== '+' || op
== '-') &&
1392 (((vtop
[-1].r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) == (VT_CONST
| VT_SYM
))
1393 || (vtop
[-1].r
& (VT_VALMASK
| VT_LVAL
)) == VT_LOCAL
)) {
1394 /* symbol + constant case */
1401 if (!nocode_wanted
) {
1402 /* call low level op generator */
1403 if (t1
== VT_LLONG
|| t2
== VT_LLONG
)
1414 /* generate a floating point operation with constant propagation */
1415 static void gen_opif(int op
)
1423 /* currently, we cannot do computations with forward symbols */
1424 c1
= (v1
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) == VT_CONST
;
1425 c2
= (v2
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) == VT_CONST
;
1427 if (v1
->type
.t
== VT_FLOAT
) {
1430 } else if (v1
->type
.t
== VT_DOUBLE
) {
1438 /* NOTE: we only do constant propagation if finite number (not
1439 NaN or infinity) (ANSI spec) */
1440 if (!ieee_finite(f1
) || !ieee_finite(f2
))
1444 case '+': f1
+= f2
; break;
1445 case '-': f1
-= f2
; break;
1446 case '*': f1
*= f2
; break;
1450 error("division by zero in constant");
1455 /* XXX: also handles tests ? */
1459 /* XXX: overflow test ? */
1460 if (v1
->type
.t
== VT_FLOAT
) {
1462 } else if (v1
->type
.t
== VT_DOUBLE
) {
1470 if (!nocode_wanted
) {
1478 static int pointed_size(CType
*type
)
1481 return type_size(pointed_type(type
), &align
);
1484 static void vla_runtime_pointed_size(CType
*type
)
1487 vla_runtime_type_size(pointed_type(type
), &align
);
1490 static inline int is_null_pointer(SValue
*p
)
1492 if ((p
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) != VT_CONST
)
1494 return ((p
->type
.t
& VT_BTYPE
) == VT_INT
&& p
->c
.i
== 0) ||
1495 ((p
->type
.t
& VT_BTYPE
) == VT_LLONG
&& p
->c
.ll
== 0);
1498 static inline int is_integer_btype(int bt
)
1500 return (bt
== VT_BYTE
|| bt
== VT_SHORT
||
1501 bt
== VT_INT
|| bt
== VT_LLONG
);
1504 /* check types for comparison or substraction of pointers */
1505 static void check_comparison_pointer_types(SValue
*p1
, SValue
*p2
, int op
)
1507 CType
*type1
, *type2
, tmp_type1
, tmp_type2
;
1510 /* null pointers are accepted for all comparisons as gcc */
1511 if (is_null_pointer(p1
) || is_null_pointer(p2
))
1515 bt1
= type1
->t
& VT_BTYPE
;
1516 bt2
= type2
->t
& VT_BTYPE
;
1517 /* accept comparison between pointer and integer with a warning */
1518 if ((is_integer_btype(bt1
) || is_integer_btype(bt2
)) && op
!= '-') {
1519 if (op
!= TOK_LOR
&& op
!= TOK_LAND
)
1520 warning("comparison between pointer and integer");
1524 /* both must be pointers or implicit function pointers */
1525 if (bt1
== VT_PTR
) {
1526 type1
= pointed_type(type1
);
1527 } else if (bt1
!= VT_FUNC
)
1528 goto invalid_operands
;
1530 if (bt2
== VT_PTR
) {
1531 type2
= pointed_type(type2
);
1532 } else if (bt2
!= VT_FUNC
) {
1534 error("invalid operands to binary %s", get_tok_str(op
, NULL
));
1536 if ((type1
->t
& VT_BTYPE
) == VT_VOID
||
1537 (type2
->t
& VT_BTYPE
) == VT_VOID
)
1541 tmp_type1
.t
&= ~(VT_UNSIGNED
| VT_CONSTANT
| VT_VOLATILE
);
1542 tmp_type2
.t
&= ~(VT_UNSIGNED
| VT_CONSTANT
| VT_VOLATILE
);
1543 if (!is_compatible_types(&tmp_type1
, &tmp_type2
)) {
1544 /* gcc-like error if '-' is used */
1546 goto invalid_operands
;
1548 warning("comparison of distinct pointer types lacks a cast");
1552 /* generic gen_op: handles types problems */
1553 ST_FUNC
void gen_op(int op
)
1555 int u
, t1
, t2
, bt1
, bt2
, t
;
1558 t1
= vtop
[-1].type
.t
;
1559 t2
= vtop
[0].type
.t
;
1560 bt1
= t1
& VT_BTYPE
;
1561 bt2
= t2
& VT_BTYPE
;
1563 if (bt1
== VT_PTR
|| bt2
== VT_PTR
) {
1564 /* at least one operand is a pointer */
1565 /* relationnal op: must be both pointers */
1566 if (op
>= TOK_ULT
&& op
<= TOK_LOR
) {
1567 check_comparison_pointer_types(vtop
- 1, vtop
, op
);
1568 /* pointers are handled are unsigned */
1569 #ifdef TCC_TARGET_X86_64
1570 t
= VT_LLONG
| VT_UNSIGNED
;
1572 t
= VT_INT
| VT_UNSIGNED
;
1576 /* if both pointers, then it must be the '-' op */
1577 if (bt1
== VT_PTR
&& bt2
== VT_PTR
) {
1579 error("cannot use pointers here");
1580 check_comparison_pointer_types(vtop
- 1, vtop
, op
);
1581 /* XXX: check that types are compatible */
1582 if (vtop
[-1].type
.t
& VT_VLA
) {
1583 vla_runtime_pointed_size(&vtop
[-1].type
);
1585 vpushi(pointed_size(&vtop
[-1].type
));
1589 /* set to integer type */
1590 #ifdef TCC_TARGET_X86_64
1591 vtop
->type
.t
= VT_LLONG
;
1593 vtop
->type
.t
= VT_INT
;
1598 /* exactly one pointer : must be '+' or '-'. */
1599 if (op
!= '-' && op
!= '+')
1600 error("cannot use pointers here");
1601 /* Put pointer as first operand */
1602 if (bt2
== VT_PTR
) {
1606 type1
= vtop
[-1].type
;
1607 type1
.t
&= ~VT_ARRAY
;
1608 if (vtop
[-1].type
.t
& VT_VLA
)
1609 vla_runtime_pointed_size(&vtop
[-1].type
);
1611 u
= pointed_size(&vtop
[-1].type
);
1613 error("unknown array element size");
1614 #ifdef TCC_TARGET_X86_64
1617 /* XXX: cast to int ? (long long case) */
1622 #ifdef CONFIG_TCC_BCHECK
1623 /* if evaluating constant expression, no code should be
1624 generated, so no bound check */
1625 if (tcc_state
->do_bounds_check
&& !const_wanted
) {
1626 /* if bounded pointers, we generate a special code to
1633 gen_bounded_ptr_add();
1639 /* put again type if gen_opic() swaped operands */
1642 } else if (is_float(bt1
) || is_float(bt2
)) {
1643 /* compute bigger type and do implicit casts */
1644 if (bt1
== VT_LDOUBLE
|| bt2
== VT_LDOUBLE
) {
1646 } else if (bt1
== VT_DOUBLE
|| bt2
== VT_DOUBLE
) {
1651 /* floats can only be used for a few operations */
1652 if (op
!= '+' && op
!= '-' && op
!= '*' && op
!= '/' &&
1653 (op
< TOK_ULT
|| op
> TOK_GT
))
1654 error("invalid operands for binary operation");
1656 } else if (bt1
== VT_LLONG
|| bt2
== VT_LLONG
) {
1657 /* cast to biggest op */
1659 /* convert to unsigned if it does not fit in a long long */
1660 if ((t1
& (VT_BTYPE
| VT_UNSIGNED
)) == (VT_LLONG
| VT_UNSIGNED
) ||
1661 (t2
& (VT_BTYPE
| VT_UNSIGNED
)) == (VT_LLONG
| VT_UNSIGNED
))
1665 /* integer operations */
1667 /* convert to unsigned if it does not fit in an integer */
1668 if ((t1
& (VT_BTYPE
| VT_UNSIGNED
)) == (VT_INT
| VT_UNSIGNED
) ||
1669 (t2
& (VT_BTYPE
| VT_UNSIGNED
)) == (VT_INT
| VT_UNSIGNED
))
1672 /* XXX: currently, some unsigned operations are explicit, so
1673 we modify them here */
1674 if (t
& VT_UNSIGNED
) {
1681 else if (op
== TOK_LT
)
1683 else if (op
== TOK_GT
)
1685 else if (op
== TOK_LE
)
1687 else if (op
== TOK_GE
)
1694 /* special case for shifts and long long: we keep the shift as
1696 if (op
== TOK_SHR
|| op
== TOK_SAR
|| op
== TOK_SHL
)
1703 if (op
>= TOK_ULT
&& op
<= TOK_GT
) {
1704 /* relationnal op: the result is an int */
1705 vtop
->type
.t
= VT_INT
;
1712 #ifndef TCC_TARGET_ARM
1713 /* generic itof for unsigned long long case */
1714 static void gen_cvt_itof1(int t
)
1716 if ((vtop
->type
.t
& (VT_BTYPE
| VT_UNSIGNED
)) ==
1717 (VT_LLONG
| VT_UNSIGNED
)) {
1720 vpush_global_sym(&func_old_type
, TOK___floatundisf
);
1721 #if LDOUBLE_SIZE != 8
1722 else if (t
== VT_LDOUBLE
)
1723 vpush_global_sym(&func_old_type
, TOK___floatundixf
);
1726 vpush_global_sym(&func_old_type
, TOK___floatundidf
);
1730 vtop
->r
= reg_fret(t
);
1737 /* generic ftoi for unsigned long long case */
1738 static void gen_cvt_ftoi1(int t
)
1742 if (t
== (VT_LLONG
| VT_UNSIGNED
)) {
1743 /* not handled natively */
1744 st
= vtop
->type
.t
& VT_BTYPE
;
1746 vpush_global_sym(&func_old_type
, TOK___fixunssfdi
);
1747 #if LDOUBLE_SIZE != 8
1748 else if (st
== VT_LDOUBLE
)
1749 vpush_global_sym(&func_old_type
, TOK___fixunsxfdi
);
1752 vpush_global_sym(&func_old_type
, TOK___fixunsdfdi
);
1757 vtop
->r2
= REG_LRET
;
1763 /* force char or short cast */
1764 static void force_charshort_cast(int t
)
1768 /* XXX: add optimization if lvalue : just change type and offset */
1773 if (t
& VT_UNSIGNED
) {
1774 vpushi((1 << bits
) - 1);
1780 /* result must be signed or the SAR is converted to an SHL
1781 This was not the case when "t" was a signed short
1782 and the last value on the stack was an unsigned int */
1783 vtop
->type
.t
&= ~VT_UNSIGNED
;
1789 /* cast 'vtop' to 'type'. Casting to bitfields is forbidden. */
1790 static void gen_cast(CType
*type
)
1792 int sbt
, dbt
, sf
, df
, c
, p
;
1794 /* special delayed cast for char/short */
1795 /* XXX: in some cases (multiple cascaded casts), it may still
1797 if (vtop
->r
& VT_MUSTCAST
) {
1798 vtop
->r
&= ~VT_MUSTCAST
;
1799 force_charshort_cast(vtop
->type
.t
);
1802 /* bitfields first get cast to ints */
1803 if (vtop
->type
.t
& VT_BITFIELD
) {
1807 dbt
= type
->t
& (VT_BTYPE
| VT_UNSIGNED
);
1808 sbt
= vtop
->type
.t
& (VT_BTYPE
| VT_UNSIGNED
);
1813 c
= (vtop
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) == VT_CONST
;
1814 p
= (vtop
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) == (VT_CONST
| VT_SYM
);
1816 /* constant case: we can do it now */
1817 /* XXX: in ISOC, cannot do it if error in convert */
1818 if (sbt
== VT_FLOAT
)
1819 vtop
->c
.ld
= vtop
->c
.f
;
1820 else if (sbt
== VT_DOUBLE
)
1821 vtop
->c
.ld
= vtop
->c
.d
;
1824 if ((sbt
& VT_BTYPE
) == VT_LLONG
) {
1825 if (sbt
& VT_UNSIGNED
)
1826 vtop
->c
.ld
= vtop
->c
.ull
;
1828 vtop
->c
.ld
= vtop
->c
.ll
;
1830 if (sbt
& VT_UNSIGNED
)
1831 vtop
->c
.ld
= vtop
->c
.ui
;
1833 vtop
->c
.ld
= vtop
->c
.i
;
1836 if (dbt
== VT_FLOAT
)
1837 vtop
->c
.f
= (float)vtop
->c
.ld
;
1838 else if (dbt
== VT_DOUBLE
)
1839 vtop
->c
.d
= (double)vtop
->c
.ld
;
1840 } else if (sf
&& dbt
== (VT_LLONG
|VT_UNSIGNED
)) {
1841 vtop
->c
.ull
= (unsigned long long)vtop
->c
.ld
;
1842 } else if (sf
&& dbt
== VT_BOOL
) {
1843 vtop
->c
.i
= (vtop
->c
.ld
!= 0);
1846 vtop
->c
.ll
= (long long)vtop
->c
.ld
;
1847 else if (sbt
== (VT_LLONG
|VT_UNSIGNED
))
1848 vtop
->c
.ll
= vtop
->c
.ull
;
1849 else if (sbt
& VT_UNSIGNED
)
1850 vtop
->c
.ll
= vtop
->c
.ui
;
1851 #ifdef TCC_TARGET_X86_64
1852 else if (sbt
== VT_PTR
)
1855 else if (sbt
!= VT_LLONG
)
1856 vtop
->c
.ll
= vtop
->c
.i
;
1858 if (dbt
== (VT_LLONG
|VT_UNSIGNED
))
1859 vtop
->c
.ull
= vtop
->c
.ll
;
1860 else if (dbt
== VT_BOOL
)
1861 vtop
->c
.i
= (vtop
->c
.ll
!= 0);
1862 else if (dbt
!= VT_LLONG
) {
1864 if ((dbt
& VT_BTYPE
) == VT_BYTE
)
1866 else if ((dbt
& VT_BTYPE
) == VT_SHORT
)
1869 if(dbt
& VT_UNSIGNED
)
1870 vtop
->c
.ui
= ((unsigned int)vtop
->c
.ll
<< s
) >> s
;
1872 vtop
->c
.i
= ((int)vtop
->c
.ll
<< s
) >> s
;
1875 } else if (p
&& dbt
== VT_BOOL
) {
1878 } else if (!nocode_wanted
) {
1879 /* non constant case: generate code */
1881 /* convert from fp to fp */
1884 /* convert int to fp */
1887 /* convert fp to int */
1888 if (dbt
== VT_BOOL
) {
1892 /* we handle char/short/etc... with generic code */
1893 if (dbt
!= (VT_INT
| VT_UNSIGNED
) &&
1894 dbt
!= (VT_LLONG
| VT_UNSIGNED
) &&
1898 if (dbt
== VT_INT
&& (type
->t
& (VT_BTYPE
| VT_UNSIGNED
)) != dbt
) {
1899 /* additional cast for char/short... */
1904 #ifndef TCC_TARGET_X86_64
1905 } else if ((dbt
& VT_BTYPE
) == VT_LLONG
) {
1906 if ((sbt
& VT_BTYPE
) != VT_LLONG
) {
1907 /* scalar to long long */
1908 /* machine independent conversion */
1910 /* generate high word */
1911 if (sbt
== (VT_INT
| VT_UNSIGNED
)) {
1915 if (sbt
== VT_PTR
) {
1916 /* cast from pointer to int before we apply
1917 shift operation, which pointers don't support*/
1918 gen_cast(&int_type
);
1924 /* patch second register */
1925 vtop
[-1].r2
= vtop
->r
;
1929 } else if ((dbt
& VT_BTYPE
) == VT_LLONG
||
1930 (dbt
& VT_BTYPE
) == VT_PTR
||
1931 (dbt
& VT_BTYPE
) == VT_FUNC
) {
1932 if ((sbt
& VT_BTYPE
) != VT_LLONG
&&
1933 (sbt
& VT_BTYPE
) != VT_PTR
&&
1934 (sbt
& VT_BTYPE
) != VT_FUNC
) {
1935 /* need to convert from 32bit to 64bit */
1937 if (sbt
!= (VT_INT
| VT_UNSIGNED
)) {
1938 /* x86_64 specific: movslq */
1940 o(0xc0 + (REG_VALUE(r
) << 3) + REG_VALUE(r
));
1944 } else if (dbt
== VT_BOOL
) {
1945 /* scalar to bool */
1948 } else if ((dbt
& VT_BTYPE
) == VT_BYTE
||
1949 (dbt
& VT_BTYPE
) == VT_SHORT
) {
1950 if (sbt
== VT_PTR
) {
1951 vtop
->type
.t
= VT_INT
;
1952 warning("nonportable conversion from pointer to char/short");
1954 force_charshort_cast(dbt
);
1955 } else if ((dbt
& VT_BTYPE
) == VT_INT
) {
1957 if (sbt
== VT_LLONG
) {
1958 /* from long long: just take low order word */
1962 /* if lvalue and single word type, nothing to do because
1963 the lvalue already contains the real type size (see
1964 VT_LVAL_xxx constants) */
1967 } else if ((dbt
& VT_BTYPE
) == VT_PTR
&& !(vtop
->r
& VT_LVAL
)) {
1968 /* if we are casting between pointer types,
1969 we must update the VT_LVAL_xxx size */
1970 vtop
->r
= (vtop
->r
& ~VT_LVAL_TYPE
)
1971 | (lvalue_type(type
->ref
->type
.t
) & VT_LVAL_TYPE
);
1976 /* return type size as known at compile time. Put alignment at 'a' */
1977 ST_FUNC
int type_size(CType
*type
, int *a
)
1982 bt
= type
->t
& VT_BTYPE
;
1983 if (bt
== VT_STRUCT
) {
1988 } else if (bt
== VT_PTR
) {
1989 if (type
->t
& VT_ARRAY
) {
1993 ts
= type_size(&s
->type
, a
);
1995 if (ts
< 0 && s
->c
< 0)
2003 } else if (bt
== VT_LDOUBLE
) {
2005 return LDOUBLE_SIZE
;
2006 } else if (bt
== VT_DOUBLE
|| bt
== VT_LLONG
) {
2007 #ifdef TCC_TARGET_I386
2008 #ifdef TCC_TARGET_PE
2013 #elif defined(TCC_TARGET_ARM)
2023 } else if (bt
== VT_INT
|| bt
== VT_ENUM
|| bt
== VT_FLOAT
) {
2026 } else if (bt
== VT_SHORT
) {
2030 /* char, void, function, _Bool */
2036 /* push type size as known at runtime time on top of value stack. Put
2038 ST_FUNC
void vla_runtime_type_size(CType
*type
, int *a
)
2040 if (type
->t
& VT_VLA
) {
2041 vset(&int_type
, VT_LOCAL
|VT_LVAL
, type
->ref
->c
);
2043 vpushi(type_size(type
, a
));
2047 /* return the pointed type of t */
2048 static inline CType
*pointed_type(CType
*type
)
2050 return &type
->ref
->type
;
2053 /* modify type so that its it is a pointer to type. */
2054 ST_FUNC
void mk_pointer(CType
*type
)
2057 s
= sym_push(SYM_FIELD
, type
, 0, -1);
2058 type
->t
= VT_PTR
| (type
->t
& ~VT_TYPE
);
2062 /* compare function types. OLD functions match any new functions */
2063 static int is_compatible_func(CType
*type1
, CType
*type2
)
2069 if (!is_compatible_types(&s1
->type
, &s2
->type
))
2071 /* check func_call */
2072 if (FUNC_CALL(s1
->r
) != FUNC_CALL(s2
->r
))
2074 /* XXX: not complete */
2075 if (s1
->c
== FUNC_OLD
|| s2
->c
== FUNC_OLD
)
2079 while (s1
!= NULL
) {
2082 if (!is_compatible_parameter_types(&s1
->type
, &s2
->type
))
2092 /* return true if type1 and type2 are the same. If unqualified is
2093 true, qualifiers on the types are ignored.
2095 - enums are not checked as gcc __builtin_types_compatible_p ()
2097 static int compare_types(CType
*type1
, CType
*type2
, int unqualified
)
2101 t1
= type1
->t
& VT_TYPE
;
2102 t2
= type2
->t
& VT_TYPE
;
2104 /* strip qualifiers before comparing */
2105 t1
&= ~(VT_CONSTANT
| VT_VOLATILE
);
2106 t2
&= ~(VT_CONSTANT
| VT_VOLATILE
);
2108 /* XXX: bitfields ? */
2111 /* test more complicated cases */
2112 bt1
= t1
& VT_BTYPE
;
2113 if (bt1
== VT_PTR
) {
2114 type1
= pointed_type(type1
);
2115 type2
= pointed_type(type2
);
2116 return is_compatible_types(type1
, type2
);
2117 } else if (bt1
== VT_STRUCT
) {
2118 return (type1
->ref
== type2
->ref
);
2119 } else if (bt1
== VT_FUNC
) {
2120 return is_compatible_func(type1
, type2
);
2126 /* return true if type1 and type2 are exactly the same (including
2129 static int is_compatible_types(CType
*type1
, CType
*type2
)
2131 return compare_types(type1
,type2
,0);
2134 /* return true if type1 and type2 are the same (ignoring qualifiers).
2136 static int is_compatible_parameter_types(CType
*type1
, CType
*type2
)
2138 return compare_types(type1
,type2
,1);
2141 /* print a type. If 'varstr' is not NULL, then the variable is also
2142 printed in the type */
2144 /* XXX: add array and function pointers */
2145 static void type_to_str(char *buf
, int buf_size
,
2146 CType
*type
, const char *varstr
)
2153 t
= type
->t
& VT_TYPE
;
2156 if (t
& VT_CONSTANT
)
2157 pstrcat(buf
, buf_size
, "const ");
2158 if (t
& VT_VOLATILE
)
2159 pstrcat(buf
, buf_size
, "volatile ");
2160 if (t
& VT_UNSIGNED
)
2161 pstrcat(buf
, buf_size
, "unsigned ");
2191 tstr
= "long double";
2193 pstrcat(buf
, buf_size
, tstr
);
2197 if (bt
== VT_STRUCT
)
2201 pstrcat(buf
, buf_size
, tstr
);
2202 v
= type
->ref
->v
& ~SYM_STRUCT
;
2203 if (v
>= SYM_FIRST_ANOM
)
2204 pstrcat(buf
, buf_size
, "<anonymous>");
2206 pstrcat(buf
, buf_size
, get_tok_str(v
, NULL
));
2210 type_to_str(buf
, buf_size
, &s
->type
, varstr
);
2211 pstrcat(buf
, buf_size
, "(");
2213 while (sa
!= NULL
) {
2214 type_to_str(buf1
, sizeof(buf1
), &sa
->type
, NULL
);
2215 pstrcat(buf
, buf_size
, buf1
);
2218 pstrcat(buf
, buf_size
, ", ");
2220 pstrcat(buf
, buf_size
, ")");
2224 pstrcpy(buf1
, sizeof(buf1
), "*");
2226 pstrcat(buf1
, sizeof(buf1
), varstr
);
2227 type_to_str(buf
, buf_size
, &s
->type
, buf1
);
2231 pstrcat(buf
, buf_size
, " ");
2232 pstrcat(buf
, buf_size
, varstr
);
2237 /* verify type compatibility to store vtop in 'dt' type, and generate
2239 static void gen_assign_cast(CType
*dt
)
2241 CType
*st
, *type1
, *type2
, tmp_type1
, tmp_type2
;
2242 char buf1
[256], buf2
[256];
2245 st
= &vtop
->type
; /* source type */
2246 dbt
= dt
->t
& VT_BTYPE
;
2247 sbt
= st
->t
& VT_BTYPE
;
2248 if (dt
->t
& VT_CONSTANT
)
2249 warning("assignment of read-only location");
2252 /* special cases for pointers */
2253 /* '0' can also be a pointer */
2254 if (is_null_pointer(vtop
))
2256 /* accept implicit pointer to integer cast with warning */
2257 if (is_integer_btype(sbt
)) {
2258 warning("assignment makes pointer from integer without a cast");
2261 type1
= pointed_type(dt
);
2262 /* a function is implicitely a function pointer */
2263 if (sbt
== VT_FUNC
) {
2264 if ((type1
->t
& VT_BTYPE
) != VT_VOID
&&
2265 !is_compatible_types(pointed_type(dt
), st
))
2266 warning("assignment from incompatible pointer type");
2271 type2
= pointed_type(st
);
2272 if ((type1
->t
& VT_BTYPE
) == VT_VOID
||
2273 (type2
->t
& VT_BTYPE
) == VT_VOID
) {
2274 /* void * can match anything */
2276 /* exact type match, except for unsigned */
2279 tmp_type1
.t
&= ~(VT_UNSIGNED
| VT_CONSTANT
| VT_VOLATILE
);
2280 tmp_type2
.t
&= ~(VT_UNSIGNED
| VT_CONSTANT
| VT_VOLATILE
);
2281 if (!is_compatible_types(&tmp_type1
, &tmp_type2
))
2282 warning("assignment from incompatible pointer type");
2284 /* check const and volatile */
2285 if ((!(type1
->t
& VT_CONSTANT
) && (type2
->t
& VT_CONSTANT
)) ||
2286 (!(type1
->t
& VT_VOLATILE
) && (type2
->t
& VT_VOLATILE
)))
2287 warning("assignment discards qualifiers from pointer target type");
2293 if (sbt
== VT_PTR
|| sbt
== VT_FUNC
) {
2294 warning("assignment makes integer from pointer without a cast");
2296 /* XXX: more tests */
2301 tmp_type1
.t
&= ~(VT_CONSTANT
| VT_VOLATILE
);
2302 tmp_type2
.t
&= ~(VT_CONSTANT
| VT_VOLATILE
);
2303 if (!is_compatible_types(&tmp_type1
, &tmp_type2
)) {
2305 type_to_str(buf1
, sizeof(buf1
), st
, NULL
);
2306 type_to_str(buf2
, sizeof(buf2
), dt
, NULL
);
2307 error("cannot cast '%s' to '%s'", buf1
, buf2
);
2315 /* store vtop in lvalue pushed on stack */
2316 ST_FUNC
void vstore(void)
2318 int sbt
, dbt
, ft
, r
, t
, size
, align
, bit_size
, bit_pos
, rc
, delayed_cast
;
2320 ft
= vtop
[-1].type
.t
;
2321 sbt
= vtop
->type
.t
& VT_BTYPE
;
2322 dbt
= ft
& VT_BTYPE
;
2323 if (((sbt
== VT_INT
|| sbt
== VT_SHORT
) && dbt
== VT_BYTE
) ||
2324 (sbt
== VT_INT
&& dbt
== VT_SHORT
)) {
2325 /* optimize char/short casts */
2326 delayed_cast
= VT_MUSTCAST
;
2327 vtop
->type
.t
= ft
& (VT_TYPE
& ~(VT_BITFIELD
| (-1 << VT_STRUCT_SHIFT
)));
2328 /* XXX: factorize */
2329 if (ft
& VT_CONSTANT
)
2330 warning("assignment of read-only location");
2333 if (!(ft
& VT_BITFIELD
))
2334 gen_assign_cast(&vtop
[-1].type
);
2337 if (sbt
== VT_STRUCT
) {
2338 /* if structure, only generate pointer */
2339 /* structure assignment : generate memcpy */
2340 /* XXX: optimize if small size */
2341 if (!nocode_wanted
) {
2342 size
= type_size(&vtop
->type
, &align
);
2346 vtop
->type
.t
= VT_PTR
;
2349 /* address of memcpy() */
2352 vpush_global_sym(&func_old_type
, TOK_memcpy8
);
2353 else if(!(align
& 3))
2354 vpush_global_sym(&func_old_type
, TOK_memcpy4
);
2357 vpush_global_sym(&func_old_type
, TOK_memcpy
);
2362 vtop
->type
.t
= VT_PTR
;
2371 /* leave source on stack */
2372 } else if (ft
& VT_BITFIELD
) {
2373 /* bitfield store handling */
2374 bit_pos
= (ft
>> VT_STRUCT_SHIFT
) & 0x3f;
2375 bit_size
= (ft
>> (VT_STRUCT_SHIFT
+ 6)) & 0x3f;
2376 /* remove bit field info to avoid loops */
2377 vtop
[-1].type
.t
= ft
& ~(VT_BITFIELD
| (-1 << VT_STRUCT_SHIFT
));
2379 /* duplicate source into other register */
2384 if((ft
& VT_BTYPE
) == VT_BOOL
) {
2385 gen_cast(&vtop
[-1].type
);
2386 vtop
[-1].type
.t
= (vtop
[-1].type
.t
& ~VT_BTYPE
) | (VT_BYTE
| VT_UNSIGNED
);
2389 /* duplicate destination */
2391 vtop
[-1] = vtop
[-2];
2393 /* mask and shift source */
2394 if((ft
& VT_BTYPE
) != VT_BOOL
) {
2395 if((ft
& VT_BTYPE
) == VT_LLONG
) {
2396 vpushll((1ULL << bit_size
) - 1ULL);
2398 vpushi((1 << bit_size
) - 1);
2404 /* load destination, mask and or with source */
2406 if((ft
& VT_BTYPE
) == VT_LLONG
) {
2407 vpushll(~(((1ULL << bit_size
) - 1ULL) << bit_pos
));
2409 vpushi(~(((1 << bit_size
) - 1) << bit_pos
));
2416 /* pop off shifted source from "duplicate source..." above */
2420 #ifdef CONFIG_TCC_BCHECK
2421 /* bound check case */
2422 if (vtop
[-1].r
& VT_MUSTBOUND
) {
2428 if (!nocode_wanted
) {
2432 #ifdef TCC_TARGET_X86_64
2433 if ((ft
& VT_BTYPE
) == VT_LDOUBLE
) {
2438 r
= gv(rc
); /* generate value */
2439 /* if lvalue was saved on stack, must read it */
2440 if ((vtop
[-1].r
& VT_VALMASK
) == VT_LLOCAL
) {
2442 t
= get_reg(RC_INT
);
2443 #ifdef TCC_TARGET_X86_64
2448 sv
.r
= VT_LOCAL
| VT_LVAL
;
2449 sv
.c
.ul
= vtop
[-1].c
.ul
;
2451 vtop
[-1].r
= t
| VT_LVAL
;
2454 #ifndef TCC_TARGET_X86_64
2455 /* two word case handling : store second register at word + 4 */
2456 if ((ft
& VT_BTYPE
) == VT_LLONG
) {
2458 /* convert to int to increment easily */
2459 vtop
->type
.t
= VT_INT
;
2465 /* XXX: it works because r2 is spilled last ! */
2466 store(vtop
->r2
, vtop
- 1);
2471 vtop
--; /* NOT vpop() because on x86 it would flush the fp stack */
2472 vtop
->r
|= delayed_cast
;
2476 /* post defines POST/PRE add. c is the token ++ or -- */
2477 ST_FUNC
void inc(int post
, int c
)
2480 vdup(); /* save lvalue */
2482 gv_dup(); /* duplicate value */
2487 vpushi(c
- TOK_MID
);
2489 vstore(); /* store value */
2491 vpop(); /* if post op, return saved value */
2494 /* Parse GNUC __attribute__ extension. Currently, the following
2495 extensions are recognized:
2496 - aligned(n) : set data/function alignment.
2497 - packed : force data alignment to 1
2498 - section(x) : generate data/code in this section.
2499 - unused : currently ignored, but may be used someday.
2500 - regparm(n) : pass function parameters in registers (i386 only)
2502 static void parse_attribute(AttributeDef
*ad
)
2506 while (tok
== TOK_ATTRIBUTE1
|| tok
== TOK_ATTRIBUTE2
) {
2510 while (tok
!= ')') {
2511 if (tok
< TOK_IDENT
)
2512 expect("attribute name");
2520 expect("section name");
2521 ad
->section
= find_section(tcc_state
, (char *)tokc
.cstr
->data
);
2529 expect("alias(\"target\")");
2530 ad
->alias_target
= /* save string as token, for later */
2531 tok_alloc((char*)tokc
.cstr
->data
, tokc
.cstr
->size
-1)->tok
;
2540 if (n
<= 0 || (n
& (n
- 1)) != 0)
2541 error("alignment must be a positive power of two");
2558 /* currently, no need to handle it because tcc does not
2559 track unused objects */
2563 /* currently, no need to handle it because tcc does not
2564 track unused objects */
2569 ad
->func_call
= FUNC_CDECL
;
2574 ad
->func_call
= FUNC_STDCALL
;
2576 #ifdef TCC_TARGET_I386
2586 ad
->func_call
= FUNC_FASTCALL1
+ n
- 1;
2592 ad
->func_call
= FUNC_FASTCALLW
;
2599 ad
->mode
= VT_LLONG
+ 1;
2602 ad
->mode
= VT_SHORT
+ 1;
2605 ad
->mode
= VT_INT
+ 1;
2608 warning("__mode__(%s) not supported\n", get_tok_str(tok
, NULL
));
2615 ad
->func_export
= 1;
2618 ad
->func_import
= 1;
2621 if (tcc_state
->warn_unsupported
)
2622 warning("'%s' attribute ignored", get_tok_str(t
, NULL
));
2623 /* skip parameters */
2625 int parenthesis
= 0;
2629 else if (tok
== ')')
2632 } while (parenthesis
&& tok
!= -1);
2645 /* enum/struct/union declaration. u is either VT_ENUM or VT_STRUCT */
2646 static void struct_decl(CType
*type
, int u
)
2648 int a
, v
, size
, align
, maxalign
, c
, offset
;
2649 int bit_size
, bit_pos
, bsize
, bt
, lbit_pos
, prevbt
;
2650 Sym
*s
, *ss
, *ass
, **ps
;
2654 a
= tok
; /* save decl type */
2659 /* struct already defined ? return it */
2661 expect("struct/union/enum name");
2665 error("invalid type");
2672 /* we put an undefined size for struct/union */
2673 s
= sym_push(v
| SYM_STRUCT
, &type1
, 0, -1);
2674 s
->r
= 0; /* default alignment is zero as gcc */
2675 /* put struct/union/enum name in type */
2683 error("struct/union/enum already defined");
2684 /* cannot be empty */
2686 /* non empty enums are not allowed */
2687 if (a
== TOK_ENUM
) {
2691 expect("identifier");
2697 /* enum symbols have static storage */
2698 ss
= sym_push(v
, &int_type
, VT_CONST
, c
);
2699 ss
->type
.t
|= VT_STATIC
;
2704 /* NOTE: we accept a trailing comma */
2715 while (tok
!= '}') {
2716 parse_btype(&btype
, &ad
);
2722 type_decl(&type1
, &ad
, &v
, TYPE_DIRECT
| TYPE_ABSTRACT
);
2723 if (v
== 0 && (type1
.t
& VT_BTYPE
) != VT_STRUCT
)
2724 expect("identifier");
2725 if ((type1
.t
& VT_BTYPE
) == VT_FUNC
||
2726 (type1
.t
& (VT_TYPEDEF
| VT_STATIC
| VT_EXTERN
| VT_INLINE
)))
2727 error("invalid type for '%s'",
2728 get_tok_str(v
, NULL
));
2732 bit_size
= expr_const();
2733 /* XXX: handle v = 0 case for messages */
2735 error("negative width in bit-field '%s'",
2736 get_tok_str(v
, NULL
));
2737 if (v
&& bit_size
== 0)
2738 error("zero width for bit-field '%s'",
2739 get_tok_str(v
, NULL
));
2741 size
= type_size(&type1
, &align
);
2743 if (align
< ad
.aligned
)
2745 } else if (ad
.packed
) {
2747 } else if (*tcc_state
->pack_stack_ptr
) {
2748 if (align
> *tcc_state
->pack_stack_ptr
)
2749 align
= *tcc_state
->pack_stack_ptr
;
2752 if (bit_size
>= 0) {
2753 bt
= type1
.t
& VT_BTYPE
;
2760 error("bitfields must have scalar type");
2762 if (bit_size
> bsize
) {
2763 error("width of '%s' exceeds its type",
2764 get_tok_str(v
, NULL
));
2765 } else if (bit_size
== bsize
) {
2766 /* no need for bit fields */
2768 } else if (bit_size
== 0) {
2769 /* XXX: what to do if only padding in a
2771 /* zero size: means to pad */
2774 /* we do not have enough room ?
2775 did the type change?
2777 if ((bit_pos
+ bit_size
) > bsize
||
2778 bt
!= prevbt
|| a
== TOK_UNION
)
2781 /* XXX: handle LSB first */
2782 type1
.t
|= VT_BITFIELD
|
2783 (bit_pos
<< VT_STRUCT_SHIFT
) |
2784 (bit_size
<< (VT_STRUCT_SHIFT
+ 6));
2785 bit_pos
+= bit_size
;
2791 if (v
!= 0 || (type1
.t
& VT_BTYPE
) == VT_STRUCT
) {
2792 /* add new memory data only if starting
2794 if (lbit_pos
== 0) {
2795 if (a
== TOK_STRUCT
) {
2796 c
= (c
+ align
- 1) & -align
;
2805 if (align
> maxalign
)
2809 printf("add field %s offset=%d",
2810 get_tok_str(v
, NULL
), offset
);
2811 if (type1
.t
& VT_BITFIELD
) {
2812 printf(" pos=%d size=%d",
2813 (type1
.t
>> VT_STRUCT_SHIFT
) & 0x3f,
2814 (type1
.t
>> (VT_STRUCT_SHIFT
+ 6)) & 0x3f);
2819 if (v
== 0 && (type1
.t
& VT_BTYPE
) == VT_STRUCT
) {
2821 while ((ass
= ass
->next
) != NULL
) {
2822 ss
= sym_push(ass
->v
, &ass
->type
, 0, offset
+ ass
->c
);
2827 ss
= sym_push(v
| SYM_FIELD
, &type1
, 0, offset
);
2831 if (tok
== ';' || tok
== TOK_EOF
)
2838 /* store size and alignment */
2839 s
->c
= (c
+ maxalign
- 1) & -maxalign
;
2845 /* return 0 if no type declaration. otherwise, return the basic type
2848 static int parse_btype(CType
*type
, AttributeDef
*ad
)
2850 int t
, u
, type_found
, typespec_found
, typedef_found
;
2854 memset(ad
, 0, sizeof(AttributeDef
));
2862 /* currently, we really ignore extension */
2872 if ((t
& VT_BTYPE
) != 0)
2873 error("too many basic types");
2889 if ((t
& VT_BTYPE
) == VT_DOUBLE
) {
2890 #ifndef TCC_TARGET_PE
2891 t
= (t
& ~VT_BTYPE
) | VT_LDOUBLE
;
2893 } else if ((t
& VT_BTYPE
) == VT_LONG
) {
2894 t
= (t
& ~VT_BTYPE
) | VT_LLONG
;
2908 if ((t
& VT_BTYPE
) == VT_LONG
) {
2909 #ifdef TCC_TARGET_PE
2910 t
= (t
& ~VT_BTYPE
) | VT_DOUBLE
;
2912 t
= (t
& ~VT_BTYPE
) | VT_LDOUBLE
;
2920 struct_decl(&type1
, VT_ENUM
);
2923 type
->ref
= type1
.ref
;
2927 struct_decl(&type1
, VT_STRUCT
);
2930 /* type modifiers */
2983 /* GNUC attribute */
2984 case TOK_ATTRIBUTE1
:
2985 case TOK_ATTRIBUTE2
:
2986 parse_attribute(ad
);
2989 t
= (t
& ~VT_BTYPE
) | u
;
2997 parse_expr_type(&type1
);
2998 /* remove all storage modifiers except typedef */
2999 type1
.t
&= ~(VT_STORAGE
&~VT_TYPEDEF
);
3002 if (typespec_found
|| typedef_found
)
3005 if (!s
|| !(s
->type
.t
& VT_TYPEDEF
))
3008 t
|= (s
->type
.t
& ~VT_TYPEDEF
);
3009 type
->ref
= s
->type
.ref
;
3011 /* get attributes from typedef */
3012 if (0 == ad
->aligned
)
3013 ad
->aligned
= FUNC_ALIGN(s
->r
);
3014 if (0 == ad
->func_call
)
3015 ad
->func_call
= FUNC_CALL(s
->r
);
3016 ad
->packed
|= FUNC_PACKED(s
->r
);
3025 if ((t
& (VT_SIGNED
|VT_UNSIGNED
)) == (VT_SIGNED
|VT_UNSIGNED
))
3026 error("signed and unsigned modifier");
3027 if (tcc_state
->char_is_unsigned
) {
3028 if ((t
& (VT_SIGNED
|VT_UNSIGNED
|VT_BTYPE
)) == VT_BYTE
)
3033 /* long is never used as type */
3034 if ((t
& VT_BTYPE
) == VT_LONG
)
3035 #if !defined TCC_TARGET_X86_64 || defined TCC_TARGET_PE
3036 t
= (t
& ~VT_BTYPE
) | VT_INT
;
3038 t
= (t
& ~VT_BTYPE
) | VT_LLONG
;
3044 /* convert a function parameter type (array to pointer and function to
3045 function pointer) */
3046 static inline void convert_parameter_type(CType
*pt
)
3048 /* remove const and volatile qualifiers (XXX: const could be used
3049 to indicate a const function parameter */
3050 pt
->t
&= ~(VT_CONSTANT
| VT_VOLATILE
);
3051 /* array must be transformed to pointer according to ANSI C */
3053 if ((pt
->t
& VT_BTYPE
) == VT_FUNC
) {
3058 ST_FUNC
void parse_asm_str(CString
*astr
)
3061 /* read the string */
3063 expect("string constant");
3065 while (tok
== TOK_STR
) {
3066 /* XXX: add \0 handling too ? */
3067 cstr_cat(astr
, tokc
.cstr
->data
);
3070 cstr_ccat(astr
, '\0');
3073 /* Parse an asm label and return the label
3074 * Don't forget to free the CString in the caller! */
3075 static void asm_label_instr(CString
*astr
)
3078 parse_asm_str(astr
);
3081 printf("asm_alias: \"%s\"\n", (char *)astr
->data
);
3085 static void post_type(CType
*type
, AttributeDef
*ad
)
3087 int n
, l
, t1
, arg_size
, align
;
3088 Sym
**plast
, *s
, *first
;
3093 /* function declaration */
3101 /* read param name and compute offset */
3102 if (l
!= FUNC_OLD
) {
3103 if (!parse_btype(&pt
, &ad1
)) {
3105 error("invalid type");
3112 if ((pt
.t
& VT_BTYPE
) == VT_VOID
&& tok
== ')')
3114 type_decl(&pt
, &ad1
, &n
, TYPE_DIRECT
| TYPE_ABSTRACT
);
3115 if ((pt
.t
& VT_BTYPE
) == VT_VOID
)
3116 error("parameter declared as void");
3117 arg_size
+= (type_size(&pt
, &align
) + PTR_SIZE
- 1) / PTR_SIZE
;
3122 expect("identifier");
3126 convert_parameter_type(&pt
);
3127 s
= sym_push(n
| SYM_FIELD
, &pt
, 0, 0);
3133 if (l
== FUNC_NEW
&& tok
== TOK_DOTS
) {
3140 /* if no parameters, then old type prototype */
3144 /* NOTE: const is ignored in returned type as it has a special
3145 meaning in gcc / C++ */
3146 type
->t
&= ~VT_CONSTANT
;
3147 /* some ancient pre-K&R C allows a function to return an array
3148 and the array brackets to be put after the arguments, such
3149 that "int c()[]" means something like "int[] c()" */
3152 skip(']'); /* only handle simple "[]" */
3155 /* we push a anonymous symbol which will contain the function prototype */
3156 ad
->func_args
= arg_size
;
3157 s
= sym_push(SYM_FIELD
, type
, INT_ATTR(ad
), l
);
3161 } else if (tok
== '[') {
3162 /* array definition */
3164 if (tok
== TOK_RESTRICT1
)
3169 if (!local_stack
|| nocode_wanted
)
3170 vpushi(expr_const());
3172 if ((vtop
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) == VT_CONST
) {
3175 error("invalid array size");
3177 if (!is_integer_btype(vtop
->type
.t
& VT_BTYPE
))
3178 error("size of variable length array should be an integer");
3183 /* parse next post type */
3184 post_type(type
, ad
);
3185 t1
|= type
->t
& VT_VLA
;
3188 loc
-= type_size(&int_type
, &align
);
3192 vla_runtime_type_size(type
, &align
);
3194 vset(&int_type
, VT_LOCAL
|VT_LVAL
, loc
);
3201 /* we push an anonymous symbol which will contain the array
3203 s
= sym_push(SYM_FIELD
, type
, 0, n
);
3204 type
->t
= (t1
? VT_VLA
: VT_ARRAY
) | VT_PTR
;
3209 /* Parse a type declaration (except basic type), and return the type
3210 in 'type'. 'td' is a bitmask indicating which kind of type decl is
3211 expected. 'type' should contain the basic type. 'ad' is the
3212 attribute definition of the basic type. It can be modified by
3215 static void type_decl(CType
*type
, AttributeDef
*ad
, int *v
, int td
)
3218 CType type1
, *type2
;
3219 int qualifiers
, storage
;
3221 while (tok
== '*') {
3229 qualifiers
|= VT_CONSTANT
;
3234 qualifiers
|= VT_VOLATILE
;
3242 type
->t
|= qualifiers
;
3245 /* XXX: clarify attribute handling */
3246 if (tok
== TOK_ATTRIBUTE1
|| tok
== TOK_ATTRIBUTE2
)
3247 parse_attribute(ad
);
3249 /* recursive type */
3250 /* XXX: incorrect if abstract type for functions (e.g. 'int ()') */
3251 type1
.t
= 0; /* XXX: same as int */
3254 /* XXX: this is not correct to modify 'ad' at this point, but
3255 the syntax is not clear */
3256 if (tok
== TOK_ATTRIBUTE1
|| tok
== TOK_ATTRIBUTE2
)
3257 parse_attribute(ad
);
3258 type_decl(&type1
, ad
, v
, td
);
3261 /* type identifier */
3262 if (tok
>= TOK_IDENT
&& (td
& TYPE_DIRECT
)) {
3266 if (!(td
& TYPE_ABSTRACT
))
3267 expect("identifier");
3271 storage
= type
->t
& VT_STORAGE
;
3272 type
->t
&= ~VT_STORAGE
;
3273 post_type(type
, ad
);
3275 if (tok
== TOK_ATTRIBUTE1
|| tok
== TOK_ATTRIBUTE2
)
3276 parse_attribute(ad
);
3280 /* append type at the end of type1 */
3293 /* compute the lvalue VT_LVAL_xxx needed to match type t. */
3294 ST_FUNC
int lvalue_type(int t
)
3299 if (bt
== VT_BYTE
|| bt
== VT_BOOL
)
3301 else if (bt
== VT_SHORT
)
3305 if (t
& VT_UNSIGNED
)
3306 r
|= VT_LVAL_UNSIGNED
;
3310 /* indirection with full error checking and bound check */
3311 ST_FUNC
void indir(void)
3313 if ((vtop
->type
.t
& VT_BTYPE
) != VT_PTR
) {
3314 if ((vtop
->type
.t
& VT_BTYPE
) == VT_FUNC
)
3318 if ((vtop
->r
& VT_LVAL
) && !nocode_wanted
)
3320 vtop
->type
= *pointed_type(&vtop
->type
);
3321 /* Arrays and functions are never lvalues */
3322 if (!(vtop
->type
.t
& VT_ARRAY
) && !(vtop
->type
.t
& VT_VLA
)
3323 && (vtop
->type
.t
& VT_BTYPE
) != VT_FUNC
) {
3324 vtop
->r
|= lvalue_type(vtop
->type
.t
);
3325 /* if bound checking, the referenced pointer must be checked */
3326 #ifdef CONFIG_TCC_BCHECK
3327 if (tcc_state
->do_bounds_check
)
3328 vtop
->r
|= VT_MUSTBOUND
;
3333 /* pass a parameter to a function and do type checking and casting */
3334 static void gfunc_param_typed(Sym
*func
, Sym
*arg
)
3339 func_type
= func
->c
;
3340 if (func_type
== FUNC_OLD
||
3341 (func_type
== FUNC_ELLIPSIS
&& arg
== NULL
)) {
3342 /* default casting : only need to convert float to double */
3343 if ((vtop
->type
.t
& VT_BTYPE
) == VT_FLOAT
) {
3347 } else if (arg
== NULL
) {
3348 error("too many arguments to function");
3351 type
.t
&= ~VT_CONSTANT
; /* need to do that to avoid false warning */
3352 gen_assign_cast(&type
);
3356 /* parse an expression of the form '(type)' or '(expr)' and return its
3358 static void parse_expr_type(CType
*type
)
3364 if (parse_btype(type
, &ad
)) {
3365 type_decl(type
, &ad
, &n
, TYPE_ABSTRACT
);
3372 static void parse_type(CType
*type
)
3377 if (!parse_btype(type
, &ad
)) {
3380 type_decl(type
, &ad
, &n
, TYPE_ABSTRACT
);
3383 static void vpush_tokc(int t
)
3388 vsetc(&type
, VT_CONST
, &tokc
);
3391 ST_FUNC
void unary(void)
3393 int n
, t
, align
, size
, r
, sizeof_caller
;
3397 static int in_sizeof
= 0;
3399 sizeof_caller
= in_sizeof
;
3401 /* XXX: GCC 2.95.3 does not generate a table although it should be
3415 vpush_tokc(VT_INT
| VT_UNSIGNED
);
3419 vpush_tokc(VT_LLONG
);
3423 vpush_tokc(VT_LLONG
| VT_UNSIGNED
);
3427 vpush_tokc(VT_FLOAT
);
3431 vpush_tokc(VT_DOUBLE
);
3435 vpush_tokc(VT_LDOUBLE
);
3438 case TOK___FUNCTION__
:
3440 goto tok_identifier
;
3446 /* special function name identifier */
3447 len
= strlen(funcname
) + 1;
3448 /* generate char[len] type */
3453 vpush_ref(&type
, data_section
, data_section
->data_offset
, len
);
3454 ptr
= section_ptr_add(data_section
, len
);
3455 memcpy(ptr
, funcname
, len
);
3460 #ifdef TCC_TARGET_PE
3461 t
= VT_SHORT
| VT_UNSIGNED
;
3467 /* string parsing */
3470 if (tcc_state
->warn_write_strings
)
3475 memset(&ad
, 0, sizeof(AttributeDef
));
3476 decl_initializer_alloc(&type
, &ad
, VT_CONST
, 2, 0, NULL
, 0);
3481 if (parse_btype(&type
, &ad
)) {
3482 type_decl(&type
, &ad
, &n
, TYPE_ABSTRACT
);
3484 /* check ISOC99 compound literal */
3486 /* data is allocated locally by default */
3491 /* all except arrays are lvalues */
3492 if (!(type
.t
& VT_ARRAY
))
3493 r
|= lvalue_type(type
.t
);
3494 memset(&ad
, 0, sizeof(AttributeDef
));
3495 decl_initializer_alloc(&type
, &ad
, r
, 1, 0, NULL
, 0);
3497 if (sizeof_caller
) {
3504 } else if (tok
== '{') {
3505 /* save all registers */
3507 /* statement expression : we do not accept break/continue
3508 inside as GCC does */
3509 block(NULL
, NULL
, NULL
, NULL
, 0, 1);
3524 /* functions names must be treated as function pointers,
3525 except for unary '&' and sizeof. Since we consider that
3526 functions are not lvalues, we only have to handle it
3527 there and in function calls. */
3528 /* arrays can also be used although they are not lvalues */
3529 if ((vtop
->type
.t
& VT_BTYPE
) != VT_FUNC
&&
3530 !(vtop
->type
.t
& VT_ARRAY
) && !(vtop
->type
.t
& VT_LLOCAL
))
3532 mk_pointer(&vtop
->type
);
3538 if ((vtop
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) == VT_CONST
) {
3540 boolean
.t
= VT_BOOL
;
3542 vtop
->c
.i
= !vtop
->c
.i
;
3543 } else if ((vtop
->r
& VT_VALMASK
) == VT_CMP
)
3544 vtop
->c
.i
= vtop
->c
.i
^ 1;
3547 vseti(VT_JMP
, gtst(1, 0));
3558 /* in order to force cast, we add zero */
3560 if ((vtop
->type
.t
& VT_BTYPE
) == VT_PTR
)
3561 error("pointer not accepted for unary plus");
3571 unary_type(&type
); // Perform a in_sizeof = 0;
3572 size
= type_size(&type
, &align
);
3573 if (t
== TOK_SIZEOF
) {
3574 if (!(type
.t
& VT_VLA
)) {
3576 error("sizeof applied to an incomplete type");
3579 vla_runtime_type_size(&type
, &align
);
3584 vtop
->type
.t
|= VT_UNSIGNED
;
3587 case TOK_builtin_types_compatible_p
:
3596 type1
.t
&= ~(VT_CONSTANT
| VT_VOLATILE
);
3597 type2
.t
&= ~(VT_CONSTANT
| VT_VOLATILE
);
3598 vpushi(is_compatible_types(&type1
, &type2
));
3601 case TOK_builtin_constant_p
:
3603 int saved_nocode_wanted
, res
;
3606 saved_nocode_wanted
= nocode_wanted
;
3609 res
= (vtop
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) == VT_CONST
;
3611 nocode_wanted
= saved_nocode_wanted
;
3616 case TOK_builtin_frame_address
:
3621 if (tok
!= TOK_CINT
) {
3622 error("__builtin_frame_address only takes integers");
3625 error("TCC only supports __builtin_frame_address(0)");
3631 vset(&type
, VT_LOCAL
, 0);
3634 #ifdef TCC_TARGET_X86_64
3635 case TOK_builtin_va_arg_types
:
3637 /* This definition must be synced with stdarg.h */
3638 enum __va_arg_type
{
3639 __va_gen_reg
, __va_float_reg
, __va_stack
3647 bt
= type
.t
& VT_BTYPE
;
3648 if (bt
== VT_STRUCT
|| bt
== VT_LDOUBLE
) {
3650 } else if (bt
== VT_FLOAT
|| bt
== VT_DOUBLE
) {
3651 vpushi(__va_float_reg
);
3653 vpushi(__va_gen_reg
);
3673 goto tok_identifier
;
3675 /* allow to take the address of a label */
3676 if (tok
< TOK_UIDENT
)
3677 expect("label identifier");
3678 s
= label_find(tok
);
3680 s
= label_push(&global_label_stack
, tok
, LABEL_FORWARD
);
3682 if (s
->r
== LABEL_DECLARED
)
3683 s
->r
= LABEL_FORWARD
;
3686 s
->type
.t
= VT_VOID
;
3687 mk_pointer(&s
->type
);
3688 s
->type
.t
|= VT_STATIC
;
3690 vset(&s
->type
, VT_CONST
| VT_SYM
, 0);
3695 // special qnan , snan and infinity values
3697 vpush64(VT_DOUBLE
, 0x7ff8000000000000ULL
);
3701 vpush64(VT_DOUBLE
, 0x7ff0000000000001ULL
);
3705 vpush64(VT_DOUBLE
, 0x7ff0000000000000ULL
);
3714 expect("identifier");
3718 error("'%s' undeclared", get_tok_str(t
, NULL
));
3719 /* for simple function calls, we tolerate undeclared
3720 external reference to int() function */
3721 if (tcc_state
->warn_implicit_function_declaration
)
3722 warning("implicit declaration of function '%s'",
3723 get_tok_str(t
, NULL
));
3724 s
= external_global_sym(t
, &func_old_type
, 0);
3726 if ((s
->type
.t
& (VT_STATIC
| VT_INLINE
| VT_BTYPE
)) ==
3727 (VT_STATIC
| VT_INLINE
| VT_FUNC
)) {
3728 /* if referencing an inline function, then we generate a
3729 symbol to it if not already done. It will have the
3730 effect to generate code for it at the end of the
3731 compilation unit. Inline function as always
3732 generated in the text section. */
3734 put_extern_sym(s
, text_section
, 0, 0);
3735 r
= VT_SYM
| VT_CONST
;
3739 vset(&s
->type
, r
, s
->c
);
3740 /* if forward reference, we must point to s */
3741 if (vtop
->r
& VT_SYM
) {
3748 /* post operations */
3750 if (tok
== TOK_INC
|| tok
== TOK_DEC
) {
3753 } else if (tok
== '.' || tok
== TOK_ARROW
) {
3756 if (tok
== TOK_ARROW
)
3758 qualifiers
= vtop
->type
.t
& (VT_CONSTANT
| VT_VOLATILE
);
3762 /* expect pointer on structure */
3763 if ((vtop
->type
.t
& VT_BTYPE
) != VT_STRUCT
)
3764 expect("struct or union");
3768 while ((s
= s
->next
) != NULL
) {
3773 error("field not found: %s", get_tok_str(tok
& ~SYM_FIELD
, NULL
));
3774 /* add field offset to pointer */
3775 vtop
->type
= char_pointer_type
; /* change type to 'char *' */
3778 /* change type to field type, and set to lvalue */
3779 vtop
->type
= s
->type
;
3780 vtop
->type
.t
|= qualifiers
;
3781 /* an array is never an lvalue */
3782 if (!(vtop
->type
.t
& VT_ARRAY
)) {
3783 vtop
->r
|= lvalue_type(vtop
->type
.t
);
3784 #ifdef CONFIG_TCC_BCHECK
3785 /* if bound checking, the referenced pointer must be checked */
3786 if (tcc_state
->do_bounds_check
)
3787 vtop
->r
|= VT_MUSTBOUND
;
3791 } else if (tok
== '[') {
3797 } else if (tok
== '(') {
3803 if ((vtop
->type
.t
& VT_BTYPE
) != VT_FUNC
) {
3804 /* pointer test (no array accepted) */
3805 if ((vtop
->type
.t
& (VT_BTYPE
| VT_ARRAY
)) == VT_PTR
) {
3806 vtop
->type
= *pointed_type(&vtop
->type
);
3807 if ((vtop
->type
.t
& VT_BTYPE
) != VT_FUNC
)
3811 expect("function pointer");
3814 vtop
->r
&= ~VT_LVAL
; /* no lvalue */
3816 /* get return type */
3819 sa
= s
->next
; /* first parameter */
3822 /* compute first implicit argument if a structure is returned */
3823 if ((s
->type
.t
& VT_BTYPE
) == VT_STRUCT
) {
3824 /* get some space for the returned structure */
3825 size
= type_size(&s
->type
, &align
);
3826 loc
= (loc
- size
) & -align
;
3828 ret
.r
= VT_LOCAL
| VT_LVAL
;
3829 /* pass it as 'int' to avoid structure arg passing
3831 vseti(VT_LOCAL
, loc
);
3836 /* return in register */
3837 if (is_float(ret
.type
.t
)) {
3838 ret
.r
= reg_fret(ret
.type
.t
);
3840 if ((ret
.type
.t
& VT_BTYPE
) == VT_LLONG
)
3849 gfunc_param_typed(s
, sa
);
3859 error("too few arguments to function");
3861 if (!nocode_wanted
) {
3862 gfunc_call(nb_args
);
3864 vtop
-= (nb_args
+ 1);
3867 vsetc(&ret
.type
, ret
.r
, &ret
.c
);
3875 ST_FUNC
void expr_prod(void)
3880 while (tok
== '*' || tok
== '/' || tok
== '%') {
3888 ST_FUNC
void expr_sum(void)
3893 while (tok
== '+' || tok
== '-') {
3901 static void expr_shift(void)
3906 while (tok
== TOK_SHL
|| tok
== TOK_SAR
) {
3914 static void expr_cmp(void)
3919 while ((tok
>= TOK_ULE
&& tok
<= TOK_GT
) ||
3920 tok
== TOK_ULT
|| tok
== TOK_UGE
) {
3928 static void expr_cmpeq(void)
3933 while (tok
== TOK_EQ
|| tok
== TOK_NE
) {
3941 static void expr_and(void)
3944 while (tok
== '&') {
3951 static void expr_xor(void)
3954 while (tok
== '^') {
3961 static void expr_or(void)
3964 while (tok
== '|') {
3971 /* XXX: fix this mess */
3972 static void expr_land_const(void)
3975 while (tok
== TOK_LAND
) {
3982 /* XXX: fix this mess */
3983 static void expr_lor_const(void)
3986 while (tok
== TOK_LOR
) {
3993 /* only used if non constant */
3994 static void expr_land(void)
3999 if (tok
== TOK_LAND
) {
4004 if (tok
!= TOK_LAND
) {
4014 static void expr_lor(void)
4019 if (tok
== TOK_LOR
) {
4024 if (tok
!= TOK_LOR
) {
4034 /* XXX: better constant handling */
4035 static void expr_cond(void)
4037 int tt
, u
, r1
, r2
, rc
, t1
, t2
, bt1
, bt2
;
4039 CType type
, type1
, type2
;
4046 boolean
.t
= VT_BOOL
;
4052 if (tok
!= ':' || !gnu_ext
) {
4067 if (vtop
!= vstack
) {
4068 /* needed to avoid having different registers saved in
4070 if (is_float(vtop
->type
.t
)) {
4072 #ifdef TCC_TARGET_X86_64
4073 if ((vtop
->type
.t
& VT_BTYPE
) == VT_LDOUBLE
) {
4083 if (tok
== ':' && gnu_ext
) {
4091 sv
= *vtop
; /* save value to handle it later */
4092 vtop
--; /* no vpop so that FP stack is not flushed */
4100 bt1
= t1
& VT_BTYPE
;
4102 bt2
= t2
& VT_BTYPE
;
4103 /* cast operands to correct type according to ISOC rules */
4104 if (is_float(bt1
) || is_float(bt2
)) {
4105 if (bt1
== VT_LDOUBLE
|| bt2
== VT_LDOUBLE
) {
4106 type
.t
= VT_LDOUBLE
;
4107 } else if (bt1
== VT_DOUBLE
|| bt2
== VT_DOUBLE
) {
4112 } else if (bt1
== VT_LLONG
|| bt2
== VT_LLONG
) {
4113 /* cast to biggest op */
4115 /* convert to unsigned if it does not fit in a long long */
4116 if ((t1
& (VT_BTYPE
| VT_UNSIGNED
)) == (VT_LLONG
| VT_UNSIGNED
) ||
4117 (t2
& (VT_BTYPE
| VT_UNSIGNED
)) == (VT_LLONG
| VT_UNSIGNED
))
4118 type
.t
|= VT_UNSIGNED
;
4119 } else if (bt1
== VT_PTR
|| bt2
== VT_PTR
) {
4120 /* XXX: test pointer compatibility */
4122 } else if (bt1
== VT_FUNC
|| bt2
== VT_FUNC
) {
4123 /* XXX: test function pointer compatibility */
4125 } else if (bt1
== VT_STRUCT
|| bt2
== VT_STRUCT
) {
4126 /* XXX: test structure compatibility */
4128 } else if (bt1
== VT_VOID
|| bt2
== VT_VOID
) {
4129 /* NOTE: as an extension, we accept void on only one side */
4132 /* integer operations */
4134 /* convert to unsigned if it does not fit in an integer */
4135 if ((t1
& (VT_BTYPE
| VT_UNSIGNED
)) == (VT_INT
| VT_UNSIGNED
) ||
4136 (t2
& (VT_BTYPE
| VT_UNSIGNED
)) == (VT_INT
| VT_UNSIGNED
))
4137 type
.t
|= VT_UNSIGNED
;
4140 /* now we convert second operand */
4142 if (VT_STRUCT
== (vtop
->type
.t
& VT_BTYPE
))
4145 if (is_float(type
.t
)) {
4147 #ifdef TCC_TARGET_X86_64
4148 if ((type
.t
& VT_BTYPE
) == VT_LDOUBLE
) {
4152 } else if ((type
.t
& VT_BTYPE
) == VT_LLONG
) {
4153 /* for long longs, we use fixed registers to avoid having
4154 to handle a complicated move */
4159 /* this is horrible, but we must also convert first
4163 /* put again first value and cast it */
4166 if (VT_STRUCT
== (vtop
->type
.t
& VT_BTYPE
))
4176 static void expr_eq(void)
4182 (tok
>= TOK_A_MOD
&& tok
<= TOK_A_DIV
) ||
4183 tok
== TOK_A_XOR
|| tok
== TOK_A_OR
||
4184 tok
== TOK_A_SHL
|| tok
== TOK_A_SAR
) {
4199 ST_FUNC
void gexpr(void)
4210 /* parse an expression and return its type without any side effect. */
4211 static void expr_type(CType
*type
)
4213 int saved_nocode_wanted
;
4215 saved_nocode_wanted
= nocode_wanted
;
4220 nocode_wanted
= saved_nocode_wanted
;
4223 /* parse a unary expression and return its type without any side
4225 static void unary_type(CType
*type
)
4237 /* parse a constant expression and return value in vtop. */
4238 static void expr_const1(void)
4247 /* parse an integer constant and return its value. */
4248 ST_FUNC
int expr_const(void)
4252 if ((vtop
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) != VT_CONST
)
4253 expect("constant expression");
4259 /* return the label token if current token is a label, otherwise
4261 static int is_label(void)
4265 /* fast test first */
4266 if (tok
< TOK_UIDENT
)
4268 /* no need to save tokc because tok is an identifier */
4275 unget_tok(last_tok
);
4280 static void block(int *bsym
, int *csym
, int *case_sym
, int *def_sym
,
4281 int case_reg
, int is_expr
)
4286 /* generate line number info */
4287 if (tcc_state
->do_debug
&&
4288 (last_line_num
!= file
->line_num
|| last_ind
!= ind
)) {
4289 put_stabn(N_SLINE
, 0, file
->line_num
, ind
- func_ind
);
4291 last_line_num
= file
->line_num
;
4295 /* default return value is (void) */
4297 vtop
->type
.t
= VT_VOID
;
4300 if (tok
== TOK_IF
) {
4307 block(bsym
, csym
, case_sym
, def_sym
, case_reg
, 0);
4309 if (c
== TOK_ELSE
) {
4313 block(bsym
, csym
, case_sym
, def_sym
, case_reg
, 0);
4314 gsym(d
); /* patch else jmp */
4317 } else if (tok
== TOK_WHILE
) {
4325 block(&a
, &b
, case_sym
, def_sym
, case_reg
, 0);
4329 } else if (tok
== '{') {
4333 /* record local declaration stack position */
4335 llabel
= local_label_stack
;
4336 /* handle local labels declarations */
4337 if (tok
== TOK_LABEL
) {
4340 if (tok
< TOK_UIDENT
)
4341 expect("label identifier");
4342 label_push(&local_label_stack
, tok
, LABEL_DECLARED
);
4352 while (tok
!= '}') {
4357 block(bsym
, csym
, case_sym
, def_sym
, case_reg
, is_expr
);
4360 /* pop locally defined labels */
4361 label_pop(&local_label_stack
, llabel
);
4363 /* XXX: this solution makes only valgrind happy...
4364 triggered by gcc.c-torture/execute/20000917-1.c */
4366 switch(vtop
->type
.t
& VT_BTYPE
) {
4371 for(p
=vtop
->type
.ref
;p
;p
=p
->prev
)
4373 error("unsupported expression type");
4376 /* pop locally defined symbols */
4377 sym_pop(&local_stack
, s
);
4379 } else if (tok
== TOK_RETURN
) {
4383 gen_assign_cast(&func_vt
);
4384 if ((func_vt
.t
& VT_BTYPE
) == VT_STRUCT
) {
4386 /* if returning structure, must copy it to implicit
4387 first pointer arg location */
4390 size
= type_size(&func_vt
,&align
);
4393 if((vtop
->r
!= (VT_LOCAL
| VT_LVAL
) || (vtop
->c
.i
& 3))
4397 loc
= (loc
- size
) & -4;
4400 vset(&type
, VT_LOCAL
| VT_LVAL
, addr
);
4403 vset(&int_type
, VT_LOCAL
| VT_LVAL
, addr
);
4405 vtop
->type
= int_type
;
4411 vset(&type
, VT_LOCAL
| VT_LVAL
, func_vc
);
4414 /* copy structure value to pointer */
4419 } else if (is_float(func_vt
.t
)) {
4420 gv(rc_fret(func_vt
.t
));
4424 vtop
--; /* NOT vpop() because on x86 it would flush the fp stack */
4427 rsym
= gjmp(rsym
); /* jmp */
4428 } else if (tok
== TOK_BREAK
) {
4431 error("cannot break");
4432 *bsym
= gjmp(*bsym
);
4435 } else if (tok
== TOK_CONTINUE
) {
4438 error("cannot continue");
4439 *csym
= gjmp(*csym
);
4442 } else if (tok
== TOK_FOR
) {
4448 /* c99 for-loop init decl? */
4449 if (!decl0(VT_LOCAL
, 1)) {
4450 /* no, regular for-loop init expr */
4474 block(&a
, &b
, case_sym
, def_sym
, case_reg
, 0);
4478 sym_pop(&local_stack
, s
);
4480 if (tok
== TOK_DO
) {
4485 block(&a
, &b
, case_sym
, def_sym
, case_reg
, 0);
4496 if (tok
== TOK_SWITCH
) {
4500 /* XXX: other types than integer */
4501 case_reg
= gv(RC_INT
);
4505 b
= gjmp(0); /* jump to first case */
4507 block(&a
, csym
, &b
, &c
, case_reg
, 0);
4508 /* if no default, jmp after switch */
4516 if (tok
== TOK_CASE
) {
4523 if (gnu_ext
&& tok
== TOK_DOTS
) {
4527 warning("empty case range");
4529 /* since a case is like a label, we must skip it with a jmp */
4536 *case_sym
= gtst(1, 0);
4539 *case_sym
= gtst(1, 0);
4543 *case_sym
= gtst(1, *case_sym
);
4548 goto block_after_label
;
4550 if (tok
== TOK_DEFAULT
) {
4556 error("too many 'default'");
4559 goto block_after_label
;
4561 if (tok
== TOK_GOTO
) {
4563 if (tok
== '*' && gnu_ext
) {
4567 if ((vtop
->type
.t
& VT_BTYPE
) != VT_PTR
)
4570 } else if (tok
>= TOK_UIDENT
) {
4571 s
= label_find(tok
);
4572 /* put forward definition if needed */
4574 s
= label_push(&global_label_stack
, tok
, LABEL_FORWARD
);
4576 if (s
->r
== LABEL_DECLARED
)
4577 s
->r
= LABEL_FORWARD
;
4579 /* label already defined */
4580 if (s
->r
& LABEL_FORWARD
)
4581 s
->jnext
= gjmp(s
->jnext
);
4583 gjmp_addr(s
->jnext
);
4586 expect("label identifier");
4589 } else if (tok
== TOK_ASM1
|| tok
== TOK_ASM2
|| tok
== TOK_ASM3
) {
4597 if (s
->r
== LABEL_DEFINED
)
4598 error("duplicate label '%s'", get_tok_str(s
->v
, NULL
));
4600 s
->r
= LABEL_DEFINED
;
4602 s
= label_push(&global_label_stack
, b
, LABEL_DEFINED
);
4605 /* we accept this, but it is a mistake */
4608 warning("deprecated use of label at end of compound statement");
4612 block(bsym
, csym
, case_sym
, def_sym
, case_reg
, is_expr
);
4615 /* expression case */
4630 /* t is the array or struct type. c is the array or struct
4631 address. cur_index/cur_field is the pointer to the current
4632 value. 'size_only' is true if only size info is needed (only used
4634 static void decl_designator(CType
*type
, Section
*sec
, unsigned long c
,
4635 int *cur_index
, Sym
**cur_field
,
4639 int notfirst
, index
, index_last
, align
, l
, nb_elems
, elem_size
;
4645 if (gnu_ext
&& (l
= is_label()) != 0)
4647 while (tok
== '[' || tok
== '.') {
4649 if (!(type
->t
& VT_ARRAY
))
4650 expect("array type");
4653 index
= expr_const();
4654 if (index
< 0 || (s
->c
>= 0 && index
>= s
->c
))
4655 expect("invalid index");
4656 if (tok
== TOK_DOTS
&& gnu_ext
) {
4658 index_last
= expr_const();
4659 if (index_last
< 0 ||
4660 (s
->c
>= 0 && index_last
>= s
->c
) ||
4662 expect("invalid index");
4668 *cur_index
= index_last
;
4669 type
= pointed_type(type
);
4670 elem_size
= type_size(type
, &align
);
4671 c
+= index
* elem_size
;
4672 /* NOTE: we only support ranges for last designator */
4673 nb_elems
= index_last
- index
+ 1;
4674 if (nb_elems
!= 1) {
4683 if ((type
->t
& VT_BTYPE
) != VT_STRUCT
)
4684 expect("struct/union type");
4697 /* XXX: fix this mess by using explicit storage field */
4699 type1
.t
|= (type
->t
& ~VT_TYPE
);
4713 if (type
->t
& VT_ARRAY
) {
4715 type
= pointed_type(type
);
4716 c
+= index
* type_size(type
, &align
);
4720 error("too many field init");
4721 /* XXX: fix this mess by using explicit storage field */
4723 type1
.t
|= (type
->t
& ~VT_TYPE
);
4728 decl_initializer(type
, sec
, c
, 0, size_only
);
4730 /* XXX: make it more general */
4731 if (!size_only
&& nb_elems
> 1) {
4732 unsigned long c_end
;
4737 error("range init not supported yet for dynamic storage");
4738 c_end
= c
+ nb_elems
* elem_size
;
4739 if (c_end
> sec
->data_allocated
)
4740 section_realloc(sec
, c_end
);
4741 src
= sec
->data
+ c
;
4743 for(i
= 1; i
< nb_elems
; i
++) {
4745 memcpy(dst
, src
, elem_size
);
4751 #define EXPR_CONST 1
4754 /* store a value or an expression directly in global data or in local array */
4755 static void init_putv(CType
*type
, Section
*sec
, unsigned long c
,
4756 int v
, int expr_type
)
4758 int saved_global_expr
, bt
, bit_pos
, bit_size
;
4760 unsigned long long bit_mask
;
4768 /* compound literals must be allocated globally in this case */
4769 saved_global_expr
= global_expr
;
4772 global_expr
= saved_global_expr
;
4773 /* NOTE: symbols are accepted */
4774 if ((vtop
->r
& (VT_VALMASK
| VT_LVAL
)) != VT_CONST
)
4775 error("initializer element is not constant");
4783 dtype
.t
&= ~VT_CONSTANT
; /* need to do that to avoid false warning */
4786 /* XXX: not portable */
4787 /* XXX: generate error if incorrect relocation */
4788 gen_assign_cast(&dtype
);
4789 bt
= type
->t
& VT_BTYPE
;
4790 /* we'll write at most 12 bytes */
4791 if (c
+ 12 > sec
->data_allocated
) {
4792 section_realloc(sec
, c
+ 12);
4794 ptr
= sec
->data
+ c
;
4795 /* XXX: make code faster ? */
4796 if (!(type
->t
& VT_BITFIELD
)) {
4801 bit_pos
= (vtop
->type
.t
>> VT_STRUCT_SHIFT
) & 0x3f;
4802 bit_size
= (vtop
->type
.t
>> (VT_STRUCT_SHIFT
+ 6)) & 0x3f;
4803 bit_mask
= (1LL << bit_size
) - 1;
4805 if ((vtop
->r
& VT_SYM
) &&
4811 (bt
== VT_INT
&& bit_size
!= 32)))
4812 error("initializer element is not computable at load time");
4815 vtop
->c
.i
= (vtop
->c
.i
!= 0);
4817 *(char *)ptr
|= (vtop
->c
.i
& bit_mask
) << bit_pos
;
4820 *(short *)ptr
|= (vtop
->c
.i
& bit_mask
) << bit_pos
;
4823 *(double *)ptr
= vtop
->c
.d
;
4826 *(long double *)ptr
= vtop
->c
.ld
;
4829 *(long long *)ptr
|= (vtop
->c
.ll
& bit_mask
) << bit_pos
;
4832 if (vtop
->r
& VT_SYM
) {
4833 greloc(sec
, vtop
->sym
, c
, R_DATA_PTR
);
4835 *(int *)ptr
|= (vtop
->c
.i
& bit_mask
) << bit_pos
;
4840 vset(&dtype
, VT_LOCAL
|VT_LVAL
, c
);
4847 /* put zeros for variable based init */
4848 static void init_putz(CType
*t
, Section
*sec
, unsigned long c
, int size
)
4851 /* nothing to do because globals are already set to zero */
4853 vpush_global_sym(&func_old_type
, TOK_memset
);
4861 /* 't' contains the type and storage info. 'c' is the offset of the
4862 object in section 'sec'. If 'sec' is NULL, it means stack based
4863 allocation. 'first' is true if array '{' must be read (multi
4864 dimension implicit array init handling). 'size_only' is true if
4865 size only evaluation is wanted (only for arrays). */
4866 static void decl_initializer(CType
*type
, Section
*sec
, unsigned long c
,
4867 int first
, int size_only
)
4869 int index
, array_length
, n
, no_oblock
, nb
, parlevel
, parlevel1
, i
;
4870 int size1
, align1
, expr_type
;
4874 if (type
->t
& VT_VLA
) {
4875 #if defined TCC_TARGET_I386 || defined TCC_TARGET_X86_64
4879 vpush_global_sym(&func_old_type
, TOK_alloca
);
4880 vla_runtime_type_size(type
, &a
);
4885 vsetc(type
, REG_IRET
, &retcval
);
4886 vset(type
, VT_LOCAL
|VT_LVAL
, c
);
4891 error("variable length arrays unsupported for this target");
4893 } else if (type
->t
& VT_ARRAY
) {
4897 t1
= pointed_type(type
);
4898 size1
= type_size(t1
, &align1
);
4901 if ((first
&& tok
!= TOK_LSTR
&& tok
!= TOK_STR
) ||
4904 error("character array initializer must be a literal,"
4905 " optionally enclosed in braces");
4910 /* only parse strings here if correct type (otherwise: handle
4911 them as ((w)char *) expressions */
4912 if ((tok
== TOK_LSTR
&&
4913 #ifdef TCC_TARGET_PE
4914 (t1
->t
& VT_BTYPE
) == VT_SHORT
&& (t1
->t
& VT_UNSIGNED
)
4916 (t1
->t
& VT_BTYPE
) == VT_INT
4918 ) || (tok
== TOK_STR
&& (t1
->t
& VT_BTYPE
) == VT_BYTE
)) {
4919 while (tok
== TOK_STR
|| tok
== TOK_LSTR
) {
4924 /* compute maximum number of chars wanted */
4926 cstr_len
= cstr
->size
;
4928 cstr_len
= cstr
->size
/ sizeof(nwchar_t
);
4931 if (n
>= 0 && nb
> (n
- array_length
))
4932 nb
= n
- array_length
;
4935 warning("initializer-string for array is too long");
4936 /* in order to go faster for common case (char
4937 string in global variable, we handle it
4939 if (sec
&& tok
== TOK_STR
&& size1
== 1) {
4940 memcpy(sec
->data
+ c
+ array_length
, cstr
->data
, nb
);
4944 ch
= ((unsigned char *)cstr
->data
)[i
];
4946 ch
= ((nwchar_t
*)cstr
->data
)[i
];
4947 init_putv(t1
, sec
, c
+ (array_length
+ i
) * size1
,
4955 /* only add trailing zero if enough storage (no
4956 warning in this case since it is standard) */
4957 if (n
< 0 || array_length
< n
) {
4959 init_putv(t1
, sec
, c
+ (array_length
* size1
), 0, EXPR_VAL
);
4965 while (tok
!= '}') {
4966 decl_designator(type
, sec
, c
, &index
, NULL
, size_only
);
4967 if (n
>= 0 && index
>= n
)
4968 error("index too large");
4969 /* must put zero in holes (note that doing it that way
4970 ensures that it even works with designators) */
4971 if (!size_only
&& array_length
< index
) {
4972 init_putz(t1
, sec
, c
+ array_length
* size1
,
4973 (index
- array_length
) * size1
);
4976 if (index
> array_length
)
4977 array_length
= index
;
4978 /* special test for multi dimensional arrays (may not
4979 be strictly correct if designators are used at the
4981 if (index
>= n
&& no_oblock
)
4990 /* put zeros at the end */
4991 if (!size_only
&& n
>= 0 && array_length
< n
) {
4992 init_putz(t1
, sec
, c
+ array_length
* size1
,
4993 (n
- array_length
) * size1
);
4995 /* patch type size if needed */
4997 s
->c
= array_length
;
4998 } else if ((type
->t
& VT_BTYPE
) == VT_STRUCT
&&
4999 (sec
|| !first
|| tok
== '{')) {
5002 /* NOTE: the previous test is a specific case for automatic
5003 struct/union init */
5004 /* XXX: union needs only one init */
5006 /* XXX: this test is incorrect for local initializers
5007 beginning with ( without {. It would be much more difficult
5008 to do it correctly (ideally, the expression parser should
5009 be used in all cases) */
5015 while (tok
== '(') {
5019 if (!parse_btype(&type1
, &ad1
))
5021 type_decl(&type1
, &ad1
, &n
, TYPE_ABSTRACT
);
5023 if (!is_assignable_types(type
, &type1
))
5024 error("invalid type for cast");
5029 if (first
|| tok
== '{') {
5038 while (tok
!= '}') {
5039 decl_designator(type
, sec
, c
, NULL
, &f
, size_only
);
5041 if (!size_only
&& array_length
< index
) {
5042 init_putz(type
, sec
, c
+ array_length
,
5043 index
- array_length
);
5045 index
= index
+ type_size(&f
->type
, &align1
);
5046 if (index
> array_length
)
5047 array_length
= index
;
5049 /* gr: skip fields from same union - ugly. */
5051 ///printf("index: %2d %08x -- %2d %08x\n", f->c, f->type.t, f->next->c, f->next->type.t);
5052 /* test for same offset */
5053 if (f
->next
->c
!= f
->c
)
5055 /* if yes, test for bitfield shift */
5056 if ((f
->type
.t
& VT_BITFIELD
) && (f
->next
->type
.t
& VT_BITFIELD
)) {
5057 int bit_pos_1
= (f
->type
.t
>> VT_STRUCT_SHIFT
) & 0x3f;
5058 int bit_pos_2
= (f
->next
->type
.t
>> VT_STRUCT_SHIFT
) & 0x3f;
5059 //printf("bitfield %d %d\n", bit_pos_1, bit_pos_2);
5060 if (bit_pos_1
!= bit_pos_2
)
5067 if (no_oblock
&& f
== NULL
)
5073 /* put zeros at the end */
5074 if (!size_only
&& array_length
< n
) {
5075 init_putz(type
, sec
, c
+ array_length
,
5084 } else if (tok
== '{') {
5086 decl_initializer(type
, sec
, c
, first
, size_only
);
5088 } else if (size_only
) {
5089 /* just skip expression */
5090 parlevel
= parlevel1
= 0;
5091 while ((parlevel
> 0 || parlevel1
> 0 ||
5092 (tok
!= '}' && tok
!= ',')) && tok
!= -1) {
5095 else if (tok
== ')')
5097 else if (tok
== '{')
5099 else if (tok
== '}')
5104 /* currently, we always use constant expression for globals
5105 (may change for scripting case) */
5106 expr_type
= EXPR_CONST
;
5108 expr_type
= EXPR_ANY
;
5109 init_putv(type
, sec
, c
, 0, expr_type
);
5113 /* parse an initializer for type 't' if 'has_init' is non zero, and
5114 allocate space in local or global data space ('r' is either
5115 VT_LOCAL or VT_CONST). If 'v' is non zero, then an associated
5116 variable 'v' with an associated name represented by 'asm_label' of
5117 scope 'scope' is declared before initializers are parsed. If 'v' is
5118 zero, then a reference to the new object is put in the value stack.
5119 If 'has_init' is 2, a special parsing is done to handle string
5121 static void decl_initializer_alloc(CType
*type
, AttributeDef
*ad
, int r
,
5122 int has_init
, int v
, char *asm_label
,
5125 int size
, align
, addr
, data_offset
;
5127 ParseState saved_parse_state
= {0};
5128 TokenString init_str
;
5130 Sym
*flexible_array
;
5132 flexible_array
= NULL
;
5133 if ((type
->t
& VT_BTYPE
) == VT_STRUCT
) {
5136 while (field
&& field
->next
)
5137 field
= field
->next
;
5138 if (field
->type
.t
& VT_ARRAY
&& field
->type
.ref
->c
< 0)
5139 flexible_array
= field
;
5142 size
= type_size(type
, &align
);
5143 /* If unknown size, we must evaluate it before
5144 evaluating initializers because
5145 initializers can generate global data too
5146 (e.g. string pointers or ISOC99 compound
5147 literals). It also simplifies local
5148 initializers handling */
5149 tok_str_new(&init_str
);
5150 if (size
< 0 || (flexible_array
&& has_init
)) {
5152 error("unknown type size");
5153 /* get all init string */
5154 if (has_init
== 2) {
5155 /* only get strings */
5156 while (tok
== TOK_STR
|| tok
== TOK_LSTR
) {
5157 tok_str_add_tok(&init_str
);
5162 while (level
> 0 || (tok
!= ',' && tok
!= ';')) {
5164 error("unexpected end of file in initializer");
5165 tok_str_add_tok(&init_str
);
5168 else if (tok
== '}') {
5178 tok_str_add(&init_str
, -1);
5179 tok_str_add(&init_str
, 0);
5182 save_parse_state(&saved_parse_state
);
5184 macro_ptr
= init_str
.str
;
5186 decl_initializer(type
, NULL
, 0, 1, 1);
5187 /* prepare second initializer parsing */
5188 macro_ptr
= init_str
.str
;
5191 /* if still unknown size, error */
5192 size
= type_size(type
, &align
);
5194 error("unknown type size");
5197 size
+= flexible_array
->type
.ref
->c
* pointed_size(&flexible_array
->type
);
5198 /* take into account specified alignment if bigger */
5200 if (ad
->aligned
> align
)
5201 align
= ad
->aligned
;
5202 } else if (ad
->packed
) {
5205 if ((r
& VT_VALMASK
) == VT_LOCAL
) {
5207 #ifdef CONFIG_TCC_BCHECK
5208 if (tcc_state
->do_bounds_check
&& (type
->t
& VT_ARRAY
)) {
5212 loc
= (loc
- size
) & -align
;
5214 #ifdef CONFIG_TCC_BCHECK
5215 /* handles bounds */
5216 /* XXX: currently, since we do only one pass, we cannot track
5217 '&' operators, so we add only arrays */
5218 if (tcc_state
->do_bounds_check
&& (type
->t
& VT_ARRAY
)) {
5219 unsigned long *bounds_ptr
;
5220 /* add padding between regions */
5222 /* then add local bound info */
5223 bounds_ptr
= section_ptr_add(lbounds_section
, 2 * sizeof(unsigned long));
5224 bounds_ptr
[0] = addr
;
5225 bounds_ptr
[1] = size
;
5229 /* local variable */
5230 sym_push(v
, type
, r
, addr
);
5232 /* push local reference */
5233 vset(type
, r
, addr
);
5239 if (v
&& scope
== VT_CONST
) {
5240 /* see if the symbol was already defined */
5243 if (!is_compatible_types(&sym
->type
, type
))
5244 error("incompatible types for redefinition of '%s'",
5245 get_tok_str(v
, NULL
));
5246 if (sym
->type
.t
& VT_EXTERN
) {
5247 /* if the variable is extern, it was not allocated */
5248 sym
->type
.t
&= ~VT_EXTERN
;
5249 /* set array size if it was ommited in extern
5251 if ((sym
->type
.t
& VT_ARRAY
) &&
5252 sym
->type
.ref
->c
< 0 &&
5254 sym
->type
.ref
->c
= type
->ref
->c
;
5256 /* we accept several definitions of the same
5257 global variable. this is tricky, because we
5258 must play with the SHN_COMMON type of the symbol */
5259 /* XXX: should check if the variable was already
5260 initialized. It is incorrect to initialized it
5262 /* no init data, we won't add more to the symbol */
5269 /* allocate symbol in corresponding section */
5274 else if (tcc_state
->nocommon
)
5278 data_offset
= sec
->data_offset
;
5279 data_offset
= (data_offset
+ align
- 1) & -align
;
5281 /* very important to increment global pointer at this time
5282 because initializers themselves can create new initializers */
5283 data_offset
+= size
;
5284 #ifdef CONFIG_TCC_BCHECK
5285 /* add padding if bound check */
5286 if (tcc_state
->do_bounds_check
)
5289 sec
->data_offset
= data_offset
;
5290 /* allocate section space to put the data */
5291 if (sec
->sh_type
!= SHT_NOBITS
&&
5292 data_offset
> sec
->data_allocated
)
5293 section_realloc(sec
, data_offset
);
5294 /* align section if needed */
5295 if (align
> sec
->sh_addralign
)
5296 sec
->sh_addralign
= align
;
5298 addr
= 0; /* avoid warning */
5302 if (scope
!= VT_CONST
|| !sym
) {
5303 sym
= sym_push(v
, type
, r
| VT_SYM
, 0);
5304 sym
->asm_label
= asm_label
;
5306 /* update symbol definition */
5308 put_extern_sym(sym
, sec
, addr
, size
);
5311 /* put a common area */
5312 put_extern_sym(sym
, NULL
, align
, size
);
5313 /* XXX: find a nicer way */
5314 esym
= &((ElfW(Sym
) *)symtab_section
->data
)[sym
->c
];
5315 esym
->st_shndx
= SHN_COMMON
;
5320 /* push global reference */
5321 sym
= get_sym_ref(type
, sec
, addr
, size
);
5323 vsetc(type
, VT_CONST
| VT_SYM
, &cval
);
5326 /* patch symbol weakness */
5327 if (type
->t
& VT_WEAK
)
5329 #ifdef CONFIG_TCC_BCHECK
5330 /* handles bounds now because the symbol must be defined
5331 before for the relocation */
5332 if (tcc_state
->do_bounds_check
) {
5333 unsigned long *bounds_ptr
;
5335 greloc(bounds_section
, sym
, bounds_section
->data_offset
, R_DATA_PTR
);
5336 /* then add global bound info */
5337 bounds_ptr
= section_ptr_add(bounds_section
, 2 * sizeof(long));
5338 bounds_ptr
[0] = 0; /* relocated */
5339 bounds_ptr
[1] = size
;
5343 if (has_init
|| (type
->t
& VT_VLA
)) {
5344 decl_initializer(type
, sec
, addr
, 1, 0);
5345 /* restore parse state if needed */
5347 tok_str_free(init_str
.str
);
5348 restore_parse_state(&saved_parse_state
);
5350 /* patch flexible array member size back to -1, */
5351 /* for possible subsequent similar declarations */
5353 flexible_array
->type
.ref
->c
= -1;
5358 static void put_func_debug(Sym
*sym
)
5363 /* XXX: we put here a dummy type */
5364 snprintf(buf
, sizeof(buf
), "%s:%c1",
5365 funcname
, sym
->type
.t
& VT_STATIC
? 'f' : 'F');
5366 put_stabs_r(buf
, N_FUN
, 0, file
->line_num
, 0,
5367 cur_text_section
, sym
->c
);
5368 /* //gr gdb wants a line at the function */
5369 put_stabn(N_SLINE
, 0, file
->line_num
, 0);
5374 /* parse an old style function declaration list */
5375 /* XXX: check multiple parameter */
5376 static void func_decl_list(Sym
*func_sym
)
5383 /* parse each declaration */
5384 while (tok
!= '{' && tok
!= ';' && tok
!= ',' && tok
!= TOK_EOF
&&
5385 tok
!= TOK_ASM1
&& tok
!= TOK_ASM2
&& tok
!= TOK_ASM3
) {
5386 if (!parse_btype(&btype
, &ad
))
5387 expect("declaration list");
5388 if (((btype
.t
& VT_BTYPE
) == VT_ENUM
||
5389 (btype
.t
& VT_BTYPE
) == VT_STRUCT
) &&
5391 /* we accept no variable after */
5395 type_decl(&type
, &ad
, &v
, TYPE_DIRECT
);
5396 /* find parameter in function parameter list */
5399 if ((s
->v
& ~SYM_FIELD
) == v
)
5403 error("declaration for parameter '%s' but no such parameter",
5404 get_tok_str(v
, NULL
));
5406 /* check that no storage specifier except 'register' was given */
5407 if (type
.t
& VT_STORAGE
)
5408 error("storage class specified for '%s'", get_tok_str(v
, NULL
));
5409 convert_parameter_type(&type
);
5410 /* we can add the type (NOTE: it could be local to the function) */
5412 /* accept other parameters */
5423 /* parse a function defined by symbol 'sym' and generate its code in
5424 'cur_text_section' */
5425 static void gen_function(Sym
*sym
)
5427 int saved_nocode_wanted
= nocode_wanted
;
5429 ind
= cur_text_section
->data_offset
;
5430 /* NOTE: we patch the symbol size later */
5431 put_extern_sym(sym
, cur_text_section
, ind
, 0);
5432 funcname
= get_tok_str(sym
->v
, NULL
);
5434 /* put debug symbol */
5435 if (tcc_state
->do_debug
)
5436 put_func_debug(sym
);
5437 /* push a dummy symbol to enable local sym storage */
5438 sym_push2(&local_stack
, SYM_FIELD
, 0, 0);
5439 gfunc_prolog(&sym
->type
);
5441 block(NULL
, NULL
, NULL
, NULL
, 0, 0);
5444 cur_text_section
->data_offset
= ind
;
5445 label_pop(&global_label_stack
, NULL
);
5446 sym_pop(&local_stack
, NULL
); /* reset local stack */
5447 /* end of function */
5448 /* patch symbol size */
5449 ((ElfW(Sym
) *)symtab_section
->data
)[sym
->c
].st_size
=
5451 /* patch symbol weakness (this definition overrules any prototype) */
5452 if (sym
->type
.t
& VT_WEAK
)
5454 if (tcc_state
->do_debug
) {
5455 put_stabn(N_FUN
, 0, 0, ind
- func_ind
);
5457 /* It's better to crash than to generate wrong code */
5458 cur_text_section
= NULL
;
5459 funcname
= ""; /* for safety */
5460 func_vt
.t
= VT_VOID
; /* for safety */
5461 ind
= 0; /* for safety */
5462 nocode_wanted
= saved_nocode_wanted
;
5465 ST_FUNC
void gen_inline_functions(void)
5468 int *str
, inline_generated
, i
;
5469 struct InlineFunc
*fn
;
5471 /* iterate while inline function are referenced */
5473 inline_generated
= 0;
5474 for (i
= 0; i
< tcc_state
->nb_inline_fns
; ++i
) {
5475 fn
= tcc_state
->inline_fns
[i
];
5477 if (sym
&& sym
->c
) {
5478 /* the function was used: generate its code and
5479 convert it to a normal function */
5480 str
= fn
->token_str
;
5483 strcpy(file
->filename
, fn
->filename
);
5484 sym
->r
= VT_SYM
| VT_CONST
;
5485 sym
->type
.t
&= ~VT_INLINE
;
5489 cur_text_section
= text_section
;
5491 macro_ptr
= NULL
; /* fail safe */
5493 inline_generated
= 1;
5496 if (!inline_generated
)
5499 for (i
= 0; i
< tcc_state
->nb_inline_fns
; ++i
) {
5500 fn
= tcc_state
->inline_fns
[i
];
5501 str
= fn
->token_str
;
5504 dynarray_reset(&tcc_state
->inline_fns
, &tcc_state
->nb_inline_fns
);
5507 /* 'l' is VT_LOCAL or VT_CONST to define default storage type */
5508 static int decl0(int l
, int is_for_loop_init
)
5516 if (!parse_btype(&btype
, &ad
)) {
5517 if (is_for_loop_init
)
5519 /* skip redundant ';' */
5520 /* XXX: find more elegant solution */
5525 if (l
== VT_CONST
&&
5526 (tok
== TOK_ASM1
|| tok
== TOK_ASM2
|| tok
== TOK_ASM3
)) {
5527 /* global asm block */
5531 /* special test for old K&R protos without explicit int
5532 type. Only accepted when defining global data */
5533 if (l
== VT_LOCAL
|| tok
< TOK_DEFINE
)
5537 if (((btype
.t
& VT_BTYPE
) == VT_ENUM
||
5538 (btype
.t
& VT_BTYPE
) == VT_STRUCT
) &&
5540 /* we accept no variable after */
5544 while (1) { /* iterate thru each declaration */
5545 char *asm_label
; // associated asm label
5547 type_decl(&type
, &ad
, &v
, TYPE_DIRECT
);
5551 type_to_str(buf
, sizeof(buf
), t
, get_tok_str(v
, NULL
));
5552 printf("type = '%s'\n", buf
);
5555 if ((type
.t
& VT_BTYPE
) == VT_FUNC
) {
5556 if ((type
.t
& VT_STATIC
) && (l
== VT_LOCAL
)) {
5557 error("function without file scope cannot be static");
5559 /* if old style function prototype, we accept a
5562 if (sym
->c
== FUNC_OLD
)
5563 func_decl_list(sym
);
5567 if (gnu_ext
&& (tok
== TOK_ASM1
|| tok
== TOK_ASM2
|| tok
== TOK_ASM3
)) {
5570 asm_label_instr(&astr
);
5571 asm_label
= tcc_strdup(astr
.data
);
5574 /* parse one last attribute list, after asm label */
5575 parse_attribute(&ad
);
5580 #ifdef TCC_TARGET_PE
5582 type
.t
|= VT_IMPORT
;
5584 type
.t
|= VT_EXPORT
;
5588 error("cannot use local functions");
5589 if ((type
.t
& VT_BTYPE
) != VT_FUNC
)
5590 expect("function definition");
5592 /* reject abstract declarators in function definition */
5594 while ((sym
= sym
->next
) != NULL
)
5595 if (!(sym
->v
& ~SYM_FIELD
))
5596 expect("identifier");
5598 /* XXX: cannot do better now: convert extern line to static inline */
5599 if ((type
.t
& (VT_EXTERN
| VT_INLINE
)) == (VT_EXTERN
| VT_INLINE
))
5600 type
.t
= (type
.t
& ~VT_EXTERN
) | VT_STATIC
;
5604 if ((sym
->type
.t
& VT_BTYPE
) != VT_FUNC
)
5607 r
= sym
->type
.ref
->r
;
5608 /* use func_call from prototype if not defined */
5609 if (FUNC_CALL(r
) != FUNC_CDECL
5610 && FUNC_CALL(type
.ref
->r
) == FUNC_CDECL
)
5611 FUNC_CALL(type
.ref
->r
) = FUNC_CALL(r
);
5613 /* use export from prototype */
5615 FUNC_EXPORT(type
.ref
->r
) = 1;
5617 /* use static from prototype */
5618 if (sym
->type
.t
& VT_STATIC
)
5619 type
.t
= (type
.t
& ~VT_EXTERN
) | VT_STATIC
;
5621 if (!is_compatible_types(&sym
->type
, &type
)) {
5623 error("incompatible types for redefinition of '%s'",
5624 get_tok_str(v
, NULL
));
5626 /* if symbol is already defined, then put complete type */
5629 /* put function symbol */
5630 sym
= global_identifier_push(v
, type
.t
, 0);
5631 sym
->type
.ref
= type
.ref
;
5634 /* static inline functions are just recorded as a kind
5635 of macro. Their code will be emitted at the end of
5636 the compilation unit only if they are used */
5637 if ((type
.t
& (VT_INLINE
| VT_STATIC
)) ==
5638 (VT_INLINE
| VT_STATIC
)) {
5639 TokenString func_str
;
5641 struct InlineFunc
*fn
;
5642 const char *filename
;
5644 tok_str_new(&func_str
);
5650 error("unexpected end of file");
5651 tok_str_add_tok(&func_str
);
5656 } else if (t
== '}') {
5658 if (block_level
== 0)
5662 tok_str_add(&func_str
, -1);
5663 tok_str_add(&func_str
, 0);
5664 filename
= file
? file
->filename
: "";
5665 fn
= tcc_malloc(sizeof *fn
+ strlen(filename
));
5666 strcpy(fn
->filename
, filename
);
5668 fn
->token_str
= func_str
.str
;
5669 dynarray_add((void ***)&tcc_state
->inline_fns
, &tcc_state
->nb_inline_fns
, fn
);
5672 /* compute text section */
5673 cur_text_section
= ad
.section
;
5674 if (!cur_text_section
)
5675 cur_text_section
= text_section
;
5676 sym
->r
= VT_SYM
| VT_CONST
;
5681 if (btype
.t
& VT_TYPEDEF
) {
5682 /* save typedefed type */
5683 /* XXX: test storage specifiers ? */
5684 sym
= sym_push(v
, &type
, INT_ATTR(&ad
), 0);
5685 sym
->type
.t
|= VT_TYPEDEF
;
5688 if ((type
.t
& VT_BTYPE
) == VT_FUNC
) {
5689 /* external function definition */
5690 /* specific case for func_call attribute */
5691 type
.ref
->r
= INT_ATTR(&ad
);
5692 } else if (!(type
.t
& VT_ARRAY
)) {
5693 /* not lvalue if array */
5694 r
|= lvalue_type(type
.t
);
5696 has_init
= (tok
== '=');
5697 if (has_init
&& (type
.t
& VT_VLA
))
5698 error("Variable length array cannot be initialized");
5699 if ((btype
.t
& VT_EXTERN
) || ((type
.t
& VT_BTYPE
) == VT_FUNC
) ||
5700 ((type
.t
& VT_ARRAY
) && (type
.t
& VT_STATIC
) &&
5701 !has_init
&& l
== VT_CONST
&& type
.ref
->c
< 0)) {
5702 /* external variable or function */
5703 /* NOTE: as GCC, uninitialized global static
5704 arrays of null size are considered as
5706 sym
= external_sym(v
, &type
, r
, asm_label
);
5708 if (type
.t
& VT_WEAK
)
5711 if (ad
.alias_target
) {
5716 alias_target
= sym_find(ad
.alias_target
);
5717 if (!alias_target
|| !alias_target
->c
)
5718 error("unsupported forward __alias__ attribute");
5719 esym
= &((Elf32_Sym
*)symtab_section
->data
)[alias_target
->c
];
5720 tsec
.sh_num
= esym
->st_shndx
;
5721 put_extern_sym2(sym
, &tsec
, esym
->st_value
, esym
->st_size
, 0);
5724 type
.t
|= (btype
.t
& VT_STATIC
); /* Retain "static". */
5725 if (type
.t
& VT_STATIC
)
5731 decl_initializer_alloc(&type
, &ad
, r
, has_init
, v
, asm_label
, l
);
5735 if (is_for_loop_init
)
5748 ST_FUNC
void decl(int l
)