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
*scope_stack_bottom
;
54 ST_DATA Sym
*define_stack
;
55 ST_DATA Sym
*global_label_stack
;
56 ST_DATA Sym
*local_label_stack
;
58 ST_DATA
int vla_sp_loc_tmp
; /* vla_sp_loc is set to this when the value won't be needed later */
59 ST_DATA
int vla_sp_root_loc
; /* vla_sp_loc for SP before any VLAs were pushed */
60 ST_DATA
int *vla_sp_loc
; /* Pointer to variable holding location to store stack pointer on the stack when modifying stack pointer */
61 ST_DATA
int vla_flags
; /* VLA_* flags */
63 ST_DATA SValue __vstack
[1+VSTACK_SIZE
], *vtop
;
65 ST_DATA
int const_wanted
; /* true if constant wanted */
66 ST_DATA
int nocode_wanted
; /* true if no code generation wanted for an expression */
67 ST_DATA
int global_expr
; /* true if compound literals must be allocated globally (used during initializers parsing */
68 ST_DATA CType func_vt
; /* current function return type (used by return instruction) */
70 ST_DATA
int last_line_num
, last_ind
, func_ind
; /* debug last line number and pc */
71 ST_DATA
char *funcname
;
73 ST_DATA CType char_pointer_type
, func_old_type
, int_type
, size_type
;
75 /* ------------------------------------------------------------------------- */
76 static void gen_cast(CType
*type
);
77 static inline CType
*pointed_type(CType
*type
);
78 static int is_compatible_types(CType
*type1
, CType
*type2
);
79 static int parse_btype(CType
*type
, AttributeDef
*ad
);
80 static void type_decl(CType
*type
, AttributeDef
*ad
, int *v
, int td
);
81 static void parse_expr_type(CType
*type
);
82 static void decl_initializer(CType
*type
, Section
*sec
, unsigned long c
, int first
, int size_only
);
83 static void block(int *bsym
, int *csym
, int *case_sym
, int *def_sym
, int case_reg
, int is_expr
);
84 static void decl_initializer_alloc(CType
*type
, AttributeDef
*ad
, int r
, int has_init
, int v
, char *asm_label
, int scope
);
85 static int decl0(int l
, int is_for_loop_init
);
86 static void expr_eq(void);
87 static void unary_type(CType
*type
);
88 static void vla_runtime_type_size(CType
*type
, int *a
);
89 static void vla_sp_save(void);
90 static int is_compatible_parameter_types(CType
*type1
, CType
*type2
);
91 static void expr_type(CType
*type
);
93 ST_INLN
int is_float(int t
)
97 return bt
== VT_LDOUBLE
|| bt
== VT_DOUBLE
|| bt
== VT_FLOAT
|| bt
== VT_QFLOAT
;
100 /* we use our own 'finite' function to avoid potential problems with
101 non standard math libs */
102 /* XXX: endianness dependent */
103 ST_FUNC
int ieee_finite(double d
)
106 return ((unsigned)((p
[1] | 0x800fffff) + 1)) >> 31;
109 ST_FUNC
void test_lvalue(void)
111 if (!(vtop
->r
& VT_LVAL
))
115 /* ------------------------------------------------------------------------- */
116 /* symbol allocator */
117 static Sym
*__sym_malloc(void)
119 Sym
*sym_pool
, *sym
, *last_sym
;
122 sym_pool
= tcc_malloc(SYM_POOL_NB
* sizeof(Sym
));
123 dynarray_add(&sym_pools
, &nb_sym_pools
, sym_pool
);
125 last_sym
= sym_free_first
;
127 for(i
= 0; i
< SYM_POOL_NB
; i
++) {
128 sym
->next
= last_sym
;
132 sym_free_first
= last_sym
;
136 static inline Sym
*sym_malloc(void)
139 sym
= sym_free_first
;
141 sym
= __sym_malloc();
142 sym_free_first
= sym
->next
;
146 ST_INLN
void sym_free(Sym
*sym
)
148 sym
->next
= sym_free_first
;
149 tcc_free(sym
->asm_label
);
150 sym_free_first
= sym
;
153 /* push, without hashing */
154 ST_FUNC Sym
*sym_push2(Sym
**ps
, int v
, int t
, long c
)
157 if (ps
== &local_stack
) {
158 for (s
= *ps
; s
&& s
!= scope_stack_bottom
; s
= s
->prev
)
159 if (!(v
& SYM_FIELD
) && (v
& ~SYM_STRUCT
) < SYM_FIRST_ANOM
&& s
->v
== v
)
160 tcc_error("incompatible types for redefinition of '%s'",
161 get_tok_str(v
, NULL
));
180 /* find a symbol and return its associated structure. 's' is the top
181 of the symbol stack */
182 ST_FUNC Sym
*sym_find2(Sym
*s
, int v
)
192 /* structure lookup */
193 ST_INLN Sym
*struct_find(int v
)
196 if ((unsigned)v
>= (unsigned)(tok_ident
- TOK_IDENT
))
198 return table_ident
[v
]->sym_struct
;
201 /* find an identifier */
202 ST_INLN Sym
*sym_find(int v
)
205 if ((unsigned)v
>= (unsigned)(tok_ident
- TOK_IDENT
))
207 return table_ident
[v
]->sym_identifier
;
210 /* push a given symbol on the symbol stack */
211 ST_FUNC Sym
*sym_push(int v
, CType
*type
, int r
, int c
)
220 s
= sym_push2(ps
, v
, type
->t
, c
);
221 s
->type
.ref
= type
->ref
;
223 /* don't record fields or anonymous symbols */
225 if (!(v
& SYM_FIELD
) && (v
& ~SYM_STRUCT
) < SYM_FIRST_ANOM
) {
226 /* record symbol in token array */
227 ts
= table_ident
[(v
& ~SYM_STRUCT
) - TOK_IDENT
];
229 ps
= &ts
->sym_struct
;
231 ps
= &ts
->sym_identifier
;
238 /* push a global identifier */
239 ST_FUNC Sym
*global_identifier_push(int v
, int t
, int c
)
242 s
= sym_push2(&global_stack
, v
, t
, c
);
243 /* don't record anonymous symbol */
244 if (v
< SYM_FIRST_ANOM
) {
245 ps
= &table_ident
[v
- TOK_IDENT
]->sym_identifier
;
246 /* modify the top most local identifier, so that
247 sym_identifier will point to 's' when popped */
249 ps
= &(*ps
)->prev_tok
;
256 /* pop symbols until top reaches 'b' */
257 ST_FUNC
void sym_pop(Sym
**ptop
, Sym
*b
)
267 /* remove symbol in token array */
269 if (!(v
& SYM_FIELD
) && (v
& ~SYM_STRUCT
) < SYM_FIRST_ANOM
) {
270 ts
= table_ident
[(v
& ~SYM_STRUCT
) - TOK_IDENT
];
272 ps
= &ts
->sym_struct
;
274 ps
= &ts
->sym_identifier
;
283 static void weaken_symbol(Sym
*sym
)
285 sym
->type
.t
|= VT_WEAK
;
290 esym
= &((ElfW(Sym
) *)symtab_section
->data
)[sym
->c
];
291 esym_type
= ELFW(ST_TYPE
)(esym
->st_info
);
292 esym
->st_info
= ELFW(ST_INFO
)(STB_WEAK
, esym_type
);
296 /* ------------------------------------------------------------------------- */
298 ST_FUNC
void swap(int *p
, int *q
)
306 static void vsetc(CType
*type
, int r
, CValue
*vc
)
310 if (vtop
>= vstack
+ (VSTACK_SIZE
- 1))
311 tcc_error("memory full");
312 /* cannot let cpu flags if other instruction are generated. Also
313 avoid leaving VT_JMP anywhere except on the top of the stack
314 because it would complicate the code generator. */
315 if (vtop
>= vstack
) {
316 v
= vtop
->r
& VT_VALMASK
;
317 if (v
== VT_CMP
|| (v
& ~1) == VT_JMP
)
327 /* push constant of type "type" with useless value */
328 void vpush(CType
*type
)
331 vsetc(type
, VT_CONST
, &cval
);
334 /* push integer constant */
335 ST_FUNC
void vpushi(int v
)
339 vsetc(&int_type
, VT_CONST
, &cval
);
342 /* push a pointer sized constant */
343 static void vpushs(long long v
)
350 vsetc(&size_type
, VT_CONST
, &cval
);
353 /* push arbitrary 64bit constant */
354 void vpush64(int ty
, unsigned long long v
)
361 vsetc(&ctype
, VT_CONST
, &cval
);
364 /* push long long constant */
365 static inline void vpushll(long long v
)
367 vpush64(VT_LLONG
, v
);
370 /* Return a static symbol pointing to a section */
371 ST_FUNC Sym
*get_sym_ref(CType
*type
, Section
*sec
, unsigned long offset
, unsigned long size
)
377 sym
= global_identifier_push(v
, type
->t
| VT_STATIC
, 0);
378 sym
->type
.ref
= type
->ref
;
379 sym
->r
= VT_CONST
| VT_SYM
;
380 put_extern_sym(sym
, sec
, offset
, size
);
384 /* push a reference to a section offset by adding a dummy symbol */
385 static void vpush_ref(CType
*type
, Section
*sec
, unsigned long offset
, unsigned long size
)
390 vsetc(type
, VT_CONST
| VT_SYM
, &cval
);
391 vtop
->sym
= get_sym_ref(type
, sec
, offset
, size
);
394 /* define a new external reference to a symbol 'v' of type 'u' */
395 ST_FUNC Sym
*external_global_sym(int v
, CType
*type
, int r
)
401 /* push forward reference */
402 s
= global_identifier_push(v
, type
->t
| VT_EXTERN
, 0);
403 s
->type
.ref
= type
->ref
;
404 s
->r
= r
| VT_CONST
| VT_SYM
;
409 /* define a new external reference to a symbol 'v' with alternate asm
410 name 'asm_label' of type 'u'. 'asm_label' is equal to NULL if there
411 is no alternate name (most cases) */
412 static Sym
*external_sym(int v
, CType
*type
, int r
, char *asm_label
)
418 /* push forward reference */
419 s
= sym_push(v
, type
, r
| VT_CONST
| VT_SYM
, 0);
420 s
->asm_label
= asm_label
;
421 s
->type
.t
|= VT_EXTERN
;
422 } else if (s
->type
.ref
== func_old_type
.ref
) {
423 s
->type
.ref
= type
->ref
;
424 s
->r
= r
| VT_CONST
| VT_SYM
;
425 s
->type
.t
|= VT_EXTERN
;
426 } else if (!is_compatible_types(&s
->type
, type
)) {
427 tcc_error("incompatible types for redefinition of '%s'",
428 get_tok_str(v
, NULL
));
433 /* push a reference to global symbol v */
434 ST_FUNC
void vpush_global_sym(CType
*type
, int v
)
439 sym
= external_global_sym(v
, type
, 0);
441 vsetc(type
, VT_CONST
| VT_SYM
, &cval
);
445 ST_FUNC
void vset(CType
*type
, int r
, int v
)
450 vsetc(type
, r
, &cval
);
453 static void vseti(int r
, int v
)
461 ST_FUNC
void vswap(void)
464 /* cannot let cpu flags if other instruction are generated. Also
465 avoid leaving VT_JMP anywhere except on the top of the stack
466 because it would complicate the code generator. */
467 if (vtop
>= vstack
) {
468 int v
= vtop
->r
& VT_VALMASK
;
469 if (v
== VT_CMP
|| (v
& ~1) == VT_JMP
)
476 /* XXX: +2% overall speed possible with optimized memswap
478 * memswap(&vtop[0], &vtop[1], sizeof *vtop);
482 ST_FUNC
void vpushv(SValue
*v
)
484 if (vtop
>= vstack
+ (VSTACK_SIZE
- 1))
485 tcc_error("memory full");
490 static void vdup(void)
495 /* save r to the memory stack, and mark it as being free */
496 ST_FUNC
void save_reg(int r
)
498 int l
, saved
, size
, align
;
502 /* modify all stack values */
505 for(p
=vstack
;p
<=vtop
;p
++) {
506 if ((p
->r
& VT_VALMASK
) == r
||
507 ((p
->type
.t
& VT_BTYPE
) == VT_LLONG
&& (p
->r2
& VT_VALMASK
) == r
)) {
508 /* must save value on stack if not already done */
510 /* NOTE: must reload 'r' because r might be equal to r2 */
511 r
= p
->r
& VT_VALMASK
;
512 /* store register in the stack */
514 if ((p
->r
& VT_LVAL
) ||
515 (!is_float(type
->t
) && (type
->t
& VT_BTYPE
) != VT_LLONG
))
516 #ifdef TCC_TARGET_X86_64
517 type
= &char_pointer_type
;
521 size
= type_size(type
, &align
);
522 loc
= (loc
- size
) & -align
;
524 sv
.r
= VT_LOCAL
| VT_LVAL
;
527 #if defined(TCC_TARGET_I386) || defined(TCC_TARGET_X86_64)
528 /* x86 specific: need to pop fp register ST0 if saved */
530 o(0xd8dd); /* fstp %st(0) */
533 #ifndef TCC_TARGET_X86_64
534 /* special long long case */
535 if ((type
->t
& VT_BTYPE
) == VT_LLONG
) {
543 /* mark that stack entry as being saved on the stack */
544 if (p
->r
& VT_LVAL
) {
545 /* also clear the bounded flag because the
546 relocation address of the function was stored in
548 p
->r
= (p
->r
& ~(VT_VALMASK
| VT_BOUNDED
)) | VT_LLOCAL
;
550 p
->r
= lvalue_type(p
->type
.t
) | VT_LOCAL
;
558 #ifdef TCC_TARGET_ARM
559 /* find a register of class 'rc2' with at most one reference on stack.
560 * If none, call get_reg(rc) */
561 ST_FUNC
int get_reg_ex(int rc
, int rc2
)
566 for(r
=0;r
<NB_REGS
;r
++) {
567 if (reg_classes
[r
] & rc2
) {
570 for(p
= vstack
; p
<= vtop
; p
++) {
571 if ((p
->r
& VT_VALMASK
) == r
||
572 (p
->r2
& VT_VALMASK
) == r
)
583 /* find a free register of class 'rc'. If none, save one register */
584 ST_FUNC
int get_reg(int rc
)
589 /* find a free register */
590 for(r
=0;r
<NB_REGS
;r
++) {
591 if (reg_classes
[r
] & rc
) {
592 for(p
=vstack
;p
<=vtop
;p
++) {
593 if ((p
->r
& VT_VALMASK
) == r
||
594 (p
->r2
& VT_VALMASK
) == r
)
602 /* no register left : free the first one on the stack (VERY
603 IMPORTANT to start from the bottom to ensure that we don't
604 spill registers used in gen_opi()) */
605 for(p
=vstack
;p
<=vtop
;p
++) {
606 /* look at second register (if long long) */
607 r
= p
->r2
& VT_VALMASK
;
608 if (r
< VT_CONST
&& (reg_classes
[r
] & rc
))
610 r
= p
->r
& VT_VALMASK
;
611 if (r
< VT_CONST
&& (reg_classes
[r
] & rc
)) {
617 /* Should never comes here */
621 /* save registers up to (vtop - n) stack entry */
622 ST_FUNC
void save_regs(int n
)
627 for(p
= vstack
;p
<= p1
; p
++) {
628 r
= p
->r
& VT_VALMASK
;
635 /* move register 's' (of type 't') to 'r', and flush previous value of r to memory
637 static void move_reg(int r
, int s
, int t
)
651 /* get address of vtop (vtop MUST BE an lvalue) */
652 static void gaddrof(void)
654 if (vtop
->r
& VT_REF
)
657 /* tricky: if saved lvalue, then we can go back to lvalue */
658 if ((vtop
->r
& VT_VALMASK
) == VT_LLOCAL
)
659 vtop
->r
= (vtop
->r
& ~(VT_VALMASK
| VT_LVAL_TYPE
)) | VT_LOCAL
| VT_LVAL
;
664 #ifdef CONFIG_TCC_BCHECK
665 /* generate lvalue bound code */
666 static void gbound(void)
671 vtop
->r
&= ~VT_MUSTBOUND
;
672 /* if lvalue, then use checking code before dereferencing */
673 if (vtop
->r
& VT_LVAL
) {
674 /* if not VT_BOUNDED value, then make one */
675 if (!(vtop
->r
& VT_BOUNDED
)) {
676 lval_type
= vtop
->r
& (VT_LVAL_TYPE
| VT_LVAL
);
677 /* must save type because we must set it to int to get pointer */
679 vtop
->type
.t
= VT_INT
;
682 gen_bounded_ptr_add();
683 vtop
->r
|= lval_type
;
686 /* then check for dereferencing */
687 gen_bounded_ptr_deref();
692 /* store vtop a register belonging to class 'rc'. lvalues are
693 converted to values. Cannot be used if cannot be converted to
694 register value (such as structures). */
695 ST_FUNC
int gv(int rc
)
697 int r
, bit_pos
, bit_size
, size
, align
, i
;
700 /* NOTE: get_reg can modify vstack[] */
701 if (vtop
->type
.t
& VT_BITFIELD
) {
704 bit_pos
= (vtop
->type
.t
>> VT_STRUCT_SHIFT
) & 0x3f;
705 bit_size
= (vtop
->type
.t
>> (VT_STRUCT_SHIFT
+ 6)) & 0x3f;
706 /* remove bit field info to avoid loops */
707 vtop
->type
.t
&= ~(VT_BITFIELD
| (-1 << VT_STRUCT_SHIFT
));
708 /* cast to int to propagate signedness in following ops */
709 if ((vtop
->type
.t
& VT_BTYPE
) == VT_LLONG
) {
714 if((vtop
->type
.t
& VT_UNSIGNED
) ||
715 (vtop
->type
.t
& VT_BTYPE
) == VT_BOOL
)
716 type
.t
|= VT_UNSIGNED
;
718 /* generate shifts */
719 vpushi(bits
- (bit_pos
+ bit_size
));
721 vpushi(bits
- bit_size
);
722 /* NOTE: transformed to SHR if unsigned */
726 if (is_float(vtop
->type
.t
) &&
727 (vtop
->r
& (VT_VALMASK
| VT_LVAL
)) == VT_CONST
) {
730 unsigned long offset
;
731 #if defined(TCC_TARGET_ARM) && !defined(TCC_ARM_VFP)
735 /* XXX: unify with initializers handling ? */
736 /* CPUs usually cannot use float constants, so we store them
737 generically in data segment */
738 size
= type_size(&vtop
->type
, &align
);
739 offset
= (data_section
->data_offset
+ align
- 1) & -align
;
740 data_section
->data_offset
= offset
;
741 /* XXX: not portable yet */
742 #if defined(__i386__) || defined(__x86_64__)
743 /* Zero pad x87 tenbyte long doubles */
744 if (size
== LDOUBLE_SIZE
) {
745 vtop
->c
.tab
[2] &= 0xffff;
746 #if LDOUBLE_SIZE == 16
751 ptr
= section_ptr_add(data_section
, size
);
753 #if defined(TCC_TARGET_ARM) && !defined(TCC_ARM_VFP)
757 ptr
[i
] = vtop
->c
.tab
[size
-1-i
];
761 ptr
[i
] = vtop
->c
.tab
[i
];
762 sym
= get_sym_ref(&vtop
->type
, data_section
, offset
, size
<< 2);
763 vtop
->r
|= VT_LVAL
| VT_SYM
;
767 #ifdef CONFIG_TCC_BCHECK
768 if (vtop
->r
& VT_MUSTBOUND
)
772 r
= vtop
->r
& VT_VALMASK
;
773 rc2
= (rc
& RC_FLOAT
) ? RC_FLOAT
: RC_INT
;
776 #ifdef TCC_TARGET_X86_64
777 else if (rc
== RC_FRET
)
781 /* need to reload if:
783 - lvalue (need to dereference pointer)
784 - already a register, but not in the right class */
786 || (vtop
->r
& VT_LVAL
)
787 || !(reg_classes
[r
] & rc
)
788 #ifdef TCC_TARGET_X86_64
789 || ((vtop
->type
.t
& VT_BTYPE
) == VT_QLONG
&& !(reg_classes
[vtop
->r2
] & rc2
))
790 || ((vtop
->type
.t
& VT_BTYPE
) == VT_QFLOAT
&& !(reg_classes
[vtop
->r2
] & rc2
))
792 || ((vtop
->type
.t
& VT_BTYPE
) == VT_LLONG
&& !(reg_classes
[vtop
->r2
] & rc2
))
797 #ifdef TCC_TARGET_X86_64
798 if (((vtop
->type
.t
& VT_BTYPE
) == VT_QLONG
) || ((vtop
->type
.t
& VT_BTYPE
) == VT_QFLOAT
)) {
799 int addr_type
= VT_LLONG
, load_size
= 8, load_type
= ((vtop
->type
.t
& VT_BTYPE
) == VT_QLONG
) ? VT_LLONG
: VT_DOUBLE
;
801 if ((vtop
->type
.t
& VT_BTYPE
) == VT_LLONG
) {
802 int addr_type
= VT_INT
, load_size
= 4, load_type
= VT_INT
;
803 unsigned long long ll
;
805 int r2
, original_type
;
806 original_type
= vtop
->type
.t
;
807 /* two register type load : expand to two words
809 #ifndef TCC_TARGET_X86_64
810 if ((vtop
->r
& (VT_VALMASK
| VT_LVAL
)) == VT_CONST
) {
813 vtop
->c
.ui
= ll
; /* first word */
815 vtop
->r
= r
; /* save register value */
816 vpushi(ll
>> 32); /* second word */
819 if (r
>= VT_CONST
|| /* XXX: test to VT_CONST incorrect ? */
820 (vtop
->r
& VT_LVAL
)) {
821 /* We do not want to modifier the long long
822 pointer here, so the safest (and less
823 efficient) is to save all the other registers
824 in the stack. XXX: totally inefficient. */
826 /* load from memory */
827 vtop
->type
.t
= load_type
;
830 vtop
[-1].r
= r
; /* save register value */
831 /* increment pointer to get second word */
832 vtop
->type
.t
= addr_type
;
837 vtop
->type
.t
= load_type
;
842 vtop
[-1].r
= r
; /* save register value */
843 vtop
->r
= vtop
[-1].r2
;
845 /* Allocate second register. Here we rely on the fact that
846 get_reg() tries first to free r2 of an SValue. */
850 /* write second register */
852 vtop
->type
.t
= original_type
;
853 } else if ((vtop
->r
& VT_LVAL
) && !is_float(vtop
->type
.t
)) {
855 /* lvalue of scalar type : need to use lvalue type
856 because of possible cast */
859 /* compute memory access type */
860 if (vtop
->r
& VT_REF
)
861 #ifdef TCC_TARGET_X86_64
866 else if (vtop
->r
& VT_LVAL_BYTE
)
868 else if (vtop
->r
& VT_LVAL_SHORT
)
870 if (vtop
->r
& VT_LVAL_UNSIGNED
)
874 /* restore wanted type */
877 /* one register type load */
882 #ifdef TCC_TARGET_C67
883 /* uses register pairs for doubles */
884 if ((vtop
->type
.t
& VT_BTYPE
) == VT_DOUBLE
)
891 /* generate vtop[-1] and vtop[0] in resp. classes rc1 and rc2 */
892 ST_FUNC
void gv2(int rc1
, int rc2
)
896 /* generate more generic register first. But VT_JMP or VT_CMP
897 values must be generated first in all cases to avoid possible
899 v
= vtop
[0].r
& VT_VALMASK
;
900 if (v
!= VT_CMP
&& (v
& ~1) != VT_JMP
&& rc1
<= rc2
) {
905 /* test if reload is needed for first register */
906 if ((vtop
[-1].r
& VT_VALMASK
) >= VT_CONST
) {
916 /* test if reload is needed for first register */
917 if ((vtop
[0].r
& VT_VALMASK
) >= VT_CONST
) {
923 /* wrapper around RC_FRET to return a register by type */
924 static int rc_fret(int t
)
926 #ifdef TCC_TARGET_X86_64
927 if (t
== VT_LDOUBLE
) {
934 /* wrapper around REG_FRET to return a register by type */
935 static int reg_fret(int t
)
937 #ifdef TCC_TARGET_X86_64
938 if (t
== VT_LDOUBLE
) {
945 /* expand long long on stack in two int registers */
946 static void lexpand(void)
950 u
= vtop
->type
.t
& VT_UNSIGNED
;
953 vtop
[0].r
= vtop
[-1].r2
;
954 vtop
[0].r2
= VT_CONST
;
955 vtop
[-1].r2
= VT_CONST
;
956 vtop
[0].type
.t
= VT_INT
| u
;
957 vtop
[-1].type
.t
= VT_INT
| u
;
960 #ifdef TCC_TARGET_ARM
961 /* expand long long on stack */
962 ST_FUNC
void lexpand_nr(void)
966 u
= vtop
->type
.t
& VT_UNSIGNED
;
969 vtop
->type
.t
= VT_INT
| u
;
970 v
=vtop
[-1].r
& (VT_VALMASK
| VT_LVAL
);
972 vtop
[-1].c
.ui
= vtop
->c
.ull
;
973 vtop
->c
.ui
= vtop
->c
.ull
>> 32;
975 } else if (v
== (VT_LVAL
|VT_CONST
) || v
== (VT_LVAL
|VT_LOCAL
)) {
977 vtop
->r
= vtop
[-1].r
;
978 } else if (v
> VT_CONST
) {
982 vtop
->r
= vtop
[-1].r2
;
983 vtop
[-1].r2
= VT_CONST
;
984 vtop
[-1].type
.t
= VT_INT
| u
;
988 /* build a long long from two ints */
989 static void lbuild(int t
)
992 vtop
[-1].r2
= vtop
[0].r
;
997 /* rotate n first stack elements to the bottom
998 I1 ... In -> I2 ... In I1 [top is right]
1000 ST_FUNC
void vrotb(int n
)
1006 for(i
=-n
+1;i
!=0;i
++)
1007 vtop
[i
] = vtop
[i
+1];
1011 /* rotate the n elements before entry e towards the top
1012 I1 ... In ... -> In I1 ... I(n-1) ... [top is right]
1014 ST_FUNC
void vrote(SValue
*e
, int n
)
1020 for(i
= 0;i
< n
- 1; i
++)
1025 /* rotate n first stack elements to the top
1026 I1 ... In -> In I1 ... I(n-1) [top is right]
1028 ST_FUNC
void vrott(int n
)
1033 /* pop stack value */
1034 ST_FUNC
void vpop(void)
1037 v
= vtop
->r
& VT_VALMASK
;
1038 #if defined(TCC_TARGET_I386) || defined(TCC_TARGET_X86_64)
1039 /* for x86, we need to pop the FP stack */
1040 if (v
== TREG_ST0
&& !nocode_wanted
) {
1041 o(0xd8dd); /* fstp %st(0) */
1044 if (v
== VT_JMP
|| v
== VT_JMPI
) {
1045 /* need to put correct jump if && or || without test */
1051 /* convert stack entry to register and duplicate its value in another
1053 static void gv_dup(void)
1059 if ((t
& VT_BTYPE
) == VT_LLONG
) {
1066 /* stack: H L L1 H1 */
1074 /* duplicate value */
1079 #ifdef TCC_TARGET_X86_64
1080 if ((t
& VT_BTYPE
) == VT_LDOUBLE
) {
1090 load(r1
, &sv
); /* move r to r1 */
1092 /* duplicates value */
1098 /* Generate value test
1100 * Generate a test for any value (jump, comparison and integers) */
1101 int gvtst(int inv
, int t
)
1103 int v
= vtop
->r
& VT_VALMASK
;
1104 if (v
!= VT_CMP
&& v
!= VT_JMP
&& v
!= VT_JMPI
) {
1108 if ((vtop
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) == VT_CONST
) {
1109 /* constant jmp optimization */
1110 if ((vtop
->c
.i
!= 0) != inv
)
1115 return gtst(inv
, t
);
1118 #ifndef TCC_TARGET_X86_64
1119 /* generate CPU independent (unsigned) long long operations */
1120 static void gen_opl(int op
)
1122 int t
, a
, b
, op1
, c
, i
;
1124 unsigned short reg_iret
= REG_IRET
;
1125 unsigned short reg_lret
= REG_LRET
;
1131 func
= TOK___divdi3
;
1134 func
= TOK___udivdi3
;
1137 func
= TOK___moddi3
;
1140 func
= TOK___umoddi3
;
1147 /* call generic long long function */
1148 vpush_global_sym(&func_old_type
, func
);
1153 vtop
->r2
= reg_lret
;
1166 /* stack: L1 H1 L2 H2 */
1171 vtop
[-2] = vtop
[-3];
1174 /* stack: H1 H2 L1 L2 */
1180 /* stack: H1 H2 L1 L2 ML MH */
1183 /* stack: ML MH H1 H2 L1 L2 */
1187 /* stack: ML MH H1 L2 H2 L1 */
1192 /* stack: ML MH M1 M2 */
1195 } else if (op
== '+' || op
== '-') {
1196 /* XXX: add non carry method too (for MIPS or alpha) */
1202 /* stack: H1 H2 (L1 op L2) */
1205 gen_op(op1
+ 1); /* TOK_xxxC2 */
1208 /* stack: H1 H2 (L1 op L2) */
1211 /* stack: (L1 op L2) H1 H2 */
1213 /* stack: (L1 op L2) (H1 op H2) */
1221 if ((vtop
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) == VT_CONST
) {
1222 t
= vtop
[-1].type
.t
;
1226 /* stack: L H shift */
1228 /* constant: simpler */
1229 /* NOTE: all comments are for SHL. the other cases are
1230 done by swaping words */
1241 if (op
!= TOK_SAR
) {
1274 /* XXX: should provide a faster fallback on x86 ? */
1277 func
= TOK___ashrdi3
;
1280 func
= TOK___lshrdi3
;
1283 func
= TOK___ashldi3
;
1289 /* compare operations */
1295 /* stack: L1 H1 L2 H2 */
1297 vtop
[-1] = vtop
[-2];
1299 /* stack: L1 L2 H1 H2 */
1302 /* when values are equal, we need to compare low words. since
1303 the jump is inverted, we invert the test too. */
1306 else if (op1
== TOK_GT
)
1308 else if (op1
== TOK_ULT
)
1310 else if (op1
== TOK_UGT
)
1315 if (op1
!= TOK_NE
) {
1319 /* generate non equal test */
1320 /* XXX: NOT PORTABLE yet */
1324 #if defined(TCC_TARGET_I386)
1325 b
= psym(0x850f, 0);
1326 #elif defined(TCC_TARGET_ARM)
1328 o(0x1A000000 | encbranch(ind
, 0, 1));
1329 #elif defined(TCC_TARGET_C67)
1330 tcc_error("not implemented");
1332 #error not supported
1336 /* compare low. Always unsigned */
1340 else if (op1
== TOK_LE
)
1342 else if (op1
== TOK_GT
)
1344 else if (op1
== TOK_GE
)
1355 /* handle integer constant optimizations and various machine
1357 static void gen_opic(int op
)
1359 int c1
, c2
, t1
, t2
, n
;
1362 typedef unsigned long long U
;
1366 t1
= v1
->type
.t
& VT_BTYPE
;
1367 t2
= v2
->type
.t
& VT_BTYPE
;
1371 else if (v1
->type
.t
& VT_UNSIGNED
)
1378 else if (v2
->type
.t
& VT_UNSIGNED
)
1383 /* currently, we cannot do computations with forward symbols */
1384 c1
= (v1
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) == VT_CONST
;
1385 c2
= (v2
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) == VT_CONST
;
1388 case '+': l1
+= l2
; break;
1389 case '-': l1
-= l2
; break;
1390 case '&': l1
&= l2
; break;
1391 case '^': l1
^= l2
; break;
1392 case '|': l1
|= l2
; break;
1393 case '*': l1
*= l2
; break;
1400 /* if division by zero, generate explicit division */
1403 tcc_error("division by zero in constant");
1407 default: l1
/= l2
; break;
1408 case '%': l1
%= l2
; break;
1409 case TOK_UDIV
: l1
= (U
)l1
/ l2
; break;
1410 case TOK_UMOD
: l1
= (U
)l1
% l2
; break;
1413 case TOK_SHL
: l1
<<= l2
; break;
1414 case TOK_SHR
: l1
= (U
)l1
>> l2
; break;
1415 case TOK_SAR
: l1
>>= l2
; break;
1417 case TOK_ULT
: l1
= (U
)l1
< (U
)l2
; break;
1418 case TOK_UGE
: l1
= (U
)l1
>= (U
)l2
; break;
1419 case TOK_EQ
: l1
= l1
== l2
; break;
1420 case TOK_NE
: l1
= l1
!= l2
; break;
1421 case TOK_ULE
: l1
= (U
)l1
<= (U
)l2
; break;
1422 case TOK_UGT
: l1
= (U
)l1
> (U
)l2
; break;
1423 case TOK_LT
: l1
= l1
< l2
; break;
1424 case TOK_GE
: l1
= l1
>= l2
; break;
1425 case TOK_LE
: l1
= l1
<= l2
; break;
1426 case TOK_GT
: l1
= l1
> l2
; break;
1428 case TOK_LAND
: l1
= l1
&& l2
; break;
1429 case TOK_LOR
: l1
= l1
|| l2
; break;
1436 /* if commutative ops, put c2 as constant */
1437 if (c1
&& (op
== '+' || op
== '&' || op
== '^' ||
1438 op
== '|' || op
== '*')) {
1440 c2
= c1
; //c = c1, c1 = c2, c2 = c;
1441 l2
= l1
; //l = l1, l1 = l2, l2 = l;
1443 /* Filter out NOP operations like x*1, x-0, x&-1... */
1444 if (c2
&& (((op
== '*' || op
== '/' || op
== TOK_UDIV
||
1447 ((op
== '+' || op
== '-' || op
== '|' || op
== '^' ||
1448 op
== TOK_SHL
|| op
== TOK_SHR
|| op
== TOK_SAR
) &&
1454 } else if (c2
&& (op
== '*' || op
== TOK_PDIV
|| op
== TOK_UDIV
)) {
1455 /* try to use shifts instead of muls or divs */
1456 if (l2
> 0 && (l2
& (l2
- 1)) == 0) {
1465 else if (op
== TOK_PDIV
)
1471 } else if (c2
&& (op
== '+' || op
== '-') &&
1472 (((vtop
[-1].r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) == (VT_CONST
| VT_SYM
))
1473 || (vtop
[-1].r
& (VT_VALMASK
| VT_LVAL
)) == VT_LOCAL
)) {
1474 /* symbol + constant case */
1481 if (!nocode_wanted
) {
1482 /* call low level op generator */
1483 if (t1
== VT_LLONG
|| t2
== VT_LLONG
)
1494 /* generate a floating point operation with constant propagation */
1495 static void gen_opif(int op
)
1503 /* currently, we cannot do computations with forward symbols */
1504 c1
= (v1
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) == VT_CONST
;
1505 c2
= (v2
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) == VT_CONST
;
1507 if (v1
->type
.t
== VT_FLOAT
) {
1510 } else if (v1
->type
.t
== VT_DOUBLE
) {
1518 /* NOTE: we only do constant propagation if finite number (not
1519 NaN or infinity) (ANSI spec) */
1520 if (!ieee_finite(f1
) || !ieee_finite(f2
))
1524 case '+': f1
+= f2
; break;
1525 case '-': f1
-= f2
; break;
1526 case '*': f1
*= f2
; break;
1530 tcc_error("division by zero in constant");
1535 /* XXX: also handles tests ? */
1539 /* XXX: overflow test ? */
1540 if (v1
->type
.t
== VT_FLOAT
) {
1542 } else if (v1
->type
.t
== VT_DOUBLE
) {
1550 if (!nocode_wanted
) {
1558 static int pointed_size(CType
*type
)
1561 return type_size(pointed_type(type
), &align
);
1564 static void vla_runtime_pointed_size(CType
*type
)
1567 vla_runtime_type_size(pointed_type(type
), &align
);
1570 static inline int is_null_pointer(SValue
*p
)
1572 if ((p
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) != VT_CONST
)
1574 return ((p
->type
.t
& VT_BTYPE
) == VT_INT
&& p
->c
.i
== 0) ||
1575 ((p
->type
.t
& VT_BTYPE
) == VT_LLONG
&& p
->c
.ll
== 0) ||
1576 ((p
->type
.t
& VT_BTYPE
) == VT_PTR
&& p
->c
.ptr
== 0);
1579 static inline int is_integer_btype(int bt
)
1581 return (bt
== VT_BYTE
|| bt
== VT_SHORT
||
1582 bt
== VT_INT
|| bt
== VT_LLONG
);
1585 /* check types for comparison or substraction of pointers */
1586 static void check_comparison_pointer_types(SValue
*p1
, SValue
*p2
, int op
)
1588 CType
*type1
, *type2
, tmp_type1
, tmp_type2
;
1591 /* null pointers are accepted for all comparisons as gcc */
1592 if (is_null_pointer(p1
) || is_null_pointer(p2
))
1596 bt1
= type1
->t
& VT_BTYPE
;
1597 bt2
= type2
->t
& VT_BTYPE
;
1598 /* accept comparison between pointer and integer with a warning */
1599 if ((is_integer_btype(bt1
) || is_integer_btype(bt2
)) && op
!= '-') {
1600 if (op
!= TOK_LOR
&& op
!= TOK_LAND
)
1601 tcc_warning("comparison between pointer and integer");
1605 /* both must be pointers or implicit function pointers */
1606 if (bt1
== VT_PTR
) {
1607 type1
= pointed_type(type1
);
1608 } else if (bt1
!= VT_FUNC
)
1609 goto invalid_operands
;
1611 if (bt2
== VT_PTR
) {
1612 type2
= pointed_type(type2
);
1613 } else if (bt2
!= VT_FUNC
) {
1615 tcc_error("invalid operands to binary %s", get_tok_str(op
, NULL
));
1617 if ((type1
->t
& VT_BTYPE
) == VT_VOID
||
1618 (type2
->t
& VT_BTYPE
) == VT_VOID
)
1622 tmp_type1
.t
&= ~(VT_UNSIGNED
| VT_CONSTANT
| VT_VOLATILE
);
1623 tmp_type2
.t
&= ~(VT_UNSIGNED
| VT_CONSTANT
| VT_VOLATILE
);
1624 if (!is_compatible_types(&tmp_type1
, &tmp_type2
)) {
1625 /* gcc-like error if '-' is used */
1627 goto invalid_operands
;
1629 tcc_warning("comparison of distinct pointer types lacks a cast");
1633 /* generic gen_op: handles types problems */
1634 ST_FUNC
void gen_op(int op
)
1636 int u
, t1
, t2
, bt1
, bt2
, t
;
1639 t1
= vtop
[-1].type
.t
;
1640 t2
= vtop
[0].type
.t
;
1641 bt1
= t1
& VT_BTYPE
;
1642 bt2
= t2
& VT_BTYPE
;
1644 if (bt1
== VT_PTR
|| bt2
== VT_PTR
) {
1645 /* at least one operand is a pointer */
1646 /* relationnal op: must be both pointers */
1647 if (op
>= TOK_ULT
&& op
<= TOK_LOR
) {
1648 check_comparison_pointer_types(vtop
- 1, vtop
, op
);
1649 /* pointers are handled are unsigned */
1650 #ifdef TCC_TARGET_X86_64
1651 t
= VT_LLONG
| VT_UNSIGNED
;
1653 t
= VT_INT
| VT_UNSIGNED
;
1657 /* if both pointers, then it must be the '-' op */
1658 if (bt1
== VT_PTR
&& bt2
== VT_PTR
) {
1660 tcc_error("cannot use pointers here");
1661 check_comparison_pointer_types(vtop
- 1, vtop
, op
);
1662 /* XXX: check that types are compatible */
1663 if (vtop
[-1].type
.t
& VT_VLA
) {
1664 vla_runtime_pointed_size(&vtop
[-1].type
);
1666 vpushi(pointed_size(&vtop
[-1].type
));
1670 /* set to integer type */
1671 #ifdef TCC_TARGET_X86_64
1672 vtop
->type
.t
= VT_LLONG
;
1674 vtop
->type
.t
= VT_INT
;
1679 /* exactly one pointer : must be '+' or '-'. */
1680 if (op
!= '-' && op
!= '+')
1681 tcc_error("cannot use pointers here");
1682 /* Put pointer as first operand */
1683 if (bt2
== VT_PTR
) {
1687 type1
= vtop
[-1].type
;
1688 type1
.t
&= ~VT_ARRAY
;
1689 if (vtop
[-1].type
.t
& VT_VLA
)
1690 vla_runtime_pointed_size(&vtop
[-1].type
);
1692 u
= pointed_size(&vtop
[-1].type
);
1694 tcc_error("unknown array element size");
1695 #ifdef TCC_TARGET_X86_64
1698 /* XXX: cast to int ? (long long case) */
1703 #ifdef CONFIG_TCC_BCHECK
1704 /* if evaluating constant expression, no code should be
1705 generated, so no bound check */
1706 if (tcc_state
->do_bounds_check
&& !const_wanted
) {
1707 /* if bounded pointers, we generate a special code to
1714 gen_bounded_ptr_add();
1720 /* put again type if gen_opic() swaped operands */
1723 } else if (is_float(bt1
) || is_float(bt2
)) {
1724 /* compute bigger type and do implicit casts */
1725 if (bt1
== VT_LDOUBLE
|| bt2
== VT_LDOUBLE
) {
1727 } else if (bt1
== VT_DOUBLE
|| bt2
== VT_DOUBLE
) {
1732 /* floats can only be used for a few operations */
1733 if (op
!= '+' && op
!= '-' && op
!= '*' && op
!= '/' &&
1734 (op
< TOK_ULT
|| op
> TOK_GT
))
1735 tcc_error("invalid operands for binary operation");
1737 } else if (op
== TOK_SHR
|| op
== TOK_SAR
|| op
== TOK_SHL
) {
1738 t
= bt1
== VT_LLONG
? VT_LLONG
: VT_INT
;
1739 if ((t1
& (VT_BTYPE
| VT_UNSIGNED
)) == (t
| VT_UNSIGNED
))
1742 } else if (bt1
== VT_LLONG
|| bt2
== VT_LLONG
) {
1743 /* cast to biggest op */
1745 /* convert to unsigned if it does not fit in a long long */
1746 if ((t1
& (VT_BTYPE
| VT_UNSIGNED
)) == (VT_LLONG
| VT_UNSIGNED
) ||
1747 (t2
& (VT_BTYPE
| VT_UNSIGNED
)) == (VT_LLONG
| VT_UNSIGNED
))
1750 } else if (bt1
== VT_STRUCT
|| bt2
== VT_STRUCT
) {
1751 tcc_error("comparison of struct");
1753 /* integer operations */
1755 /* convert to unsigned if it does not fit in an integer */
1756 if ((t1
& (VT_BTYPE
| VT_UNSIGNED
)) == (VT_INT
| VT_UNSIGNED
) ||
1757 (t2
& (VT_BTYPE
| VT_UNSIGNED
)) == (VT_INT
| VT_UNSIGNED
))
1760 /* XXX: currently, some unsigned operations are explicit, so
1761 we modify them here */
1762 if (t
& VT_UNSIGNED
) {
1769 else if (op
== TOK_LT
)
1771 else if (op
== TOK_GT
)
1773 else if (op
== TOK_LE
)
1775 else if (op
== TOK_GE
)
1782 /* special case for shifts and long long: we keep the shift as
1784 if (op
== TOK_SHR
|| op
== TOK_SAR
|| op
== TOK_SHL
)
1791 if (op
>= TOK_ULT
&& op
<= TOK_GT
) {
1792 /* relationnal op: the result is an int */
1793 vtop
->type
.t
= VT_INT
;
1800 #ifndef TCC_TARGET_ARM
1801 /* generic itof for unsigned long long case */
1802 static void gen_cvt_itof1(int t
)
1804 if ((vtop
->type
.t
& (VT_BTYPE
| VT_UNSIGNED
)) ==
1805 (VT_LLONG
| VT_UNSIGNED
)) {
1808 vpush_global_sym(&func_old_type
, TOK___floatundisf
);
1809 #if LDOUBLE_SIZE != 8
1810 else if (t
== VT_LDOUBLE
)
1811 vpush_global_sym(&func_old_type
, TOK___floatundixf
);
1814 vpush_global_sym(&func_old_type
, TOK___floatundidf
);
1818 vtop
->r
= reg_fret(t
);
1825 /* generic ftoi for unsigned long long case */
1826 static void gen_cvt_ftoi1(int t
)
1830 if (t
== (VT_LLONG
| VT_UNSIGNED
)) {
1831 /* not handled natively */
1832 st
= vtop
->type
.t
& VT_BTYPE
;
1834 vpush_global_sym(&func_old_type
, TOK___fixunssfdi
);
1835 #if LDOUBLE_SIZE != 8
1836 else if (st
== VT_LDOUBLE
)
1837 vpush_global_sym(&func_old_type
, TOK___fixunsxfdi
);
1840 vpush_global_sym(&func_old_type
, TOK___fixunsdfdi
);
1845 vtop
->r2
= REG_LRET
;
1851 /* force char or short cast */
1852 static void force_charshort_cast(int t
)
1856 /* XXX: add optimization if lvalue : just change type and offset */
1861 if (t
& VT_UNSIGNED
) {
1862 vpushi((1 << bits
) - 1);
1868 /* result must be signed or the SAR is converted to an SHL
1869 This was not the case when "t" was a signed short
1870 and the last value on the stack was an unsigned int */
1871 vtop
->type
.t
&= ~VT_UNSIGNED
;
1877 /* cast 'vtop' to 'type'. Casting to bitfields is forbidden. */
1878 static void gen_cast(CType
*type
)
1880 int sbt
, dbt
, sf
, df
, c
, p
;
1882 /* special delayed cast for char/short */
1883 /* XXX: in some cases (multiple cascaded casts), it may still
1885 if (vtop
->r
& VT_MUSTCAST
) {
1886 vtop
->r
&= ~VT_MUSTCAST
;
1887 force_charshort_cast(vtop
->type
.t
);
1890 /* bitfields first get cast to ints */
1891 if (vtop
->type
.t
& VT_BITFIELD
) {
1895 dbt
= type
->t
& (VT_BTYPE
| VT_UNSIGNED
);
1896 sbt
= vtop
->type
.t
& (VT_BTYPE
| VT_UNSIGNED
);
1901 c
= (vtop
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) == VT_CONST
;
1902 p
= (vtop
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) == (VT_CONST
| VT_SYM
);
1904 /* constant case: we can do it now */
1905 /* XXX: in ISOC, cannot do it if error in convert */
1906 if (sbt
== VT_FLOAT
)
1907 vtop
->c
.ld
= vtop
->c
.f
;
1908 else if (sbt
== VT_DOUBLE
)
1909 vtop
->c
.ld
= vtop
->c
.d
;
1912 if ((sbt
& VT_BTYPE
) == VT_LLONG
) {
1913 if (sbt
& VT_UNSIGNED
)
1914 vtop
->c
.ld
= vtop
->c
.ull
;
1916 vtop
->c
.ld
= vtop
->c
.ll
;
1918 if (sbt
& VT_UNSIGNED
)
1919 vtop
->c
.ld
= vtop
->c
.ui
;
1921 vtop
->c
.ld
= vtop
->c
.i
;
1924 if (dbt
== VT_FLOAT
)
1925 vtop
->c
.f
= (float)vtop
->c
.ld
;
1926 else if (dbt
== VT_DOUBLE
)
1927 vtop
->c
.d
= (double)vtop
->c
.ld
;
1928 } else if (sf
&& dbt
== (VT_LLONG
|VT_UNSIGNED
)) {
1929 vtop
->c
.ull
= (unsigned long long)vtop
->c
.ld
;
1930 } else if (sf
&& dbt
== VT_BOOL
) {
1931 vtop
->c
.i
= (vtop
->c
.ld
!= 0);
1934 vtop
->c
.ll
= (long long)vtop
->c
.ld
;
1935 else if (sbt
== (VT_LLONG
|VT_UNSIGNED
))
1936 vtop
->c
.ll
= vtop
->c
.ull
;
1937 else if (sbt
& VT_UNSIGNED
)
1938 vtop
->c
.ll
= vtop
->c
.ui
;
1939 #ifdef TCC_TARGET_X86_64
1940 else if (sbt
== VT_PTR
)
1943 else if (sbt
!= VT_LLONG
)
1944 vtop
->c
.ll
= vtop
->c
.i
;
1946 if (dbt
== (VT_LLONG
|VT_UNSIGNED
))
1947 vtop
->c
.ull
= vtop
->c
.ll
;
1948 else if (dbt
== VT_BOOL
)
1949 vtop
->c
.i
= (vtop
->c
.ll
!= 0);
1950 else if (dbt
!= VT_LLONG
) {
1952 if ((dbt
& VT_BTYPE
) == VT_BYTE
)
1954 else if ((dbt
& VT_BTYPE
) == VT_SHORT
)
1957 if(dbt
& VT_UNSIGNED
)
1958 vtop
->c
.ui
= ((unsigned int)vtop
->c
.ll
<< s
) >> s
;
1960 vtop
->c
.i
= ((int)vtop
->c
.ll
<< s
) >> s
;
1963 } else if (p
&& dbt
== VT_BOOL
) {
1966 } else if (!nocode_wanted
) {
1967 /* non constant case: generate code */
1969 /* convert from fp to fp */
1972 /* convert int to fp */
1975 /* convert fp to int */
1976 if (dbt
== VT_BOOL
) {
1980 /* we handle char/short/etc... with generic code */
1981 if (dbt
!= (VT_INT
| VT_UNSIGNED
) &&
1982 dbt
!= (VT_LLONG
| VT_UNSIGNED
) &&
1986 if (dbt
== VT_INT
&& (type
->t
& (VT_BTYPE
| VT_UNSIGNED
)) != dbt
) {
1987 /* additional cast for char/short... */
1992 #ifndef TCC_TARGET_X86_64
1993 } else if ((dbt
& VT_BTYPE
) == VT_LLONG
) {
1994 if ((sbt
& VT_BTYPE
) != VT_LLONG
) {
1995 /* scalar to long long */
1996 /* machine independent conversion */
1998 /* generate high word */
1999 if (sbt
== (VT_INT
| VT_UNSIGNED
)) {
2003 if (sbt
== VT_PTR
) {
2004 /* cast from pointer to int before we apply
2005 shift operation, which pointers don't support*/
2006 gen_cast(&int_type
);
2012 /* patch second register */
2013 vtop
[-1].r2
= vtop
->r
;
2017 } else if ((dbt
& VT_BTYPE
) == VT_LLONG
||
2018 (dbt
& VT_BTYPE
) == VT_PTR
||
2019 (dbt
& VT_BTYPE
) == VT_FUNC
) {
2020 if ((sbt
& VT_BTYPE
) != VT_LLONG
&&
2021 (sbt
& VT_BTYPE
) != VT_PTR
&&
2022 (sbt
& VT_BTYPE
) != VT_FUNC
) {
2023 /* need to convert from 32bit to 64bit */
2025 if (sbt
!= (VT_INT
| VT_UNSIGNED
)) {
2026 /* x86_64 specific: movslq */
2028 o(0xc0 + (REG_VALUE(r
) << 3) + REG_VALUE(r
));
2032 } else if (dbt
== VT_BOOL
) {
2033 /* scalar to bool */
2036 } else if ((dbt
& VT_BTYPE
) == VT_BYTE
||
2037 (dbt
& VT_BTYPE
) == VT_SHORT
) {
2038 if (sbt
== VT_PTR
) {
2039 vtop
->type
.t
= VT_INT
;
2040 tcc_warning("nonportable conversion from pointer to char/short");
2042 force_charshort_cast(dbt
);
2043 } else if ((dbt
& VT_BTYPE
) == VT_INT
) {
2045 if (sbt
== VT_LLONG
) {
2046 /* from long long: just take low order word */
2050 /* if lvalue and single word type, nothing to do because
2051 the lvalue already contains the real type size (see
2052 VT_LVAL_xxx constants) */
2055 } else if ((dbt
& VT_BTYPE
) == VT_PTR
&& !(vtop
->r
& VT_LVAL
)) {
2056 /* if we are casting between pointer types,
2057 we must update the VT_LVAL_xxx size */
2058 vtop
->r
= (vtop
->r
& ~VT_LVAL_TYPE
)
2059 | (lvalue_type(type
->ref
->type
.t
) & VT_LVAL_TYPE
);
2064 /* return type size as known at compile time. Put alignment at 'a' */
2065 ST_FUNC
int type_size(CType
*type
, int *a
)
2070 bt
= type
->t
& VT_BTYPE
;
2071 if (bt
== VT_STRUCT
) {
2076 } else if (bt
== VT_PTR
) {
2077 if (type
->t
& VT_ARRAY
) {
2081 ts
= type_size(&s
->type
, a
);
2083 if (ts
< 0 && s
->c
< 0)
2091 } else if (bt
== VT_LDOUBLE
) {
2093 return LDOUBLE_SIZE
;
2094 } else if (bt
== VT_DOUBLE
|| bt
== VT_LLONG
) {
2095 #ifdef TCC_TARGET_I386
2096 #ifdef TCC_TARGET_PE
2101 #elif defined(TCC_TARGET_ARM)
2111 } else if (bt
== VT_INT
|| bt
== VT_ENUM
|| bt
== VT_FLOAT
) {
2114 } else if (bt
== VT_SHORT
) {
2117 } else if (bt
== VT_QLONG
|| bt
== VT_QFLOAT
) {
2121 /* char, void, function, _Bool */
2127 /* push type size as known at runtime time on top of value stack. Put
2129 ST_FUNC
void vla_runtime_type_size(CType
*type
, int *a
)
2131 if (type
->t
& VT_VLA
) {
2132 vset(&int_type
, VT_LOCAL
|VT_LVAL
, type
->ref
->c
);
2134 vpushi(type_size(type
, a
));
2138 static void vla_sp_save(void) {
2139 if (!(vla_flags
& VLA_SP_LOC_SET
)) {
2140 *vla_sp_loc
= (loc
-= PTR_SIZE
);
2141 vla_flags
|= VLA_SP_LOC_SET
;
2143 if (!(vla_flags
& VLA_SP_SAVED
)) {
2144 gen_vla_sp_save(*vla_sp_loc
);
2145 vla_flags
|= VLA_SP_SAVED
;
2149 /* return the pointed type of t */
2150 static inline CType
*pointed_type(CType
*type
)
2152 return &type
->ref
->type
;
2155 /* modify type so that its it is a pointer to type. */
2156 ST_FUNC
void mk_pointer(CType
*type
)
2159 s
= sym_push(SYM_FIELD
, type
, 0, -1);
2160 type
->t
= VT_PTR
| (type
->t
& ~VT_TYPE
);
2164 /* compare function types. OLD functions match any new functions */
2165 static int is_compatible_func(CType
*type1
, CType
*type2
)
2171 if (!is_compatible_types(&s1
->type
, &s2
->type
))
2173 /* check func_call */
2174 if (FUNC_CALL(s1
->r
) != FUNC_CALL(s2
->r
))
2176 /* XXX: not complete */
2177 if (s1
->c
== FUNC_OLD
|| s2
->c
== FUNC_OLD
)
2181 while (s1
!= NULL
) {
2184 if (!is_compatible_parameter_types(&s1
->type
, &s2
->type
))
2194 /* return true if type1 and type2 are the same. If unqualified is
2195 true, qualifiers on the types are ignored.
2197 - enums are not checked as gcc __builtin_types_compatible_p ()
2199 static int compare_types(CType
*type1
, CType
*type2
, int unqualified
)
2203 t1
= type1
->t
& VT_TYPE
;
2204 t2
= type2
->t
& VT_TYPE
;
2206 /* strip qualifiers before comparing */
2207 t1
&= ~(VT_CONSTANT
| VT_VOLATILE
);
2208 t2
&= ~(VT_CONSTANT
| VT_VOLATILE
);
2210 /* XXX: bitfields ? */
2213 /* test more complicated cases */
2214 bt1
= t1
& VT_BTYPE
;
2215 if (bt1
== VT_PTR
) {
2216 type1
= pointed_type(type1
);
2217 type2
= pointed_type(type2
);
2218 return is_compatible_types(type1
, type2
);
2219 } else if (bt1
== VT_STRUCT
) {
2220 return (type1
->ref
== type2
->ref
);
2221 } else if (bt1
== VT_FUNC
) {
2222 return is_compatible_func(type1
, type2
);
2228 /* return true if type1 and type2 are exactly the same (including
2231 static int is_compatible_types(CType
*type1
, CType
*type2
)
2233 return compare_types(type1
,type2
,0);
2236 /* return true if type1 and type2 are the same (ignoring qualifiers).
2238 static int is_compatible_parameter_types(CType
*type1
, CType
*type2
)
2240 return compare_types(type1
,type2
,1);
2243 /* print a type. If 'varstr' is not NULL, then the variable is also
2244 printed in the type */
2246 /* XXX: add array and function pointers */
2247 static void type_to_str(char *buf
, int buf_size
,
2248 CType
*type
, const char *varstr
)
2255 t
= type
->t
& VT_TYPE
;
2258 if (t
& VT_CONSTANT
)
2259 pstrcat(buf
, buf_size
, "const ");
2260 if (t
& VT_VOLATILE
)
2261 pstrcat(buf
, buf_size
, "volatile ");
2262 if (t
& VT_UNSIGNED
)
2263 pstrcat(buf
, buf_size
, "unsigned ");
2293 tstr
= "long double";
2295 pstrcat(buf
, buf_size
, tstr
);
2299 if (bt
== VT_STRUCT
)
2303 pstrcat(buf
, buf_size
, tstr
);
2304 v
= type
->ref
->v
& ~SYM_STRUCT
;
2305 if (v
>= SYM_FIRST_ANOM
)
2306 pstrcat(buf
, buf_size
, "<anonymous>");
2308 pstrcat(buf
, buf_size
, get_tok_str(v
, NULL
));
2312 type_to_str(buf
, buf_size
, &s
->type
, varstr
);
2313 pstrcat(buf
, buf_size
, "(");
2315 while (sa
!= NULL
) {
2316 type_to_str(buf1
, sizeof(buf1
), &sa
->type
, NULL
);
2317 pstrcat(buf
, buf_size
, buf1
);
2320 pstrcat(buf
, buf_size
, ", ");
2322 pstrcat(buf
, buf_size
, ")");
2326 pstrcpy(buf1
, sizeof(buf1
), "*");
2328 pstrcat(buf1
, sizeof(buf1
), varstr
);
2329 type_to_str(buf
, buf_size
, &s
->type
, buf1
);
2333 pstrcat(buf
, buf_size
, " ");
2334 pstrcat(buf
, buf_size
, varstr
);
2339 /* verify type compatibility to store vtop in 'dt' type, and generate
2341 static void gen_assign_cast(CType
*dt
)
2343 CType
*st
, *type1
, *type2
, tmp_type1
, tmp_type2
;
2344 char buf1
[256], buf2
[256];
2347 st
= &vtop
->type
; /* source type */
2348 dbt
= dt
->t
& VT_BTYPE
;
2349 sbt
= st
->t
& VT_BTYPE
;
2351 tcc_error("Cannot assign void value");
2352 if (dt
->t
& VT_CONSTANT
)
2353 tcc_warning("assignment of read-only location");
2356 /* special cases for pointers */
2357 /* '0' can also be a pointer */
2358 if (is_null_pointer(vtop
))
2360 /* accept implicit pointer to integer cast with warning */
2361 if (is_integer_btype(sbt
)) {
2362 tcc_warning("assignment makes pointer from integer without a cast");
2365 type1
= pointed_type(dt
);
2366 /* a function is implicitely a function pointer */
2367 if (sbt
== VT_FUNC
) {
2368 if ((type1
->t
& VT_BTYPE
) != VT_VOID
&&
2369 !is_compatible_types(pointed_type(dt
), st
))
2370 tcc_warning("assignment from incompatible pointer type");
2375 type2
= pointed_type(st
);
2376 if ((type1
->t
& VT_BTYPE
) == VT_VOID
||
2377 (type2
->t
& VT_BTYPE
) == VT_VOID
) {
2378 /* void * can match anything */
2380 /* exact type match, except for unsigned */
2383 tmp_type1
.t
&= ~(VT_UNSIGNED
| VT_CONSTANT
| VT_VOLATILE
);
2384 tmp_type2
.t
&= ~(VT_UNSIGNED
| VT_CONSTANT
| VT_VOLATILE
);
2385 if (!is_compatible_types(&tmp_type1
, &tmp_type2
))
2386 tcc_warning("assignment from incompatible pointer type");
2388 /* check const and volatile */
2389 if ((!(type1
->t
& VT_CONSTANT
) && (type2
->t
& VT_CONSTANT
)) ||
2390 (!(type1
->t
& VT_VOLATILE
) && (type2
->t
& VT_VOLATILE
)))
2391 tcc_warning("assignment discards qualifiers from pointer target type");
2397 if (sbt
== VT_PTR
|| sbt
== VT_FUNC
) {
2398 tcc_warning("assignment makes integer from pointer without a cast");
2400 /* XXX: more tests */
2405 tmp_type1
.t
&= ~(VT_CONSTANT
| VT_VOLATILE
);
2406 tmp_type2
.t
&= ~(VT_CONSTANT
| VT_VOLATILE
);
2407 if (!is_compatible_types(&tmp_type1
, &tmp_type2
)) {
2409 type_to_str(buf1
, sizeof(buf1
), st
, NULL
);
2410 type_to_str(buf2
, sizeof(buf2
), dt
, NULL
);
2411 tcc_error("cannot cast '%s' to '%s'", buf1
, buf2
);
2419 /* store vtop in lvalue pushed on stack */
2420 ST_FUNC
void vstore(void)
2422 int sbt
, dbt
, ft
, r
, t
, size
, align
, bit_size
, bit_pos
, rc
, delayed_cast
;
2424 ft
= vtop
[-1].type
.t
;
2425 sbt
= vtop
->type
.t
& VT_BTYPE
;
2426 dbt
= ft
& VT_BTYPE
;
2427 if ((((sbt
== VT_INT
|| sbt
== VT_SHORT
) && dbt
== VT_BYTE
) ||
2428 (sbt
== VT_INT
&& dbt
== VT_SHORT
))
2429 && !(vtop
->type
.t
& VT_BITFIELD
)) {
2430 /* optimize char/short casts */
2431 delayed_cast
= VT_MUSTCAST
;
2432 vtop
->type
.t
= ft
& (VT_TYPE
& ~(VT_BITFIELD
| (-1 << VT_STRUCT_SHIFT
)));
2433 /* XXX: factorize */
2434 if (ft
& VT_CONSTANT
)
2435 tcc_warning("assignment of read-only location");
2438 if (!(ft
& VT_BITFIELD
))
2439 gen_assign_cast(&vtop
[-1].type
);
2442 if (sbt
== VT_STRUCT
) {
2443 /* if structure, only generate pointer */
2444 /* structure assignment : generate memcpy */
2445 /* XXX: optimize if small size */
2446 if (!nocode_wanted
) {
2447 size
= type_size(&vtop
->type
, &align
);
2451 vtop
->type
.t
= VT_PTR
;
2454 /* address of memcpy() */
2457 vpush_global_sym(&func_old_type
, TOK_memcpy8
);
2458 else if(!(align
& 3))
2459 vpush_global_sym(&func_old_type
, TOK_memcpy4
);
2462 vpush_global_sym(&func_old_type
, TOK_memcpy
);
2467 vtop
->type
.t
= VT_PTR
;
2476 /* leave source on stack */
2477 } else if (ft
& VT_BITFIELD
) {
2478 /* bitfield store handling */
2479 bit_pos
= (ft
>> VT_STRUCT_SHIFT
) & 0x3f;
2480 bit_size
= (ft
>> (VT_STRUCT_SHIFT
+ 6)) & 0x3f;
2481 /* remove bit field info to avoid loops */
2482 vtop
[-1].type
.t
= ft
& ~(VT_BITFIELD
| (-1 << VT_STRUCT_SHIFT
));
2484 /* duplicate source into other register */
2489 if((ft
& VT_BTYPE
) == VT_BOOL
) {
2490 gen_cast(&vtop
[-1].type
);
2491 vtop
[-1].type
.t
= (vtop
[-1].type
.t
& ~VT_BTYPE
) | (VT_BYTE
| VT_UNSIGNED
);
2494 /* duplicate destination */
2496 vtop
[-1] = vtop
[-2];
2498 /* mask and shift source */
2499 if((ft
& VT_BTYPE
) != VT_BOOL
) {
2500 if((ft
& VT_BTYPE
) == VT_LLONG
) {
2501 vpushll((1ULL << bit_size
) - 1ULL);
2503 vpushi((1 << bit_size
) - 1);
2509 /* load destination, mask and or with source */
2511 if((ft
& VT_BTYPE
) == VT_LLONG
) {
2512 vpushll(~(((1ULL << bit_size
) - 1ULL) << bit_pos
));
2514 vpushi(~(((1 << bit_size
) - 1) << bit_pos
));
2521 /* pop off shifted source from "duplicate source..." above */
2525 #ifdef CONFIG_TCC_BCHECK
2526 /* bound check case */
2527 if (vtop
[-1].r
& VT_MUSTBOUND
) {
2533 if (!nocode_wanted
) {
2537 #ifdef TCC_TARGET_X86_64
2538 if ((ft
& VT_BTYPE
) == VT_LDOUBLE
) {
2540 } else if ((ft
& VT_BTYPE
) == VT_QFLOAT
) {
2545 r
= gv(rc
); /* generate value */
2546 /* if lvalue was saved on stack, must read it */
2547 if ((vtop
[-1].r
& VT_VALMASK
) == VT_LLOCAL
) {
2549 t
= get_reg(RC_INT
);
2550 #ifdef TCC_TARGET_X86_64
2555 sv
.r
= VT_LOCAL
| VT_LVAL
;
2556 sv
.c
.ul
= vtop
[-1].c
.ul
;
2558 vtop
[-1].r
= t
| VT_LVAL
;
2560 /* two word case handling : store second register at word + 4 (or +8 for x86-64) */
2561 #ifdef TCC_TARGET_X86_64
2562 if (((ft
& VT_BTYPE
) == VT_QLONG
) || ((ft
& VT_BTYPE
) == VT_QFLOAT
)) {
2563 int addr_type
= VT_LLONG
, load_size
= 8, load_type
= ((vtop
->type
.t
& VT_BTYPE
) == VT_QLONG
) ? VT_LLONG
: VT_DOUBLE
;
2565 if ((ft
& VT_BTYPE
) == VT_LLONG
) {
2566 int addr_type
= VT_INT
, load_size
= 4, load_type
= VT_INT
;
2568 vtop
[-1].type
.t
= load_type
;
2571 /* convert to int to increment easily */
2572 vtop
->type
.t
= addr_type
;
2578 vtop
[-1].type
.t
= load_type
;
2579 /* XXX: it works because r2 is spilled last ! */
2580 store(vtop
->r2
, vtop
- 1);
2586 vtop
--; /* NOT vpop() because on x86 it would flush the fp stack */
2587 vtop
->r
|= delayed_cast
;
2591 /* post defines POST/PRE add. c is the token ++ or -- */
2592 ST_FUNC
void inc(int post
, int c
)
2595 vdup(); /* save lvalue */
2597 gv_dup(); /* duplicate value */
2602 vpushi(c
- TOK_MID
);
2604 vstore(); /* store value */
2606 vpop(); /* if post op, return saved value */
2609 /* Parse GNUC __attribute__ extension. Currently, the following
2610 extensions are recognized:
2611 - aligned(n) : set data/function alignment.
2612 - packed : force data alignment to 1
2613 - section(x) : generate data/code in this section.
2614 - unused : currently ignored, but may be used someday.
2615 - regparm(n) : pass function parameters in registers (i386 only)
2617 static void parse_attribute(AttributeDef
*ad
)
2621 while (tok
== TOK_ATTRIBUTE1
|| tok
== TOK_ATTRIBUTE2
) {
2625 while (tok
!= ')') {
2626 if (tok
< TOK_IDENT
)
2627 expect("attribute name");
2635 expect("section name");
2636 ad
->section
= find_section(tcc_state
, (char *)tokc
.cstr
->data
);
2644 expect("alias(\"target\")");
2645 ad
->alias_target
= /* save string as token, for later */
2646 tok_alloc((char*)tokc
.cstr
->data
, tokc
.cstr
->size
-1)->tok
;
2655 if (n
<= 0 || (n
& (n
- 1)) != 0)
2656 tcc_error("alignment must be a positive power of two");
2673 /* currently, no need to handle it because tcc does not
2674 track unused objects */
2678 /* currently, no need to handle it because tcc does not
2679 track unused objects */
2684 ad
->func_call
= FUNC_CDECL
;
2689 ad
->func_call
= FUNC_STDCALL
;
2691 #ifdef TCC_TARGET_I386
2701 ad
->func_call
= FUNC_FASTCALL1
+ n
- 1;
2707 ad
->func_call
= FUNC_FASTCALLW
;
2714 ad
->mode
= VT_LLONG
+ 1;
2717 ad
->mode
= VT_SHORT
+ 1;
2720 ad
->mode
= VT_INT
+ 1;
2723 tcc_warning("__mode__(%s) not supported\n", get_tok_str(tok
, NULL
));
2730 ad
->func_export
= 1;
2733 ad
->func_import
= 1;
2736 if (tcc_state
->warn_unsupported
)
2737 tcc_warning("'%s' attribute ignored", get_tok_str(t
, NULL
));
2738 /* skip parameters */
2740 int parenthesis
= 0;
2744 else if (tok
== ')')
2747 } while (parenthesis
&& tok
!= -1);
2760 /* enum/struct/union declaration. u is either VT_ENUM or VT_STRUCT */
2761 static void struct_decl(CType
*type
, int u
, int tdef
)
2763 int a
, v
, size
, align
, maxalign
, c
, offset
, flexible
;
2764 int bit_size
, bit_pos
, bsize
, bt
, lbit_pos
, prevbt
;
2765 Sym
*s
, *ss
, *ass
, **ps
;
2769 a
= tok
; /* save decl type */
2774 /* struct already defined ? return it */
2776 expect("struct/union/enum name");
2780 tcc_error("invalid type");
2782 } else if (tok
>= TOK_IDENT
&& !tdef
)
2783 tcc_error("unknown struct/union/enum");
2789 /* we put an undefined size for struct/union */
2790 s
= sym_push(v
| SYM_STRUCT
, &type1
, 0, -1);
2791 s
->r
= 0; /* default alignment is zero as gcc */
2792 /* put struct/union/enum name in type */
2800 tcc_error("struct/union/enum already defined");
2801 /* cannot be empty */
2803 /* non empty enums are not allowed */
2804 if (a
== TOK_ENUM
) {
2808 expect("identifier");
2811 tcc_error("redefinition of enumerator '%s'",
2812 get_tok_str(v
, NULL
));
2818 /* enum symbols have static storage */
2819 ss
= sym_push(v
, &int_type
, VT_CONST
, c
);
2820 ss
->type
.t
|= VT_STATIC
;
2825 /* NOTE: we accept a trailing comma */
2829 s
->c
= type_size(&int_type
, &align
);
2838 while (tok
!= '}') {
2839 parse_btype(&btype
, &ad
);
2842 tcc_error("flexible array member '%s' not at the end of struct",
2843 get_tok_str(v
, NULL
));
2848 type_decl(&type1
, &ad
, &v
, TYPE_DIRECT
| TYPE_ABSTRACT
);
2849 if (v
== 0 && (type1
.t
& VT_BTYPE
) != VT_STRUCT
)
2850 expect("identifier");
2851 if (type_size(&type1
, &align
) < 0) {
2852 if ((a
== TOK_STRUCT
) && (type1
.t
& VT_ARRAY
) && c
)
2855 tcc_error("field '%s' has incomplete type",
2856 get_tok_str(v
, NULL
));
2858 if ((type1
.t
& VT_BTYPE
) == VT_FUNC
||
2859 (type1
.t
& (VT_TYPEDEF
| VT_STATIC
| VT_EXTERN
| VT_INLINE
)))
2860 tcc_error("invalid type for '%s'",
2861 get_tok_str(v
, NULL
));
2865 bit_size
= expr_const();
2866 /* XXX: handle v = 0 case for messages */
2868 tcc_error("negative width in bit-field '%s'",
2869 get_tok_str(v
, NULL
));
2870 if (v
&& bit_size
== 0)
2871 tcc_error("zero width for bit-field '%s'",
2872 get_tok_str(v
, NULL
));
2874 size
= type_size(&type1
, &align
);
2876 if (align
< ad
.aligned
)
2878 } else if (ad
.packed
) {
2880 } else if (*tcc_state
->pack_stack_ptr
) {
2881 if (align
> *tcc_state
->pack_stack_ptr
)
2882 align
= *tcc_state
->pack_stack_ptr
;
2885 if (bit_size
>= 0) {
2886 bt
= type1
.t
& VT_BTYPE
;
2893 tcc_error("bitfields must have scalar type");
2895 if (bit_size
> bsize
) {
2896 tcc_error("width of '%s' exceeds its type",
2897 get_tok_str(v
, NULL
));
2898 } else if (bit_size
== bsize
) {
2899 /* no need for bit fields */
2901 } else if (bit_size
== 0) {
2902 /* XXX: what to do if only padding in a
2904 /* zero size: means to pad */
2907 /* we do not have enough room ?
2908 did the type change?
2910 if ((bit_pos
+ bit_size
) > bsize
||
2911 bt
!= prevbt
|| a
== TOK_UNION
)
2914 /* XXX: handle LSB first */
2915 type1
.t
|= VT_BITFIELD
|
2916 (bit_pos
<< VT_STRUCT_SHIFT
) |
2917 (bit_size
<< (VT_STRUCT_SHIFT
+ 6));
2918 bit_pos
+= bit_size
;
2924 if (v
!= 0 || (type1
.t
& VT_BTYPE
) == VT_STRUCT
) {
2925 /* add new memory data only if starting
2927 if (lbit_pos
== 0) {
2928 if (a
== TOK_STRUCT
) {
2929 c
= (c
+ align
- 1) & -align
;
2938 if (align
> maxalign
)
2942 printf("add field %s offset=%d",
2943 get_tok_str(v
, NULL
), offset
);
2944 if (type1
.t
& VT_BITFIELD
) {
2945 printf(" pos=%d size=%d",
2946 (type1
.t
>> VT_STRUCT_SHIFT
) & 0x3f,
2947 (type1
.t
>> (VT_STRUCT_SHIFT
+ 6)) & 0x3f);
2952 if (v
== 0 && (type1
.t
& VT_BTYPE
) == VT_STRUCT
) {
2954 while ((ass
= ass
->next
) != NULL
) {
2955 ss
= sym_push(ass
->v
, &ass
->type
, 0, offset
+ ass
->c
);
2960 ss
= sym_push(v
| SYM_FIELD
, &type1
, 0, offset
);
2964 if (tok
== ';' || tok
== TOK_EOF
)
2971 /* store size and alignment */
2972 s
->c
= (c
+ maxalign
- 1) & -maxalign
;
2978 /* return 0 if no type declaration. otherwise, return the basic type
2981 static int parse_btype(CType
*type
, AttributeDef
*ad
)
2983 int t
, u
, type_found
, typespec_found
, typedef_found
;
2987 memset(ad
, 0, sizeof(AttributeDef
));
2995 /* currently, we really ignore extension */
3005 if ((t
& VT_BTYPE
) != 0)
3006 tcc_error("too many basic types");
3022 if ((t
& VT_BTYPE
) == VT_DOUBLE
) {
3023 #ifndef TCC_TARGET_PE
3024 t
= (t
& ~VT_BTYPE
) | VT_LDOUBLE
;
3026 } else if ((t
& VT_BTYPE
) == VT_LONG
) {
3027 t
= (t
& ~VT_BTYPE
) | VT_LLONG
;
3041 if ((t
& VT_BTYPE
) == VT_LONG
) {
3042 #ifdef TCC_TARGET_PE
3043 t
= (t
& ~VT_BTYPE
) | VT_DOUBLE
;
3045 t
= (t
& ~VT_BTYPE
) | VT_LDOUBLE
;
3053 struct_decl(&type1
, VT_ENUM
, t
& VT_TYPEDEF
);
3056 type
->ref
= type1
.ref
;
3060 struct_decl(&type1
, VT_STRUCT
, t
& VT_TYPEDEF
);
3063 /* type modifiers */
3116 /* GNUC attribute */
3117 case TOK_ATTRIBUTE1
:
3118 case TOK_ATTRIBUTE2
:
3119 parse_attribute(ad
);
3122 t
= (t
& ~VT_BTYPE
) | u
;
3130 parse_expr_type(&type1
);
3131 /* remove all storage modifiers except typedef */
3132 type1
.t
&= ~(VT_STORAGE
&~VT_TYPEDEF
);
3135 if (typespec_found
|| typedef_found
)
3138 if (!s
|| !(s
->type
.t
& VT_TYPEDEF
))
3141 t
|= (s
->type
.t
& ~VT_TYPEDEF
);
3142 type
->ref
= s
->type
.ref
;
3144 /* get attributes from typedef */
3145 if (0 == ad
->aligned
)
3146 ad
->aligned
= FUNC_ALIGN(s
->r
);
3147 if (0 == ad
->func_call
)
3148 ad
->func_call
= FUNC_CALL(s
->r
);
3149 ad
->packed
|= FUNC_PACKED(s
->r
);
3158 if ((t
& (VT_SIGNED
|VT_UNSIGNED
)) == (VT_SIGNED
|VT_UNSIGNED
))
3159 tcc_error("signed and unsigned modifier");
3160 if (tcc_state
->char_is_unsigned
) {
3161 if ((t
& (VT_SIGNED
|VT_UNSIGNED
|VT_BTYPE
)) == VT_BYTE
)
3166 /* long is never used as type */
3167 if ((t
& VT_BTYPE
) == VT_LONG
)
3168 #if !defined TCC_TARGET_X86_64 || defined TCC_TARGET_PE
3169 t
= (t
& ~VT_BTYPE
) | VT_INT
;
3171 t
= (t
& ~VT_BTYPE
) | VT_LLONG
;
3177 /* convert a function parameter type (array to pointer and function to
3178 function pointer) */
3179 static inline void convert_parameter_type(CType
*pt
)
3181 /* remove const and volatile qualifiers (XXX: const could be used
3182 to indicate a const function parameter */
3183 pt
->t
&= ~(VT_CONSTANT
| VT_VOLATILE
);
3184 /* array must be transformed to pointer according to ANSI C */
3186 if ((pt
->t
& VT_BTYPE
) == VT_FUNC
) {
3191 ST_FUNC
void parse_asm_str(CString
*astr
)
3194 /* read the string */
3196 expect("string constant");
3198 while (tok
== TOK_STR
) {
3199 /* XXX: add \0 handling too ? */
3200 cstr_cat(astr
, tokc
.cstr
->data
);
3203 cstr_ccat(astr
, '\0');
3206 /* Parse an asm label and return the label
3207 * Don't forget to free the CString in the caller! */
3208 static void asm_label_instr(CString
*astr
)
3211 parse_asm_str(astr
);
3214 printf("asm_alias: \"%s\"\n", (char *)astr
->data
);
3218 static void post_type(CType
*type
, AttributeDef
*ad
)
3220 int n
, l
, t1
, arg_size
, align
;
3221 Sym
**plast
, *s
, *first
;
3226 /* function declaration */
3234 /* read param name and compute offset */
3235 if (l
!= FUNC_OLD
) {
3236 if (!parse_btype(&pt
, &ad1
)) {
3238 tcc_error("invalid type");
3245 if ((pt
.t
& VT_BTYPE
) == VT_VOID
&& tok
== ')')
3247 type_decl(&pt
, &ad1
, &n
, TYPE_DIRECT
| TYPE_ABSTRACT
);
3248 if ((pt
.t
& VT_BTYPE
) == VT_VOID
)
3249 tcc_error("parameter declared as void");
3250 arg_size
+= (type_size(&pt
, &align
) + PTR_SIZE
- 1) / PTR_SIZE
;
3255 expect("identifier");
3259 convert_parameter_type(&pt
);
3260 s
= sym_push(n
| SYM_FIELD
, &pt
, 0, 0);
3266 if (l
== FUNC_NEW
&& tok
== TOK_DOTS
) {
3273 /* if no parameters, then old type prototype */
3277 /* NOTE: const is ignored in returned type as it has a special
3278 meaning in gcc / C++ */
3279 type
->t
&= ~VT_CONSTANT
;
3280 /* some ancient pre-K&R C allows a function to return an array
3281 and the array brackets to be put after the arguments, such
3282 that "int c()[]" means something like "int[] c()" */
3285 skip(']'); /* only handle simple "[]" */
3288 /* we push a anonymous symbol which will contain the function prototype */
3289 ad
->func_args
= arg_size
;
3290 s
= sym_push(SYM_FIELD
, type
, INT_ATTR(ad
), l
);
3294 } else if (tok
== '[') {
3295 /* array definition */
3297 if (tok
== TOK_RESTRICT1
)
3302 if (!local_stack
|| nocode_wanted
)
3303 vpushi(expr_const());
3305 if ((vtop
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) == VT_CONST
) {
3308 tcc_error("invalid array size");
3310 if (!is_integer_btype(vtop
->type
.t
& VT_BTYPE
))
3311 tcc_error("size of variable length array should be an integer");
3316 /* parse next post type */
3317 post_type(type
, ad
);
3318 if (type
->t
== VT_FUNC
)
3319 tcc_error("declaration of an array of functions");
3320 t1
|= type
->t
& VT_VLA
;
3323 loc
-= type_size(&int_type
, &align
);
3327 vla_runtime_type_size(type
, &align
);
3329 vset(&int_type
, VT_LOCAL
|VT_LVAL
, loc
);
3336 /* we push an anonymous symbol which will contain the array
3338 s
= sym_push(SYM_FIELD
, type
, 0, n
);
3339 type
->t
= (t1
? VT_VLA
: VT_ARRAY
) | VT_PTR
;
3344 /* Parse a type declaration (except basic type), and return the type
3345 in 'type'. 'td' is a bitmask indicating which kind of type decl is
3346 expected. 'type' should contain the basic type. 'ad' is the
3347 attribute definition of the basic type. It can be modified by
3350 static void type_decl(CType
*type
, AttributeDef
*ad
, int *v
, int td
)
3353 CType type1
, *type2
;
3354 int qualifiers
, storage
;
3356 while (tok
== '*') {
3364 qualifiers
|= VT_CONSTANT
;
3369 qualifiers
|= VT_VOLATILE
;
3377 type
->t
|= qualifiers
;
3380 /* XXX: clarify attribute handling */
3381 if (tok
== TOK_ATTRIBUTE1
|| tok
== TOK_ATTRIBUTE2
)
3382 parse_attribute(ad
);
3384 /* recursive type */
3385 /* XXX: incorrect if abstract type for functions (e.g. 'int ()') */
3386 type1
.t
= 0; /* XXX: same as int */
3389 /* XXX: this is not correct to modify 'ad' at this point, but
3390 the syntax is not clear */
3391 if (tok
== TOK_ATTRIBUTE1
|| tok
== TOK_ATTRIBUTE2
)
3392 parse_attribute(ad
);
3393 type_decl(&type1
, ad
, v
, td
);
3396 /* type identifier */
3397 if (tok
>= TOK_IDENT
&& (td
& TYPE_DIRECT
)) {
3401 if (!(td
& TYPE_ABSTRACT
))
3402 expect("identifier");
3406 storage
= type
->t
& VT_STORAGE
;
3407 type
->t
&= ~VT_STORAGE
;
3408 if (storage
& VT_STATIC
) {
3409 int saved_nocode_wanted
= nocode_wanted
;
3411 post_type(type
, ad
);
3412 nocode_wanted
= saved_nocode_wanted
;
3414 post_type(type
, ad
);
3416 if (tok
== TOK_ATTRIBUTE1
|| tok
== TOK_ATTRIBUTE2
)
3417 parse_attribute(ad
);
3421 /* append type at the end of type1 */
3434 /* compute the lvalue VT_LVAL_xxx needed to match type t. */
3435 ST_FUNC
int lvalue_type(int t
)
3440 if (bt
== VT_BYTE
|| bt
== VT_BOOL
)
3442 else if (bt
== VT_SHORT
)
3446 if (t
& VT_UNSIGNED
)
3447 r
|= VT_LVAL_UNSIGNED
;
3451 /* indirection with full error checking and bound check */
3452 ST_FUNC
void indir(void)
3454 if ((vtop
->type
.t
& VT_BTYPE
) != VT_PTR
) {
3455 if ((vtop
->type
.t
& VT_BTYPE
) == VT_FUNC
)
3459 if ((vtop
->r
& VT_LVAL
) && !nocode_wanted
)
3461 vtop
->type
= *pointed_type(&vtop
->type
);
3462 /* Arrays and functions are never lvalues */
3463 if (!(vtop
->type
.t
& VT_ARRAY
) && !(vtop
->type
.t
& VT_VLA
)
3464 && (vtop
->type
.t
& VT_BTYPE
) != VT_FUNC
) {
3465 vtop
->r
|= lvalue_type(vtop
->type
.t
);
3466 /* if bound checking, the referenced pointer must be checked */
3467 #ifdef CONFIG_TCC_BCHECK
3468 if (tcc_state
->do_bounds_check
)
3469 vtop
->r
|= VT_MUSTBOUND
;
3474 /* pass a parameter to a function and do type checking and casting */
3475 static void gfunc_param_typed(Sym
*func
, Sym
*arg
)
3480 func_type
= func
->c
;
3481 if (func_type
== FUNC_OLD
||
3482 (func_type
== FUNC_ELLIPSIS
&& arg
== NULL
)) {
3483 /* default casting : only need to convert float to double */
3484 if ((vtop
->type
.t
& VT_BTYPE
) == VT_FLOAT
) {
3488 } else if (arg
== NULL
) {
3489 tcc_error("too many arguments to function");
3492 type
.t
&= ~VT_CONSTANT
; /* need to do that to avoid false warning */
3493 gen_assign_cast(&type
);
3497 /* parse an expression of the form '(type)' or '(expr)' and return its
3499 static void parse_expr_type(CType
*type
)
3505 if (parse_btype(type
, &ad
)) {
3506 type_decl(type
, &ad
, &n
, TYPE_ABSTRACT
);
3513 static void parse_type(CType
*type
)
3518 if (!parse_btype(type
, &ad
)) {
3521 type_decl(type
, &ad
, &n
, TYPE_ABSTRACT
);
3524 static void vpush_tokc(int t
)
3529 vsetc(&type
, VT_CONST
, &tokc
);
3532 ST_FUNC
void unary(void)
3534 int n
, t
, align
, size
, r
, sizeof_caller
;
3538 static int in_sizeof
= 0;
3540 sizeof_caller
= in_sizeof
;
3542 /* XXX: GCC 2.95.3 does not generate a table although it should be
3556 vpush_tokc(VT_INT
| VT_UNSIGNED
);
3560 vpush_tokc(VT_LLONG
);
3564 vpush_tokc(VT_LLONG
| VT_UNSIGNED
);
3568 vpush_tokc(VT_FLOAT
);
3572 vpush_tokc(VT_DOUBLE
);
3576 vpush_tokc(VT_LDOUBLE
);
3579 case TOK___FUNCTION__
:
3581 goto tok_identifier
;
3587 /* special function name identifier */
3588 len
= strlen(funcname
) + 1;
3589 /* generate char[len] type */
3594 vpush_ref(&type
, data_section
, data_section
->data_offset
, len
);
3595 ptr
= section_ptr_add(data_section
, len
);
3596 memcpy(ptr
, funcname
, len
);
3601 #ifdef TCC_TARGET_PE
3602 t
= VT_SHORT
| VT_UNSIGNED
;
3608 /* string parsing */
3611 if (tcc_state
->warn_write_strings
)
3616 memset(&ad
, 0, sizeof(AttributeDef
));
3617 decl_initializer_alloc(&type
, &ad
, VT_CONST
, 2, 0, NULL
, 0);
3622 if (parse_btype(&type
, &ad
)) {
3623 type_decl(&type
, &ad
, &n
, TYPE_ABSTRACT
);
3625 /* check ISOC99 compound literal */
3627 /* data is allocated locally by default */
3632 /* all except arrays are lvalues */
3633 if (!(type
.t
& VT_ARRAY
))
3634 r
|= lvalue_type(type
.t
);
3635 memset(&ad
, 0, sizeof(AttributeDef
));
3636 decl_initializer_alloc(&type
, &ad
, r
, 1, 0, NULL
, 0);
3638 if (sizeof_caller
) {
3645 } else if (tok
== '{') {
3646 /* save all registers */
3648 /* statement expression : we do not accept break/continue
3649 inside as GCC does */
3650 block(NULL
, NULL
, NULL
, NULL
, 0, 1);
3665 /* functions names must be treated as function pointers,
3666 except for unary '&' and sizeof. Since we consider that
3667 functions are not lvalues, we only have to handle it
3668 there and in function calls. */
3669 /* arrays can also be used although they are not lvalues */
3670 if ((vtop
->type
.t
& VT_BTYPE
) != VT_FUNC
&&
3671 !(vtop
->type
.t
& VT_ARRAY
) && !(vtop
->type
.t
& VT_LLOCAL
))
3673 mk_pointer(&vtop
->type
);
3679 if ((vtop
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) == VT_CONST
) {
3681 boolean
.t
= VT_BOOL
;
3683 vtop
->c
.i
= !vtop
->c
.i
;
3684 } else if ((vtop
->r
& VT_VALMASK
) == VT_CMP
)
3685 vtop
->c
.i
= vtop
->c
.i
^ 1;
3688 vseti(VT_JMP
, gvtst(1, 0));
3699 /* in order to force cast, we add zero */
3701 if ((vtop
->type
.t
& VT_BTYPE
) == VT_PTR
)
3702 tcc_error("pointer not accepted for unary plus");
3712 unary_type(&type
); // Perform a in_sizeof = 0;
3713 size
= type_size(&type
, &align
);
3714 if (t
== TOK_SIZEOF
) {
3715 if (!(type
.t
& VT_VLA
)) {
3717 tcc_error("sizeof applied to an incomplete type");
3720 vla_runtime_type_size(&type
, &align
);
3725 vtop
->type
.t
|= VT_UNSIGNED
;
3728 case TOK_builtin_types_compatible_p
:
3737 type1
.t
&= ~(VT_CONSTANT
| VT_VOLATILE
);
3738 type2
.t
&= ~(VT_CONSTANT
| VT_VOLATILE
);
3739 vpushi(is_compatible_types(&type1
, &type2
));
3742 case TOK_builtin_constant_p
:
3744 int saved_nocode_wanted
, res
;
3747 saved_nocode_wanted
= nocode_wanted
;
3750 res
= (vtop
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) == VT_CONST
;
3752 nocode_wanted
= saved_nocode_wanted
;
3757 case TOK_builtin_frame_address
:
3763 if (tok
!= TOK_CINT
|| tokc
.i
< 0) {
3764 tcc_error("__builtin_frame_address only takes positive integers");
3771 vset(&type
, VT_LOCAL
, 0); /* local frame */
3773 mk_pointer(&vtop
->type
);
3774 indir(); /* -> parent frame */
3778 #ifdef TCC_TARGET_X86_64
3779 #ifdef TCC_TARGET_PE
3780 case TOK_builtin_va_start
:
3788 if ((vtop
->r
& VT_VALMASK
) != VT_LOCAL
)
3789 tcc_error("__builtin_va_start expects a local variable");
3790 vtop
->r
&= ~(VT_LVAL
| VT_REF
);
3791 vtop
->type
= char_pointer_type
;
3796 case TOK_builtin_va_arg_types
:
3803 vpushi(classify_x86_64_va_arg(&type
));
3818 t
= vtop
->type
.t
& VT_BTYPE
;
3820 if ((vtop
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) == VT_CONST
&&
3823 vtop
->c
.f
= -vtop
->c
.f
;
3824 else if (t
== VT_DOUBLE
)
3825 vtop
->c
.d
= -vtop
->c
.d
;
3827 vtop
->c
.ld
= -vtop
->c
.ld
;
3836 goto tok_identifier
;
3838 /* allow to take the address of a label */
3839 if (tok
< TOK_UIDENT
)
3840 expect("label identifier");
3841 s
= label_find(tok
);
3843 s
= label_push(&global_label_stack
, tok
, LABEL_FORWARD
);
3845 if (s
->r
== LABEL_DECLARED
)
3846 s
->r
= LABEL_FORWARD
;
3849 s
->type
.t
= VT_VOID
;
3850 mk_pointer(&s
->type
);
3851 s
->type
.t
|= VT_STATIC
;
3853 vset(&s
->type
, VT_CONST
| VT_SYM
, 0);
3858 // special qnan , snan and infinity values
3860 vpush64(VT_DOUBLE
, 0x7ff8000000000000ULL
);
3864 vpush64(VT_DOUBLE
, 0x7ff0000000000001ULL
);
3868 vpush64(VT_DOUBLE
, 0x7ff0000000000000ULL
);
3877 expect("identifier");
3881 tcc_error("'%s' undeclared", get_tok_str(t
, NULL
));
3882 /* for simple function calls, we tolerate undeclared
3883 external reference to int() function */
3884 if (tcc_state
->warn_implicit_function_declaration
)
3885 tcc_warning("implicit declaration of function '%s'",
3886 get_tok_str(t
, NULL
));
3887 s
= external_global_sym(t
, &func_old_type
, 0);
3889 if ((s
->type
.t
& (VT_STATIC
| VT_INLINE
| VT_BTYPE
)) ==
3890 (VT_STATIC
| VT_INLINE
| VT_FUNC
)) {
3891 /* if referencing an inline function, then we generate a
3892 symbol to it if not already done. It will have the
3893 effect to generate code for it at the end of the
3894 compilation unit. Inline function as always
3895 generated in the text section. */
3897 put_extern_sym(s
, text_section
, 0, 0);
3898 r
= VT_SYM
| VT_CONST
;
3902 vset(&s
->type
, r
, s
->c
);
3903 /* if forward reference, we must point to s */
3904 if (vtop
->r
& VT_SYM
) {
3911 /* post operations */
3913 if (tok
== TOK_INC
|| tok
== TOK_DEC
) {
3916 } else if (tok
== '.' || tok
== TOK_ARROW
) {
3919 if (tok
== TOK_ARROW
)
3921 qualifiers
= vtop
->type
.t
& (VT_CONSTANT
| VT_VOLATILE
);
3925 /* expect pointer on structure */
3926 if ((vtop
->type
.t
& VT_BTYPE
) != VT_STRUCT
)
3927 expect("struct or union");
3931 while ((s
= s
->next
) != NULL
) {
3936 tcc_error("field not found: %s", get_tok_str(tok
& ~SYM_FIELD
, NULL
));
3937 /* add field offset to pointer */
3938 vtop
->type
= char_pointer_type
; /* change type to 'char *' */
3941 /* change type to field type, and set to lvalue */
3942 vtop
->type
= s
->type
;
3943 vtop
->type
.t
|= qualifiers
;
3944 /* an array is never an lvalue */
3945 if (!(vtop
->type
.t
& VT_ARRAY
)) {
3946 vtop
->r
|= lvalue_type(vtop
->type
.t
);
3947 #ifdef CONFIG_TCC_BCHECK
3948 /* if bound checking, the referenced pointer must be checked */
3949 if (tcc_state
->do_bounds_check
)
3950 vtop
->r
|= VT_MUSTBOUND
;
3954 } else if (tok
== '[') {
3960 } else if (tok
== '(') {
3963 int nb_args
, ret_nregs
, ret_align
;
3966 if ((vtop
->type
.t
& VT_BTYPE
) != VT_FUNC
) {
3967 /* pointer test (no array accepted) */
3968 if ((vtop
->type
.t
& (VT_BTYPE
| VT_ARRAY
)) == VT_PTR
) {
3969 vtop
->type
= *pointed_type(&vtop
->type
);
3970 if ((vtop
->type
.t
& VT_BTYPE
) != VT_FUNC
)
3974 expect("function pointer");
3977 vtop
->r
&= ~VT_LVAL
; /* no lvalue */
3979 /* get return type */
3982 sa
= s
->next
; /* first parameter */
3985 /* compute first implicit argument if a structure is returned */
3986 if ((s
->type
.t
& VT_BTYPE
) == VT_STRUCT
) {
3987 ret_nregs
= gfunc_sret(&s
->type
, &ret
.type
, &ret_align
);
3989 /* get some space for the returned structure */
3990 size
= type_size(&s
->type
, &align
);
3991 loc
= (loc
- size
) & -align
;
3993 ret
.r
= VT_LOCAL
| VT_LVAL
;
3994 /* pass it as 'int' to avoid structure arg passing
3996 vseti(VT_LOCAL
, loc
);
4006 /* return in register */
4007 if (is_float(ret
.type
.t
)) {
4008 ret
.r
= reg_fret(ret
.type
.t
);
4009 #ifdef TCC_TARGET_X86_64
4010 if ((ret
.type
.t
& VT_BTYPE
) == VT_QFLOAT
)
4014 #ifdef TCC_TARGET_X86_64
4015 if ((ret
.type
.t
& VT_BTYPE
) == VT_QLONG
)
4017 if ((ret
.type
.t
& VT_BTYPE
) == VT_LLONG
)
4027 gfunc_param_typed(s
, sa
);
4037 tcc_error("too few arguments to function");
4039 if (!nocode_wanted
) {
4040 gfunc_call(nb_args
);
4042 vtop
-= (nb_args
+ 1);
4046 for (r
= ret
.r
+ ret_nregs
+ !ret_nregs
; r
-- > ret
.r
;) {
4047 vsetc(&ret
.type
, r
, &ret
.c
);
4048 vtop
->r2
= ret
.r2
; /* Loop only happens when r2 is VT_CONST */
4051 /* handle packed struct return */
4052 if (((s
->type
.t
& VT_BTYPE
) == VT_STRUCT
) && ret_nregs
) {
4055 size
= type_size(&s
->type
, &align
);
4056 loc
= (loc
- size
) & -align
;
4060 vset(&ret
.type
, VT_LOCAL
| VT_LVAL
, addr
+ offset
);
4064 if (--ret_nregs
== 0)
4066 /* XXX: compatible with arm only: ret_align == register_size */
4067 offset
+= ret_align
;
4069 vset(&s
->type
, VT_LOCAL
| VT_LVAL
, addr
);
4077 ST_FUNC
void expr_prod(void)
4082 while (tok
== '*' || tok
== '/' || tok
== '%') {
4090 ST_FUNC
void expr_sum(void)
4095 while (tok
== '+' || tok
== '-') {
4103 static void expr_shift(void)
4108 while (tok
== TOK_SHL
|| tok
== TOK_SAR
) {
4116 static void expr_cmp(void)
4121 while ((tok
>= TOK_ULE
&& tok
<= TOK_GT
) ||
4122 tok
== TOK_ULT
|| tok
== TOK_UGE
) {
4130 static void expr_cmpeq(void)
4135 while (tok
== TOK_EQ
|| tok
== TOK_NE
) {
4143 static void expr_and(void)
4146 while (tok
== '&') {
4153 static void expr_xor(void)
4156 while (tok
== '^') {
4163 static void expr_or(void)
4166 while (tok
== '|') {
4173 /* XXX: fix this mess */
4174 static void expr_land_const(void)
4177 while (tok
== TOK_LAND
) {
4184 /* XXX: fix this mess */
4185 static void expr_lor_const(void)
4188 while (tok
== TOK_LOR
) {
4195 /* only used if non constant */
4196 static void expr_land(void)
4201 if (tok
== TOK_LAND
) {
4206 if (tok
!= TOK_LAND
) {
4216 static void expr_lor(void)
4221 if (tok
== TOK_LOR
) {
4226 if (tok
!= TOK_LOR
) {
4236 /* XXX: better constant handling */
4237 static void expr_cond(void)
4239 int tt
, u
, r1
, r2
, rc
, t1
, t2
, bt1
, bt2
;
4241 CType type
, type1
, type2
;
4248 boolean
.t
= VT_BOOL
;
4254 if (tok
!= ':' || !gnu_ext
) {
4269 if (vtop
!= vstack
) {
4270 /* needed to avoid having different registers saved in
4272 if (is_float(vtop
->type
.t
)) {
4274 #ifdef TCC_TARGET_X86_64
4275 if ((vtop
->type
.t
& VT_BTYPE
) == VT_LDOUBLE
) {
4285 if (tok
== ':' && gnu_ext
) {
4293 sv
= *vtop
; /* save value to handle it later */
4294 vtop
--; /* no vpop so that FP stack is not flushed */
4302 bt1
= t1
& VT_BTYPE
;
4304 bt2
= t2
& VT_BTYPE
;
4305 /* cast operands to correct type according to ISOC rules */
4306 if (is_float(bt1
) || is_float(bt2
)) {
4307 if (bt1
== VT_LDOUBLE
|| bt2
== VT_LDOUBLE
) {
4308 type
.t
= VT_LDOUBLE
;
4309 } else if (bt1
== VT_DOUBLE
|| bt2
== VT_DOUBLE
) {
4314 } else if (bt1
== VT_LLONG
|| bt2
== VT_LLONG
) {
4315 /* cast to biggest op */
4317 /* convert to unsigned if it does not fit in a long long */
4318 if ((t1
& (VT_BTYPE
| VT_UNSIGNED
)) == (VT_LLONG
| VT_UNSIGNED
) ||
4319 (t2
& (VT_BTYPE
| VT_UNSIGNED
)) == (VT_LLONG
| VT_UNSIGNED
))
4320 type
.t
|= VT_UNSIGNED
;
4321 } else if (bt1
== VT_PTR
|| bt2
== VT_PTR
) {
4322 /* If one is a null ptr constant the result type
4324 if (is_null_pointer (vtop
))
4326 else if (is_null_pointer (&sv
))
4328 /* XXX: test pointer compatibility, C99 has more elaborate
4332 } else if (bt1
== VT_FUNC
|| bt2
== VT_FUNC
) {
4333 /* XXX: test function pointer compatibility */
4334 type
= bt1
== VT_FUNC
? type1
: type2
;
4335 } else if (bt1
== VT_STRUCT
|| bt2
== VT_STRUCT
) {
4336 /* XXX: test structure compatibility */
4337 type
= bt1
== VT_STRUCT
? type1
: type2
;
4338 } else if (bt1
== VT_VOID
|| bt2
== VT_VOID
) {
4339 /* NOTE: as an extension, we accept void on only one side */
4342 /* integer operations */
4344 /* convert to unsigned if it does not fit in an integer */
4345 if ((t1
& (VT_BTYPE
| VT_UNSIGNED
)) == (VT_INT
| VT_UNSIGNED
) ||
4346 (t2
& (VT_BTYPE
| VT_UNSIGNED
)) == (VT_INT
| VT_UNSIGNED
))
4347 type
.t
|= VT_UNSIGNED
;
4350 /* now we convert second operand */
4352 if (VT_STRUCT
== (vtop
->type
.t
& VT_BTYPE
))
4355 if (is_float(type
.t
)) {
4357 #ifdef TCC_TARGET_X86_64
4358 if ((type
.t
& VT_BTYPE
) == VT_LDOUBLE
) {
4362 } else if ((type
.t
& VT_BTYPE
) == VT_LLONG
) {
4363 /* for long longs, we use fixed registers to avoid having
4364 to handle a complicated move */
4369 /* this is horrible, but we must also convert first
4373 /* put again first value and cast it */
4376 if (VT_STRUCT
== (vtop
->type
.t
& VT_BTYPE
))
4379 move_reg(r2
, r1
, type
.t
);
4386 static void expr_eq(void)
4392 (tok
>= TOK_A_MOD
&& tok
<= TOK_A_DIV
) ||
4393 tok
== TOK_A_XOR
|| tok
== TOK_A_OR
||
4394 tok
== TOK_A_SHL
|| tok
== TOK_A_SAR
) {
4409 ST_FUNC
void gexpr(void)
4420 /* parse an expression and return its type without any side effect. */
4421 static void expr_type(CType
*type
)
4423 int saved_nocode_wanted
;
4425 saved_nocode_wanted
= nocode_wanted
;
4430 nocode_wanted
= saved_nocode_wanted
;
4433 /* parse a unary expression and return its type without any side
4435 static void unary_type(CType
*type
)
4447 /* parse a constant expression and return value in vtop. */
4448 static void expr_const1(void)
4457 /* parse an integer constant and return its value. */
4458 ST_FUNC
int expr_const(void)
4462 if ((vtop
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) != VT_CONST
)
4463 expect("constant expression");
4469 /* return the label token if current token is a label, otherwise
4471 static int is_label(void)
4475 /* fast test first */
4476 if (tok
< TOK_UIDENT
)
4478 /* no need to save tokc because tok is an identifier */
4485 unget_tok(last_tok
);
4490 static void label_or_decl(int l
)
4494 /* fast test first */
4495 if (tok
>= TOK_UIDENT
)
4497 /* no need to save tokc because tok is an identifier */
4501 unget_tok(last_tok
);
4504 unget_tok(last_tok
);
4509 static void block(int *bsym
, int *csym
, int *case_sym
, int *def_sym
,
4510 int case_reg
, int is_expr
)
4513 Sym
*s
, *frame_bottom
;
4515 /* generate line number info */
4516 if (tcc_state
->do_debug
&&
4517 (last_line_num
!= file
->line_num
|| last_ind
!= ind
)) {
4518 put_stabn(N_SLINE
, 0, file
->line_num
, ind
- func_ind
);
4520 last_line_num
= file
->line_num
;
4524 /* default return value is (void) */
4526 vtop
->type
.t
= VT_VOID
;
4529 if (tok
== TOK_IF
) {
4536 block(bsym
, csym
, case_sym
, def_sym
, case_reg
, 0);
4538 if (c
== TOK_ELSE
) {
4542 block(bsym
, csym
, case_sym
, def_sym
, case_reg
, 0);
4543 gsym(d
); /* patch else jmp */
4546 } else if (tok
== TOK_WHILE
) {
4554 block(&a
, &b
, case_sym
, def_sym
, case_reg
, 0);
4558 } else if (tok
== '{') {
4560 int block_vla_sp_loc
, *saved_vla_sp_loc
, saved_vla_flags
;
4563 /* record local declaration stack position */
4565 frame_bottom
= sym_push2(&local_stack
, SYM_FIELD
, 0, 0);
4566 frame_bottom
->next
= scope_stack_bottom
;
4567 scope_stack_bottom
= frame_bottom
;
4568 llabel
= local_label_stack
;
4570 /* save VLA state */
4571 block_vla_sp_loc
= *(saved_vla_sp_loc
= vla_sp_loc
);
4572 if (saved_vla_sp_loc
!= &vla_sp_root_loc
)
4573 vla_sp_loc
= &block_vla_sp_loc
;
4575 saved_vla_flags
= vla_flags
;
4576 vla_flags
|= VLA_NEED_NEW_FRAME
;
4578 /* handle local labels declarations */
4579 if (tok
== TOK_LABEL
) {
4582 if (tok
< TOK_UIDENT
)
4583 expect("label identifier");
4584 label_push(&local_label_stack
, tok
, LABEL_DECLARED
);
4594 while (tok
!= '}') {
4595 label_or_decl(VT_LOCAL
);
4599 block(bsym
, csym
, case_sym
, def_sym
, case_reg
, is_expr
);
4602 /* pop locally defined labels */
4603 label_pop(&local_label_stack
, llabel
);
4605 /* XXX: this solution makes only valgrind happy...
4606 triggered by gcc.c-torture/execute/20000917-1.c */
4608 switch(vtop
->type
.t
& VT_BTYPE
) {
4613 for(p
=vtop
->type
.ref
;p
;p
=p
->prev
)
4615 tcc_error("unsupported expression type");
4618 /* pop locally defined symbols */
4619 scope_stack_bottom
= scope_stack_bottom
->next
;
4620 sym_pop(&local_stack
, s
);
4622 /* Pop VLA frames and restore stack pointer if required */
4623 if (saved_vla_sp_loc
!= &vla_sp_root_loc
)
4624 *saved_vla_sp_loc
= block_vla_sp_loc
;
4625 if (vla_sp_loc
!= (saved_vla_sp_loc
== &vla_sp_root_loc
? &vla_sp_root_loc
: &block_vla_sp_loc
)) {
4626 vla_sp_loc
= saved_vla_sp_loc
;
4627 gen_vla_sp_restore(*vla_sp_loc
);
4629 vla_flags
= (vla_flags
& ~VLA_SCOPE_FLAGS
) | (saved_vla_flags
& VLA_SCOPE_FLAGS
);
4632 } else if (tok
== TOK_RETURN
) {
4636 gen_assign_cast(&func_vt
);
4637 if ((func_vt
.t
& VT_BTYPE
) == VT_STRUCT
) {
4638 CType type
, ret_type
;
4639 int ret_align
, ret_nregs
;
4640 ret_nregs
= gfunc_sret(&func_vt
, &ret_type
, &ret_align
);
4641 if (0 == ret_nregs
) {
4642 /* if returning structure, must copy it to implicit
4643 first pointer arg location */
4646 vset(&type
, VT_LOCAL
| VT_LVAL
, func_vc
);
4649 /* copy structure value to pointer */
4652 /* returning structure packed into registers */
4653 int r
, size
, addr
, align
;
4654 size
= type_size(&func_vt
,&align
);
4655 if ((vtop
->r
!= (VT_LOCAL
| VT_LVAL
) || (vtop
->c
.i
& (ret_align
-1)))
4656 && (align
& (ret_align
-1))) {
4657 loc
= (loc
- size
) & -align
;
4660 vset(&type
, VT_LOCAL
| VT_LVAL
, addr
);
4663 vset(&ret_type
, VT_LOCAL
| VT_LVAL
, addr
);
4665 vtop
->type
= ret_type
;
4666 if (is_float(ret_type
.t
))
4667 r
= rc_fret(ret_type
.t
);
4673 if (--ret_nregs
== 0)
4675 /* We assume that when a structure is returned in multiple
4676 registers, their classes are consecutive values of the
4679 /* XXX: compatible with arm only: ret_align == register_size */
4680 vtop
->c
.i
+= ret_align
;
4681 vtop
->r
= VT_LOCAL
| VT_LVAL
;
4684 } else if (is_float(func_vt
.t
)) {
4685 gv(rc_fret(func_vt
.t
));
4689 vtop
--; /* NOT vpop() because on x86 it would flush the fp stack */
4692 rsym
= gjmp(rsym
); /* jmp */
4693 } else if (tok
== TOK_BREAK
) {
4696 tcc_error("cannot break");
4697 *bsym
= gjmp(*bsym
);
4700 } else if (tok
== TOK_CONTINUE
) {
4703 tcc_error("cannot continue");
4704 *csym
= gjmp(*csym
);
4707 } else if (tok
== TOK_FOR
) {
4712 frame_bottom
= sym_push2(&local_stack
, SYM_FIELD
, 0, 0);
4713 frame_bottom
->next
= scope_stack_bottom
;
4714 scope_stack_bottom
= frame_bottom
;
4716 /* c99 for-loop init decl? */
4717 if (!decl0(VT_LOCAL
, 1)) {
4718 /* no, regular for-loop init expr */
4742 block(&a
, &b
, case_sym
, def_sym
, case_reg
, 0);
4746 scope_stack_bottom
= scope_stack_bottom
->next
;
4747 sym_pop(&local_stack
, s
);
4749 if (tok
== TOK_DO
) {
4754 block(&a
, &b
, case_sym
, def_sym
, case_reg
, 0);
4765 if (tok
== TOK_SWITCH
) {
4769 /* XXX: other types than integer */
4770 case_reg
= gv(RC_INT
);
4774 b
= gjmp(0); /* jump to first case */
4776 block(&a
, csym
, &b
, &c
, case_reg
, 0);
4777 /* if no default, jmp after switch */
4785 if (tok
== TOK_CASE
) {
4792 if (gnu_ext
&& tok
== TOK_DOTS
) {
4796 tcc_warning("empty case range");
4798 /* since a case is like a label, we must skip it with a jmp */
4805 *case_sym
= gtst(1, 0);
4808 *case_sym
= gtst(1, 0);
4812 *case_sym
= gtst(1, *case_sym
);
4817 goto block_after_label
;
4819 if (tok
== TOK_DEFAULT
) {
4825 tcc_error("too many 'default'");
4828 goto block_after_label
;
4830 if (tok
== TOK_GOTO
) {
4832 if (tok
== '*' && gnu_ext
) {
4836 if ((vtop
->type
.t
& VT_BTYPE
) != VT_PTR
)
4839 } else if (tok
>= TOK_UIDENT
) {
4840 s
= label_find(tok
);
4841 /* put forward definition if needed */
4843 s
= label_push(&global_label_stack
, tok
, LABEL_FORWARD
);
4845 if (s
->r
== LABEL_DECLARED
)
4846 s
->r
= LABEL_FORWARD
;
4848 /* label already defined */
4849 if (vla_flags
& VLA_IN_SCOPE
) {
4850 /* If VLAs are in use, save the current stack pointer and
4851 reset the stack pointer to what it was at function entry
4852 (label will restore stack pointer in inner scopes) */
4854 gen_vla_sp_restore(vla_sp_root_loc
);
4856 if (s
->r
& LABEL_FORWARD
)
4857 s
->jnext
= gjmp(s
->jnext
);
4859 gjmp_addr(s
->jnext
);
4862 expect("label identifier");
4865 } else if (tok
== TOK_ASM1
|| tok
== TOK_ASM2
|| tok
== TOK_ASM3
) {
4871 if (vla_flags
& VLA_IN_SCOPE
) {
4872 /* save/restore stack pointer across label
4873 this is a no-op when combined with the load immediately
4874 after the label unless we arrive via goto */
4879 if (s
->r
== LABEL_DEFINED
)
4880 tcc_error("duplicate label '%s'", get_tok_str(s
->v
, NULL
));
4882 s
->r
= LABEL_DEFINED
;
4884 s
= label_push(&global_label_stack
, b
, LABEL_DEFINED
);
4887 if (vla_flags
& VLA_IN_SCOPE
) {
4888 gen_vla_sp_restore(*vla_sp_loc
);
4889 vla_flags
|= VLA_NEED_NEW_FRAME
;
4891 /* we accept this, but it is a mistake */
4894 tcc_warning("deprecated use of label at end of compound statement");
4898 block(bsym
, csym
, case_sym
, def_sym
, case_reg
, is_expr
);
4901 /* expression case */
4916 /* t is the array or struct type. c is the array or struct
4917 address. cur_index/cur_field is the pointer to the current
4918 value. 'size_only' is true if only size info is needed (only used
4920 static void decl_designator(CType
*type
, Section
*sec
, unsigned long c
,
4921 int *cur_index
, Sym
**cur_field
,
4925 int notfirst
, index
, index_last
, align
, l
, nb_elems
, elem_size
;
4931 if (gnu_ext
&& (l
= is_label()) != 0)
4933 while (tok
== '[' || tok
== '.') {
4935 if (!(type
->t
& VT_ARRAY
))
4936 expect("array type");
4939 index
= expr_const();
4940 if (index
< 0 || (s
->c
>= 0 && index
>= s
->c
))
4941 expect("invalid index");
4942 if (tok
== TOK_DOTS
&& gnu_ext
) {
4944 index_last
= expr_const();
4945 if (index_last
< 0 ||
4946 (s
->c
>= 0 && index_last
>= s
->c
) ||
4948 expect("invalid index");
4954 *cur_index
= index_last
;
4955 type
= pointed_type(type
);
4956 elem_size
= type_size(type
, &align
);
4957 c
+= index
* elem_size
;
4958 /* NOTE: we only support ranges for last designator */
4959 nb_elems
= index_last
- index
+ 1;
4960 if (nb_elems
!= 1) {
4969 if ((type
->t
& VT_BTYPE
) != VT_STRUCT
)
4970 expect("struct/union type");
4983 /* XXX: fix this mess by using explicit storage field */
4985 type1
.t
|= (type
->t
& ~VT_TYPE
);
4999 if (type
->t
& VT_ARRAY
) {
5001 type
= pointed_type(type
);
5002 c
+= index
* type_size(type
, &align
);
5006 tcc_error("too many field init");
5007 /* XXX: fix this mess by using explicit storage field */
5009 type1
.t
|= (type
->t
& ~VT_TYPE
);
5014 decl_initializer(type
, sec
, c
, 0, size_only
);
5016 /* XXX: make it more general */
5017 if (!size_only
&& nb_elems
> 1) {
5018 unsigned long c_end
;
5023 tcc_error("range init not supported yet for dynamic storage");
5024 c_end
= c
+ nb_elems
* elem_size
;
5025 if (c_end
> sec
->data_allocated
)
5026 section_realloc(sec
, c_end
);
5027 src
= sec
->data
+ c
;
5029 for(i
= 1; i
< nb_elems
; i
++) {
5031 memcpy(dst
, src
, elem_size
);
5037 #define EXPR_CONST 1
5040 /* store a value or an expression directly in global data or in local array */
5041 static void init_putv(CType
*type
, Section
*sec
, unsigned long c
,
5042 int v
, int expr_type
)
5044 int saved_global_expr
, bt
, bit_pos
, bit_size
;
5046 unsigned long long bit_mask
;
5054 /* compound literals must be allocated globally in this case */
5055 saved_global_expr
= global_expr
;
5058 global_expr
= saved_global_expr
;
5059 /* NOTE: symbols are accepted */
5060 if ((vtop
->r
& (VT_VALMASK
| VT_LVAL
)) != VT_CONST
)
5061 tcc_error("initializer element is not constant");
5069 dtype
.t
&= ~VT_CONSTANT
; /* need to do that to avoid false warning */
5072 /* XXX: not portable */
5073 /* XXX: generate error if incorrect relocation */
5074 gen_assign_cast(&dtype
);
5075 bt
= type
->t
& VT_BTYPE
;
5076 /* we'll write at most 12 bytes */
5077 if (c
+ 12 > sec
->data_allocated
) {
5078 section_realloc(sec
, c
+ 12);
5080 ptr
= sec
->data
+ c
;
5081 /* XXX: make code faster ? */
5082 if (!(type
->t
& VT_BITFIELD
)) {
5087 bit_pos
= (vtop
->type
.t
>> VT_STRUCT_SHIFT
) & 0x3f;
5088 bit_size
= (vtop
->type
.t
>> (VT_STRUCT_SHIFT
+ 6)) & 0x3f;
5089 bit_mask
= (1LL << bit_size
) - 1;
5091 if ((vtop
->r
& VT_SYM
) &&
5097 (bt
== VT_INT
&& bit_size
!= 32)))
5098 tcc_error("initializer element is not computable at load time");
5101 vtop
->c
.i
= (vtop
->c
.i
!= 0);
5103 *(char *)ptr
|= (vtop
->c
.i
& bit_mask
) << bit_pos
;
5106 *(short *)ptr
|= (vtop
->c
.i
& bit_mask
) << bit_pos
;
5109 *(double *)ptr
= vtop
->c
.d
;
5112 *(long double *)ptr
= vtop
->c
.ld
;
5115 *(long long *)ptr
|= (vtop
->c
.ll
& bit_mask
) << bit_pos
;
5118 if (vtop
->r
& VT_SYM
) {
5119 greloc(sec
, vtop
->sym
, c
, R_DATA_PTR
);
5121 *(int *)ptr
|= (vtop
->c
.i
& bit_mask
) << bit_pos
;
5126 vset(&dtype
, VT_LOCAL
|VT_LVAL
, c
);
5133 /* put zeros for variable based init */
5134 static void init_putz(CType
*t
, Section
*sec
, unsigned long c
, int size
)
5137 /* nothing to do because globals are already set to zero */
5139 vpush_global_sym(&func_old_type
, TOK_memset
);
5147 /* 't' contains the type and storage info. 'c' is the offset of the
5148 object in section 'sec'. If 'sec' is NULL, it means stack based
5149 allocation. 'first' is true if array '{' must be read (multi
5150 dimension implicit array init handling). 'size_only' is true if
5151 size only evaluation is wanted (only for arrays). */
5152 static void decl_initializer(CType
*type
, Section
*sec
, unsigned long c
,
5153 int first
, int size_only
)
5155 int index
, array_length
, n
, no_oblock
, nb
, parlevel
, parlevel1
, i
;
5156 int size1
, align1
, expr_type
;
5160 if (type
->t
& VT_VLA
) {
5163 /* save current stack pointer */
5164 if (vla_flags
& VLA_NEED_NEW_FRAME
) {
5166 vla_flags
= VLA_IN_SCOPE
;
5167 vla_sp_loc
= &vla_sp_loc_tmp
;
5170 vla_runtime_type_size(type
, &a
);
5171 gen_vla_alloc(type
, a
);
5172 vset(type
, VT_LOCAL
|VT_LVAL
, c
);
5176 } else if (type
->t
& VT_ARRAY
) {
5180 t1
= pointed_type(type
);
5181 size1
= type_size(t1
, &align1
);
5184 if ((first
&& tok
!= TOK_LSTR
&& tok
!= TOK_STR
) ||
5187 tcc_error("character array initializer must be a literal,"
5188 " optionally enclosed in braces");
5193 /* only parse strings here if correct type (otherwise: handle
5194 them as ((w)char *) expressions */
5195 if ((tok
== TOK_LSTR
&&
5196 #ifdef TCC_TARGET_PE
5197 (t1
->t
& VT_BTYPE
) == VT_SHORT
&& (t1
->t
& VT_UNSIGNED
)
5199 (t1
->t
& VT_BTYPE
) == VT_INT
5201 ) || (tok
== TOK_STR
&& (t1
->t
& VT_BTYPE
) == VT_BYTE
)) {
5202 while (tok
== TOK_STR
|| tok
== TOK_LSTR
) {
5207 /* compute maximum number of chars wanted */
5209 cstr_len
= cstr
->size
;
5211 cstr_len
= cstr
->size
/ sizeof(nwchar_t
);
5214 if (n
>= 0 && nb
> (n
- array_length
))
5215 nb
= n
- array_length
;
5218 tcc_warning("initializer-string for array is too long");
5219 /* in order to go faster for common case (char
5220 string in global variable, we handle it
5222 if (sec
&& tok
== TOK_STR
&& size1
== 1) {
5223 memcpy(sec
->data
+ c
+ array_length
, cstr
->data
, nb
);
5227 ch
= ((unsigned char *)cstr
->data
)[i
];
5229 ch
= ((nwchar_t
*)cstr
->data
)[i
];
5230 init_putv(t1
, sec
, c
+ (array_length
+ i
) * size1
,
5238 /* only add trailing zero if enough storage (no
5239 warning in this case since it is standard) */
5240 if (n
< 0 || array_length
< n
) {
5242 init_putv(t1
, sec
, c
+ (array_length
* size1
), 0, EXPR_VAL
);
5248 while (tok
!= '}') {
5249 decl_designator(type
, sec
, c
, &index
, NULL
, size_only
);
5250 if (n
>= 0 && index
>= n
)
5251 tcc_error("index too large");
5252 /* must put zero in holes (note that doing it that way
5253 ensures that it even works with designators) */
5254 if (!size_only
&& array_length
< index
) {
5255 init_putz(t1
, sec
, c
+ array_length
* size1
,
5256 (index
- array_length
) * size1
);
5259 if (index
> array_length
)
5260 array_length
= index
;
5261 /* special test for multi dimensional arrays (may not
5262 be strictly correct if designators are used at the
5264 if (index
>= n
&& no_oblock
)
5273 /* put zeros at the end */
5274 if (!size_only
&& n
>= 0 && array_length
< n
) {
5275 init_putz(t1
, sec
, c
+ array_length
* size1
,
5276 (n
- array_length
) * size1
);
5278 /* patch type size if needed */
5280 s
->c
= array_length
;
5281 } else if ((type
->t
& VT_BTYPE
) == VT_STRUCT
&&
5282 (sec
|| !first
|| tok
== '{')) {
5285 /* NOTE: the previous test is a specific case for automatic
5286 struct/union init */
5287 /* XXX: union needs only one init */
5289 /* XXX: this test is incorrect for local initializers
5290 beginning with ( without {. It would be much more difficult
5291 to do it correctly (ideally, the expression parser should
5292 be used in all cases) */
5298 while (tok
== '(') {
5302 if (!parse_btype(&type1
, &ad1
))
5304 type_decl(&type1
, &ad1
, &n
, TYPE_ABSTRACT
);
5306 if (!is_assignable_types(type
, &type1
))
5307 tcc_error("invalid type for cast");
5312 if (first
|| tok
== '{') {
5321 while (tok
!= '}') {
5322 decl_designator(type
, sec
, c
, NULL
, &f
, size_only
);
5324 if (!size_only
&& array_length
< index
) {
5325 init_putz(type
, sec
, c
+ array_length
,
5326 index
- array_length
);
5328 index
= index
+ type_size(&f
->type
, &align1
);
5329 if (index
> array_length
)
5330 array_length
= index
;
5332 /* gr: skip fields from same union - ugly. */
5334 ///printf("index: %2d %08x -- %2d %08x\n", f->c, f->type.t, f->next->c, f->next->type.t);
5335 /* test for same offset */
5336 if (f
->next
->c
!= f
->c
)
5338 /* if yes, test for bitfield shift */
5339 if ((f
->type
.t
& VT_BITFIELD
) && (f
->next
->type
.t
& VT_BITFIELD
)) {
5340 int bit_pos_1
= (f
->type
.t
>> VT_STRUCT_SHIFT
) & 0x3f;
5341 int bit_pos_2
= (f
->next
->type
.t
>> VT_STRUCT_SHIFT
) & 0x3f;
5342 //printf("bitfield %d %d\n", bit_pos_1, bit_pos_2);
5343 if (bit_pos_1
!= bit_pos_2
)
5350 if (no_oblock
&& f
== NULL
)
5356 /* put zeros at the end */
5357 if (!size_only
&& array_length
< n
) {
5358 init_putz(type
, sec
, c
+ array_length
,
5367 } else if (tok
== '{') {
5369 decl_initializer(type
, sec
, c
, first
, size_only
);
5371 } else if (size_only
) {
5372 /* just skip expression */
5373 parlevel
= parlevel1
= 0;
5374 while ((parlevel
> 0 || parlevel1
> 0 ||
5375 (tok
!= '}' && tok
!= ',')) && tok
!= -1) {
5378 else if (tok
== ')')
5380 else if (tok
== '{')
5382 else if (tok
== '}')
5387 /* currently, we always use constant expression for globals
5388 (may change for scripting case) */
5389 expr_type
= EXPR_CONST
;
5391 expr_type
= EXPR_ANY
;
5392 init_putv(type
, sec
, c
, 0, expr_type
);
5396 /* parse an initializer for type 't' if 'has_init' is non zero, and
5397 allocate space in local or global data space ('r' is either
5398 VT_LOCAL or VT_CONST). If 'v' is non zero, then an associated
5399 variable 'v' with an associated name represented by 'asm_label' of
5400 scope 'scope' is declared before initializers are parsed. If 'v' is
5401 zero, then a reference to the new object is put in the value stack.
5402 If 'has_init' is 2, a special parsing is done to handle string
5404 static void decl_initializer_alloc(CType
*type
, AttributeDef
*ad
, int r
,
5405 int has_init
, int v
, char *asm_label
,
5408 int size
, align
, addr
, data_offset
;
5410 ParseState saved_parse_state
= {0};
5411 TokenString init_str
;
5413 Sym
*flexible_array
;
5415 flexible_array
= NULL
;
5416 if ((type
->t
& VT_BTYPE
) == VT_STRUCT
) {
5417 Sym
*field
= type
->ref
->next
;
5420 field
= field
->next
;
5421 if (field
->type
.t
& VT_ARRAY
&& field
->type
.ref
->c
< 0)
5422 flexible_array
= field
;
5426 size
= type_size(type
, &align
);
5427 /* If unknown size, we must evaluate it before
5428 evaluating initializers because
5429 initializers can generate global data too
5430 (e.g. string pointers or ISOC99 compound
5431 literals). It also simplifies local
5432 initializers handling */
5433 tok_str_new(&init_str
);
5434 if (size
< 0 || (flexible_array
&& has_init
)) {
5436 tcc_error("unknown type size");
5437 /* get all init string */
5438 if (has_init
== 2) {
5439 /* only get strings */
5440 while (tok
== TOK_STR
|| tok
== TOK_LSTR
) {
5441 tok_str_add_tok(&init_str
);
5446 while (level
> 0 || (tok
!= ',' && tok
!= ';')) {
5448 tcc_error("unexpected end of file in initializer");
5449 tok_str_add_tok(&init_str
);
5452 else if (tok
== '}') {
5462 tok_str_add(&init_str
, -1);
5463 tok_str_add(&init_str
, 0);
5466 save_parse_state(&saved_parse_state
);
5468 macro_ptr
= init_str
.str
;
5470 decl_initializer(type
, NULL
, 0, 1, 1);
5471 /* prepare second initializer parsing */
5472 macro_ptr
= init_str
.str
;
5475 /* if still unknown size, error */
5476 size
= type_size(type
, &align
);
5478 tcc_error("unknown type size");
5481 size
+= flexible_array
->type
.ref
->c
* pointed_size(&flexible_array
->type
);
5482 /* take into account specified alignment if bigger */
5484 if (ad
->aligned
> align
)
5485 align
= ad
->aligned
;
5486 } else if (ad
->packed
) {
5489 if ((r
& VT_VALMASK
) == VT_LOCAL
) {
5491 #ifdef CONFIG_TCC_BCHECK
5492 if (tcc_state
->do_bounds_check
&& (type
->t
& VT_ARRAY
)) {
5496 loc
= (loc
- size
) & -align
;
5498 #ifdef CONFIG_TCC_BCHECK
5499 /* handles bounds */
5500 /* XXX: currently, since we do only one pass, we cannot track
5501 '&' operators, so we add only arrays */
5502 if (tcc_state
->do_bounds_check
&& (type
->t
& VT_ARRAY
)) {
5503 unsigned long *bounds_ptr
;
5504 /* add padding between regions */
5506 /* then add local bound info */
5507 bounds_ptr
= section_ptr_add(lbounds_section
, 2 * sizeof(unsigned long));
5508 bounds_ptr
[0] = addr
;
5509 bounds_ptr
[1] = size
;
5513 /* local variable */
5514 sym_push(v
, type
, r
, addr
);
5516 /* push local reference */
5517 vset(type
, r
, addr
);
5523 if (v
&& scope
== VT_CONST
) {
5524 /* see if the symbol was already defined */
5527 if (!is_compatible_types(&sym
->type
, type
))
5528 tcc_error("incompatible types for redefinition of '%s'",
5529 get_tok_str(v
, NULL
));
5530 if (sym
->type
.t
& VT_EXTERN
) {
5531 /* if the variable is extern, it was not allocated */
5532 sym
->type
.t
&= ~VT_EXTERN
;
5533 /* set array size if it was ommited in extern
5535 if ((sym
->type
.t
& VT_ARRAY
) &&
5536 sym
->type
.ref
->c
< 0 &&
5538 sym
->type
.ref
->c
= type
->ref
->c
;
5540 /* we accept several definitions of the same
5541 global variable. this is tricky, because we
5542 must play with the SHN_COMMON type of the symbol */
5543 /* XXX: should check if the variable was already
5544 initialized. It is incorrect to initialized it
5546 /* no init data, we won't add more to the symbol */
5553 /* allocate symbol in corresponding section */
5558 else if (tcc_state
->nocommon
)
5562 data_offset
= sec
->data_offset
;
5563 data_offset
= (data_offset
+ align
- 1) & -align
;
5565 /* very important to increment global pointer at this time
5566 because initializers themselves can create new initializers */
5567 data_offset
+= size
;
5568 #ifdef CONFIG_TCC_BCHECK
5569 /* add padding if bound check */
5570 if (tcc_state
->do_bounds_check
)
5573 sec
->data_offset
= data_offset
;
5574 /* allocate section space to put the data */
5575 if (sec
->sh_type
!= SHT_NOBITS
&&
5576 data_offset
> sec
->data_allocated
)
5577 section_realloc(sec
, data_offset
);
5578 /* align section if needed */
5579 if (align
> sec
->sh_addralign
)
5580 sec
->sh_addralign
= align
;
5582 addr
= 0; /* avoid warning */
5586 if (scope
!= VT_CONST
|| !sym
) {
5587 sym
= sym_push(v
, type
, r
| VT_SYM
, 0);
5588 sym
->asm_label
= asm_label
;
5590 /* update symbol definition */
5592 put_extern_sym(sym
, sec
, addr
, size
);
5595 /* put a common area */
5596 put_extern_sym(sym
, NULL
, align
, size
);
5597 /* XXX: find a nicer way */
5598 esym
= &((ElfW(Sym
) *)symtab_section
->data
)[sym
->c
];
5599 esym
->st_shndx
= SHN_COMMON
;
5604 /* push global reference */
5605 sym
= get_sym_ref(type
, sec
, addr
, size
);
5607 vsetc(type
, VT_CONST
| VT_SYM
, &cval
);
5610 /* patch symbol weakness */
5611 if (type
->t
& VT_WEAK
)
5613 #ifdef CONFIG_TCC_BCHECK
5614 /* handles bounds now because the symbol must be defined
5615 before for the relocation */
5616 if (tcc_state
->do_bounds_check
) {
5617 unsigned long *bounds_ptr
;
5619 greloc(bounds_section
, sym
, bounds_section
->data_offset
, R_DATA_PTR
);
5620 /* then add global bound info */
5621 bounds_ptr
= section_ptr_add(bounds_section
, 2 * sizeof(long));
5622 bounds_ptr
[0] = 0; /* relocated */
5623 bounds_ptr
[1] = size
;
5627 if (has_init
|| (type
->t
& VT_VLA
)) {
5628 decl_initializer(type
, sec
, addr
, 1, 0);
5629 /* restore parse state if needed */
5631 tok_str_free(init_str
.str
);
5632 restore_parse_state(&saved_parse_state
);
5634 /* patch flexible array member size back to -1, */
5635 /* for possible subsequent similar declarations */
5637 flexible_array
->type
.ref
->c
= -1;
5642 static void put_func_debug(Sym
*sym
)
5647 /* XXX: we put here a dummy type */
5648 snprintf(buf
, sizeof(buf
), "%s:%c1",
5649 funcname
, sym
->type
.t
& VT_STATIC
? 'f' : 'F');
5650 put_stabs_r(buf
, N_FUN
, 0, file
->line_num
, 0,
5651 cur_text_section
, sym
->c
);
5652 /* //gr gdb wants a line at the function */
5653 put_stabn(N_SLINE
, 0, file
->line_num
, 0);
5658 /* parse an old style function declaration list */
5659 /* XXX: check multiple parameter */
5660 static void func_decl_list(Sym
*func_sym
)
5667 /* parse each declaration */
5668 while (tok
!= '{' && tok
!= ';' && tok
!= ',' && tok
!= TOK_EOF
&&
5669 tok
!= TOK_ASM1
&& tok
!= TOK_ASM2
&& tok
!= TOK_ASM3
) {
5670 if (!parse_btype(&btype
, &ad
))
5671 expect("declaration list");
5672 if (((btype
.t
& VT_BTYPE
) == VT_ENUM
||
5673 (btype
.t
& VT_BTYPE
) == VT_STRUCT
) &&
5675 /* we accept no variable after */
5679 type_decl(&type
, &ad
, &v
, TYPE_DIRECT
);
5680 /* find parameter in function parameter list */
5683 if ((s
->v
& ~SYM_FIELD
) == v
)
5687 tcc_error("declaration for parameter '%s' but no such parameter",
5688 get_tok_str(v
, NULL
));
5690 /* check that no storage specifier except 'register' was given */
5691 if (type
.t
& VT_STORAGE
)
5692 tcc_error("storage class specified for '%s'", get_tok_str(v
, NULL
));
5693 convert_parameter_type(&type
);
5694 /* we can add the type (NOTE: it could be local to the function) */
5696 /* accept other parameters */
5707 /* parse a function defined by symbol 'sym' and generate its code in
5708 'cur_text_section' */
5709 static void gen_function(Sym
*sym
)
5711 int saved_nocode_wanted
= nocode_wanted
;
5713 ind
= cur_text_section
->data_offset
;
5714 /* NOTE: we patch the symbol size later */
5715 put_extern_sym(sym
, cur_text_section
, ind
, 0);
5716 funcname
= get_tok_str(sym
->v
, NULL
);
5718 /* Initialize VLA state */
5719 vla_sp_loc
= &vla_sp_root_loc
;
5720 vla_flags
= VLA_NEED_NEW_FRAME
;
5721 /* put debug symbol */
5722 if (tcc_state
->do_debug
)
5723 put_func_debug(sym
);
5724 /* push a dummy symbol to enable local sym storage */
5725 sym_push2(&local_stack
, SYM_FIELD
, 0, 0);
5726 gfunc_prolog(&sym
->type
);
5728 block(NULL
, NULL
, NULL
, NULL
, 0, 0);
5731 cur_text_section
->data_offset
= ind
;
5732 label_pop(&global_label_stack
, NULL
);
5733 /* reset local stack */
5734 scope_stack_bottom
= NULL
;
5735 sym_pop(&local_stack
, NULL
);
5736 /* end of function */
5737 /* patch symbol size */
5738 ((ElfW(Sym
) *)symtab_section
->data
)[sym
->c
].st_size
=
5740 /* patch symbol weakness (this definition overrules any prototype) */
5741 if (sym
->type
.t
& VT_WEAK
)
5743 if (tcc_state
->do_debug
) {
5744 put_stabn(N_FUN
, 0, 0, ind
- func_ind
);
5746 /* It's better to crash than to generate wrong code */
5747 cur_text_section
= NULL
;
5748 funcname
= ""; /* for safety */
5749 func_vt
.t
= VT_VOID
; /* for safety */
5750 ind
= 0; /* for safety */
5751 nocode_wanted
= saved_nocode_wanted
;
5754 ST_FUNC
void gen_inline_functions(void)
5757 int *str
, inline_generated
, i
;
5758 struct InlineFunc
*fn
;
5760 /* iterate while inline function are referenced */
5762 inline_generated
= 0;
5763 for (i
= 0; i
< tcc_state
->nb_inline_fns
; ++i
) {
5764 fn
= tcc_state
->inline_fns
[i
];
5766 if (sym
&& sym
->c
) {
5767 /* the function was used: generate its code and
5768 convert it to a normal function */
5769 str
= fn
->token_str
;
5772 pstrcpy(file
->filename
, sizeof file
->filename
, fn
->filename
);
5773 sym
->r
= VT_SYM
| VT_CONST
;
5774 sym
->type
.t
&= ~VT_INLINE
;
5778 cur_text_section
= text_section
;
5780 macro_ptr
= NULL
; /* fail safe */
5782 inline_generated
= 1;
5785 if (!inline_generated
)
5788 for (i
= 0; i
< tcc_state
->nb_inline_fns
; ++i
) {
5789 fn
= tcc_state
->inline_fns
[i
];
5790 str
= fn
->token_str
;
5793 dynarray_reset(&tcc_state
->inline_fns
, &tcc_state
->nb_inline_fns
);
5796 /* 'l' is VT_LOCAL or VT_CONST to define default storage type */
5797 static int decl0(int l
, int is_for_loop_init
)
5805 if (!parse_btype(&btype
, &ad
)) {
5806 if (is_for_loop_init
)
5808 /* skip redundant ';' */
5809 /* XXX: find more elegant solution */
5814 if (l
== VT_CONST
&&
5815 (tok
== TOK_ASM1
|| tok
== TOK_ASM2
|| tok
== TOK_ASM3
)) {
5816 /* global asm block */
5820 /* special test for old K&R protos without explicit int
5821 type. Only accepted when defining global data */
5822 if (l
== VT_LOCAL
|| tok
< TOK_DEFINE
)
5826 if (((btype
.t
& VT_BTYPE
) == VT_ENUM
||
5827 (btype
.t
& VT_BTYPE
) == VT_STRUCT
) &&
5829 /* we accept no variable after */
5833 while (1) { /* iterate thru each declaration */
5834 char *asm_label
; // associated asm label
5836 type_decl(&type
, &ad
, &v
, TYPE_DIRECT
);
5840 type_to_str(buf
, sizeof(buf
), t
, get_tok_str(v
, NULL
));
5841 printf("type = '%s'\n", buf
);
5844 if ((type
.t
& VT_BTYPE
) == VT_FUNC
) {
5845 if ((type
.t
& VT_STATIC
) && (l
== VT_LOCAL
)) {
5846 tcc_error("function without file scope cannot be static");
5848 /* if old style function prototype, we accept a
5851 if (sym
->c
== FUNC_OLD
)
5852 func_decl_list(sym
);
5856 if (gnu_ext
&& (tok
== TOK_ASM1
|| tok
== TOK_ASM2
|| tok
== TOK_ASM3
)) {
5859 asm_label_instr(&astr
);
5860 asm_label
= tcc_strdup(astr
.data
);
5863 /* parse one last attribute list, after asm label */
5864 parse_attribute(&ad
);
5869 #ifdef TCC_TARGET_PE
5871 type
.t
|= VT_IMPORT
;
5873 type
.t
|= VT_EXPORT
;
5877 tcc_error("cannot use local functions");
5878 if ((type
.t
& VT_BTYPE
) != VT_FUNC
)
5879 expect("function definition");
5881 /* reject abstract declarators in function definition */
5883 while ((sym
= sym
->next
) != NULL
)
5884 if (!(sym
->v
& ~SYM_FIELD
))
5885 expect("identifier");
5887 /* XXX: cannot do better now: convert extern line to static inline */
5888 if ((type
.t
& (VT_EXTERN
| VT_INLINE
)) == (VT_EXTERN
| VT_INLINE
))
5889 type
.t
= (type
.t
& ~VT_EXTERN
) | VT_STATIC
;
5893 if ((sym
->type
.t
& VT_BTYPE
) != VT_FUNC
)
5896 r
= sym
->type
.ref
->r
;
5899 tcc_error("redefinition of '%s'", get_tok_str(v
, NULL
));
5901 /* use func_call from prototype if not defined */
5902 if (FUNC_CALL(r
) != FUNC_CDECL
5903 && FUNC_CALL(type
.ref
->r
) == FUNC_CDECL
)
5904 FUNC_CALL(type
.ref
->r
) = FUNC_CALL(r
);
5906 /* use export from prototype */
5908 FUNC_EXPORT(type
.ref
->r
) = 1;
5910 /* use static from prototype */
5911 if (sym
->type
.t
& VT_STATIC
)
5912 type
.t
= (type
.t
& ~VT_EXTERN
) | VT_STATIC
;
5914 if (!is_compatible_types(&sym
->type
, &type
)) {
5916 tcc_error("incompatible types for redefinition of '%s'",
5917 get_tok_str(v
, NULL
));
5919 FUNC_PROTO(type
.ref
->r
) = 0;
5920 /* if symbol is already defined, then put complete type */
5923 /* put function symbol */
5924 sym
= global_identifier_push(v
, type
.t
, 0);
5925 sym
->type
.ref
= type
.ref
;
5928 /* static inline functions are just recorded as a kind
5929 of macro. Their code will be emitted at the end of
5930 the compilation unit only if they are used */
5931 if ((type
.t
& (VT_INLINE
| VT_STATIC
)) ==
5932 (VT_INLINE
| VT_STATIC
)) {
5933 TokenString func_str
;
5935 struct InlineFunc
*fn
;
5936 const char *filename
;
5938 tok_str_new(&func_str
);
5944 tcc_error("unexpected end of file");
5945 tok_str_add_tok(&func_str
);
5950 } else if (t
== '}') {
5952 if (block_level
== 0)
5956 tok_str_add(&func_str
, -1);
5957 tok_str_add(&func_str
, 0);
5958 filename
= file
? file
->filename
: "";
5959 fn
= tcc_malloc(sizeof *fn
+ strlen(filename
));
5960 strcpy(fn
->filename
, filename
);
5962 fn
->token_str
= func_str
.str
;
5963 dynarray_add((void ***)&tcc_state
->inline_fns
, &tcc_state
->nb_inline_fns
, fn
);
5966 /* compute text section */
5967 cur_text_section
= ad
.section
;
5968 if (!cur_text_section
)
5969 cur_text_section
= text_section
;
5970 sym
->r
= VT_SYM
| VT_CONST
;
5975 if (btype
.t
& VT_TYPEDEF
) {
5976 /* save typedefed type */
5977 /* XXX: test storage specifiers ? */
5978 sym
= sym_push(v
, &type
, INT_ATTR(&ad
), 0);
5979 sym
->type
.t
|= VT_TYPEDEF
;
5982 if ((type
.t
& VT_BTYPE
) == VT_FUNC
) {
5983 /* external function definition */
5984 /* specific case for func_call attribute */
5986 type
.ref
->r
= INT_ATTR(&ad
);
5987 } else if (!(type
.t
& VT_ARRAY
)) {
5988 /* not lvalue if array */
5989 r
|= lvalue_type(type
.t
);
5991 has_init
= (tok
== '=');
5992 if (has_init
&& (type
.t
& VT_VLA
))
5993 tcc_error("Variable length array cannot be initialized");
5994 if ((btype
.t
& VT_EXTERN
) || ((type
.t
& VT_BTYPE
) == VT_FUNC
) ||
5995 ((type
.t
& VT_ARRAY
) && (type
.t
& VT_STATIC
) &&
5996 !has_init
&& l
== VT_CONST
&& type
.ref
->c
< 0)) {
5997 /* external variable or function */
5998 /* NOTE: as GCC, uninitialized global static
5999 arrays of null size are considered as
6001 sym
= external_sym(v
, &type
, r
, asm_label
);
6003 if (type
.t
& VT_WEAK
)
6006 if (ad
.alias_target
) {
6011 alias_target
= sym_find(ad
.alias_target
);
6012 if (!alias_target
|| !alias_target
->c
)
6013 tcc_error("unsupported forward __alias__ attribute");
6014 esym
= &((Elf32_Sym
*)symtab_section
->data
)[alias_target
->c
];
6015 tsec
.sh_num
= esym
->st_shndx
;
6016 put_extern_sym2(sym
, &tsec
, esym
->st_value
, esym
->st_size
, 0);
6019 type
.t
|= (btype
.t
& VT_STATIC
); /* Retain "static". */
6020 if (type
.t
& VT_STATIC
)
6026 decl_initializer_alloc(&type
, &ad
, r
, has_init
, v
, asm_label
, l
);
6030 if (is_for_loop_init
)
6043 ST_FUNC
void decl(int l
)