2 * TCC - Tiny C Compiler
4 * Copyright (c) 2001-2004 Fabrice Bellard
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 /********************************************************/
24 /* global variables */
26 /* loc : local variable index
27 ind : output code index
29 anon_sym: anonymous symbol index
31 ST_DATA
int rsym
, anon_sym
, ind
, loc
;
33 ST_DATA Section
*text_section
, *data_section
, *bss_section
; /* predefined sections */
34 ST_DATA Section
*cur_text_section
; /* current section where function code is generated */
36 ST_DATA Section
*last_text_section
; /* to handle .previous asm directive */
38 #ifdef CONFIG_TCC_BCHECK
39 /* bound check related sections */
40 ST_DATA Section
*bounds_section
; /* contains global data bound description */
41 ST_DATA Section
*lbounds_section
; /* contains local data bound description */
44 ST_DATA Section
*symtab_section
, *strtab_section
;
46 ST_DATA Section
*stab_section
, *stabstr_section
;
47 ST_DATA Sym
*sym_free_first
;
48 ST_DATA
void **sym_pools
;
49 ST_DATA
int nb_sym_pools
;
51 ST_DATA Sym
*global_stack
;
52 ST_DATA Sym
*local_stack
;
53 ST_DATA Sym
*define_stack
;
54 ST_DATA Sym
*global_label_stack
;
55 ST_DATA Sym
*local_label_stack
;
57 ST_DATA SValue vstack
[VSTACK_SIZE
], *vtop
;
59 ST_DATA
int const_wanted
; /* true if constant wanted */
60 ST_DATA
int nocode_wanted
; /* true if no code generation wanted for an expression */
61 ST_DATA
int global_expr
; /* true if compound literals must be allocated globally (used during initializers parsing */
62 ST_DATA CType func_vt
; /* current function return type (used by return instruction) */
64 ST_DATA
int last_line_num
, last_ind
, func_ind
; /* debug last line number and pc */
65 ST_DATA
char *funcname
;
67 ST_DATA CType char_pointer_type
, func_old_type
, int_type
;
69 /* ------------------------------------------------------------------------- */
70 static void gen_cast(CType
*type
);
71 static inline CType
*pointed_type(CType
*type
);
72 static int is_compatible_types(CType
*type1
, CType
*type2
);
73 static int parse_btype(CType
*type
, AttributeDef
*ad
);
74 static void type_decl(CType
*type
, AttributeDef
*ad
, int *v
, int td
);
75 static void parse_expr_type(CType
*type
);
76 static void decl_initializer(CType
*type
, Section
*sec
, unsigned long c
, int first
, int size_only
);
77 static void block(int *bsym
, int *csym
, int *case_sym
, int *def_sym
, int case_reg
, int is_expr
);
78 static void decl_initializer_alloc(CType
*type
, AttributeDef
*ad
, int r
, int has_init
, int v
, int scope
);
79 static void expr_eq(void);
80 static void unary_type(CType
*type
);
81 static int is_compatible_parameter_types(CType
*type1
, CType
*type2
);
82 static void expr_type(CType
*type
);
84 ST_INLN
int is_float(int t
)
88 return bt
== VT_LDOUBLE
|| bt
== VT_DOUBLE
|| bt
== VT_FLOAT
;
91 ST_FUNC
void test_lvalue(void)
93 if (!(vtop
->r
& VT_LVAL
))
97 /* ------------------------------------------------------------------------- */
98 /* symbol allocator */
99 static Sym
*__sym_malloc(void)
101 Sym
*sym_pool
, *sym
, *last_sym
;
104 sym_pool
= tcc_malloc(SYM_POOL_NB
* sizeof(Sym
));
105 dynarray_add(&sym_pools
, &nb_sym_pools
, sym_pool
);
107 last_sym
= sym_free_first
;
109 for(i
= 0; i
< SYM_POOL_NB
; i
++) {
110 sym
->next
= last_sym
;
114 sym_free_first
= last_sym
;
118 static inline Sym
*sym_malloc(void)
121 sym
= sym_free_first
;
123 sym
= __sym_malloc();
124 sym_free_first
= sym
->next
;
128 ST_INLN
void sym_free(Sym
*sym
)
130 sym
->next
= sym_free_first
;
131 sym_free_first
= sym
;
134 /* push, without hashing */
135 ST_FUNC Sym
*sym_push2(Sym
**ps
, int v
, int t
, long c
)
153 /* find a symbol and return its associated structure. 's' is the top
154 of the symbol stack */
155 ST_FUNC Sym
*sym_find2(Sym
*s
, int v
)
165 /* structure lookup */
166 ST_INLN Sym
*struct_find(int v
)
169 if ((unsigned)v
>= (unsigned)(tok_ident
- TOK_IDENT
))
171 return table_ident
[v
]->sym_struct
;
174 /* find an identifier */
175 ST_INLN Sym
*sym_find(int v
)
178 if ((unsigned)v
>= (unsigned)(tok_ident
- TOK_IDENT
))
180 return table_ident
[v
]->sym_identifier
;
183 /* push a given symbol on the symbol stack */
184 ST_FUNC Sym
*sym_push(int v
, CType
*type
, int r
, int c
)
193 s
= sym_push2(ps
, v
, type
->t
, c
);
194 s
->type
.ref
= type
->ref
;
196 /* don't record fields or anonymous symbols */
198 if (!(v
& SYM_FIELD
) && (v
& ~SYM_STRUCT
) < SYM_FIRST_ANOM
) {
199 /* record symbol in token array */
200 ts
= table_ident
[(v
& ~SYM_STRUCT
) - TOK_IDENT
];
202 ps
= &ts
->sym_struct
;
204 ps
= &ts
->sym_identifier
;
211 /* push a global identifier */
212 ST_FUNC Sym
*global_identifier_push(int v
, int t
, int c
)
215 s
= sym_push2(&global_stack
, v
, t
, c
);
216 /* don't record anonymous symbol */
217 if (v
< SYM_FIRST_ANOM
) {
218 ps
= &table_ident
[v
- TOK_IDENT
]->sym_identifier
;
219 /* modify the top most local identifier, so that
220 sym_identifier will point to 's' when popped */
222 ps
= &(*ps
)->prev_tok
;
229 /* pop symbols until top reaches 'b' */
230 ST_FUNC
void sym_pop(Sym
**ptop
, Sym
*b
)
240 /* remove symbol in token array */
242 if (!(v
& SYM_FIELD
) && (v
& ~SYM_STRUCT
) < SYM_FIRST_ANOM
) {
243 ts
= table_ident
[(v
& ~SYM_STRUCT
) - TOK_IDENT
];
245 ps
= &ts
->sym_struct
;
247 ps
= &ts
->sym_identifier
;
256 /* ------------------------------------------------------------------------- */
258 ST_FUNC
void swap(int *p
, int *q
)
266 static void vsetc(CType
*type
, int r
, CValue
*vc
)
270 if (vtop
>= vstack
+ (VSTACK_SIZE
- 1))
271 error("memory full");
272 /* cannot let cpu flags if other instruction are generated. Also
273 avoid leaving VT_JMP anywhere except on the top of the stack
274 because it would complicate the code generator. */
275 if (vtop
>= vstack
) {
276 v
= vtop
->r
& VT_VALMASK
;
277 if (v
== VT_CMP
|| (v
& ~1) == VT_JMP
)
287 /* push constant of type "type" with useless value */
288 void vpush(CType
*type
)
291 vsetc(type
, VT_CONST
, &cval
);
294 /* push integer constant */
295 ST_FUNC
void vpushi(int v
)
299 vsetc(&int_type
, VT_CONST
, &cval
);
302 /* push long long constant */
303 static void vpushll(long long v
)
310 vsetc(&ctype
, VT_CONST
, &cval
);
313 /* push arbitrary 64bit constant */
314 void vpush64(int ty
, unsigned long long v
)
320 vsetc(&ctype
, VT_CONST
, &cval
);
323 /* Return a static symbol pointing to a section */
324 ST_FUNC Sym
*get_sym_ref(CType
*type
, Section
*sec
, unsigned long offset
, unsigned long size
)
330 sym
= global_identifier_push(v
, type
->t
| VT_STATIC
, 0);
331 sym
->type
.ref
= type
->ref
;
332 sym
->r
= VT_CONST
| VT_SYM
;
333 put_extern_sym(sym
, sec
, offset
, size
);
337 /* push a reference to a section offset by adding a dummy symbol */
338 static void vpush_ref(CType
*type
, Section
*sec
, unsigned long offset
, unsigned long size
)
343 vsetc(type
, VT_CONST
| VT_SYM
, &cval
);
344 vtop
->sym
= get_sym_ref(type
, sec
, offset
, size
);
347 /* define a new external reference to a symbol 'v' of type 'u' */
348 ST_FUNC Sym
*external_global_sym(int v
, CType
*type
, int r
)
354 /* push forward reference */
355 s
= global_identifier_push(v
, type
->t
| VT_EXTERN
, 0);
356 s
->type
.ref
= type
->ref
;
357 s
->r
= r
| VT_CONST
| VT_SYM
;
362 /* define a new external reference to a symbol 'v' of type 'u' */
363 static Sym
*external_sym(int v
, CType
*type
, int r
)
369 /* push forward reference */
370 s
= sym_push(v
, type
, r
| VT_CONST
| VT_SYM
, 0);
371 s
->type
.t
|= VT_EXTERN
;
372 } else if (s
->type
.ref
== func_old_type
.ref
) {
373 s
->type
.ref
= type
->ref
;
374 s
->r
= r
| VT_CONST
| VT_SYM
;
375 s
->type
.t
|= VT_EXTERN
;
376 } else if (!is_compatible_types(&s
->type
, type
)) {
377 error("incompatible types for redefinition of '%s'",
378 get_tok_str(v
, NULL
));
383 /* push a reference to global symbol v */
384 ST_FUNC
void vpush_global_sym(CType
*type
, int v
)
389 sym
= external_global_sym(v
, type
, 0);
391 vsetc(type
, VT_CONST
| VT_SYM
, &cval
);
395 ST_FUNC
void vset(CType
*type
, int r
, int v
)
400 vsetc(type
, r
, &cval
);
403 static void vseti(int r
, int v
)
411 ST_FUNC
void vswap(void)
420 ST_FUNC
void vpushv(SValue
*v
)
422 if (vtop
>= vstack
+ (VSTACK_SIZE
- 1))
423 error("memory full");
428 static void vdup(void)
433 /* save r to the memory stack, and mark it as being free */
434 ST_FUNC
void save_reg(int r
)
436 int l
, saved
, size
, align
;
440 /* modify all stack values */
443 for(p
=vstack
;p
<=vtop
;p
++) {
444 if ((p
->r
& VT_VALMASK
) == r
||
445 ((p
->type
.t
& VT_BTYPE
) == VT_LLONG
&& (p
->r2
& VT_VALMASK
) == r
)) {
446 /* must save value on stack if not already done */
448 /* NOTE: must reload 'r' because r might be equal to r2 */
449 r
= p
->r
& VT_VALMASK
;
450 /* store register in the stack */
452 if ((p
->r
& VT_LVAL
) ||
453 (!is_float(type
->t
) && (type
->t
& VT_BTYPE
) != VT_LLONG
))
454 #ifdef TCC_TARGET_X86_64
455 type
= &char_pointer_type
;
459 size
= type_size(type
, &align
);
460 loc
= (loc
- size
) & -align
;
462 sv
.r
= VT_LOCAL
| VT_LVAL
;
465 #if defined(TCC_TARGET_I386) || defined(TCC_TARGET_X86_64)
466 /* x86 specific: need to pop fp register ST0 if saved */
468 o(0xd8dd); /* fstp %st(0) */
471 #ifndef TCC_TARGET_X86_64
472 /* special long long case */
473 if ((type
->t
& VT_BTYPE
) == VT_LLONG
) {
481 /* mark that stack entry as being saved on the stack */
482 if (p
->r
& VT_LVAL
) {
483 /* also clear the bounded flag because the
484 relocation address of the function was stored in
486 p
->r
= (p
->r
& ~(VT_VALMASK
| VT_BOUNDED
)) | VT_LLOCAL
;
488 p
->r
= lvalue_type(p
->type
.t
) | VT_LOCAL
;
496 #ifdef TCC_TARGET_ARM
497 /* find a register of class 'rc2' with at most one reference on stack.
498 * If none, call get_reg(rc) */
499 ST_FUNC
int get_reg_ex(int rc
, int rc2
)
504 for(r
=0;r
<NB_REGS
;r
++) {
505 if (reg_classes
[r
] & rc2
) {
508 for(p
= vstack
; p
<= vtop
; p
++) {
509 if ((p
->r
& VT_VALMASK
) == r
||
510 (p
->r2
& VT_VALMASK
) == r
)
521 /* find a free register of class 'rc'. If none, save one register */
522 ST_FUNC
int get_reg(int rc
)
527 /* find a free register */
528 for(r
=0;r
<NB_REGS
;r
++) {
529 if (reg_classes
[r
] & rc
) {
530 for(p
=vstack
;p
<=vtop
;p
++) {
531 if ((p
->r
& VT_VALMASK
) == r
||
532 (p
->r2
& VT_VALMASK
) == r
)
540 /* no register left : free the first one on the stack (VERY
541 IMPORTANT to start from the bottom to ensure that we don't
542 spill registers used in gen_opi()) */
543 for(p
=vstack
;p
<=vtop
;p
++) {
544 r
= p
->r
& VT_VALMASK
;
545 if (r
< VT_CONST
&& (reg_classes
[r
] & rc
))
547 /* also look at second register (if long long) */
548 r
= p
->r2
& VT_VALMASK
;
549 if (r
< VT_CONST
&& (reg_classes
[r
] & rc
)) {
555 /* Should never comes here */
559 /* save registers up to (vtop - n) stack entry */
560 ST_FUNC
void save_regs(int n
)
565 for(p
= vstack
;p
<= p1
; p
++) {
566 r
= p
->r
& VT_VALMASK
;
573 /* move register 's' to 'r', and flush previous value of r to memory
575 static void move_reg(int r
, int s
)
588 /* get address of vtop (vtop MUST BE an lvalue) */
589 static void gaddrof(void)
592 /* tricky: if saved lvalue, then we can go back to lvalue */
593 if ((vtop
->r
& VT_VALMASK
) == VT_LLOCAL
)
594 vtop
->r
= (vtop
->r
& ~(VT_VALMASK
| VT_LVAL_TYPE
)) | VT_LOCAL
| VT_LVAL
;
597 #ifdef CONFIG_TCC_BCHECK
598 /* generate lvalue bound code */
599 static void gbound(void)
604 vtop
->r
&= ~VT_MUSTBOUND
;
605 /* if lvalue, then use checking code before dereferencing */
606 if (vtop
->r
& VT_LVAL
) {
607 /* if not VT_BOUNDED value, then make one */
608 if (!(vtop
->r
& VT_BOUNDED
)) {
609 lval_type
= vtop
->r
& (VT_LVAL_TYPE
| VT_LVAL
);
610 /* must save type because we must set it to int to get pointer */
612 vtop
->type
.t
= VT_INT
;
615 gen_bounded_ptr_add();
616 vtop
->r
|= lval_type
;
619 /* then check for dereferencing */
620 gen_bounded_ptr_deref();
625 /* store vtop a register belonging to class 'rc'. lvalues are
626 converted to values. Cannot be used if cannot be converted to
627 register value (such as structures). */
628 ST_FUNC
int gv(int rc
)
630 int r
, rc2
, bit_pos
, bit_size
, size
, align
, i
;
632 /* NOTE: get_reg can modify vstack[] */
633 if (vtop
->type
.t
& VT_BITFIELD
) {
636 bit_pos
= (vtop
->type
.t
>> VT_STRUCT_SHIFT
) & 0x3f;
637 bit_size
= (vtop
->type
.t
>> (VT_STRUCT_SHIFT
+ 6)) & 0x3f;
638 /* remove bit field info to avoid loops */
639 vtop
->type
.t
&= ~(VT_BITFIELD
| (-1 << VT_STRUCT_SHIFT
));
640 /* cast to int to propagate signedness in following ops */
641 if ((vtop
->type
.t
& VT_BTYPE
) == VT_LLONG
) {
646 if((vtop
->type
.t
& VT_UNSIGNED
) ||
647 (vtop
->type
.t
& VT_BTYPE
) == VT_BOOL
)
648 type
.t
|= VT_UNSIGNED
;
650 /* generate shifts */
651 vpushi(bits
- (bit_pos
+ bit_size
));
653 vpushi(bits
- bit_size
);
654 /* NOTE: transformed to SHR if unsigned */
658 if (is_float(vtop
->type
.t
) &&
659 (vtop
->r
& (VT_VALMASK
| VT_LVAL
)) == VT_CONST
) {
662 unsigned long offset
;
663 #if defined(TCC_TARGET_ARM) && !defined(TCC_ARM_VFP)
667 /* XXX: unify with initializers handling ? */
668 /* CPUs usually cannot use float constants, so we store them
669 generically in data segment */
670 size
= type_size(&vtop
->type
, &align
);
671 offset
= (data_section
->data_offset
+ align
- 1) & -align
;
672 data_section
->data_offset
= offset
;
673 /* XXX: not portable yet */
674 #if defined(__i386__) || defined(__x86_64__)
675 /* Zero pad x87 tenbyte long doubles */
676 if (size
== LDOUBLE_SIZE
)
677 vtop
->c
.tab
[2] &= 0xffff;
679 ptr
= section_ptr_add(data_section
, size
);
681 #if defined(TCC_TARGET_ARM) && !defined(TCC_ARM_VFP)
685 ptr
[i
] = vtop
->c
.tab
[size
-1-i
];
689 ptr
[i
] = vtop
->c
.tab
[i
];
690 sym
= get_sym_ref(&vtop
->type
, data_section
, offset
, size
<< 2);
691 vtop
->r
|= VT_LVAL
| VT_SYM
;
695 #ifdef CONFIG_TCC_BCHECK
696 if (vtop
->r
& VT_MUSTBOUND
)
700 r
= vtop
->r
& VT_VALMASK
;
704 /* need to reload if:
706 - lvalue (need to dereference pointer)
707 - already a register, but not in the right class */
709 || (vtop
->r
& VT_LVAL
)
710 || !(reg_classes
[r
] & rc
)
711 #ifndef TCC_TARGET_X86_64
712 || ((vtop
->type
.t
& VT_BTYPE
) == VT_LLONG
&& !(reg_classes
[vtop
->r2
] & rc2
))
717 #ifndef TCC_TARGET_X86_64
718 if ((vtop
->type
.t
& VT_BTYPE
) == VT_LLONG
) {
720 unsigned long long ll
;
721 /* two register type load : expand to two words
723 if ((vtop
->r
& (VT_VALMASK
| VT_LVAL
)) == VT_CONST
) {
726 vtop
->c
.ui
= ll
; /* first word */
728 vtop
->r
= r
; /* save register value */
729 vpushi(ll
>> 32); /* second word */
730 } else if (r
>= VT_CONST
|| /* XXX: test to VT_CONST incorrect ? */
731 (vtop
->r
& VT_LVAL
)) {
732 /* We do not want to modifier the long long
733 pointer here, so the safest (and less
734 efficient) is to save all the other registers
735 in the stack. XXX: totally inefficient. */
737 /* load from memory */
740 vtop
[-1].r
= r
; /* save register value */
741 /* increment pointer to get second word */
742 vtop
->type
.t
= VT_INT
;
751 vtop
[-1].r
= r
; /* save register value */
752 vtop
->r
= vtop
[-1].r2
;
754 /* allocate second register */
758 /* write second register */
762 if ((vtop
->r
& VT_LVAL
) && !is_float(vtop
->type
.t
)) {
764 /* lvalue of scalar type : need to use lvalue type
765 because of possible cast */
768 /* compute memory access type */
769 if (vtop
->r
& VT_LVAL_BYTE
)
771 else if (vtop
->r
& VT_LVAL_SHORT
)
773 if (vtop
->r
& VT_LVAL_UNSIGNED
)
777 /* restore wanted type */
780 /* one register type load */
785 #ifdef TCC_TARGET_C67
786 /* uses register pairs for doubles */
787 if ((vtop
->type
.t
& VT_BTYPE
) == VT_DOUBLE
)
794 /* generate vtop[-1] and vtop[0] in resp. classes rc1 and rc2 */
795 ST_FUNC
void gv2(int rc1
, int rc2
)
799 /* generate more generic register first. But VT_JMP or VT_CMP
800 values must be generated first in all cases to avoid possible
802 v
= vtop
[0].r
& VT_VALMASK
;
803 if (v
!= VT_CMP
&& (v
& ~1) != VT_JMP
&& rc1
<= rc2
) {
808 /* test if reload is needed for first register */
809 if ((vtop
[-1].r
& VT_VALMASK
) >= VT_CONST
) {
819 /* test if reload is needed for first register */
820 if ((vtop
[0].r
& VT_VALMASK
) >= VT_CONST
) {
826 /* wrapper around RC_FRET to return a register by type */
827 static int rc_fret(int t
)
829 #ifdef TCC_TARGET_X86_64
830 if (t
== VT_LDOUBLE
) {
837 /* wrapper around REG_FRET to return a register by type */
838 static int reg_fret(int t
)
840 #ifdef TCC_TARGET_X86_64
841 if (t
== VT_LDOUBLE
) {
848 /* expand long long on stack in two int registers */
849 static void lexpand(void)
853 u
= vtop
->type
.t
& VT_UNSIGNED
;
856 vtop
[0].r
= vtop
[-1].r2
;
857 vtop
[0].r2
= VT_CONST
;
858 vtop
[-1].r2
= VT_CONST
;
859 vtop
[0].type
.t
= VT_INT
| u
;
860 vtop
[-1].type
.t
= VT_INT
| u
;
863 #ifdef TCC_TARGET_ARM
864 /* expand long long on stack */
865 ST_FUNC
void lexpand_nr(void)
869 u
= vtop
->type
.t
& VT_UNSIGNED
;
872 vtop
->type
.t
= VT_INT
| u
;
873 v
=vtop
[-1].r
& (VT_VALMASK
| VT_LVAL
);
875 vtop
[-1].c
.ui
= vtop
->c
.ull
;
876 vtop
->c
.ui
= vtop
->c
.ull
>> 32;
878 } else if (v
== (VT_LVAL
|VT_CONST
) || v
== (VT_LVAL
|VT_LOCAL
)) {
880 vtop
->r
= vtop
[-1].r
;
881 } else if (v
> VT_CONST
) {
885 vtop
->r
= vtop
[-1].r2
;
886 vtop
[-1].r2
= VT_CONST
;
887 vtop
[-1].type
.t
= VT_INT
| u
;
891 /* build a long long from two ints */
892 static void lbuild(int t
)
895 vtop
[-1].r2
= vtop
[0].r
;
900 /* rotate n first stack elements to the bottom
901 I1 ... In -> I2 ... In I1 [top is right]
903 static void vrotb(int n
)
914 /* rotate n first stack elements to the top
915 I1 ... In -> In I1 ... I(n-1) [top is right]
917 ST_FUNC
void vrott(int n
)
923 for(i
= 0;i
< n
- 1; i
++)
924 vtop
[-i
] = vtop
[-i
- 1];
928 #ifdef TCC_TARGET_ARM
929 /* like vrott but in other direction
930 In ... I1 -> I(n-1) ... I1 In [top is right]
932 ST_FUNC
void vnrott(int n
)
938 for(i
= n
- 1; i
> 0; i
--)
939 vtop
[-i
] = vtop
[-i
+ 1];
944 /* pop stack value */
945 ST_FUNC
void vpop(void)
948 v
= vtop
->r
& VT_VALMASK
;
949 #if defined(TCC_TARGET_I386) || defined(TCC_TARGET_X86_64)
950 /* for x86, we need to pop the FP stack */
951 if (v
== TREG_ST0
&& !nocode_wanted
) {
952 o(0xd8dd); /* fstp %st(0) */
955 if (v
== VT_JMP
|| v
== VT_JMPI
) {
956 /* need to put correct jump if && or || without test */
962 /* convert stack entry to register and duplicate its value in another
964 static void gv_dup(void)
970 if ((t
& VT_BTYPE
) == VT_LLONG
) {
977 /* stack: H L L1 H1 */
985 /* duplicate value */
990 #ifdef TCC_TARGET_X86_64
991 if ((t
& VT_BTYPE
) == VT_LDOUBLE
) {
1001 load(r1
, &sv
); /* move r to r1 */
1003 /* duplicates value */
1009 #ifndef TCC_TARGET_X86_64
1010 /* generate CPU independent (unsigned) long long operations */
1011 static void gen_opl(int op
)
1013 int t
, a
, b
, op1
, c
, i
;
1015 unsigned short reg_iret
= REG_IRET
;
1016 unsigned short reg_lret
= REG_LRET
;
1022 func
= TOK___divdi3
;
1025 func
= TOK___udivdi3
;
1028 func
= TOK___moddi3
;
1031 func
= TOK___umoddi3
;
1038 /* call generic long long function */
1039 vpush_global_sym(&func_old_type
, func
);
1044 vtop
->r2
= reg_lret
;
1057 /* stack: L1 H1 L2 H2 */
1062 vtop
[-2] = vtop
[-3];
1065 /* stack: H1 H2 L1 L2 */
1071 /* stack: H1 H2 L1 L2 ML MH */
1074 /* stack: ML MH H1 H2 L1 L2 */
1078 /* stack: ML MH H1 L2 H2 L1 */
1083 /* stack: ML MH M1 M2 */
1086 } else if (op
== '+' || op
== '-') {
1087 /* XXX: add non carry method too (for MIPS or alpha) */
1093 /* stack: H1 H2 (L1 op L2) */
1096 gen_op(op1
+ 1); /* TOK_xxxC2 */
1099 /* stack: H1 H2 (L1 op L2) */
1102 /* stack: (L1 op L2) H1 H2 */
1104 /* stack: (L1 op L2) (H1 op H2) */
1112 if ((vtop
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) == VT_CONST
) {
1113 t
= vtop
[-1].type
.t
;
1117 /* stack: L H shift */
1119 /* constant: simpler */
1120 /* NOTE: all comments are for SHL. the other cases are
1121 done by swaping words */
1132 if (op
!= TOK_SAR
) {
1165 /* XXX: should provide a faster fallback on x86 ? */
1168 func
= TOK___ashrdi3
;
1171 func
= TOK___lshrdi3
;
1174 func
= TOK___ashldi3
;
1180 /* compare operations */
1186 /* stack: L1 H1 L2 H2 */
1188 vtop
[-1] = vtop
[-2];
1190 /* stack: L1 L2 H1 H2 */
1193 /* when values are equal, we need to compare low words. since
1194 the jump is inverted, we invert the test too. */
1197 else if (op1
== TOK_GT
)
1199 else if (op1
== TOK_ULT
)
1201 else if (op1
== TOK_UGT
)
1206 if (op1
!= TOK_NE
) {
1210 /* generate non equal test */
1211 /* XXX: NOT PORTABLE yet */
1215 #if defined(TCC_TARGET_I386)
1216 b
= psym(0x850f, 0);
1217 #elif defined(TCC_TARGET_ARM)
1219 o(0x1A000000 | encbranch(ind
, 0, 1));
1220 #elif defined(TCC_TARGET_C67)
1221 error("not implemented");
1223 #error not supported
1227 /* compare low. Always unsigned */
1231 else if (op1
== TOK_LE
)
1233 else if (op1
== TOK_GT
)
1235 else if (op1
== TOK_GE
)
1246 /* handle integer constant optimizations and various machine
1248 static void gen_opic(int op
)
1250 int c1
, c2
, t1
, t2
, n
;
1253 typedef unsigned long long U
;
1257 t1
= v1
->type
.t
& VT_BTYPE
;
1258 t2
= v2
->type
.t
& VT_BTYPE
;
1262 else if (v1
->type
.t
& VT_UNSIGNED
)
1269 else if (v2
->type
.t
& VT_UNSIGNED
)
1274 /* currently, we cannot do computations with forward symbols */
1275 c1
= (v1
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) == VT_CONST
;
1276 c2
= (v2
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) == VT_CONST
;
1279 case '+': l1
+= l2
; break;
1280 case '-': l1
-= l2
; break;
1281 case '&': l1
&= l2
; break;
1282 case '^': l1
^= l2
; break;
1283 case '|': l1
|= l2
; break;
1284 case '*': l1
*= l2
; break;
1291 /* if division by zero, generate explicit division */
1294 error("division by zero in constant");
1298 default: l1
/= l2
; break;
1299 case '%': l1
%= l2
; break;
1300 case TOK_UDIV
: l1
= (U
)l1
/ l2
; break;
1301 case TOK_UMOD
: l1
= (U
)l1
% l2
; break;
1304 case TOK_SHL
: l1
<<= l2
; break;
1305 case TOK_SHR
: l1
= (U
)l1
>> l2
; break;
1306 case TOK_SAR
: l1
>>= l2
; break;
1308 case TOK_ULT
: l1
= (U
)l1
< (U
)l2
; break;
1309 case TOK_UGE
: l1
= (U
)l1
>= (U
)l2
; break;
1310 case TOK_EQ
: l1
= l1
== l2
; break;
1311 case TOK_NE
: l1
= l1
!= l2
; break;
1312 case TOK_ULE
: l1
= (U
)l1
<= (U
)l2
; break;
1313 case TOK_UGT
: l1
= (U
)l1
> (U
)l2
; break;
1314 case TOK_LT
: l1
= l1
< l2
; break;
1315 case TOK_GE
: l1
= l1
>= l2
; break;
1316 case TOK_LE
: l1
= l1
<= l2
; break;
1317 case TOK_GT
: l1
= l1
> l2
; break;
1319 case TOK_LAND
: l1
= l1
&& l2
; break;
1320 case TOK_LOR
: l1
= l1
|| l2
; break;
1327 /* if commutative ops, put c2 as constant */
1328 if (c1
&& (op
== '+' || op
== '&' || op
== '^' ||
1329 op
== '|' || op
== '*')) {
1331 c2
= c1
; //c = c1, c1 = c2, c2 = c;
1332 l2
= l1
; //l = l1, l1 = l2, l2 = l;
1334 /* Filter out NOP operations like x*1, x-0, x&-1... */
1335 if (c2
&& (((op
== '*' || op
== '/' || op
== TOK_UDIV
||
1338 ((op
== '+' || op
== '-' || op
== '|' || op
== '^' ||
1339 op
== TOK_SHL
|| op
== TOK_SHR
|| op
== TOK_SAR
) &&
1345 } else if (c2
&& (op
== '*' || op
== TOK_PDIV
|| op
== TOK_UDIV
)) {
1346 /* try to use shifts instead of muls or divs */
1347 if (l2
> 0 && (l2
& (l2
- 1)) == 0) {
1356 else if (op
== TOK_PDIV
)
1362 } else if (c2
&& (op
== '+' || op
== '-') &&
1363 (((vtop
[-1].r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) == (VT_CONST
| VT_SYM
))
1364 || (vtop
[-1].r
& (VT_VALMASK
| VT_LVAL
)) == VT_LOCAL
)) {
1365 /* symbol + constant case */
1372 if (!nocode_wanted
) {
1373 /* call low level op generator */
1374 if (t1
== VT_LLONG
|| t2
== VT_LLONG
)
1385 /* generate a floating point operation with constant propagation */
1386 static void gen_opif(int op
)
1394 /* currently, we cannot do computations with forward symbols */
1395 c1
= (v1
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) == VT_CONST
;
1396 c2
= (v2
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) == VT_CONST
;
1398 if (v1
->type
.t
== VT_FLOAT
) {
1401 } else if (v1
->type
.t
== VT_DOUBLE
) {
1409 /* NOTE: we only do constant propagation if finite number (not
1410 NaN or infinity) (ANSI spec) */
1411 if (!ieee_finite(f1
) || !ieee_finite(f2
))
1415 case '+': f1
+= f2
; break;
1416 case '-': f1
-= f2
; break;
1417 case '*': f1
*= f2
; break;
1421 error("division by zero in constant");
1426 /* XXX: also handles tests ? */
1430 /* XXX: overflow test ? */
1431 if (v1
->type
.t
== VT_FLOAT
) {
1433 } else if (v1
->type
.t
== VT_DOUBLE
) {
1441 if (!nocode_wanted
) {
1449 static int pointed_size(CType
*type
)
1452 return type_size(pointed_type(type
), &align
);
1455 static inline int is_null_pointer(SValue
*p
)
1457 if ((p
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) != VT_CONST
)
1459 return ((p
->type
.t
& VT_BTYPE
) == VT_INT
&& p
->c
.i
== 0) ||
1460 ((p
->type
.t
& VT_BTYPE
) == VT_LLONG
&& p
->c
.ll
== 0);
1463 static inline int is_integer_btype(int bt
)
1465 return (bt
== VT_BYTE
|| bt
== VT_SHORT
||
1466 bt
== VT_INT
|| bt
== VT_LLONG
);
1469 /* check types for comparison or substraction of pointers */
1470 static void check_comparison_pointer_types(SValue
*p1
, SValue
*p2
, int op
)
1472 CType
*type1
, *type2
, tmp_type1
, tmp_type2
;
1475 /* null pointers are accepted for all comparisons as gcc */
1476 if (is_null_pointer(p1
) || is_null_pointer(p2
))
1480 bt1
= type1
->t
& VT_BTYPE
;
1481 bt2
= type2
->t
& VT_BTYPE
;
1482 /* accept comparison between pointer and integer with a warning */
1483 if ((is_integer_btype(bt1
) || is_integer_btype(bt2
)) && op
!= '-') {
1484 if (op
!= TOK_LOR
&& op
!= TOK_LAND
)
1485 warning("comparison between pointer and integer");
1489 /* both must be pointers or implicit function pointers */
1490 if (bt1
== VT_PTR
) {
1491 type1
= pointed_type(type1
);
1492 } else if (bt1
!= VT_FUNC
)
1493 goto invalid_operands
;
1495 if (bt2
== VT_PTR
) {
1496 type2
= pointed_type(type2
);
1497 } else if (bt2
!= VT_FUNC
) {
1499 error("invalid operands to binary %s", get_tok_str(op
, NULL
));
1501 if ((type1
->t
& VT_BTYPE
) == VT_VOID
||
1502 (type2
->t
& VT_BTYPE
) == VT_VOID
)
1506 tmp_type1
.t
&= ~(VT_UNSIGNED
| VT_CONSTANT
| VT_VOLATILE
);
1507 tmp_type2
.t
&= ~(VT_UNSIGNED
| VT_CONSTANT
| VT_VOLATILE
);
1508 if (!is_compatible_types(&tmp_type1
, &tmp_type2
)) {
1509 /* gcc-like error if '-' is used */
1511 goto invalid_operands
;
1513 warning("comparison of distinct pointer types lacks a cast");
1517 /* generic gen_op: handles types problems */
1518 ST_FUNC
void gen_op(int op
)
1520 int u
, t1
, t2
, bt1
, bt2
, t
;
1523 t1
= vtop
[-1].type
.t
;
1524 t2
= vtop
[0].type
.t
;
1525 bt1
= t1
& VT_BTYPE
;
1526 bt2
= t2
& VT_BTYPE
;
1528 if (bt1
== VT_PTR
|| bt2
== VT_PTR
) {
1529 /* at least one operand is a pointer */
1530 /* relationnal op: must be both pointers */
1531 if (op
>= TOK_ULT
&& op
<= TOK_LOR
) {
1532 check_comparison_pointer_types(vtop
- 1, vtop
, op
);
1533 /* pointers are handled are unsigned */
1534 #ifdef TCC_TARGET_X86_64
1535 t
= VT_LLONG
| VT_UNSIGNED
;
1537 t
= VT_INT
| VT_UNSIGNED
;
1541 /* if both pointers, then it must be the '-' op */
1542 if (bt1
== VT_PTR
&& bt2
== VT_PTR
) {
1544 error("cannot use pointers here");
1545 check_comparison_pointer_types(vtop
- 1, vtop
, op
);
1546 /* XXX: check that types are compatible */
1547 u
= pointed_size(&vtop
[-1].type
);
1549 /* set to integer type */
1550 #ifdef TCC_TARGET_X86_64
1551 vtop
->type
.t
= VT_LLONG
;
1553 vtop
->type
.t
= VT_INT
;
1558 /* exactly one pointer : must be '+' or '-'. */
1559 if (op
!= '-' && op
!= '+')
1560 error("cannot use pointers here");
1561 /* Put pointer as first operand */
1562 if (bt2
== VT_PTR
) {
1566 type1
= vtop
[-1].type
;
1567 type1
.t
&= ~VT_ARRAY
;
1568 u
= pointed_size(&vtop
[-1].type
);
1570 error("unknown array element size");
1571 #ifdef TCC_TARGET_X86_64
1574 /* XXX: cast to int ? (long long case) */
1578 #ifdef CONFIG_TCC_BCHECK
1579 /* if evaluating constant expression, no code should be
1580 generated, so no bound check */
1581 if (tcc_state
->do_bounds_check
&& !const_wanted
) {
1582 /* if bounded pointers, we generate a special code to
1589 gen_bounded_ptr_add();
1595 /* put again type if gen_opic() swaped operands */
1598 } else if (is_float(bt1
) || is_float(bt2
)) {
1599 /* compute bigger type and do implicit casts */
1600 if (bt1
== VT_LDOUBLE
|| bt2
== VT_LDOUBLE
) {
1602 } else if (bt1
== VT_DOUBLE
|| bt2
== VT_DOUBLE
) {
1607 /* floats can only be used for a few operations */
1608 if (op
!= '+' && op
!= '-' && op
!= '*' && op
!= '/' &&
1609 (op
< TOK_ULT
|| op
> TOK_GT
))
1610 error("invalid operands for binary operation");
1612 } else if (bt1
== VT_LLONG
|| bt2
== VT_LLONG
) {
1613 /* cast to biggest op */
1615 /* convert to unsigned if it does not fit in a long long */
1616 if ((t1
& (VT_BTYPE
| VT_UNSIGNED
)) == (VT_LLONG
| VT_UNSIGNED
) ||
1617 (t2
& (VT_BTYPE
| VT_UNSIGNED
)) == (VT_LLONG
| VT_UNSIGNED
))
1621 /* integer operations */
1623 /* convert to unsigned if it does not fit in an integer */
1624 if ((t1
& (VT_BTYPE
| VT_UNSIGNED
)) == (VT_INT
| VT_UNSIGNED
) ||
1625 (t2
& (VT_BTYPE
| VT_UNSIGNED
)) == (VT_INT
| VT_UNSIGNED
))
1628 /* XXX: currently, some unsigned operations are explicit, so
1629 we modify them here */
1630 if (t
& VT_UNSIGNED
) {
1637 else if (op
== TOK_LT
)
1639 else if (op
== TOK_GT
)
1641 else if (op
== TOK_LE
)
1643 else if (op
== TOK_GE
)
1650 /* special case for shifts and long long: we keep the shift as
1652 if (op
== TOK_SHR
|| op
== TOK_SAR
|| op
== TOK_SHL
)
1659 if (op
>= TOK_ULT
&& op
<= TOK_GT
) {
1660 /* relationnal op: the result is an int */
1661 vtop
->type
.t
= VT_INT
;
1668 #ifndef TCC_TARGET_ARM
1669 /* generic itof for unsigned long long case */
1670 static void gen_cvt_itof1(int t
)
1672 if ((vtop
->type
.t
& (VT_BTYPE
| VT_UNSIGNED
)) ==
1673 (VT_LLONG
| VT_UNSIGNED
)) {
1676 vpush_global_sym(&func_old_type
, TOK___floatundisf
);
1677 #if LDOUBLE_SIZE != 8
1678 else if (t
== VT_LDOUBLE
)
1679 vpush_global_sym(&func_old_type
, TOK___floatundixf
);
1682 vpush_global_sym(&func_old_type
, TOK___floatundidf
);
1686 vtop
->r
= reg_fret(t
);
1693 /* generic ftoi for unsigned long long case */
1694 static void gen_cvt_ftoi1(int t
)
1698 if (t
== (VT_LLONG
| VT_UNSIGNED
)) {
1699 /* not handled natively */
1700 st
= vtop
->type
.t
& VT_BTYPE
;
1702 vpush_global_sym(&func_old_type
, TOK___fixunssfdi
);
1703 #if LDOUBLE_SIZE != 8
1704 else if (st
== VT_LDOUBLE
)
1705 vpush_global_sym(&func_old_type
, TOK___fixunsxfdi
);
1708 vpush_global_sym(&func_old_type
, TOK___fixunsdfdi
);
1713 vtop
->r2
= REG_LRET
;
1719 /* force char or short cast */
1720 static void force_charshort_cast(int t
)
1724 /* XXX: add optimization if lvalue : just change type and offset */
1729 if (t
& VT_UNSIGNED
) {
1730 vpushi((1 << bits
) - 1);
1736 /* result must be signed or the SAR is converted to an SHL
1737 This was not the case when "t" was a signed short
1738 and the last value on the stack was an unsigned int */
1739 vtop
->type
.t
&= ~VT_UNSIGNED
;
1745 /* cast 'vtop' to 'type'. Casting to bitfields is forbidden. */
1746 static void gen_cast(CType
*type
)
1748 int sbt
, dbt
, sf
, df
, c
, p
;
1750 /* special delayed cast for char/short */
1751 /* XXX: in some cases (multiple cascaded casts), it may still
1753 if (vtop
->r
& VT_MUSTCAST
) {
1754 vtop
->r
&= ~VT_MUSTCAST
;
1755 force_charshort_cast(vtop
->type
.t
);
1758 /* bitfields first get cast to ints */
1759 if (vtop
->type
.t
& VT_BITFIELD
) {
1763 dbt
= type
->t
& (VT_BTYPE
| VT_UNSIGNED
);
1764 sbt
= vtop
->type
.t
& (VT_BTYPE
| VT_UNSIGNED
);
1769 c
= (vtop
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) == VT_CONST
;
1770 p
= (vtop
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) == (VT_CONST
| VT_SYM
);
1772 /* constant case: we can do it now */
1773 /* XXX: in ISOC, cannot do it if error in convert */
1774 if (sbt
== VT_FLOAT
)
1775 vtop
->c
.ld
= vtop
->c
.f
;
1776 else if (sbt
== VT_DOUBLE
)
1777 vtop
->c
.ld
= vtop
->c
.d
;
1780 if ((sbt
& VT_BTYPE
) == VT_LLONG
) {
1781 if (sbt
& VT_UNSIGNED
)
1782 vtop
->c
.ld
= vtop
->c
.ull
;
1784 vtop
->c
.ld
= vtop
->c
.ll
;
1786 if (sbt
& VT_UNSIGNED
)
1787 vtop
->c
.ld
= vtop
->c
.ui
;
1789 vtop
->c
.ld
= vtop
->c
.i
;
1792 if (dbt
== VT_FLOAT
)
1793 vtop
->c
.f
= (float)vtop
->c
.ld
;
1794 else if (dbt
== VT_DOUBLE
)
1795 vtop
->c
.d
= (double)vtop
->c
.ld
;
1796 } else if (sf
&& dbt
== (VT_LLONG
|VT_UNSIGNED
)) {
1797 vtop
->c
.ull
= (unsigned long long)vtop
->c
.ld
;
1798 } else if (sf
&& dbt
== VT_BOOL
) {
1799 vtop
->c
.i
= (vtop
->c
.ld
!= 0);
1802 vtop
->c
.ll
= (long long)vtop
->c
.ld
;
1803 else if (sbt
== (VT_LLONG
|VT_UNSIGNED
))
1804 vtop
->c
.ll
= vtop
->c
.ull
;
1805 else if (sbt
& VT_UNSIGNED
)
1806 vtop
->c
.ll
= vtop
->c
.ui
;
1807 #ifdef TCC_TARGET_X86_64
1808 else if (sbt
== VT_PTR
)
1811 else if (sbt
!= VT_LLONG
)
1812 vtop
->c
.ll
= vtop
->c
.i
;
1814 if (dbt
== (VT_LLONG
|VT_UNSIGNED
))
1815 vtop
->c
.ull
= vtop
->c
.ll
;
1816 else if (dbt
== VT_BOOL
)
1817 vtop
->c
.i
= (vtop
->c
.ll
!= 0);
1818 else if (dbt
!= VT_LLONG
) {
1820 if ((dbt
& VT_BTYPE
) == VT_BYTE
)
1822 else if ((dbt
& VT_BTYPE
) == VT_SHORT
)
1825 if(dbt
& VT_UNSIGNED
)
1826 vtop
->c
.ui
= ((unsigned int)vtop
->c
.ll
<< s
) >> s
;
1828 vtop
->c
.i
= ((int)vtop
->c
.ll
<< s
) >> s
;
1831 } else if (p
&& dbt
== VT_BOOL
) {
1834 } else if (!nocode_wanted
) {
1835 /* non constant case: generate code */
1837 /* convert from fp to fp */
1840 /* convert int to fp */
1843 /* convert fp to int */
1844 if (dbt
== VT_BOOL
) {
1848 /* we handle char/short/etc... with generic code */
1849 if (dbt
!= (VT_INT
| VT_UNSIGNED
) &&
1850 dbt
!= (VT_LLONG
| VT_UNSIGNED
) &&
1854 if (dbt
== VT_INT
&& (type
->t
& (VT_BTYPE
| VT_UNSIGNED
)) != dbt
) {
1855 /* additional cast for char/short... */
1860 #ifndef TCC_TARGET_X86_64
1861 } else if ((dbt
& VT_BTYPE
) == VT_LLONG
) {
1862 if ((sbt
& VT_BTYPE
) != VT_LLONG
) {
1863 /* scalar to long long */
1864 /* machine independent conversion */
1866 /* generate high word */
1867 if (sbt
== (VT_INT
| VT_UNSIGNED
)) {
1871 if (sbt
== VT_PTR
) {
1872 /* cast from pointer to int before we apply
1873 shift operation, which pointers don't support*/
1874 gen_cast(&int_type
);
1880 /* patch second register */
1881 vtop
[-1].r2
= vtop
->r
;
1885 } else if ((dbt
& VT_BTYPE
) == VT_LLONG
||
1886 (dbt
& VT_BTYPE
) == VT_PTR
) {
1887 /* XXX: not sure if this is perfect... need more tests */
1888 if ((sbt
& VT_BTYPE
) != VT_LLONG
) {
1890 if (sbt
!= (VT_INT
| VT_UNSIGNED
) &&
1891 sbt
!= VT_PTR
&& sbt
!= VT_FUNC
) {
1892 /* x86_64 specific: movslq */
1894 o(0xc0 + (REG_VALUE(r
) << 3) + REG_VALUE(r
));
1898 } else if (dbt
== VT_BOOL
) {
1899 /* scalar to bool */
1902 } else if ((dbt
& VT_BTYPE
) == VT_BYTE
||
1903 (dbt
& VT_BTYPE
) == VT_SHORT
) {
1904 if (sbt
== VT_PTR
) {
1905 vtop
->type
.t
= VT_INT
;
1906 warning("nonportable conversion from pointer to char/short");
1908 force_charshort_cast(dbt
);
1909 } else if ((dbt
& VT_BTYPE
) == VT_INT
) {
1911 if (sbt
== VT_LLONG
) {
1912 /* from long long: just take low order word */
1916 /* if lvalue and single word type, nothing to do because
1917 the lvalue already contains the real type size (see
1918 VT_LVAL_xxx constants) */
1921 } else if ((dbt
& VT_BTYPE
) == VT_PTR
&& !(vtop
->r
& VT_LVAL
)) {
1922 /* if we are casting between pointer types,
1923 we must update the VT_LVAL_xxx size */
1924 vtop
->r
= (vtop
->r
& ~VT_LVAL_TYPE
)
1925 | (lvalue_type(type
->ref
->type
.t
) & VT_LVAL_TYPE
);
1930 /* return type size. Put alignment at 'a' */
1931 ST_FUNC
int type_size(CType
*type
, int *a
)
1936 bt
= type
->t
& VT_BTYPE
;
1937 if (bt
== VT_STRUCT
) {
1942 } else if (bt
== VT_PTR
) {
1943 if (type
->t
& VT_ARRAY
) {
1947 ts
= type_size(&s
->type
, a
);
1949 if (ts
< 0 && s
->c
< 0)
1957 } else if (bt
== VT_LDOUBLE
) {
1959 return LDOUBLE_SIZE
;
1960 } else if (bt
== VT_DOUBLE
|| bt
== VT_LLONG
) {
1961 #ifdef TCC_TARGET_I386
1962 #ifdef TCC_TARGET_PE
1967 #elif defined(TCC_TARGET_ARM)
1977 } else if (bt
== VT_INT
|| bt
== VT_ENUM
|| bt
== VT_FLOAT
) {
1980 } else if (bt
== VT_SHORT
) {
1984 /* char, void, function, _Bool */
1990 /* return the pointed type of t */
1991 static inline CType
*pointed_type(CType
*type
)
1993 return &type
->ref
->type
;
1996 /* modify type so that its it is a pointer to type. */
1997 ST_FUNC
void mk_pointer(CType
*type
)
2000 s
= sym_push(SYM_FIELD
, type
, 0, -1);
2001 type
->t
= VT_PTR
| (type
->t
& ~VT_TYPE
);
2005 /* compare function types. OLD functions match any new functions */
2006 static int is_compatible_func(CType
*type1
, CType
*type2
)
2012 if (!is_compatible_types(&s1
->type
, &s2
->type
))
2014 /* check func_call */
2015 if (FUNC_CALL(s1
->r
) != FUNC_CALL(s2
->r
))
2017 /* XXX: not complete */
2018 if (s1
->c
== FUNC_OLD
|| s2
->c
== FUNC_OLD
)
2022 while (s1
!= NULL
) {
2025 if (!is_compatible_parameter_types(&s1
->type
, &s2
->type
))
2035 /* return true if type1 and type2 are the same. If unqualified is
2036 true, qualifiers on the types are ignored.
2038 - enums are not checked as gcc __builtin_types_compatible_p ()
2040 static int compare_types(CType
*type1
, CType
*type2
, int unqualified
)
2044 t1
= type1
->t
& VT_TYPE
;
2045 t2
= type2
->t
& VT_TYPE
;
2047 /* strip qualifiers before comparing */
2048 t1
&= ~(VT_CONSTANT
| VT_VOLATILE
);
2049 t2
&= ~(VT_CONSTANT
| VT_VOLATILE
);
2051 /* XXX: bitfields ? */
2054 /* test more complicated cases */
2055 bt1
= t1
& VT_BTYPE
;
2056 if (bt1
== VT_PTR
) {
2057 type1
= pointed_type(type1
);
2058 type2
= pointed_type(type2
);
2059 return is_compatible_types(type1
, type2
);
2060 } else if (bt1
== VT_STRUCT
) {
2061 return (type1
->ref
== type2
->ref
);
2062 } else if (bt1
== VT_FUNC
) {
2063 return is_compatible_func(type1
, type2
);
2069 /* return true if type1 and type2 are exactly the same (including
2072 static int is_compatible_types(CType
*type1
, CType
*type2
)
2074 return compare_types(type1
,type2
,0);
2077 /* return true if type1 and type2 are the same (ignoring qualifiers).
2079 static int is_compatible_parameter_types(CType
*type1
, CType
*type2
)
2081 return compare_types(type1
,type2
,1);
2084 /* print a type. If 'varstr' is not NULL, then the variable is also
2085 printed in the type */
2087 /* XXX: add array and function pointers */
2088 static void type_to_str(char *buf
, int buf_size
,
2089 CType
*type
, const char *varstr
)
2096 t
= type
->t
& VT_TYPE
;
2099 if (t
& VT_CONSTANT
)
2100 pstrcat(buf
, buf_size
, "const ");
2101 if (t
& VT_VOLATILE
)
2102 pstrcat(buf
, buf_size
, "volatile ");
2103 if (t
& VT_UNSIGNED
)
2104 pstrcat(buf
, buf_size
, "unsigned ");
2134 tstr
= "long double";
2136 pstrcat(buf
, buf_size
, tstr
);
2140 if (bt
== VT_STRUCT
)
2144 pstrcat(buf
, buf_size
, tstr
);
2145 v
= type
->ref
->v
& ~SYM_STRUCT
;
2146 if (v
>= SYM_FIRST_ANOM
)
2147 pstrcat(buf
, buf_size
, "<anonymous>");
2149 pstrcat(buf
, buf_size
, get_tok_str(v
, NULL
));
2153 type_to_str(buf
, buf_size
, &s
->type
, varstr
);
2154 pstrcat(buf
, buf_size
, "(");
2156 while (sa
!= NULL
) {
2157 type_to_str(buf1
, sizeof(buf1
), &sa
->type
, NULL
);
2158 pstrcat(buf
, buf_size
, buf1
);
2161 pstrcat(buf
, buf_size
, ", ");
2163 pstrcat(buf
, buf_size
, ")");
2167 pstrcpy(buf1
, sizeof(buf1
), "*");
2169 pstrcat(buf1
, sizeof(buf1
), varstr
);
2170 type_to_str(buf
, buf_size
, &s
->type
, buf1
);
2174 pstrcat(buf
, buf_size
, " ");
2175 pstrcat(buf
, buf_size
, varstr
);
2180 /* verify type compatibility to store vtop in 'dt' type, and generate
2182 static void gen_assign_cast(CType
*dt
)
2184 CType
*st
, *type1
, *type2
, tmp_type1
, tmp_type2
;
2185 char buf1
[256], buf2
[256];
2188 st
= &vtop
->type
; /* source type */
2189 dbt
= dt
->t
& VT_BTYPE
;
2190 sbt
= st
->t
& VT_BTYPE
;
2191 if (dt
->t
& VT_CONSTANT
)
2192 warning("assignment of read-only location");
2195 /* special cases for pointers */
2196 /* '0' can also be a pointer */
2197 if (is_null_pointer(vtop
))
2199 /* accept implicit pointer to integer cast with warning */
2200 if (is_integer_btype(sbt
)) {
2201 warning("assignment makes pointer from integer without a cast");
2204 type1
= pointed_type(dt
);
2205 /* a function is implicitely a function pointer */
2206 if (sbt
== VT_FUNC
) {
2207 if ((type1
->t
& VT_BTYPE
) != VT_VOID
&&
2208 !is_compatible_types(pointed_type(dt
), st
))
2209 warning("assignment from incompatible pointer type");
2214 type2
= pointed_type(st
);
2215 if ((type1
->t
& VT_BTYPE
) == VT_VOID
||
2216 (type2
->t
& VT_BTYPE
) == VT_VOID
) {
2217 /* void * can match anything */
2219 /* exact type match, except for unsigned */
2222 tmp_type1
.t
&= ~(VT_UNSIGNED
| VT_CONSTANT
| VT_VOLATILE
);
2223 tmp_type2
.t
&= ~(VT_UNSIGNED
| VT_CONSTANT
| VT_VOLATILE
);
2224 if (!is_compatible_types(&tmp_type1
, &tmp_type2
))
2225 warning("assignment from incompatible pointer type");
2227 /* check const and volatile */
2228 if ((!(type1
->t
& VT_CONSTANT
) && (type2
->t
& VT_CONSTANT
)) ||
2229 (!(type1
->t
& VT_VOLATILE
) && (type2
->t
& VT_VOLATILE
)))
2230 warning("assignment discards qualifiers from pointer target type");
2236 if (sbt
== VT_PTR
|| sbt
== VT_FUNC
) {
2237 warning("assignment makes integer from pointer without a cast");
2239 /* XXX: more tests */
2244 tmp_type1
.t
&= ~(VT_CONSTANT
| VT_VOLATILE
);
2245 tmp_type2
.t
&= ~(VT_CONSTANT
| VT_VOLATILE
);
2246 if (!is_compatible_types(&tmp_type1
, &tmp_type2
)) {
2248 type_to_str(buf1
, sizeof(buf1
), st
, NULL
);
2249 type_to_str(buf2
, sizeof(buf2
), dt
, NULL
);
2250 error("cannot cast '%s' to '%s'", buf1
, buf2
);
2258 /* store vtop in lvalue pushed on stack */
2259 ST_FUNC
void vstore(void)
2261 int sbt
, dbt
, ft
, r
, t
, size
, align
, bit_size
, bit_pos
, rc
, delayed_cast
;
2263 ft
= vtop
[-1].type
.t
;
2264 sbt
= vtop
->type
.t
& VT_BTYPE
;
2265 dbt
= ft
& VT_BTYPE
;
2266 if (((sbt
== VT_INT
|| sbt
== VT_SHORT
) && dbt
== VT_BYTE
) ||
2267 (sbt
== VT_INT
&& dbt
== VT_SHORT
)) {
2268 /* optimize char/short casts */
2269 delayed_cast
= VT_MUSTCAST
;
2270 vtop
->type
.t
= ft
& (VT_TYPE
& ~(VT_BITFIELD
| (-1 << VT_STRUCT_SHIFT
)));
2271 /* XXX: factorize */
2272 if (ft
& VT_CONSTANT
)
2273 warning("assignment of read-only location");
2276 if (!(ft
& VT_BITFIELD
))
2277 gen_assign_cast(&vtop
[-1].type
);
2280 if (sbt
== VT_STRUCT
) {
2281 /* if structure, only generate pointer */
2282 /* structure assignment : generate memcpy */
2283 /* XXX: optimize if small size */
2284 if (!nocode_wanted
) {
2285 size
= type_size(&vtop
->type
, &align
);
2289 vtop
->type
.t
= VT_PTR
;
2292 /* address of memcpy() */
2295 vpush_global_sym(&func_old_type
, TOK_memcpy8
);
2296 else if(!(align
& 3))
2297 vpush_global_sym(&func_old_type
, TOK_memcpy4
);
2300 vpush_global_sym(&func_old_type
, TOK_memcpy
);
2305 vtop
->type
.t
= VT_PTR
;
2314 /* leave source on stack */
2315 } else if (ft
& VT_BITFIELD
) {
2316 /* bitfield store handling */
2317 bit_pos
= (ft
>> VT_STRUCT_SHIFT
) & 0x3f;
2318 bit_size
= (ft
>> (VT_STRUCT_SHIFT
+ 6)) & 0x3f;
2319 /* remove bit field info to avoid loops */
2320 vtop
[-1].type
.t
= ft
& ~(VT_BITFIELD
| (-1 << VT_STRUCT_SHIFT
));
2322 /* duplicate source into other register */
2327 if((ft
& VT_BTYPE
) == VT_BOOL
) {
2328 gen_cast(&vtop
[-1].type
);
2329 vtop
[-1].type
.t
= (vtop
[-1].type
.t
& ~VT_BTYPE
) | (VT_BYTE
| VT_UNSIGNED
);
2332 /* duplicate destination */
2334 vtop
[-1] = vtop
[-2];
2336 /* mask and shift source */
2337 if((ft
& VT_BTYPE
) != VT_BOOL
) {
2338 if((ft
& VT_BTYPE
) == VT_LLONG
) {
2339 vpushll((1ULL << bit_size
) - 1ULL);
2341 vpushi((1 << bit_size
) - 1);
2347 /* load destination, mask and or with source */
2349 if((ft
& VT_BTYPE
) == VT_LLONG
) {
2350 vpushll(~(((1ULL << bit_size
) - 1ULL) << bit_pos
));
2352 vpushi(~(((1 << bit_size
) - 1) << bit_pos
));
2359 /* pop off shifted source from "duplicate source..." above */
2363 #ifdef CONFIG_TCC_BCHECK
2364 /* bound check case */
2365 if (vtop
[-1].r
& VT_MUSTBOUND
) {
2371 if (!nocode_wanted
) {
2375 #ifdef TCC_TARGET_X86_64
2376 if ((ft
& VT_BTYPE
) == VT_LDOUBLE
) {
2381 r
= gv(rc
); /* generate value */
2382 /* if lvalue was saved on stack, must read it */
2383 if ((vtop
[-1].r
& VT_VALMASK
) == VT_LLOCAL
) {
2385 t
= get_reg(RC_INT
);
2386 #ifdef TCC_TARGET_X86_64
2391 sv
.r
= VT_LOCAL
| VT_LVAL
;
2392 sv
.c
.ul
= vtop
[-1].c
.ul
;
2394 vtop
[-1].r
= t
| VT_LVAL
;
2397 #ifndef TCC_TARGET_X86_64
2398 /* two word case handling : store second register at word + 4 */
2399 if ((ft
& VT_BTYPE
) == VT_LLONG
) {
2401 /* convert to int to increment easily */
2402 vtop
->type
.t
= VT_INT
;
2408 /* XXX: it works because r2 is spilled last ! */
2409 store(vtop
->r2
, vtop
- 1);
2414 vtop
--; /* NOT vpop() because on x86 it would flush the fp stack */
2415 vtop
->r
|= delayed_cast
;
2419 /* post defines POST/PRE add. c is the token ++ or -- */
2420 ST_FUNC
void inc(int post
, int c
)
2423 vdup(); /* save lvalue */
2425 gv_dup(); /* duplicate value */
2430 vpushi(c
- TOK_MID
);
2432 vstore(); /* store value */
2434 vpop(); /* if post op, return saved value */
2437 /* Parse GNUC __attribute__ extension. Currently, the following
2438 extensions are recognized:
2439 - aligned(n) : set data/function alignment.
2440 - packed : force data alignment to 1
2441 - section(x) : generate data/code in this section.
2442 - unused : currently ignored, but may be used someday.
2443 - regparm(n) : pass function parameters in registers (i386 only)
2445 static void parse_attribute(AttributeDef
*ad
)
2449 while (tok
== TOK_ATTRIBUTE1
|| tok
== TOK_ATTRIBUTE2
) {
2453 while (tok
!= ')') {
2454 if (tok
< TOK_IDENT
)
2455 expect("attribute name");
2463 expect("section name");
2464 ad
->section
= find_section(tcc_state
, (char *)tokc
.cstr
->data
);
2473 if (n
<= 0 || (n
& (n
- 1)) != 0)
2474 error("alignment must be a positive power of two");
2491 /* currently, no need to handle it because tcc does not
2492 track unused objects */
2496 /* currently, no need to handle it because tcc does not
2497 track unused objects */
2502 ad
->func_call
= FUNC_CDECL
;
2507 ad
->func_call
= FUNC_STDCALL
;
2509 #ifdef TCC_TARGET_I386
2519 ad
->func_call
= FUNC_FASTCALL1
+ n
- 1;
2525 ad
->func_call
= FUNC_FASTCALLW
;
2532 ad
->mode
= VT_LLONG
+ 1;
2535 ad
->mode
= VT_SHORT
+ 1;
2538 ad
->mode
= VT_INT
+ 1;
2541 warning("__mode__(%s) not supported\n", get_tok_str(tok
, NULL
));
2548 ad
->func_export
= 1;
2551 ad
->func_import
= 1;
2554 if (tcc_state
->warn_unsupported
)
2555 warning("'%s' attribute ignored", get_tok_str(t
, NULL
));
2556 /* skip parameters */
2558 int parenthesis
= 0;
2562 else if (tok
== ')')
2565 } while (parenthesis
&& tok
!= -1);
2578 /* enum/struct/union declaration. u is either VT_ENUM or VT_STRUCT */
2579 static void struct_decl(CType
*type
, int u
)
2581 int a
, v
, size
, align
, maxalign
, c
, offset
;
2582 int bit_size
, bit_pos
, bsize
, bt
, lbit_pos
, prevbt
;
2583 Sym
*s
, *ss
, *ass
, **ps
;
2587 a
= tok
; /* save decl type */
2592 /* struct already defined ? return it */
2594 expect("struct/union/enum name");
2598 error("invalid type");
2605 /* we put an undefined size for struct/union */
2606 s
= sym_push(v
| SYM_STRUCT
, &type1
, 0, -1);
2607 s
->r
= 0; /* default alignment is zero as gcc */
2608 /* put struct/union/enum name in type */
2616 error("struct/union/enum already defined");
2617 /* cannot be empty */
2619 /* non empty enums are not allowed */
2620 if (a
== TOK_ENUM
) {
2624 expect("identifier");
2630 /* enum symbols have static storage */
2631 ss
= sym_push(v
, &int_type
, VT_CONST
, c
);
2632 ss
->type
.t
|= VT_STATIC
;
2637 /* NOTE: we accept a trailing comma */
2648 while (tok
!= '}') {
2649 parse_btype(&btype
, &ad
);
2655 type_decl(&type1
, &ad
, &v
, TYPE_DIRECT
| TYPE_ABSTRACT
);
2656 if (v
== 0 && (type1
.t
& VT_BTYPE
) != VT_STRUCT
)
2657 expect("identifier");
2658 if ((type1
.t
& VT_BTYPE
) == VT_FUNC
||
2659 (type1
.t
& (VT_TYPEDEF
| VT_STATIC
| VT_EXTERN
| VT_INLINE
)))
2660 error("invalid type for '%s'",
2661 get_tok_str(v
, NULL
));
2665 bit_size
= expr_const();
2666 /* XXX: handle v = 0 case for messages */
2668 error("negative width in bit-field '%s'",
2669 get_tok_str(v
, NULL
));
2670 if (v
&& bit_size
== 0)
2671 error("zero width for bit-field '%s'",
2672 get_tok_str(v
, NULL
));
2674 size
= type_size(&type1
, &align
);
2676 if (align
< ad
.aligned
)
2678 } else if (ad
.packed
) {
2680 } else if (*tcc_state
->pack_stack_ptr
) {
2681 if (align
> *tcc_state
->pack_stack_ptr
)
2682 align
= *tcc_state
->pack_stack_ptr
;
2685 if (bit_size
>= 0) {
2686 bt
= type1
.t
& VT_BTYPE
;
2693 error("bitfields must have scalar type");
2695 if (bit_size
> bsize
) {
2696 error("width of '%s' exceeds its type",
2697 get_tok_str(v
, NULL
));
2698 } else if (bit_size
== bsize
) {
2699 /* no need for bit fields */
2701 } else if (bit_size
== 0) {
2702 /* XXX: what to do if only padding in a
2704 /* zero size: means to pad */
2707 /* we do not have enough room ?
2708 did the type change?
2710 if ((bit_pos
+ bit_size
) > bsize
||
2711 bt
!= prevbt
|| a
== TOK_UNION
)
2714 /* XXX: handle LSB first */
2715 type1
.t
|= VT_BITFIELD
|
2716 (bit_pos
<< VT_STRUCT_SHIFT
) |
2717 (bit_size
<< (VT_STRUCT_SHIFT
+ 6));
2718 bit_pos
+= bit_size
;
2724 if (v
!= 0 || (type1
.t
& VT_BTYPE
) == VT_STRUCT
) {
2725 /* add new memory data only if starting
2727 if (lbit_pos
== 0) {
2728 if (a
== TOK_STRUCT
) {
2729 c
= (c
+ align
- 1) & -align
;
2738 if (align
> maxalign
)
2742 printf("add field %s offset=%d",
2743 get_tok_str(v
, NULL
), offset
);
2744 if (type1
.t
& VT_BITFIELD
) {
2745 printf(" pos=%d size=%d",
2746 (type1
.t
>> VT_STRUCT_SHIFT
) & 0x3f,
2747 (type1
.t
>> (VT_STRUCT_SHIFT
+ 6)) & 0x3f);
2752 if (v
== 0 && (type1
.t
& VT_BTYPE
) == VT_STRUCT
) {
2754 while ((ass
= ass
->next
) != NULL
) {
2755 ss
= sym_push(ass
->v
, &ass
->type
, 0, offset
+ ass
->c
);
2760 ss
= sym_push(v
| SYM_FIELD
, &type1
, 0, offset
);
2764 if (tok
== ';' || tok
== TOK_EOF
)
2771 /* store size and alignment */
2772 s
->c
= (c
+ maxalign
- 1) & -maxalign
;
2778 /* return 0 if no type declaration. otherwise, return the basic type
2781 static int parse_btype(CType
*type
, AttributeDef
*ad
)
2783 int t
, u
, type_found
, typespec_found
, typedef_found
;
2787 memset(ad
, 0, sizeof(AttributeDef
));
2795 /* currently, we really ignore extension */
2805 if ((t
& VT_BTYPE
) != 0)
2806 error("too many basic types");
2822 if ((t
& VT_BTYPE
) == VT_DOUBLE
) {
2823 #ifndef TCC_TARGET_PE
2824 t
= (t
& ~VT_BTYPE
) | VT_LDOUBLE
;
2826 } else if ((t
& VT_BTYPE
) == VT_LONG
) {
2827 t
= (t
& ~VT_BTYPE
) | VT_LLONG
;
2841 if ((t
& VT_BTYPE
) == VT_LONG
) {
2842 #ifdef TCC_TARGET_PE
2843 t
= (t
& ~VT_BTYPE
) | VT_DOUBLE
;
2845 t
= (t
& ~VT_BTYPE
) | VT_LDOUBLE
;
2853 struct_decl(&type1
, VT_ENUM
);
2856 type
->ref
= type1
.ref
;
2860 struct_decl(&type1
, VT_STRUCT
);
2863 /* type modifiers */
2916 /* GNUC attribute */
2917 case TOK_ATTRIBUTE1
:
2918 case TOK_ATTRIBUTE2
:
2919 parse_attribute(ad
);
2922 t
= (t
& ~VT_BTYPE
) | u
;
2930 parse_expr_type(&type1
);
2933 if (typespec_found
|| typedef_found
)
2936 if (!s
|| !(s
->type
.t
& VT_TYPEDEF
))
2939 t
|= (s
->type
.t
& ~VT_TYPEDEF
);
2940 type
->ref
= s
->type
.ref
;
2942 /* get attributes from typedef */
2943 if (0 == ad
->aligned
)
2944 ad
->aligned
= FUNC_ALIGN(s
->r
);
2945 if (0 == ad
->func_call
)
2946 ad
->func_call
= FUNC_CALL(s
->r
);
2947 ad
->packed
|= FUNC_PACKED(s
->r
);
2956 if ((t
& (VT_SIGNED
|VT_UNSIGNED
)) == (VT_SIGNED
|VT_UNSIGNED
))
2957 error("signed and unsigned modifier");
2958 if (tcc_state
->char_is_unsigned
) {
2959 if ((t
& (VT_SIGNED
|VT_UNSIGNED
|VT_BTYPE
)) == VT_BYTE
)
2964 /* long is never used as type */
2965 if ((t
& VT_BTYPE
) == VT_LONG
)
2966 #if !defined TCC_TARGET_X86_64 || defined TCC_TARGET_PE
2967 t
= (t
& ~VT_BTYPE
) | VT_INT
;
2969 t
= (t
& ~VT_BTYPE
) | VT_LLONG
;
2975 /* convert a function parameter type (array to pointer and function to
2976 function pointer) */
2977 static inline void convert_parameter_type(CType
*pt
)
2979 /* remove const and volatile qualifiers (XXX: const could be used
2980 to indicate a const function parameter */
2981 pt
->t
&= ~(VT_CONSTANT
| VT_VOLATILE
);
2982 /* array must be transformed to pointer according to ANSI C */
2984 if ((pt
->t
& VT_BTYPE
) == VT_FUNC
) {
2989 static void post_type(CType
*type
, AttributeDef
*ad
)
2991 int n
, l
, t1
, arg_size
, align
;
2992 Sym
**plast
, *s
, *first
;
2997 /* function declaration */
2998 if ((type
->t
& VT_STATIC
) && local_stack
) {
2999 error("Function without file scope cannot be static");
3008 /* read param name and compute offset */
3009 if (l
!= FUNC_OLD
) {
3010 if (!parse_btype(&pt
, &ad1
)) {
3012 error("invalid type");
3019 if ((pt
.t
& VT_BTYPE
) == VT_VOID
&& tok
== ')')
3021 type_decl(&pt
, &ad1
, &n
, TYPE_DIRECT
| TYPE_ABSTRACT
);
3022 if ((pt
.t
& VT_BTYPE
) == VT_VOID
)
3023 error("parameter declared as void");
3024 arg_size
+= (type_size(&pt
, &align
) + PTR_SIZE
- 1) / PTR_SIZE
;
3029 expect("identifier");
3033 convert_parameter_type(&pt
);
3034 s
= sym_push(n
| SYM_FIELD
, &pt
, 0, 0);
3040 if (l
== FUNC_NEW
&& tok
== TOK_DOTS
) {
3047 /* if no parameters, then old type prototype */
3051 t1
= type
->t
& VT_STORAGE
;
3052 /* NOTE: const is ignored in returned type as it has a special
3053 meaning in gcc / C++ */
3054 type
->t
&= ~(VT_STORAGE
| VT_CONSTANT
);
3055 post_type(type
, ad
);
3056 /* we push a anonymous symbol which will contain the function prototype */
3057 ad
->func_args
= arg_size
;
3058 s
= sym_push(SYM_FIELD
, type
, INT_ATTR(ad
), l
);
3060 type
->t
= t1
| VT_FUNC
;
3062 } else if (tok
== '[') {
3063 /* array definition */
3065 if (tok
== TOK_RESTRICT1
)
3071 error("invalid array size");
3074 /* parse next post type */
3075 t1
= type
->t
& VT_STORAGE
;
3076 type
->t
&= ~VT_STORAGE
;
3077 post_type(type
, ad
);
3079 /* we push a anonymous symbol which will contain the array
3081 s
= sym_push(SYM_FIELD
, type
, 0, n
);
3082 type
->t
= t1
| VT_ARRAY
| VT_PTR
;
3087 /* Parse a type declaration (except basic type), and return the type
3088 in 'type'. 'td' is a bitmask indicating which kind of type decl is
3089 expected. 'type' should contain the basic type. 'ad' is the
3090 attribute definition of the basic type. It can be modified by
3093 static void type_decl(CType
*type
, AttributeDef
*ad
, int *v
, int td
)
3096 CType type1
, *type2
;
3099 while (tok
== '*') {
3107 qualifiers
|= VT_CONSTANT
;
3112 qualifiers
|= VT_VOLATILE
;
3120 type
->t
|= qualifiers
;
3123 /* XXX: clarify attribute handling */
3124 if (tok
== TOK_ATTRIBUTE1
|| tok
== TOK_ATTRIBUTE2
)
3125 parse_attribute(ad
);
3127 /* recursive type */
3128 /* XXX: incorrect if abstract type for functions (e.g. 'int ()') */
3129 type1
.t
= 0; /* XXX: same as int */
3132 /* XXX: this is not correct to modify 'ad' at this point, but
3133 the syntax is not clear */
3134 if (tok
== TOK_ATTRIBUTE1
|| tok
== TOK_ATTRIBUTE2
)
3135 parse_attribute(ad
);
3136 type_decl(&type1
, ad
, v
, td
);
3139 /* type identifier */
3140 if (tok
>= TOK_IDENT
&& (td
& TYPE_DIRECT
)) {
3144 if (!(td
& TYPE_ABSTRACT
))
3145 expect("identifier");
3149 post_type(type
, ad
);
3150 if (tok
== TOK_ATTRIBUTE1
|| tok
== TOK_ATTRIBUTE2
)
3151 parse_attribute(ad
);
3154 /* append type at the end of type1 */
3167 /* compute the lvalue VT_LVAL_xxx needed to match type t. */
3168 ST_FUNC
int lvalue_type(int t
)
3173 if (bt
== VT_BYTE
|| bt
== VT_BOOL
)
3175 else if (bt
== VT_SHORT
)
3179 if (t
& VT_UNSIGNED
)
3180 r
|= VT_LVAL_UNSIGNED
;
3184 /* indirection with full error checking and bound check */
3185 ST_FUNC
void indir(void)
3187 if ((vtop
->type
.t
& VT_BTYPE
) != VT_PTR
) {
3188 if ((vtop
->type
.t
& VT_BTYPE
) == VT_FUNC
)
3192 if ((vtop
->r
& VT_LVAL
) && !nocode_wanted
)
3194 vtop
->type
= *pointed_type(&vtop
->type
);
3195 /* Arrays and functions are never lvalues */
3196 if (!(vtop
->type
.t
& VT_ARRAY
)
3197 && (vtop
->type
.t
& VT_BTYPE
) != VT_FUNC
) {
3198 vtop
->r
|= lvalue_type(vtop
->type
.t
);
3199 /* if bound checking, the referenced pointer must be checked */
3200 #ifdef CONFIG_TCC_BCHECK
3201 if (tcc_state
->do_bounds_check
)
3202 vtop
->r
|= VT_MUSTBOUND
;
3207 /* pass a parameter to a function and do type checking and casting */
3208 static void gfunc_param_typed(Sym
*func
, Sym
*arg
)
3213 func_type
= func
->c
;
3214 if (func_type
== FUNC_OLD
||
3215 (func_type
== FUNC_ELLIPSIS
&& arg
== NULL
)) {
3216 /* default casting : only need to convert float to double */
3217 if ((vtop
->type
.t
& VT_BTYPE
) == VT_FLOAT
) {
3221 } else if (arg
== NULL
) {
3222 error("too many arguments to function");
3225 type
.t
&= ~VT_CONSTANT
; /* need to do that to avoid false warning */
3226 gen_assign_cast(&type
);
3230 /* parse an expression of the form '(type)' or '(expr)' and return its
3232 static void parse_expr_type(CType
*type
)
3238 if (parse_btype(type
, &ad
)) {
3239 type_decl(type
, &ad
, &n
, TYPE_ABSTRACT
);
3246 static void parse_type(CType
*type
)
3251 if (!parse_btype(type
, &ad
)) {
3254 type_decl(type
, &ad
, &n
, TYPE_ABSTRACT
);
3257 static void vpush_tokc(int t
)
3262 vsetc(&type
, VT_CONST
, &tokc
);
3265 ST_FUNC
void unary(void)
3267 int n
, t
, align
, size
, r
, sizeof_caller
;
3271 static int in_sizeof
= 0;
3273 sizeof_caller
= in_sizeof
;
3275 /* XXX: GCC 2.95.3 does not generate a table although it should be
3289 vpush_tokc(VT_INT
| VT_UNSIGNED
);
3293 vpush_tokc(VT_LLONG
);
3297 vpush_tokc(VT_LLONG
| VT_UNSIGNED
);
3301 vpush_tokc(VT_FLOAT
);
3305 vpush_tokc(VT_DOUBLE
);
3309 vpush_tokc(VT_LDOUBLE
);
3312 case TOK___FUNCTION__
:
3314 goto tok_identifier
;
3320 /* special function name identifier */
3321 len
= strlen(funcname
) + 1;
3322 /* generate char[len] type */
3327 vpush_ref(&type
, data_section
, data_section
->data_offset
, len
);
3328 ptr
= section_ptr_add(data_section
, len
);
3329 memcpy(ptr
, funcname
, len
);
3334 #ifdef TCC_TARGET_PE
3335 t
= VT_SHORT
| VT_UNSIGNED
;
3341 /* string parsing */
3344 if (tcc_state
->warn_write_strings
)
3349 memset(&ad
, 0, sizeof(AttributeDef
));
3350 decl_initializer_alloc(&type
, &ad
, VT_CONST
, 2, 0, 0);
3355 if (parse_btype(&type
, &ad
)) {
3356 type_decl(&type
, &ad
, &n
, TYPE_ABSTRACT
);
3358 /* check ISOC99 compound literal */
3360 /* data is allocated locally by default */
3365 /* all except arrays are lvalues */
3366 if (!(type
.t
& VT_ARRAY
))
3367 r
|= lvalue_type(type
.t
);
3368 memset(&ad
, 0, sizeof(AttributeDef
));
3369 decl_initializer_alloc(&type
, &ad
, r
, 1, 0, 0);
3371 if (sizeof_caller
) {
3378 } else if (tok
== '{') {
3379 /* save all registers */
3381 /* statement expression : we do not accept break/continue
3382 inside as GCC does */
3383 block(NULL
, NULL
, NULL
, NULL
, 0, 1);
3398 /* functions names must be treated as function pointers,
3399 except for unary '&' and sizeof. Since we consider that
3400 functions are not lvalues, we only have to handle it
3401 there and in function calls. */
3402 /* arrays can also be used although they are not lvalues */
3403 if ((vtop
->type
.t
& VT_BTYPE
) != VT_FUNC
&&
3404 !(vtop
->type
.t
& VT_ARRAY
) && !(vtop
->type
.t
& VT_LLOCAL
))
3406 mk_pointer(&vtop
->type
);
3412 if ((vtop
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) == VT_CONST
) {
3414 boolean
.t
= VT_BOOL
;
3416 vtop
->c
.i
= !vtop
->c
.i
;
3417 } else if ((vtop
->r
& VT_VALMASK
) == VT_CMP
)
3418 vtop
->c
.i
= vtop
->c
.i
^ 1;
3421 vseti(VT_JMP
, gtst(1, 0));
3432 /* in order to force cast, we add zero */
3434 if ((vtop
->type
.t
& VT_BTYPE
) == VT_PTR
)
3435 error("pointer not accepted for unary plus");
3445 unary_type(&type
); // Perform a in_sizeof = 0;
3446 size
= type_size(&type
, &align
);
3447 if (t
== TOK_SIZEOF
) {
3449 error("sizeof applied to an incomplete type");
3454 vtop
->type
.t
|= VT_UNSIGNED
;
3457 case TOK_builtin_types_compatible_p
:
3466 type1
.t
&= ~(VT_CONSTANT
| VT_VOLATILE
);
3467 type2
.t
&= ~(VT_CONSTANT
| VT_VOLATILE
);
3468 vpushi(is_compatible_types(&type1
, &type2
));
3471 case TOK_builtin_constant_p
:
3473 int saved_nocode_wanted
, res
;
3476 saved_nocode_wanted
= nocode_wanted
;
3479 res
= (vtop
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) == VT_CONST
;
3481 nocode_wanted
= saved_nocode_wanted
;
3486 case TOK_builtin_frame_address
:
3491 if (tok
!= TOK_CINT
) {
3492 error("__builtin_frame_address only takes integers");
3495 error("TCC only supports __builtin_frame_address(0)");
3501 vset(&type
, VT_LOCAL
, 0);
3504 #ifdef TCC_TARGET_X86_64
3505 case TOK_builtin_malloc
:
3507 goto tok_identifier
;
3508 case TOK_builtin_free
:
3510 goto tok_identifier
;
3527 goto tok_identifier
;
3529 /* allow to take the address of a label */
3530 if (tok
< TOK_UIDENT
)
3531 expect("label identifier");
3532 s
= label_find(tok
);
3534 s
= label_push(&global_label_stack
, tok
, LABEL_FORWARD
);
3536 if (s
->r
== LABEL_DECLARED
)
3537 s
->r
= LABEL_FORWARD
;
3540 s
->type
.t
= VT_VOID
;
3541 mk_pointer(&s
->type
);
3542 s
->type
.t
|= VT_STATIC
;
3544 vset(&s
->type
, VT_CONST
| VT_SYM
, 0);
3549 // special qnan , snan and infinity values
3551 vpush64(VT_DOUBLE
, 0x7ff8000000000000ULL
);
3555 vpush64(VT_DOUBLE
, 0x7ff0000000000001ULL
);
3559 vpush64(VT_DOUBLE
, 0x7ff0000000000000ULL
);
3568 expect("identifier");
3572 error("'%s' undeclared", get_tok_str(t
, NULL
));
3573 /* for simple function calls, we tolerate undeclared
3574 external reference to int() function */
3575 if (tcc_state
->warn_implicit_function_declaration
)
3576 warning("implicit declaration of function '%s'",
3577 get_tok_str(t
, NULL
));
3578 s
= external_global_sym(t
, &func_old_type
, 0);
3580 if ((s
->type
.t
& (VT_STATIC
| VT_INLINE
| VT_BTYPE
)) ==
3581 (VT_STATIC
| VT_INLINE
| VT_FUNC
)) {
3582 /* if referencing an inline function, then we generate a
3583 symbol to it if not already done. It will have the
3584 effect to generate code for it at the end of the
3585 compilation unit. Inline function as always
3586 generated in the text section. */
3588 put_extern_sym(s
, text_section
, 0, 0);
3589 r
= VT_SYM
| VT_CONST
;
3593 vset(&s
->type
, r
, s
->c
);
3594 /* if forward reference, we must point to s */
3595 if (vtop
->r
& VT_SYM
) {
3602 /* post operations */
3604 if (tok
== TOK_INC
|| tok
== TOK_DEC
) {
3607 } else if (tok
== '.' || tok
== TOK_ARROW
) {
3610 if (tok
== TOK_ARROW
)
3612 qualifiers
= vtop
->type
.t
& (VT_CONSTANT
| VT_VOLATILE
);
3616 /* expect pointer on structure */
3617 if ((vtop
->type
.t
& VT_BTYPE
) != VT_STRUCT
)
3618 expect("struct or union");
3622 while ((s
= s
->next
) != NULL
) {
3627 error("field not found: %s", get_tok_str(tok
& ~SYM_FIELD
, NULL
));
3628 /* add field offset to pointer */
3629 vtop
->type
= char_pointer_type
; /* change type to 'char *' */
3632 /* change type to field type, and set to lvalue */
3633 vtop
->type
= s
->type
;
3634 vtop
->type
.t
|= qualifiers
;
3635 /* an array is never an lvalue */
3636 if (!(vtop
->type
.t
& VT_ARRAY
)) {
3637 vtop
->r
|= lvalue_type(vtop
->type
.t
);
3638 #ifdef CONFIG_TCC_BCHECK
3639 /* if bound checking, the referenced pointer must be checked */
3640 if (tcc_state
->do_bounds_check
)
3641 vtop
->r
|= VT_MUSTBOUND
;
3645 } else if (tok
== '[') {
3651 } else if (tok
== '(') {
3657 if ((vtop
->type
.t
& VT_BTYPE
) != VT_FUNC
) {
3658 /* pointer test (no array accepted) */
3659 if ((vtop
->type
.t
& (VT_BTYPE
| VT_ARRAY
)) == VT_PTR
) {
3660 vtop
->type
= *pointed_type(&vtop
->type
);
3661 if ((vtop
->type
.t
& VT_BTYPE
) != VT_FUNC
)
3665 expect("function pointer");
3668 vtop
->r
&= ~VT_LVAL
; /* no lvalue */
3670 /* get return type */
3673 sa
= s
->next
; /* first parameter */
3676 /* compute first implicit argument if a structure is returned */
3677 if ((s
->type
.t
& VT_BTYPE
) == VT_STRUCT
) {
3678 /* get some space for the returned structure */
3679 size
= type_size(&s
->type
, &align
);
3680 loc
= (loc
- size
) & -align
;
3682 ret
.r
= VT_LOCAL
| VT_LVAL
;
3683 /* pass it as 'int' to avoid structure arg passing
3685 vseti(VT_LOCAL
, loc
);
3690 /* return in register */
3691 if (is_float(ret
.type
.t
)) {
3692 ret
.r
= reg_fret(ret
.type
.t
);
3694 if ((ret
.type
.t
& VT_BTYPE
) == VT_LLONG
)
3703 gfunc_param_typed(s
, sa
);
3713 error("too few arguments to function");
3715 if (!nocode_wanted
) {
3716 gfunc_call(nb_args
);
3718 vtop
-= (nb_args
+ 1);
3721 vsetc(&ret
.type
, ret
.r
, &ret
.c
);
3729 static void uneq(void)
3735 (tok
>= TOK_A_MOD
&& tok
<= TOK_A_DIV
) ||
3736 tok
== TOK_A_XOR
|| tok
== TOK_A_OR
||
3737 tok
== TOK_A_SHL
|| tok
== TOK_A_SAR
) {
3752 ST_FUNC
void expr_prod(void)
3757 while (tok
== '*' || tok
== '/' || tok
== '%') {
3765 ST_FUNC
void expr_sum(void)
3770 while (tok
== '+' || tok
== '-') {
3778 static void expr_shift(void)
3783 while (tok
== TOK_SHL
|| tok
== TOK_SAR
) {
3791 static void expr_cmp(void)
3796 while ((tok
>= TOK_ULE
&& tok
<= TOK_GT
) ||
3797 tok
== TOK_ULT
|| tok
== TOK_UGE
) {
3805 static void expr_cmpeq(void)
3810 while (tok
== TOK_EQ
|| tok
== TOK_NE
) {
3818 static void expr_and(void)
3821 while (tok
== '&') {
3828 static void expr_xor(void)
3831 while (tok
== '^') {
3838 static void expr_or(void)
3841 while (tok
== '|') {
3848 /* XXX: fix this mess */
3849 static void expr_land_const(void)
3852 while (tok
== TOK_LAND
) {
3859 /* XXX: fix this mess */
3860 static void expr_lor_const(void)
3863 while (tok
== TOK_LOR
) {
3870 /* only used if non constant */
3871 static void expr_land(void)
3876 if (tok
== TOK_LAND
) {
3881 if (tok
!= TOK_LAND
) {
3891 static void expr_lor(void)
3896 if (tok
== TOK_LOR
) {
3901 if (tok
!= TOK_LOR
) {
3911 /* XXX: better constant handling */
3912 static void expr_eq(void)
3914 int tt
, u
, r1
, r2
, rc
, t1
, t2
, bt1
, bt2
;
3916 CType type
, type1
, type2
;
3923 boolean
.t
= VT_BOOL
;
3929 if (tok
!= ':' || !gnu_ext
) {
3944 if (vtop
!= vstack
) {
3945 /* needed to avoid having different registers saved in
3947 if (is_float(vtop
->type
.t
)) {
3949 #ifdef TCC_TARGET_X86_64
3950 if ((vtop
->type
.t
& VT_BTYPE
) == VT_LDOUBLE
) {
3960 if (tok
== ':' && gnu_ext
) {
3968 sv
= *vtop
; /* save value to handle it later */
3969 vtop
--; /* no vpop so that FP stack is not flushed */
3977 bt1
= t1
& VT_BTYPE
;
3979 bt2
= t2
& VT_BTYPE
;
3980 /* cast operands to correct type according to ISOC rules */
3981 if (is_float(bt1
) || is_float(bt2
)) {
3982 if (bt1
== VT_LDOUBLE
|| bt2
== VT_LDOUBLE
) {
3983 type
.t
= VT_LDOUBLE
;
3984 } else if (bt1
== VT_DOUBLE
|| bt2
== VT_DOUBLE
) {
3989 } else if (bt1
== VT_LLONG
|| bt2
== VT_LLONG
) {
3990 /* cast to biggest op */
3992 /* convert to unsigned if it does not fit in a long long */
3993 if ((t1
& (VT_BTYPE
| VT_UNSIGNED
)) == (VT_LLONG
| VT_UNSIGNED
) ||
3994 (t2
& (VT_BTYPE
| VT_UNSIGNED
)) == (VT_LLONG
| VT_UNSIGNED
))
3995 type
.t
|= VT_UNSIGNED
;
3996 } else if (bt1
== VT_PTR
|| bt2
== VT_PTR
) {
3997 /* XXX: test pointer compatibility */
3999 } else if (bt1
== VT_FUNC
|| bt2
== VT_FUNC
) {
4000 /* XXX: test function pointer compatibility */
4002 } else if (bt1
== VT_STRUCT
|| bt2
== VT_STRUCT
) {
4003 /* XXX: test structure compatibility */
4005 } else if (bt1
== VT_VOID
|| bt2
== VT_VOID
) {
4006 /* NOTE: as an extension, we accept void on only one side */
4009 /* integer operations */
4011 /* convert to unsigned if it does not fit in an integer */
4012 if ((t1
& (VT_BTYPE
| VT_UNSIGNED
)) == (VT_INT
| VT_UNSIGNED
) ||
4013 (t2
& (VT_BTYPE
| VT_UNSIGNED
)) == (VT_INT
| VT_UNSIGNED
))
4014 type
.t
|= VT_UNSIGNED
;
4017 /* now we convert second operand */
4019 if (VT_STRUCT
== (vtop
->type
.t
& VT_BTYPE
))
4022 if (is_float(type
.t
)) {
4024 #ifdef TCC_TARGET_X86_64
4025 if ((type
.t
& VT_BTYPE
) == VT_LDOUBLE
) {
4029 } else if ((type
.t
& VT_BTYPE
) == VT_LLONG
) {
4030 /* for long longs, we use fixed registers to avoid having
4031 to handle a complicated move */
4036 /* this is horrible, but we must also convert first
4040 /* put again first value and cast it */
4043 if (VT_STRUCT
== (vtop
->type
.t
& VT_BTYPE
))
4053 ST_FUNC
void gexpr(void)
4064 /* parse an expression and return its type without any side effect. */
4065 static void expr_type(CType
*type
)
4067 int saved_nocode_wanted
;
4069 saved_nocode_wanted
= nocode_wanted
;
4074 nocode_wanted
= saved_nocode_wanted
;
4077 /* parse a unary expression and return its type without any side
4079 static void unary_type(CType
*type
)
4091 /* parse a constant expression and return value in vtop. */
4092 static void expr_const1(void)
4101 /* parse an integer constant and return its value. */
4102 ST_FUNC
int expr_const(void)
4106 if ((vtop
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) != VT_CONST
)
4107 expect("constant expression");
4113 /* return the label token if current token is a label, otherwise
4115 static int is_label(void)
4119 /* fast test first */
4120 if (tok
< TOK_UIDENT
)
4122 /* no need to save tokc because tok is an identifier */
4129 unget_tok(last_tok
);
4134 static void block(int *bsym
, int *csym
, int *case_sym
, int *def_sym
,
4135 int case_reg
, int is_expr
)
4140 /* generate line number info */
4141 if (tcc_state
->do_debug
&&
4142 (last_line_num
!= file
->line_num
|| last_ind
!= ind
)) {
4143 put_stabn(N_SLINE
, 0, file
->line_num
, ind
- func_ind
);
4145 last_line_num
= file
->line_num
;
4149 /* default return value is (void) */
4151 vtop
->type
.t
= VT_VOID
;
4154 if (tok
== TOK_IF
) {
4161 block(bsym
, csym
, case_sym
, def_sym
, case_reg
, 0);
4163 if (c
== TOK_ELSE
) {
4167 block(bsym
, csym
, case_sym
, def_sym
, case_reg
, 0);
4168 gsym(d
); /* patch else jmp */
4171 } else if (tok
== TOK_WHILE
) {
4179 block(&a
, &b
, case_sym
, def_sym
, case_reg
, 0);
4183 } else if (tok
== '{') {
4187 /* record local declaration stack position */
4189 llabel
= local_label_stack
;
4190 /* handle local labels declarations */
4191 if (tok
== TOK_LABEL
) {
4194 if (tok
< TOK_UIDENT
)
4195 expect("label identifier");
4196 label_push(&local_label_stack
, tok
, LABEL_DECLARED
);
4206 while (tok
!= '}') {
4211 block(bsym
, csym
, case_sym
, def_sym
, case_reg
, is_expr
);
4214 /* pop locally defined labels */
4215 label_pop(&local_label_stack
, llabel
);
4216 /* pop locally defined symbols */
4218 /* XXX: this solution makes only valgrind happy...
4219 triggered by gcc.c-torture/execute/20000917-1.c */
4221 switch(vtop
->type
.t
& VT_BTYPE
) {
4226 for(p
=vtop
->type
.ref
;p
;p
=p
->prev
)
4228 error("unsupported expression type");
4231 sym_pop(&local_stack
, s
);
4233 } else if (tok
== TOK_RETURN
) {
4237 gen_assign_cast(&func_vt
);
4238 if ((func_vt
.t
& VT_BTYPE
) == VT_STRUCT
) {
4240 /* if returning structure, must copy it to implicit
4241 first pointer arg location */
4244 size
= type_size(&func_vt
,&align
);
4247 if((vtop
->r
!= (VT_LOCAL
| VT_LVAL
) || (vtop
->c
.i
& 3))
4251 loc
= (loc
- size
) & -4;
4254 vset(&type
, VT_LOCAL
| VT_LVAL
, addr
);
4257 vset(&int_type
, VT_LOCAL
| VT_LVAL
, addr
);
4259 vtop
->type
= int_type
;
4265 vset(&type
, VT_LOCAL
| VT_LVAL
, func_vc
);
4268 /* copy structure value to pointer */
4273 } else if (is_float(func_vt
.t
)) {
4274 gv(rc_fret(func_vt
.t
));
4278 vtop
--; /* NOT vpop() because on x86 it would flush the fp stack */
4281 rsym
= gjmp(rsym
); /* jmp */
4282 } else if (tok
== TOK_BREAK
) {
4285 error("cannot break");
4286 *bsym
= gjmp(*bsym
);
4289 } else if (tok
== TOK_CONTINUE
) {
4292 error("cannot continue");
4293 *csym
= gjmp(*csym
);
4296 } else if (tok
== TOK_FOR
) {
4323 block(&a
, &b
, case_sym
, def_sym
, case_reg
, 0);
4328 if (tok
== TOK_DO
) {
4333 block(&a
, &b
, case_sym
, def_sym
, case_reg
, 0);
4344 if (tok
== TOK_SWITCH
) {
4348 /* XXX: other types than integer */
4349 case_reg
= gv(RC_INT
);
4353 b
= gjmp(0); /* jump to first case */
4355 block(&a
, csym
, &b
, &c
, case_reg
, 0);
4356 /* if no default, jmp after switch */
4364 if (tok
== TOK_CASE
) {
4371 if (gnu_ext
&& tok
== TOK_DOTS
) {
4375 warning("empty case range");
4377 /* since a case is like a label, we must skip it with a jmp */
4384 *case_sym
= gtst(1, 0);
4387 *case_sym
= gtst(1, 0);
4391 *case_sym
= gtst(1, *case_sym
);
4396 goto block_after_label
;
4398 if (tok
== TOK_DEFAULT
) {
4404 error("too many 'default'");
4407 goto block_after_label
;
4409 if (tok
== TOK_GOTO
) {
4411 if (tok
== '*' && gnu_ext
) {
4415 if ((vtop
->type
.t
& VT_BTYPE
) != VT_PTR
)
4418 } else if (tok
>= TOK_UIDENT
) {
4419 s
= label_find(tok
);
4420 /* put forward definition if needed */
4422 s
= label_push(&global_label_stack
, tok
, LABEL_FORWARD
);
4424 if (s
->r
== LABEL_DECLARED
)
4425 s
->r
= LABEL_FORWARD
;
4427 /* label already defined */
4428 if (s
->r
& LABEL_FORWARD
)
4429 s
->jnext
= gjmp(s
->jnext
);
4431 gjmp_addr(s
->jnext
);
4434 expect("label identifier");
4437 } else if (tok
== TOK_ASM1
|| tok
== TOK_ASM2
|| tok
== TOK_ASM3
) {
4445 if (s
->r
== LABEL_DEFINED
)
4446 error("duplicate label '%s'", get_tok_str(s
->v
, NULL
));
4448 s
->r
= LABEL_DEFINED
;
4450 s
= label_push(&global_label_stack
, b
, LABEL_DEFINED
);
4453 /* we accept this, but it is a mistake */
4456 warning("deprecated use of label at end of compound statement");
4460 block(bsym
, csym
, case_sym
, def_sym
, case_reg
, is_expr
);
4463 /* expression case */
4478 /* t is the array or struct type. c is the array or struct
4479 address. cur_index/cur_field is the pointer to the current
4480 value. 'size_only' is true if only size info is needed (only used
4482 static void decl_designator(CType
*type
, Section
*sec
, unsigned long c
,
4483 int *cur_index
, Sym
**cur_field
,
4487 int notfirst
, index
, index_last
, align
, l
, nb_elems
, elem_size
;
4493 if (gnu_ext
&& (l
= is_label()) != 0)
4495 while (tok
== '[' || tok
== '.') {
4497 if (!(type
->t
& VT_ARRAY
))
4498 expect("array type");
4501 index
= expr_const();
4502 if (index
< 0 || (s
->c
>= 0 && index
>= s
->c
))
4503 expect("invalid index");
4504 if (tok
== TOK_DOTS
&& gnu_ext
) {
4506 index_last
= expr_const();
4507 if (index_last
< 0 ||
4508 (s
->c
>= 0 && index_last
>= s
->c
) ||
4510 expect("invalid index");
4516 *cur_index
= index_last
;
4517 type
= pointed_type(type
);
4518 elem_size
= type_size(type
, &align
);
4519 c
+= index
* elem_size
;
4520 /* NOTE: we only support ranges for last designator */
4521 nb_elems
= index_last
- index
+ 1;
4522 if (nb_elems
!= 1) {
4531 if ((type
->t
& VT_BTYPE
) != VT_STRUCT
)
4532 expect("struct/union type");
4545 /* XXX: fix this mess by using explicit storage field */
4547 type1
.t
|= (type
->t
& ~VT_TYPE
);
4561 if (type
->t
& VT_ARRAY
) {
4563 type
= pointed_type(type
);
4564 c
+= index
* type_size(type
, &align
);
4568 error("too many field init");
4569 /* XXX: fix this mess by using explicit storage field */
4571 type1
.t
|= (type
->t
& ~VT_TYPE
);
4576 decl_initializer(type
, sec
, c
, 0, size_only
);
4578 /* XXX: make it more general */
4579 if (!size_only
&& nb_elems
> 1) {
4580 unsigned long c_end
;
4585 error("range init not supported yet for dynamic storage");
4586 c_end
= c
+ nb_elems
* elem_size
;
4587 if (c_end
> sec
->data_allocated
)
4588 section_realloc(sec
, c_end
);
4589 src
= sec
->data
+ c
;
4591 for(i
= 1; i
< nb_elems
; i
++) {
4593 memcpy(dst
, src
, elem_size
);
4599 #define EXPR_CONST 1
4602 /* store a value or an expression directly in global data or in local array */
4603 static void init_putv(CType
*type
, Section
*sec
, unsigned long c
,
4604 int v
, int expr_type
)
4606 int saved_global_expr
, bt
, bit_pos
, bit_size
;
4608 unsigned long long bit_mask
;
4616 /* compound literals must be allocated globally in this case */
4617 saved_global_expr
= global_expr
;
4620 global_expr
= saved_global_expr
;
4621 /* NOTE: symbols are accepted */
4622 if ((vtop
->r
& (VT_VALMASK
| VT_LVAL
)) != VT_CONST
)
4623 error("initializer element is not constant");
4631 dtype
.t
&= ~VT_CONSTANT
; /* need to do that to avoid false warning */
4634 /* XXX: not portable */
4635 /* XXX: generate error if incorrect relocation */
4636 gen_assign_cast(&dtype
);
4637 bt
= type
->t
& VT_BTYPE
;
4638 /* we'll write at most 12 bytes */
4639 if (c
+ 12 > sec
->data_allocated
) {
4640 section_realloc(sec
, c
+ 12);
4642 ptr
= sec
->data
+ c
;
4643 /* XXX: make code faster ? */
4644 if (!(type
->t
& VT_BITFIELD
)) {
4649 bit_pos
= (vtop
->type
.t
>> VT_STRUCT_SHIFT
) & 0x3f;
4650 bit_size
= (vtop
->type
.t
>> (VT_STRUCT_SHIFT
+ 6)) & 0x3f;
4651 bit_mask
= (1LL << bit_size
) - 1;
4653 if ((vtop
->r
& VT_SYM
) &&
4659 (bt
== VT_INT
&& bit_size
!= 32)))
4660 error("initializer element is not computable at load time");
4663 vtop
->c
.i
= (vtop
->c
.i
!= 0);
4665 *(char *)ptr
|= (vtop
->c
.i
& bit_mask
) << bit_pos
;
4668 *(short *)ptr
|= (vtop
->c
.i
& bit_mask
) << bit_pos
;
4671 *(double *)ptr
= vtop
->c
.d
;
4674 *(long double *)ptr
= vtop
->c
.ld
;
4677 *(long long *)ptr
|= (vtop
->c
.ll
& bit_mask
) << bit_pos
;
4680 if (vtop
->r
& VT_SYM
) {
4681 greloc(sec
, vtop
->sym
, c
, R_DATA_PTR
);
4683 *(int *)ptr
|= (vtop
->c
.i
& bit_mask
) << bit_pos
;
4688 vset(&dtype
, VT_LOCAL
|VT_LVAL
, c
);
4695 /* put zeros for variable based init */
4696 static void init_putz(CType
*t
, Section
*sec
, unsigned long c
, int size
)
4699 /* nothing to do because globals are already set to zero */
4701 vpush_global_sym(&func_old_type
, TOK_memset
);
4709 /* 't' contains the type and storage info. 'c' is the offset of the
4710 object in section 'sec'. If 'sec' is NULL, it means stack based
4711 allocation. 'first' is true if array '{' must be read (multi
4712 dimension implicit array init handling). 'size_only' is true if
4713 size only evaluation is wanted (only for arrays). */
4714 static void decl_initializer(CType
*type
, Section
*sec
, unsigned long c
,
4715 int first
, int size_only
)
4717 int index
, array_length
, n
, no_oblock
, nb
, parlevel
, i
;
4718 int size1
, align1
, expr_type
;
4722 if (type
->t
& VT_ARRAY
) {
4726 t1
= pointed_type(type
);
4727 size1
= type_size(t1
, &align1
);
4730 if ((first
&& tok
!= TOK_LSTR
&& tok
!= TOK_STR
) ||
4733 error("character array initializer must be a literal,"
4734 " optionally enclosed in braces");
4739 /* only parse strings here if correct type (otherwise: handle
4740 them as ((w)char *) expressions */
4741 if ((tok
== TOK_LSTR
&&
4742 #ifdef TCC_TARGET_PE
4743 (t1
->t
& VT_BTYPE
) == VT_SHORT
&& (t1
->t
& VT_UNSIGNED
)
4745 (t1
->t
& VT_BTYPE
) == VT_INT
4747 ) || (tok
== TOK_STR
&& (t1
->t
& VT_BTYPE
) == VT_BYTE
)) {
4748 while (tok
== TOK_STR
|| tok
== TOK_LSTR
) {
4753 /* compute maximum number of chars wanted */
4755 cstr_len
= cstr
->size
;
4757 cstr_len
= cstr
->size
/ sizeof(nwchar_t
);
4760 if (n
>= 0 && nb
> (n
- array_length
))
4761 nb
= n
- array_length
;
4764 warning("initializer-string for array is too long");
4765 /* in order to go faster for common case (char
4766 string in global variable, we handle it
4768 if (sec
&& tok
== TOK_STR
&& size1
== 1) {
4769 memcpy(sec
->data
+ c
+ array_length
, cstr
->data
, nb
);
4773 ch
= ((unsigned char *)cstr
->data
)[i
];
4775 ch
= ((nwchar_t
*)cstr
->data
)[i
];
4776 init_putv(t1
, sec
, c
+ (array_length
+ i
) * size1
,
4784 /* only add trailing zero if enough storage (no
4785 warning in this case since it is standard) */
4786 if (n
< 0 || array_length
< n
) {
4788 init_putv(t1
, sec
, c
+ (array_length
* size1
), 0, EXPR_VAL
);
4794 while (tok
!= '}') {
4795 decl_designator(type
, sec
, c
, &index
, NULL
, size_only
);
4796 if (n
>= 0 && index
>= n
)
4797 error("index too large");
4798 /* must put zero in holes (note that doing it that way
4799 ensures that it even works with designators) */
4800 if (!size_only
&& array_length
< index
) {
4801 init_putz(t1
, sec
, c
+ array_length
* size1
,
4802 (index
- array_length
) * size1
);
4805 if (index
> array_length
)
4806 array_length
= index
;
4807 /* special test for multi dimensional arrays (may not
4808 be strictly correct if designators are used at the
4810 if (index
>= n
&& no_oblock
)
4819 /* put zeros at the end */
4820 if (!size_only
&& n
>= 0 && array_length
< n
) {
4821 init_putz(t1
, sec
, c
+ array_length
* size1
,
4822 (n
- array_length
) * size1
);
4824 /* patch type size if needed */
4826 s
->c
= array_length
;
4827 } else if ((type
->t
& VT_BTYPE
) == VT_STRUCT
&&
4828 (sec
|| !first
|| tok
== '{')) {
4831 /* NOTE: the previous test is a specific case for automatic
4832 struct/union init */
4833 /* XXX: union needs only one init */
4835 /* XXX: this test is incorrect for local initializers
4836 beginning with ( without {. It would be much more difficult
4837 to do it correctly (ideally, the expression parser should
4838 be used in all cases) */
4844 while (tok
== '(') {
4848 if (!parse_btype(&type1
, &ad1
))
4850 type_decl(&type1
, &ad1
, &n
, TYPE_ABSTRACT
);
4852 if (!is_assignable_types(type
, &type1
))
4853 error("invalid type for cast");
4858 if (first
|| tok
== '{') {
4867 while (tok
!= '}') {
4868 decl_designator(type
, sec
, c
, NULL
, &f
, size_only
);
4870 if (!size_only
&& array_length
< index
) {
4871 init_putz(type
, sec
, c
+ array_length
,
4872 index
- array_length
);
4874 index
= index
+ type_size(&f
->type
, &align1
);
4875 if (index
> array_length
)
4876 array_length
= index
;
4878 /* gr: skip fields from same union - ugly. */
4880 ///printf("index: %2d %08x -- %2d %08x\n", f->c, f->type.t, f->next->c, f->next->type.t);
4881 /* test for same offset */
4882 if (f
->next
->c
!= f
->c
)
4884 /* if yes, test for bitfield shift */
4885 if ((f
->type
.t
& VT_BITFIELD
) && (f
->next
->type
.t
& VT_BITFIELD
)) {
4886 int bit_pos_1
= (f
->type
.t
>> VT_STRUCT_SHIFT
) & 0x3f;
4887 int bit_pos_2
= (f
->next
->type
.t
>> VT_STRUCT_SHIFT
) & 0x3f;
4888 //printf("bitfield %d %d\n", bit_pos_1, bit_pos_2);
4889 if (bit_pos_1
!= bit_pos_2
)
4896 if (no_oblock
&& f
== NULL
)
4902 /* put zeros at the end */
4903 if (!size_only
&& array_length
< n
) {
4904 init_putz(type
, sec
, c
+ array_length
,
4913 } else if (tok
== '{') {
4915 decl_initializer(type
, sec
, c
, first
, size_only
);
4917 } else if (size_only
) {
4918 /* just skip expression */
4920 while ((parlevel
> 0 || (tok
!= '}' && tok
!= ',')) &&
4924 else if (tok
== ')')
4929 /* currently, we always use constant expression for globals
4930 (may change for scripting case) */
4931 expr_type
= EXPR_CONST
;
4933 expr_type
= EXPR_ANY
;
4934 init_putv(type
, sec
, c
, 0, expr_type
);
4938 /* parse an initializer for type 't' if 'has_init' is non zero, and
4939 allocate space in local or global data space ('r' is either
4940 VT_LOCAL or VT_CONST). If 'v' is non zero, then an associated
4941 variable 'v' of scope 'scope' is declared before initializers are
4942 parsed. If 'v' is zero, then a reference to the new object is put
4943 in the value stack. If 'has_init' is 2, a special parsing is done
4944 to handle string constants. */
4945 static void decl_initializer_alloc(CType
*type
, AttributeDef
*ad
, int r
,
4946 int has_init
, int v
, int scope
)
4948 int size
, align
, addr
, data_offset
;
4950 ParseState saved_parse_state
= {0};
4951 TokenString init_str
;
4954 size
= type_size(type
, &align
);
4955 /* If unknown size, we must evaluate it before
4956 evaluating initializers because
4957 initializers can generate global data too
4958 (e.g. string pointers or ISOC99 compound
4959 literals). It also simplifies local
4960 initializers handling */
4961 tok_str_new(&init_str
);
4964 error("unknown type size");
4965 /* get all init string */
4966 if (has_init
== 2) {
4967 /* only get strings */
4968 while (tok
== TOK_STR
|| tok
== TOK_LSTR
) {
4969 tok_str_add_tok(&init_str
);
4974 while (level
> 0 || (tok
!= ',' && tok
!= ';')) {
4976 error("unexpected end of file in initializer");
4977 tok_str_add_tok(&init_str
);
4980 else if (tok
== '}') {
4990 tok_str_add(&init_str
, -1);
4991 tok_str_add(&init_str
, 0);
4994 save_parse_state(&saved_parse_state
);
4996 macro_ptr
= init_str
.str
;
4998 decl_initializer(type
, NULL
, 0, 1, 1);
4999 /* prepare second initializer parsing */
5000 macro_ptr
= init_str
.str
;
5003 /* if still unknown size, error */
5004 size
= type_size(type
, &align
);
5006 error("unknown type size");
5008 /* take into account specified alignment if bigger */
5010 if (ad
->aligned
> align
)
5011 align
= ad
->aligned
;
5012 } else if (ad
->packed
) {
5015 if ((r
& VT_VALMASK
) == VT_LOCAL
) {
5017 #ifdef CONFIG_TCC_BCHECK
5018 if (tcc_state
->do_bounds_check
&& (type
->t
& VT_ARRAY
))
5021 loc
= (loc
- size
) & -align
;
5023 #ifdef CONFIG_TCC_BCHECK
5024 /* handles bounds */
5025 /* XXX: currently, since we do only one pass, we cannot track
5026 '&' operators, so we add only arrays */
5027 if (tcc_state
->do_bounds_check
&& (type
->t
& VT_ARRAY
)) {
5028 unsigned long *bounds_ptr
;
5029 /* add padding between regions */
5031 /* then add local bound info */
5032 bounds_ptr
= section_ptr_add(lbounds_section
, 2 * sizeof(unsigned long));
5033 bounds_ptr
[0] = addr
;
5034 bounds_ptr
[1] = size
;
5038 /* local variable */
5039 sym_push(v
, type
, r
, addr
);
5041 /* push local reference */
5042 vset(type
, r
, addr
);
5048 if (v
&& scope
== VT_CONST
) {
5049 /* see if the symbol was already defined */
5052 if (!is_compatible_types(&sym
->type
, type
))
5053 error("incompatible types for redefinition of '%s'",
5054 get_tok_str(v
, NULL
));
5055 if (sym
->type
.t
& VT_EXTERN
) {
5056 /* if the variable is extern, it was not allocated */
5057 sym
->type
.t
&= ~VT_EXTERN
;
5058 /* set array size if it was ommited in extern
5060 if ((sym
->type
.t
& VT_ARRAY
) &&
5061 sym
->type
.ref
->c
< 0 &&
5063 sym
->type
.ref
->c
= type
->ref
->c
;
5065 /* we accept several definitions of the same
5066 global variable. this is tricky, because we
5067 must play with the SHN_COMMON type of the symbol */
5068 /* XXX: should check if the variable was already
5069 initialized. It is incorrect to initialized it
5071 /* no init data, we won't add more to the symbol */
5078 /* allocate symbol in corresponding section */
5083 else if (tcc_state
->nocommon
)
5087 data_offset
= sec
->data_offset
;
5088 data_offset
= (data_offset
+ align
- 1) & -align
;
5090 /* very important to increment global pointer at this time
5091 because initializers themselves can create new initializers */
5092 data_offset
+= size
;
5093 #ifdef CONFIG_TCC_BCHECK
5094 /* add padding if bound check */
5095 if (tcc_state
->do_bounds_check
)
5098 sec
->data_offset
= data_offset
;
5099 /* allocate section space to put the data */
5100 if (sec
->sh_type
!= SHT_NOBITS
&&
5101 data_offset
> sec
->data_allocated
)
5102 section_realloc(sec
, data_offset
);
5103 /* align section if needed */
5104 if (align
> sec
->sh_addralign
)
5105 sec
->sh_addralign
= align
;
5107 addr
= 0; /* avoid warning */
5111 if (scope
!= VT_CONST
|| !sym
) {
5112 sym
= sym_push(v
, type
, r
| VT_SYM
, 0);
5114 /* update symbol definition */
5116 put_extern_sym(sym
, sec
, addr
, size
);
5119 /* put a common area */
5120 put_extern_sym(sym
, NULL
, align
, size
);
5121 /* XXX: find a nicer way */
5122 esym
= &((ElfW(Sym
) *)symtab_section
->data
)[sym
->c
];
5123 esym
->st_shndx
= SHN_COMMON
;
5128 /* push global reference */
5129 sym
= get_sym_ref(type
, sec
, addr
, size
);
5131 vsetc(type
, VT_CONST
| VT_SYM
, &cval
);
5134 #ifdef CONFIG_TCC_BCHECK
5135 /* handles bounds now because the symbol must be defined
5136 before for the relocation */
5137 if (tcc_state
->do_bounds_check
) {
5138 unsigned long *bounds_ptr
;
5140 greloc(bounds_section
, sym
, bounds_section
->data_offset
, R_DATA_PTR
);
5141 /* then add global bound info */
5142 bounds_ptr
= section_ptr_add(bounds_section
, 2 * sizeof(long));
5143 bounds_ptr
[0] = 0; /* relocated */
5144 bounds_ptr
[1] = size
;
5149 decl_initializer(type
, sec
, addr
, 1, 0);
5150 /* restore parse state if needed */
5152 tok_str_free(init_str
.str
);
5153 restore_parse_state(&saved_parse_state
);
5159 static void put_func_debug(Sym
*sym
)
5164 /* XXX: we put here a dummy type */
5165 snprintf(buf
, sizeof(buf
), "%s:%c1",
5166 funcname
, sym
->type
.t
& VT_STATIC
? 'f' : 'F');
5167 put_stabs_r(buf
, N_FUN
, 0, file
->line_num
, 0,
5168 cur_text_section
, sym
->c
);
5169 /* //gr gdb wants a line at the function */
5170 put_stabn(N_SLINE
, 0, file
->line_num
, 0);
5175 /* parse an old style function declaration list */
5176 /* XXX: check multiple parameter */
5177 static void func_decl_list(Sym
*func_sym
)
5184 /* parse each declaration */
5185 while (tok
!= '{' && tok
!= ';' && tok
!= ',' && tok
!= TOK_EOF
) {
5186 if (!parse_btype(&btype
, &ad
))
5187 expect("declaration list");
5188 if (((btype
.t
& VT_BTYPE
) == VT_ENUM
||
5189 (btype
.t
& VT_BTYPE
) == VT_STRUCT
) &&
5191 /* we accept no variable after */
5195 type_decl(&type
, &ad
, &v
, TYPE_DIRECT
);
5196 /* find parameter in function parameter list */
5199 if ((s
->v
& ~SYM_FIELD
) == v
)
5203 error("declaration for parameter '%s' but no such parameter",
5204 get_tok_str(v
, NULL
));
5206 /* check that no storage specifier except 'register' was given */
5207 if (type
.t
& VT_STORAGE
)
5208 error("storage class specified for '%s'", get_tok_str(v
, NULL
));
5209 convert_parameter_type(&type
);
5210 /* we can add the type (NOTE: it could be local to the function) */
5212 /* accept other parameters */
5223 /* parse a function defined by symbol 'sym' and generate its code in
5224 'cur_text_section' */
5225 static void gen_function(Sym
*sym
)
5227 int saved_nocode_wanted
= nocode_wanted
;
5229 ind
= cur_text_section
->data_offset
;
5230 /* NOTE: we patch the symbol size later */
5231 put_extern_sym(sym
, cur_text_section
, ind
, 0);
5232 funcname
= get_tok_str(sym
->v
, NULL
);
5234 /* put debug symbol */
5235 if (tcc_state
->do_debug
)
5236 put_func_debug(sym
);
5237 /* push a dummy symbol to enable local sym storage */
5238 sym_push2(&local_stack
, SYM_FIELD
, 0, 0);
5239 gfunc_prolog(&sym
->type
);
5241 block(NULL
, NULL
, NULL
, NULL
, 0, 0);
5244 cur_text_section
->data_offset
= ind
;
5245 label_pop(&global_label_stack
, NULL
);
5246 sym_pop(&local_stack
, NULL
); /* reset local stack */
5247 /* end of function */
5248 /* patch symbol size */
5249 ((ElfW(Sym
) *)symtab_section
->data
)[sym
->c
].st_size
=
5251 if (tcc_state
->do_debug
) {
5252 put_stabn(N_FUN
, 0, 0, ind
- func_ind
);
5254 /* It's better to crash than to generate wrong code */
5255 cur_text_section
= NULL
;
5256 funcname
= ""; /* for safety */
5257 func_vt
.t
= VT_VOID
; /* for safety */
5258 ind
= 0; /* for safety */
5259 nocode_wanted
= saved_nocode_wanted
;
5262 ST_FUNC
void gen_inline_functions(void)
5265 int *str
, inline_generated
, i
;
5266 struct InlineFunc
*fn
;
5268 /* iterate while inline function are referenced */
5270 inline_generated
= 0;
5271 for (i
= 0; i
< tcc_state
->nb_inline_fns
; ++i
) {
5272 fn
= tcc_state
->inline_fns
[i
];
5274 if (sym
&& sym
->c
) {
5275 /* the function was used: generate its code and
5276 convert it to a normal function */
5277 str
= fn
->token_str
;
5280 strcpy(file
->filename
, fn
->filename
);
5281 sym
->r
= VT_SYM
| VT_CONST
;
5282 sym
->type
.t
&= ~VT_INLINE
;
5286 cur_text_section
= text_section
;
5288 macro_ptr
= NULL
; /* fail safe */
5290 inline_generated
= 1;
5293 if (!inline_generated
)
5296 for (i
= 0; i
< tcc_state
->nb_inline_fns
; ++i
) {
5297 fn
= tcc_state
->inline_fns
[i
];
5298 str
= fn
->token_str
;
5301 dynarray_reset(&tcc_state
->inline_fns
, &tcc_state
->nb_inline_fns
);
5304 /* 'l' is VT_LOCAL or VT_CONST to define default storage type */
5305 ST_FUNC
void decl(int l
)
5313 if (!parse_btype(&btype
, &ad
)) {
5314 /* skip redundant ';' */
5315 /* XXX: find more elegant solution */
5320 if (l
== VT_CONST
&&
5321 (tok
== TOK_ASM1
|| tok
== TOK_ASM2
|| tok
== TOK_ASM3
)) {
5322 /* global asm block */
5326 /* special test for old K&R protos without explicit int
5327 type. Only accepted when defining global data */
5328 if (l
== VT_LOCAL
|| tok
< TOK_DEFINE
)
5332 if (((btype
.t
& VT_BTYPE
) == VT_ENUM
||
5333 (btype
.t
& VT_BTYPE
) == VT_STRUCT
) &&
5335 /* we accept no variable after */
5339 while (1) { /* iterate thru each declaration */
5341 type_decl(&type
, &ad
, &v
, TYPE_DIRECT
);
5345 type_to_str(buf
, sizeof(buf
), t
, get_tok_str(v
, NULL
));
5346 printf("type = '%s'\n", buf
);
5349 if ((type
.t
& VT_BTYPE
) == VT_FUNC
) {
5350 /* if old style function prototype, we accept a
5353 if (sym
->c
== FUNC_OLD
)
5354 func_decl_list(sym
);
5357 #ifdef TCC_TARGET_PE
5359 type
.t
|= VT_IMPORT
;
5361 type
.t
|= VT_EXPORT
;
5365 error("cannot use local functions");
5366 if ((type
.t
& VT_BTYPE
) != VT_FUNC
)
5367 expect("function definition");
5369 /* reject abstract declarators in function definition */
5371 while ((sym
= sym
->next
) != NULL
)
5372 if (!(sym
->v
& ~SYM_FIELD
))
5373 expect("identifier");
5375 /* XXX: cannot do better now: convert extern line to static inline */
5376 if ((type
.t
& (VT_EXTERN
| VT_INLINE
)) == (VT_EXTERN
| VT_INLINE
))
5377 type
.t
= (type
.t
& ~VT_EXTERN
) | VT_STATIC
;
5381 if ((sym
->type
.t
& VT_BTYPE
) != VT_FUNC
)
5384 r
= sym
->type
.ref
->r
;
5385 /* use func_call from prototype if not defined */
5386 if (FUNC_CALL(r
) != FUNC_CDECL
5387 && FUNC_CALL(type
.ref
->r
) == FUNC_CDECL
)
5388 FUNC_CALL(type
.ref
->r
) = FUNC_CALL(r
);
5390 /* use export from prototype */
5392 FUNC_EXPORT(type
.ref
->r
) = 1;
5394 /* use static from prototype */
5395 if (sym
->type
.t
& VT_STATIC
)
5396 type
.t
= (type
.t
& ~VT_EXTERN
) | VT_STATIC
;
5398 if (!is_compatible_types(&sym
->type
, &type
)) {
5400 error("incompatible types for redefinition of '%s'",
5401 get_tok_str(v
, NULL
));
5403 /* if symbol is already defined, then put complete type */
5406 /* put function symbol */
5407 sym
= global_identifier_push(v
, type
.t
, 0);
5408 sym
->type
.ref
= type
.ref
;
5411 /* static inline functions are just recorded as a kind
5412 of macro. Their code will be emitted at the end of
5413 the compilation unit only if they are used */
5414 if ((type
.t
& (VT_INLINE
| VT_STATIC
)) ==
5415 (VT_INLINE
| VT_STATIC
)) {
5416 TokenString func_str
;
5418 struct InlineFunc
*fn
;
5419 const char *filename
;
5421 tok_str_new(&func_str
);
5427 error("unexpected end of file");
5428 tok_str_add_tok(&func_str
);
5433 } else if (t
== '}') {
5435 if (block_level
== 0)
5439 tok_str_add(&func_str
, -1);
5440 tok_str_add(&func_str
, 0);
5441 filename
= file
? file
->filename
: "";
5442 fn
= tcc_malloc(sizeof *fn
+ strlen(filename
));
5443 strcpy(fn
->filename
, filename
);
5445 fn
->token_str
= func_str
.str
;
5446 dynarray_add((void ***)&tcc_state
->inline_fns
, &tcc_state
->nb_inline_fns
, fn
);
5449 /* compute text section */
5450 cur_text_section
= ad
.section
;
5451 if (!cur_text_section
)
5452 cur_text_section
= text_section
;
5453 sym
->r
= VT_SYM
| VT_CONST
;
5458 if (btype
.t
& VT_TYPEDEF
) {
5459 /* save typedefed type */
5460 /* XXX: test storage specifiers ? */
5461 sym
= sym_push(v
, &type
, INT_ATTR(&ad
), 0);
5462 sym
->type
.t
|= VT_TYPEDEF
;
5463 } else if ((type
.t
& VT_BTYPE
) == VT_FUNC
) {
5465 /* external function definition */
5466 /* specific case for func_call attribute */
5467 type
.ref
->r
= INT_ATTR(&ad
);
5468 fn
= external_sym(v
, &type
, 0);
5470 if (gnu_ext
&& (tok
== TOK_ASM1
|| tok
== TOK_ASM2
|| tok
== TOK_ASM3
)) {
5476 /* Part 1: __USER_LABEL_PREFIX__ (user defined) */
5478 pstrcat(target
, sizeof(target
), tokc
.cstr
->data
);
5480 pstrcat(target
, sizeof(target
), get_tok_str(tok
, NULL
));
5483 /* Part 2: api name */
5485 pstrcat(target
, sizeof(target
), tokc
.cstr
->data
);
5487 pstrcat(target
, sizeof(target
), get_tok_str(tok
, NULL
));
5491 if (tcc_state
->warn_unsupported
)
5492 warning("ignoring redirection from %s to %s\n", get_tok_str(v
, NULL
), target
);
5494 if (tok
== TOK_ATTRIBUTE1
|| tok
== TOK_ATTRIBUTE2
)
5495 parse_attribute((AttributeDef
*) &fn
->type
.ref
->r
);
5498 /* not lvalue if array */
5500 if (!(type
.t
& VT_ARRAY
))
5501 r
|= lvalue_type(type
.t
);
5502 has_init
= (tok
== '=');
5503 if ((btype
.t
& VT_EXTERN
) ||
5504 ((type
.t
& VT_ARRAY
) && (type
.t
& VT_STATIC
) &&
5505 !has_init
&& l
== VT_CONST
&& type
.ref
->c
< 0)) {
5506 /* external variable */
5507 /* NOTE: as GCC, uninitialized global static
5508 arrays of null size are considered as
5510 external_sym(v
, &type
, r
);
5512 type
.t
|= (btype
.t
& VT_STATIC
); /* Retain "static". */
5513 if (type
.t
& VT_STATIC
)
5519 decl_initializer_alloc(&type
, &ad
, r
, has_init
, v
, l
);