2 * TCC - Tiny C Compiler
4 * Copyright (c) 2001-2004 Fabrice Bellard
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 /********************************************************/
24 /* global variables */
26 /* loc : local variable index
27 ind : output code index
29 anon_sym: anonymous symbol index
31 ST_DATA
int rsym
, anon_sym
, ind
, loc
;
33 ST_DATA Section
*text_section
, *data_section
, *bss_section
; /* predefined sections */
34 ST_DATA Section
*cur_text_section
; /* current section where function code is generated */
36 ST_DATA Section
*last_text_section
; /* to handle .previous asm directive */
38 #ifdef CONFIG_TCC_BCHECK
39 /* bound check related sections */
40 ST_DATA Section
*bounds_section
; /* contains global data bound description */
41 ST_DATA Section
*lbounds_section
; /* contains local data bound description */
44 ST_DATA Section
*symtab_section
, *strtab_section
;
46 ST_DATA Section
*stab_section
, *stabstr_section
;
47 ST_DATA Sym
*sym_free_first
;
48 ST_DATA
void **sym_pools
;
49 ST_DATA
int nb_sym_pools
;
51 ST_DATA Sym
*global_stack
;
52 ST_DATA Sym
*local_stack
;
53 ST_DATA Sym
*define_stack
;
54 ST_DATA Sym
*global_label_stack
;
55 ST_DATA Sym
*local_label_stack
;
57 ST_DATA SValue vstack
[VSTACK_SIZE
], *vtop
;
59 ST_DATA
int const_wanted
; /* true if constant wanted */
60 ST_DATA
int nocode_wanted
; /* true if no code generation wanted for an expression */
61 ST_DATA
int global_expr
; /* true if compound literals must be allocated globally (used during initializers parsing */
62 ST_DATA CType func_vt
; /* current function return type (used by return instruction) */
64 ST_DATA
int last_line_num
, last_ind
, func_ind
; /* debug last line number and pc */
65 ST_DATA
char *funcname
;
67 ST_DATA CType char_pointer_type
, func_old_type
, int_type
;
69 /* ------------------------------------------------------------------------- */
70 static void gen_cast(CType
*type
);
71 static inline CType
*pointed_type(CType
*type
);
72 static int is_compatible_types(CType
*type1
, CType
*type2
);
73 static int parse_btype(CType
*type
, AttributeDef
*ad
);
74 static void type_decl(CType
*type
, AttributeDef
*ad
, int *v
, int td
);
75 static void parse_expr_type(CType
*type
);
76 static void decl_initializer(CType
*type
, Section
*sec
, unsigned long c
, int first
, int size_only
);
77 static void block(int *bsym
, int *csym
, int *case_sym
, int *def_sym
, int case_reg
, int is_expr
);
78 static void decl_initializer_alloc(CType
*type
, AttributeDef
*ad
, int r
, int has_init
, int v
, char *asm_label
, int scope
);
79 static 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 tcc_free(sym
->asm_label
);
132 sym_free_first
= sym
;
135 /* push, without hashing */
136 ST_FUNC Sym
*sym_push2(Sym
**ps
, int v
, int t
, long c
)
155 /* find a symbol and return its associated structure. 's' is the top
156 of the symbol stack */
157 ST_FUNC Sym
*sym_find2(Sym
*s
, int v
)
167 /* structure lookup */
168 ST_INLN Sym
*struct_find(int v
)
171 if ((unsigned)v
>= (unsigned)(tok_ident
- TOK_IDENT
))
173 return table_ident
[v
]->sym_struct
;
176 /* find an identifier */
177 ST_INLN Sym
*sym_find(int v
)
180 if ((unsigned)v
>= (unsigned)(tok_ident
- TOK_IDENT
))
182 return table_ident
[v
]->sym_identifier
;
185 /* push a given symbol on the symbol stack */
186 ST_FUNC Sym
*sym_push(int v
, CType
*type
, int r
, int c
)
195 s
= sym_push2(ps
, v
, type
->t
, c
);
196 s
->type
.ref
= type
->ref
;
198 /* don't record fields or anonymous symbols */
200 if (!(v
& SYM_FIELD
) && (v
& ~SYM_STRUCT
) < SYM_FIRST_ANOM
) {
201 /* record symbol in token array */
202 ts
= table_ident
[(v
& ~SYM_STRUCT
) - TOK_IDENT
];
204 ps
= &ts
->sym_struct
;
206 ps
= &ts
->sym_identifier
;
213 /* push a global identifier */
214 ST_FUNC Sym
*global_identifier_push(int v
, int t
, int c
)
217 s
= sym_push2(&global_stack
, v
, t
, c
);
218 /* don't record anonymous symbol */
219 if (v
< SYM_FIRST_ANOM
) {
220 ps
= &table_ident
[v
- TOK_IDENT
]->sym_identifier
;
221 /* modify the top most local identifier, so that
222 sym_identifier will point to 's' when popped */
224 ps
= &(*ps
)->prev_tok
;
231 /* pop symbols until top reaches 'b' */
232 ST_FUNC
void sym_pop(Sym
**ptop
, Sym
*b
)
242 /* remove symbol in token array */
244 if (!(v
& SYM_FIELD
) && (v
& ~SYM_STRUCT
) < SYM_FIRST_ANOM
) {
245 ts
= table_ident
[(v
& ~SYM_STRUCT
) - TOK_IDENT
];
247 ps
= &ts
->sym_struct
;
249 ps
= &ts
->sym_identifier
;
258 /* ------------------------------------------------------------------------- */
260 ST_FUNC
void swap(int *p
, int *q
)
268 static void vsetc(CType
*type
, int r
, CValue
*vc
)
272 if (vtop
>= vstack
+ (VSTACK_SIZE
- 1))
273 error("memory full");
274 /* cannot let cpu flags if other instruction are generated. Also
275 avoid leaving VT_JMP anywhere except on the top of the stack
276 because it would complicate the code generator. */
277 if (vtop
>= vstack
) {
278 v
= vtop
->r
& VT_VALMASK
;
279 if (v
== VT_CMP
|| (v
& ~1) == VT_JMP
)
289 /* push constant of type "type" with useless value */
290 void vpush(CType
*type
)
293 vsetc(type
, VT_CONST
, &cval
);
296 /* push integer constant */
297 ST_FUNC
void vpushi(int v
)
301 vsetc(&int_type
, VT_CONST
, &cval
);
304 /* push long long constant */
305 static void vpushll(long long v
)
312 vsetc(&ctype
, VT_CONST
, &cval
);
315 /* push arbitrary 64bit constant */
316 void vpush64(int ty
, unsigned long long v
)
322 vsetc(&ctype
, VT_CONST
, &cval
);
325 /* Return a static symbol pointing to a section */
326 ST_FUNC Sym
*get_sym_ref(CType
*type
, Section
*sec
, unsigned long offset
, unsigned long size
)
332 sym
= global_identifier_push(v
, type
->t
| VT_STATIC
, 0);
333 sym
->type
.ref
= type
->ref
;
334 sym
->r
= VT_CONST
| VT_SYM
;
335 put_extern_sym(sym
, sec
, offset
, size
);
339 /* push a reference to a section offset by adding a dummy symbol */
340 static void vpush_ref(CType
*type
, Section
*sec
, unsigned long offset
, unsigned long size
)
345 vsetc(type
, VT_CONST
| VT_SYM
, &cval
);
346 vtop
->sym
= get_sym_ref(type
, sec
, offset
, size
);
349 /* define a new external reference to a symbol 'v' of type 'u' */
350 ST_FUNC Sym
*external_global_sym(int v
, CType
*type
, int r
)
356 /* push forward reference */
357 s
= global_identifier_push(v
, type
->t
| VT_EXTERN
, 0);
358 s
->type
.ref
= type
->ref
;
359 s
->r
= r
| VT_CONST
| VT_SYM
;
364 /* define a new external reference to a symbol 'v' with alternate asm
365 name 'asm_label' of type 'u'. 'asm_label' is equal to NULL if there
366 is no alternate name (most cases) */
367 static Sym
*external_sym(int v
, CType
*type
, int r
, char *asm_label
)
373 /* push forward reference */
374 s
= sym_push(v
, type
, r
| VT_CONST
| VT_SYM
, 0);
375 s
->asm_label
= asm_label
;
376 s
->type
.t
|= VT_EXTERN
;
377 } else if (s
->type
.ref
== func_old_type
.ref
) {
378 s
->type
.ref
= type
->ref
;
379 s
->r
= r
| VT_CONST
| VT_SYM
;
380 s
->type
.t
|= VT_EXTERN
;
381 } else if (!is_compatible_types(&s
->type
, type
)) {
382 error("incompatible types for redefinition of '%s'",
383 get_tok_str(v
, NULL
));
388 /* push a reference to global symbol v */
389 ST_FUNC
void vpush_global_sym(CType
*type
, int v
)
394 sym
= external_global_sym(v
, type
, 0);
396 vsetc(type
, VT_CONST
| VT_SYM
, &cval
);
400 ST_FUNC
void vset(CType
*type
, int r
, int v
)
405 vsetc(type
, r
, &cval
);
408 static void vseti(int r
, int v
)
416 ST_FUNC
void vswap(void)
425 ST_FUNC
void vpushv(SValue
*v
)
427 if (vtop
>= vstack
+ (VSTACK_SIZE
- 1))
428 error("memory full");
433 static void vdup(void)
438 /* save r to the memory stack, and mark it as being free */
439 ST_FUNC
void save_reg(int r
)
441 int l
, saved
, size
, align
;
445 /* modify all stack values */
448 for(p
=vstack
;p
<=vtop
;p
++) {
449 if ((p
->r
& VT_VALMASK
) == r
||
450 ((p
->type
.t
& VT_BTYPE
) == VT_LLONG
&& (p
->r2
& VT_VALMASK
) == r
)) {
451 /* must save value on stack if not already done */
453 /* NOTE: must reload 'r' because r might be equal to r2 */
454 r
= p
->r
& VT_VALMASK
;
455 /* store register in the stack */
457 if ((p
->r
& VT_LVAL
) ||
458 (!is_float(type
->t
) && (type
->t
& VT_BTYPE
) != VT_LLONG
))
459 #ifdef TCC_TARGET_X86_64
460 type
= &char_pointer_type
;
464 size
= type_size(type
, &align
);
465 loc
= (loc
- size
) & -align
;
467 sv
.r
= VT_LOCAL
| VT_LVAL
;
470 #if defined(TCC_TARGET_I386) || defined(TCC_TARGET_X86_64)
471 /* x86 specific: need to pop fp register ST0 if saved */
473 o(0xd8dd); /* fstp %st(0) */
476 #ifndef TCC_TARGET_X86_64
477 /* special long long case */
478 if ((type
->t
& VT_BTYPE
) == VT_LLONG
) {
486 /* mark that stack entry as being saved on the stack */
487 if (p
->r
& VT_LVAL
) {
488 /* also clear the bounded flag because the
489 relocation address of the function was stored in
491 p
->r
= (p
->r
& ~(VT_VALMASK
| VT_BOUNDED
)) | VT_LLOCAL
;
493 p
->r
= lvalue_type(p
->type
.t
) | VT_LOCAL
;
501 #ifdef TCC_TARGET_ARM
502 /* find a register of class 'rc2' with at most one reference on stack.
503 * If none, call get_reg(rc) */
504 ST_FUNC
int get_reg_ex(int rc
, int rc2
)
509 for(r
=0;r
<NB_REGS
;r
++) {
510 if (reg_classes
[r
] & rc2
) {
513 for(p
= vstack
; p
<= vtop
; p
++) {
514 if ((p
->r
& VT_VALMASK
) == r
||
515 (p
->r2
& VT_VALMASK
) == r
)
526 /* find a free register of class 'rc'. If none, save one register */
527 ST_FUNC
int get_reg(int rc
)
532 /* find a free register */
533 for(r
=0;r
<NB_REGS
;r
++) {
534 if (reg_classes
[r
] & rc
) {
535 for(p
=vstack
;p
<=vtop
;p
++) {
536 if ((p
->r
& VT_VALMASK
) == r
||
537 (p
->r2
& VT_VALMASK
) == r
)
545 /* no register left : free the first one on the stack (VERY
546 IMPORTANT to start from the bottom to ensure that we don't
547 spill registers used in gen_opi()) */
548 for(p
=vstack
;p
<=vtop
;p
++) {
549 r
= p
->r
& VT_VALMASK
;
550 if (r
< VT_CONST
&& (reg_classes
[r
] & rc
))
552 /* also look at second register (if long long) */
553 r
= p
->r2
& VT_VALMASK
;
554 if (r
< VT_CONST
&& (reg_classes
[r
] & rc
)) {
560 /* Should never comes here */
564 /* save registers up to (vtop - n) stack entry */
565 ST_FUNC
void save_regs(int n
)
570 for(p
= vstack
;p
<= p1
; p
++) {
571 r
= p
->r
& VT_VALMASK
;
578 /* move register 's' to 'r', and flush previous value of r to memory
580 static void move_reg(int r
, int s
)
593 /* get address of vtop (vtop MUST BE an lvalue) */
594 static void gaddrof(void)
597 /* tricky: if saved lvalue, then we can go back to lvalue */
598 if ((vtop
->r
& VT_VALMASK
) == VT_LLOCAL
)
599 vtop
->r
= (vtop
->r
& ~(VT_VALMASK
| VT_LVAL_TYPE
)) | VT_LOCAL
| VT_LVAL
;
602 #ifdef CONFIG_TCC_BCHECK
603 /* generate lvalue bound code */
604 static void gbound(void)
609 vtop
->r
&= ~VT_MUSTBOUND
;
610 /* if lvalue, then use checking code before dereferencing */
611 if (vtop
->r
& VT_LVAL
) {
612 /* if not VT_BOUNDED value, then make one */
613 if (!(vtop
->r
& VT_BOUNDED
)) {
614 lval_type
= vtop
->r
& (VT_LVAL_TYPE
| VT_LVAL
);
615 /* must save type because we must set it to int to get pointer */
617 vtop
->type
.t
= VT_INT
;
620 gen_bounded_ptr_add();
621 vtop
->r
|= lval_type
;
624 /* then check for dereferencing */
625 gen_bounded_ptr_deref();
630 /* store vtop a register belonging to class 'rc'. lvalues are
631 converted to values. Cannot be used if cannot be converted to
632 register value (such as structures). */
633 ST_FUNC
int gv(int rc
)
635 int r
, rc2
, bit_pos
, bit_size
, size
, align
, i
;
637 /* NOTE: get_reg can modify vstack[] */
638 if (vtop
->type
.t
& VT_BITFIELD
) {
641 bit_pos
= (vtop
->type
.t
>> VT_STRUCT_SHIFT
) & 0x3f;
642 bit_size
= (vtop
->type
.t
>> (VT_STRUCT_SHIFT
+ 6)) & 0x3f;
643 /* remove bit field info to avoid loops */
644 vtop
->type
.t
&= ~(VT_BITFIELD
| (-1 << VT_STRUCT_SHIFT
));
645 /* cast to int to propagate signedness in following ops */
646 if ((vtop
->type
.t
& VT_BTYPE
) == VT_LLONG
) {
651 if((vtop
->type
.t
& VT_UNSIGNED
) ||
652 (vtop
->type
.t
& VT_BTYPE
) == VT_BOOL
)
653 type
.t
|= VT_UNSIGNED
;
655 /* generate shifts */
656 vpushi(bits
- (bit_pos
+ bit_size
));
658 vpushi(bits
- bit_size
);
659 /* NOTE: transformed to SHR if unsigned */
663 if (is_float(vtop
->type
.t
) &&
664 (vtop
->r
& (VT_VALMASK
| VT_LVAL
)) == VT_CONST
) {
667 unsigned long offset
;
668 #if defined(TCC_TARGET_ARM) && !defined(TCC_ARM_VFP)
672 /* XXX: unify with initializers handling ? */
673 /* CPUs usually cannot use float constants, so we store them
674 generically in data segment */
675 size
= type_size(&vtop
->type
, &align
);
676 offset
= (data_section
->data_offset
+ align
- 1) & -align
;
677 data_section
->data_offset
= offset
;
678 /* XXX: not portable yet */
679 #if defined(__i386__) || defined(__x86_64__)
680 /* Zero pad x87 tenbyte long doubles */
681 if (size
== LDOUBLE_SIZE
)
682 vtop
->c
.tab
[2] &= 0xffff;
684 ptr
= section_ptr_add(data_section
, size
);
686 #if defined(TCC_TARGET_ARM) && !defined(TCC_ARM_VFP)
690 ptr
[i
] = vtop
->c
.tab
[size
-1-i
];
694 ptr
[i
] = vtop
->c
.tab
[i
];
695 sym
= get_sym_ref(&vtop
->type
, data_section
, offset
, size
<< 2);
696 vtop
->r
|= VT_LVAL
| VT_SYM
;
700 #ifdef CONFIG_TCC_BCHECK
701 if (vtop
->r
& VT_MUSTBOUND
)
705 r
= vtop
->r
& VT_VALMASK
;
709 /* need to reload if:
711 - lvalue (need to dereference pointer)
712 - already a register, but not in the right class */
714 || (vtop
->r
& VT_LVAL
)
715 || !(reg_classes
[r
] & rc
)
716 #ifndef TCC_TARGET_X86_64
717 || ((vtop
->type
.t
& VT_BTYPE
) == VT_LLONG
&& !(reg_classes
[vtop
->r2
] & rc2
))
722 #ifndef TCC_TARGET_X86_64
723 if ((vtop
->type
.t
& VT_BTYPE
) == VT_LLONG
) {
725 unsigned long long ll
;
726 /* two register type load : expand to two words
728 if ((vtop
->r
& (VT_VALMASK
| VT_LVAL
)) == VT_CONST
) {
731 vtop
->c
.ui
= ll
; /* first word */
733 vtop
->r
= r
; /* save register value */
734 vpushi(ll
>> 32); /* second word */
735 } else if (r
>= VT_CONST
|| /* XXX: test to VT_CONST incorrect ? */
736 (vtop
->r
& VT_LVAL
)) {
737 /* We do not want to modifier the long long
738 pointer here, so the safest (and less
739 efficient) is to save all the other registers
740 in the stack. XXX: totally inefficient. */
742 /* load from memory */
745 vtop
[-1].r
= r
; /* save register value */
746 /* increment pointer to get second word */
747 vtop
->type
.t
= VT_INT
;
756 vtop
[-1].r
= r
; /* save register value */
757 vtop
->r
= vtop
[-1].r2
;
759 /* allocate second register */
763 /* write second register */
767 if ((vtop
->r
& VT_LVAL
) && !is_float(vtop
->type
.t
)) {
769 /* lvalue of scalar type : need to use lvalue type
770 because of possible cast */
773 /* compute memory access type */
774 if (vtop
->r
& VT_LVAL_BYTE
)
776 else if (vtop
->r
& VT_LVAL_SHORT
)
778 if (vtop
->r
& VT_LVAL_UNSIGNED
)
782 /* restore wanted type */
785 /* one register type load */
790 #ifdef TCC_TARGET_C67
791 /* uses register pairs for doubles */
792 if ((vtop
->type
.t
& VT_BTYPE
) == VT_DOUBLE
)
799 /* generate vtop[-1] and vtop[0] in resp. classes rc1 and rc2 */
800 ST_FUNC
void gv2(int rc1
, int rc2
)
804 /* generate more generic register first. But VT_JMP or VT_CMP
805 values must be generated first in all cases to avoid possible
807 v
= vtop
[0].r
& VT_VALMASK
;
808 if (v
!= VT_CMP
&& (v
& ~1) != VT_JMP
&& rc1
<= rc2
) {
813 /* test if reload is needed for first register */
814 if ((vtop
[-1].r
& VT_VALMASK
) >= VT_CONST
) {
824 /* test if reload is needed for first register */
825 if ((vtop
[0].r
& VT_VALMASK
) >= VT_CONST
) {
831 /* wrapper around RC_FRET to return a register by type */
832 static int rc_fret(int t
)
834 #ifdef TCC_TARGET_X86_64
835 if (t
== VT_LDOUBLE
) {
842 /* wrapper around REG_FRET to return a register by type */
843 static int reg_fret(int t
)
845 #ifdef TCC_TARGET_X86_64
846 if (t
== VT_LDOUBLE
) {
853 /* expand long long on stack in two int registers */
854 static void lexpand(void)
858 u
= vtop
->type
.t
& VT_UNSIGNED
;
861 vtop
[0].r
= vtop
[-1].r2
;
862 vtop
[0].r2
= VT_CONST
;
863 vtop
[-1].r2
= VT_CONST
;
864 vtop
[0].type
.t
= VT_INT
| u
;
865 vtop
[-1].type
.t
= VT_INT
| u
;
868 #ifdef TCC_TARGET_ARM
869 /* expand long long on stack */
870 ST_FUNC
void lexpand_nr(void)
874 u
= vtop
->type
.t
& VT_UNSIGNED
;
877 vtop
->type
.t
= VT_INT
| u
;
878 v
=vtop
[-1].r
& (VT_VALMASK
| VT_LVAL
);
880 vtop
[-1].c
.ui
= vtop
->c
.ull
;
881 vtop
->c
.ui
= vtop
->c
.ull
>> 32;
883 } else if (v
== (VT_LVAL
|VT_CONST
) || v
== (VT_LVAL
|VT_LOCAL
)) {
885 vtop
->r
= vtop
[-1].r
;
886 } else if (v
> VT_CONST
) {
890 vtop
->r
= vtop
[-1].r2
;
891 vtop
[-1].r2
= VT_CONST
;
892 vtop
[-1].type
.t
= VT_INT
| u
;
896 /* build a long long from two ints */
897 static void lbuild(int t
)
900 vtop
[-1].r2
= vtop
[0].r
;
905 /* rotate n first stack elements to the bottom
906 I1 ... In -> I2 ... In I1 [top is right]
908 static void vrotb(int n
)
919 /* rotate n first stack elements to the top
920 I1 ... In -> In I1 ... I(n-1) [top is right]
922 ST_FUNC
void vrott(int n
)
928 for(i
= 0;i
< n
- 1; i
++)
929 vtop
[-i
] = vtop
[-i
- 1];
933 #ifdef TCC_TARGET_ARM
934 /* like vrott but in other direction
935 In ... I1 -> I(n-1) ... I1 In [top is right]
937 ST_FUNC
void vnrott(int n
)
943 for(i
= n
- 1; i
> 0; i
--)
944 vtop
[-i
] = vtop
[-i
+ 1];
949 /* pop stack value */
950 ST_FUNC
void vpop(void)
953 v
= vtop
->r
& VT_VALMASK
;
954 #if defined(TCC_TARGET_I386) || defined(TCC_TARGET_X86_64)
955 /* for x86, we need to pop the FP stack */
956 if (v
== TREG_ST0
&& !nocode_wanted
) {
957 o(0xd8dd); /* fstp %st(0) */
960 if (v
== VT_JMP
|| v
== VT_JMPI
) {
961 /* need to put correct jump if && or || without test */
967 /* convert stack entry to register and duplicate its value in another
969 static void gv_dup(void)
975 if ((t
& VT_BTYPE
) == VT_LLONG
) {
982 /* stack: H L L1 H1 */
990 /* duplicate value */
995 #ifdef TCC_TARGET_X86_64
996 if ((t
& VT_BTYPE
) == VT_LDOUBLE
) {
1006 load(r1
, &sv
); /* move r to r1 */
1008 /* duplicates value */
1014 #ifndef TCC_TARGET_X86_64
1015 /* generate CPU independent (unsigned) long long operations */
1016 static void gen_opl(int op
)
1018 int t
, a
, b
, op1
, c
, i
;
1020 unsigned short reg_iret
= REG_IRET
;
1021 unsigned short reg_lret
= REG_LRET
;
1027 func
= TOK___divdi3
;
1030 func
= TOK___udivdi3
;
1033 func
= TOK___moddi3
;
1036 func
= TOK___umoddi3
;
1043 /* call generic long long function */
1044 vpush_global_sym(&func_old_type
, func
);
1049 vtop
->r2
= reg_lret
;
1062 /* stack: L1 H1 L2 H2 */
1067 vtop
[-2] = vtop
[-3];
1070 /* stack: H1 H2 L1 L2 */
1076 /* stack: H1 H2 L1 L2 ML MH */
1079 /* stack: ML MH H1 H2 L1 L2 */
1083 /* stack: ML MH H1 L2 H2 L1 */
1088 /* stack: ML MH M1 M2 */
1091 } else if (op
== '+' || op
== '-') {
1092 /* XXX: add non carry method too (for MIPS or alpha) */
1098 /* stack: H1 H2 (L1 op L2) */
1101 gen_op(op1
+ 1); /* TOK_xxxC2 */
1104 /* stack: H1 H2 (L1 op L2) */
1107 /* stack: (L1 op L2) H1 H2 */
1109 /* stack: (L1 op L2) (H1 op H2) */
1117 if ((vtop
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) == VT_CONST
) {
1118 t
= vtop
[-1].type
.t
;
1122 /* stack: L H shift */
1124 /* constant: simpler */
1125 /* NOTE: all comments are for SHL. the other cases are
1126 done by swaping words */
1137 if (op
!= TOK_SAR
) {
1170 /* XXX: should provide a faster fallback on x86 ? */
1173 func
= TOK___ashrdi3
;
1176 func
= TOK___lshrdi3
;
1179 func
= TOK___ashldi3
;
1185 /* compare operations */
1191 /* stack: L1 H1 L2 H2 */
1193 vtop
[-1] = vtop
[-2];
1195 /* stack: L1 L2 H1 H2 */
1198 /* when values are equal, we need to compare low words. since
1199 the jump is inverted, we invert the test too. */
1202 else if (op1
== TOK_GT
)
1204 else if (op1
== TOK_ULT
)
1206 else if (op1
== TOK_UGT
)
1211 if (op1
!= TOK_NE
) {
1215 /* generate non equal test */
1216 /* XXX: NOT PORTABLE yet */
1220 #if defined(TCC_TARGET_I386)
1221 b
= psym(0x850f, 0);
1222 #elif defined(TCC_TARGET_ARM)
1224 o(0x1A000000 | encbranch(ind
, 0, 1));
1225 #elif defined(TCC_TARGET_C67)
1226 error("not implemented");
1228 #error not supported
1232 /* compare low. Always unsigned */
1236 else if (op1
== TOK_LE
)
1238 else if (op1
== TOK_GT
)
1240 else if (op1
== TOK_GE
)
1251 /* handle integer constant optimizations and various machine
1253 static void gen_opic(int op
)
1255 int c1
, c2
, t1
, t2
, n
;
1258 typedef unsigned long long U
;
1262 t1
= v1
->type
.t
& VT_BTYPE
;
1263 t2
= v2
->type
.t
& VT_BTYPE
;
1267 else if (v1
->type
.t
& VT_UNSIGNED
)
1274 else if (v2
->type
.t
& VT_UNSIGNED
)
1279 /* currently, we cannot do computations with forward symbols */
1280 c1
= (v1
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) == VT_CONST
;
1281 c2
= (v2
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) == VT_CONST
;
1284 case '+': l1
+= l2
; break;
1285 case '-': l1
-= l2
; break;
1286 case '&': l1
&= l2
; break;
1287 case '^': l1
^= l2
; break;
1288 case '|': l1
|= l2
; break;
1289 case '*': l1
*= l2
; break;
1296 /* if division by zero, generate explicit division */
1299 error("division by zero in constant");
1303 default: l1
/= l2
; break;
1304 case '%': l1
%= l2
; break;
1305 case TOK_UDIV
: l1
= (U
)l1
/ l2
; break;
1306 case TOK_UMOD
: l1
= (U
)l1
% l2
; break;
1309 case TOK_SHL
: l1
<<= l2
; break;
1310 case TOK_SHR
: l1
= (U
)l1
>> l2
; break;
1311 case TOK_SAR
: l1
>>= l2
; break;
1313 case TOK_ULT
: l1
= (U
)l1
< (U
)l2
; break;
1314 case TOK_UGE
: l1
= (U
)l1
>= (U
)l2
; break;
1315 case TOK_EQ
: l1
= l1
== l2
; break;
1316 case TOK_NE
: l1
= l1
!= l2
; break;
1317 case TOK_ULE
: l1
= (U
)l1
<= (U
)l2
; break;
1318 case TOK_UGT
: l1
= (U
)l1
> (U
)l2
; break;
1319 case TOK_LT
: l1
= l1
< l2
; break;
1320 case TOK_GE
: l1
= l1
>= l2
; break;
1321 case TOK_LE
: l1
= l1
<= l2
; break;
1322 case TOK_GT
: l1
= l1
> l2
; break;
1324 case TOK_LAND
: l1
= l1
&& l2
; break;
1325 case TOK_LOR
: l1
= l1
|| l2
; break;
1332 /* if commutative ops, put c2 as constant */
1333 if (c1
&& (op
== '+' || op
== '&' || op
== '^' ||
1334 op
== '|' || op
== '*')) {
1336 c2
= c1
; //c = c1, c1 = c2, c2 = c;
1337 l2
= l1
; //l = l1, l1 = l2, l2 = l;
1339 /* Filter out NOP operations like x*1, x-0, x&-1... */
1340 if (c2
&& (((op
== '*' || op
== '/' || op
== TOK_UDIV
||
1343 ((op
== '+' || op
== '-' || op
== '|' || op
== '^' ||
1344 op
== TOK_SHL
|| op
== TOK_SHR
|| op
== TOK_SAR
) &&
1350 } else if (c2
&& (op
== '*' || op
== TOK_PDIV
|| op
== TOK_UDIV
)) {
1351 /* try to use shifts instead of muls or divs */
1352 if (l2
> 0 && (l2
& (l2
- 1)) == 0) {
1361 else if (op
== TOK_PDIV
)
1367 } else if (c2
&& (op
== '+' || op
== '-') &&
1368 (((vtop
[-1].r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) == (VT_CONST
| VT_SYM
))
1369 || (vtop
[-1].r
& (VT_VALMASK
| VT_LVAL
)) == VT_LOCAL
)) {
1370 /* symbol + constant case */
1377 if (!nocode_wanted
) {
1378 /* call low level op generator */
1379 if (t1
== VT_LLONG
|| t2
== VT_LLONG
)
1390 /* generate a floating point operation with constant propagation */
1391 static void gen_opif(int op
)
1399 /* currently, we cannot do computations with forward symbols */
1400 c1
= (v1
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) == VT_CONST
;
1401 c2
= (v2
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) == VT_CONST
;
1403 if (v1
->type
.t
== VT_FLOAT
) {
1406 } else if (v1
->type
.t
== VT_DOUBLE
) {
1414 /* NOTE: we only do constant propagation if finite number (not
1415 NaN or infinity) (ANSI spec) */
1416 if (!ieee_finite(f1
) || !ieee_finite(f2
))
1420 case '+': f1
+= f2
; break;
1421 case '-': f1
-= f2
; break;
1422 case '*': f1
*= f2
; break;
1426 error("division by zero in constant");
1431 /* XXX: also handles tests ? */
1435 /* XXX: overflow test ? */
1436 if (v1
->type
.t
== VT_FLOAT
) {
1438 } else if (v1
->type
.t
== VT_DOUBLE
) {
1446 if (!nocode_wanted
) {
1454 static int pointed_size(CType
*type
)
1457 return type_size(pointed_type(type
), &align
);
1460 static inline int is_null_pointer(SValue
*p
)
1462 if ((p
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) != VT_CONST
)
1464 return ((p
->type
.t
& VT_BTYPE
) == VT_INT
&& p
->c
.i
== 0) ||
1465 ((p
->type
.t
& VT_BTYPE
) == VT_LLONG
&& p
->c
.ll
== 0);
1468 static inline int is_integer_btype(int bt
)
1470 return (bt
== VT_BYTE
|| bt
== VT_SHORT
||
1471 bt
== VT_INT
|| bt
== VT_LLONG
);
1474 /* check types for comparison or substraction of pointers */
1475 static void check_comparison_pointer_types(SValue
*p1
, SValue
*p2
, int op
)
1477 CType
*type1
, *type2
, tmp_type1
, tmp_type2
;
1480 /* null pointers are accepted for all comparisons as gcc */
1481 if (is_null_pointer(p1
) || is_null_pointer(p2
))
1485 bt1
= type1
->t
& VT_BTYPE
;
1486 bt2
= type2
->t
& VT_BTYPE
;
1487 /* accept comparison between pointer and integer with a warning */
1488 if ((is_integer_btype(bt1
) || is_integer_btype(bt2
)) && op
!= '-') {
1489 if (op
!= TOK_LOR
&& op
!= TOK_LAND
)
1490 warning("comparison between pointer and integer");
1494 /* both must be pointers or implicit function pointers */
1495 if (bt1
== VT_PTR
) {
1496 type1
= pointed_type(type1
);
1497 } else if (bt1
!= VT_FUNC
)
1498 goto invalid_operands
;
1500 if (bt2
== VT_PTR
) {
1501 type2
= pointed_type(type2
);
1502 } else if (bt2
!= VT_FUNC
) {
1504 error("invalid operands to binary %s", get_tok_str(op
, NULL
));
1506 if ((type1
->t
& VT_BTYPE
) == VT_VOID
||
1507 (type2
->t
& VT_BTYPE
) == VT_VOID
)
1511 tmp_type1
.t
&= ~(VT_UNSIGNED
| VT_CONSTANT
| VT_VOLATILE
);
1512 tmp_type2
.t
&= ~(VT_UNSIGNED
| VT_CONSTANT
| VT_VOLATILE
);
1513 if (!is_compatible_types(&tmp_type1
, &tmp_type2
)) {
1514 /* gcc-like error if '-' is used */
1516 goto invalid_operands
;
1518 warning("comparison of distinct pointer types lacks a cast");
1522 /* generic gen_op: handles types problems */
1523 ST_FUNC
void gen_op(int op
)
1525 int u
, t1
, t2
, bt1
, bt2
, t
;
1528 t1
= vtop
[-1].type
.t
;
1529 t2
= vtop
[0].type
.t
;
1530 bt1
= t1
& VT_BTYPE
;
1531 bt2
= t2
& VT_BTYPE
;
1533 if (bt1
== VT_PTR
|| bt2
== VT_PTR
) {
1534 /* at least one operand is a pointer */
1535 /* relationnal op: must be both pointers */
1536 if (op
>= TOK_ULT
&& op
<= TOK_LOR
) {
1537 check_comparison_pointer_types(vtop
- 1, vtop
, op
);
1538 /* pointers are handled are unsigned */
1539 #ifdef TCC_TARGET_X86_64
1540 t
= VT_LLONG
| VT_UNSIGNED
;
1542 t
= VT_INT
| VT_UNSIGNED
;
1546 /* if both pointers, then it must be the '-' op */
1547 if (bt1
== VT_PTR
&& bt2
== VT_PTR
) {
1549 error("cannot use pointers here");
1550 check_comparison_pointer_types(vtop
- 1, vtop
, op
);
1551 /* XXX: check that types are compatible */
1552 u
= pointed_size(&vtop
[-1].type
);
1554 /* set to integer type */
1555 #ifdef TCC_TARGET_X86_64
1556 vtop
->type
.t
= VT_LLONG
;
1558 vtop
->type
.t
= VT_INT
;
1563 /* exactly one pointer : must be '+' or '-'. */
1564 if (op
!= '-' && op
!= '+')
1565 error("cannot use pointers here");
1566 /* Put pointer as first operand */
1567 if (bt2
== VT_PTR
) {
1571 type1
= vtop
[-1].type
;
1572 type1
.t
&= ~VT_ARRAY
;
1573 u
= pointed_size(&vtop
[-1].type
);
1575 error("unknown array element size");
1576 #ifdef TCC_TARGET_X86_64
1579 /* XXX: cast to int ? (long long case) */
1583 #ifdef CONFIG_TCC_BCHECK
1584 /* if evaluating constant expression, no code should be
1585 generated, so no bound check */
1586 if (tcc_state
->do_bounds_check
&& !const_wanted
) {
1587 /* if bounded pointers, we generate a special code to
1594 gen_bounded_ptr_add();
1600 /* put again type if gen_opic() swaped operands */
1603 } else if (is_float(bt1
) || is_float(bt2
)) {
1604 /* compute bigger type and do implicit casts */
1605 if (bt1
== VT_LDOUBLE
|| bt2
== VT_LDOUBLE
) {
1607 } else if (bt1
== VT_DOUBLE
|| bt2
== VT_DOUBLE
) {
1612 /* floats can only be used for a few operations */
1613 if (op
!= '+' && op
!= '-' && op
!= '*' && op
!= '/' &&
1614 (op
< TOK_ULT
|| op
> TOK_GT
))
1615 error("invalid operands for binary operation");
1617 } else if (bt1
== VT_LLONG
|| bt2
== VT_LLONG
) {
1618 /* cast to biggest op */
1620 /* convert to unsigned if it does not fit in a long long */
1621 if ((t1
& (VT_BTYPE
| VT_UNSIGNED
)) == (VT_LLONG
| VT_UNSIGNED
) ||
1622 (t2
& (VT_BTYPE
| VT_UNSIGNED
)) == (VT_LLONG
| VT_UNSIGNED
))
1626 /* integer operations */
1628 /* convert to unsigned if it does not fit in an integer */
1629 if ((t1
& (VT_BTYPE
| VT_UNSIGNED
)) == (VT_INT
| VT_UNSIGNED
) ||
1630 (t2
& (VT_BTYPE
| VT_UNSIGNED
)) == (VT_INT
| VT_UNSIGNED
))
1633 /* XXX: currently, some unsigned operations are explicit, so
1634 we modify them here */
1635 if (t
& VT_UNSIGNED
) {
1642 else if (op
== TOK_LT
)
1644 else if (op
== TOK_GT
)
1646 else if (op
== TOK_LE
)
1648 else if (op
== TOK_GE
)
1655 /* special case for shifts and long long: we keep the shift as
1657 if (op
== TOK_SHR
|| op
== TOK_SAR
|| op
== TOK_SHL
)
1664 if (op
>= TOK_ULT
&& op
<= TOK_GT
) {
1665 /* relationnal op: the result is an int */
1666 vtop
->type
.t
= VT_INT
;
1673 #ifndef TCC_TARGET_ARM
1674 /* generic itof for unsigned long long case */
1675 static void gen_cvt_itof1(int t
)
1677 if ((vtop
->type
.t
& (VT_BTYPE
| VT_UNSIGNED
)) ==
1678 (VT_LLONG
| VT_UNSIGNED
)) {
1681 vpush_global_sym(&func_old_type
, TOK___floatundisf
);
1682 #if LDOUBLE_SIZE != 8
1683 else if (t
== VT_LDOUBLE
)
1684 vpush_global_sym(&func_old_type
, TOK___floatundixf
);
1687 vpush_global_sym(&func_old_type
, TOK___floatundidf
);
1691 vtop
->r
= reg_fret(t
);
1698 /* generic ftoi for unsigned long long case */
1699 static void gen_cvt_ftoi1(int t
)
1703 if (t
== (VT_LLONG
| VT_UNSIGNED
)) {
1704 /* not handled natively */
1705 st
= vtop
->type
.t
& VT_BTYPE
;
1707 vpush_global_sym(&func_old_type
, TOK___fixunssfdi
);
1708 #if LDOUBLE_SIZE != 8
1709 else if (st
== VT_LDOUBLE
)
1710 vpush_global_sym(&func_old_type
, TOK___fixunsxfdi
);
1713 vpush_global_sym(&func_old_type
, TOK___fixunsdfdi
);
1718 vtop
->r2
= REG_LRET
;
1724 /* force char or short cast */
1725 static void force_charshort_cast(int t
)
1729 /* XXX: add optimization if lvalue : just change type and offset */
1734 if (t
& VT_UNSIGNED
) {
1735 vpushi((1 << bits
) - 1);
1741 /* result must be signed or the SAR is converted to an SHL
1742 This was not the case when "t" was a signed short
1743 and the last value on the stack was an unsigned int */
1744 vtop
->type
.t
&= ~VT_UNSIGNED
;
1750 /* cast 'vtop' to 'type'. Casting to bitfields is forbidden. */
1751 static void gen_cast(CType
*type
)
1753 int sbt
, dbt
, sf
, df
, c
, p
;
1755 /* special delayed cast for char/short */
1756 /* XXX: in some cases (multiple cascaded casts), it may still
1758 if (vtop
->r
& VT_MUSTCAST
) {
1759 vtop
->r
&= ~VT_MUSTCAST
;
1760 force_charshort_cast(vtop
->type
.t
);
1763 /* bitfields first get cast to ints */
1764 if (vtop
->type
.t
& VT_BITFIELD
) {
1768 dbt
= type
->t
& (VT_BTYPE
| VT_UNSIGNED
);
1769 sbt
= vtop
->type
.t
& (VT_BTYPE
| VT_UNSIGNED
);
1774 c
= (vtop
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) == VT_CONST
;
1775 p
= (vtop
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) == (VT_CONST
| VT_SYM
);
1777 /* constant case: we can do it now */
1778 /* XXX: in ISOC, cannot do it if error in convert */
1779 if (sbt
== VT_FLOAT
)
1780 vtop
->c
.ld
= vtop
->c
.f
;
1781 else if (sbt
== VT_DOUBLE
)
1782 vtop
->c
.ld
= vtop
->c
.d
;
1785 if ((sbt
& VT_BTYPE
) == VT_LLONG
) {
1786 if (sbt
& VT_UNSIGNED
)
1787 vtop
->c
.ld
= vtop
->c
.ull
;
1789 vtop
->c
.ld
= vtop
->c
.ll
;
1791 if (sbt
& VT_UNSIGNED
)
1792 vtop
->c
.ld
= vtop
->c
.ui
;
1794 vtop
->c
.ld
= vtop
->c
.i
;
1797 if (dbt
== VT_FLOAT
)
1798 vtop
->c
.f
= (float)vtop
->c
.ld
;
1799 else if (dbt
== VT_DOUBLE
)
1800 vtop
->c
.d
= (double)vtop
->c
.ld
;
1801 } else if (sf
&& dbt
== (VT_LLONG
|VT_UNSIGNED
)) {
1802 vtop
->c
.ull
= (unsigned long long)vtop
->c
.ld
;
1803 } else if (sf
&& dbt
== VT_BOOL
) {
1804 vtop
->c
.i
= (vtop
->c
.ld
!= 0);
1807 vtop
->c
.ll
= (long long)vtop
->c
.ld
;
1808 else if (sbt
== (VT_LLONG
|VT_UNSIGNED
))
1809 vtop
->c
.ll
= vtop
->c
.ull
;
1810 else if (sbt
& VT_UNSIGNED
)
1811 vtop
->c
.ll
= vtop
->c
.ui
;
1812 #ifdef TCC_TARGET_X86_64
1813 else if (sbt
== VT_PTR
)
1816 else if (sbt
!= VT_LLONG
)
1817 vtop
->c
.ll
= vtop
->c
.i
;
1819 if (dbt
== (VT_LLONG
|VT_UNSIGNED
))
1820 vtop
->c
.ull
= vtop
->c
.ll
;
1821 else if (dbt
== VT_BOOL
)
1822 vtop
->c
.i
= (vtop
->c
.ll
!= 0);
1823 else if (dbt
!= VT_LLONG
) {
1825 if ((dbt
& VT_BTYPE
) == VT_BYTE
)
1827 else if ((dbt
& VT_BTYPE
) == VT_SHORT
)
1830 if(dbt
& VT_UNSIGNED
)
1831 vtop
->c
.ui
= ((unsigned int)vtop
->c
.ll
<< s
) >> s
;
1833 vtop
->c
.i
= ((int)vtop
->c
.ll
<< s
) >> s
;
1836 } else if (p
&& dbt
== VT_BOOL
) {
1839 } else if (!nocode_wanted
) {
1840 /* non constant case: generate code */
1842 /* convert from fp to fp */
1845 /* convert int to fp */
1848 /* convert fp to int */
1849 if (dbt
== VT_BOOL
) {
1853 /* we handle char/short/etc... with generic code */
1854 if (dbt
!= (VT_INT
| VT_UNSIGNED
) &&
1855 dbt
!= (VT_LLONG
| VT_UNSIGNED
) &&
1859 if (dbt
== VT_INT
&& (type
->t
& (VT_BTYPE
| VT_UNSIGNED
)) != dbt
) {
1860 /* additional cast for char/short... */
1865 #ifndef TCC_TARGET_X86_64
1866 } else if ((dbt
& VT_BTYPE
) == VT_LLONG
) {
1867 if ((sbt
& VT_BTYPE
) != VT_LLONG
) {
1868 /* scalar to long long */
1869 /* machine independent conversion */
1871 /* generate high word */
1872 if (sbt
== (VT_INT
| VT_UNSIGNED
)) {
1876 if (sbt
== VT_PTR
) {
1877 /* cast from pointer to int before we apply
1878 shift operation, which pointers don't support*/
1879 gen_cast(&int_type
);
1885 /* patch second register */
1886 vtop
[-1].r2
= vtop
->r
;
1890 } else if ((dbt
& VT_BTYPE
) == VT_LLONG
||
1891 (dbt
& VT_BTYPE
) == VT_PTR
||
1892 (dbt
& VT_BTYPE
) == VT_FUNC
) {
1893 if ((sbt
& VT_BTYPE
) != VT_LLONG
&&
1894 (sbt
& VT_BTYPE
) != VT_PTR
&&
1895 (sbt
& VT_BTYPE
) != VT_FUNC
) {
1896 /* need to convert from 32bit to 64bit */
1898 if (sbt
!= (VT_INT
| VT_UNSIGNED
)) {
1899 /* x86_64 specific: movslq */
1901 o(0xc0 + (REG_VALUE(r
) << 3) + REG_VALUE(r
));
1905 } else if (dbt
== VT_BOOL
) {
1906 /* scalar to bool */
1909 } else if ((dbt
& VT_BTYPE
) == VT_BYTE
||
1910 (dbt
& VT_BTYPE
) == VT_SHORT
) {
1911 if (sbt
== VT_PTR
) {
1912 vtop
->type
.t
= VT_INT
;
1913 warning("nonportable conversion from pointer to char/short");
1915 force_charshort_cast(dbt
);
1916 } else if ((dbt
& VT_BTYPE
) == VT_INT
) {
1918 if (sbt
== VT_LLONG
) {
1919 /* from long long: just take low order word */
1923 /* if lvalue and single word type, nothing to do because
1924 the lvalue already contains the real type size (see
1925 VT_LVAL_xxx constants) */
1928 } else if ((dbt
& VT_BTYPE
) == VT_PTR
&& !(vtop
->r
& VT_LVAL
)) {
1929 /* if we are casting between pointer types,
1930 we must update the VT_LVAL_xxx size */
1931 vtop
->r
= (vtop
->r
& ~VT_LVAL_TYPE
)
1932 | (lvalue_type(type
->ref
->type
.t
) & VT_LVAL_TYPE
);
1937 /* return type size. Put alignment at 'a' */
1938 ST_FUNC
int type_size(CType
*type
, int *a
)
1943 bt
= type
->t
& VT_BTYPE
;
1944 if (bt
== VT_STRUCT
) {
1947 *a
= s
->r
& 0xffffff;
1949 } else if (bt
== VT_PTR
) {
1950 if (type
->t
& VT_ARRAY
) {
1954 ts
= type_size(&s
->type
, a
);
1956 if (ts
< 0 && s
->c
< 0)
1964 } else if (bt
== VT_LDOUBLE
) {
1966 return LDOUBLE_SIZE
;
1967 } else if (bt
== VT_DOUBLE
|| bt
== VT_LLONG
) {
1968 #ifdef TCC_TARGET_I386
1969 #ifdef TCC_TARGET_PE
1974 #elif defined(TCC_TARGET_ARM)
1984 } else if (bt
== VT_INT
|| bt
== VT_ENUM
|| bt
== VT_FLOAT
) {
1987 } else if (bt
== VT_SHORT
) {
1991 /* char, void, function, _Bool */
1997 /* return the pointed type of t */
1998 static inline CType
*pointed_type(CType
*type
)
2000 return &type
->ref
->type
;
2003 /* modify type so that its it is a pointer to type. */
2004 ST_FUNC
void mk_pointer(CType
*type
)
2007 s
= sym_push(SYM_FIELD
, type
, 0, -1);
2008 type
->t
= VT_PTR
| (type
->t
& ~VT_TYPE
);
2012 /* compare function types. OLD functions match any new functions */
2013 static int is_compatible_func(CType
*type1
, CType
*type2
)
2019 if (!is_compatible_types(&s1
->type
, &s2
->type
))
2021 /* check func_call */
2022 if (FUNC_CALL(s1
->r
) != FUNC_CALL(s2
->r
))
2024 /* XXX: not complete */
2025 if (s1
->c
== FUNC_OLD
|| s2
->c
== FUNC_OLD
)
2029 while (s1
!= NULL
) {
2032 if (!is_compatible_parameter_types(&s1
->type
, &s2
->type
))
2042 /* return true if type1 and type2 are the same. If unqualified is
2043 true, qualifiers on the types are ignored.
2045 - enums are not checked as gcc __builtin_types_compatible_p ()
2047 static int compare_types(CType
*type1
, CType
*type2
, int unqualified
)
2051 t1
= type1
->t
& VT_TYPE
;
2052 t2
= type2
->t
& VT_TYPE
;
2054 /* strip qualifiers before comparing */
2055 t1
&= ~(VT_CONSTANT
| VT_VOLATILE
);
2056 t2
&= ~(VT_CONSTANT
| VT_VOLATILE
);
2058 /* XXX: bitfields ? */
2061 /* test more complicated cases */
2062 bt1
= t1
& VT_BTYPE
;
2063 if (bt1
== VT_PTR
) {
2064 type1
= pointed_type(type1
);
2065 type2
= pointed_type(type2
);
2066 return is_compatible_types(type1
, type2
);
2067 } else if (bt1
== VT_STRUCT
) {
2068 return (type1
->ref
== type2
->ref
);
2069 } else if (bt1
== VT_FUNC
) {
2070 return is_compatible_func(type1
, type2
);
2076 /* return true if type1 and type2 are exactly the same (including
2079 static int is_compatible_types(CType
*type1
, CType
*type2
)
2081 return compare_types(type1
,type2
,0);
2084 /* return true if type1 and type2 are the same (ignoring qualifiers).
2086 static int is_compatible_parameter_types(CType
*type1
, CType
*type2
)
2088 return compare_types(type1
,type2
,1);
2091 /* print a type. If 'varstr' is not NULL, then the variable is also
2092 printed in the type */
2094 /* XXX: add array and function pointers */
2095 static void type_to_str(char *buf
, int buf_size
,
2096 CType
*type
, const char *varstr
)
2103 t
= type
->t
& VT_TYPE
;
2106 if (t
& VT_CONSTANT
)
2107 pstrcat(buf
, buf_size
, "const ");
2108 if (t
& VT_VOLATILE
)
2109 pstrcat(buf
, buf_size
, "volatile ");
2110 if (t
& VT_UNSIGNED
)
2111 pstrcat(buf
, buf_size
, "unsigned ");
2141 tstr
= "long double";
2143 pstrcat(buf
, buf_size
, tstr
);
2147 if (bt
== VT_STRUCT
)
2151 pstrcat(buf
, buf_size
, tstr
);
2152 v
= type
->ref
->v
& ~SYM_STRUCT
;
2153 if (v
>= SYM_FIRST_ANOM
)
2154 pstrcat(buf
, buf_size
, "<anonymous>");
2156 pstrcat(buf
, buf_size
, get_tok_str(v
, NULL
));
2160 type_to_str(buf
, buf_size
, &s
->type
, varstr
);
2161 pstrcat(buf
, buf_size
, "(");
2163 while (sa
!= NULL
) {
2164 type_to_str(buf1
, sizeof(buf1
), &sa
->type
, NULL
);
2165 pstrcat(buf
, buf_size
, buf1
);
2168 pstrcat(buf
, buf_size
, ", ");
2170 pstrcat(buf
, buf_size
, ")");
2174 pstrcpy(buf1
, sizeof(buf1
), "*");
2176 pstrcat(buf1
, sizeof(buf1
), varstr
);
2177 type_to_str(buf
, buf_size
, &s
->type
, buf1
);
2181 pstrcat(buf
, buf_size
, " ");
2182 pstrcat(buf
, buf_size
, varstr
);
2187 /* verify type compatibility to store vtop in 'dt' type, and generate
2189 static void gen_assign_cast(CType
*dt
)
2191 CType
*st
, *type1
, *type2
, tmp_type1
, tmp_type2
;
2192 char buf1
[256], buf2
[256];
2195 st
= &vtop
->type
; /* source type */
2196 dbt
= dt
->t
& VT_BTYPE
;
2197 sbt
= st
->t
& VT_BTYPE
;
2198 if (dt
->t
& VT_CONSTANT
)
2199 warning("assignment of read-only location");
2202 /* special cases for pointers */
2203 /* '0' can also be a pointer */
2204 if (is_null_pointer(vtop
))
2206 /* accept implicit pointer to integer cast with warning */
2207 if (is_integer_btype(sbt
)) {
2208 warning("assignment makes pointer from integer without a cast");
2211 type1
= pointed_type(dt
);
2212 /* a function is implicitely a function pointer */
2213 if (sbt
== VT_FUNC
) {
2214 if ((type1
->t
& VT_BTYPE
) != VT_VOID
&&
2215 !is_compatible_types(pointed_type(dt
), st
))
2216 warning("assignment from incompatible pointer type");
2221 type2
= pointed_type(st
);
2222 if ((type1
->t
& VT_BTYPE
) == VT_VOID
||
2223 (type2
->t
& VT_BTYPE
) == VT_VOID
) {
2224 /* void * can match anything */
2226 /* exact type match, except for unsigned */
2229 tmp_type1
.t
&= ~(VT_UNSIGNED
| VT_CONSTANT
| VT_VOLATILE
);
2230 tmp_type2
.t
&= ~(VT_UNSIGNED
| VT_CONSTANT
| VT_VOLATILE
);
2231 if (!is_compatible_types(&tmp_type1
, &tmp_type2
))
2232 warning("assignment from incompatible pointer type");
2234 /* check const and volatile */
2235 if ((!(type1
->t
& VT_CONSTANT
) && (type2
->t
& VT_CONSTANT
)) ||
2236 (!(type1
->t
& VT_VOLATILE
) && (type2
->t
& VT_VOLATILE
)))
2237 warning("assignment discards qualifiers from pointer target type");
2243 if (sbt
== VT_PTR
|| sbt
== VT_FUNC
) {
2244 warning("assignment makes integer from pointer without a cast");
2246 /* XXX: more tests */
2251 tmp_type1
.t
&= ~(VT_CONSTANT
| VT_VOLATILE
);
2252 tmp_type2
.t
&= ~(VT_CONSTANT
| VT_VOLATILE
);
2253 if (!is_compatible_types(&tmp_type1
, &tmp_type2
)) {
2255 type_to_str(buf1
, sizeof(buf1
), st
, NULL
);
2256 type_to_str(buf2
, sizeof(buf2
), dt
, NULL
);
2257 error("cannot cast '%s' to '%s'", buf1
, buf2
);
2265 /* store vtop in lvalue pushed on stack */
2266 ST_FUNC
void vstore(void)
2268 int sbt
, dbt
, ft
, r
, t
, size
, align
, bit_size
, bit_pos
, rc
, delayed_cast
;
2270 ft
= vtop
[-1].type
.t
;
2271 sbt
= vtop
->type
.t
& VT_BTYPE
;
2272 dbt
= ft
& VT_BTYPE
;
2273 if (((sbt
== VT_INT
|| sbt
== VT_SHORT
) && dbt
== VT_BYTE
) ||
2274 (sbt
== VT_INT
&& dbt
== VT_SHORT
)) {
2275 /* optimize char/short casts */
2276 delayed_cast
= VT_MUSTCAST
;
2277 vtop
->type
.t
= ft
& (VT_TYPE
& ~(VT_BITFIELD
| (-1 << VT_STRUCT_SHIFT
)));
2278 /* XXX: factorize */
2279 if (ft
& VT_CONSTANT
)
2280 warning("assignment of read-only location");
2283 if (!(ft
& VT_BITFIELD
))
2284 gen_assign_cast(&vtop
[-1].type
);
2287 if (sbt
== VT_STRUCT
) {
2288 /* if structure, only generate pointer */
2289 /* structure assignment : generate memcpy */
2290 /* XXX: optimize if small size */
2291 if (!nocode_wanted
) {
2292 size
= type_size(&vtop
->type
, &align
);
2296 vtop
->type
.t
= VT_PTR
;
2299 /* address of memcpy() */
2302 vpush_global_sym(&func_old_type
, TOK_memcpy8
);
2303 else if(!(align
& 3))
2304 vpush_global_sym(&func_old_type
, TOK_memcpy4
);
2307 vpush_global_sym(&func_old_type
, TOK_memcpy
);
2312 vtop
->type
.t
= VT_PTR
;
2321 /* leave source on stack */
2322 } else if (ft
& VT_BITFIELD
) {
2323 /* bitfield store handling */
2324 bit_pos
= (ft
>> VT_STRUCT_SHIFT
) & 0x3f;
2325 bit_size
= (ft
>> (VT_STRUCT_SHIFT
+ 6)) & 0x3f;
2326 /* remove bit field info to avoid loops */
2327 vtop
[-1].type
.t
= ft
& ~(VT_BITFIELD
| (-1 << VT_STRUCT_SHIFT
));
2329 /* duplicate source into other register */
2334 if((ft
& VT_BTYPE
) == VT_BOOL
) {
2335 gen_cast(&vtop
[-1].type
);
2336 vtop
[-1].type
.t
= (vtop
[-1].type
.t
& ~VT_BTYPE
) | (VT_BYTE
| VT_UNSIGNED
);
2339 /* duplicate destination */
2341 vtop
[-1] = vtop
[-2];
2343 /* mask and shift source */
2344 if((ft
& VT_BTYPE
) != VT_BOOL
) {
2345 if((ft
& VT_BTYPE
) == VT_LLONG
) {
2346 vpushll((1ULL << bit_size
) - 1ULL);
2348 vpushi((1 << bit_size
) - 1);
2354 /* load destination, mask and or with source */
2356 if((ft
& VT_BTYPE
) == VT_LLONG
) {
2357 vpushll(~(((1ULL << bit_size
) - 1ULL) << bit_pos
));
2359 vpushi(~(((1 << bit_size
) - 1) << bit_pos
));
2366 /* pop off shifted source from "duplicate source..." above */
2370 #ifdef CONFIG_TCC_BCHECK
2371 /* bound check case */
2372 if (vtop
[-1].r
& VT_MUSTBOUND
) {
2378 if (!nocode_wanted
) {
2382 #ifdef TCC_TARGET_X86_64
2383 if ((ft
& VT_BTYPE
) == VT_LDOUBLE
) {
2388 r
= gv(rc
); /* generate value */
2389 /* if lvalue was saved on stack, must read it */
2390 if ((vtop
[-1].r
& VT_VALMASK
) == VT_LLOCAL
) {
2392 t
= get_reg(RC_INT
);
2393 #ifdef TCC_TARGET_X86_64
2398 sv
.r
= VT_LOCAL
| VT_LVAL
;
2399 sv
.c
.ul
= vtop
[-1].c
.ul
;
2401 vtop
[-1].r
= t
| VT_LVAL
;
2404 #ifndef TCC_TARGET_X86_64
2405 /* two word case handling : store second register at word + 4 */
2406 if ((ft
& VT_BTYPE
) == VT_LLONG
) {
2408 /* convert to int to increment easily */
2409 vtop
->type
.t
= VT_INT
;
2415 /* XXX: it works because r2 is spilled last ! */
2416 store(vtop
->r2
, vtop
- 1);
2421 vtop
--; /* NOT vpop() because on x86 it would flush the fp stack */
2422 vtop
->r
|= delayed_cast
;
2426 /* post defines POST/PRE add. c is the token ++ or -- */
2427 ST_FUNC
void inc(int post
, int c
)
2430 vdup(); /* save lvalue */
2432 gv_dup(); /* duplicate value */
2437 vpushi(c
- TOK_MID
);
2439 vstore(); /* store value */
2441 vpop(); /* if post op, return saved value */
2444 /* Parse GNUC __attribute__ extension. Currently, the following
2445 extensions are recognized:
2446 - aligned(n) : set data/function alignment.
2447 - packed : force data alignment to 1
2448 - section(x) : generate data/code in this section.
2449 - unused : currently ignored, but may be used someday.
2450 - regparm(n) : pass function parameters in registers (i386 only)
2452 static void parse_attribute(AttributeDef
*ad
)
2456 while (tok
== TOK_ATTRIBUTE1
|| tok
== TOK_ATTRIBUTE2
) {
2460 while (tok
!= ')') {
2461 if (tok
< TOK_IDENT
)
2462 expect("attribute name");
2470 expect("section name");
2471 ad
->section
= find_section(tcc_state
, (char *)tokc
.cstr
->data
);
2480 if (n
<= 0 || (n
& (n
- 1)) != 0)
2481 error("alignment must be a positive power of two");
2498 /* currently, no need to handle it because tcc does not
2499 track unused objects */
2503 /* currently, no need to handle it because tcc does not
2504 track unused objects */
2509 ad
->func_call
= FUNC_CDECL
;
2514 ad
->func_call
= FUNC_STDCALL
;
2516 #ifdef TCC_TARGET_I386
2526 ad
->func_call
= FUNC_FASTCALL1
+ n
- 1;
2532 ad
->func_call
= FUNC_FASTCALLW
;
2539 ad
->mode
= VT_LLONG
+ 1;
2542 ad
->mode
= VT_SHORT
+ 1;
2545 ad
->mode
= VT_INT
+ 1;
2548 warning("__mode__(%s) not supported\n", get_tok_str(tok
, NULL
));
2555 ad
->func_export
= 1;
2558 ad
->func_import
= 1;
2561 if (tcc_state
->warn_unsupported
)
2562 warning("'%s' attribute ignored", get_tok_str(t
, NULL
));
2563 /* skip parameters */
2565 int parenthesis
= 0;
2569 else if (tok
== ')')
2572 } while (parenthesis
&& tok
!= -1);
2585 /* enum/struct/union declaration. u is either VT_ENUM or VT_STRUCT */
2586 static void struct_decl(CType
*type
, int u
)
2588 int a
, v
, size
, align
, maxalign
, c
, offset
;
2589 int bit_size
, bit_pos
, bsize
, bt
, lbit_pos
, prevbt
, resize
;
2590 Sym
*s
, *ss
, *ass
, **ps
;
2594 a
= tok
; /* save decl type */
2599 /* struct already defined ? return it */
2601 expect("struct/union/enum name");
2605 error("invalid type");
2612 /* we put an undefined size for struct/union */
2613 s
= sym_push(v
| SYM_STRUCT
, &type1
, 0, -1);
2614 s
->r
= 0; /* default alignment is zero as gcc */
2615 /* put struct/union/enum name in type */
2623 error("struct/union/enum already defined");
2624 /* cannot be empty */
2626 /* non empty enums are not allowed */
2627 if (a
== TOK_ENUM
) {
2631 expect("identifier");
2637 /* enum symbols have static storage */
2638 ss
= sym_push(v
, &int_type
, VT_CONST
, c
);
2639 ss
->type
.t
|= VT_STATIC
;
2644 /* NOTE: we accept a trailing comma */
2656 while (tok
!= '}') {
2657 parse_btype(&btype
, &ad
);
2663 type_decl(&type1
, &ad
, &v
, TYPE_DIRECT
| TYPE_ABSTRACT
);
2664 if (v
== 0 && (type1
.t
& VT_BTYPE
) != VT_STRUCT
)
2665 expect("identifier");
2666 if ((type1
.t
& VT_BTYPE
) == VT_FUNC
||
2667 (type1
.t
& (VT_TYPEDEF
| VT_STATIC
| VT_EXTERN
| VT_INLINE
)))
2668 error("invalid type for '%s'",
2669 get_tok_str(v
, NULL
));
2673 bit_size
= expr_const();
2674 /* XXX: handle v = 0 case for messages */
2676 error("negative width in bit-field '%s'",
2677 get_tok_str(v
, NULL
));
2678 if (v
&& bit_size
== 0)
2679 error("zero width for bit-field '%s'",
2680 get_tok_str(v
, NULL
));
2682 size
= type_size(&type1
, &align
);
2684 if (align
< ad
.aligned
)
2686 } else if (ad
.packed
) {
2688 } else if (*tcc_state
->pack_stack_ptr
) {
2689 if (align
> *tcc_state
->pack_stack_ptr
)
2690 align
= *tcc_state
->pack_stack_ptr
;
2693 if (bit_size
>= 0) {
2694 bt
= type1
.t
& VT_BTYPE
;
2701 error("bitfields must have scalar type");
2703 if (bit_size
> bsize
) {
2704 error("width of '%s' exceeds its type",
2705 get_tok_str(v
, NULL
));
2706 } else if (bit_size
== bsize
) {
2707 /* no need for bit fields */
2709 } else if (bit_size
== 0) {
2710 /* XXX: what to do if only padding in a
2712 /* zero size: means to pad */
2715 /* we do not have enough room ?
2716 did the type change?
2718 if ((bit_pos
+ bit_size
) > bsize
||
2719 bt
!= prevbt
|| a
== TOK_UNION
)
2722 /* XXX: handle LSB first */
2723 type1
.t
|= VT_BITFIELD
|
2724 (bit_pos
<< VT_STRUCT_SHIFT
) |
2725 (bit_size
<< (VT_STRUCT_SHIFT
+ 6));
2726 bit_pos
+= bit_size
;
2732 if (v
!= 0 || (type1
.t
& VT_BTYPE
) == VT_STRUCT
) {
2733 /* add new memory data only if starting
2735 if (lbit_pos
== 0) {
2736 if (a
== TOK_STRUCT
) {
2737 c
= (c
+ align
- 1) & -align
;
2748 if (align
> maxalign
)
2752 printf("add field %s offset=%d",
2753 get_tok_str(v
, NULL
), offset
);
2754 if (type1
.t
& VT_BITFIELD
) {
2755 printf(" pos=%d size=%d",
2756 (type1
.t
>> VT_STRUCT_SHIFT
) & 0x3f,
2757 (type1
.t
>> (VT_STRUCT_SHIFT
+ 6)) & 0x3f);
2762 if (v
== 0 && (type1
.t
& VT_BTYPE
) == VT_STRUCT
) {
2764 while ((ass
= ass
->next
) != NULL
) {
2765 ss
= sym_push(ass
->v
, &ass
->type
, 0, offset
+ ass
->c
);
2770 ss
= sym_push(v
| SYM_FIELD
, &type1
, 0, offset
);
2774 if (tok
== ';' || tok
== TOK_EOF
)
2781 /* store size and alignment */
2782 s
->c
= (c
+ maxalign
- 1) & -maxalign
;
2783 s
->r
= maxalign
| (resize
? (1 << 31) : 0);
2788 /* return 0 if no type declaration. otherwise, return the basic type
2791 static int parse_btype(CType
*type
, AttributeDef
*ad
)
2793 int t
, u
, type_found
, typespec_found
, typedef_found
;
2797 memset(ad
, 0, sizeof(AttributeDef
));
2805 /* currently, we really ignore extension */
2815 if ((t
& VT_BTYPE
) != 0)
2816 error("too many basic types");
2832 if ((t
& VT_BTYPE
) == VT_DOUBLE
) {
2833 #ifndef TCC_TARGET_PE
2834 t
= (t
& ~VT_BTYPE
) | VT_LDOUBLE
;
2836 } else if ((t
& VT_BTYPE
) == VT_LONG
) {
2837 t
= (t
& ~VT_BTYPE
) | VT_LLONG
;
2851 if ((t
& VT_BTYPE
) == VT_LONG
) {
2852 #ifdef TCC_TARGET_PE
2853 t
= (t
& ~VT_BTYPE
) | VT_DOUBLE
;
2855 t
= (t
& ~VT_BTYPE
) | VT_LDOUBLE
;
2863 struct_decl(&type1
, VT_ENUM
);
2866 type
->ref
= type1
.ref
;
2870 struct_decl(&type1
, VT_STRUCT
);
2873 /* type modifiers */
2926 /* GNUC attribute */
2927 case TOK_ATTRIBUTE1
:
2928 case TOK_ATTRIBUTE2
:
2929 parse_attribute(ad
);
2932 t
= (t
& ~VT_BTYPE
) | u
;
2940 parse_expr_type(&type1
);
2943 if (typespec_found
|| typedef_found
)
2946 if (!s
|| !(s
->type
.t
& VT_TYPEDEF
))
2949 t
|= (s
->type
.t
& ~VT_TYPEDEF
);
2950 type
->ref
= s
->type
.ref
;
2952 /* get attributes from typedef */
2953 if (0 == ad
->aligned
)
2954 ad
->aligned
= FUNC_ALIGN(s
->r
);
2955 if (0 == ad
->func_call
)
2956 ad
->func_call
= FUNC_CALL(s
->r
);
2957 ad
->packed
|= FUNC_PACKED(s
->r
);
2966 if ((t
& (VT_SIGNED
|VT_UNSIGNED
)) == (VT_SIGNED
|VT_UNSIGNED
))
2967 error("signed and unsigned modifier");
2968 if (tcc_state
->char_is_unsigned
) {
2969 if ((t
& (VT_SIGNED
|VT_UNSIGNED
|VT_BTYPE
)) == VT_BYTE
)
2974 /* long is never used as type */
2975 if ((t
& VT_BTYPE
) == VT_LONG
)
2976 #if !defined TCC_TARGET_X86_64 || defined TCC_TARGET_PE
2977 t
= (t
& ~VT_BTYPE
) | VT_INT
;
2979 t
= (t
& ~VT_BTYPE
) | VT_LLONG
;
2985 /* convert a function parameter type (array to pointer and function to
2986 function pointer) */
2987 static inline void convert_parameter_type(CType
*pt
)
2989 /* remove const and volatile qualifiers (XXX: const could be used
2990 to indicate a const function parameter */
2991 pt
->t
&= ~(VT_CONSTANT
| VT_VOLATILE
);
2992 /* array must be transformed to pointer according to ANSI C */
2994 if ((pt
->t
& VT_BTYPE
) == VT_FUNC
) {
2999 ST_FUNC
void parse_asm_str(CString
*astr
)
3002 /* read the string */
3004 expect("string constant");
3006 while (tok
== TOK_STR
) {
3007 /* XXX: add \0 handling too ? */
3008 cstr_cat(astr
, tokc
.cstr
->data
);
3011 cstr_ccat(astr
, '\0');
3014 /* Parse an asm label and return the label
3015 * Don't forget to free the CString in the caller! */
3016 static void asm_label_instr(CString
*astr
)
3019 parse_asm_str(astr
);
3022 printf("asm_alias: \"%s\"\n", (char *)astr
->data
);
3026 static void post_type(CType
*type
, AttributeDef
*ad
)
3028 int n
, l
, t1
, arg_size
, align
;
3029 Sym
**plast
, *s
, *first
;
3034 /* function declaration */
3042 /* read param name and compute offset */
3043 if (l
!= FUNC_OLD
) {
3044 if (!parse_btype(&pt
, &ad1
)) {
3046 error("invalid type");
3053 if ((pt
.t
& VT_BTYPE
) == VT_VOID
&& tok
== ')')
3055 type_decl(&pt
, &ad1
, &n
, TYPE_DIRECT
| TYPE_ABSTRACT
);
3056 if ((pt
.t
& VT_BTYPE
) == VT_VOID
)
3057 error("parameter declared as void");
3058 arg_size
+= (type_size(&pt
, &align
) + PTR_SIZE
- 1) / PTR_SIZE
;
3063 expect("identifier");
3067 convert_parameter_type(&pt
);
3068 s
= sym_push(n
| SYM_FIELD
, &pt
, 0, 0);
3074 if (l
== FUNC_NEW
&& tok
== TOK_DOTS
) {
3081 /* if no parameters, then old type prototype */
3085 t1
= type
->t
& VT_STORAGE
;
3086 /* NOTE: const is ignored in returned type as it has a special
3087 meaning in gcc / C++ */
3088 type
->t
&= ~(VT_STORAGE
| VT_CONSTANT
);
3089 post_type(type
, ad
);
3090 /* we push a anonymous symbol which will contain the function prototype */
3091 ad
->func_args
= arg_size
;
3092 s
= sym_push(SYM_FIELD
, type
, INT_ATTR(ad
), l
);
3094 type
->t
= t1
| VT_FUNC
;
3096 } else if (tok
== '[') {
3097 /* array definition */
3099 if (tok
== TOK_RESTRICT1
)
3105 error("invalid array size");
3108 /* parse next post type */
3109 t1
= type
->t
& VT_STORAGE
;
3110 type
->t
&= ~VT_STORAGE
;
3111 post_type(type
, ad
);
3113 /* we push a anonymous symbol which will contain the array
3115 s
= sym_push(SYM_FIELD
, type
, 0, n
);
3117 ARRAY_RESIZE(s
->r
) = 1;
3118 type
->t
= t1
| VT_ARRAY
| VT_PTR
;
3123 /* Parse a type declaration (except basic type), and return the type
3124 in 'type'. 'td' is a bitmask indicating which kind of type decl is
3125 expected. 'type' should contain the basic type. 'ad' is the
3126 attribute definition of the basic type. It can be modified by
3129 static void type_decl(CType
*type
, AttributeDef
*ad
, int *v
, int td
)
3132 CType type1
, *type2
;
3135 while (tok
== '*') {
3143 qualifiers
|= VT_CONSTANT
;
3148 qualifiers
|= VT_VOLATILE
;
3156 type
->t
|= qualifiers
;
3159 /* XXX: clarify attribute handling */
3160 if (tok
== TOK_ATTRIBUTE1
|| tok
== TOK_ATTRIBUTE2
)
3161 parse_attribute(ad
);
3163 /* recursive type */
3164 /* XXX: incorrect if abstract type for functions (e.g. 'int ()') */
3165 type1
.t
= 0; /* XXX: same as int */
3168 /* XXX: this is not correct to modify 'ad' at this point, but
3169 the syntax is not clear */
3170 if (tok
== TOK_ATTRIBUTE1
|| tok
== TOK_ATTRIBUTE2
)
3171 parse_attribute(ad
);
3172 type_decl(&type1
, ad
, v
, td
);
3175 /* type identifier */
3176 if (tok
>= TOK_IDENT
&& (td
& TYPE_DIRECT
)) {
3180 if (!(td
& TYPE_ABSTRACT
))
3181 expect("identifier");
3185 post_type(type
, ad
);
3186 if (tok
== TOK_ATTRIBUTE1
|| tok
== TOK_ATTRIBUTE2
)
3187 parse_attribute(ad
);
3191 /* append type at the end of type1 */
3204 /* compute the lvalue VT_LVAL_xxx needed to match type t. */
3205 ST_FUNC
int lvalue_type(int t
)
3210 if (bt
== VT_BYTE
|| bt
== VT_BOOL
)
3212 else if (bt
== VT_SHORT
)
3216 if (t
& VT_UNSIGNED
)
3217 r
|= VT_LVAL_UNSIGNED
;
3221 /* indirection with full error checking and bound check */
3222 ST_FUNC
void indir(void)
3224 if ((vtop
->type
.t
& VT_BTYPE
) != VT_PTR
) {
3225 if ((vtop
->type
.t
& VT_BTYPE
) == VT_FUNC
)
3229 if ((vtop
->r
& VT_LVAL
) && !nocode_wanted
)
3231 vtop
->type
= *pointed_type(&vtop
->type
);
3232 /* Arrays and functions are never lvalues */
3233 if (!(vtop
->type
.t
& VT_ARRAY
)
3234 && (vtop
->type
.t
& VT_BTYPE
) != VT_FUNC
) {
3235 vtop
->r
|= lvalue_type(vtop
->type
.t
);
3236 /* if bound checking, the referenced pointer must be checked */
3237 #ifdef CONFIG_TCC_BCHECK
3238 if (tcc_state
->do_bounds_check
)
3239 vtop
->r
|= VT_MUSTBOUND
;
3244 /* pass a parameter to a function and do type checking and casting */
3245 static void gfunc_param_typed(Sym
*func
, Sym
*arg
)
3250 func_type
= func
->c
;
3251 if (func_type
== FUNC_OLD
||
3252 (func_type
== FUNC_ELLIPSIS
&& arg
== NULL
)) {
3253 /* default casting : only need to convert float to double */
3254 if ((vtop
->type
.t
& VT_BTYPE
) == VT_FLOAT
) {
3258 } else if (arg
== NULL
) {
3259 error("too many arguments to function");
3262 type
.t
&= ~VT_CONSTANT
; /* need to do that to avoid false warning */
3263 gen_assign_cast(&type
);
3267 /* parse an expression of the form '(type)' or '(expr)' and return its
3269 static void parse_expr_type(CType
*type
)
3275 if (parse_btype(type
, &ad
)) {
3276 type_decl(type
, &ad
, &n
, TYPE_ABSTRACT
);
3283 static void parse_type(CType
*type
)
3288 if (!parse_btype(type
, &ad
)) {
3291 type_decl(type
, &ad
, &n
, TYPE_ABSTRACT
);
3294 static void vpush_tokc(int t
)
3299 vsetc(&type
, VT_CONST
, &tokc
);
3302 ST_FUNC
void unary(void)
3304 int n
, t
, align
, size
, r
, sizeof_caller
;
3308 static int in_sizeof
= 0;
3310 sizeof_caller
= in_sizeof
;
3312 /* XXX: GCC 2.95.3 does not generate a table although it should be
3326 vpush_tokc(VT_INT
| VT_UNSIGNED
);
3330 vpush_tokc(VT_LLONG
);
3334 vpush_tokc(VT_LLONG
| VT_UNSIGNED
);
3338 vpush_tokc(VT_FLOAT
);
3342 vpush_tokc(VT_DOUBLE
);
3346 vpush_tokc(VT_LDOUBLE
);
3349 case TOK___FUNCTION__
:
3351 goto tok_identifier
;
3357 /* special function name identifier */
3358 len
= strlen(funcname
) + 1;
3359 /* generate char[len] type */
3364 vpush_ref(&type
, data_section
, data_section
->data_offset
, len
);
3365 ptr
= section_ptr_add(data_section
, len
);
3366 memcpy(ptr
, funcname
, len
);
3371 #ifdef TCC_TARGET_PE
3372 t
= VT_SHORT
| VT_UNSIGNED
;
3378 /* string parsing */
3381 if (tcc_state
->warn_write_strings
)
3386 memset(&ad
, 0, sizeof(AttributeDef
));
3387 decl_initializer_alloc(&type
, &ad
, VT_CONST
, 2, 0, NULL
, 0);
3392 if (parse_btype(&type
, &ad
)) {
3393 type_decl(&type
, &ad
, &n
, TYPE_ABSTRACT
);
3395 /* check ISOC99 compound literal */
3397 /* data is allocated locally by default */
3402 /* all except arrays are lvalues */
3403 if (!(type
.t
& VT_ARRAY
))
3404 r
|= lvalue_type(type
.t
);
3405 memset(&ad
, 0, sizeof(AttributeDef
));
3406 decl_initializer_alloc(&type
, &ad
, r
, 1, 0, NULL
, 0);
3408 if (sizeof_caller
) {
3415 } else if (tok
== '{') {
3416 /* save all registers */
3418 /* statement expression : we do not accept break/continue
3419 inside as GCC does */
3420 block(NULL
, NULL
, NULL
, NULL
, 0, 1);
3435 /* functions names must be treated as function pointers,
3436 except for unary '&' and sizeof. Since we consider that
3437 functions are not lvalues, we only have to handle it
3438 there and in function calls. */
3439 /* arrays can also be used although they are not lvalues */
3440 if ((vtop
->type
.t
& VT_BTYPE
) != VT_FUNC
&&
3441 !(vtop
->type
.t
& VT_ARRAY
) && !(vtop
->type
.t
& VT_LLOCAL
))
3443 mk_pointer(&vtop
->type
);
3449 if ((vtop
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) == VT_CONST
) {
3451 boolean
.t
= VT_BOOL
;
3453 vtop
->c
.i
= !vtop
->c
.i
;
3454 } else if ((vtop
->r
& VT_VALMASK
) == VT_CMP
)
3455 vtop
->c
.i
= vtop
->c
.i
^ 1;
3458 vseti(VT_JMP
, gtst(1, 0));
3469 /* in order to force cast, we add zero */
3471 if ((vtop
->type
.t
& VT_BTYPE
) == VT_PTR
)
3472 error("pointer not accepted for unary plus");
3482 unary_type(&type
); // Perform a in_sizeof = 0;
3483 size
= type_size(&type
, &align
);
3484 if (t
== TOK_SIZEOF
) {
3486 error("sizeof applied to an incomplete type");
3491 vtop
->type
.t
|= VT_UNSIGNED
;
3494 case TOK_builtin_types_compatible_p
:
3503 type1
.t
&= ~(VT_CONSTANT
| VT_VOLATILE
);
3504 type2
.t
&= ~(VT_CONSTANT
| VT_VOLATILE
);
3505 vpushi(is_compatible_types(&type1
, &type2
));
3508 case TOK_builtin_constant_p
:
3510 int saved_nocode_wanted
, res
;
3513 saved_nocode_wanted
= nocode_wanted
;
3516 res
= (vtop
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) == VT_CONST
;
3518 nocode_wanted
= saved_nocode_wanted
;
3523 case TOK_builtin_frame_address
:
3528 if (tok
!= TOK_CINT
) {
3529 error("__builtin_frame_address only takes integers");
3532 error("TCC only supports __builtin_frame_address(0)");
3538 vset(&type
, VT_LOCAL
, 0);
3541 #ifdef TCC_TARGET_X86_64
3542 case TOK_builtin_va_arg_types
:
3544 /* This definition must be synced with stdarg.h */
3545 enum __va_arg_type
{
3546 __va_gen_reg
, __va_float_reg
, __va_stack
3554 bt
= type
.t
& VT_BTYPE
;
3555 if (bt
== VT_STRUCT
|| bt
== VT_LDOUBLE
) {
3557 } else if (bt
== VT_FLOAT
|| bt
== VT_DOUBLE
) {
3558 vpushi(__va_float_reg
);
3560 vpushi(__va_gen_reg
);
3580 goto tok_identifier
;
3582 /* allow to take the address of a label */
3583 if (tok
< TOK_UIDENT
)
3584 expect("label identifier");
3585 s
= label_find(tok
);
3587 s
= label_push(&global_label_stack
, tok
, LABEL_FORWARD
);
3589 if (s
->r
== LABEL_DECLARED
)
3590 s
->r
= LABEL_FORWARD
;
3593 s
->type
.t
= VT_VOID
;
3594 mk_pointer(&s
->type
);
3595 s
->type
.t
|= VT_STATIC
;
3597 vset(&s
->type
, VT_CONST
| VT_SYM
, 0);
3602 // special qnan , snan and infinity values
3604 vpush64(VT_DOUBLE
, 0x7ff8000000000000ULL
);
3608 vpush64(VT_DOUBLE
, 0x7ff0000000000001ULL
);
3612 vpush64(VT_DOUBLE
, 0x7ff0000000000000ULL
);
3621 expect("identifier");
3625 error("'%s' undeclared", get_tok_str(t
, NULL
));
3626 /* for simple function calls, we tolerate undeclared
3627 external reference to int() function */
3628 if (tcc_state
->warn_implicit_function_declaration
)
3629 warning("implicit declaration of function '%s'",
3630 get_tok_str(t
, NULL
));
3631 s
= external_global_sym(t
, &func_old_type
, 0);
3633 if ((s
->type
.t
& (VT_STATIC
| VT_INLINE
| VT_BTYPE
)) ==
3634 (VT_STATIC
| VT_INLINE
| VT_FUNC
)) {
3635 /* if referencing an inline function, then we generate a
3636 symbol to it if not already done. It will have the
3637 effect to generate code for it at the end of the
3638 compilation unit. Inline function as always
3639 generated in the text section. */
3641 put_extern_sym(s
, text_section
, 0, 0);
3642 r
= VT_SYM
| VT_CONST
;
3646 vset(&s
->type
, r
, s
->c
);
3647 /* if forward reference, we must point to s */
3648 if (vtop
->r
& VT_SYM
) {
3655 /* post operations */
3657 if (tok
== TOK_INC
|| tok
== TOK_DEC
) {
3660 } else if (tok
== '.' || tok
== TOK_ARROW
) {
3663 if (tok
== TOK_ARROW
)
3665 qualifiers
= vtop
->type
.t
& (VT_CONSTANT
| VT_VOLATILE
);
3669 /* expect pointer on structure */
3670 if ((vtop
->type
.t
& VT_BTYPE
) != VT_STRUCT
)
3671 expect("struct or union");
3675 while ((s
= s
->next
) != NULL
) {
3680 error("field not found: %s", get_tok_str(tok
& ~SYM_FIELD
, NULL
));
3681 /* add field offset to pointer */
3682 vtop
->type
= char_pointer_type
; /* change type to 'char *' */
3685 /* change type to field type, and set to lvalue */
3686 vtop
->type
= s
->type
;
3687 vtop
->type
.t
|= qualifiers
;
3688 /* an array is never an lvalue */
3689 if (!(vtop
->type
.t
& VT_ARRAY
)) {
3690 vtop
->r
|= lvalue_type(vtop
->type
.t
);
3691 #ifdef CONFIG_TCC_BCHECK
3692 /* if bound checking, the referenced pointer must be checked */
3693 if (tcc_state
->do_bounds_check
)
3694 vtop
->r
|= VT_MUSTBOUND
;
3698 } else if (tok
== '[') {
3704 } else if (tok
== '(') {
3710 if ((vtop
->type
.t
& VT_BTYPE
) != VT_FUNC
) {
3711 /* pointer test (no array accepted) */
3712 if ((vtop
->type
.t
& (VT_BTYPE
| VT_ARRAY
)) == VT_PTR
) {
3713 vtop
->type
= *pointed_type(&vtop
->type
);
3714 if ((vtop
->type
.t
& VT_BTYPE
) != VT_FUNC
)
3718 expect("function pointer");
3721 vtop
->r
&= ~VT_LVAL
; /* no lvalue */
3723 /* get return type */
3726 sa
= s
->next
; /* first parameter */
3729 /* compute first implicit argument if a structure is returned */
3730 if ((s
->type
.t
& VT_BTYPE
) == VT_STRUCT
) {
3731 /* get some space for the returned structure */
3732 size
= type_size(&s
->type
, &align
);
3733 loc
= (loc
- size
) & -align
;
3735 ret
.r
= VT_LOCAL
| VT_LVAL
;
3736 /* pass it as 'int' to avoid structure arg passing
3738 vseti(VT_LOCAL
, loc
);
3743 /* return in register */
3744 if (is_float(ret
.type
.t
)) {
3745 ret
.r
= reg_fret(ret
.type
.t
);
3747 if ((ret
.type
.t
& VT_BTYPE
) == VT_LLONG
)
3756 gfunc_param_typed(s
, sa
);
3766 error("too few arguments to function");
3768 if (!nocode_wanted
) {
3769 gfunc_call(nb_args
);
3771 vtop
-= (nb_args
+ 1);
3774 vsetc(&ret
.type
, ret
.r
, &ret
.c
);
3782 ST_FUNC
void expr_prod(void)
3787 while (tok
== '*' || tok
== '/' || tok
== '%') {
3795 ST_FUNC
void expr_sum(void)
3800 while (tok
== '+' || tok
== '-') {
3808 static void expr_shift(void)
3813 while (tok
== TOK_SHL
|| tok
== TOK_SAR
) {
3821 static void expr_cmp(void)
3826 while ((tok
>= TOK_ULE
&& tok
<= TOK_GT
) ||
3827 tok
== TOK_ULT
|| tok
== TOK_UGE
) {
3835 static void expr_cmpeq(void)
3840 while (tok
== TOK_EQ
|| tok
== TOK_NE
) {
3848 static void expr_and(void)
3851 while (tok
== '&') {
3858 static void expr_xor(void)
3861 while (tok
== '^') {
3868 static void expr_or(void)
3871 while (tok
== '|') {
3878 /* XXX: fix this mess */
3879 static void expr_land_const(void)
3882 while (tok
== TOK_LAND
) {
3889 /* XXX: fix this mess */
3890 static void expr_lor_const(void)
3893 while (tok
== TOK_LOR
) {
3900 /* only used if non constant */
3901 static void expr_land(void)
3906 if (tok
== TOK_LAND
) {
3911 if (tok
!= TOK_LAND
) {
3921 static void expr_lor(void)
3926 if (tok
== TOK_LOR
) {
3931 if (tok
!= TOK_LOR
) {
3941 /* XXX: better constant handling */
3942 static void expr_cond(void)
3944 int tt
, u
, r1
, r2
, rc
, t1
, t2
, bt1
, bt2
;
3946 CType type
, type1
, type2
;
3953 boolean
.t
= VT_BOOL
;
3959 if (tok
!= ':' || !gnu_ext
) {
3974 if (vtop
!= vstack
) {
3975 /* needed to avoid having different registers saved in
3977 if (is_float(vtop
->type
.t
)) {
3979 #ifdef TCC_TARGET_X86_64
3980 if ((vtop
->type
.t
& VT_BTYPE
) == VT_LDOUBLE
) {
3990 if (tok
== ':' && gnu_ext
) {
3998 sv
= *vtop
; /* save value to handle it later */
3999 vtop
--; /* no vpop so that FP stack is not flushed */
4007 bt1
= t1
& VT_BTYPE
;
4009 bt2
= t2
& VT_BTYPE
;
4010 /* cast operands to correct type according to ISOC rules */
4011 if (is_float(bt1
) || is_float(bt2
)) {
4012 if (bt1
== VT_LDOUBLE
|| bt2
== VT_LDOUBLE
) {
4013 type
.t
= VT_LDOUBLE
;
4014 } else if (bt1
== VT_DOUBLE
|| bt2
== VT_DOUBLE
) {
4019 } else if (bt1
== VT_LLONG
|| bt2
== VT_LLONG
) {
4020 /* cast to biggest op */
4022 /* convert to unsigned if it does not fit in a long long */
4023 if ((t1
& (VT_BTYPE
| VT_UNSIGNED
)) == (VT_LLONG
| VT_UNSIGNED
) ||
4024 (t2
& (VT_BTYPE
| VT_UNSIGNED
)) == (VT_LLONG
| VT_UNSIGNED
))
4025 type
.t
|= VT_UNSIGNED
;
4026 } else if (bt1
== VT_PTR
|| bt2
== VT_PTR
) {
4027 /* XXX: test pointer compatibility */
4029 } else if (bt1
== VT_FUNC
|| bt2
== VT_FUNC
) {
4030 /* XXX: test function pointer compatibility */
4032 } else if (bt1
== VT_STRUCT
|| bt2
== VT_STRUCT
) {
4033 /* XXX: test structure compatibility */
4035 } else if (bt1
== VT_VOID
|| bt2
== VT_VOID
) {
4036 /* NOTE: as an extension, we accept void on only one side */
4039 /* integer operations */
4041 /* convert to unsigned if it does not fit in an integer */
4042 if ((t1
& (VT_BTYPE
| VT_UNSIGNED
)) == (VT_INT
| VT_UNSIGNED
) ||
4043 (t2
& (VT_BTYPE
| VT_UNSIGNED
)) == (VT_INT
| VT_UNSIGNED
))
4044 type
.t
|= VT_UNSIGNED
;
4047 /* now we convert second operand */
4049 if (VT_STRUCT
== (vtop
->type
.t
& VT_BTYPE
))
4052 if (is_float(type
.t
)) {
4054 #ifdef TCC_TARGET_X86_64
4055 if ((type
.t
& VT_BTYPE
) == VT_LDOUBLE
) {
4059 } else if ((type
.t
& VT_BTYPE
) == VT_LLONG
) {
4060 /* for long longs, we use fixed registers to avoid having
4061 to handle a complicated move */
4066 /* this is horrible, but we must also convert first
4070 /* put again first value and cast it */
4073 if (VT_STRUCT
== (vtop
->type
.t
& VT_BTYPE
))
4083 static void expr_eq(void)
4089 (tok
>= TOK_A_MOD
&& tok
<= TOK_A_DIV
) ||
4090 tok
== TOK_A_XOR
|| tok
== TOK_A_OR
||
4091 tok
== TOK_A_SHL
|| tok
== TOK_A_SAR
) {
4106 ST_FUNC
void gexpr(void)
4117 /* parse an expression and return its type without any side effect. */
4118 static void expr_type(CType
*type
)
4120 int saved_nocode_wanted
;
4122 saved_nocode_wanted
= nocode_wanted
;
4127 nocode_wanted
= saved_nocode_wanted
;
4130 /* parse a unary expression and return its type without any side
4132 static void unary_type(CType
*type
)
4144 /* parse a constant expression and return value in vtop. */
4145 static void expr_const1(void)
4154 /* parse an integer constant and return its value. */
4155 ST_FUNC
int expr_const(void)
4159 if ((vtop
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) != VT_CONST
)
4160 expect("constant expression");
4166 /* return the label token if current token is a label, otherwise
4168 static int is_label(void)
4172 /* fast test first */
4173 if (tok
< TOK_UIDENT
)
4175 /* no need to save tokc because tok is an identifier */
4182 unget_tok(last_tok
);
4187 static void block(int *bsym
, int *csym
, int *case_sym
, int *def_sym
,
4188 int case_reg
, int is_expr
)
4193 /* generate line number info */
4194 if (tcc_state
->do_debug
&&
4195 (last_line_num
!= file
->line_num
|| last_ind
!= ind
)) {
4196 put_stabn(N_SLINE
, 0, file
->line_num
, ind
- func_ind
);
4198 last_line_num
= file
->line_num
;
4202 /* default return value is (void) */
4204 vtop
->type
.t
= VT_VOID
;
4207 if (tok
== TOK_IF
) {
4214 block(bsym
, csym
, case_sym
, def_sym
, case_reg
, 0);
4216 if (c
== TOK_ELSE
) {
4220 block(bsym
, csym
, case_sym
, def_sym
, case_reg
, 0);
4221 gsym(d
); /* patch else jmp */
4224 } else if (tok
== TOK_WHILE
) {
4232 block(&a
, &b
, case_sym
, def_sym
, case_reg
, 0);
4236 } else if (tok
== '{') {
4240 /* record local declaration stack position */
4242 llabel
= local_label_stack
;
4243 /* handle local labels declarations */
4244 if (tok
== TOK_LABEL
) {
4247 if (tok
< TOK_UIDENT
)
4248 expect("label identifier");
4249 label_push(&local_label_stack
, tok
, LABEL_DECLARED
);
4259 while (tok
!= '}') {
4264 block(bsym
, csym
, case_sym
, def_sym
, case_reg
, is_expr
);
4267 /* pop locally defined labels */
4268 label_pop(&local_label_stack
, llabel
);
4269 /* pop locally defined symbols */
4271 /* XXX: this solution makes only valgrind happy...
4272 triggered by gcc.c-torture/execute/20000917-1.c */
4274 switch(vtop
->type
.t
& VT_BTYPE
) {
4279 for(p
=vtop
->type
.ref
;p
;p
=p
->prev
)
4281 error("unsupported expression type");
4284 sym_pop(&local_stack
, s
);
4286 } else if (tok
== TOK_RETURN
) {
4290 gen_assign_cast(&func_vt
);
4291 if ((func_vt
.t
& VT_BTYPE
) == VT_STRUCT
) {
4293 /* if returning structure, must copy it to implicit
4294 first pointer arg location */
4297 size
= type_size(&func_vt
,&align
);
4300 if((vtop
->r
!= (VT_LOCAL
| VT_LVAL
) || (vtop
->c
.i
& 3))
4304 loc
= (loc
- size
) & -4;
4307 vset(&type
, VT_LOCAL
| VT_LVAL
, addr
);
4310 vset(&int_type
, VT_LOCAL
| VT_LVAL
, addr
);
4312 vtop
->type
= int_type
;
4318 vset(&type
, VT_LOCAL
| VT_LVAL
, func_vc
);
4321 /* copy structure value to pointer */
4326 } else if (is_float(func_vt
.t
)) {
4327 gv(rc_fret(func_vt
.t
));
4331 vtop
--; /* NOT vpop() because on x86 it would flush the fp stack */
4334 rsym
= gjmp(rsym
); /* jmp */
4335 } else if (tok
== TOK_BREAK
) {
4338 error("cannot break");
4339 *bsym
= gjmp(*bsym
);
4342 } else if (tok
== TOK_CONTINUE
) {
4345 error("cannot continue");
4346 *csym
= gjmp(*csym
);
4349 } else if (tok
== TOK_FOR
) {
4376 block(&a
, &b
, case_sym
, def_sym
, case_reg
, 0);
4381 if (tok
== TOK_DO
) {
4386 block(&a
, &b
, case_sym
, def_sym
, case_reg
, 0);
4397 if (tok
== TOK_SWITCH
) {
4401 /* XXX: other types than integer */
4402 case_reg
= gv(RC_INT
);
4406 b
= gjmp(0); /* jump to first case */
4408 block(&a
, csym
, &b
, &c
, case_reg
, 0);
4409 /* if no default, jmp after switch */
4417 if (tok
== TOK_CASE
) {
4424 if (gnu_ext
&& tok
== TOK_DOTS
) {
4428 warning("empty case range");
4430 /* since a case is like a label, we must skip it with a jmp */
4437 *case_sym
= gtst(1, 0);
4440 *case_sym
= gtst(1, 0);
4444 *case_sym
= gtst(1, *case_sym
);
4449 goto block_after_label
;
4451 if (tok
== TOK_DEFAULT
) {
4457 error("too many 'default'");
4460 goto block_after_label
;
4462 if (tok
== TOK_GOTO
) {
4464 if (tok
== '*' && gnu_ext
) {
4468 if ((vtop
->type
.t
& VT_BTYPE
) != VT_PTR
)
4471 } else if (tok
>= TOK_UIDENT
) {
4472 s
= label_find(tok
);
4473 /* put forward definition if needed */
4475 s
= label_push(&global_label_stack
, tok
, LABEL_FORWARD
);
4477 if (s
->r
== LABEL_DECLARED
)
4478 s
->r
= LABEL_FORWARD
;
4480 /* label already defined */
4481 if (s
->r
& LABEL_FORWARD
)
4482 s
->jnext
= gjmp(s
->jnext
);
4484 gjmp_addr(s
->jnext
);
4487 expect("label identifier");
4490 } else if (tok
== TOK_ASM1
|| tok
== TOK_ASM2
|| tok
== TOK_ASM3
) {
4498 if (s
->r
== LABEL_DEFINED
)
4499 error("duplicate label '%s'", get_tok_str(s
->v
, NULL
));
4501 s
->r
= LABEL_DEFINED
;
4503 s
= label_push(&global_label_stack
, b
, LABEL_DEFINED
);
4506 /* we accept this, but it is a mistake */
4509 warning("deprecated use of label at end of compound statement");
4513 block(bsym
, csym
, case_sym
, def_sym
, case_reg
, is_expr
);
4516 /* expression case */
4531 /* t is the array or struct type. c is the array or struct
4532 address. cur_index/cur_field is the pointer to the current
4533 value. 'size_only' is true if only size info is needed (only used
4535 static void decl_designator(CType
*type
, Section
*sec
, unsigned long c
,
4536 int *cur_index
, Sym
**cur_field
,
4540 int notfirst
, index
, index_last
, align
, l
, nb_elems
, elem_size
;
4546 if (gnu_ext
&& (l
= is_label()) != 0)
4548 while (tok
== '[' || tok
== '.') {
4550 if (!(type
->t
& VT_ARRAY
))
4551 expect("array type");
4554 index
= expr_const();
4555 if (index
< 0 || (s
->c
>= 0 && index
>= s
->c
))
4556 expect("invalid index");
4557 if (tok
== TOK_DOTS
&& gnu_ext
) {
4559 index_last
= expr_const();
4560 if (index_last
< 0 ||
4561 (s
->c
>= 0 && index_last
>= s
->c
) ||
4563 expect("invalid index");
4569 *cur_index
= index_last
;
4570 type
= pointed_type(type
);
4571 elem_size
= type_size(type
, &align
);
4572 c
+= index
* elem_size
;
4573 /* NOTE: we only support ranges for last designator */
4574 nb_elems
= index_last
- index
+ 1;
4575 if (nb_elems
!= 1) {
4584 if ((type
->t
& VT_BTYPE
) != VT_STRUCT
)
4585 expect("struct/union type");
4598 /* XXX: fix this mess by using explicit storage field */
4600 type1
.t
|= (type
->t
& ~VT_TYPE
);
4614 if (type
->t
& VT_ARRAY
) {
4616 type
= pointed_type(type
);
4617 c
+= index
* type_size(type
, &align
);
4621 error("too many field init");
4622 /* XXX: fix this mess by using explicit storage field */
4624 type1
.t
|= (type
->t
& ~VT_TYPE
);
4629 decl_initializer(type
, sec
, c
, 0, size_only
);
4631 /* XXX: make it more general */
4632 if (!size_only
&& nb_elems
> 1) {
4633 unsigned long c_end
;
4638 error("range init not supported yet for dynamic storage");
4639 c_end
= c
+ nb_elems
* elem_size
;
4640 if (c_end
> sec
->data_allocated
)
4641 section_realloc(sec
, c_end
);
4642 src
= sec
->data
+ c
;
4644 for(i
= 1; i
< nb_elems
; i
++) {
4646 memcpy(dst
, src
, elem_size
);
4652 #define EXPR_CONST 1
4655 /* store a value or an expression directly in global data or in local array */
4656 static void init_putv(CType
*type
, Section
*sec
, unsigned long c
,
4657 int v
, int expr_type
)
4659 int saved_global_expr
, bt
, bit_pos
, bit_size
;
4661 unsigned long long bit_mask
;
4669 /* compound literals must be allocated globally in this case */
4670 saved_global_expr
= global_expr
;
4673 global_expr
= saved_global_expr
;
4674 /* NOTE: symbols are accepted */
4675 if ((vtop
->r
& (VT_VALMASK
| VT_LVAL
)) != VT_CONST
)
4676 error("initializer element is not constant");
4684 dtype
.t
&= ~VT_CONSTANT
; /* need to do that to avoid false warning */
4687 /* XXX: not portable */
4688 /* XXX: generate error if incorrect relocation */
4689 gen_assign_cast(&dtype
);
4690 bt
= type
->t
& VT_BTYPE
;
4691 /* we'll write at most 12 bytes */
4692 if (c
+ 12 > sec
->data_allocated
) {
4693 section_realloc(sec
, c
+ 12);
4695 ptr
= sec
->data
+ c
;
4696 /* XXX: make code faster ? */
4697 if (!(type
->t
& VT_BITFIELD
)) {
4702 bit_pos
= (vtop
->type
.t
>> VT_STRUCT_SHIFT
) & 0x3f;
4703 bit_size
= (vtop
->type
.t
>> (VT_STRUCT_SHIFT
+ 6)) & 0x3f;
4704 bit_mask
= (1LL << bit_size
) - 1;
4706 if ((vtop
->r
& VT_SYM
) &&
4712 (bt
== VT_INT
&& bit_size
!= 32)))
4713 error("initializer element is not computable at load time");
4716 vtop
->c
.i
= (vtop
->c
.i
!= 0);
4718 *(char *)ptr
|= (vtop
->c
.i
& bit_mask
) << bit_pos
;
4721 *(short *)ptr
|= (vtop
->c
.i
& bit_mask
) << bit_pos
;
4724 *(double *)ptr
= vtop
->c
.d
;
4727 *(long double *)ptr
= vtop
->c
.ld
;
4730 *(long long *)ptr
|= (vtop
->c
.ll
& bit_mask
) << bit_pos
;
4733 if (vtop
->r
& VT_SYM
) {
4734 greloc(sec
, vtop
->sym
, c
, R_DATA_PTR
);
4736 *(int *)ptr
|= (vtop
->c
.i
& bit_mask
) << bit_pos
;
4741 vset(&dtype
, VT_LOCAL
|VT_LVAL
, c
);
4748 /* put zeros for variable based init */
4749 static void init_putz(CType
*t
, Section
*sec
, unsigned long c
, int size
)
4752 /* nothing to do because globals are already set to zero */
4754 vpush_global_sym(&func_old_type
, TOK_memset
);
4762 /* 't' contains the type and storage info. 'c' is the offset of the
4763 object in section 'sec'. If 'sec' is NULL, it means stack based
4764 allocation. 'first' is true if array '{' must be read (multi
4765 dimension implicit array init handling). 'size_only' is true if
4766 size only evaluation is wanted (only for arrays). */
4767 static void decl_initializer(CType
*type
, Section
*sec
, unsigned long c
,
4768 int first
, int size_only
)
4770 int index
, array_length
, n
, no_oblock
, nb
, parlevel
, parlevel1
, i
;
4771 int size1
, align1
, expr_type
;
4775 if (type
->t
& VT_ARRAY
) {
4779 t1
= pointed_type(type
);
4780 size1
= type_size(t1
, &align1
);
4783 if ((first
&& tok
!= TOK_LSTR
&& tok
!= TOK_STR
) ||
4786 error("character array initializer must be a literal,"
4787 " optionally enclosed in braces");
4792 /* only parse strings here if correct type (otherwise: handle
4793 them as ((w)char *) expressions */
4794 if ((tok
== TOK_LSTR
&&
4795 #ifdef TCC_TARGET_PE
4796 (t1
->t
& VT_BTYPE
) == VT_SHORT
&& (t1
->t
& VT_UNSIGNED
)
4798 (t1
->t
& VT_BTYPE
) == VT_INT
4800 ) || (tok
== TOK_STR
&& (t1
->t
& VT_BTYPE
) == VT_BYTE
)) {
4801 while (tok
== TOK_STR
|| tok
== TOK_LSTR
) {
4806 /* compute maximum number of chars wanted */
4808 cstr_len
= cstr
->size
;
4810 cstr_len
= cstr
->size
/ sizeof(nwchar_t
);
4813 if (n
>= 0 && nb
> (n
- array_length
))
4814 nb
= n
- array_length
;
4817 warning("initializer-string for array is too long");
4818 /* in order to go faster for common case (char
4819 string in global variable, we handle it
4821 if (sec
&& tok
== TOK_STR
&& size1
== 1) {
4822 memcpy(sec
->data
+ c
+ array_length
, cstr
->data
, nb
);
4826 ch
= ((unsigned char *)cstr
->data
)[i
];
4828 ch
= ((nwchar_t
*)cstr
->data
)[i
];
4829 init_putv(t1
, sec
, c
+ (array_length
+ i
) * size1
,
4837 /* only add trailing zero if enough storage (no
4838 warning in this case since it is standard) */
4839 if (n
< 0 || array_length
< n
) {
4841 init_putv(t1
, sec
, c
+ (array_length
* size1
), 0, EXPR_VAL
);
4847 if (ARRAY_RESIZE(s
->r
))
4849 while (tok
!= '}') {
4850 decl_designator(type
, sec
, c
, &index
, NULL
, size_only
);
4851 if (n
>= 0 && index
>= n
)
4852 error("index too large");
4853 /* must put zero in holes (note that doing it that way
4854 ensures that it even works with designators) */
4855 if (!size_only
&& array_length
< index
) {
4856 init_putz(t1
, sec
, c
+ array_length
* size1
,
4857 (index
- array_length
) * size1
);
4860 if (index
> array_length
)
4861 array_length
= index
;
4862 /* special test for multi dimensional arrays (may not
4863 be strictly correct if designators are used at the
4865 if (index
>= n
&& no_oblock
)
4874 /* put zeros at the end */
4875 if (!size_only
&& n
>= 0 && array_length
< n
) {
4876 init_putz(t1
, sec
, c
+ array_length
* size1
,
4877 (n
- array_length
) * size1
);
4879 /* patch type size if needed */
4881 s
->c
= array_length
;
4882 } else if ((type
->t
& VT_BTYPE
) == VT_STRUCT
&&
4883 (sec
|| !first
|| tok
== '{')) {
4886 /* NOTE: the previous test is a specific case for automatic
4887 struct/union init */
4888 /* XXX: union needs only one init */
4890 /* XXX: this test is incorrect for local initializers
4891 beginning with ( without {. It would be much more difficult
4892 to do it correctly (ideally, the expression parser should
4893 be used in all cases) */
4899 while (tok
== '(') {
4903 if (!parse_btype(&type1
, &ad1
))
4905 type_decl(&type1
, &ad1
, &n
, TYPE_ABSTRACT
);
4907 if (!is_assignable_types(type
, &type1
))
4908 error("invalid type for cast");
4913 if (first
|| tok
== '{') {
4924 while (tok
!= '}') {
4925 decl_designator(type
, sec
, c
, NULL
, &f
, size_only
);
4927 if (!size_only
&& array_length
< index
) {
4928 init_putz(type
, sec
, c
+ array_length
,
4929 index
- array_length
);
4931 index
= index
+ type_size(&f
->type
, &align1
);
4932 if (index
> array_length
)
4933 array_length
= index
;
4935 /* gr: skip fields from same union - ugly. */
4937 ///printf("index: %2d %08x -- %2d %08x\n", f->c, f->type.t, f->next->c, f->next->type.t);
4938 /* test for same offset */
4939 if (f
->next
->c
!= f
->c
)
4941 /* if yes, test for bitfield shift */
4942 if ((f
->type
.t
& VT_BITFIELD
) && (f
->next
->type
.t
& VT_BITFIELD
)) {
4943 int bit_pos_1
= (f
->type
.t
>> VT_STRUCT_SHIFT
) & 0x3f;
4944 int bit_pos_2
= (f
->next
->type
.t
>> VT_STRUCT_SHIFT
) & 0x3f;
4945 //printf("bitfield %d %d\n", bit_pos_1, bit_pos_2);
4946 if (bit_pos_1
!= bit_pos_2
)
4953 if (no_oblock
&& f
== NULL
)
4959 /* put zeros at the end */
4960 if (!size_only
&& n
>= 0 && array_length
< n
) {
4961 init_putz(type
, sec
, c
+ array_length
,
4971 s
->c
= array_length
;
4972 } else if (tok
== '{') {
4974 decl_initializer(type
, sec
, c
, first
, size_only
);
4976 } else if (size_only
) {
4977 /* just skip expression */
4978 parlevel
= parlevel1
= 0;
4979 while ((parlevel
> 0 || parlevel1
> 0 ||
4980 (tok
!= '}' && tok
!= ',')) && tok
!= -1) {
4983 else if (tok
== ')')
4985 else if (tok
== '{')
4987 else if (tok
== '}')
4992 /* currently, we always use constant expression for globals
4993 (may change for scripting case) */
4994 expr_type
= EXPR_CONST
;
4996 expr_type
= EXPR_ANY
;
4997 init_putv(type
, sec
, c
, 0, expr_type
);
5001 /* parse an initializer for type 't' if 'has_init' is non zero, and
5002 allocate space in local or global data space ('r' is either
5003 VT_LOCAL or VT_CONST). If 'v' is non zero, then an associated
5004 variable 'v' with an associated name represented by 'asm_label' of
5005 scope 'scope' is declared before initializers are parsed. If 'v' is
5006 zero, then a reference to the new object is put in the value stack.
5007 If 'has_init' is 2, a special parsing is done to handle string
5009 static void decl_initializer_alloc(CType
*type
, AttributeDef
*ad
, int r
,
5010 int has_init
, int v
, char *asm_label
,
5013 int size
, align
, addr
, data_offset
;
5015 ParseState saved_parse_state
= {0};
5016 TokenString init_str
;
5019 /* resize the struct */
5020 if ((type
->t
& VT_BTYPE
) == VT_STRUCT
&& (type
->ref
->r
& (1<<31)) != 0)
5022 size
= type_size(type
, &align
);
5023 /* If unknown size, we must evaluate it before
5024 evaluating initializers because
5025 initializers can generate global data too
5026 (e.g. string pointers or ISOC99 compound
5027 literals). It also simplifies local
5028 initializers handling */
5029 tok_str_new(&init_str
);
5032 error("unknown type size");
5033 /* get all init string */
5034 if (has_init
== 2) {
5035 /* only get strings */
5036 while (tok
== TOK_STR
|| tok
== TOK_LSTR
) {
5037 tok_str_add_tok(&init_str
);
5042 while (level
> 0 || (tok
!= ',' && tok
!= ';')) {
5044 error("unexpected end of file in initializer");
5045 tok_str_add_tok(&init_str
);
5048 else if (tok
== '}') {
5058 tok_str_add(&init_str
, -1);
5059 tok_str_add(&init_str
, 0);
5062 save_parse_state(&saved_parse_state
);
5064 macro_ptr
= init_str
.str
;
5066 decl_initializer(type
, NULL
, 0, 1, 1);
5067 /* prepare second initializer parsing */
5068 macro_ptr
= init_str
.str
;
5071 /* if still unknown size, error */
5072 size
= type_size(type
, &align
);
5074 error("unknown type size");
5076 /* take into account specified alignment if bigger */
5078 if (ad
->aligned
> align
)
5079 align
= ad
->aligned
;
5080 } else if (ad
->packed
) {
5083 if ((r
& VT_VALMASK
) == VT_LOCAL
) {
5085 #ifdef CONFIG_TCC_BCHECK
5086 if (tcc_state
->do_bounds_check
&& (type
->t
& VT_ARRAY
))
5089 loc
= (loc
- size
) & -align
;
5091 #ifdef CONFIG_TCC_BCHECK
5092 /* handles bounds */
5093 /* XXX: currently, since we do only one pass, we cannot track
5094 '&' operators, so we add only arrays */
5095 if (tcc_state
->do_bounds_check
&& (type
->t
& VT_ARRAY
)) {
5096 unsigned long *bounds_ptr
;
5097 /* add padding between regions */
5099 /* then add local bound info */
5100 bounds_ptr
= section_ptr_add(lbounds_section
, 2 * sizeof(unsigned long));
5101 bounds_ptr
[0] = addr
;
5102 bounds_ptr
[1] = size
;
5106 /* local variable */
5107 sym_push(v
, type
, r
, addr
);
5109 /* push local reference */
5110 vset(type
, r
, addr
);
5116 if (v
&& scope
== VT_CONST
) {
5117 /* see if the symbol was already defined */
5120 if (!is_compatible_types(&sym
->type
, type
))
5121 error("incompatible types for redefinition of '%s'",
5122 get_tok_str(v
, NULL
));
5123 if (sym
->type
.t
& VT_EXTERN
) {
5124 /* if the variable is extern, it was not allocated */
5125 sym
->type
.t
&= ~VT_EXTERN
;
5126 /* set array size if it was ommited in extern
5128 if ((sym
->type
.t
& VT_ARRAY
) &&
5129 sym
->type
.ref
->c
< 0 &&
5131 sym
->type
.ref
->c
= type
->ref
->c
;
5133 /* we accept several definitions of the same
5134 global variable. this is tricky, because we
5135 must play with the SHN_COMMON type of the symbol */
5136 /* XXX: should check if the variable was already
5137 initialized. It is incorrect to initialized it
5139 /* no init data, we won't add more to the symbol */
5146 /* allocate symbol in corresponding section */
5151 else if (tcc_state
->nocommon
)
5155 data_offset
= sec
->data_offset
;
5156 data_offset
= (data_offset
+ align
- 1) & -align
;
5158 /* very important to increment global pointer at this time
5159 because initializers themselves can create new initializers */
5160 data_offset
+= size
;
5161 #ifdef CONFIG_TCC_BCHECK
5162 /* add padding if bound check */
5163 if (tcc_state
->do_bounds_check
)
5166 sec
->data_offset
= data_offset
;
5167 /* allocate section space to put the data */
5168 if (sec
->sh_type
!= SHT_NOBITS
&&
5169 data_offset
> sec
->data_allocated
)
5170 section_realloc(sec
, data_offset
);
5171 /* align section if needed */
5172 if (align
> sec
->sh_addralign
)
5173 sec
->sh_addralign
= align
;
5175 addr
= 0; /* avoid warning */
5179 if (scope
!= VT_CONST
|| !sym
) {
5180 sym
= sym_push(v
, type
, r
| VT_SYM
, 0);
5181 sym
->asm_label
= asm_label
;
5183 /* update symbol definition */
5185 put_extern_sym(sym
, sec
, addr
, size
);
5188 /* put a common area */
5189 put_extern_sym(sym
, NULL
, align
, size
);
5190 /* XXX: find a nicer way */
5191 esym
= &((ElfW(Sym
) *)symtab_section
->data
)[sym
->c
];
5192 esym
->st_shndx
= SHN_COMMON
;
5197 /* push global reference */
5198 sym
= get_sym_ref(type
, sec
, addr
, size
);
5200 vsetc(type
, VT_CONST
| VT_SYM
, &cval
);
5203 /* patch symbol weakness */
5204 if (type
->t
& VT_WEAK
) {
5205 unsigned char *st_info
=
5206 &((ElfW(Sym
) *)symtab_section
->data
)[sym
->c
].st_info
;
5207 *st_info
= ELF32_ST_INFO(STB_WEAK
, ELF32_ST_TYPE(*st_info
));
5209 #ifdef CONFIG_TCC_BCHECK
5210 /* handles bounds now because the symbol must be defined
5211 before for the relocation */
5212 if (tcc_state
->do_bounds_check
) {
5213 unsigned long *bounds_ptr
;
5215 greloc(bounds_section
, sym
, bounds_section
->data_offset
, R_DATA_PTR
);
5216 /* then add global bound info */
5217 bounds_ptr
= section_ptr_add(bounds_section
, 2 * sizeof(long));
5218 bounds_ptr
[0] = 0; /* relocated */
5219 bounds_ptr
[1] = size
;
5224 decl_initializer(type
, sec
, addr
, 1, 0);
5225 /* restore parse state if needed */
5227 tok_str_free(init_str
.str
);
5228 restore_parse_state(&saved_parse_state
);
5234 static void put_func_debug(Sym
*sym
)
5239 /* XXX: we put here a dummy type */
5240 snprintf(buf
, sizeof(buf
), "%s:%c1",
5241 funcname
, sym
->type
.t
& VT_STATIC
? 'f' : 'F');
5242 put_stabs_r(buf
, N_FUN
, 0, file
->line_num
, 0,
5243 cur_text_section
, sym
->c
);
5244 /* //gr gdb wants a line at the function */
5245 put_stabn(N_SLINE
, 0, file
->line_num
, 0);
5250 /* parse an old style function declaration list */
5251 /* XXX: check multiple parameter */
5252 static void func_decl_list(Sym
*func_sym
)
5259 /* parse each declaration */
5260 while (tok
!= '{' && tok
!= ';' && tok
!= ',' && tok
!= TOK_EOF
&&
5261 tok
!= TOK_ASM1
&& tok
!= TOK_ASM2
&& tok
!= TOK_ASM3
) {
5262 if (!parse_btype(&btype
, &ad
))
5263 expect("declaration list");
5264 if (((btype
.t
& VT_BTYPE
) == VT_ENUM
||
5265 (btype
.t
& VT_BTYPE
) == VT_STRUCT
) &&
5267 /* we accept no variable after */
5271 type_decl(&type
, &ad
, &v
, TYPE_DIRECT
);
5272 /* find parameter in function parameter list */
5275 if ((s
->v
& ~SYM_FIELD
) == v
)
5279 error("declaration for parameter '%s' but no such parameter",
5280 get_tok_str(v
, NULL
));
5282 /* check that no storage specifier except 'register' was given */
5283 if (type
.t
& VT_STORAGE
)
5284 error("storage class specified for '%s'", get_tok_str(v
, NULL
));
5285 convert_parameter_type(&type
);
5286 /* we can add the type (NOTE: it could be local to the function) */
5288 /* accept other parameters */
5299 /* parse a function defined by symbol 'sym' and generate its code in
5300 'cur_text_section' */
5301 static void gen_function(Sym
*sym
)
5303 int saved_nocode_wanted
= nocode_wanted
;
5305 ind
= cur_text_section
->data_offset
;
5306 /* NOTE: we patch the symbol size later */
5307 put_extern_sym(sym
, cur_text_section
, ind
, 0);
5308 funcname
= get_tok_str(sym
->v
, NULL
);
5310 /* put debug symbol */
5311 if (tcc_state
->do_debug
)
5312 put_func_debug(sym
);
5313 /* push a dummy symbol to enable local sym storage */
5314 sym_push2(&local_stack
, SYM_FIELD
, 0, 0);
5315 gfunc_prolog(&sym
->type
);
5317 block(NULL
, NULL
, NULL
, NULL
, 0, 0);
5320 cur_text_section
->data_offset
= ind
;
5321 label_pop(&global_label_stack
, NULL
);
5322 sym_pop(&local_stack
, NULL
); /* reset local stack */
5323 /* end of function */
5324 /* patch symbol size */
5325 ((ElfW(Sym
) *)symtab_section
->data
)[sym
->c
].st_size
=
5327 /* patch symbol weakness (this definition overrules any prototype) */
5328 if (sym
->type
.t
& VT_WEAK
) {
5329 unsigned char *st_info
=
5330 &((ElfW(Sym
) *)symtab_section
->data
)[sym
->c
].st_info
;
5331 *st_info
= ELF32_ST_INFO(STB_WEAK
, ELF32_ST_TYPE(*st_info
));
5333 if (tcc_state
->do_debug
) {
5334 put_stabn(N_FUN
, 0, 0, ind
- func_ind
);
5336 /* It's better to crash than to generate wrong code */
5337 cur_text_section
= NULL
;
5338 funcname
= ""; /* for safety */
5339 func_vt
.t
= VT_VOID
; /* for safety */
5340 ind
= 0; /* for safety */
5341 nocode_wanted
= saved_nocode_wanted
;
5344 ST_FUNC
void gen_inline_functions(void)
5347 int *str
, inline_generated
, i
;
5348 struct InlineFunc
*fn
;
5350 /* iterate while inline function are referenced */
5352 inline_generated
= 0;
5353 for (i
= 0; i
< tcc_state
->nb_inline_fns
; ++i
) {
5354 fn
= tcc_state
->inline_fns
[i
];
5356 if (sym
&& sym
->c
) {
5357 /* the function was used: generate its code and
5358 convert it to a normal function */
5359 str
= fn
->token_str
;
5362 strcpy(file
->filename
, fn
->filename
);
5363 sym
->r
= VT_SYM
| VT_CONST
;
5364 sym
->type
.t
&= ~VT_INLINE
;
5368 cur_text_section
= text_section
;
5370 macro_ptr
= NULL
; /* fail safe */
5372 inline_generated
= 1;
5375 if (!inline_generated
)
5378 for (i
= 0; i
< tcc_state
->nb_inline_fns
; ++i
) {
5379 fn
= tcc_state
->inline_fns
[i
];
5380 str
= fn
->token_str
;
5383 dynarray_reset(&tcc_state
->inline_fns
, &tcc_state
->nb_inline_fns
);
5386 /* 'l' is VT_LOCAL or VT_CONST to define default storage type */
5387 ST_FUNC
void decl(int l
)
5395 if (!parse_btype(&btype
, &ad
)) {
5396 /* skip redundant ';' */
5397 /* XXX: find more elegant solution */
5402 if (l
== VT_CONST
&&
5403 (tok
== TOK_ASM1
|| tok
== TOK_ASM2
|| tok
== TOK_ASM3
)) {
5404 /* global asm block */
5408 /* special test for old K&R protos without explicit int
5409 type. Only accepted when defining global data */
5410 if (l
== VT_LOCAL
|| tok
< TOK_DEFINE
)
5414 if (((btype
.t
& VT_BTYPE
) == VT_ENUM
||
5415 (btype
.t
& VT_BTYPE
) == VT_STRUCT
) &&
5417 /* we accept no variable after */
5421 while (1) { /* iterate thru each declaration */
5422 char *asm_label
; // associated asm label
5424 type_decl(&type
, &ad
, &v
, TYPE_DIRECT
);
5428 type_to_str(buf
, sizeof(buf
), t
, get_tok_str(v
, NULL
));
5429 printf("type = '%s'\n", buf
);
5432 if ((type
.t
& VT_BTYPE
) == VT_FUNC
) {
5433 if ((type
.t
& VT_STATIC
) && (l
== VT_LOCAL
)) {
5434 error("function without file scope cannot be static");
5436 /* if old style function prototype, we accept a
5439 if (sym
->c
== FUNC_OLD
)
5440 func_decl_list(sym
);
5444 if (gnu_ext
&& (tok
== TOK_ASM1
|| tok
== TOK_ASM2
|| tok
== TOK_ASM3
)) {
5447 asm_label_instr(&astr
);
5448 asm_label
= tcc_strdup(astr
.data
);
5451 /* parse one last attribute list, after asm label */
5452 parse_attribute(&ad
);
5457 #ifdef TCC_TARGET_PE
5459 type
.t
|= VT_IMPORT
;
5461 type
.t
|= VT_EXPORT
;
5465 error("cannot use local functions");
5466 if ((type
.t
& VT_BTYPE
) != VT_FUNC
)
5467 expect("function definition");
5469 /* reject abstract declarators in function definition */
5471 while ((sym
= sym
->next
) != NULL
)
5472 if (!(sym
->v
& ~SYM_FIELD
))
5473 expect("identifier");
5475 /* XXX: cannot do better now: convert extern line to static inline */
5476 if ((type
.t
& (VT_EXTERN
| VT_INLINE
)) == (VT_EXTERN
| VT_INLINE
))
5477 type
.t
= (type
.t
& ~VT_EXTERN
) | VT_STATIC
;
5481 if ((sym
->type
.t
& VT_BTYPE
) != VT_FUNC
)
5484 r
= sym
->type
.ref
->r
;
5485 /* use func_call from prototype if not defined */
5486 if (FUNC_CALL(r
) != FUNC_CDECL
5487 && FUNC_CALL(type
.ref
->r
) == FUNC_CDECL
)
5488 FUNC_CALL(type
.ref
->r
) = FUNC_CALL(r
);
5490 /* use export from prototype */
5492 FUNC_EXPORT(type
.ref
->r
) = 1;
5494 /* use static from prototype */
5495 if (sym
->type
.t
& VT_STATIC
)
5496 type
.t
= (type
.t
& ~VT_EXTERN
) | VT_STATIC
;
5498 if (!is_compatible_types(&sym
->type
, &type
)) {
5500 error("incompatible types for redefinition of '%s'",
5501 get_tok_str(v
, NULL
));
5503 /* if symbol is already defined, then put complete type */
5506 /* put function symbol */
5507 sym
= global_identifier_push(v
, type
.t
, 0);
5508 sym
->type
.ref
= type
.ref
;
5511 /* static inline functions are just recorded as a kind
5512 of macro. Their code will be emitted at the end of
5513 the compilation unit only if they are used */
5514 if ((type
.t
& (VT_INLINE
| VT_STATIC
)) ==
5515 (VT_INLINE
| VT_STATIC
)) {
5516 TokenString func_str
;
5518 struct InlineFunc
*fn
;
5519 const char *filename
;
5521 tok_str_new(&func_str
);
5527 error("unexpected end of file");
5528 tok_str_add_tok(&func_str
);
5533 } else if (t
== '}') {
5535 if (block_level
== 0)
5539 tok_str_add(&func_str
, -1);
5540 tok_str_add(&func_str
, 0);
5541 filename
= file
? file
->filename
: "";
5542 fn
= tcc_malloc(sizeof *fn
+ strlen(filename
));
5543 strcpy(fn
->filename
, filename
);
5545 fn
->token_str
= func_str
.str
;
5546 dynarray_add((void ***)&tcc_state
->inline_fns
, &tcc_state
->nb_inline_fns
, fn
);
5549 /* compute text section */
5550 cur_text_section
= ad
.section
;
5551 if (!cur_text_section
)
5552 cur_text_section
= text_section
;
5553 sym
->r
= VT_SYM
| VT_CONST
;
5558 if (btype
.t
& VT_TYPEDEF
) {
5559 /* save typedefed type */
5560 /* XXX: test storage specifiers ? */
5561 sym
= sym_push(v
, &type
, INT_ATTR(&ad
), 0);
5562 sym
->type
.t
|= VT_TYPEDEF
;
5563 } else if ((type
.t
& VT_BTYPE
) == VT_FUNC
) {
5564 /* external function definition */
5565 /* specific case for func_call attribute */
5566 type
.ref
->r
= INT_ATTR(&ad
);
5567 external_sym(v
, &type
, 0, asm_label
);
5569 /* not lvalue if array */
5571 if (!(type
.t
& VT_ARRAY
))
5572 r
|= lvalue_type(type
.t
);
5573 has_init
= (tok
== '=');
5574 if ((btype
.t
& VT_EXTERN
) ||
5575 ((type
.t
& VT_ARRAY
) && (type
.t
& VT_STATIC
) &&
5576 !has_init
&& l
== VT_CONST
&& type
.ref
->c
< 0)) {
5577 /* external variable */
5578 /* NOTE: as GCC, uninitialized global static
5579 arrays of null size are considered as
5581 external_sym(v
, &type
, r
, asm_label
);
5583 type
.t
|= (btype
.t
& VT_STATIC
); /* Retain "static". */
5584 if (type
.t
& VT_STATIC
)
5590 decl_initializer_alloc(&type
, &ad
, r
, has_init
, v
, asm_label
, l
);