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 */
3005 /* read param name and compute offset */
3006 if (l
!= FUNC_OLD
) {
3007 if (!parse_btype(&pt
, &ad1
)) {
3009 error("invalid type");
3016 if ((pt
.t
& VT_BTYPE
) == VT_VOID
&& tok
== ')')
3018 type_decl(&pt
, &ad1
, &n
, TYPE_DIRECT
| TYPE_ABSTRACT
);
3019 if ((pt
.t
& VT_BTYPE
) == VT_VOID
)
3020 error("parameter declared as void");
3021 arg_size
+= (type_size(&pt
, &align
) + PTR_SIZE
- 1) / PTR_SIZE
;
3026 expect("identifier");
3030 convert_parameter_type(&pt
);
3031 s
= sym_push(n
| SYM_FIELD
, &pt
, 0, 0);
3037 if (l
== FUNC_NEW
&& tok
== TOK_DOTS
) {
3044 /* if no parameters, then old type prototype */
3048 t1
= type
->t
& VT_STORAGE
;
3049 /* NOTE: const is ignored in returned type as it has a special
3050 meaning in gcc / C++ */
3051 type
->t
&= ~(VT_STORAGE
| VT_CONSTANT
);
3052 post_type(type
, ad
);
3053 /* we push a anonymous symbol which will contain the function prototype */
3054 ad
->func_args
= arg_size
;
3055 s
= sym_push(SYM_FIELD
, type
, INT_ATTR(ad
), l
);
3057 type
->t
= t1
| VT_FUNC
;
3059 } else if (tok
== '[') {
3060 /* array definition */
3062 if (tok
== TOK_RESTRICT1
)
3068 error("invalid array size");
3071 /* parse next post type */
3072 t1
= type
->t
& VT_STORAGE
;
3073 type
->t
&= ~VT_STORAGE
;
3074 post_type(type
, ad
);
3076 /* we push a anonymous symbol which will contain the array
3078 s
= sym_push(SYM_FIELD
, type
, 0, n
);
3079 type
->t
= t1
| VT_ARRAY
| VT_PTR
;
3084 /* Parse a type declaration (except basic type), and return the type
3085 in 'type'. 'td' is a bitmask indicating which kind of type decl is
3086 expected. 'type' should contain the basic type. 'ad' is the
3087 attribute definition of the basic type. It can be modified by
3090 static void type_decl(CType
*type
, AttributeDef
*ad
, int *v
, int td
)
3093 CType type1
, *type2
;
3096 while (tok
== '*') {
3104 qualifiers
|= VT_CONSTANT
;
3109 qualifiers
|= VT_VOLATILE
;
3117 type
->t
|= qualifiers
;
3120 /* XXX: clarify attribute handling */
3121 if (tok
== TOK_ATTRIBUTE1
|| tok
== TOK_ATTRIBUTE2
)
3122 parse_attribute(ad
);
3124 /* recursive type */
3125 /* XXX: incorrect if abstract type for functions (e.g. 'int ()') */
3126 type1
.t
= 0; /* XXX: same as int */
3129 /* XXX: this is not correct to modify 'ad' at this point, but
3130 the syntax is not clear */
3131 if (tok
== TOK_ATTRIBUTE1
|| tok
== TOK_ATTRIBUTE2
)
3132 parse_attribute(ad
);
3133 type_decl(&type1
, ad
, v
, td
);
3136 /* type identifier */
3137 if (tok
>= TOK_IDENT
&& (td
& TYPE_DIRECT
)) {
3141 if (!(td
& TYPE_ABSTRACT
))
3142 expect("identifier");
3146 post_type(type
, ad
);
3147 if (tok
== TOK_ATTRIBUTE1
|| tok
== TOK_ATTRIBUTE2
)
3148 parse_attribute(ad
);
3151 /* append type at the end of type1 */
3164 /* compute the lvalue VT_LVAL_xxx needed to match type t. */
3165 ST_FUNC
int lvalue_type(int t
)
3170 if (bt
== VT_BYTE
|| bt
== VT_BOOL
)
3172 else if (bt
== VT_SHORT
)
3176 if (t
& VT_UNSIGNED
)
3177 r
|= VT_LVAL_UNSIGNED
;
3181 /* indirection with full error checking and bound check */
3182 ST_FUNC
void indir(void)
3184 if ((vtop
->type
.t
& VT_BTYPE
) != VT_PTR
) {
3185 if ((vtop
->type
.t
& VT_BTYPE
) == VT_FUNC
)
3189 if ((vtop
->r
& VT_LVAL
) && !nocode_wanted
)
3191 vtop
->type
= *pointed_type(&vtop
->type
);
3192 /* Arrays and functions are never lvalues */
3193 if (!(vtop
->type
.t
& VT_ARRAY
)
3194 && (vtop
->type
.t
& VT_BTYPE
) != VT_FUNC
) {
3195 vtop
->r
|= lvalue_type(vtop
->type
.t
);
3196 /* if bound checking, the referenced pointer must be checked */
3197 #ifdef CONFIG_TCC_BCHECK
3198 if (tcc_state
->do_bounds_check
)
3199 vtop
->r
|= VT_MUSTBOUND
;
3204 /* pass a parameter to a function and do type checking and casting */
3205 static void gfunc_param_typed(Sym
*func
, Sym
*arg
)
3210 func_type
= func
->c
;
3211 if (func_type
== FUNC_OLD
||
3212 (func_type
== FUNC_ELLIPSIS
&& arg
== NULL
)) {
3213 /* default casting : only need to convert float to double */
3214 if ((vtop
->type
.t
& VT_BTYPE
) == VT_FLOAT
) {
3218 } else if (arg
== NULL
) {
3219 error("too many arguments to function");
3222 type
.t
&= ~VT_CONSTANT
; /* need to do that to avoid false warning */
3223 gen_assign_cast(&type
);
3227 /* parse an expression of the form '(type)' or '(expr)' and return its
3229 static void parse_expr_type(CType
*type
)
3235 if (parse_btype(type
, &ad
)) {
3236 type_decl(type
, &ad
, &n
, TYPE_ABSTRACT
);
3243 static void parse_type(CType
*type
)
3248 if (!parse_btype(type
, &ad
)) {
3251 type_decl(type
, &ad
, &n
, TYPE_ABSTRACT
);
3254 static void vpush_tokc(int t
)
3259 vsetc(&type
, VT_CONST
, &tokc
);
3262 ST_FUNC
void unary(void)
3264 int n
, t
, align
, size
, r
, sizeof_caller
;
3268 static int in_sizeof
= 0;
3270 sizeof_caller
= in_sizeof
;
3272 /* XXX: GCC 2.95.3 does not generate a table although it should be
3286 vpush_tokc(VT_INT
| VT_UNSIGNED
);
3290 vpush_tokc(VT_LLONG
);
3294 vpush_tokc(VT_LLONG
| VT_UNSIGNED
);
3298 vpush_tokc(VT_FLOAT
);
3302 vpush_tokc(VT_DOUBLE
);
3306 vpush_tokc(VT_LDOUBLE
);
3309 case TOK___FUNCTION__
:
3311 goto tok_identifier
;
3317 /* special function name identifier */
3318 len
= strlen(funcname
) + 1;
3319 /* generate char[len] type */
3324 vpush_ref(&type
, data_section
, data_section
->data_offset
, len
);
3325 ptr
= section_ptr_add(data_section
, len
);
3326 memcpy(ptr
, funcname
, len
);
3331 #ifdef TCC_TARGET_PE
3332 t
= VT_SHORT
| VT_UNSIGNED
;
3338 /* string parsing */
3341 if (tcc_state
->warn_write_strings
)
3346 memset(&ad
, 0, sizeof(AttributeDef
));
3347 decl_initializer_alloc(&type
, &ad
, VT_CONST
, 2, 0, 0);
3352 if (parse_btype(&type
, &ad
)) {
3353 type_decl(&type
, &ad
, &n
, TYPE_ABSTRACT
);
3355 /* check ISOC99 compound literal */
3357 /* data is allocated locally by default */
3362 /* all except arrays are lvalues */
3363 if (!(type
.t
& VT_ARRAY
))
3364 r
|= lvalue_type(type
.t
);
3365 memset(&ad
, 0, sizeof(AttributeDef
));
3366 decl_initializer_alloc(&type
, &ad
, r
, 1, 0, 0);
3368 if (sizeof_caller
) {
3375 } else if (tok
== '{') {
3376 /* save all registers */
3378 /* statement expression : we do not accept break/continue
3379 inside as GCC does */
3380 block(NULL
, NULL
, NULL
, NULL
, 0, 1);
3395 /* functions names must be treated as function pointers,
3396 except for unary '&' and sizeof. Since we consider that
3397 functions are not lvalues, we only have to handle it
3398 there and in function calls. */
3399 /* arrays can also be used although they are not lvalues */
3400 if ((vtop
->type
.t
& VT_BTYPE
) != VT_FUNC
&&
3401 !(vtop
->type
.t
& VT_ARRAY
) && !(vtop
->type
.t
& VT_LLOCAL
))
3403 mk_pointer(&vtop
->type
);
3409 if ((vtop
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) == VT_CONST
) {
3411 boolean
.t
= VT_BOOL
;
3413 vtop
->c
.i
= !vtop
->c
.i
;
3414 } else if ((vtop
->r
& VT_VALMASK
) == VT_CMP
)
3415 vtop
->c
.i
= vtop
->c
.i
^ 1;
3418 vseti(VT_JMP
, gtst(1, 0));
3429 /* in order to force cast, we add zero */
3431 if ((vtop
->type
.t
& VT_BTYPE
) == VT_PTR
)
3432 error("pointer not accepted for unary plus");
3442 unary_type(&type
); // Perform a in_sizeof = 0;
3443 size
= type_size(&type
, &align
);
3444 if (t
== TOK_SIZEOF
) {
3446 error("sizeof applied to an incomplete type");
3451 vtop
->type
.t
|= VT_UNSIGNED
;
3454 case TOK_builtin_types_compatible_p
:
3463 type1
.t
&= ~(VT_CONSTANT
| VT_VOLATILE
);
3464 type2
.t
&= ~(VT_CONSTANT
| VT_VOLATILE
);
3465 vpushi(is_compatible_types(&type1
, &type2
));
3468 case TOK_builtin_constant_p
:
3470 int saved_nocode_wanted
, res
;
3473 saved_nocode_wanted
= nocode_wanted
;
3476 res
= (vtop
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) == VT_CONST
;
3478 nocode_wanted
= saved_nocode_wanted
;
3483 case TOK_builtin_frame_address
:
3488 if (tok
!= TOK_CINT
) {
3489 error("__builtin_frame_address only takes integers");
3492 error("TCC only supports __builtin_frame_address(0)");
3498 vset(&type
, VT_LOCAL
, 0);
3501 #ifdef TCC_TARGET_X86_64
3502 case TOK_builtin_malloc
:
3504 goto tok_identifier
;
3505 case TOK_builtin_free
:
3507 goto tok_identifier
;
3524 goto tok_identifier
;
3526 /* allow to take the address of a label */
3527 if (tok
< TOK_UIDENT
)
3528 expect("label identifier");
3529 s
= label_find(tok
);
3531 s
= label_push(&global_label_stack
, tok
, LABEL_FORWARD
);
3533 if (s
->r
== LABEL_DECLARED
)
3534 s
->r
= LABEL_FORWARD
;
3537 s
->type
.t
= VT_VOID
;
3538 mk_pointer(&s
->type
);
3539 s
->type
.t
|= VT_STATIC
;
3541 vset(&s
->type
, VT_CONST
| VT_SYM
, 0);
3546 // special qnan , snan and infinity values
3548 vpush64(VT_DOUBLE
, 0x7ff8000000000000ULL
);
3552 vpush64(VT_DOUBLE
, 0x7ff0000000000001ULL
);
3556 vpush64(VT_DOUBLE
, 0x7ff0000000000000ULL
);
3565 expect("identifier");
3569 error("'%s' undeclared", get_tok_str(t
, NULL
));
3570 /* for simple function calls, we tolerate undeclared
3571 external reference to int() function */
3572 if (tcc_state
->warn_implicit_function_declaration
)
3573 warning("implicit declaration of function '%s'",
3574 get_tok_str(t
, NULL
));
3575 s
= external_global_sym(t
, &func_old_type
, 0);
3577 if ((s
->type
.t
& (VT_STATIC
| VT_INLINE
| VT_BTYPE
)) ==
3578 (VT_STATIC
| VT_INLINE
| VT_FUNC
)) {
3579 /* if referencing an inline function, then we generate a
3580 symbol to it if not already done. It will have the
3581 effect to generate code for it at the end of the
3582 compilation unit. Inline function as always
3583 generated in the text section. */
3585 put_extern_sym(s
, text_section
, 0, 0);
3586 r
= VT_SYM
| VT_CONST
;
3590 vset(&s
->type
, r
, s
->c
);
3591 /* if forward reference, we must point to s */
3592 if (vtop
->r
& VT_SYM
) {
3599 /* post operations */
3601 if (tok
== TOK_INC
|| tok
== TOK_DEC
) {
3604 } else if (tok
== '.' || tok
== TOK_ARROW
) {
3607 if (tok
== TOK_ARROW
)
3609 qualifiers
= vtop
->type
.t
& (VT_CONSTANT
| VT_VOLATILE
);
3613 /* expect pointer on structure */
3614 if ((vtop
->type
.t
& VT_BTYPE
) != VT_STRUCT
)
3615 expect("struct or union");
3619 while ((s
= s
->next
) != NULL
) {
3624 error("field not found: %s", get_tok_str(tok
& ~SYM_FIELD
, NULL
));
3625 /* add field offset to pointer */
3626 vtop
->type
= char_pointer_type
; /* change type to 'char *' */
3629 /* change type to field type, and set to lvalue */
3630 vtop
->type
= s
->type
;
3631 vtop
->type
.t
|= qualifiers
;
3632 /* an array is never an lvalue */
3633 if (!(vtop
->type
.t
& VT_ARRAY
)) {
3634 vtop
->r
|= lvalue_type(vtop
->type
.t
);
3635 #ifdef CONFIG_TCC_BCHECK
3636 /* if bound checking, the referenced pointer must be checked */
3637 if (tcc_state
->do_bounds_check
)
3638 vtop
->r
|= VT_MUSTBOUND
;
3642 } else if (tok
== '[') {
3648 } else if (tok
== '(') {
3654 if ((vtop
->type
.t
& VT_BTYPE
) != VT_FUNC
) {
3655 /* pointer test (no array accepted) */
3656 if ((vtop
->type
.t
& (VT_BTYPE
| VT_ARRAY
)) == VT_PTR
) {
3657 vtop
->type
= *pointed_type(&vtop
->type
);
3658 if ((vtop
->type
.t
& VT_BTYPE
) != VT_FUNC
)
3662 expect("function pointer");
3665 vtop
->r
&= ~VT_LVAL
; /* no lvalue */
3667 /* get return type */
3670 sa
= s
->next
; /* first parameter */
3673 /* compute first implicit argument if a structure is returned */
3674 if ((s
->type
.t
& VT_BTYPE
) == VT_STRUCT
) {
3675 /* get some space for the returned structure */
3676 size
= type_size(&s
->type
, &align
);
3677 loc
= (loc
- size
) & -align
;
3679 ret
.r
= VT_LOCAL
| VT_LVAL
;
3680 /* pass it as 'int' to avoid structure arg passing
3682 vseti(VT_LOCAL
, loc
);
3687 /* return in register */
3688 if (is_float(ret
.type
.t
)) {
3689 ret
.r
= reg_fret(ret
.type
.t
);
3691 if ((ret
.type
.t
& VT_BTYPE
) == VT_LLONG
)
3700 gfunc_param_typed(s
, sa
);
3710 error("too few arguments to function");
3712 if (!nocode_wanted
) {
3713 gfunc_call(nb_args
);
3715 vtop
-= (nb_args
+ 1);
3718 vsetc(&ret
.type
, ret
.r
, &ret
.c
);
3726 static void uneq(void)
3732 (tok
>= TOK_A_MOD
&& tok
<= TOK_A_DIV
) ||
3733 tok
== TOK_A_XOR
|| tok
== TOK_A_OR
||
3734 tok
== TOK_A_SHL
|| tok
== TOK_A_SAR
) {
3749 ST_FUNC
void expr_prod(void)
3754 while (tok
== '*' || tok
== '/' || tok
== '%') {
3762 ST_FUNC
void expr_sum(void)
3767 while (tok
== '+' || tok
== '-') {
3775 static void expr_shift(void)
3780 while (tok
== TOK_SHL
|| tok
== TOK_SAR
) {
3788 static void expr_cmp(void)
3793 while ((tok
>= TOK_ULE
&& tok
<= TOK_GT
) ||
3794 tok
== TOK_ULT
|| tok
== TOK_UGE
) {
3802 static void expr_cmpeq(void)
3807 while (tok
== TOK_EQ
|| tok
== TOK_NE
) {
3815 static void expr_and(void)
3818 while (tok
== '&') {
3825 static void expr_xor(void)
3828 while (tok
== '^') {
3835 static void expr_or(void)
3838 while (tok
== '|') {
3845 /* XXX: fix this mess */
3846 static void expr_land_const(void)
3849 while (tok
== TOK_LAND
) {
3856 /* XXX: fix this mess */
3857 static void expr_lor_const(void)
3860 while (tok
== TOK_LOR
) {
3867 /* only used if non constant */
3868 static void expr_land(void)
3873 if (tok
== TOK_LAND
) {
3878 if (tok
!= TOK_LAND
) {
3888 static void expr_lor(void)
3893 if (tok
== TOK_LOR
) {
3898 if (tok
!= TOK_LOR
) {
3908 /* XXX: better constant handling */
3909 static void expr_eq(void)
3911 int tt
, u
, r1
, r2
, rc
, t1
, t2
, bt1
, bt2
;
3913 CType type
, type1
, type2
;
3920 boolean
.t
= VT_BOOL
;
3926 if (tok
!= ':' || !gnu_ext
) {
3941 if (vtop
!= vstack
) {
3942 /* needed to avoid having different registers saved in
3944 if (is_float(vtop
->type
.t
)) {
3946 #ifdef TCC_TARGET_X86_64
3947 if ((vtop
->type
.t
& VT_BTYPE
) == VT_LDOUBLE
) {
3957 if (tok
== ':' && gnu_ext
) {
3965 sv
= *vtop
; /* save value to handle it later */
3966 vtop
--; /* no vpop so that FP stack is not flushed */
3974 bt1
= t1
& VT_BTYPE
;
3976 bt2
= t2
& VT_BTYPE
;
3977 /* cast operands to correct type according to ISOC rules */
3978 if (is_float(bt1
) || is_float(bt2
)) {
3979 if (bt1
== VT_LDOUBLE
|| bt2
== VT_LDOUBLE
) {
3980 type
.t
= VT_LDOUBLE
;
3981 } else if (bt1
== VT_DOUBLE
|| bt2
== VT_DOUBLE
) {
3986 } else if (bt1
== VT_LLONG
|| bt2
== VT_LLONG
) {
3987 /* cast to biggest op */
3989 /* convert to unsigned if it does not fit in a long long */
3990 if ((t1
& (VT_BTYPE
| VT_UNSIGNED
)) == (VT_LLONG
| VT_UNSIGNED
) ||
3991 (t2
& (VT_BTYPE
| VT_UNSIGNED
)) == (VT_LLONG
| VT_UNSIGNED
))
3992 type
.t
|= VT_UNSIGNED
;
3993 } else if (bt1
== VT_PTR
|| bt2
== VT_PTR
) {
3994 /* XXX: test pointer compatibility */
3996 } else if (bt1
== VT_FUNC
|| bt2
== VT_FUNC
) {
3997 /* XXX: test function pointer compatibility */
3999 } else if (bt1
== VT_STRUCT
|| bt2
== VT_STRUCT
) {
4000 /* XXX: test structure compatibility */
4002 } else if (bt1
== VT_VOID
|| bt2
== VT_VOID
) {
4003 /* NOTE: as an extension, we accept void on only one side */
4006 /* integer operations */
4008 /* convert to unsigned if it does not fit in an integer */
4009 if ((t1
& (VT_BTYPE
| VT_UNSIGNED
)) == (VT_INT
| VT_UNSIGNED
) ||
4010 (t2
& (VT_BTYPE
| VT_UNSIGNED
)) == (VT_INT
| VT_UNSIGNED
))
4011 type
.t
|= VT_UNSIGNED
;
4014 /* now we convert second operand */
4016 if (VT_STRUCT
== (vtop
->type
.t
& VT_BTYPE
))
4019 if (is_float(type
.t
)) {
4021 #ifdef TCC_TARGET_X86_64
4022 if ((type
.t
& VT_BTYPE
) == VT_LDOUBLE
) {
4026 } else if ((type
.t
& VT_BTYPE
) == VT_LLONG
) {
4027 /* for long longs, we use fixed registers to avoid having
4028 to handle a complicated move */
4033 /* this is horrible, but we must also convert first
4037 /* put again first value and cast it */
4040 if (VT_STRUCT
== (vtop
->type
.t
& VT_BTYPE
))
4050 ST_FUNC
void gexpr(void)
4061 /* parse an expression and return its type without any side effect. */
4062 static void expr_type(CType
*type
)
4064 int saved_nocode_wanted
;
4066 saved_nocode_wanted
= nocode_wanted
;
4071 nocode_wanted
= saved_nocode_wanted
;
4074 /* parse a unary expression and return its type without any side
4076 static void unary_type(CType
*type
)
4088 /* parse a constant expression and return value in vtop. */
4089 static void expr_const1(void)
4098 /* parse an integer constant and return its value. */
4099 ST_FUNC
int expr_const(void)
4103 if ((vtop
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) != VT_CONST
)
4104 expect("constant expression");
4110 /* return the label token if current token is a label, otherwise
4112 static int is_label(void)
4116 /* fast test first */
4117 if (tok
< TOK_UIDENT
)
4119 /* no need to save tokc because tok is an identifier */
4126 unget_tok(last_tok
);
4131 static void block(int *bsym
, int *csym
, int *case_sym
, int *def_sym
,
4132 int case_reg
, int is_expr
)
4137 /* generate line number info */
4138 if (tcc_state
->do_debug
&&
4139 (last_line_num
!= file
->line_num
|| last_ind
!= ind
)) {
4140 put_stabn(N_SLINE
, 0, file
->line_num
, ind
- func_ind
);
4142 last_line_num
= file
->line_num
;
4146 /* default return value is (void) */
4148 vtop
->type
.t
= VT_VOID
;
4151 if (tok
== TOK_IF
) {
4158 block(bsym
, csym
, case_sym
, def_sym
, case_reg
, 0);
4160 if (c
== TOK_ELSE
) {
4164 block(bsym
, csym
, case_sym
, def_sym
, case_reg
, 0);
4165 gsym(d
); /* patch else jmp */
4168 } else if (tok
== TOK_WHILE
) {
4176 block(&a
, &b
, case_sym
, def_sym
, case_reg
, 0);
4180 } else if (tok
== '{') {
4184 /* record local declaration stack position */
4186 llabel
= local_label_stack
;
4187 /* handle local labels declarations */
4188 if (tok
== TOK_LABEL
) {
4191 if (tok
< TOK_UIDENT
)
4192 expect("label identifier");
4193 label_push(&local_label_stack
, tok
, LABEL_DECLARED
);
4203 while (tok
!= '}') {
4208 block(bsym
, csym
, case_sym
, def_sym
, case_reg
, is_expr
);
4211 /* pop locally defined labels */
4212 label_pop(&local_label_stack
, llabel
);
4213 /* pop locally defined symbols */
4215 /* XXX: this solution makes only valgrind happy...
4216 triggered by gcc.c-torture/execute/20000917-1.c */
4218 switch(vtop
->type
.t
& VT_BTYPE
) {
4223 for(p
=vtop
->type
.ref
;p
;p
=p
->prev
)
4225 error("unsupported expression type");
4228 sym_pop(&local_stack
, s
);
4230 } else if (tok
== TOK_RETURN
) {
4234 gen_assign_cast(&func_vt
);
4235 if ((func_vt
.t
& VT_BTYPE
) == VT_STRUCT
) {
4237 /* if returning structure, must copy it to implicit
4238 first pointer arg location */
4241 size
= type_size(&func_vt
,&align
);
4244 if((vtop
->r
!= (VT_LOCAL
| VT_LVAL
) || (vtop
->c
.i
& 3))
4248 loc
= (loc
- size
) & -4;
4251 vset(&type
, VT_LOCAL
| VT_LVAL
, addr
);
4254 vset(&int_type
, VT_LOCAL
| VT_LVAL
, addr
);
4256 vtop
->type
= int_type
;
4262 vset(&type
, VT_LOCAL
| VT_LVAL
, func_vc
);
4265 /* copy structure value to pointer */
4270 } else if (is_float(func_vt
.t
)) {
4271 gv(rc_fret(func_vt
.t
));
4275 vtop
--; /* NOT vpop() because on x86 it would flush the fp stack */
4278 rsym
= gjmp(rsym
); /* jmp */
4279 } else if (tok
== TOK_BREAK
) {
4282 error("cannot break");
4283 *bsym
= gjmp(*bsym
);
4286 } else if (tok
== TOK_CONTINUE
) {
4289 error("cannot continue");
4290 *csym
= gjmp(*csym
);
4293 } else if (tok
== TOK_FOR
) {
4294 int e
, c99_for_decl
= 0;
4298 if (tok
< TOK_UIDENT
) {
4299 // handle C99 for loop construct
4302 /* record local declaration stack position */
4334 block(&a
, &b
, case_sym
, def_sym
, case_reg
, 0);
4340 /* pop locally defined symbols */
4342 /* XXX: this solution makes only valgrind happy...
4343 triggered by gcc.c-torture/execute/20000917-1.c */
4345 switch(vtop
->type
.t
& VT_BTYPE
) {
4350 for(p
=vtop
->type
.ref
;p
;p
=p
->prev
)
4352 error("unsupported expression type");
4355 sym_pop(&local_stack
, s
);
4358 if (tok
== TOK_DO
) {
4363 block(&a
, &b
, case_sym
, def_sym
, case_reg
, 0);
4374 if (tok
== TOK_SWITCH
) {
4378 /* XXX: other types than integer */
4379 case_reg
= gv(RC_INT
);
4383 b
= gjmp(0); /* jump to first case */
4385 block(&a
, csym
, &b
, &c
, case_reg
, 0);
4386 /* if no default, jmp after switch */
4394 if (tok
== TOK_CASE
) {
4401 if (gnu_ext
&& tok
== TOK_DOTS
) {
4405 warning("empty case range");
4407 /* since a case is like a label, we must skip it with a jmp */
4414 *case_sym
= gtst(1, 0);
4417 *case_sym
= gtst(1, 0);
4421 *case_sym
= gtst(1, *case_sym
);
4426 goto block_after_label
;
4428 if (tok
== TOK_DEFAULT
) {
4434 error("too many 'default'");
4437 goto block_after_label
;
4439 if (tok
== TOK_GOTO
) {
4441 if (tok
== '*' && gnu_ext
) {
4445 if ((vtop
->type
.t
& VT_BTYPE
) != VT_PTR
)
4448 } else if (tok
>= TOK_UIDENT
) {
4449 s
= label_find(tok
);
4450 /* put forward definition if needed */
4452 s
= label_push(&global_label_stack
, tok
, LABEL_FORWARD
);
4454 if (s
->r
== LABEL_DECLARED
)
4455 s
->r
= LABEL_FORWARD
;
4457 /* label already defined */
4458 if (s
->r
& LABEL_FORWARD
)
4459 s
->jnext
= gjmp(s
->jnext
);
4461 gjmp_addr(s
->jnext
);
4464 expect("label identifier");
4467 } else if (tok
== TOK_ASM1
|| tok
== TOK_ASM2
|| tok
== TOK_ASM3
) {
4475 if (s
->r
== LABEL_DEFINED
)
4476 error("duplicate label '%s'", get_tok_str(s
->v
, NULL
));
4478 s
->r
= LABEL_DEFINED
;
4480 s
= label_push(&global_label_stack
, b
, LABEL_DEFINED
);
4483 /* we accept this, but it is a mistake */
4486 warning("deprecated use of label at end of compound statement");
4490 block(bsym
, csym
, case_sym
, def_sym
, case_reg
, is_expr
);
4493 /* expression case */
4508 /* t is the array or struct type. c is the array or struct
4509 address. cur_index/cur_field is the pointer to the current
4510 value. 'size_only' is true if only size info is needed (only used
4512 static void decl_designator(CType
*type
, Section
*sec
, unsigned long c
,
4513 int *cur_index
, Sym
**cur_field
,
4517 int notfirst
, index
, index_last
, align
, l
, nb_elems
, elem_size
;
4523 if (gnu_ext
&& (l
= is_label()) != 0)
4525 while (tok
== '[' || tok
== '.') {
4527 if (!(type
->t
& VT_ARRAY
))
4528 expect("array type");
4531 index
= expr_const();
4532 if (index
< 0 || (s
->c
>= 0 && index
>= s
->c
))
4533 expect("invalid index");
4534 if (tok
== TOK_DOTS
&& gnu_ext
) {
4536 index_last
= expr_const();
4537 if (index_last
< 0 ||
4538 (s
->c
>= 0 && index_last
>= s
->c
) ||
4540 expect("invalid index");
4546 *cur_index
= index_last
;
4547 type
= pointed_type(type
);
4548 elem_size
= type_size(type
, &align
);
4549 c
+= index
* elem_size
;
4550 /* NOTE: we only support ranges for last designator */
4551 nb_elems
= index_last
- index
+ 1;
4552 if (nb_elems
!= 1) {
4561 if ((type
->t
& VT_BTYPE
) != VT_STRUCT
)
4562 expect("struct/union type");
4575 /* XXX: fix this mess by using explicit storage field */
4577 type1
.t
|= (type
->t
& ~VT_TYPE
);
4591 if (type
->t
& VT_ARRAY
) {
4593 type
= pointed_type(type
);
4594 c
+= index
* type_size(type
, &align
);
4598 error("too many field init");
4599 /* XXX: fix this mess by using explicit storage field */
4601 type1
.t
|= (type
->t
& ~VT_TYPE
);
4606 decl_initializer(type
, sec
, c
, 0, size_only
);
4608 /* XXX: make it more general */
4609 if (!size_only
&& nb_elems
> 1) {
4610 unsigned long c_end
;
4615 error("range init not supported yet for dynamic storage");
4616 c_end
= c
+ nb_elems
* elem_size
;
4617 if (c_end
> sec
->data_allocated
)
4618 section_realloc(sec
, c_end
);
4619 src
= sec
->data
+ c
;
4621 for(i
= 1; i
< nb_elems
; i
++) {
4623 memcpy(dst
, src
, elem_size
);
4629 #define EXPR_CONST 1
4632 /* store a value or an expression directly in global data or in local array */
4633 static void init_putv(CType
*type
, Section
*sec
, unsigned long c
,
4634 int v
, int expr_type
)
4636 int saved_global_expr
, bt
, bit_pos
, bit_size
;
4638 unsigned long long bit_mask
;
4646 /* compound literals must be allocated globally in this case */
4647 saved_global_expr
= global_expr
;
4650 global_expr
= saved_global_expr
;
4651 /* NOTE: symbols are accepted */
4652 if ((vtop
->r
& (VT_VALMASK
| VT_LVAL
)) != VT_CONST
)
4653 error("initializer element is not constant");
4661 dtype
.t
&= ~VT_CONSTANT
; /* need to do that to avoid false warning */
4664 /* XXX: not portable */
4665 /* XXX: generate error if incorrect relocation */
4666 gen_assign_cast(&dtype
);
4667 bt
= type
->t
& VT_BTYPE
;
4668 /* we'll write at most 12 bytes */
4669 if (c
+ 12 > sec
->data_allocated
) {
4670 section_realloc(sec
, c
+ 12);
4672 ptr
= sec
->data
+ c
;
4673 /* XXX: make code faster ? */
4674 if (!(type
->t
& VT_BITFIELD
)) {
4679 bit_pos
= (vtop
->type
.t
>> VT_STRUCT_SHIFT
) & 0x3f;
4680 bit_size
= (vtop
->type
.t
>> (VT_STRUCT_SHIFT
+ 6)) & 0x3f;
4681 bit_mask
= (1LL << bit_size
) - 1;
4683 if ((vtop
->r
& VT_SYM
) &&
4689 (bt
== VT_INT
&& bit_size
!= 32)))
4690 error("initializer element is not computable at load time");
4693 vtop
->c
.i
= (vtop
->c
.i
!= 0);
4695 *(char *)ptr
|= (vtop
->c
.i
& bit_mask
) << bit_pos
;
4698 *(short *)ptr
|= (vtop
->c
.i
& bit_mask
) << bit_pos
;
4701 *(double *)ptr
= vtop
->c
.d
;
4704 *(long double *)ptr
= vtop
->c
.ld
;
4707 *(long long *)ptr
|= (vtop
->c
.ll
& bit_mask
) << bit_pos
;
4710 if (vtop
->r
& VT_SYM
) {
4711 greloc(sec
, vtop
->sym
, c
, R_DATA_PTR
);
4713 *(int *)ptr
|= (vtop
->c
.i
& bit_mask
) << bit_pos
;
4718 vset(&dtype
, VT_LOCAL
|VT_LVAL
, c
);
4725 /* put zeros for variable based init */
4726 static void init_putz(CType
*t
, Section
*sec
, unsigned long c
, int size
)
4729 /* nothing to do because globals are already set to zero */
4731 vpush_global_sym(&func_old_type
, TOK_memset
);
4739 /* 't' contains the type and storage info. 'c' is the offset of the
4740 object in section 'sec'. If 'sec' is NULL, it means stack based
4741 allocation. 'first' is true if array '{' must be read (multi
4742 dimension implicit array init handling). 'size_only' is true if
4743 size only evaluation is wanted (only for arrays). */
4744 static void decl_initializer(CType
*type
, Section
*sec
, unsigned long c
,
4745 int first
, int size_only
)
4747 int index
, array_length
, n
, no_oblock
, nb
, parlevel
, i
;
4748 int size1
, align1
, expr_type
;
4752 if (type
->t
& VT_ARRAY
) {
4756 t1
= pointed_type(type
);
4757 size1
= type_size(t1
, &align1
);
4760 if ((first
&& tok
!= TOK_LSTR
&& tok
!= TOK_STR
) ||
4763 error("character array initializer must be a literal,"
4764 " optionally enclosed in braces");
4769 /* only parse strings here if correct type (otherwise: handle
4770 them as ((w)char *) expressions */
4771 if ((tok
== TOK_LSTR
&&
4772 #ifdef TCC_TARGET_PE
4773 (t1
->t
& VT_BTYPE
) == VT_SHORT
&& (t1
->t
& VT_UNSIGNED
)
4775 (t1
->t
& VT_BTYPE
) == VT_INT
4777 ) || (tok
== TOK_STR
&& (t1
->t
& VT_BTYPE
) == VT_BYTE
)) {
4778 while (tok
== TOK_STR
|| tok
== TOK_LSTR
) {
4783 /* compute maximum number of chars wanted */
4785 cstr_len
= cstr
->size
;
4787 cstr_len
= cstr
->size
/ sizeof(nwchar_t
);
4790 if (n
>= 0 && nb
> (n
- array_length
))
4791 nb
= n
- array_length
;
4794 warning("initializer-string for array is too long");
4795 /* in order to go faster for common case (char
4796 string in global variable, we handle it
4798 if (sec
&& tok
== TOK_STR
&& size1
== 1) {
4799 memcpy(sec
->data
+ c
+ array_length
, cstr
->data
, nb
);
4803 ch
= ((unsigned char *)cstr
->data
)[i
];
4805 ch
= ((nwchar_t
*)cstr
->data
)[i
];
4806 init_putv(t1
, sec
, c
+ (array_length
+ i
) * size1
,
4814 /* only add trailing zero if enough storage (no
4815 warning in this case since it is standard) */
4816 if (n
< 0 || array_length
< n
) {
4818 init_putv(t1
, sec
, c
+ (array_length
* size1
), 0, EXPR_VAL
);
4824 while (tok
!= '}') {
4825 decl_designator(type
, sec
, c
, &index
, NULL
, size_only
);
4826 if (n
>= 0 && index
>= n
)
4827 error("index too large");
4828 /* must put zero in holes (note that doing it that way
4829 ensures that it even works with designators) */
4830 if (!size_only
&& array_length
< index
) {
4831 init_putz(t1
, sec
, c
+ array_length
* size1
,
4832 (index
- array_length
) * size1
);
4835 if (index
> array_length
)
4836 array_length
= index
;
4837 /* special test for multi dimensional arrays (may not
4838 be strictly correct if designators are used at the
4840 if (index
>= n
&& no_oblock
)
4849 /* put zeros at the end */
4850 if (!size_only
&& n
>= 0 && array_length
< n
) {
4851 init_putz(t1
, sec
, c
+ array_length
* size1
,
4852 (n
- array_length
) * size1
);
4854 /* patch type size if needed */
4856 s
->c
= array_length
;
4857 } else if ((type
->t
& VT_BTYPE
) == VT_STRUCT
&&
4858 (sec
|| !first
|| tok
== '{')) {
4861 /* NOTE: the previous test is a specific case for automatic
4862 struct/union init */
4863 /* XXX: union needs only one init */
4865 /* XXX: this test is incorrect for local initializers
4866 beginning with ( without {. It would be much more difficult
4867 to do it correctly (ideally, the expression parser should
4868 be used in all cases) */
4870 /* Coo: I think we must not deal '(' */
4875 while (tok
== '(') {
4879 if (!parse_btype(&type1
, &ad1
))
4881 type_decl(&type1
, &ad1
, &n
, TYPE_ABSTRACT
);
4883 if (!is_assignable_types(type
, &type1
))
4884 error("invalid type for cast");
4889 if (first
|| tok
== '{') {
4895 /* Coo: skip empty struct */
4896 while (f
->next
&& (f
->type
.t
&VT_BTYPE
)==VT_STRUCT
&& !f
->type
.ref
->c
)
4901 while (tok
!= '}') {
4903 decl_designator(type
, sec
, c
, NULL
, &f
, size_only
);
4905 if (!size_only
&& array_length
< index
) {
4906 init_putz(type
, sec
, c
+ array_length
,
4907 index
- array_length
);
4909 index
= index
+ type_size(&f
->type
, &align1
);
4910 if (index
> array_length
)
4911 array_length
= index
;
4913 /* Coo: skip fields from same union */
4914 if (!(f
->type
.t
&VT_BITFIELD
))
4917 bit_pos
=f
->c
*8+((f
->type
.t
>>VT_STRUCT_SHIFT
)&0x3f)+((f
->type
.t
>>(VT_STRUCT_SHIFT
+6))&0x3f);
4920 while (f
&& (((f
->type
.t
&VT_BTYPE
)==VT_STRUCT
&& !f
->type
.ref
->c
) ||
4921 f
->c
*8+((f
->type
.t
&VT_BITFIELD
)?((f
->type
.t
>>VT_STRUCT_SHIFT
)&0x3f):0)<bit_pos
));
4923 if (no_oblock
&& f
== NULL
)
4927 /* Coo: skip ')' in front of ',' for initializer */
4928 while (tok
==')' && par_count
) {
4934 /* put zeros at the end */
4935 if (!size_only
&& array_length
< n
) {
4936 init_putz(type
, sec
, c
+ array_length
,
4945 } else if (tok
== '{') {
4947 decl_initializer(type
, sec
, c
, first
, size_only
);
4949 } else if (size_only
) {
4950 /* just skip expression */
4952 while ((parlevel
> 0 || (tok
!= '}' && tok
!= ',')) &&
4956 else if (tok
== ')')
4961 /* currently, we always use constant expression for globals
4962 (may change for scripting case) */
4963 expr_type
= EXPR_CONST
;
4965 expr_type
= EXPR_ANY
;
4966 init_putv(type
, sec
, c
, 0, expr_type
);
4970 /* parse an initializer for type 't' if 'has_init' is non zero, and
4971 allocate space in local or global data space ('r' is either
4972 VT_LOCAL or VT_CONST). If 'v' is non zero, then an associated
4973 variable 'v' of scope 'scope' is declared before initializers are
4974 parsed. If 'v' is zero, then a reference to the new object is put
4975 in the value stack. If 'has_init' is 2, a special parsing is done
4976 to handle string constants. */
4977 static void decl_initializer_alloc(CType
*type
, AttributeDef
*ad
, int r
,
4978 int has_init
, int v
, int scope
)
4980 int size
, align
, addr
, data_offset
;
4982 ParseState saved_parse_state
= {0};
4983 TokenString init_str
;
4986 size
= type_size(type
, &align
);
4987 /* If unknown size, we must evaluate it before
4988 evaluating initializers because
4989 initializers can generate global data too
4990 (e.g. string pointers or ISOC99 compound
4991 literals). It also simplifies local
4992 initializers handling */
4993 tok_str_new(&init_str
);
4996 error("unknown type size");
4997 /* get all init string */
4998 if (has_init
== 2) {
4999 /* only get strings */
5000 while (tok
== TOK_STR
|| tok
== TOK_LSTR
) {
5001 tok_str_add_tok(&init_str
);
5006 while (level
> 0 || (tok
!= ',' && tok
!= ';')) {
5008 error("unexpected end of file in initializer");
5009 tok_str_add_tok(&init_str
);
5012 else if (tok
== '}') {
5022 tok_str_add(&init_str
, -1);
5023 tok_str_add(&init_str
, 0);
5026 save_parse_state(&saved_parse_state
);
5028 macro_ptr
= init_str
.str
;
5030 decl_initializer(type
, NULL
, 0, 1, 1);
5031 /* prepare second initializer parsing */
5032 macro_ptr
= init_str
.str
;
5035 /* if still unknown size, error */
5036 size
= type_size(type
, &align
);
5038 error("unknown type size");
5040 /* take into account specified alignment if bigger */
5042 if (ad
->aligned
> align
)
5043 align
= ad
->aligned
;
5044 } else if (ad
->packed
) {
5047 if ((r
& VT_VALMASK
) == VT_LOCAL
) {
5049 #ifdef CONFIG_TCC_BCHECK
5050 if (tcc_state
->do_bounds_check
&& (type
->t
& VT_ARRAY
))
5053 loc
= (loc
- size
) & -align
;
5055 #ifdef CONFIG_TCC_BCHECK
5056 /* handles bounds */
5057 /* XXX: currently, since we do only one pass, we cannot track
5058 '&' operators, so we add only arrays */
5059 if (tcc_state
->do_bounds_check
&& (type
->t
& VT_ARRAY
)) {
5060 unsigned long *bounds_ptr
;
5061 /* add padding between regions */
5063 /* then add local bound info */
5064 bounds_ptr
= section_ptr_add(lbounds_section
, 2 * sizeof(unsigned long));
5065 bounds_ptr
[0] = addr
;
5066 bounds_ptr
[1] = size
;
5070 /* local variable */
5071 sym_push(v
, type
, r
, addr
);
5073 /* push local reference */
5074 vset(type
, r
, addr
);
5080 if (v
&& scope
== VT_CONST
) {
5081 /* see if the symbol was already defined */
5084 if (!is_compatible_types(&sym
->type
, type
))
5085 error("incompatible types for redefinition of '%s'",
5086 get_tok_str(v
, NULL
));
5087 if (sym
->type
.t
& VT_EXTERN
) {
5088 /* if the variable is extern, it was not allocated */
5089 sym
->type
.t
&= ~VT_EXTERN
;
5090 /* set array size if it was ommited in extern
5092 if ((sym
->type
.t
& VT_ARRAY
) &&
5093 sym
->type
.ref
->c
< 0 &&
5095 sym
->type
.ref
->c
= type
->ref
->c
;
5097 /* we accept several definitions of the same
5098 global variable. this is tricky, because we
5099 must play with the SHN_COMMON type of the symbol */
5100 /* XXX: should check if the variable was already
5101 initialized. It is incorrect to initialized it
5103 /* no init data, we won't add more to the symbol */
5110 /* allocate symbol in corresponding section */
5115 else if (tcc_state
->nocommon
)
5119 data_offset
= sec
->data_offset
;
5120 data_offset
= (data_offset
+ align
- 1) & -align
;
5122 /* very important to increment global pointer at this time
5123 because initializers themselves can create new initializers */
5124 data_offset
+= size
;
5125 #ifdef CONFIG_TCC_BCHECK
5126 /* add padding if bound check */
5127 if (tcc_state
->do_bounds_check
)
5130 sec
->data_offset
= data_offset
;
5131 /* allocate section space to put the data */
5132 if (sec
->sh_type
!= SHT_NOBITS
&&
5133 data_offset
> sec
->data_allocated
)
5134 section_realloc(sec
, data_offset
);
5135 /* align section if needed */
5136 if (align
> sec
->sh_addralign
)
5137 sec
->sh_addralign
= align
;
5139 addr
= 0; /* avoid warning */
5143 if (scope
!= VT_CONST
|| !sym
) {
5144 sym
= sym_push(v
, type
, r
| VT_SYM
, 0);
5146 /* update symbol definition */
5148 put_extern_sym(sym
, sec
, addr
, size
);
5151 /* put a common area */
5152 put_extern_sym(sym
, NULL
, align
, size
);
5153 /* XXX: find a nicer way */
5154 esym
= &((ElfW(Sym
) *)symtab_section
->data
)[sym
->c
];
5155 esym
->st_shndx
= SHN_COMMON
;
5160 /* push global reference */
5161 sym
= get_sym_ref(type
, sec
, addr
, size
);
5163 vsetc(type
, VT_CONST
| VT_SYM
, &cval
);
5166 #ifdef CONFIG_TCC_BCHECK
5167 /* handles bounds now because the symbol must be defined
5168 before for the relocation */
5169 if (tcc_state
->do_bounds_check
) {
5170 unsigned long *bounds_ptr
;
5172 greloc(bounds_section
, sym
, bounds_section
->data_offset
, R_DATA_PTR
);
5173 /* then add global bound info */
5174 bounds_ptr
= section_ptr_add(bounds_section
, 2 * sizeof(long));
5175 bounds_ptr
[0] = 0; /* relocated */
5176 bounds_ptr
[1] = size
;
5181 decl_initializer(type
, sec
, addr
, 1, 0);
5182 /* restore parse state if needed */
5184 tok_str_free(init_str
.str
);
5185 restore_parse_state(&saved_parse_state
);
5191 static void put_func_debug(Sym
*sym
)
5196 /* XXX: we put here a dummy type */
5197 snprintf(buf
, sizeof(buf
), "%s:%c1",
5198 funcname
, sym
->type
.t
& VT_STATIC
? 'f' : 'F');
5199 put_stabs_r(buf
, N_FUN
, 0, file
->line_num
, 0,
5200 cur_text_section
, sym
->c
);
5201 /* //gr gdb wants a line at the function */
5202 put_stabn(N_SLINE
, 0, file
->line_num
, 0);
5207 /* parse an old style function declaration list */
5208 /* XXX: check multiple parameter */
5209 static void func_decl_list(Sym
*func_sym
)
5216 /* parse each declaration */
5217 while (tok
!= '{' && tok
!= ';' && tok
!= ',' && tok
!= TOK_EOF
) {
5218 if (!parse_btype(&btype
, &ad
))
5219 expect("declaration list");
5220 if (((btype
.t
& VT_BTYPE
) == VT_ENUM
||
5221 (btype
.t
& VT_BTYPE
) == VT_STRUCT
) &&
5223 /* we accept no variable after */
5227 type_decl(&type
, &ad
, &v
, TYPE_DIRECT
);
5228 /* find parameter in function parameter list */
5231 if ((s
->v
& ~SYM_FIELD
) == v
)
5235 error("declaration for parameter '%s' but no such parameter",
5236 get_tok_str(v
, NULL
));
5238 /* check that no storage specifier except 'register' was given */
5239 if (type
.t
& VT_STORAGE
)
5240 error("storage class specified for '%s'", get_tok_str(v
, NULL
));
5241 convert_parameter_type(&type
);
5242 /* we can add the type (NOTE: it could be local to the function) */
5244 /* accept other parameters */
5255 /* parse a function defined by symbol 'sym' and generate its code in
5256 'cur_text_section' */
5257 static void gen_function(Sym
*sym
)
5259 int saved_nocode_wanted
= nocode_wanted
;
5261 ind
= cur_text_section
->data_offset
;
5262 /* NOTE: we patch the symbol size later */
5263 put_extern_sym(sym
, cur_text_section
, ind
, 0);
5264 funcname
= get_tok_str(sym
->v
, NULL
);
5266 /* put debug symbol */
5267 if (tcc_state
->do_debug
)
5268 put_func_debug(sym
);
5269 /* push a dummy symbol to enable local sym storage */
5270 sym_push2(&local_stack
, SYM_FIELD
, 0, 0);
5271 gfunc_prolog(&sym
->type
);
5273 block(NULL
, NULL
, NULL
, NULL
, 0, 0);
5276 cur_text_section
->data_offset
= ind
;
5277 label_pop(&global_label_stack
, NULL
);
5278 sym_pop(&local_stack
, NULL
); /* reset local stack */
5279 /* end of function */
5280 /* patch symbol size */
5281 ((ElfW(Sym
) *)symtab_section
->data
)[sym
->c
].st_size
=
5283 if (tcc_state
->do_debug
) {
5284 put_stabn(N_FUN
, 0, 0, ind
- func_ind
);
5286 /* It's better to crash than to generate wrong code */
5287 cur_text_section
= NULL
;
5288 funcname
= ""; /* for safety */
5289 func_vt
.t
= VT_VOID
; /* for safety */
5290 ind
= 0; /* for safety */
5291 nocode_wanted
= saved_nocode_wanted
;
5294 ST_FUNC
void gen_inline_functions(void)
5297 int *str
, inline_generated
, i
;
5298 struct InlineFunc
*fn
;
5300 /* iterate while inline function are referenced */
5302 inline_generated
= 0;
5303 for (i
= 0; i
< tcc_state
->nb_inline_fns
; ++i
) {
5304 fn
= tcc_state
->inline_fns
[i
];
5306 if (sym
&& sym
->c
) {
5307 /* the function was used: generate its code and
5308 convert it to a normal function */
5309 str
= fn
->token_str
;
5312 strcpy(file
->filename
, fn
->filename
);
5313 sym
->r
= VT_SYM
| VT_CONST
;
5314 sym
->type
.t
&= ~VT_INLINE
;
5318 cur_text_section
= text_section
;
5320 macro_ptr
= NULL
; /* fail safe */
5322 inline_generated
= 1;
5325 if (!inline_generated
)
5328 for (i
= 0; i
< tcc_state
->nb_inline_fns
; ++i
) {
5329 fn
= tcc_state
->inline_fns
[i
];
5330 str
= fn
->token_str
;
5333 dynarray_reset(&tcc_state
->inline_fns
, &tcc_state
->nb_inline_fns
);
5336 /* 'l' is VT_LOCAL or VT_CONST to define default storage type */
5337 ST_FUNC
void decl(int l
)
5345 if (!parse_btype(&btype
, &ad
)) {
5346 /* skip redundant ';' */
5347 /* XXX: find more elegant solution */
5352 if (l
== VT_CONST
&&
5353 (tok
== TOK_ASM1
|| tok
== TOK_ASM2
|| tok
== TOK_ASM3
)) {
5354 /* global asm block */
5358 /* special test for old K&R protos without explicit int
5359 type. Only accepted when defining global data */
5360 if (l
== VT_LOCAL
|| tok
< TOK_DEFINE
)
5364 if (((btype
.t
& VT_BTYPE
) == VT_ENUM
||
5365 (btype
.t
& VT_BTYPE
) == VT_STRUCT
) &&
5367 /* we accept no variable after */
5371 while (1) { /* iterate thru each declaration */
5373 type_decl(&type
, &ad
, &v
, TYPE_DIRECT
);
5377 type_to_str(buf
, sizeof(buf
), t
, get_tok_str(v
, NULL
));
5378 printf("type = '%s'\n", buf
);
5381 if ((type
.t
& VT_BTYPE
) == VT_FUNC
) {
5382 /* if old style function prototype, we accept a
5385 if (sym
->c
== FUNC_OLD
)
5386 func_decl_list(sym
);
5389 #ifdef TCC_TARGET_PE
5391 type
.t
|= VT_IMPORT
;
5393 type
.t
|= VT_EXPORT
;
5397 error("cannot use local functions");
5398 if ((type
.t
& VT_BTYPE
) != VT_FUNC
)
5399 expect("function definition");
5401 /* reject abstract declarators in function definition */
5403 while ((sym
= sym
->next
) != NULL
)
5404 if (!(sym
->v
& ~SYM_FIELD
))
5405 expect("identifier");
5407 /* XXX: cannot do better now: convert extern line to static inline */
5408 if ((type
.t
& (VT_EXTERN
| VT_INLINE
)) == (VT_EXTERN
| VT_INLINE
))
5409 type
.t
= (type
.t
& ~VT_EXTERN
) | VT_STATIC
;
5413 if ((sym
->type
.t
& VT_BTYPE
) != VT_FUNC
)
5416 r
= sym
->type
.ref
->r
;
5417 /* use func_call from prototype if not defined */
5418 if (FUNC_CALL(r
) != FUNC_CDECL
5419 && FUNC_CALL(type
.ref
->r
) == FUNC_CDECL
)
5420 FUNC_CALL(type
.ref
->r
) = FUNC_CALL(r
);
5422 /* use export from prototype */
5424 FUNC_EXPORT(type
.ref
->r
) = 1;
5426 /* use static from prototype */
5427 if (sym
->type
.t
& VT_STATIC
)
5428 type
.t
= (type
.t
& ~VT_EXTERN
) | VT_STATIC
;
5430 if (!is_compatible_types(&sym
->type
, &type
)) {
5432 error("incompatible types for redefinition of '%s'",
5433 get_tok_str(v
, NULL
));
5435 /* if symbol is already defined, then put complete type */
5438 /* put function symbol */
5439 sym
= global_identifier_push(v
, type
.t
, 0);
5440 sym
->type
.ref
= type
.ref
;
5443 /* static inline functions are just recorded as a kind
5444 of macro. Their code will be emitted at the end of
5445 the compilation unit only if they are used */
5446 if ((type
.t
& (VT_INLINE
| VT_STATIC
)) ==
5447 (VT_INLINE
| VT_STATIC
)) {
5448 TokenString func_str
;
5450 struct InlineFunc
*fn
;
5451 const char *filename
;
5453 tok_str_new(&func_str
);
5459 error("unexpected end of file");
5460 tok_str_add_tok(&func_str
);
5465 } else if (t
== '}') {
5467 if (block_level
== 0)
5471 tok_str_add(&func_str
, -1);
5472 tok_str_add(&func_str
, 0);
5473 filename
= file
? file
->filename
: "";
5474 fn
= tcc_malloc(sizeof *fn
+ strlen(filename
));
5475 strcpy(fn
->filename
, filename
);
5477 fn
->token_str
= func_str
.str
;
5478 dynarray_add((void ***)&tcc_state
->inline_fns
, &tcc_state
->nb_inline_fns
, fn
);
5481 /* compute text section */
5482 cur_text_section
= ad
.section
;
5483 if (!cur_text_section
)
5484 cur_text_section
= text_section
;
5485 sym
->r
= VT_SYM
| VT_CONST
;
5490 if (btype
.t
& VT_TYPEDEF
) {
5491 /* save typedefed type */
5492 /* XXX: test storage specifiers ? */
5493 sym
= sym_push(v
, &type
, INT_ATTR(&ad
), 0);
5494 sym
->type
.t
|= VT_TYPEDEF
;
5495 } else if ((type
.t
& VT_BTYPE
) == VT_FUNC
) {
5497 /* external function definition */
5498 /* specific case for func_call attribute */
5499 type
.ref
->r
= INT_ATTR(&ad
);
5500 fn
= external_sym(v
, &type
, 0);
5502 if (gnu_ext
&& (tok
== TOK_ASM1
|| tok
== TOK_ASM2
|| tok
== TOK_ASM3
)) {
5508 /* Part 1: __USER_LABEL_PREFIX__ (user defined) */
5510 pstrcat(target
, sizeof(target
), tokc
.cstr
->data
);
5512 pstrcat(target
, sizeof(target
), get_tok_str(tok
, NULL
));
5515 /* Part 2: api name */
5517 pstrcat(target
, sizeof(target
), tokc
.cstr
->data
);
5519 pstrcat(target
, sizeof(target
), get_tok_str(tok
, NULL
));
5523 if (tcc_state
->warn_unsupported
)
5524 warning("ignoring redirection from %s to %s\n", get_tok_str(v
, NULL
), target
);
5526 if (tok
== TOK_ATTRIBUTE1
|| tok
== TOK_ATTRIBUTE2
)
5527 parse_attribute((AttributeDef
*) &fn
->type
.ref
->r
);
5530 /* not lvalue if array */
5532 if (!(type
.t
& VT_ARRAY
))
5533 r
|= lvalue_type(type
.t
);
5534 has_init
= (tok
== '=');
5535 if ((btype
.t
& VT_EXTERN
) ||
5536 ((type
.t
& VT_ARRAY
) && (type
.t
& VT_STATIC
) &&
5537 !has_init
&& l
== VT_CONST
&& type
.ref
->c
< 0)) {
5538 /* external variable */
5539 /* NOTE: as GCC, uninitialized global static
5540 arrays of null size are considered as
5542 external_sym(v
, &type
, r
);
5544 type
.t
|= (btype
.t
& VT_STATIC
); /* Retain "static". */
5545 if (type
.t
& VT_STATIC
)
5551 decl_initializer_alloc(&type
, &ad
, r
, has_init
, v
, l
);