Report error when redefining enumerator
[tinycc.git] / tccgen.c
blob0f0aac586c83390b6d6ac6189601221ec2f05448
1 /*
2 * TCC - Tiny C Compiler
3 *
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
21 #include "tcc.h"
23 /********************************************************/
24 /* global variables */
26 /* loc : local variable index
27 ind : output code index
28 rsym: return symbol
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 */
35 #ifdef CONFIG_TCC_ASM
36 ST_DATA Section *last_text_section; /* to handle .previous asm directive */
37 #endif
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 */
42 #endif
43 /* symbol sections */
44 ST_DATA Section *symtab_section, *strtab_section;
45 /* debug sections */
46 ST_DATA Section *stab_section, *stabstr_section;
47 ST_DATA Sym *sym_free_first;
48 ST_DATA void **sym_pools;
49 ST_DATA int nb_sym_pools;
51 ST_DATA Sym *global_stack;
52 ST_DATA Sym *local_stack;
53 ST_DATA Sym *scope_stack_bottom;
54 ST_DATA Sym *define_stack;
55 ST_DATA Sym *global_label_stack;
56 ST_DATA Sym *local_label_stack;
58 ST_DATA int vla_sp_loc_tmp; /* vla_sp_loc is set to this when the value won't be needed later */
59 ST_DATA int vla_sp_root_loc; /* vla_sp_loc for SP before any VLAs were pushed */
60 ST_DATA int *vla_sp_loc; /* Pointer to variable holding location to store stack pointer on the stack when modifying stack pointer */
61 ST_DATA int vla_flags; /* VLA_* flags */
63 ST_DATA SValue __vstack[1+VSTACK_SIZE], *vtop;
65 ST_DATA int const_wanted; /* true if constant wanted */
66 ST_DATA int nocode_wanted; /* true if no code generation wanted for an expression */
67 ST_DATA int global_expr; /* true if compound literals must be allocated globally (used during initializers parsing */
68 ST_DATA CType func_vt; /* current function return type (used by return instruction) */
69 ST_DATA int func_vc;
70 ST_DATA int last_line_num, last_ind, func_ind; /* debug last line number and pc */
71 ST_DATA char *funcname;
73 ST_DATA CType char_pointer_type, func_old_type, int_type, size_type;
75 /* ------------------------------------------------------------------------- */
76 static void gen_cast(CType *type);
77 static inline CType *pointed_type(CType *type);
78 static int is_compatible_types(CType *type1, CType *type2);
79 static int parse_btype(CType *type, AttributeDef *ad);
80 static void type_decl(CType *type, AttributeDef *ad, int *v, int td);
81 static void parse_expr_type(CType *type);
82 static void decl_initializer(CType *type, Section *sec, unsigned long c, int first, int size_only);
83 static void block(int *bsym, int *csym, int *case_sym, int *def_sym, int case_reg, int is_expr);
84 static void decl_initializer_alloc(CType *type, AttributeDef *ad, int r, int has_init, int v, char *asm_label, int scope);
85 static int decl0(int l, int is_for_loop_init);
86 static void expr_eq(void);
87 static void unary_type(CType *type);
88 static void vla_runtime_type_size(CType *type, int *a);
89 static void vla_sp_save(void);
90 static int is_compatible_parameter_types(CType *type1, CType *type2);
91 static void expr_type(CType *type);
93 ST_INLN int is_float(int t)
95 int bt;
96 bt = t & VT_BTYPE;
97 return bt == VT_LDOUBLE || bt == VT_DOUBLE || bt == VT_FLOAT || bt == VT_QFLOAT;
100 /* we use our own 'finite' function to avoid potential problems with
101 non standard math libs */
102 /* XXX: endianness dependent */
103 ST_FUNC int ieee_finite(double d)
105 int *p = (int *)&d;
106 return ((unsigned)((p[1] | 0x800fffff) + 1)) >> 31;
109 ST_FUNC void test_lvalue(void)
111 if (!(vtop->r & VT_LVAL))
112 expect("lvalue");
115 /* ------------------------------------------------------------------------- */
116 /* symbol allocator */
117 static Sym *__sym_malloc(void)
119 Sym *sym_pool, *sym, *last_sym;
120 int i;
122 sym_pool = tcc_malloc(SYM_POOL_NB * sizeof(Sym));
123 dynarray_add(&sym_pools, &nb_sym_pools, sym_pool);
125 last_sym = sym_free_first;
126 sym = sym_pool;
127 for(i = 0; i < SYM_POOL_NB; i++) {
128 sym->next = last_sym;
129 last_sym = sym;
130 sym++;
132 sym_free_first = last_sym;
133 return last_sym;
136 static inline Sym *sym_malloc(void)
138 Sym *sym;
139 sym = sym_free_first;
140 if (!sym)
141 sym = __sym_malloc();
142 sym_free_first = sym->next;
143 return sym;
146 ST_INLN void sym_free(Sym *sym)
148 sym->next = sym_free_first;
149 tcc_free(sym->asm_label);
150 sym_free_first = sym;
153 /* push, without hashing */
154 ST_FUNC Sym *sym_push2(Sym **ps, int v, int t, long c)
156 Sym *s;
157 if (ps == &local_stack) {
158 for (s = *ps; s && s != scope_stack_bottom; s = s->prev)
159 if (!(v & SYM_FIELD) && (v & ~SYM_STRUCT) < SYM_FIRST_ANOM && s->v == v)
160 tcc_error("incompatible types for redefinition of '%s'",
161 get_tok_str(v, NULL));
163 s = *ps;
164 s = sym_malloc();
165 s->asm_label = NULL;
166 s->v = v;
167 s->type.t = t;
168 s->type.ref = NULL;
169 #ifdef _WIN64
170 s->d = NULL;
171 #endif
172 s->c = c;
173 s->next = NULL;
174 /* add in stack */
175 s->prev = *ps;
176 *ps = s;
177 return s;
180 /* find a symbol and return its associated structure. 's' is the top
181 of the symbol stack */
182 ST_FUNC Sym *sym_find2(Sym *s, int v)
184 while (s) {
185 if (s->v == v)
186 return s;
187 s = s->prev;
189 return NULL;
192 /* structure lookup */
193 ST_INLN Sym *struct_find(int v)
195 v -= TOK_IDENT;
196 if ((unsigned)v >= (unsigned)(tok_ident - TOK_IDENT))
197 return NULL;
198 return table_ident[v]->sym_struct;
201 /* find an identifier */
202 ST_INLN Sym *sym_find(int v)
204 v -= TOK_IDENT;
205 if ((unsigned)v >= (unsigned)(tok_ident - TOK_IDENT))
206 return NULL;
207 return table_ident[v]->sym_identifier;
210 /* push a given symbol on the symbol stack */
211 ST_FUNC Sym *sym_push(int v, CType *type, int r, int c)
213 Sym *s, **ps;
214 TokenSym *ts;
216 if (local_stack)
217 ps = &local_stack;
218 else
219 ps = &global_stack;
220 s = sym_push2(ps, v, type->t, c);
221 s->type.ref = type->ref;
222 s->r = r;
223 /* don't record fields or anonymous symbols */
224 /* XXX: simplify */
225 if (!(v & SYM_FIELD) && (v & ~SYM_STRUCT) < SYM_FIRST_ANOM) {
226 /* record symbol in token array */
227 ts = table_ident[(v & ~SYM_STRUCT) - TOK_IDENT];
228 if (v & SYM_STRUCT)
229 ps = &ts->sym_struct;
230 else
231 ps = &ts->sym_identifier;
232 s->prev_tok = *ps;
233 *ps = s;
235 return s;
238 /* push a global identifier */
239 ST_FUNC Sym *global_identifier_push(int v, int t, int c)
241 Sym *s, **ps;
242 s = sym_push2(&global_stack, v, t, c);
243 /* don't record anonymous symbol */
244 if (v < SYM_FIRST_ANOM) {
245 ps = &table_ident[v - TOK_IDENT]->sym_identifier;
246 /* modify the top most local identifier, so that
247 sym_identifier will point to 's' when popped */
248 while (*ps != NULL)
249 ps = &(*ps)->prev_tok;
250 s->prev_tok = NULL;
251 *ps = s;
253 return s;
256 /* pop symbols until top reaches 'b' */
257 ST_FUNC void sym_pop(Sym **ptop, Sym *b)
259 Sym *s, *ss, **ps;
260 TokenSym *ts;
261 int v;
263 s = *ptop;
264 while(s != b) {
265 ss = s->prev;
266 v = s->v;
267 /* remove symbol in token array */
268 /* XXX: simplify */
269 if (!(v & SYM_FIELD) && (v & ~SYM_STRUCT) < SYM_FIRST_ANOM) {
270 ts = table_ident[(v & ~SYM_STRUCT) - TOK_IDENT];
271 if (v & SYM_STRUCT)
272 ps = &ts->sym_struct;
273 else
274 ps = &ts->sym_identifier;
275 *ps = s->prev_tok;
277 sym_free(s);
278 s = ss;
280 *ptop = b;
283 static void weaken_symbol(Sym *sym)
285 sym->type.t |= VT_WEAK;
286 if (sym->c > 0) {
287 int esym_type;
288 ElfW(Sym) *esym;
290 esym = &((ElfW(Sym) *)symtab_section->data)[sym->c];
291 esym_type = ELFW(ST_TYPE)(esym->st_info);
292 esym->st_info = ELFW(ST_INFO)(STB_WEAK, esym_type);
296 /* ------------------------------------------------------------------------- */
298 ST_FUNC void swap(int *p, int *q)
300 int t;
301 t = *p;
302 *p = *q;
303 *q = t;
306 static void vsetc(CType *type, int r, CValue *vc)
308 int v;
310 if (vtop >= vstack + (VSTACK_SIZE - 1))
311 tcc_error("memory full");
312 /* cannot let cpu flags if other instruction are generated. Also
313 avoid leaving VT_JMP anywhere except on the top of the stack
314 because it would complicate the code generator. */
315 if (vtop >= vstack) {
316 v = vtop->r & VT_VALMASK;
317 if (v == VT_CMP || (v & ~1) == VT_JMP)
318 gv(RC_INT);
320 vtop++;
321 vtop->type = *type;
322 vtop->r = r;
323 vtop->r2 = VT_CONST;
324 vtop->c = *vc;
327 /* push constant of type "type" with useless value */
328 void vpush(CType *type)
330 CValue cval;
331 vsetc(type, VT_CONST, &cval);
334 /* push integer constant */
335 ST_FUNC void vpushi(int v)
337 CValue cval;
338 cval.i = v;
339 vsetc(&int_type, VT_CONST, &cval);
342 /* push a pointer sized constant */
343 static void vpushs(long long v)
345 CValue cval;
346 if (PTR_SIZE == 4)
347 cval.i = (int)v;
348 else
349 cval.ull = v;
350 vsetc(&size_type, VT_CONST, &cval);
353 /* push arbitrary 64bit constant */
354 void vpush64(int ty, unsigned long long v)
356 CValue cval;
357 CType ctype;
358 ctype.t = ty;
359 ctype.ref = NULL;
360 cval.ull = v;
361 vsetc(&ctype, VT_CONST, &cval);
364 /* push long long constant */
365 static inline void vpushll(long long v)
367 vpush64(VT_LLONG, v);
370 /* Return a static symbol pointing to a section */
371 ST_FUNC Sym *get_sym_ref(CType *type, Section *sec, unsigned long offset, unsigned long size)
373 int v;
374 Sym *sym;
376 v = anon_sym++;
377 sym = global_identifier_push(v, type->t | VT_STATIC, 0);
378 sym->type.ref = type->ref;
379 sym->r = VT_CONST | VT_SYM;
380 put_extern_sym(sym, sec, offset, size);
381 return sym;
384 /* push a reference to a section offset by adding a dummy symbol */
385 static void vpush_ref(CType *type, Section *sec, unsigned long offset, unsigned long size)
387 CValue cval;
389 cval.ul = 0;
390 vsetc(type, VT_CONST | VT_SYM, &cval);
391 vtop->sym = get_sym_ref(type, sec, offset, size);
394 /* define a new external reference to a symbol 'v' of type 'u' */
395 ST_FUNC Sym *external_global_sym(int v, CType *type, int r)
397 Sym *s;
399 s = sym_find(v);
400 if (!s) {
401 /* push forward reference */
402 s = global_identifier_push(v, type->t | VT_EXTERN, 0);
403 s->type.ref = type->ref;
404 s->r = r | VT_CONST | VT_SYM;
406 return s;
409 /* define a new external reference to a symbol 'v' with alternate asm
410 name 'asm_label' of type 'u'. 'asm_label' is equal to NULL if there
411 is no alternate name (most cases) */
412 static Sym *external_sym(int v, CType *type, int r, char *asm_label)
414 Sym *s;
416 s = sym_find(v);
417 if (!s) {
418 /* push forward reference */
419 s = sym_push(v, type, r | VT_CONST | VT_SYM, 0);
420 s->asm_label = asm_label;
421 s->type.t |= VT_EXTERN;
422 } else if (s->type.ref == func_old_type.ref) {
423 s->type.ref = type->ref;
424 s->r = r | VT_CONST | VT_SYM;
425 s->type.t |= VT_EXTERN;
426 } else if (!is_compatible_types(&s->type, type)) {
427 tcc_error("incompatible types for redefinition of '%s'",
428 get_tok_str(v, NULL));
430 return s;
433 /* push a reference to global symbol v */
434 ST_FUNC void vpush_global_sym(CType *type, int v)
436 Sym *sym;
437 CValue cval;
439 sym = external_global_sym(v, type, 0);
440 cval.ul = 0;
441 vsetc(type, VT_CONST | VT_SYM, &cval);
442 vtop->sym = sym;
445 ST_FUNC void vset(CType *type, int r, int v)
447 CValue cval;
449 cval.i = v;
450 vsetc(type, r, &cval);
453 static void vseti(int r, int v)
455 CType type;
456 type.t = VT_INT;
457 type.ref = 0;
458 vset(&type, r, v);
461 ST_FUNC void vswap(void)
463 SValue tmp;
464 /* cannot let cpu flags if other instruction are generated. Also
465 avoid leaving VT_JMP anywhere except on the top of the stack
466 because it would complicate the code generator. */
467 if (vtop >= vstack) {
468 int v = vtop->r & VT_VALMASK;
469 if (v == VT_CMP || (v & ~1) == VT_JMP)
470 gv(RC_INT);
472 tmp = vtop[0];
473 vtop[0] = vtop[-1];
474 vtop[-1] = tmp;
476 /* XXX: +2% overall speed possible with optimized memswap
478 * memswap(&vtop[0], &vtop[1], sizeof *vtop);
482 ST_FUNC void vpushv(SValue *v)
484 if (vtop >= vstack + (VSTACK_SIZE - 1))
485 tcc_error("memory full");
486 vtop++;
487 *vtop = *v;
490 static void vdup(void)
492 vpushv(vtop);
495 /* save r to the memory stack, and mark it as being free */
496 ST_FUNC void save_reg(int r)
498 int l, saved, size, align;
499 SValue *p, sv;
500 CType *type;
502 /* modify all stack values */
503 saved = 0;
504 l = 0;
505 for(p=vstack;p<=vtop;p++) {
506 if ((p->r & VT_VALMASK) == r ||
507 ((p->type.t & VT_BTYPE) == VT_LLONG && (p->r2 & VT_VALMASK) == r)) {
508 /* must save value on stack if not already done */
509 if (!saved) {
510 /* NOTE: must reload 'r' because r might be equal to r2 */
511 r = p->r & VT_VALMASK;
512 /* store register in the stack */
513 type = &p->type;
514 if ((p->r & VT_LVAL) ||
515 (!is_float(type->t) && (type->t & VT_BTYPE) != VT_LLONG))
516 #ifdef TCC_TARGET_X86_64
517 type = &char_pointer_type;
518 #else
519 type = &int_type;
520 #endif
521 size = type_size(type, &align);
522 loc = (loc - size) & -align;
523 sv.type.t = type->t;
524 sv.r = VT_LOCAL | VT_LVAL;
525 sv.c.ul = loc;
526 store(r, &sv);
527 #if defined(TCC_TARGET_I386) || defined(TCC_TARGET_X86_64)
528 /* x86 specific: need to pop fp register ST0 if saved */
529 if (r == TREG_ST0) {
530 o(0xd8dd); /* fstp %st(0) */
532 #endif
533 #ifndef TCC_TARGET_X86_64
534 /* special long long case */
535 if ((type->t & VT_BTYPE) == VT_LLONG) {
536 sv.c.ul += 4;
537 store(p->r2, &sv);
539 #endif
540 l = loc;
541 saved = 1;
543 /* mark that stack entry as being saved on the stack */
544 if (p->r & VT_LVAL) {
545 /* also clear the bounded flag because the
546 relocation address of the function was stored in
547 p->c.ul */
548 p->r = (p->r & ~(VT_VALMASK | VT_BOUNDED)) | VT_LLOCAL;
549 } else {
550 p->r = lvalue_type(p->type.t) | VT_LOCAL;
552 p->r2 = VT_CONST;
553 p->c.ul = l;
558 #ifdef TCC_TARGET_ARM
559 /* find a register of class 'rc2' with at most one reference on stack.
560 * If none, call get_reg(rc) */
561 ST_FUNC int get_reg_ex(int rc, int rc2)
563 int r;
564 SValue *p;
566 for(r=0;r<NB_REGS;r++) {
567 if (reg_classes[r] & rc2) {
568 int n;
569 n=0;
570 for(p = vstack; p <= vtop; p++) {
571 if ((p->r & VT_VALMASK) == r ||
572 (p->r2 & VT_VALMASK) == r)
573 n++;
575 if (n <= 1)
576 return r;
579 return get_reg(rc);
581 #endif
583 /* find a free register of class 'rc'. If none, save one register */
584 ST_FUNC int get_reg(int rc)
586 int r;
587 SValue *p;
589 /* find a free register */
590 for(r=0;r<NB_REGS;r++) {
591 if (reg_classes[r] & rc) {
592 for(p=vstack;p<=vtop;p++) {
593 if ((p->r & VT_VALMASK) == r ||
594 (p->r2 & VT_VALMASK) == r)
595 goto notfound;
597 return r;
599 notfound: ;
602 /* no register left : free the first one on the stack (VERY
603 IMPORTANT to start from the bottom to ensure that we don't
604 spill registers used in gen_opi()) */
605 for(p=vstack;p<=vtop;p++) {
606 /* look at second register (if long long) */
607 r = p->r2 & VT_VALMASK;
608 if (r < VT_CONST && (reg_classes[r] & rc))
609 goto save_found;
610 r = p->r & VT_VALMASK;
611 if (r < VT_CONST && (reg_classes[r] & rc)) {
612 save_found:
613 save_reg(r);
614 return r;
617 /* Should never comes here */
618 return -1;
621 /* save registers up to (vtop - n) stack entry */
622 ST_FUNC void save_regs(int n)
624 int r;
625 SValue *p, *p1;
626 p1 = vtop - n;
627 for(p = vstack;p <= p1; p++) {
628 r = p->r & VT_VALMASK;
629 if (r < VT_CONST) {
630 save_reg(r);
635 /* move register 's' (of type 't') to 'r', and flush previous value of r to memory
636 if needed */
637 static void move_reg(int r, int s, int t)
639 SValue sv;
641 if (r != s) {
642 save_reg(r);
643 sv.type.t = t;
644 sv.type.ref = NULL;
645 sv.r = s;
646 sv.c.ul = 0;
647 load(r, &sv);
651 /* get address of vtop (vtop MUST BE an lvalue) */
652 static void gaddrof(void)
654 if (vtop->r & VT_REF)
655 gv(RC_INT);
656 vtop->r &= ~VT_LVAL;
657 /* tricky: if saved lvalue, then we can go back to lvalue */
658 if ((vtop->r & VT_VALMASK) == VT_LLOCAL)
659 vtop->r = (vtop->r & ~(VT_VALMASK | VT_LVAL_TYPE)) | VT_LOCAL | VT_LVAL;
664 #ifdef CONFIG_TCC_BCHECK
665 /* generate lvalue bound code */
666 static void gbound(void)
668 int lval_type;
669 CType type1;
671 vtop->r &= ~VT_MUSTBOUND;
672 /* if lvalue, then use checking code before dereferencing */
673 if (vtop->r & VT_LVAL) {
674 /* if not VT_BOUNDED value, then make one */
675 if (!(vtop->r & VT_BOUNDED)) {
676 lval_type = vtop->r & (VT_LVAL_TYPE | VT_LVAL);
677 /* must save type because we must set it to int to get pointer */
678 type1 = vtop->type;
679 vtop->type.t = VT_INT;
680 gaddrof();
681 vpushi(0);
682 gen_bounded_ptr_add();
683 vtop->r |= lval_type;
684 vtop->type = type1;
686 /* then check for dereferencing */
687 gen_bounded_ptr_deref();
690 #endif
692 /* store vtop a register belonging to class 'rc'. lvalues are
693 converted to values. Cannot be used if cannot be converted to
694 register value (such as structures). */
695 ST_FUNC int gv(int rc)
697 int r, bit_pos, bit_size, size, align, i;
698 int rc2;
700 /* NOTE: get_reg can modify vstack[] */
701 if (vtop->type.t & VT_BITFIELD) {
702 CType type;
703 int bits = 32;
704 bit_pos = (vtop->type.t >> VT_STRUCT_SHIFT) & 0x3f;
705 bit_size = (vtop->type.t >> (VT_STRUCT_SHIFT + 6)) & 0x3f;
706 /* remove bit field info to avoid loops */
707 vtop->type.t &= ~(VT_BITFIELD | (-1 << VT_STRUCT_SHIFT));
708 /* cast to int to propagate signedness in following ops */
709 if ((vtop->type.t & VT_BTYPE) == VT_LLONG) {
710 type.t = VT_LLONG;
711 bits = 64;
712 } else
713 type.t = VT_INT;
714 if((vtop->type.t & VT_UNSIGNED) ||
715 (vtop->type.t & VT_BTYPE) == VT_BOOL)
716 type.t |= VT_UNSIGNED;
717 gen_cast(&type);
718 /* generate shifts */
719 vpushi(bits - (bit_pos + bit_size));
720 gen_op(TOK_SHL);
721 vpushi(bits - bit_size);
722 /* NOTE: transformed to SHR if unsigned */
723 gen_op(TOK_SAR);
724 r = gv(rc);
725 } else {
726 if (is_float(vtop->type.t) &&
727 (vtop->r & (VT_VALMASK | VT_LVAL)) == VT_CONST) {
728 Sym *sym;
729 int *ptr;
730 unsigned long offset;
731 #if defined(TCC_TARGET_ARM) && !defined(TCC_ARM_VFP)
732 CValue check;
733 #endif
735 /* XXX: unify with initializers handling ? */
736 /* CPUs usually cannot use float constants, so we store them
737 generically in data segment */
738 size = type_size(&vtop->type, &align);
739 offset = (data_section->data_offset + align - 1) & -align;
740 data_section->data_offset = offset;
741 /* XXX: not portable yet */
742 #if defined(__i386__) || defined(__x86_64__)
743 /* Zero pad x87 tenbyte long doubles */
744 if (size == LDOUBLE_SIZE) {
745 vtop->c.tab[2] &= 0xffff;
746 #if LDOUBLE_SIZE == 16
747 vtop->c.tab[3] = 0;
748 #endif
750 #endif
751 ptr = section_ptr_add(data_section, size);
752 size = size >> 2;
753 #if defined(TCC_TARGET_ARM) && !defined(TCC_ARM_VFP)
754 check.d = 1;
755 if(check.tab[0])
756 for(i=0;i<size;i++)
757 ptr[i] = vtop->c.tab[size-1-i];
758 else
759 #endif
760 for(i=0;i<size;i++)
761 ptr[i] = vtop->c.tab[i];
762 sym = get_sym_ref(&vtop->type, data_section, offset, size << 2);
763 vtop->r |= VT_LVAL | VT_SYM;
764 vtop->sym = sym;
765 vtop->c.ul = 0;
767 #ifdef CONFIG_TCC_BCHECK
768 if (vtop->r & VT_MUSTBOUND)
769 gbound();
770 #endif
772 r = vtop->r & VT_VALMASK;
773 rc2 = (rc & RC_FLOAT) ? RC_FLOAT : RC_INT;
774 if (rc == RC_IRET)
775 rc2 = RC_LRET;
776 #ifdef TCC_TARGET_X86_64
777 else if (rc == RC_FRET)
778 rc2 = RC_QRET;
779 #endif
781 /* need to reload if:
782 - constant
783 - lvalue (need to dereference pointer)
784 - already a register, but not in the right class */
785 if (r >= VT_CONST
786 || (vtop->r & VT_LVAL)
787 || !(reg_classes[r] & rc)
788 #ifdef TCC_TARGET_X86_64
789 || ((vtop->type.t & VT_BTYPE) == VT_QLONG && !(reg_classes[vtop->r2] & rc2))
790 || ((vtop->type.t & VT_BTYPE) == VT_QFLOAT && !(reg_classes[vtop->r2] & rc2))
791 #else
792 || ((vtop->type.t & VT_BTYPE) == VT_LLONG && !(reg_classes[vtop->r2] & rc2))
793 #endif
796 r = get_reg(rc);
797 #ifdef TCC_TARGET_X86_64
798 if (((vtop->type.t & VT_BTYPE) == VT_QLONG) || ((vtop->type.t & VT_BTYPE) == VT_QFLOAT)) {
799 int addr_type = VT_LLONG, load_size = 8, load_type = ((vtop->type.t & VT_BTYPE) == VT_QLONG) ? VT_LLONG : VT_DOUBLE;
800 #else
801 if ((vtop->type.t & VT_BTYPE) == VT_LLONG) {
802 int addr_type = VT_INT, load_size = 4, load_type = VT_INT;
803 #endif
804 int r2, original_type;
805 unsigned long long ll;
806 original_type = vtop->type.t;
807 /* two register type load : expand to two words
808 temporarily */
809 #ifndef TCC_TARGET_X86_64
810 if ((vtop->r & (VT_VALMASK | VT_LVAL)) == VT_CONST) {
811 /* load constant */
812 ll = vtop->c.ull;
813 vtop->c.ui = ll; /* first word */
814 load(r, vtop);
815 vtop->r = r; /* save register value */
816 vpushi(ll >> 32); /* second word */
817 } else
818 #endif
819 if (r >= VT_CONST || /* XXX: test to VT_CONST incorrect ? */
820 (vtop->r & VT_LVAL)) {
821 /* We do not want to modifier the long long
822 pointer here, so the safest (and less
823 efficient) is to save all the other registers
824 in the stack. XXX: totally inefficient. */
825 save_regs(1);
826 /* load from memory */
827 vtop->type.t = load_type;
828 load(r, vtop);
829 vdup();
830 vtop[-1].r = r; /* save register value */
831 /* increment pointer to get second word */
832 vtop->type.t = addr_type;
833 gaddrof();
834 vpushi(load_size);
835 gen_op('+');
836 vtop->r |= VT_LVAL;
837 vtop->type.t = load_type;
838 } else {
839 /* move registers */
840 load(r, vtop);
841 vdup();
842 vtop[-1].r = r; /* save register value */
843 vtop->r = vtop[-1].r2;
845 /* Allocate second register. Here we rely on the fact that
846 get_reg() tries first to free r2 of an SValue. */
847 r2 = get_reg(rc2);
848 load(r2, vtop);
849 vpop();
850 /* write second register */
851 vtop->r2 = r2;
852 vtop->type.t = original_type;
853 } else if ((vtop->r & VT_LVAL) && !is_float(vtop->type.t)) {
854 int t1, t;
855 /* lvalue of scalar type : need to use lvalue type
856 because of possible cast */
857 t = vtop->type.t;
858 t1 = t;
859 /* compute memory access type */
860 if (vtop->r & VT_REF)
861 #ifdef TCC_TARGET_X86_64
862 t = VT_PTR;
863 #else
864 t = VT_INT;
865 #endif
866 else if (vtop->r & VT_LVAL_BYTE)
867 t = VT_BYTE;
868 else if (vtop->r & VT_LVAL_SHORT)
869 t = VT_SHORT;
870 if (vtop->r & VT_LVAL_UNSIGNED)
871 t |= VT_UNSIGNED;
872 vtop->type.t = t;
873 load(r, vtop);
874 /* restore wanted type */
875 vtop->type.t = t1;
876 } else {
877 /* one register type load */
878 load(r, vtop);
881 vtop->r = r;
882 #ifdef TCC_TARGET_C67
883 /* uses register pairs for doubles */
884 if ((vtop->type.t & VT_BTYPE) == VT_DOUBLE)
885 vtop->r2 = r+1;
886 #endif
888 return r;
891 /* generate vtop[-1] and vtop[0] in resp. classes rc1 and rc2 */
892 ST_FUNC void gv2(int rc1, int rc2)
894 int v;
896 /* generate more generic register first. But VT_JMP or VT_CMP
897 values must be generated first in all cases to avoid possible
898 reload errors */
899 v = vtop[0].r & VT_VALMASK;
900 if (v != VT_CMP && (v & ~1) != VT_JMP && rc1 <= rc2) {
901 vswap();
902 gv(rc1);
903 vswap();
904 gv(rc2);
905 /* test if reload is needed for first register */
906 if ((vtop[-1].r & VT_VALMASK) >= VT_CONST) {
907 vswap();
908 gv(rc1);
909 vswap();
911 } else {
912 gv(rc2);
913 vswap();
914 gv(rc1);
915 vswap();
916 /* test if reload is needed for first register */
917 if ((vtop[0].r & VT_VALMASK) >= VT_CONST) {
918 gv(rc2);
923 /* wrapper around RC_FRET to return a register by type */
924 static int rc_fret(int t)
926 #ifdef TCC_TARGET_X86_64
927 if (t == VT_LDOUBLE) {
928 return RC_ST0;
930 #endif
931 return RC_FRET;
934 /* wrapper around REG_FRET to return a register by type */
935 static int reg_fret(int t)
937 #ifdef TCC_TARGET_X86_64
938 if (t == VT_LDOUBLE) {
939 return TREG_ST0;
941 #endif
942 return REG_FRET;
945 /* expand long long on stack in two int registers */
946 static void lexpand(void)
948 int u;
950 u = vtop->type.t & VT_UNSIGNED;
951 gv(RC_INT);
952 vdup();
953 vtop[0].r = vtop[-1].r2;
954 vtop[0].r2 = VT_CONST;
955 vtop[-1].r2 = VT_CONST;
956 vtop[0].type.t = VT_INT | u;
957 vtop[-1].type.t = VT_INT | u;
960 #ifdef TCC_TARGET_ARM
961 /* expand long long on stack */
962 ST_FUNC void lexpand_nr(void)
964 int u,v;
966 u = vtop->type.t & VT_UNSIGNED;
967 vdup();
968 vtop->r2 = VT_CONST;
969 vtop->type.t = VT_INT | u;
970 v=vtop[-1].r & (VT_VALMASK | VT_LVAL);
971 if (v == VT_CONST) {
972 vtop[-1].c.ui = vtop->c.ull;
973 vtop->c.ui = vtop->c.ull >> 32;
974 vtop->r = VT_CONST;
975 } else if (v == (VT_LVAL|VT_CONST) || v == (VT_LVAL|VT_LOCAL)) {
976 vtop->c.ui += 4;
977 vtop->r = vtop[-1].r;
978 } else if (v > VT_CONST) {
979 vtop--;
980 lexpand();
981 } else
982 vtop->r = vtop[-1].r2;
983 vtop[-1].r2 = VT_CONST;
984 vtop[-1].type.t = VT_INT | u;
986 #endif
988 /* build a long long from two ints */
989 static void lbuild(int t)
991 gv2(RC_INT, RC_INT);
992 vtop[-1].r2 = vtop[0].r;
993 vtop[-1].type.t = t;
994 vpop();
997 /* rotate n first stack elements to the bottom
998 I1 ... In -> I2 ... In I1 [top is right]
1000 ST_FUNC void vrotb(int n)
1002 int i;
1003 SValue tmp;
1005 tmp = vtop[-n + 1];
1006 for(i=-n+1;i!=0;i++)
1007 vtop[i] = vtop[i+1];
1008 vtop[0] = tmp;
1011 /* rotate the n elements before entry e towards the top
1012 I1 ... In ... -> In I1 ... I(n-1) ... [top is right]
1014 ST_FUNC void vrote(SValue *e, int n)
1016 int i;
1017 SValue tmp;
1019 tmp = *e;
1020 for(i = 0;i < n - 1; i++)
1021 e[-i] = e[-i - 1];
1022 e[-n + 1] = tmp;
1025 /* rotate n first stack elements to the top
1026 I1 ... In -> In I1 ... I(n-1) [top is right]
1028 ST_FUNC void vrott(int n)
1030 vrote(vtop, n);
1033 /* pop stack value */
1034 ST_FUNC void vpop(void)
1036 int v;
1037 v = vtop->r & VT_VALMASK;
1038 #if defined(TCC_TARGET_I386) || defined(TCC_TARGET_X86_64)
1039 /* for x86, we need to pop the FP stack */
1040 if (v == TREG_ST0 && !nocode_wanted) {
1041 o(0xd8dd); /* fstp %st(0) */
1042 } else
1043 #endif
1044 if (v == VT_JMP || v == VT_JMPI) {
1045 /* need to put correct jump if && or || without test */
1046 gsym(vtop->c.ul);
1048 vtop--;
1051 /* convert stack entry to register and duplicate its value in another
1052 register */
1053 static void gv_dup(void)
1055 int rc, t, r, r1;
1056 SValue sv;
1058 t = vtop->type.t;
1059 if ((t & VT_BTYPE) == VT_LLONG) {
1060 lexpand();
1061 gv_dup();
1062 vswap();
1063 vrotb(3);
1064 gv_dup();
1065 vrotb(4);
1066 /* stack: H L L1 H1 */
1067 lbuild(t);
1068 vrotb(3);
1069 vrotb(3);
1070 vswap();
1071 lbuild(t);
1072 vswap();
1073 } else {
1074 /* duplicate value */
1075 rc = RC_INT;
1076 sv.type.t = VT_INT;
1077 if (is_float(t)) {
1078 rc = RC_FLOAT;
1079 #ifdef TCC_TARGET_X86_64
1080 if ((t & VT_BTYPE) == VT_LDOUBLE) {
1081 rc = RC_ST0;
1083 #endif
1084 sv.type.t = t;
1086 r = gv(rc);
1087 r1 = get_reg(rc);
1088 sv.r = r;
1089 sv.c.ul = 0;
1090 load(r1, &sv); /* move r to r1 */
1091 vdup();
1092 /* duplicates value */
1093 if (r != r1)
1094 vtop->r = r1;
1098 #ifndef TCC_TARGET_X86_64
1099 /* generate CPU independent (unsigned) long long operations */
1100 static void gen_opl(int op)
1102 int t, a, b, op1, c, i;
1103 int func;
1104 unsigned short reg_iret = REG_IRET;
1105 unsigned short reg_lret = REG_LRET;
1106 SValue tmp;
1108 switch(op) {
1109 case '/':
1110 case TOK_PDIV:
1111 func = TOK___divdi3;
1112 goto gen_func;
1113 case TOK_UDIV:
1114 func = TOK___udivdi3;
1115 goto gen_func;
1116 case '%':
1117 func = TOK___moddi3;
1118 goto gen_mod_func;
1119 case TOK_UMOD:
1120 func = TOK___umoddi3;
1121 gen_mod_func:
1122 #ifdef TCC_ARM_EABI
1123 reg_iret = TREG_R2;
1124 reg_lret = TREG_R3;
1125 #endif
1126 gen_func:
1127 /* call generic long long function */
1128 vpush_global_sym(&func_old_type, func);
1129 vrott(3);
1130 gfunc_call(2);
1131 vpushi(0);
1132 vtop->r = reg_iret;
1133 vtop->r2 = reg_lret;
1134 break;
1135 case '^':
1136 case '&':
1137 case '|':
1138 case '*':
1139 case '+':
1140 case '-':
1141 t = vtop->type.t;
1142 vswap();
1143 lexpand();
1144 vrotb(3);
1145 lexpand();
1146 /* stack: L1 H1 L2 H2 */
1147 tmp = vtop[0];
1148 vtop[0] = vtop[-3];
1149 vtop[-3] = tmp;
1150 tmp = vtop[-2];
1151 vtop[-2] = vtop[-3];
1152 vtop[-3] = tmp;
1153 vswap();
1154 /* stack: H1 H2 L1 L2 */
1155 if (op == '*') {
1156 vpushv(vtop - 1);
1157 vpushv(vtop - 1);
1158 gen_op(TOK_UMULL);
1159 lexpand();
1160 /* stack: H1 H2 L1 L2 ML MH */
1161 for(i=0;i<4;i++)
1162 vrotb(6);
1163 /* stack: ML MH H1 H2 L1 L2 */
1164 tmp = vtop[0];
1165 vtop[0] = vtop[-2];
1166 vtop[-2] = tmp;
1167 /* stack: ML MH H1 L2 H2 L1 */
1168 gen_op('*');
1169 vrotb(3);
1170 vrotb(3);
1171 gen_op('*');
1172 /* stack: ML MH M1 M2 */
1173 gen_op('+');
1174 gen_op('+');
1175 } else if (op == '+' || op == '-') {
1176 /* XXX: add non carry method too (for MIPS or alpha) */
1177 if (op == '+')
1178 op1 = TOK_ADDC1;
1179 else
1180 op1 = TOK_SUBC1;
1181 gen_op(op1);
1182 /* stack: H1 H2 (L1 op L2) */
1183 vrotb(3);
1184 vrotb(3);
1185 gen_op(op1 + 1); /* TOK_xxxC2 */
1186 } else {
1187 gen_op(op);
1188 /* stack: H1 H2 (L1 op L2) */
1189 vrotb(3);
1190 vrotb(3);
1191 /* stack: (L1 op L2) H1 H2 */
1192 gen_op(op);
1193 /* stack: (L1 op L2) (H1 op H2) */
1195 /* stack: L H */
1196 lbuild(t);
1197 break;
1198 case TOK_SAR:
1199 case TOK_SHR:
1200 case TOK_SHL:
1201 if ((vtop->r & (VT_VALMASK | VT_LVAL | VT_SYM)) == VT_CONST) {
1202 t = vtop[-1].type.t;
1203 vswap();
1204 lexpand();
1205 vrotb(3);
1206 /* stack: L H shift */
1207 c = (int)vtop->c.i;
1208 /* constant: simpler */
1209 /* NOTE: all comments are for SHL. the other cases are
1210 done by swaping words */
1211 vpop();
1212 if (op != TOK_SHL)
1213 vswap();
1214 if (c >= 32) {
1215 /* stack: L H */
1216 vpop();
1217 if (c > 32) {
1218 vpushi(c - 32);
1219 gen_op(op);
1221 if (op != TOK_SAR) {
1222 vpushi(0);
1223 } else {
1224 gv_dup();
1225 vpushi(31);
1226 gen_op(TOK_SAR);
1228 vswap();
1229 } else {
1230 vswap();
1231 gv_dup();
1232 /* stack: H L L */
1233 vpushi(c);
1234 gen_op(op);
1235 vswap();
1236 vpushi(32 - c);
1237 if (op == TOK_SHL)
1238 gen_op(TOK_SHR);
1239 else
1240 gen_op(TOK_SHL);
1241 vrotb(3);
1242 /* stack: L L H */
1243 vpushi(c);
1244 if (op == TOK_SHL)
1245 gen_op(TOK_SHL);
1246 else
1247 gen_op(TOK_SHR);
1248 gen_op('|');
1250 if (op != TOK_SHL)
1251 vswap();
1252 lbuild(t);
1253 } else {
1254 /* XXX: should provide a faster fallback on x86 ? */
1255 switch(op) {
1256 case TOK_SAR:
1257 func = TOK___ashrdi3;
1258 goto gen_func;
1259 case TOK_SHR:
1260 func = TOK___lshrdi3;
1261 goto gen_func;
1262 case TOK_SHL:
1263 func = TOK___ashldi3;
1264 goto gen_func;
1267 break;
1268 default:
1269 /* compare operations */
1270 t = vtop->type.t;
1271 vswap();
1272 lexpand();
1273 vrotb(3);
1274 lexpand();
1275 /* stack: L1 H1 L2 H2 */
1276 tmp = vtop[-1];
1277 vtop[-1] = vtop[-2];
1278 vtop[-2] = tmp;
1279 /* stack: L1 L2 H1 H2 */
1280 /* compare high */
1281 op1 = op;
1282 /* when values are equal, we need to compare low words. since
1283 the jump is inverted, we invert the test too. */
1284 if (op1 == TOK_LT)
1285 op1 = TOK_LE;
1286 else if (op1 == TOK_GT)
1287 op1 = TOK_GE;
1288 else if (op1 == TOK_ULT)
1289 op1 = TOK_ULE;
1290 else if (op1 == TOK_UGT)
1291 op1 = TOK_UGE;
1292 a = 0;
1293 b = 0;
1294 gen_op(op1);
1295 if (op1 != TOK_NE) {
1296 a = gtst(1, 0);
1298 if (op != TOK_EQ) {
1299 /* generate non equal test */
1300 /* XXX: NOT PORTABLE yet */
1301 if (a == 0) {
1302 b = gtst(0, 0);
1303 } else {
1304 #if defined(TCC_TARGET_I386)
1305 b = psym(0x850f, 0);
1306 #elif defined(TCC_TARGET_ARM)
1307 b = ind;
1308 o(0x1A000000 | encbranch(ind, 0, 1));
1309 #elif defined(TCC_TARGET_C67)
1310 tcc_error("not implemented");
1311 #else
1312 #error not supported
1313 #endif
1316 /* compare low. Always unsigned */
1317 op1 = op;
1318 if (op1 == TOK_LT)
1319 op1 = TOK_ULT;
1320 else if (op1 == TOK_LE)
1321 op1 = TOK_ULE;
1322 else if (op1 == TOK_GT)
1323 op1 = TOK_UGT;
1324 else if (op1 == TOK_GE)
1325 op1 = TOK_UGE;
1326 gen_op(op1);
1327 a = gtst(1, a);
1328 gsym(b);
1329 vseti(VT_JMPI, a);
1330 break;
1333 #endif
1335 /* handle integer constant optimizations and various machine
1336 independent opt */
1337 static void gen_opic(int op)
1339 int c1, c2, t1, t2, n;
1340 SValue *v1, *v2;
1341 long long l1, l2;
1342 typedef unsigned long long U;
1344 v1 = vtop - 1;
1345 v2 = vtop;
1346 t1 = v1->type.t & VT_BTYPE;
1347 t2 = v2->type.t & VT_BTYPE;
1349 if (t1 == VT_LLONG)
1350 l1 = v1->c.ll;
1351 else if (v1->type.t & VT_UNSIGNED)
1352 l1 = v1->c.ui;
1353 else
1354 l1 = v1->c.i;
1356 if (t2 == VT_LLONG)
1357 l2 = v2->c.ll;
1358 else if (v2->type.t & VT_UNSIGNED)
1359 l2 = v2->c.ui;
1360 else
1361 l2 = v2->c.i;
1363 /* currently, we cannot do computations with forward symbols */
1364 c1 = (v1->r & (VT_VALMASK | VT_LVAL | VT_SYM)) == VT_CONST;
1365 c2 = (v2->r & (VT_VALMASK | VT_LVAL | VT_SYM)) == VT_CONST;
1366 if (c1 && c2) {
1367 switch(op) {
1368 case '+': l1 += l2; break;
1369 case '-': l1 -= l2; break;
1370 case '&': l1 &= l2; break;
1371 case '^': l1 ^= l2; break;
1372 case '|': l1 |= l2; break;
1373 case '*': l1 *= l2; break;
1375 case TOK_PDIV:
1376 case '/':
1377 case '%':
1378 case TOK_UDIV:
1379 case TOK_UMOD:
1380 /* if division by zero, generate explicit division */
1381 if (l2 == 0) {
1382 if (const_wanted)
1383 tcc_error("division by zero in constant");
1384 goto general_case;
1386 switch(op) {
1387 default: l1 /= l2; break;
1388 case '%': l1 %= l2; break;
1389 case TOK_UDIV: l1 = (U)l1 / l2; break;
1390 case TOK_UMOD: l1 = (U)l1 % l2; break;
1392 break;
1393 case TOK_SHL: l1 <<= l2; break;
1394 case TOK_SHR: l1 = (U)l1 >> l2; break;
1395 case TOK_SAR: l1 >>= l2; break;
1396 /* tests */
1397 case TOK_ULT: l1 = (U)l1 < (U)l2; break;
1398 case TOK_UGE: l1 = (U)l1 >= (U)l2; break;
1399 case TOK_EQ: l1 = l1 == l2; break;
1400 case TOK_NE: l1 = l1 != l2; break;
1401 case TOK_ULE: l1 = (U)l1 <= (U)l2; break;
1402 case TOK_UGT: l1 = (U)l1 > (U)l2; break;
1403 case TOK_LT: l1 = l1 < l2; break;
1404 case TOK_GE: l1 = l1 >= l2; break;
1405 case TOK_LE: l1 = l1 <= l2; break;
1406 case TOK_GT: l1 = l1 > l2; break;
1407 /* logical */
1408 case TOK_LAND: l1 = l1 && l2; break;
1409 case TOK_LOR: l1 = l1 || l2; break;
1410 default:
1411 goto general_case;
1413 v1->c.ll = l1;
1414 vtop--;
1415 } else {
1416 /* if commutative ops, put c2 as constant */
1417 if (c1 && (op == '+' || op == '&' || op == '^' ||
1418 op == '|' || op == '*')) {
1419 vswap();
1420 c2 = c1; //c = c1, c1 = c2, c2 = c;
1421 l2 = l1; //l = l1, l1 = l2, l2 = l;
1423 /* Filter out NOP operations like x*1, x-0, x&-1... */
1424 if (c2 && (((op == '*' || op == '/' || op == TOK_UDIV ||
1425 op == TOK_PDIV) &&
1426 l2 == 1) ||
1427 ((op == '+' || op == '-' || op == '|' || op == '^' ||
1428 op == TOK_SHL || op == TOK_SHR || op == TOK_SAR) &&
1429 l2 == 0) ||
1430 (op == '&' &&
1431 l2 == -1))) {
1432 /* nothing to do */
1433 vtop--;
1434 } else if (c2 && (op == '*' || op == TOK_PDIV || op == TOK_UDIV)) {
1435 /* try to use shifts instead of muls or divs */
1436 if (l2 > 0 && (l2 & (l2 - 1)) == 0) {
1437 n = -1;
1438 while (l2) {
1439 l2 >>= 1;
1440 n++;
1442 vtop->c.ll = n;
1443 if (op == '*')
1444 op = TOK_SHL;
1445 else if (op == TOK_PDIV)
1446 op = TOK_SAR;
1447 else
1448 op = TOK_SHR;
1450 goto general_case;
1451 } else if (c2 && (op == '+' || op == '-') &&
1452 (((vtop[-1].r & (VT_VALMASK | VT_LVAL | VT_SYM)) == (VT_CONST | VT_SYM))
1453 || (vtop[-1].r & (VT_VALMASK | VT_LVAL)) == VT_LOCAL)) {
1454 /* symbol + constant case */
1455 if (op == '-')
1456 l2 = -l2;
1457 vtop--;
1458 vtop->c.ll += l2;
1459 } else {
1460 general_case:
1461 if (!nocode_wanted) {
1462 /* call low level op generator */
1463 if (t1 == VT_LLONG || t2 == VT_LLONG)
1464 gen_opl(op);
1465 else
1466 gen_opi(op);
1467 } else {
1468 vtop--;
1474 /* generate a floating point operation with constant propagation */
1475 static void gen_opif(int op)
1477 int c1, c2;
1478 SValue *v1, *v2;
1479 long double f1, f2;
1481 v1 = vtop - 1;
1482 v2 = vtop;
1483 /* currently, we cannot do computations with forward symbols */
1484 c1 = (v1->r & (VT_VALMASK | VT_LVAL | VT_SYM)) == VT_CONST;
1485 c2 = (v2->r & (VT_VALMASK | VT_LVAL | VT_SYM)) == VT_CONST;
1486 if (c1 && c2) {
1487 if (v1->type.t == VT_FLOAT) {
1488 f1 = v1->c.f;
1489 f2 = v2->c.f;
1490 } else if (v1->type.t == VT_DOUBLE) {
1491 f1 = v1->c.d;
1492 f2 = v2->c.d;
1493 } else {
1494 f1 = v1->c.ld;
1495 f2 = v2->c.ld;
1498 /* NOTE: we only do constant propagation if finite number (not
1499 NaN or infinity) (ANSI spec) */
1500 if (!ieee_finite(f1) || !ieee_finite(f2))
1501 goto general_case;
1503 switch(op) {
1504 case '+': f1 += f2; break;
1505 case '-': f1 -= f2; break;
1506 case '*': f1 *= f2; break;
1507 case '/':
1508 if (f2 == 0.0) {
1509 if (const_wanted)
1510 tcc_error("division by zero in constant");
1511 goto general_case;
1513 f1 /= f2;
1514 break;
1515 /* XXX: also handles tests ? */
1516 default:
1517 goto general_case;
1519 /* XXX: overflow test ? */
1520 if (v1->type.t == VT_FLOAT) {
1521 v1->c.f = f1;
1522 } else if (v1->type.t == VT_DOUBLE) {
1523 v1->c.d = f1;
1524 } else {
1525 v1->c.ld = f1;
1527 vtop--;
1528 } else {
1529 general_case:
1530 if (!nocode_wanted) {
1531 gen_opf(op);
1532 } else {
1533 vtop--;
1538 static int pointed_size(CType *type)
1540 int align;
1541 return type_size(pointed_type(type), &align);
1544 static void vla_runtime_pointed_size(CType *type)
1546 int align;
1547 vla_runtime_type_size(pointed_type(type), &align);
1550 static inline int is_null_pointer(SValue *p)
1552 if ((p->r & (VT_VALMASK | VT_LVAL | VT_SYM)) != VT_CONST)
1553 return 0;
1554 return ((p->type.t & VT_BTYPE) == VT_INT && p->c.i == 0) ||
1555 ((p->type.t & VT_BTYPE) == VT_LLONG && p->c.ll == 0) ||
1556 ((p->type.t & VT_BTYPE) == VT_PTR && p->c.ptr == 0);
1559 static inline int is_integer_btype(int bt)
1561 return (bt == VT_BYTE || bt == VT_SHORT ||
1562 bt == VT_INT || bt == VT_LLONG);
1565 /* check types for comparison or substraction of pointers */
1566 static void check_comparison_pointer_types(SValue *p1, SValue *p2, int op)
1568 CType *type1, *type2, tmp_type1, tmp_type2;
1569 int bt1, bt2;
1571 /* null pointers are accepted for all comparisons as gcc */
1572 if (is_null_pointer(p1) || is_null_pointer(p2))
1573 return;
1574 type1 = &p1->type;
1575 type2 = &p2->type;
1576 bt1 = type1->t & VT_BTYPE;
1577 bt2 = type2->t & VT_BTYPE;
1578 /* accept comparison between pointer and integer with a warning */
1579 if ((is_integer_btype(bt1) || is_integer_btype(bt2)) && op != '-') {
1580 if (op != TOK_LOR && op != TOK_LAND )
1581 tcc_warning("comparison between pointer and integer");
1582 return;
1585 /* both must be pointers or implicit function pointers */
1586 if (bt1 == VT_PTR) {
1587 type1 = pointed_type(type1);
1588 } else if (bt1 != VT_FUNC)
1589 goto invalid_operands;
1591 if (bt2 == VT_PTR) {
1592 type2 = pointed_type(type2);
1593 } else if (bt2 != VT_FUNC) {
1594 invalid_operands:
1595 tcc_error("invalid operands to binary %s", get_tok_str(op, NULL));
1597 if ((type1->t & VT_BTYPE) == VT_VOID ||
1598 (type2->t & VT_BTYPE) == VT_VOID)
1599 return;
1600 tmp_type1 = *type1;
1601 tmp_type2 = *type2;
1602 tmp_type1.t &= ~(VT_UNSIGNED | VT_CONSTANT | VT_VOLATILE);
1603 tmp_type2.t &= ~(VT_UNSIGNED | VT_CONSTANT | VT_VOLATILE);
1604 if (!is_compatible_types(&tmp_type1, &tmp_type2)) {
1605 /* gcc-like error if '-' is used */
1606 if (op == '-')
1607 goto invalid_operands;
1608 else
1609 tcc_warning("comparison of distinct pointer types lacks a cast");
1613 /* generic gen_op: handles types problems */
1614 ST_FUNC void gen_op(int op)
1616 int u, t1, t2, bt1, bt2, t;
1617 CType type1;
1619 t1 = vtop[-1].type.t;
1620 t2 = vtop[0].type.t;
1621 bt1 = t1 & VT_BTYPE;
1622 bt2 = t2 & VT_BTYPE;
1624 if (bt1 == VT_PTR || bt2 == VT_PTR) {
1625 /* at least one operand is a pointer */
1626 /* relationnal op: must be both pointers */
1627 if (op >= TOK_ULT && op <= TOK_LOR) {
1628 check_comparison_pointer_types(vtop - 1, vtop, op);
1629 /* pointers are handled are unsigned */
1630 #ifdef TCC_TARGET_X86_64
1631 t = VT_LLONG | VT_UNSIGNED;
1632 #else
1633 t = VT_INT | VT_UNSIGNED;
1634 #endif
1635 goto std_op;
1637 /* if both pointers, then it must be the '-' op */
1638 if (bt1 == VT_PTR && bt2 == VT_PTR) {
1639 if (op != '-')
1640 tcc_error("cannot use pointers here");
1641 check_comparison_pointer_types(vtop - 1, vtop, op);
1642 /* XXX: check that types are compatible */
1643 if (vtop[-1].type.t & VT_VLA) {
1644 vla_runtime_pointed_size(&vtop[-1].type);
1645 } else {
1646 vpushi(pointed_size(&vtop[-1].type));
1648 vrott(3);
1649 gen_opic(op);
1650 /* set to integer type */
1651 #ifdef TCC_TARGET_X86_64
1652 vtop->type.t = VT_LLONG;
1653 #else
1654 vtop->type.t = VT_INT;
1655 #endif
1656 vswap();
1657 gen_op(TOK_PDIV);
1658 } else {
1659 /* exactly one pointer : must be '+' or '-'. */
1660 if (op != '-' && op != '+')
1661 tcc_error("cannot use pointers here");
1662 /* Put pointer as first operand */
1663 if (bt2 == VT_PTR) {
1664 vswap();
1665 swap(&t1, &t2);
1667 type1 = vtop[-1].type;
1668 type1.t &= ~VT_ARRAY;
1669 if (vtop[-1].type.t & VT_VLA)
1670 vla_runtime_pointed_size(&vtop[-1].type);
1671 else {
1672 u = pointed_size(&vtop[-1].type);
1673 if (u < 0)
1674 tcc_error("unknown array element size");
1675 #ifdef TCC_TARGET_X86_64
1676 vpushll(u);
1677 #else
1678 /* XXX: cast to int ? (long long case) */
1679 vpushi(u);
1680 #endif
1682 gen_op('*');
1683 #ifdef CONFIG_TCC_BCHECK
1684 /* if evaluating constant expression, no code should be
1685 generated, so no bound check */
1686 if (tcc_state->do_bounds_check && !const_wanted) {
1687 /* if bounded pointers, we generate a special code to
1688 test bounds */
1689 if (op == '-') {
1690 vpushi(0);
1691 vswap();
1692 gen_op('-');
1694 gen_bounded_ptr_add();
1695 } else
1696 #endif
1698 gen_opic(op);
1700 /* put again type if gen_opic() swaped operands */
1701 vtop->type = type1;
1703 } else if (is_float(bt1) || is_float(bt2)) {
1704 /* compute bigger type and do implicit casts */
1705 if (bt1 == VT_LDOUBLE || bt2 == VT_LDOUBLE) {
1706 t = VT_LDOUBLE;
1707 } else if (bt1 == VT_DOUBLE || bt2 == VT_DOUBLE) {
1708 t = VT_DOUBLE;
1709 } else {
1710 t = VT_FLOAT;
1712 /* floats can only be used for a few operations */
1713 if (op != '+' && op != '-' && op != '*' && op != '/' &&
1714 (op < TOK_ULT || op > TOK_GT))
1715 tcc_error("invalid operands for binary operation");
1716 goto std_op;
1717 } else if (op == TOK_SHR || op == TOK_SAR || op == TOK_SHL) {
1718 t = bt1 == VT_LLONG ? VT_LLONG : VT_INT;
1719 if ((t1 & (VT_BTYPE | VT_UNSIGNED)) == (t | VT_UNSIGNED))
1720 t |= VT_UNSIGNED;
1721 goto std_op;
1722 } else if (bt1 == VT_LLONG || bt2 == VT_LLONG) {
1723 /* cast to biggest op */
1724 t = VT_LLONG;
1725 /* convert to unsigned if it does not fit in a long long */
1726 if ((t1 & (VT_BTYPE | VT_UNSIGNED)) == (VT_LLONG | VT_UNSIGNED) ||
1727 (t2 & (VT_BTYPE | VT_UNSIGNED)) == (VT_LLONG | VT_UNSIGNED))
1728 t |= VT_UNSIGNED;
1729 goto std_op;
1730 } else if (bt1 == VT_STRUCT || bt2 == VT_STRUCT) {
1731 tcc_error("comparison of struct");
1732 } else {
1733 /* integer operations */
1734 t = VT_INT;
1735 /* convert to unsigned if it does not fit in an integer */
1736 if ((t1 & (VT_BTYPE | VT_UNSIGNED)) == (VT_INT | VT_UNSIGNED) ||
1737 (t2 & (VT_BTYPE | VT_UNSIGNED)) == (VT_INT | VT_UNSIGNED))
1738 t |= VT_UNSIGNED;
1739 std_op:
1740 /* XXX: currently, some unsigned operations are explicit, so
1741 we modify them here */
1742 if (t & VT_UNSIGNED) {
1743 if (op == TOK_SAR)
1744 op = TOK_SHR;
1745 else if (op == '/')
1746 op = TOK_UDIV;
1747 else if (op == '%')
1748 op = TOK_UMOD;
1749 else if (op == TOK_LT)
1750 op = TOK_ULT;
1751 else if (op == TOK_GT)
1752 op = TOK_UGT;
1753 else if (op == TOK_LE)
1754 op = TOK_ULE;
1755 else if (op == TOK_GE)
1756 op = TOK_UGE;
1758 vswap();
1759 type1.t = t;
1760 gen_cast(&type1);
1761 vswap();
1762 /* special case for shifts and long long: we keep the shift as
1763 an integer */
1764 if (op == TOK_SHR || op == TOK_SAR || op == TOK_SHL)
1765 type1.t = VT_INT;
1766 gen_cast(&type1);
1767 if (is_float(t))
1768 gen_opif(op);
1769 else
1770 gen_opic(op);
1771 if (op >= TOK_ULT && op <= TOK_GT) {
1772 /* relationnal op: the result is an int */
1773 vtop->type.t = VT_INT;
1774 } else {
1775 vtop->type.t = t;
1780 #ifndef TCC_TARGET_ARM
1781 /* generic itof for unsigned long long case */
1782 static void gen_cvt_itof1(int t)
1784 if ((vtop->type.t & (VT_BTYPE | VT_UNSIGNED)) ==
1785 (VT_LLONG | VT_UNSIGNED)) {
1787 if (t == VT_FLOAT)
1788 vpush_global_sym(&func_old_type, TOK___floatundisf);
1789 #if LDOUBLE_SIZE != 8
1790 else if (t == VT_LDOUBLE)
1791 vpush_global_sym(&func_old_type, TOK___floatundixf);
1792 #endif
1793 else
1794 vpush_global_sym(&func_old_type, TOK___floatundidf);
1795 vrott(2);
1796 gfunc_call(1);
1797 vpushi(0);
1798 vtop->r = reg_fret(t);
1799 } else {
1800 gen_cvt_itof(t);
1803 #endif
1805 /* generic ftoi for unsigned long long case */
1806 static void gen_cvt_ftoi1(int t)
1808 int st;
1810 if (t == (VT_LLONG | VT_UNSIGNED)) {
1811 /* not handled natively */
1812 st = vtop->type.t & VT_BTYPE;
1813 if (st == VT_FLOAT)
1814 vpush_global_sym(&func_old_type, TOK___fixunssfdi);
1815 #if LDOUBLE_SIZE != 8
1816 else if (st == VT_LDOUBLE)
1817 vpush_global_sym(&func_old_type, TOK___fixunsxfdi);
1818 #endif
1819 else
1820 vpush_global_sym(&func_old_type, TOK___fixunsdfdi);
1821 vrott(2);
1822 gfunc_call(1);
1823 vpushi(0);
1824 vtop->r = REG_IRET;
1825 vtop->r2 = REG_LRET;
1826 } else {
1827 gen_cvt_ftoi(t);
1831 /* force char or short cast */
1832 static void force_charshort_cast(int t)
1834 int bits, dbt;
1835 dbt = t & VT_BTYPE;
1836 /* XXX: add optimization if lvalue : just change type and offset */
1837 if (dbt == VT_BYTE)
1838 bits = 8;
1839 else
1840 bits = 16;
1841 if (t & VT_UNSIGNED) {
1842 vpushi((1 << bits) - 1);
1843 gen_op('&');
1844 } else {
1845 bits = 32 - bits;
1846 vpushi(bits);
1847 gen_op(TOK_SHL);
1848 /* result must be signed or the SAR is converted to an SHL
1849 This was not the case when "t" was a signed short
1850 and the last value on the stack was an unsigned int */
1851 vtop->type.t &= ~VT_UNSIGNED;
1852 vpushi(bits);
1853 gen_op(TOK_SAR);
1857 /* cast 'vtop' to 'type'. Casting to bitfields is forbidden. */
1858 static void gen_cast(CType *type)
1860 int sbt, dbt, sf, df, c, p;
1862 /* special delayed cast for char/short */
1863 /* XXX: in some cases (multiple cascaded casts), it may still
1864 be incorrect */
1865 if (vtop->r & VT_MUSTCAST) {
1866 vtop->r &= ~VT_MUSTCAST;
1867 force_charshort_cast(vtop->type.t);
1870 /* bitfields first get cast to ints */
1871 if (vtop->type.t & VT_BITFIELD) {
1872 gv(RC_INT);
1875 dbt = type->t & (VT_BTYPE | VT_UNSIGNED);
1876 sbt = vtop->type.t & (VT_BTYPE | VT_UNSIGNED);
1878 if (sbt != dbt) {
1879 sf = is_float(sbt);
1880 df = is_float(dbt);
1881 c = (vtop->r & (VT_VALMASK | VT_LVAL | VT_SYM)) == VT_CONST;
1882 p = (vtop->r & (VT_VALMASK | VT_LVAL | VT_SYM)) == (VT_CONST | VT_SYM);
1883 if (c) {
1884 /* constant case: we can do it now */
1885 /* XXX: in ISOC, cannot do it if error in convert */
1886 if (sbt == VT_FLOAT)
1887 vtop->c.ld = vtop->c.f;
1888 else if (sbt == VT_DOUBLE)
1889 vtop->c.ld = vtop->c.d;
1891 if (df) {
1892 if ((sbt & VT_BTYPE) == VT_LLONG) {
1893 if (sbt & VT_UNSIGNED)
1894 vtop->c.ld = vtop->c.ull;
1895 else
1896 vtop->c.ld = vtop->c.ll;
1897 } else if(!sf) {
1898 if (sbt & VT_UNSIGNED)
1899 vtop->c.ld = vtop->c.ui;
1900 else
1901 vtop->c.ld = vtop->c.i;
1904 if (dbt == VT_FLOAT)
1905 vtop->c.f = (float)vtop->c.ld;
1906 else if (dbt == VT_DOUBLE)
1907 vtop->c.d = (double)vtop->c.ld;
1908 } else if (sf && dbt == (VT_LLONG|VT_UNSIGNED)) {
1909 vtop->c.ull = (unsigned long long)vtop->c.ld;
1910 } else if (sf && dbt == VT_BOOL) {
1911 vtop->c.i = (vtop->c.ld != 0);
1912 } else {
1913 if(sf)
1914 vtop->c.ll = (long long)vtop->c.ld;
1915 else if (sbt == (VT_LLONG|VT_UNSIGNED))
1916 vtop->c.ll = vtop->c.ull;
1917 else if (sbt & VT_UNSIGNED)
1918 vtop->c.ll = vtop->c.ui;
1919 #ifdef TCC_TARGET_X86_64
1920 else if (sbt == VT_PTR)
1922 #endif
1923 else if (sbt != VT_LLONG)
1924 vtop->c.ll = vtop->c.i;
1926 if (dbt == (VT_LLONG|VT_UNSIGNED))
1927 vtop->c.ull = vtop->c.ll;
1928 else if (dbt == VT_BOOL)
1929 vtop->c.i = (vtop->c.ll != 0);
1930 else if (dbt != VT_LLONG) {
1931 int s = 0;
1932 if ((dbt & VT_BTYPE) == VT_BYTE)
1933 s = 24;
1934 else if ((dbt & VT_BTYPE) == VT_SHORT)
1935 s = 16;
1937 if(dbt & VT_UNSIGNED)
1938 vtop->c.ui = ((unsigned int)vtop->c.ll << s) >> s;
1939 else
1940 vtop->c.i = ((int)vtop->c.ll << s) >> s;
1943 } else if (p && dbt == VT_BOOL) {
1944 vtop->r = VT_CONST;
1945 vtop->c.i = 1;
1946 } else if (!nocode_wanted) {
1947 /* non constant case: generate code */
1948 if (sf && df) {
1949 /* convert from fp to fp */
1950 gen_cvt_ftof(dbt);
1951 } else if (df) {
1952 /* convert int to fp */
1953 gen_cvt_itof1(dbt);
1954 } else if (sf) {
1955 /* convert fp to int */
1956 if (dbt == VT_BOOL) {
1957 vpushi(0);
1958 gen_op(TOK_NE);
1959 } else {
1960 /* we handle char/short/etc... with generic code */
1961 if (dbt != (VT_INT | VT_UNSIGNED) &&
1962 dbt != (VT_LLONG | VT_UNSIGNED) &&
1963 dbt != VT_LLONG)
1964 dbt = VT_INT;
1965 gen_cvt_ftoi1(dbt);
1966 if (dbt == VT_INT && (type->t & (VT_BTYPE | VT_UNSIGNED)) != dbt) {
1967 /* additional cast for char/short... */
1968 vtop->type.t = dbt;
1969 gen_cast(type);
1972 #ifndef TCC_TARGET_X86_64
1973 } else if ((dbt & VT_BTYPE) == VT_LLONG) {
1974 if ((sbt & VT_BTYPE) != VT_LLONG) {
1975 /* scalar to long long */
1976 /* machine independent conversion */
1977 gv(RC_INT);
1978 /* generate high word */
1979 if (sbt == (VT_INT | VT_UNSIGNED)) {
1980 vpushi(0);
1981 gv(RC_INT);
1982 } else {
1983 if (sbt == VT_PTR) {
1984 /* cast from pointer to int before we apply
1985 shift operation, which pointers don't support*/
1986 gen_cast(&int_type);
1988 gv_dup();
1989 vpushi(31);
1990 gen_op(TOK_SAR);
1992 /* patch second register */
1993 vtop[-1].r2 = vtop->r;
1994 vpop();
1996 #else
1997 } else if ((dbt & VT_BTYPE) == VT_LLONG ||
1998 (dbt & VT_BTYPE) == VT_PTR ||
1999 (dbt & VT_BTYPE) == VT_FUNC) {
2000 if ((sbt & VT_BTYPE) != VT_LLONG &&
2001 (sbt & VT_BTYPE) != VT_PTR &&
2002 (sbt & VT_BTYPE) != VT_FUNC) {
2003 /* need to convert from 32bit to 64bit */
2004 int r = gv(RC_INT);
2005 if (sbt != (VT_INT | VT_UNSIGNED)) {
2006 /* x86_64 specific: movslq */
2007 o(0x6348);
2008 o(0xc0 + (REG_VALUE(r) << 3) + REG_VALUE(r));
2011 #endif
2012 } else if (dbt == VT_BOOL) {
2013 /* scalar to bool */
2014 vpushi(0);
2015 gen_op(TOK_NE);
2016 } else if ((dbt & VT_BTYPE) == VT_BYTE ||
2017 (dbt & VT_BTYPE) == VT_SHORT) {
2018 if (sbt == VT_PTR) {
2019 vtop->type.t = VT_INT;
2020 tcc_warning("nonportable conversion from pointer to char/short");
2022 force_charshort_cast(dbt);
2023 } else if ((dbt & VT_BTYPE) == VT_INT) {
2024 /* scalar to int */
2025 if (sbt == VT_LLONG) {
2026 /* from long long: just take low order word */
2027 lexpand();
2028 vpop();
2030 /* if lvalue and single word type, nothing to do because
2031 the lvalue already contains the real type size (see
2032 VT_LVAL_xxx constants) */
2035 } else if ((dbt & VT_BTYPE) == VT_PTR && !(vtop->r & VT_LVAL)) {
2036 /* if we are casting between pointer types,
2037 we must update the VT_LVAL_xxx size */
2038 vtop->r = (vtop->r & ~VT_LVAL_TYPE)
2039 | (lvalue_type(type->ref->type.t) & VT_LVAL_TYPE);
2041 vtop->type = *type;
2044 /* return type size as known at compile time. Put alignment at 'a' */
2045 ST_FUNC int type_size(CType *type, int *a)
2047 Sym *s;
2048 int bt;
2050 bt = type->t & VT_BTYPE;
2051 if (bt == VT_STRUCT) {
2052 /* struct/union */
2053 s = type->ref;
2054 *a = s->r;
2055 return s->c;
2056 } else if (bt == VT_PTR) {
2057 if (type->t & VT_ARRAY) {
2058 int ts;
2060 s = type->ref;
2061 ts = type_size(&s->type, a);
2063 if (ts < 0 && s->c < 0)
2064 ts = -ts;
2066 return ts * s->c;
2067 } else {
2068 *a = PTR_SIZE;
2069 return PTR_SIZE;
2071 } else if (bt == VT_LDOUBLE) {
2072 *a = LDOUBLE_ALIGN;
2073 return LDOUBLE_SIZE;
2074 } else if (bt == VT_DOUBLE || bt == VT_LLONG) {
2075 #ifdef TCC_TARGET_I386
2076 #ifdef TCC_TARGET_PE
2077 *a = 8;
2078 #else
2079 *a = 4;
2080 #endif
2081 #elif defined(TCC_TARGET_ARM)
2082 #ifdef TCC_ARM_EABI
2083 *a = 8;
2084 #else
2085 *a = 4;
2086 #endif
2087 #else
2088 *a = 8;
2089 #endif
2090 return 8;
2091 } else if (bt == VT_INT || bt == VT_ENUM || bt == VT_FLOAT) {
2092 *a = 4;
2093 return 4;
2094 } else if (bt == VT_SHORT) {
2095 *a = 2;
2096 return 2;
2097 } else if (bt == VT_QLONG || bt == VT_QFLOAT) {
2098 *a = 8;
2099 return 16;
2100 } else {
2101 /* char, void, function, _Bool */
2102 *a = 1;
2103 return 1;
2107 /* push type size as known at runtime time on top of value stack. Put
2108 alignment at 'a' */
2109 ST_FUNC void vla_runtime_type_size(CType *type, int *a)
2111 if (type->t & VT_VLA) {
2112 vset(&int_type, VT_LOCAL|VT_LVAL, type->ref->c);
2113 } else {
2114 vpushi(type_size(type, a));
2118 static void vla_sp_save(void) {
2119 if (!(vla_flags & VLA_SP_LOC_SET)) {
2120 *vla_sp_loc = (loc -= PTR_SIZE);
2121 vla_flags |= VLA_SP_LOC_SET;
2123 if (!(vla_flags & VLA_SP_SAVED)) {
2124 gen_vla_sp_save(*vla_sp_loc);
2125 vla_flags |= VLA_SP_SAVED;
2129 /* return the pointed type of t */
2130 static inline CType *pointed_type(CType *type)
2132 return &type->ref->type;
2135 /* modify type so that its it is a pointer to type. */
2136 ST_FUNC void mk_pointer(CType *type)
2138 Sym *s;
2139 s = sym_push(SYM_FIELD, type, 0, -1);
2140 type->t = VT_PTR | (type->t & ~VT_TYPE);
2141 type->ref = s;
2144 /* compare function types. OLD functions match any new functions */
2145 static int is_compatible_func(CType *type1, CType *type2)
2147 Sym *s1, *s2;
2149 s1 = type1->ref;
2150 s2 = type2->ref;
2151 if (!is_compatible_types(&s1->type, &s2->type))
2152 return 0;
2153 /* check func_call */
2154 if (FUNC_CALL(s1->r) != FUNC_CALL(s2->r))
2155 return 0;
2156 /* XXX: not complete */
2157 if (s1->c == FUNC_OLD || s2->c == FUNC_OLD)
2158 return 1;
2159 if (s1->c != s2->c)
2160 return 0;
2161 while (s1 != NULL) {
2162 if (s2 == NULL)
2163 return 0;
2164 if (!is_compatible_parameter_types(&s1->type, &s2->type))
2165 return 0;
2166 s1 = s1->next;
2167 s2 = s2->next;
2169 if (s2)
2170 return 0;
2171 return 1;
2174 /* return true if type1 and type2 are the same. If unqualified is
2175 true, qualifiers on the types are ignored.
2177 - enums are not checked as gcc __builtin_types_compatible_p ()
2179 static int compare_types(CType *type1, CType *type2, int unqualified)
2181 int bt1, t1, t2;
2183 t1 = type1->t & VT_TYPE;
2184 t2 = type2->t & VT_TYPE;
2185 if (unqualified) {
2186 /* strip qualifiers before comparing */
2187 t1 &= ~(VT_CONSTANT | VT_VOLATILE);
2188 t2 &= ~(VT_CONSTANT | VT_VOLATILE);
2190 /* XXX: bitfields ? */
2191 if (t1 != t2)
2192 return 0;
2193 /* test more complicated cases */
2194 bt1 = t1 & VT_BTYPE;
2195 if (bt1 == VT_PTR) {
2196 type1 = pointed_type(type1);
2197 type2 = pointed_type(type2);
2198 return is_compatible_types(type1, type2);
2199 } else if (bt1 == VT_STRUCT) {
2200 return (type1->ref == type2->ref);
2201 } else if (bt1 == VT_FUNC) {
2202 return is_compatible_func(type1, type2);
2203 } else {
2204 return 1;
2208 /* return true if type1 and type2 are exactly the same (including
2209 qualifiers).
2211 static int is_compatible_types(CType *type1, CType *type2)
2213 return compare_types(type1,type2,0);
2216 /* return true if type1 and type2 are the same (ignoring qualifiers).
2218 static int is_compatible_parameter_types(CType *type1, CType *type2)
2220 return compare_types(type1,type2,1);
2223 /* print a type. If 'varstr' is not NULL, then the variable is also
2224 printed in the type */
2225 /* XXX: union */
2226 /* XXX: add array and function pointers */
2227 static void type_to_str(char *buf, int buf_size,
2228 CType *type, const char *varstr)
2230 int bt, v, t;
2231 Sym *s, *sa;
2232 char buf1[256];
2233 const char *tstr;
2235 t = type->t & VT_TYPE;
2236 bt = t & VT_BTYPE;
2237 buf[0] = '\0';
2238 if (t & VT_CONSTANT)
2239 pstrcat(buf, buf_size, "const ");
2240 if (t & VT_VOLATILE)
2241 pstrcat(buf, buf_size, "volatile ");
2242 if (t & VT_UNSIGNED)
2243 pstrcat(buf, buf_size, "unsigned ");
2244 switch(bt) {
2245 case VT_VOID:
2246 tstr = "void";
2247 goto add_tstr;
2248 case VT_BOOL:
2249 tstr = "_Bool";
2250 goto add_tstr;
2251 case VT_BYTE:
2252 tstr = "char";
2253 goto add_tstr;
2254 case VT_SHORT:
2255 tstr = "short";
2256 goto add_tstr;
2257 case VT_INT:
2258 tstr = "int";
2259 goto add_tstr;
2260 case VT_LONG:
2261 tstr = "long";
2262 goto add_tstr;
2263 case VT_LLONG:
2264 tstr = "long long";
2265 goto add_tstr;
2266 case VT_FLOAT:
2267 tstr = "float";
2268 goto add_tstr;
2269 case VT_DOUBLE:
2270 tstr = "double";
2271 goto add_tstr;
2272 case VT_LDOUBLE:
2273 tstr = "long double";
2274 add_tstr:
2275 pstrcat(buf, buf_size, tstr);
2276 break;
2277 case VT_ENUM:
2278 case VT_STRUCT:
2279 if (bt == VT_STRUCT)
2280 tstr = "struct ";
2281 else
2282 tstr = "enum ";
2283 pstrcat(buf, buf_size, tstr);
2284 v = type->ref->v & ~SYM_STRUCT;
2285 if (v >= SYM_FIRST_ANOM)
2286 pstrcat(buf, buf_size, "<anonymous>");
2287 else
2288 pstrcat(buf, buf_size, get_tok_str(v, NULL));
2289 break;
2290 case VT_FUNC:
2291 s = type->ref;
2292 type_to_str(buf, buf_size, &s->type, varstr);
2293 pstrcat(buf, buf_size, "(");
2294 sa = s->next;
2295 while (sa != NULL) {
2296 type_to_str(buf1, sizeof(buf1), &sa->type, NULL);
2297 pstrcat(buf, buf_size, buf1);
2298 sa = sa->next;
2299 if (sa)
2300 pstrcat(buf, buf_size, ", ");
2302 pstrcat(buf, buf_size, ")");
2303 goto no_var;
2304 case VT_PTR:
2305 s = type->ref;
2306 pstrcpy(buf1, sizeof(buf1), "*");
2307 if (varstr)
2308 pstrcat(buf1, sizeof(buf1), varstr);
2309 type_to_str(buf, buf_size, &s->type, buf1);
2310 goto no_var;
2312 if (varstr) {
2313 pstrcat(buf, buf_size, " ");
2314 pstrcat(buf, buf_size, varstr);
2316 no_var: ;
2319 /* verify type compatibility to store vtop in 'dt' type, and generate
2320 casts if needed. */
2321 static void gen_assign_cast(CType *dt)
2323 CType *st, *type1, *type2, tmp_type1, tmp_type2;
2324 char buf1[256], buf2[256];
2325 int dbt, sbt;
2327 st = &vtop->type; /* source type */
2328 dbt = dt->t & VT_BTYPE;
2329 sbt = st->t & VT_BTYPE;
2330 if (sbt == VT_VOID)
2331 tcc_error("Cannot assign void value");
2332 if (dt->t & VT_CONSTANT)
2333 tcc_warning("assignment of read-only location");
2334 switch(dbt) {
2335 case VT_PTR:
2336 /* special cases for pointers */
2337 /* '0' can also be a pointer */
2338 if (is_null_pointer(vtop))
2339 goto type_ok;
2340 /* accept implicit pointer to integer cast with warning */
2341 if (is_integer_btype(sbt)) {
2342 tcc_warning("assignment makes pointer from integer without a cast");
2343 goto type_ok;
2345 type1 = pointed_type(dt);
2346 /* a function is implicitely a function pointer */
2347 if (sbt == VT_FUNC) {
2348 if ((type1->t & VT_BTYPE) != VT_VOID &&
2349 !is_compatible_types(pointed_type(dt), st))
2350 tcc_warning("assignment from incompatible pointer type");
2351 goto type_ok;
2353 if (sbt != VT_PTR)
2354 goto error;
2355 type2 = pointed_type(st);
2356 if ((type1->t & VT_BTYPE) == VT_VOID ||
2357 (type2->t & VT_BTYPE) == VT_VOID) {
2358 /* void * can match anything */
2359 } else {
2360 /* exact type match, except for unsigned */
2361 tmp_type1 = *type1;
2362 tmp_type2 = *type2;
2363 tmp_type1.t &= ~(VT_UNSIGNED | VT_CONSTANT | VT_VOLATILE);
2364 tmp_type2.t &= ~(VT_UNSIGNED | VT_CONSTANT | VT_VOLATILE);
2365 if (!is_compatible_types(&tmp_type1, &tmp_type2))
2366 tcc_warning("assignment from incompatible pointer type");
2368 /* check const and volatile */
2369 if ((!(type1->t & VT_CONSTANT) && (type2->t & VT_CONSTANT)) ||
2370 (!(type1->t & VT_VOLATILE) && (type2->t & VT_VOLATILE)))
2371 tcc_warning("assignment discards qualifiers from pointer target type");
2372 break;
2373 case VT_BYTE:
2374 case VT_SHORT:
2375 case VT_INT:
2376 case VT_LLONG:
2377 if (sbt == VT_PTR || sbt == VT_FUNC) {
2378 tcc_warning("assignment makes integer from pointer without a cast");
2380 /* XXX: more tests */
2381 break;
2382 case VT_STRUCT:
2383 tmp_type1 = *dt;
2384 tmp_type2 = *st;
2385 tmp_type1.t &= ~(VT_CONSTANT | VT_VOLATILE);
2386 tmp_type2.t &= ~(VT_CONSTANT | VT_VOLATILE);
2387 if (!is_compatible_types(&tmp_type1, &tmp_type2)) {
2388 error:
2389 type_to_str(buf1, sizeof(buf1), st, NULL);
2390 type_to_str(buf2, sizeof(buf2), dt, NULL);
2391 tcc_error("cannot cast '%s' to '%s'", buf1, buf2);
2393 break;
2395 type_ok:
2396 gen_cast(dt);
2399 /* store vtop in lvalue pushed on stack */
2400 ST_FUNC void vstore(void)
2402 int sbt, dbt, ft, r, t, size, align, bit_size, bit_pos, rc, delayed_cast;
2404 ft = vtop[-1].type.t;
2405 sbt = vtop->type.t & VT_BTYPE;
2406 dbt = ft & VT_BTYPE;
2407 if ((((sbt == VT_INT || sbt == VT_SHORT) && dbt == VT_BYTE) ||
2408 (sbt == VT_INT && dbt == VT_SHORT))
2409 && !(vtop->type.t & VT_BITFIELD)) {
2410 /* optimize char/short casts */
2411 delayed_cast = VT_MUSTCAST;
2412 vtop->type.t = ft & (VT_TYPE & ~(VT_BITFIELD | (-1 << VT_STRUCT_SHIFT)));
2413 /* XXX: factorize */
2414 if (ft & VT_CONSTANT)
2415 tcc_warning("assignment of read-only location");
2416 } else {
2417 delayed_cast = 0;
2418 if (!(ft & VT_BITFIELD))
2419 gen_assign_cast(&vtop[-1].type);
2422 if (sbt == VT_STRUCT) {
2423 /* if structure, only generate pointer */
2424 /* structure assignment : generate memcpy */
2425 /* XXX: optimize if small size */
2426 if (!nocode_wanted) {
2427 size = type_size(&vtop->type, &align);
2429 /* destination */
2430 vswap();
2431 vtop->type.t = VT_PTR;
2432 gaddrof();
2434 /* address of memcpy() */
2435 #ifdef TCC_ARM_EABI
2436 if(!(align & 7))
2437 vpush_global_sym(&func_old_type, TOK_memcpy8);
2438 else if(!(align & 3))
2439 vpush_global_sym(&func_old_type, TOK_memcpy4);
2440 else
2441 #endif
2442 vpush_global_sym(&func_old_type, TOK_memcpy);
2444 vswap();
2445 /* source */
2446 vpushv(vtop - 2);
2447 vtop->type.t = VT_PTR;
2448 gaddrof();
2449 /* type size */
2450 vpushi(size);
2451 gfunc_call(3);
2452 } else {
2453 vswap();
2454 vpop();
2456 /* leave source on stack */
2457 } else if (ft & VT_BITFIELD) {
2458 /* bitfield store handling */
2459 bit_pos = (ft >> VT_STRUCT_SHIFT) & 0x3f;
2460 bit_size = (ft >> (VT_STRUCT_SHIFT + 6)) & 0x3f;
2461 /* remove bit field info to avoid loops */
2462 vtop[-1].type.t = ft & ~(VT_BITFIELD | (-1 << VT_STRUCT_SHIFT));
2464 /* duplicate source into other register */
2465 gv_dup();
2466 vswap();
2467 vrott(3);
2469 if((ft & VT_BTYPE) == VT_BOOL) {
2470 gen_cast(&vtop[-1].type);
2471 vtop[-1].type.t = (vtop[-1].type.t & ~VT_BTYPE) | (VT_BYTE | VT_UNSIGNED);
2474 /* duplicate destination */
2475 vdup();
2476 vtop[-1] = vtop[-2];
2478 /* mask and shift source */
2479 if((ft & VT_BTYPE) != VT_BOOL) {
2480 if((ft & VT_BTYPE) == VT_LLONG) {
2481 vpushll((1ULL << bit_size) - 1ULL);
2482 } else {
2483 vpushi((1 << bit_size) - 1);
2485 gen_op('&');
2487 vpushi(bit_pos);
2488 gen_op(TOK_SHL);
2489 /* load destination, mask and or with source */
2490 vswap();
2491 if((ft & VT_BTYPE) == VT_LLONG) {
2492 vpushll(~(((1ULL << bit_size) - 1ULL) << bit_pos));
2493 } else {
2494 vpushi(~(((1 << bit_size) - 1) << bit_pos));
2496 gen_op('&');
2497 gen_op('|');
2498 /* store result */
2499 vstore();
2501 /* pop off shifted source from "duplicate source..." above */
2502 vpop();
2504 } else {
2505 #ifdef CONFIG_TCC_BCHECK
2506 /* bound check case */
2507 if (vtop[-1].r & VT_MUSTBOUND) {
2508 vswap();
2509 gbound();
2510 vswap();
2512 #endif
2513 if (!nocode_wanted) {
2514 rc = RC_INT;
2515 if (is_float(ft)) {
2516 rc = RC_FLOAT;
2517 #ifdef TCC_TARGET_X86_64
2518 if ((ft & VT_BTYPE) == VT_LDOUBLE) {
2519 rc = RC_ST0;
2520 } else if ((ft & VT_BTYPE) == VT_QFLOAT) {
2521 rc = RC_FRET;
2523 #endif
2525 r = gv(rc); /* generate value */
2526 /* if lvalue was saved on stack, must read it */
2527 if ((vtop[-1].r & VT_VALMASK) == VT_LLOCAL) {
2528 SValue sv;
2529 t = get_reg(RC_INT);
2530 #ifdef TCC_TARGET_X86_64
2531 sv.type.t = VT_PTR;
2532 #else
2533 sv.type.t = VT_INT;
2534 #endif
2535 sv.r = VT_LOCAL | VT_LVAL;
2536 sv.c.ul = vtop[-1].c.ul;
2537 load(t, &sv);
2538 vtop[-1].r = t | VT_LVAL;
2540 /* two word case handling : store second register at word + 4 (or +8 for x86-64) */
2541 #ifdef TCC_TARGET_X86_64
2542 if (((ft & VT_BTYPE) == VT_QLONG) || ((ft & VT_BTYPE) == VT_QFLOAT)) {
2543 int addr_type = VT_LLONG, load_size = 8, load_type = ((vtop->type.t & VT_BTYPE) == VT_QLONG) ? VT_LLONG : VT_DOUBLE;
2544 #else
2545 if ((ft & VT_BTYPE) == VT_LLONG) {
2546 int addr_type = VT_INT, load_size = 4, load_type = VT_INT;
2547 #endif
2548 vtop[-1].type.t = load_type;
2549 store(r, vtop - 1);
2550 vswap();
2551 /* convert to int to increment easily */
2552 vtop->type.t = addr_type;
2553 gaddrof();
2554 vpushi(load_size);
2555 gen_op('+');
2556 vtop->r |= VT_LVAL;
2557 vswap();
2558 vtop[-1].type.t = load_type;
2559 /* XXX: it works because r2 is spilled last ! */
2560 store(vtop->r2, vtop - 1);
2561 } else {
2562 store(r, vtop - 1);
2565 vswap();
2566 vtop--; /* NOT vpop() because on x86 it would flush the fp stack */
2567 vtop->r |= delayed_cast;
2571 /* post defines POST/PRE add. c is the token ++ or -- */
2572 ST_FUNC void inc(int post, int c)
2574 test_lvalue();
2575 vdup(); /* save lvalue */
2576 if (post) {
2577 gv_dup(); /* duplicate value */
2578 vrotb(3);
2579 vrotb(3);
2581 /* add constant */
2582 vpushi(c - TOK_MID);
2583 gen_op('+');
2584 vstore(); /* store value */
2585 if (post)
2586 vpop(); /* if post op, return saved value */
2589 /* Parse GNUC __attribute__ extension. Currently, the following
2590 extensions are recognized:
2591 - aligned(n) : set data/function alignment.
2592 - packed : force data alignment to 1
2593 - section(x) : generate data/code in this section.
2594 - unused : currently ignored, but may be used someday.
2595 - regparm(n) : pass function parameters in registers (i386 only)
2597 static void parse_attribute(AttributeDef *ad)
2599 int t, n;
2601 while (tok == TOK_ATTRIBUTE1 || tok == TOK_ATTRIBUTE2) {
2602 next();
2603 skip('(');
2604 skip('(');
2605 while (tok != ')') {
2606 if (tok < TOK_IDENT)
2607 expect("attribute name");
2608 t = tok;
2609 next();
2610 switch(t) {
2611 case TOK_SECTION1:
2612 case TOK_SECTION2:
2613 skip('(');
2614 if (tok != TOK_STR)
2615 expect("section name");
2616 ad->section = find_section(tcc_state, (char *)tokc.cstr->data);
2617 next();
2618 skip(')');
2619 break;
2620 case TOK_ALIAS1:
2621 case TOK_ALIAS2:
2622 skip('(');
2623 if (tok != TOK_STR)
2624 expect("alias(\"target\")");
2625 ad->alias_target = /* save string as token, for later */
2626 tok_alloc((char*)tokc.cstr->data, tokc.cstr->size-1)->tok;
2627 next();
2628 skip(')');
2629 break;
2630 case TOK_ALIGNED1:
2631 case TOK_ALIGNED2:
2632 if (tok == '(') {
2633 next();
2634 n = expr_const();
2635 if (n <= 0 || (n & (n - 1)) != 0)
2636 tcc_error("alignment must be a positive power of two");
2637 skip(')');
2638 } else {
2639 n = MAX_ALIGN;
2641 ad->aligned = n;
2642 break;
2643 case TOK_PACKED1:
2644 case TOK_PACKED2:
2645 ad->packed = 1;
2646 break;
2647 case TOK_WEAK1:
2648 case TOK_WEAK2:
2649 ad->weak = 1;
2650 break;
2651 case TOK_UNUSED1:
2652 case TOK_UNUSED2:
2653 /* currently, no need to handle it because tcc does not
2654 track unused objects */
2655 break;
2656 case TOK_NORETURN1:
2657 case TOK_NORETURN2:
2658 /* currently, no need to handle it because tcc does not
2659 track unused objects */
2660 break;
2661 case TOK_CDECL1:
2662 case TOK_CDECL2:
2663 case TOK_CDECL3:
2664 ad->func_call = FUNC_CDECL;
2665 break;
2666 case TOK_STDCALL1:
2667 case TOK_STDCALL2:
2668 case TOK_STDCALL3:
2669 ad->func_call = FUNC_STDCALL;
2670 break;
2671 #ifdef TCC_TARGET_I386
2672 case TOK_REGPARM1:
2673 case TOK_REGPARM2:
2674 skip('(');
2675 n = expr_const();
2676 if (n > 3)
2677 n = 3;
2678 else if (n < 0)
2679 n = 0;
2680 if (n > 0)
2681 ad->func_call = FUNC_FASTCALL1 + n - 1;
2682 skip(')');
2683 break;
2684 case TOK_FASTCALL1:
2685 case TOK_FASTCALL2:
2686 case TOK_FASTCALL3:
2687 ad->func_call = FUNC_FASTCALLW;
2688 break;
2689 #endif
2690 case TOK_MODE:
2691 skip('(');
2692 switch(tok) {
2693 case TOK_MODE_DI:
2694 ad->mode = VT_LLONG + 1;
2695 break;
2696 case TOK_MODE_HI:
2697 ad->mode = VT_SHORT + 1;
2698 break;
2699 case TOK_MODE_SI:
2700 ad->mode = VT_INT + 1;
2701 break;
2702 default:
2703 tcc_warning("__mode__(%s) not supported\n", get_tok_str(tok, NULL));
2704 break;
2706 next();
2707 skip(')');
2708 break;
2709 case TOK_DLLEXPORT:
2710 ad->func_export = 1;
2711 break;
2712 case TOK_DLLIMPORT:
2713 ad->func_import = 1;
2714 break;
2715 default:
2716 if (tcc_state->warn_unsupported)
2717 tcc_warning("'%s' attribute ignored", get_tok_str(t, NULL));
2718 /* skip parameters */
2719 if (tok == '(') {
2720 int parenthesis = 0;
2721 do {
2722 if (tok == '(')
2723 parenthesis++;
2724 else if (tok == ')')
2725 parenthesis--;
2726 next();
2727 } while (parenthesis && tok != -1);
2729 break;
2731 if (tok != ',')
2732 break;
2733 next();
2735 skip(')');
2736 skip(')');
2740 /* enum/struct/union declaration. u is either VT_ENUM or VT_STRUCT */
2741 static void struct_decl(CType *type, int u, int tdef)
2743 int a, v, size, align, maxalign, c, offset;
2744 int bit_size, bit_pos, bsize, bt, lbit_pos, prevbt;
2745 Sym *s, *ss, *ass, **ps;
2746 AttributeDef ad;
2747 CType type1, btype;
2749 a = tok; /* save decl type */
2750 next();
2751 if (tok != '{') {
2752 v = tok;
2753 next();
2754 /* struct already defined ? return it */
2755 if (v < TOK_IDENT)
2756 expect("struct/union/enum name");
2757 s = struct_find(v);
2758 if (s) {
2759 if (s->type.t != a)
2760 tcc_error("invalid type");
2761 goto do_decl;
2762 } else if (tok >= TOK_IDENT && !tdef)
2763 tcc_error("unknown struct/union/enum");
2764 } else {
2765 v = anon_sym++;
2767 type1.t = a;
2768 type1.ref = NULL;
2769 /* we put an undefined size for struct/union */
2770 s = sym_push(v | SYM_STRUCT, &type1, 0, -1);
2771 s->r = 0; /* default alignment is zero as gcc */
2772 /* put struct/union/enum name in type */
2773 do_decl:
2774 type->t = u;
2775 type->ref = s;
2777 if (tok == '{') {
2778 next();
2779 if (s->c != -1)
2780 tcc_error("struct/union/enum already defined");
2781 /* cannot be empty */
2782 c = 0;
2783 /* non empty enums are not allowed */
2784 if (a == TOK_ENUM) {
2785 for(;;) {
2786 v = tok;
2787 if (v < TOK_UIDENT)
2788 expect("identifier");
2789 ss = sym_find(v);
2790 if (ss)
2791 tcc_error("redefinition of enumerator '%s'",
2792 get_tok_str(v, NULL));
2793 next();
2794 if (tok == '=') {
2795 next();
2796 c = expr_const();
2798 /* enum symbols have static storage */
2799 ss = sym_push(v, &int_type, VT_CONST, c);
2800 ss->type.t |= VT_STATIC;
2801 if (tok != ',')
2802 break;
2803 next();
2804 c++;
2805 /* NOTE: we accept a trailing comma */
2806 if (tok == '}')
2807 break;
2809 s->c = type_size(&int_type, &align);
2810 skip('}');
2811 } else {
2812 maxalign = 1;
2813 ps = &s->next;
2814 prevbt = VT_INT;
2815 bit_pos = 0;
2816 offset = 0;
2817 while (tok != '}') {
2818 parse_btype(&btype, &ad);
2819 while (1) {
2820 bit_size = -1;
2821 v = 0;
2822 type1 = btype;
2823 if (tok != ':') {
2824 type_decl(&type1, &ad, &v, TYPE_DIRECT | TYPE_ABSTRACT);
2825 if (v == 0 && (type1.t & VT_BTYPE) != VT_STRUCT)
2826 expect("identifier");
2827 if ((type1.t & VT_BTYPE) == VT_FUNC ||
2828 (type1.t & (VT_TYPEDEF | VT_STATIC | VT_EXTERN | VT_INLINE)))
2829 tcc_error("invalid type for '%s'",
2830 get_tok_str(v, NULL));
2832 if (tok == ':') {
2833 next();
2834 bit_size = expr_const();
2835 /* XXX: handle v = 0 case for messages */
2836 if (bit_size < 0)
2837 tcc_error("negative width in bit-field '%s'",
2838 get_tok_str(v, NULL));
2839 if (v && bit_size == 0)
2840 tcc_error("zero width for bit-field '%s'",
2841 get_tok_str(v, NULL));
2843 size = type_size(&type1, &align);
2844 if (ad.aligned) {
2845 if (align < ad.aligned)
2846 align = ad.aligned;
2847 } else if (ad.packed) {
2848 align = 1;
2849 } else if (*tcc_state->pack_stack_ptr) {
2850 if (align > *tcc_state->pack_stack_ptr)
2851 align = *tcc_state->pack_stack_ptr;
2853 lbit_pos = 0;
2854 if (bit_size >= 0) {
2855 bt = type1.t & VT_BTYPE;
2856 if (bt != VT_INT &&
2857 bt != VT_BYTE &&
2858 bt != VT_SHORT &&
2859 bt != VT_BOOL &&
2860 bt != VT_ENUM &&
2861 bt != VT_LLONG)
2862 tcc_error("bitfields must have scalar type");
2863 bsize = size * 8;
2864 if (bit_size > bsize) {
2865 tcc_error("width of '%s' exceeds its type",
2866 get_tok_str(v, NULL));
2867 } else if (bit_size == bsize) {
2868 /* no need for bit fields */
2869 bit_pos = 0;
2870 } else if (bit_size == 0) {
2871 /* XXX: what to do if only padding in a
2872 structure ? */
2873 /* zero size: means to pad */
2874 bit_pos = 0;
2875 } else {
2876 /* we do not have enough room ?
2877 did the type change?
2878 is it a union? */
2879 if ((bit_pos + bit_size) > bsize ||
2880 bt != prevbt || a == TOK_UNION)
2881 bit_pos = 0;
2882 lbit_pos = bit_pos;
2883 /* XXX: handle LSB first */
2884 type1.t |= VT_BITFIELD |
2885 (bit_pos << VT_STRUCT_SHIFT) |
2886 (bit_size << (VT_STRUCT_SHIFT + 6));
2887 bit_pos += bit_size;
2889 prevbt = bt;
2890 } else {
2891 bit_pos = 0;
2893 if (v != 0 || (type1.t & VT_BTYPE) == VT_STRUCT) {
2894 /* add new memory data only if starting
2895 bit field */
2896 if (lbit_pos == 0) {
2897 if (a == TOK_STRUCT) {
2898 c = (c + align - 1) & -align;
2899 offset = c;
2900 if (size > 0)
2901 c += size;
2902 } else {
2903 offset = 0;
2904 if (size > c)
2905 c = size;
2907 if (align > maxalign)
2908 maxalign = align;
2910 #if 0
2911 printf("add field %s offset=%d",
2912 get_tok_str(v, NULL), offset);
2913 if (type1.t & VT_BITFIELD) {
2914 printf(" pos=%d size=%d",
2915 (type1.t >> VT_STRUCT_SHIFT) & 0x3f,
2916 (type1.t >> (VT_STRUCT_SHIFT + 6)) & 0x3f);
2918 printf("\n");
2919 #endif
2921 if (v == 0 && (type1.t & VT_BTYPE) == VT_STRUCT) {
2922 ass = type1.ref;
2923 while ((ass = ass->next) != NULL) {
2924 ss = sym_push(ass->v, &ass->type, 0, offset + ass->c);
2925 *ps = ss;
2926 ps = &ss->next;
2928 } else if (v) {
2929 ss = sym_push(v | SYM_FIELD, &type1, 0, offset);
2930 *ps = ss;
2931 ps = &ss->next;
2933 if (tok == ';' || tok == TOK_EOF)
2934 break;
2935 skip(',');
2937 skip(';');
2939 skip('}');
2940 /* store size and alignment */
2941 s->c = (c + maxalign - 1) & -maxalign;
2942 s->r = maxalign;
2947 /* return 0 if no type declaration. otherwise, return the basic type
2948 and skip it.
2950 static int parse_btype(CType *type, AttributeDef *ad)
2952 int t, u, type_found, typespec_found, typedef_found;
2953 Sym *s;
2954 CType type1;
2956 memset(ad, 0, sizeof(AttributeDef));
2957 type_found = 0;
2958 typespec_found = 0;
2959 typedef_found = 0;
2960 t = 0;
2961 while(1) {
2962 switch(tok) {
2963 case TOK_EXTENSION:
2964 /* currently, we really ignore extension */
2965 next();
2966 continue;
2968 /* basic types */
2969 case TOK_CHAR:
2970 u = VT_BYTE;
2971 basic_type:
2972 next();
2973 basic_type1:
2974 if ((t & VT_BTYPE) != 0)
2975 tcc_error("too many basic types");
2976 t |= u;
2977 typespec_found = 1;
2978 break;
2979 case TOK_VOID:
2980 u = VT_VOID;
2981 goto basic_type;
2982 case TOK_SHORT:
2983 u = VT_SHORT;
2984 goto basic_type;
2985 case TOK_INT:
2986 next();
2987 typespec_found = 1;
2988 break;
2989 case TOK_LONG:
2990 next();
2991 if ((t & VT_BTYPE) == VT_DOUBLE) {
2992 #ifndef TCC_TARGET_PE
2993 t = (t & ~VT_BTYPE) | VT_LDOUBLE;
2994 #endif
2995 } else if ((t & VT_BTYPE) == VT_LONG) {
2996 t = (t & ~VT_BTYPE) | VT_LLONG;
2997 } else {
2998 u = VT_LONG;
2999 goto basic_type1;
3001 break;
3002 case TOK_BOOL:
3003 u = VT_BOOL;
3004 goto basic_type;
3005 case TOK_FLOAT:
3006 u = VT_FLOAT;
3007 goto basic_type;
3008 case TOK_DOUBLE:
3009 next();
3010 if ((t & VT_BTYPE) == VT_LONG) {
3011 #ifdef TCC_TARGET_PE
3012 t = (t & ~VT_BTYPE) | VT_DOUBLE;
3013 #else
3014 t = (t & ~VT_BTYPE) | VT_LDOUBLE;
3015 #endif
3016 } else {
3017 u = VT_DOUBLE;
3018 goto basic_type1;
3020 break;
3021 case TOK_ENUM:
3022 struct_decl(&type1, VT_ENUM, t & VT_TYPEDEF);
3023 basic_type2:
3024 u = type1.t;
3025 type->ref = type1.ref;
3026 goto basic_type1;
3027 case TOK_STRUCT:
3028 case TOK_UNION:
3029 struct_decl(&type1, VT_STRUCT, t & VT_TYPEDEF);
3030 goto basic_type2;
3032 /* type modifiers */
3033 case TOK_CONST1:
3034 case TOK_CONST2:
3035 case TOK_CONST3:
3036 t |= VT_CONSTANT;
3037 next();
3038 break;
3039 case TOK_VOLATILE1:
3040 case TOK_VOLATILE2:
3041 case TOK_VOLATILE3:
3042 t |= VT_VOLATILE;
3043 next();
3044 break;
3045 case TOK_SIGNED1:
3046 case TOK_SIGNED2:
3047 case TOK_SIGNED3:
3048 typespec_found = 1;
3049 t |= VT_SIGNED;
3050 next();
3051 break;
3052 case TOK_REGISTER:
3053 case TOK_AUTO:
3054 case TOK_RESTRICT1:
3055 case TOK_RESTRICT2:
3056 case TOK_RESTRICT3:
3057 next();
3058 break;
3059 case TOK_UNSIGNED:
3060 t |= VT_UNSIGNED;
3061 next();
3062 typespec_found = 1;
3063 break;
3065 /* storage */
3066 case TOK_EXTERN:
3067 t |= VT_EXTERN;
3068 next();
3069 break;
3070 case TOK_STATIC:
3071 t |= VT_STATIC;
3072 next();
3073 break;
3074 case TOK_TYPEDEF:
3075 t |= VT_TYPEDEF;
3076 next();
3077 break;
3078 case TOK_INLINE1:
3079 case TOK_INLINE2:
3080 case TOK_INLINE3:
3081 t |= VT_INLINE;
3082 next();
3083 break;
3085 /* GNUC attribute */
3086 case TOK_ATTRIBUTE1:
3087 case TOK_ATTRIBUTE2:
3088 parse_attribute(ad);
3089 if (ad->mode) {
3090 u = ad->mode -1;
3091 t = (t & ~VT_BTYPE) | u;
3093 break;
3094 /* GNUC typeof */
3095 case TOK_TYPEOF1:
3096 case TOK_TYPEOF2:
3097 case TOK_TYPEOF3:
3098 next();
3099 parse_expr_type(&type1);
3100 /* remove all storage modifiers except typedef */
3101 type1.t &= ~(VT_STORAGE&~VT_TYPEDEF);
3102 goto basic_type2;
3103 default:
3104 if (typespec_found || typedef_found)
3105 goto the_end;
3106 s = sym_find(tok);
3107 if (!s || !(s->type.t & VT_TYPEDEF))
3108 goto the_end;
3109 typedef_found = 1;
3110 t |= (s->type.t & ~VT_TYPEDEF);
3111 type->ref = s->type.ref;
3112 if (s->r) {
3113 /* get attributes from typedef */
3114 if (0 == ad->aligned)
3115 ad->aligned = FUNC_ALIGN(s->r);
3116 if (0 == ad->func_call)
3117 ad->func_call = FUNC_CALL(s->r);
3118 ad->packed |= FUNC_PACKED(s->r);
3120 next();
3121 typespec_found = 1;
3122 break;
3124 type_found = 1;
3126 the_end:
3127 if ((t & (VT_SIGNED|VT_UNSIGNED)) == (VT_SIGNED|VT_UNSIGNED))
3128 tcc_error("signed and unsigned modifier");
3129 if (tcc_state->char_is_unsigned) {
3130 if ((t & (VT_SIGNED|VT_UNSIGNED|VT_BTYPE)) == VT_BYTE)
3131 t |= VT_UNSIGNED;
3133 t &= ~VT_SIGNED;
3135 /* long is never used as type */
3136 if ((t & VT_BTYPE) == VT_LONG)
3137 #if !defined TCC_TARGET_X86_64 || defined TCC_TARGET_PE
3138 t = (t & ~VT_BTYPE) | VT_INT;
3139 #else
3140 t = (t & ~VT_BTYPE) | VT_LLONG;
3141 #endif
3142 type->t = t;
3143 return type_found;
3146 /* convert a function parameter type (array to pointer and function to
3147 function pointer) */
3148 static inline void convert_parameter_type(CType *pt)
3150 /* remove const and volatile qualifiers (XXX: const could be used
3151 to indicate a const function parameter */
3152 pt->t &= ~(VT_CONSTANT | VT_VOLATILE);
3153 /* array must be transformed to pointer according to ANSI C */
3154 pt->t &= ~VT_ARRAY;
3155 if ((pt->t & VT_BTYPE) == VT_FUNC) {
3156 mk_pointer(pt);
3160 ST_FUNC void parse_asm_str(CString *astr)
3162 skip('(');
3163 /* read the string */
3164 if (tok != TOK_STR)
3165 expect("string constant");
3166 cstr_new(astr);
3167 while (tok == TOK_STR) {
3168 /* XXX: add \0 handling too ? */
3169 cstr_cat(astr, tokc.cstr->data);
3170 next();
3172 cstr_ccat(astr, '\0');
3175 /* Parse an asm label and return the label
3176 * Don't forget to free the CString in the caller! */
3177 static void asm_label_instr(CString *astr)
3179 next();
3180 parse_asm_str(astr);
3181 skip(')');
3182 #ifdef ASM_DEBUG
3183 printf("asm_alias: \"%s\"\n", (char *)astr->data);
3184 #endif
3187 static void post_type(CType *type, AttributeDef *ad)
3189 int n, l, t1, arg_size, align;
3190 Sym **plast, *s, *first;
3191 AttributeDef ad1;
3192 CType pt;
3194 if (tok == '(') {
3195 /* function declaration */
3196 next();
3197 l = 0;
3198 first = NULL;
3199 plast = &first;
3200 arg_size = 0;
3201 if (tok != ')') {
3202 for(;;) {
3203 /* read param name and compute offset */
3204 if (l != FUNC_OLD) {
3205 if (!parse_btype(&pt, &ad1)) {
3206 if (l) {
3207 tcc_error("invalid type");
3208 } else {
3209 l = FUNC_OLD;
3210 goto old_proto;
3213 l = FUNC_NEW;
3214 if ((pt.t & VT_BTYPE) == VT_VOID && tok == ')')
3215 break;
3216 type_decl(&pt, &ad1, &n, TYPE_DIRECT | TYPE_ABSTRACT);
3217 if ((pt.t & VT_BTYPE) == VT_VOID)
3218 tcc_error("parameter declared as void");
3219 arg_size += (type_size(&pt, &align) + PTR_SIZE - 1) / PTR_SIZE;
3220 } else {
3221 old_proto:
3222 n = tok;
3223 if (n < TOK_UIDENT)
3224 expect("identifier");
3225 pt.t = VT_INT;
3226 next();
3228 convert_parameter_type(&pt);
3229 s = sym_push(n | SYM_FIELD, &pt, 0, 0);
3230 *plast = s;
3231 plast = &s->next;
3232 if (tok == ')')
3233 break;
3234 skip(',');
3235 if (l == FUNC_NEW && tok == TOK_DOTS) {
3236 l = FUNC_ELLIPSIS;
3237 next();
3238 break;
3242 /* if no parameters, then old type prototype */
3243 if (l == 0)
3244 l = FUNC_OLD;
3245 skip(')');
3246 /* NOTE: const is ignored in returned type as it has a special
3247 meaning in gcc / C++ */
3248 type->t &= ~VT_CONSTANT;
3249 /* some ancient pre-K&R C allows a function to return an array
3250 and the array brackets to be put after the arguments, such
3251 that "int c()[]" means something like "int[] c()" */
3252 if (tok == '[') {
3253 next();
3254 skip(']'); /* only handle simple "[]" */
3255 type->t |= VT_PTR;
3257 /* we push a anonymous symbol which will contain the function prototype */
3258 ad->func_args = arg_size;
3259 s = sym_push(SYM_FIELD, type, INT_ATTR(ad), l);
3260 s->next = first;
3261 type->t = VT_FUNC;
3262 type->ref = s;
3263 } else if (tok == '[') {
3264 /* array definition */
3265 next();
3266 if (tok == TOK_RESTRICT1)
3267 next();
3268 n = -1;
3269 t1 = 0;
3270 if (tok != ']') {
3271 if (!local_stack || nocode_wanted)
3272 vpushi(expr_const());
3273 else gexpr();
3274 if ((vtop->r & (VT_VALMASK | VT_LVAL | VT_SYM)) == VT_CONST) {
3275 n = vtop->c.i;
3276 if (n < 0)
3277 tcc_error("invalid array size");
3278 } else {
3279 if (!is_integer_btype(vtop->type.t & VT_BTYPE))
3280 tcc_error("size of variable length array should be an integer");
3281 t1 = VT_VLA;
3284 skip(']');
3285 /* parse next post type */
3286 post_type(type, ad);
3287 if (type->t == VT_FUNC)
3288 tcc_error("declaration of an array of functions");
3289 t1 |= type->t & VT_VLA;
3291 if (t1 & VT_VLA) {
3292 loc -= type_size(&int_type, &align);
3293 loc &= -align;
3294 n = loc;
3296 vla_runtime_type_size(type, &align);
3297 gen_op('*');
3298 vset(&int_type, VT_LOCAL|VT_LVAL, loc);
3299 vswap();
3300 vstore();
3302 if (n != -1)
3303 vpop();
3305 /* we push an anonymous symbol which will contain the array
3306 element type */
3307 s = sym_push(SYM_FIELD, type, 0, n);
3308 type->t = (t1 ? VT_VLA : VT_ARRAY) | VT_PTR;
3309 type->ref = s;
3313 /* Parse a type declaration (except basic type), and return the type
3314 in 'type'. 'td' is a bitmask indicating which kind of type decl is
3315 expected. 'type' should contain the basic type. 'ad' is the
3316 attribute definition of the basic type. It can be modified by
3317 type_decl().
3319 static void type_decl(CType *type, AttributeDef *ad, int *v, int td)
3321 Sym *s;
3322 CType type1, *type2;
3323 int qualifiers, storage;
3325 while (tok == '*') {
3326 qualifiers = 0;
3327 redo:
3328 next();
3329 switch(tok) {
3330 case TOK_CONST1:
3331 case TOK_CONST2:
3332 case TOK_CONST3:
3333 qualifiers |= VT_CONSTANT;
3334 goto redo;
3335 case TOK_VOLATILE1:
3336 case TOK_VOLATILE2:
3337 case TOK_VOLATILE3:
3338 qualifiers |= VT_VOLATILE;
3339 goto redo;
3340 case TOK_RESTRICT1:
3341 case TOK_RESTRICT2:
3342 case TOK_RESTRICT3:
3343 goto redo;
3345 mk_pointer(type);
3346 type->t |= qualifiers;
3349 /* XXX: clarify attribute handling */
3350 if (tok == TOK_ATTRIBUTE1 || tok == TOK_ATTRIBUTE2)
3351 parse_attribute(ad);
3353 /* recursive type */
3354 /* XXX: incorrect if abstract type for functions (e.g. 'int ()') */
3355 type1.t = 0; /* XXX: same as int */
3356 if (tok == '(') {
3357 next();
3358 /* XXX: this is not correct to modify 'ad' at this point, but
3359 the syntax is not clear */
3360 if (tok == TOK_ATTRIBUTE1 || tok == TOK_ATTRIBUTE2)
3361 parse_attribute(ad);
3362 type_decl(&type1, ad, v, td);
3363 skip(')');
3364 } else {
3365 /* type identifier */
3366 if (tok >= TOK_IDENT && (td & TYPE_DIRECT)) {
3367 *v = tok;
3368 next();
3369 } else {
3370 if (!(td & TYPE_ABSTRACT))
3371 expect("identifier");
3372 *v = 0;
3375 storage = type->t & VT_STORAGE;
3376 type->t &= ~VT_STORAGE;
3377 if (storage & VT_STATIC) {
3378 int saved_nocode_wanted = nocode_wanted;
3379 nocode_wanted = 1;
3380 post_type(type, ad);
3381 nocode_wanted = saved_nocode_wanted;
3382 } else
3383 post_type(type, ad);
3384 type->t |= storage;
3385 if (tok == TOK_ATTRIBUTE1 || tok == TOK_ATTRIBUTE2)
3386 parse_attribute(ad);
3388 if (!type1.t)
3389 return;
3390 /* append type at the end of type1 */
3391 type2 = &type1;
3392 for(;;) {
3393 s = type2->ref;
3394 type2 = &s->type;
3395 if (!type2->t) {
3396 *type2 = *type;
3397 break;
3400 *type = type1;
3403 /* compute the lvalue VT_LVAL_xxx needed to match type t. */
3404 ST_FUNC int lvalue_type(int t)
3406 int bt, r;
3407 r = VT_LVAL;
3408 bt = t & VT_BTYPE;
3409 if (bt == VT_BYTE || bt == VT_BOOL)
3410 r |= VT_LVAL_BYTE;
3411 else if (bt == VT_SHORT)
3412 r |= VT_LVAL_SHORT;
3413 else
3414 return r;
3415 if (t & VT_UNSIGNED)
3416 r |= VT_LVAL_UNSIGNED;
3417 return r;
3420 /* indirection with full error checking and bound check */
3421 ST_FUNC void indir(void)
3423 if ((vtop->type.t & VT_BTYPE) != VT_PTR) {
3424 if ((vtop->type.t & VT_BTYPE) == VT_FUNC)
3425 return;
3426 expect("pointer");
3428 if ((vtop->r & VT_LVAL) && !nocode_wanted)
3429 gv(RC_INT);
3430 vtop->type = *pointed_type(&vtop->type);
3431 /* Arrays and functions are never lvalues */
3432 if (!(vtop->type.t & VT_ARRAY) && !(vtop->type.t & VT_VLA)
3433 && (vtop->type.t & VT_BTYPE) != VT_FUNC) {
3434 vtop->r |= lvalue_type(vtop->type.t);
3435 /* if bound checking, the referenced pointer must be checked */
3436 #ifdef CONFIG_TCC_BCHECK
3437 if (tcc_state->do_bounds_check)
3438 vtop->r |= VT_MUSTBOUND;
3439 #endif
3443 /* pass a parameter to a function and do type checking and casting */
3444 static void gfunc_param_typed(Sym *func, Sym *arg)
3446 int func_type;
3447 CType type;
3449 func_type = func->c;
3450 if (func_type == FUNC_OLD ||
3451 (func_type == FUNC_ELLIPSIS && arg == NULL)) {
3452 /* default casting : only need to convert float to double */
3453 if ((vtop->type.t & VT_BTYPE) == VT_FLOAT) {
3454 type.t = VT_DOUBLE;
3455 gen_cast(&type);
3457 } else if (arg == NULL) {
3458 tcc_error("too many arguments to function");
3459 } else {
3460 type = arg->type;
3461 type.t &= ~VT_CONSTANT; /* need to do that to avoid false warning */
3462 gen_assign_cast(&type);
3466 /* parse an expression of the form '(type)' or '(expr)' and return its
3467 type */
3468 static void parse_expr_type(CType *type)
3470 int n;
3471 AttributeDef ad;
3473 skip('(');
3474 if (parse_btype(type, &ad)) {
3475 type_decl(type, &ad, &n, TYPE_ABSTRACT);
3476 } else {
3477 expr_type(type);
3479 skip(')');
3482 static void parse_type(CType *type)
3484 AttributeDef ad;
3485 int n;
3487 if (!parse_btype(type, &ad)) {
3488 expect("type");
3490 type_decl(type, &ad, &n, TYPE_ABSTRACT);
3493 static void vpush_tokc(int t)
3495 CType type;
3496 type.t = t;
3497 type.ref = 0;
3498 vsetc(&type, VT_CONST, &tokc);
3501 ST_FUNC void unary(void)
3503 int n, t, align, size, r, sizeof_caller;
3504 CType type;
3505 Sym *s;
3506 AttributeDef ad;
3507 static int in_sizeof = 0;
3509 sizeof_caller = in_sizeof;
3510 in_sizeof = 0;
3511 /* XXX: GCC 2.95.3 does not generate a table although it should be
3512 better here */
3513 tok_next:
3514 switch(tok) {
3515 case TOK_EXTENSION:
3516 next();
3517 goto tok_next;
3518 case TOK_CINT:
3519 case TOK_CCHAR:
3520 case TOK_LCHAR:
3521 vpushi(tokc.i);
3522 next();
3523 break;
3524 case TOK_CUINT:
3525 vpush_tokc(VT_INT | VT_UNSIGNED);
3526 next();
3527 break;
3528 case TOK_CLLONG:
3529 vpush_tokc(VT_LLONG);
3530 next();
3531 break;
3532 case TOK_CULLONG:
3533 vpush_tokc(VT_LLONG | VT_UNSIGNED);
3534 next();
3535 break;
3536 case TOK_CFLOAT:
3537 vpush_tokc(VT_FLOAT);
3538 next();
3539 break;
3540 case TOK_CDOUBLE:
3541 vpush_tokc(VT_DOUBLE);
3542 next();
3543 break;
3544 case TOK_CLDOUBLE:
3545 vpush_tokc(VT_LDOUBLE);
3546 next();
3547 break;
3548 case TOK___FUNCTION__:
3549 if (!gnu_ext)
3550 goto tok_identifier;
3551 /* fall thru */
3552 case TOK___FUNC__:
3554 void *ptr;
3555 int len;
3556 /* special function name identifier */
3557 len = strlen(funcname) + 1;
3558 /* generate char[len] type */
3559 type.t = VT_BYTE;
3560 mk_pointer(&type);
3561 type.t |= VT_ARRAY;
3562 type.ref->c = len;
3563 vpush_ref(&type, data_section, data_section->data_offset, len);
3564 ptr = section_ptr_add(data_section, len);
3565 memcpy(ptr, funcname, len);
3566 next();
3568 break;
3569 case TOK_LSTR:
3570 #ifdef TCC_TARGET_PE
3571 t = VT_SHORT | VT_UNSIGNED;
3572 #else
3573 t = VT_INT;
3574 #endif
3575 goto str_init;
3576 case TOK_STR:
3577 /* string parsing */
3578 t = VT_BYTE;
3579 str_init:
3580 if (tcc_state->warn_write_strings)
3581 t |= VT_CONSTANT;
3582 type.t = t;
3583 mk_pointer(&type);
3584 type.t |= VT_ARRAY;
3585 memset(&ad, 0, sizeof(AttributeDef));
3586 decl_initializer_alloc(&type, &ad, VT_CONST, 2, 0, NULL, 0);
3587 break;
3588 case '(':
3589 next();
3590 /* cast ? */
3591 if (parse_btype(&type, &ad)) {
3592 type_decl(&type, &ad, &n, TYPE_ABSTRACT);
3593 skip(')');
3594 /* check ISOC99 compound literal */
3595 if (tok == '{') {
3596 /* data is allocated locally by default */
3597 if (global_expr)
3598 r = VT_CONST;
3599 else
3600 r = VT_LOCAL;
3601 /* all except arrays are lvalues */
3602 if (!(type.t & VT_ARRAY))
3603 r |= lvalue_type(type.t);
3604 memset(&ad, 0, sizeof(AttributeDef));
3605 decl_initializer_alloc(&type, &ad, r, 1, 0, NULL, 0);
3606 } else {
3607 if (sizeof_caller) {
3608 vpush(&type);
3609 return;
3611 unary();
3612 gen_cast(&type);
3614 } else if (tok == '{') {
3615 /* save all registers */
3616 save_regs(0);
3617 /* statement expression : we do not accept break/continue
3618 inside as GCC does */
3619 block(NULL, NULL, NULL, NULL, 0, 1);
3620 skip(')');
3621 } else {
3622 gexpr();
3623 skip(')');
3625 break;
3626 case '*':
3627 next();
3628 unary();
3629 indir();
3630 break;
3631 case '&':
3632 next();
3633 unary();
3634 /* functions names must be treated as function pointers,
3635 except for unary '&' and sizeof. Since we consider that
3636 functions are not lvalues, we only have to handle it
3637 there and in function calls. */
3638 /* arrays can also be used although they are not lvalues */
3639 if ((vtop->type.t & VT_BTYPE) != VT_FUNC &&
3640 !(vtop->type.t & VT_ARRAY) && !(vtop->type.t & VT_LLOCAL))
3641 test_lvalue();
3642 mk_pointer(&vtop->type);
3643 gaddrof();
3644 break;
3645 case '!':
3646 next();
3647 unary();
3648 if ((vtop->r & (VT_VALMASK | VT_LVAL | VT_SYM)) == VT_CONST) {
3649 CType boolean;
3650 boolean.t = VT_BOOL;
3651 gen_cast(&boolean);
3652 vtop->c.i = !vtop->c.i;
3653 } else if ((vtop->r & VT_VALMASK) == VT_CMP)
3654 vtop->c.i = vtop->c.i ^ 1;
3655 else {
3656 save_regs(1);
3657 vseti(VT_JMP, gtst(1, 0));
3659 break;
3660 case '~':
3661 next();
3662 unary();
3663 vpushi(-1);
3664 gen_op('^');
3665 break;
3666 case '+':
3667 next();
3668 /* in order to force cast, we add zero */
3669 unary();
3670 if ((vtop->type.t & VT_BTYPE) == VT_PTR)
3671 tcc_error("pointer not accepted for unary plus");
3672 vpushi(0);
3673 gen_op('+');
3674 break;
3675 case TOK_SIZEOF:
3676 case TOK_ALIGNOF1:
3677 case TOK_ALIGNOF2:
3678 t = tok;
3679 next();
3680 in_sizeof++;
3681 unary_type(&type); // Perform a in_sizeof = 0;
3682 size = type_size(&type, &align);
3683 if (t == TOK_SIZEOF) {
3684 if (!(type.t & VT_VLA)) {
3685 if (size < 0)
3686 tcc_error("sizeof applied to an incomplete type");
3687 vpushs(size);
3688 } else {
3689 vla_runtime_type_size(&type, &align);
3691 } else {
3692 vpushs(align);
3694 vtop->type.t |= VT_UNSIGNED;
3695 break;
3697 case TOK_builtin_types_compatible_p:
3699 CType type1, type2;
3700 next();
3701 skip('(');
3702 parse_type(&type1);
3703 skip(',');
3704 parse_type(&type2);
3705 skip(')');
3706 type1.t &= ~(VT_CONSTANT | VT_VOLATILE);
3707 type2.t &= ~(VT_CONSTANT | VT_VOLATILE);
3708 vpushi(is_compatible_types(&type1, &type2));
3710 break;
3711 case TOK_builtin_constant_p:
3713 int saved_nocode_wanted, res;
3714 next();
3715 skip('(');
3716 saved_nocode_wanted = nocode_wanted;
3717 nocode_wanted = 1;
3718 gexpr();
3719 res = (vtop->r & (VT_VALMASK | VT_LVAL | VT_SYM)) == VT_CONST;
3720 vpop();
3721 nocode_wanted = saved_nocode_wanted;
3722 skip(')');
3723 vpushi(res);
3725 break;
3726 case TOK_builtin_frame_address:
3728 int level;
3729 CType type;
3730 next();
3731 skip('(');
3732 if (tok != TOK_CINT || tokc.i < 0) {
3733 tcc_error("__builtin_frame_address only takes positive integers");
3735 level = tokc.i;
3736 next();
3737 skip(')');
3738 type.t = VT_VOID;
3739 mk_pointer(&type);
3740 vset(&type, VT_LOCAL, 0); /* local frame */
3741 while (level--) {
3742 mk_pointer(&vtop->type);
3743 indir(); /* -> parent frame */
3746 break;
3747 #ifdef TCC_TARGET_X86_64
3748 #ifdef TCC_TARGET_PE
3749 case TOK_builtin_va_start:
3751 next();
3752 skip('(');
3753 expr_eq();
3754 skip(',');
3755 expr_eq();
3756 skip(')');
3757 if ((vtop->r & VT_VALMASK) != VT_LOCAL)
3758 tcc_error("__builtin_va_start expects a local variable");
3759 vtop->r &= ~(VT_LVAL | VT_REF);
3760 vtop->type = char_pointer_type;
3761 vstore();
3763 break;
3764 #else
3765 case TOK_builtin_va_arg_types:
3767 CType type;
3768 int bt;
3769 next();
3770 skip('(');
3771 parse_type(&type);
3772 skip(')');
3773 vpushi(classify_x86_64_va_arg(&type));
3775 break;
3776 #endif
3777 #endif
3778 case TOK_INC:
3779 case TOK_DEC:
3780 t = tok;
3781 next();
3782 unary();
3783 inc(0, t);
3784 break;
3785 case '-':
3786 next();
3787 vpushi(0);
3788 unary();
3789 gen_op('-');
3790 break;
3791 case TOK_LAND:
3792 if (!gnu_ext)
3793 goto tok_identifier;
3794 next();
3795 /* allow to take the address of a label */
3796 if (tok < TOK_UIDENT)
3797 expect("label identifier");
3798 s = label_find(tok);
3799 if (!s) {
3800 s = label_push(&global_label_stack, tok, LABEL_FORWARD);
3801 } else {
3802 if (s->r == LABEL_DECLARED)
3803 s->r = LABEL_FORWARD;
3805 if (!s->type.t) {
3806 s->type.t = VT_VOID;
3807 mk_pointer(&s->type);
3808 s->type.t |= VT_STATIC;
3810 vset(&s->type, VT_CONST | VT_SYM, 0);
3811 vtop->sym = s;
3812 next();
3813 break;
3815 // special qnan , snan and infinity values
3816 case TOK___NAN__:
3817 vpush64(VT_DOUBLE, 0x7ff8000000000000ULL);
3818 next();
3819 break;
3820 case TOK___SNAN__:
3821 vpush64(VT_DOUBLE, 0x7ff0000000000001ULL);
3822 next();
3823 break;
3824 case TOK___INF__:
3825 vpush64(VT_DOUBLE, 0x7ff0000000000000ULL);
3826 next();
3827 break;
3829 default:
3830 tok_identifier:
3831 t = tok;
3832 next();
3833 if (t < TOK_UIDENT)
3834 expect("identifier");
3835 s = sym_find(t);
3836 if (!s) {
3837 if (tok != '(')
3838 tcc_error("'%s' undeclared", get_tok_str(t, NULL));
3839 /* for simple function calls, we tolerate undeclared
3840 external reference to int() function */
3841 if (tcc_state->warn_implicit_function_declaration)
3842 tcc_warning("implicit declaration of function '%s'",
3843 get_tok_str(t, NULL));
3844 s = external_global_sym(t, &func_old_type, 0);
3846 if ((s->type.t & (VT_STATIC | VT_INLINE | VT_BTYPE)) ==
3847 (VT_STATIC | VT_INLINE | VT_FUNC)) {
3848 /* if referencing an inline function, then we generate a
3849 symbol to it if not already done. It will have the
3850 effect to generate code for it at the end of the
3851 compilation unit. Inline function as always
3852 generated in the text section. */
3853 if (!s->c)
3854 put_extern_sym(s, text_section, 0, 0);
3855 r = VT_SYM | VT_CONST;
3856 } else {
3857 r = s->r;
3859 vset(&s->type, r, s->c);
3860 /* if forward reference, we must point to s */
3861 if (vtop->r & VT_SYM) {
3862 vtop->sym = s;
3863 vtop->c.ul = 0;
3865 break;
3868 /* post operations */
3869 while (1) {
3870 if (tok == TOK_INC || tok == TOK_DEC) {
3871 inc(1, tok);
3872 next();
3873 } else if (tok == '.' || tok == TOK_ARROW) {
3874 int qualifiers;
3875 /* field */
3876 if (tok == TOK_ARROW)
3877 indir();
3878 qualifiers = vtop->type.t & (VT_CONSTANT | VT_VOLATILE);
3879 test_lvalue();
3880 gaddrof();
3881 next();
3882 /* expect pointer on structure */
3883 if ((vtop->type.t & VT_BTYPE) != VT_STRUCT)
3884 expect("struct or union");
3885 s = vtop->type.ref;
3886 /* find field */
3887 tok |= SYM_FIELD;
3888 while ((s = s->next) != NULL) {
3889 if (s->v == tok)
3890 break;
3892 if (!s)
3893 tcc_error("field not found: %s", get_tok_str(tok & ~SYM_FIELD, NULL));
3894 /* add field offset to pointer */
3895 vtop->type = char_pointer_type; /* change type to 'char *' */
3896 vpushi(s->c);
3897 gen_op('+');
3898 /* change type to field type, and set to lvalue */
3899 vtop->type = s->type;
3900 vtop->type.t |= qualifiers;
3901 /* an array is never an lvalue */
3902 if (!(vtop->type.t & VT_ARRAY)) {
3903 vtop->r |= lvalue_type(vtop->type.t);
3904 #ifdef CONFIG_TCC_BCHECK
3905 /* if bound checking, the referenced pointer must be checked */
3906 if (tcc_state->do_bounds_check)
3907 vtop->r |= VT_MUSTBOUND;
3908 #endif
3910 next();
3911 } else if (tok == '[') {
3912 next();
3913 gexpr();
3914 gen_op('+');
3915 indir();
3916 skip(']');
3917 } else if (tok == '(') {
3918 SValue ret;
3919 Sym *sa;
3920 int nb_args, sret;
3922 /* function call */
3923 if ((vtop->type.t & VT_BTYPE) != VT_FUNC) {
3924 /* pointer test (no array accepted) */
3925 if ((vtop->type.t & (VT_BTYPE | VT_ARRAY)) == VT_PTR) {
3926 vtop->type = *pointed_type(&vtop->type);
3927 if ((vtop->type.t & VT_BTYPE) != VT_FUNC)
3928 goto error_func;
3929 } else {
3930 error_func:
3931 expect("function pointer");
3933 } else {
3934 vtop->r &= ~VT_LVAL; /* no lvalue */
3936 /* get return type */
3937 s = vtop->type.ref;
3938 next();
3939 sa = s->next; /* first parameter */
3940 nb_args = 0;
3941 ret.r2 = VT_CONST;
3942 /* compute first implicit argument if a structure is returned */
3943 if ((s->type.t & VT_BTYPE) == VT_STRUCT) {
3944 int ret_align;
3945 sret = gfunc_sret(&s->type, &ret.type, &ret_align);
3946 if (sret) {
3947 /* get some space for the returned structure */
3948 size = type_size(&s->type, &align);
3949 loc = (loc - size) & -align;
3950 ret.type = s->type;
3951 ret.r = VT_LOCAL | VT_LVAL;
3952 /* pass it as 'int' to avoid structure arg passing
3953 problems */
3954 vseti(VT_LOCAL, loc);
3955 ret.c = vtop->c;
3956 nb_args++;
3958 } else {
3959 sret = 0;
3960 ret.type = s->type;
3963 if (!sret) {
3964 /* return in register */
3965 if (is_float(ret.type.t)) {
3966 ret.r = reg_fret(ret.type.t);
3967 #ifdef TCC_TARGET_X86_64
3968 if ((ret.type.t & VT_BTYPE) == VT_QFLOAT)
3969 ret.r2 = REG_QRET;
3970 #endif
3971 } else {
3972 #ifdef TCC_TARGET_X86_64
3973 if ((ret.type.t & VT_BTYPE) == VT_QLONG)
3974 #else
3975 if ((ret.type.t & VT_BTYPE) == VT_LLONG)
3976 #endif
3977 ret.r2 = REG_LRET;
3978 ret.r = REG_IRET;
3980 ret.c.i = 0;
3982 if (tok != ')') {
3983 for(;;) {
3984 expr_eq();
3985 gfunc_param_typed(s, sa);
3986 nb_args++;
3987 if (sa)
3988 sa = sa->next;
3989 if (tok == ')')
3990 break;
3991 skip(',');
3994 if (sa)
3995 tcc_error("too few arguments to function");
3996 skip(')');
3997 if (!nocode_wanted) {
3998 gfunc_call(nb_args);
3999 } else {
4000 vtop -= (nb_args + 1);
4002 /* return value */
4003 vsetc(&ret.type, ret.r, &ret.c);
4004 vtop->r2 = ret.r2;
4005 /* handle packed struct return */
4006 if (((s->type.t & VT_BTYPE) == VT_STRUCT) && !sret) {
4007 int addr;
4008 size = type_size(&s->type, &align);
4009 loc = (loc - size) & -align;
4010 addr = loc;
4011 vset(&ret.type, VT_LOCAL | VT_LVAL, addr);
4012 vswap();
4013 vstore();
4014 vtop--;
4015 vset(&s->type, VT_LOCAL | VT_LVAL, addr);
4017 } else {
4018 break;
4023 ST_FUNC void expr_prod(void)
4025 int t;
4027 unary();
4028 while (tok == '*' || tok == '/' || tok == '%') {
4029 t = tok;
4030 next();
4031 unary();
4032 gen_op(t);
4036 ST_FUNC void expr_sum(void)
4038 int t;
4040 expr_prod();
4041 while (tok == '+' || tok == '-') {
4042 t = tok;
4043 next();
4044 expr_prod();
4045 gen_op(t);
4049 static void expr_shift(void)
4051 int t;
4053 expr_sum();
4054 while (tok == TOK_SHL || tok == TOK_SAR) {
4055 t = tok;
4056 next();
4057 expr_sum();
4058 gen_op(t);
4062 static void expr_cmp(void)
4064 int t;
4066 expr_shift();
4067 while ((tok >= TOK_ULE && tok <= TOK_GT) ||
4068 tok == TOK_ULT || tok == TOK_UGE) {
4069 t = tok;
4070 next();
4071 expr_shift();
4072 gen_op(t);
4076 static void expr_cmpeq(void)
4078 int t;
4080 expr_cmp();
4081 while (tok == TOK_EQ || tok == TOK_NE) {
4082 t = tok;
4083 next();
4084 expr_cmp();
4085 gen_op(t);
4089 static void expr_and(void)
4091 expr_cmpeq();
4092 while (tok == '&') {
4093 next();
4094 expr_cmpeq();
4095 gen_op('&');
4099 static void expr_xor(void)
4101 expr_and();
4102 while (tok == '^') {
4103 next();
4104 expr_and();
4105 gen_op('^');
4109 static void expr_or(void)
4111 expr_xor();
4112 while (tok == '|') {
4113 next();
4114 expr_xor();
4115 gen_op('|');
4119 /* XXX: fix this mess */
4120 static void expr_land_const(void)
4122 expr_or();
4123 while (tok == TOK_LAND) {
4124 next();
4125 expr_or();
4126 gen_op(TOK_LAND);
4130 /* XXX: fix this mess */
4131 static void expr_lor_const(void)
4133 expr_land_const();
4134 while (tok == TOK_LOR) {
4135 next();
4136 expr_land_const();
4137 gen_op(TOK_LOR);
4141 /* only used if non constant */
4142 static void expr_land(void)
4144 int t;
4146 expr_or();
4147 if (tok == TOK_LAND) {
4148 t = 0;
4149 save_regs(1);
4150 for(;;) {
4151 t = gtst(1, t);
4152 if (tok != TOK_LAND) {
4153 vseti(VT_JMPI, t);
4154 break;
4156 next();
4157 expr_or();
4162 static void expr_lor(void)
4164 int t;
4166 expr_land();
4167 if (tok == TOK_LOR) {
4168 t = 0;
4169 save_regs(1);
4170 for(;;) {
4171 t = gtst(0, t);
4172 if (tok != TOK_LOR) {
4173 vseti(VT_JMP, t);
4174 break;
4176 next();
4177 expr_land();
4182 /* XXX: better constant handling */
4183 static void expr_cond(void)
4185 int tt, u, r1, r2, rc, t1, t2, bt1, bt2;
4186 SValue sv;
4187 CType type, type1, type2;
4189 if (const_wanted) {
4190 expr_lor_const();
4191 if (tok == '?') {
4192 CType boolean;
4193 int c;
4194 boolean.t = VT_BOOL;
4195 vdup();
4196 gen_cast(&boolean);
4197 c = vtop->c.i;
4198 vpop();
4199 next();
4200 if (tok != ':' || !gnu_ext) {
4201 vpop();
4202 gexpr();
4204 if (!c)
4205 vpop();
4206 skip(':');
4207 expr_cond();
4208 if (c)
4209 vpop();
4211 } else {
4212 expr_lor();
4213 if (tok == '?') {
4214 next();
4215 if (vtop != vstack) {
4216 /* needed to avoid having different registers saved in
4217 each branch */
4218 if (is_float(vtop->type.t)) {
4219 rc = RC_FLOAT;
4220 #ifdef TCC_TARGET_X86_64
4221 if ((vtop->type.t & VT_BTYPE) == VT_LDOUBLE) {
4222 rc = RC_ST0;
4224 #endif
4226 else
4227 rc = RC_INT;
4228 gv(rc);
4229 save_regs(1);
4231 if (tok == ':' && gnu_ext) {
4232 gv_dup();
4233 tt = gtst(1, 0);
4234 } else {
4235 tt = gtst(1, 0);
4236 gexpr();
4238 type1 = vtop->type;
4239 sv = *vtop; /* save value to handle it later */
4240 vtop--; /* no vpop so that FP stack is not flushed */
4241 skip(':');
4242 u = gjmp(0);
4243 gsym(tt);
4244 expr_cond();
4245 type2 = vtop->type;
4247 t1 = type1.t;
4248 bt1 = t1 & VT_BTYPE;
4249 t2 = type2.t;
4250 bt2 = t2 & VT_BTYPE;
4251 /* cast operands to correct type according to ISOC rules */
4252 if (is_float(bt1) || is_float(bt2)) {
4253 if (bt1 == VT_LDOUBLE || bt2 == VT_LDOUBLE) {
4254 type.t = VT_LDOUBLE;
4255 } else if (bt1 == VT_DOUBLE || bt2 == VT_DOUBLE) {
4256 type.t = VT_DOUBLE;
4257 } else {
4258 type.t = VT_FLOAT;
4260 } else if (bt1 == VT_LLONG || bt2 == VT_LLONG) {
4261 /* cast to biggest op */
4262 type.t = VT_LLONG;
4263 /* convert to unsigned if it does not fit in a long long */
4264 if ((t1 & (VT_BTYPE | VT_UNSIGNED)) == (VT_LLONG | VT_UNSIGNED) ||
4265 (t2 & (VT_BTYPE | VT_UNSIGNED)) == (VT_LLONG | VT_UNSIGNED))
4266 type.t |= VT_UNSIGNED;
4267 } else if (bt1 == VT_PTR || bt2 == VT_PTR) {
4268 /* If one is a null ptr constant the result type
4269 is the other. */
4270 if (is_null_pointer (vtop))
4271 type = type1;
4272 else if (is_null_pointer (&sv))
4273 type = type2;
4274 /* XXX: test pointer compatibility, C99 has more elaborate
4275 rules here. */
4276 else
4277 type = type1;
4278 } else if (bt1 == VT_FUNC || bt2 == VT_FUNC) {
4279 /* XXX: test function pointer compatibility */
4280 type = bt1 == VT_FUNC ? type1 : type2;
4281 } else if (bt1 == VT_STRUCT || bt2 == VT_STRUCT) {
4282 /* XXX: test structure compatibility */
4283 type = bt1 == VT_STRUCT ? type1 : type2;
4284 } else if (bt1 == VT_VOID || bt2 == VT_VOID) {
4285 /* NOTE: as an extension, we accept void on only one side */
4286 type.t = VT_VOID;
4287 } else {
4288 /* integer operations */
4289 type.t = VT_INT;
4290 /* convert to unsigned if it does not fit in an integer */
4291 if ((t1 & (VT_BTYPE | VT_UNSIGNED)) == (VT_INT | VT_UNSIGNED) ||
4292 (t2 & (VT_BTYPE | VT_UNSIGNED)) == (VT_INT | VT_UNSIGNED))
4293 type.t |= VT_UNSIGNED;
4296 /* now we convert second operand */
4297 gen_cast(&type);
4298 if (VT_STRUCT == (vtop->type.t & VT_BTYPE))
4299 gaddrof();
4300 rc = RC_INT;
4301 if (is_float(type.t)) {
4302 rc = RC_FLOAT;
4303 #ifdef TCC_TARGET_X86_64
4304 if ((type.t & VT_BTYPE) == VT_LDOUBLE) {
4305 rc = RC_ST0;
4307 #endif
4308 } else if ((type.t & VT_BTYPE) == VT_LLONG) {
4309 /* for long longs, we use fixed registers to avoid having
4310 to handle a complicated move */
4311 rc = RC_IRET;
4314 r2 = gv(rc);
4315 /* this is horrible, but we must also convert first
4316 operand */
4317 tt = gjmp(0);
4318 gsym(u);
4319 /* put again first value and cast it */
4320 *vtop = sv;
4321 gen_cast(&type);
4322 if (VT_STRUCT == (vtop->type.t & VT_BTYPE))
4323 gaddrof();
4324 r1 = gv(rc);
4325 move_reg(r2, r1, type.t);
4326 vtop->r = r2;
4327 gsym(tt);
4332 static void expr_eq(void)
4334 int t;
4336 expr_cond();
4337 if (tok == '=' ||
4338 (tok >= TOK_A_MOD && tok <= TOK_A_DIV) ||
4339 tok == TOK_A_XOR || tok == TOK_A_OR ||
4340 tok == TOK_A_SHL || tok == TOK_A_SAR) {
4341 test_lvalue();
4342 t = tok;
4343 next();
4344 if (t == '=') {
4345 expr_eq();
4346 } else {
4347 vdup();
4348 expr_eq();
4349 gen_op(t & 0x7f);
4351 vstore();
4355 ST_FUNC void gexpr(void)
4357 while (1) {
4358 expr_eq();
4359 if (tok != ',')
4360 break;
4361 vpop();
4362 next();
4366 /* parse an expression and return its type without any side effect. */
4367 static void expr_type(CType *type)
4369 int saved_nocode_wanted;
4371 saved_nocode_wanted = nocode_wanted;
4372 nocode_wanted = 1;
4373 gexpr();
4374 *type = vtop->type;
4375 vpop();
4376 nocode_wanted = saved_nocode_wanted;
4379 /* parse a unary expression and return its type without any side
4380 effect. */
4381 static void unary_type(CType *type)
4383 int a;
4385 a = nocode_wanted;
4386 nocode_wanted = 1;
4387 unary();
4388 *type = vtop->type;
4389 vpop();
4390 nocode_wanted = a;
4393 /* parse a constant expression and return value in vtop. */
4394 static void expr_const1(void)
4396 int a;
4397 a = const_wanted;
4398 const_wanted = 1;
4399 expr_cond();
4400 const_wanted = a;
4403 /* parse an integer constant and return its value. */
4404 ST_FUNC int expr_const(void)
4406 int c;
4407 expr_const1();
4408 if ((vtop->r & (VT_VALMASK | VT_LVAL | VT_SYM)) != VT_CONST)
4409 expect("constant expression");
4410 c = vtop->c.i;
4411 vpop();
4412 return c;
4415 /* return the label token if current token is a label, otherwise
4416 return zero */
4417 static int is_label(void)
4419 int last_tok;
4421 /* fast test first */
4422 if (tok < TOK_UIDENT)
4423 return 0;
4424 /* no need to save tokc because tok is an identifier */
4425 last_tok = tok;
4426 next();
4427 if (tok == ':') {
4428 next();
4429 return last_tok;
4430 } else {
4431 unget_tok(last_tok);
4432 return 0;
4436 static void label_or_decl(int l)
4438 int last_tok;
4440 /* fast test first */
4441 if (tok >= TOK_UIDENT)
4443 /* no need to save tokc because tok is an identifier */
4444 last_tok = tok;
4445 next();
4446 if (tok == ':') {
4447 unget_tok(last_tok);
4448 return;
4450 unget_tok(last_tok);
4452 decl(l);
4455 static void block(int *bsym, int *csym, int *case_sym, int *def_sym,
4456 int case_reg, int is_expr)
4458 int a, b, c, d;
4459 Sym *s, *frame_bottom;
4461 /* generate line number info */
4462 if (tcc_state->do_debug &&
4463 (last_line_num != file->line_num || last_ind != ind)) {
4464 put_stabn(N_SLINE, 0, file->line_num, ind - func_ind);
4465 last_ind = ind;
4466 last_line_num = file->line_num;
4469 if (is_expr) {
4470 /* default return value is (void) */
4471 vpushi(0);
4472 vtop->type.t = VT_VOID;
4475 if (tok == TOK_IF) {
4476 /* if test */
4477 next();
4478 skip('(');
4479 gexpr();
4480 skip(')');
4481 a = gtst(1, 0);
4482 block(bsym, csym, case_sym, def_sym, case_reg, 0);
4483 c = tok;
4484 if (c == TOK_ELSE) {
4485 next();
4486 d = gjmp(0);
4487 gsym(a);
4488 block(bsym, csym, case_sym, def_sym, case_reg, 0);
4489 gsym(d); /* patch else jmp */
4490 } else
4491 gsym(a);
4492 } else if (tok == TOK_WHILE) {
4493 next();
4494 d = ind;
4495 skip('(');
4496 gexpr();
4497 skip(')');
4498 a = gtst(1, 0);
4499 b = 0;
4500 block(&a, &b, case_sym, def_sym, case_reg, 0);
4501 gjmp_addr(d);
4502 gsym(a);
4503 gsym_addr(b, d);
4504 } else if (tok == '{') {
4505 Sym *llabel;
4506 int block_vla_sp_loc, *saved_vla_sp_loc, saved_vla_flags;
4508 next();
4509 /* record local declaration stack position */
4510 s = local_stack;
4511 frame_bottom = sym_push2(&local_stack, SYM_FIELD, 0, 0);
4512 frame_bottom->next = scope_stack_bottom;
4513 scope_stack_bottom = frame_bottom;
4514 llabel = local_label_stack;
4516 /* save VLA state */
4517 block_vla_sp_loc = *(saved_vla_sp_loc = vla_sp_loc);
4518 if (saved_vla_sp_loc != &vla_sp_root_loc)
4519 vla_sp_loc = &block_vla_sp_loc;
4521 saved_vla_flags = vla_flags;
4522 vla_flags |= VLA_NEED_NEW_FRAME;
4524 /* handle local labels declarations */
4525 if (tok == TOK_LABEL) {
4526 next();
4527 for(;;) {
4528 if (tok < TOK_UIDENT)
4529 expect("label identifier");
4530 label_push(&local_label_stack, tok, LABEL_DECLARED);
4531 next();
4532 if (tok == ',') {
4533 next();
4534 } else {
4535 skip(';');
4536 break;
4540 while (tok != '}') {
4541 label_or_decl(VT_LOCAL);
4542 if (tok != '}') {
4543 if (is_expr)
4544 vpop();
4545 block(bsym, csym, case_sym, def_sym, case_reg, is_expr);
4548 /* pop locally defined labels */
4549 label_pop(&local_label_stack, llabel);
4550 if(is_expr) {
4551 /* XXX: this solution makes only valgrind happy...
4552 triggered by gcc.c-torture/execute/20000917-1.c */
4553 Sym *p;
4554 switch(vtop->type.t & VT_BTYPE) {
4555 case VT_PTR:
4556 case VT_STRUCT:
4557 case VT_ENUM:
4558 case VT_FUNC:
4559 for(p=vtop->type.ref;p;p=p->prev)
4560 if(p->prev==s)
4561 tcc_error("unsupported expression type");
4564 /* pop locally defined symbols */
4565 scope_stack_bottom = scope_stack_bottom->next;
4566 sym_pop(&local_stack, s);
4568 /* Pop VLA frames and restore stack pointer if required */
4569 if (saved_vla_sp_loc != &vla_sp_root_loc)
4570 *saved_vla_sp_loc = block_vla_sp_loc;
4571 if (vla_sp_loc != (saved_vla_sp_loc == &vla_sp_root_loc ? &vla_sp_root_loc : &block_vla_sp_loc)) {
4572 vla_sp_loc = saved_vla_sp_loc;
4573 gen_vla_sp_restore(*vla_sp_loc);
4575 vla_flags = (vla_flags & ~VLA_SCOPE_FLAGS) | (saved_vla_flags & VLA_SCOPE_FLAGS);
4577 next();
4578 } else if (tok == TOK_RETURN) {
4579 next();
4580 if (tok != ';') {
4581 gexpr();
4582 gen_assign_cast(&func_vt);
4583 if ((func_vt.t & VT_BTYPE) == VT_STRUCT) {
4584 CType type, ret_type;
4585 int ret_align;
4586 if (gfunc_sret(&func_vt, &ret_type, &ret_align)) {
4587 /* if returning structure, must copy it to implicit
4588 first pointer arg location */
4589 type = func_vt;
4590 mk_pointer(&type);
4591 vset(&type, VT_LOCAL | VT_LVAL, func_vc);
4592 indir();
4593 vswap();
4594 /* copy structure value to pointer */
4595 vstore();
4596 } else {
4597 /* returning structure packed into registers */
4598 int size, addr, align;
4599 size = type_size(&func_vt,&align);
4600 if ((vtop->r != (VT_LOCAL | VT_LVAL) || (vtop->c.i & (ret_align-1)))
4601 && (align & (ret_align-1))) {
4602 loc = (loc - size) & -align;
4603 addr = loc;
4604 type = func_vt;
4605 vset(&type, VT_LOCAL | VT_LVAL, addr);
4606 vswap();
4607 vstore();
4608 vset(&ret_type, VT_LOCAL | VT_LVAL, addr);
4610 vtop->type = ret_type;
4611 if (is_float(ret_type.t))
4612 gv(rc_fret(ret_type.t));
4613 else
4614 gv(RC_IRET);
4616 } else if (is_float(func_vt.t)) {
4617 gv(rc_fret(func_vt.t));
4618 } else {
4619 gv(RC_IRET);
4621 vtop--; /* NOT vpop() because on x86 it would flush the fp stack */
4623 skip(';');
4624 rsym = gjmp(rsym); /* jmp */
4625 } else if (tok == TOK_BREAK) {
4626 /* compute jump */
4627 if (!bsym)
4628 tcc_error("cannot break");
4629 *bsym = gjmp(*bsym);
4630 next();
4631 skip(';');
4632 } else if (tok == TOK_CONTINUE) {
4633 /* compute jump */
4634 if (!csym)
4635 tcc_error("cannot continue");
4636 *csym = gjmp(*csym);
4637 next();
4638 skip(';');
4639 } else if (tok == TOK_FOR) {
4640 int e;
4641 next();
4642 skip('(');
4643 s = local_stack;
4644 frame_bottom = sym_push2(&local_stack, SYM_FIELD, 0, 0);
4645 frame_bottom->next = scope_stack_bottom;
4646 scope_stack_bottom = frame_bottom;
4647 if (tok != ';') {
4648 /* c99 for-loop init decl? */
4649 if (!decl0(VT_LOCAL, 1)) {
4650 /* no, regular for-loop init expr */
4651 gexpr();
4652 vpop();
4655 skip(';');
4656 d = ind;
4657 c = ind;
4658 a = 0;
4659 b = 0;
4660 if (tok != ';') {
4661 gexpr();
4662 a = gtst(1, 0);
4664 skip(';');
4665 if (tok != ')') {
4666 e = gjmp(0);
4667 c = ind;
4668 gexpr();
4669 vpop();
4670 gjmp_addr(d);
4671 gsym(e);
4673 skip(')');
4674 block(&a, &b, case_sym, def_sym, case_reg, 0);
4675 gjmp_addr(c);
4676 gsym(a);
4677 gsym_addr(b, c);
4678 scope_stack_bottom = scope_stack_bottom->next;
4679 sym_pop(&local_stack, s);
4680 } else
4681 if (tok == TOK_DO) {
4682 next();
4683 a = 0;
4684 b = 0;
4685 d = ind;
4686 block(&a, &b, case_sym, def_sym, case_reg, 0);
4687 skip(TOK_WHILE);
4688 skip('(');
4689 gsym(b);
4690 gexpr();
4691 c = gtst(0, 0);
4692 gsym_addr(c, d);
4693 skip(')');
4694 gsym(a);
4695 skip(';');
4696 } else
4697 if (tok == TOK_SWITCH) {
4698 next();
4699 skip('(');
4700 gexpr();
4701 /* XXX: other types than integer */
4702 case_reg = gv(RC_INT);
4703 vpop();
4704 skip(')');
4705 a = 0;
4706 b = gjmp(0); /* jump to first case */
4707 c = 0;
4708 block(&a, csym, &b, &c, case_reg, 0);
4709 /* if no default, jmp after switch */
4710 if (c == 0)
4711 c = ind;
4712 /* default label */
4713 gsym_addr(b, c);
4714 /* break label */
4715 gsym(a);
4716 } else
4717 if (tok == TOK_CASE) {
4718 int v1, v2;
4719 if (!case_sym)
4720 expect("switch");
4721 next();
4722 v1 = expr_const();
4723 v2 = v1;
4724 if (gnu_ext && tok == TOK_DOTS) {
4725 next();
4726 v2 = expr_const();
4727 if (v2 < v1)
4728 tcc_warning("empty case range");
4730 /* since a case is like a label, we must skip it with a jmp */
4731 b = gjmp(0);
4732 gsym(*case_sym);
4733 vseti(case_reg, 0);
4734 vpushi(v1);
4735 if (v1 == v2) {
4736 gen_op(TOK_EQ);
4737 *case_sym = gtst(1, 0);
4738 } else {
4739 gen_op(TOK_GE);
4740 *case_sym = gtst(1, 0);
4741 vseti(case_reg, 0);
4742 vpushi(v2);
4743 gen_op(TOK_LE);
4744 *case_sym = gtst(1, *case_sym);
4746 gsym(b);
4747 skip(':');
4748 is_expr = 0;
4749 goto block_after_label;
4750 } else
4751 if (tok == TOK_DEFAULT) {
4752 next();
4753 skip(':');
4754 if (!def_sym)
4755 expect("switch");
4756 if (*def_sym)
4757 tcc_error("too many 'default'");
4758 *def_sym = ind;
4759 is_expr = 0;
4760 goto block_after_label;
4761 } else
4762 if (tok == TOK_GOTO) {
4763 next();
4764 if (tok == '*' && gnu_ext) {
4765 /* computed goto */
4766 next();
4767 gexpr();
4768 if ((vtop->type.t & VT_BTYPE) != VT_PTR)
4769 expect("pointer");
4770 ggoto();
4771 } else if (tok >= TOK_UIDENT) {
4772 s = label_find(tok);
4773 /* put forward definition if needed */
4774 if (!s) {
4775 s = label_push(&global_label_stack, tok, LABEL_FORWARD);
4776 } else {
4777 if (s->r == LABEL_DECLARED)
4778 s->r = LABEL_FORWARD;
4780 /* label already defined */
4781 if (vla_flags & VLA_IN_SCOPE) {
4782 /* If VLAs are in use, save the current stack pointer and
4783 reset the stack pointer to what it was at function entry
4784 (label will restore stack pointer in inner scopes) */
4785 vla_sp_save();
4786 gen_vla_sp_restore(vla_sp_root_loc);
4788 if (s->r & LABEL_FORWARD)
4789 s->jnext = gjmp(s->jnext);
4790 else
4791 gjmp_addr(s->jnext);
4792 next();
4793 } else {
4794 expect("label identifier");
4796 skip(';');
4797 } else if (tok == TOK_ASM1 || tok == TOK_ASM2 || tok == TOK_ASM3) {
4798 asm_instr();
4799 } else {
4800 b = is_label();
4801 if (b) {
4802 /* label case */
4803 if (vla_flags & VLA_IN_SCOPE) {
4804 /* save/restore stack pointer across label
4805 this is a no-op when combined with the load immediately
4806 after the label unless we arrive via goto */
4807 vla_sp_save();
4809 s = label_find(b);
4810 if (s) {
4811 if (s->r == LABEL_DEFINED)
4812 tcc_error("duplicate label '%s'", get_tok_str(s->v, NULL));
4813 gsym(s->jnext);
4814 s->r = LABEL_DEFINED;
4815 } else {
4816 s = label_push(&global_label_stack, b, LABEL_DEFINED);
4818 s->jnext = ind;
4819 if (vla_flags & VLA_IN_SCOPE) {
4820 gen_vla_sp_restore(*vla_sp_loc);
4821 vla_flags |= VLA_NEED_NEW_FRAME;
4823 /* we accept this, but it is a mistake */
4824 block_after_label:
4825 if (tok == '}') {
4826 tcc_warning("deprecated use of label at end of compound statement");
4827 } else {
4828 if (is_expr)
4829 vpop();
4830 block(bsym, csym, case_sym, def_sym, case_reg, is_expr);
4832 } else {
4833 /* expression case */
4834 if (tok != ';') {
4835 if (is_expr) {
4836 vpop();
4837 gexpr();
4838 } else {
4839 gexpr();
4840 vpop();
4843 skip(';');
4848 /* t is the array or struct type. c is the array or struct
4849 address. cur_index/cur_field is the pointer to the current
4850 value. 'size_only' is true if only size info is needed (only used
4851 in arrays) */
4852 static void decl_designator(CType *type, Section *sec, unsigned long c,
4853 int *cur_index, Sym **cur_field,
4854 int size_only)
4856 Sym *s, *f;
4857 int notfirst, index, index_last, align, l, nb_elems, elem_size;
4858 CType type1;
4860 notfirst = 0;
4861 elem_size = 0;
4862 nb_elems = 1;
4863 if (gnu_ext && (l = is_label()) != 0)
4864 goto struct_field;
4865 while (tok == '[' || tok == '.') {
4866 if (tok == '[') {
4867 if (!(type->t & VT_ARRAY))
4868 expect("array type");
4869 s = type->ref;
4870 next();
4871 index = expr_const();
4872 if (index < 0 || (s->c >= 0 && index >= s->c))
4873 expect("invalid index");
4874 if (tok == TOK_DOTS && gnu_ext) {
4875 next();
4876 index_last = expr_const();
4877 if (index_last < 0 ||
4878 (s->c >= 0 && index_last >= s->c) ||
4879 index_last < index)
4880 expect("invalid index");
4881 } else {
4882 index_last = index;
4884 skip(']');
4885 if (!notfirst)
4886 *cur_index = index_last;
4887 type = pointed_type(type);
4888 elem_size = type_size(type, &align);
4889 c += index * elem_size;
4890 /* NOTE: we only support ranges for last designator */
4891 nb_elems = index_last - index + 1;
4892 if (nb_elems != 1) {
4893 notfirst = 1;
4894 break;
4896 } else {
4897 next();
4898 l = tok;
4899 next();
4900 struct_field:
4901 if ((type->t & VT_BTYPE) != VT_STRUCT)
4902 expect("struct/union type");
4903 s = type->ref;
4904 l |= SYM_FIELD;
4905 f = s->next;
4906 while (f) {
4907 if (f->v == l)
4908 break;
4909 f = f->next;
4911 if (!f)
4912 expect("field");
4913 if (!notfirst)
4914 *cur_field = f;
4915 /* XXX: fix this mess by using explicit storage field */
4916 type1 = f->type;
4917 type1.t |= (type->t & ~VT_TYPE);
4918 type = &type1;
4919 c += f->c;
4921 notfirst = 1;
4923 if (notfirst) {
4924 if (tok == '=') {
4925 next();
4926 } else {
4927 if (!gnu_ext)
4928 expect("=");
4930 } else {
4931 if (type->t & VT_ARRAY) {
4932 index = *cur_index;
4933 type = pointed_type(type);
4934 c += index * type_size(type, &align);
4935 } else {
4936 f = *cur_field;
4937 if (!f)
4938 tcc_error("too many field init");
4939 /* XXX: fix this mess by using explicit storage field */
4940 type1 = f->type;
4941 type1.t |= (type->t & ~VT_TYPE);
4942 type = &type1;
4943 c += f->c;
4946 decl_initializer(type, sec, c, 0, size_only);
4948 /* XXX: make it more general */
4949 if (!size_only && nb_elems > 1) {
4950 unsigned long c_end;
4951 uint8_t *src, *dst;
4952 int i;
4954 if (!sec)
4955 tcc_error("range init not supported yet for dynamic storage");
4956 c_end = c + nb_elems * elem_size;
4957 if (c_end > sec->data_allocated)
4958 section_realloc(sec, c_end);
4959 src = sec->data + c;
4960 dst = src;
4961 for(i = 1; i < nb_elems; i++) {
4962 dst += elem_size;
4963 memcpy(dst, src, elem_size);
4968 #define EXPR_VAL 0
4969 #define EXPR_CONST 1
4970 #define EXPR_ANY 2
4972 /* store a value or an expression directly in global data or in local array */
4973 static void init_putv(CType *type, Section *sec, unsigned long c,
4974 int v, int expr_type)
4976 int saved_global_expr, bt, bit_pos, bit_size;
4977 void *ptr;
4978 unsigned long long bit_mask;
4979 CType dtype;
4981 switch(expr_type) {
4982 case EXPR_VAL:
4983 vpushi(v);
4984 break;
4985 case EXPR_CONST:
4986 /* compound literals must be allocated globally in this case */
4987 saved_global_expr = global_expr;
4988 global_expr = 1;
4989 expr_const1();
4990 global_expr = saved_global_expr;
4991 /* NOTE: symbols are accepted */
4992 if ((vtop->r & (VT_VALMASK | VT_LVAL)) != VT_CONST)
4993 tcc_error("initializer element is not constant");
4994 break;
4995 case EXPR_ANY:
4996 expr_eq();
4997 break;
5000 dtype = *type;
5001 dtype.t &= ~VT_CONSTANT; /* need to do that to avoid false warning */
5003 if (sec) {
5004 /* XXX: not portable */
5005 /* XXX: generate error if incorrect relocation */
5006 gen_assign_cast(&dtype);
5007 bt = type->t & VT_BTYPE;
5008 /* we'll write at most 12 bytes */
5009 if (c + 12 > sec->data_allocated) {
5010 section_realloc(sec, c + 12);
5012 ptr = sec->data + c;
5013 /* XXX: make code faster ? */
5014 if (!(type->t & VT_BITFIELD)) {
5015 bit_pos = 0;
5016 bit_size = 32;
5017 bit_mask = -1LL;
5018 } else {
5019 bit_pos = (vtop->type.t >> VT_STRUCT_SHIFT) & 0x3f;
5020 bit_size = (vtop->type.t >> (VT_STRUCT_SHIFT + 6)) & 0x3f;
5021 bit_mask = (1LL << bit_size) - 1;
5023 if ((vtop->r & VT_SYM) &&
5024 (bt == VT_BYTE ||
5025 bt == VT_SHORT ||
5026 bt == VT_DOUBLE ||
5027 bt == VT_LDOUBLE ||
5028 bt == VT_LLONG ||
5029 (bt == VT_INT && bit_size != 32)))
5030 tcc_error("initializer element is not computable at load time");
5031 switch(bt) {
5032 case VT_BOOL:
5033 vtop->c.i = (vtop->c.i != 0);
5034 case VT_BYTE:
5035 *(char *)ptr |= (vtop->c.i & bit_mask) << bit_pos;
5036 break;
5037 case VT_SHORT:
5038 *(short *)ptr |= (vtop->c.i & bit_mask) << bit_pos;
5039 break;
5040 case VT_DOUBLE:
5041 *(double *)ptr = vtop->c.d;
5042 break;
5043 case VT_LDOUBLE:
5044 *(long double *)ptr = vtop->c.ld;
5045 break;
5046 case VT_LLONG:
5047 *(long long *)ptr |= (vtop->c.ll & bit_mask) << bit_pos;
5048 break;
5049 default:
5050 if (vtop->r & VT_SYM) {
5051 greloc(sec, vtop->sym, c, R_DATA_PTR);
5053 *(int *)ptr |= (vtop->c.i & bit_mask) << bit_pos;
5054 break;
5056 vtop--;
5057 } else {
5058 vset(&dtype, VT_LOCAL|VT_LVAL, c);
5059 vswap();
5060 vstore();
5061 vpop();
5065 /* put zeros for variable based init */
5066 static void init_putz(CType *t, Section *sec, unsigned long c, int size)
5068 if (sec) {
5069 /* nothing to do because globals are already set to zero */
5070 } else {
5071 vpush_global_sym(&func_old_type, TOK_memset);
5072 vseti(VT_LOCAL, c);
5073 vpushi(0);
5074 vpushs(size);
5075 gfunc_call(3);
5079 /* 't' contains the type and storage info. 'c' is the offset of the
5080 object in section 'sec'. If 'sec' is NULL, it means stack based
5081 allocation. 'first' is true if array '{' must be read (multi
5082 dimension implicit array init handling). 'size_only' is true if
5083 size only evaluation is wanted (only for arrays). */
5084 static void decl_initializer(CType *type, Section *sec, unsigned long c,
5085 int first, int size_only)
5087 int index, array_length, n, no_oblock, nb, parlevel, parlevel1, i;
5088 int size1, align1, expr_type;
5089 Sym *s, *f;
5090 CType *t1;
5092 if (type->t & VT_VLA) {
5093 int a;
5095 /* save current stack pointer */
5096 if (vla_flags & VLA_NEED_NEW_FRAME) {
5097 vla_sp_save();
5098 vla_flags = VLA_IN_SCOPE;
5099 vla_sp_loc = &vla_sp_loc_tmp;
5102 vla_runtime_type_size(type, &a);
5103 gen_vla_alloc(type, a);
5104 vset(type, VT_LOCAL|VT_LVAL, c);
5105 vswap();
5106 vstore();
5107 vpop();
5108 } else if (type->t & VT_ARRAY) {
5109 s = type->ref;
5110 n = s->c;
5111 array_length = 0;
5112 t1 = pointed_type(type);
5113 size1 = type_size(t1, &align1);
5115 no_oblock = 1;
5116 if ((first && tok != TOK_LSTR && tok != TOK_STR) ||
5117 tok == '{') {
5118 if (tok != '{')
5119 tcc_error("character array initializer must be a literal,"
5120 " optionally enclosed in braces");
5121 skip('{');
5122 no_oblock = 0;
5125 /* only parse strings here if correct type (otherwise: handle
5126 them as ((w)char *) expressions */
5127 if ((tok == TOK_LSTR &&
5128 #ifdef TCC_TARGET_PE
5129 (t1->t & VT_BTYPE) == VT_SHORT && (t1->t & VT_UNSIGNED)
5130 #else
5131 (t1->t & VT_BTYPE) == VT_INT
5132 #endif
5133 ) || (tok == TOK_STR && (t1->t & VT_BTYPE) == VT_BYTE)) {
5134 while (tok == TOK_STR || tok == TOK_LSTR) {
5135 int cstr_len, ch;
5136 CString *cstr;
5138 cstr = tokc.cstr;
5139 /* compute maximum number of chars wanted */
5140 if (tok == TOK_STR)
5141 cstr_len = cstr->size;
5142 else
5143 cstr_len = cstr->size / sizeof(nwchar_t);
5144 cstr_len--;
5145 nb = cstr_len;
5146 if (n >= 0 && nb > (n - array_length))
5147 nb = n - array_length;
5148 if (!size_only) {
5149 if (cstr_len > nb)
5150 tcc_warning("initializer-string for array is too long");
5151 /* in order to go faster for common case (char
5152 string in global variable, we handle it
5153 specifically */
5154 if (sec && tok == TOK_STR && size1 == 1) {
5155 memcpy(sec->data + c + array_length, cstr->data, nb);
5156 } else {
5157 for(i=0;i<nb;i++) {
5158 if (tok == TOK_STR)
5159 ch = ((unsigned char *)cstr->data)[i];
5160 else
5161 ch = ((nwchar_t *)cstr->data)[i];
5162 init_putv(t1, sec, c + (array_length + i) * size1,
5163 ch, EXPR_VAL);
5167 array_length += nb;
5168 next();
5170 /* only add trailing zero if enough storage (no
5171 warning in this case since it is standard) */
5172 if (n < 0 || array_length < n) {
5173 if (!size_only) {
5174 init_putv(t1, sec, c + (array_length * size1), 0, EXPR_VAL);
5176 array_length++;
5178 } else {
5179 index = 0;
5180 while (tok != '}') {
5181 decl_designator(type, sec, c, &index, NULL, size_only);
5182 if (n >= 0 && index >= n)
5183 tcc_error("index too large");
5184 /* must put zero in holes (note that doing it that way
5185 ensures that it even works with designators) */
5186 if (!size_only && array_length < index) {
5187 init_putz(t1, sec, c + array_length * size1,
5188 (index - array_length) * size1);
5190 index++;
5191 if (index > array_length)
5192 array_length = index;
5193 /* special test for multi dimensional arrays (may not
5194 be strictly correct if designators are used at the
5195 same time) */
5196 if (index >= n && no_oblock)
5197 break;
5198 if (tok == '}')
5199 break;
5200 skip(',');
5203 if (!no_oblock)
5204 skip('}');
5205 /* put zeros at the end */
5206 if (!size_only && n >= 0 && array_length < n) {
5207 init_putz(t1, sec, c + array_length * size1,
5208 (n - array_length) * size1);
5210 /* patch type size if needed */
5211 if (n < 0)
5212 s->c = array_length;
5213 } else if ((type->t & VT_BTYPE) == VT_STRUCT &&
5214 (sec || !first || tok == '{')) {
5215 int par_count;
5217 /* NOTE: the previous test is a specific case for automatic
5218 struct/union init */
5219 /* XXX: union needs only one init */
5221 /* XXX: this test is incorrect for local initializers
5222 beginning with ( without {. It would be much more difficult
5223 to do it correctly (ideally, the expression parser should
5224 be used in all cases) */
5225 par_count = 0;
5226 if (tok == '(') {
5227 AttributeDef ad1;
5228 CType type1;
5229 next();
5230 while (tok == '(') {
5231 par_count++;
5232 next();
5234 if (!parse_btype(&type1, &ad1))
5235 expect("cast");
5236 type_decl(&type1, &ad1, &n, TYPE_ABSTRACT);
5237 #if 0
5238 if (!is_assignable_types(type, &type1))
5239 tcc_error("invalid type for cast");
5240 #endif
5241 skip(')');
5243 no_oblock = 1;
5244 if (first || tok == '{') {
5245 skip('{');
5246 no_oblock = 0;
5248 s = type->ref;
5249 f = s->next;
5250 array_length = 0;
5251 index = 0;
5252 n = s->c;
5253 while (tok != '}') {
5254 decl_designator(type, sec, c, NULL, &f, size_only);
5255 index = f->c;
5256 if (!size_only && array_length < index) {
5257 init_putz(type, sec, c + array_length,
5258 index - array_length);
5260 index = index + type_size(&f->type, &align1);
5261 if (index > array_length)
5262 array_length = index;
5264 /* gr: skip fields from same union - ugly. */
5265 while (f->next) {
5266 ///printf("index: %2d %08x -- %2d %08x\n", f->c, f->type.t, f->next->c, f->next->type.t);
5267 /* test for same offset */
5268 if (f->next->c != f->c)
5269 break;
5270 /* if yes, test for bitfield shift */
5271 if ((f->type.t & VT_BITFIELD) && (f->next->type.t & VT_BITFIELD)) {
5272 int bit_pos_1 = (f->type.t >> VT_STRUCT_SHIFT) & 0x3f;
5273 int bit_pos_2 = (f->next->type.t >> VT_STRUCT_SHIFT) & 0x3f;
5274 //printf("bitfield %d %d\n", bit_pos_1, bit_pos_2);
5275 if (bit_pos_1 != bit_pos_2)
5276 break;
5278 f = f->next;
5281 f = f->next;
5282 if (no_oblock && f == NULL)
5283 break;
5284 if (tok == '}')
5285 break;
5286 skip(',');
5288 /* put zeros at the end */
5289 if (!size_only && array_length < n) {
5290 init_putz(type, sec, c + array_length,
5291 n - array_length);
5293 if (!no_oblock)
5294 skip('}');
5295 while (par_count) {
5296 skip(')');
5297 par_count--;
5299 } else if (tok == '{') {
5300 next();
5301 decl_initializer(type, sec, c, first, size_only);
5302 skip('}');
5303 } else if (size_only) {
5304 /* just skip expression */
5305 parlevel = parlevel1 = 0;
5306 while ((parlevel > 0 || parlevel1 > 0 ||
5307 (tok != '}' && tok != ',')) && tok != -1) {
5308 if (tok == '(')
5309 parlevel++;
5310 else if (tok == ')')
5311 parlevel--;
5312 else if (tok == '{')
5313 parlevel1++;
5314 else if (tok == '}')
5315 parlevel1--;
5316 next();
5318 } else {
5319 /* currently, we always use constant expression for globals
5320 (may change for scripting case) */
5321 expr_type = EXPR_CONST;
5322 if (!sec)
5323 expr_type = EXPR_ANY;
5324 init_putv(type, sec, c, 0, expr_type);
5328 /* parse an initializer for type 't' if 'has_init' is non zero, and
5329 allocate space in local or global data space ('r' is either
5330 VT_LOCAL or VT_CONST). If 'v' is non zero, then an associated
5331 variable 'v' with an associated name represented by 'asm_label' of
5332 scope 'scope' is declared before initializers are parsed. If 'v' is
5333 zero, then a reference to the new object is put in the value stack.
5334 If 'has_init' is 2, a special parsing is done to handle string
5335 constants. */
5336 static void decl_initializer_alloc(CType *type, AttributeDef *ad, int r,
5337 int has_init, int v, char *asm_label,
5338 int scope)
5340 int size, align, addr, data_offset;
5341 int level;
5342 ParseState saved_parse_state = {0};
5343 TokenString init_str;
5344 Section *sec;
5345 Sym *flexible_array;
5347 flexible_array = NULL;
5348 if ((type->t & VT_BTYPE) == VT_STRUCT) {
5349 Sym *field = type->ref->next;
5350 if (field) {
5351 while (field->next)
5352 field = field->next;
5353 if (field->type.t & VT_ARRAY && field->type.ref->c < 0)
5354 flexible_array = field;
5358 size = type_size(type, &align);
5359 /* If unknown size, we must evaluate it before
5360 evaluating initializers because
5361 initializers can generate global data too
5362 (e.g. string pointers or ISOC99 compound
5363 literals). It also simplifies local
5364 initializers handling */
5365 tok_str_new(&init_str);
5366 if (size < 0 || (flexible_array && has_init)) {
5367 if (!has_init)
5368 tcc_error("unknown type size");
5369 /* get all init string */
5370 if (has_init == 2) {
5371 /* only get strings */
5372 while (tok == TOK_STR || tok == TOK_LSTR) {
5373 tok_str_add_tok(&init_str);
5374 next();
5376 } else {
5377 level = 0;
5378 while (level > 0 || (tok != ',' && tok != ';')) {
5379 if (tok < 0)
5380 tcc_error("unexpected end of file in initializer");
5381 tok_str_add_tok(&init_str);
5382 if (tok == '{')
5383 level++;
5384 else if (tok == '}') {
5385 level--;
5386 if (level <= 0) {
5387 next();
5388 break;
5391 next();
5394 tok_str_add(&init_str, -1);
5395 tok_str_add(&init_str, 0);
5397 /* compute size */
5398 save_parse_state(&saved_parse_state);
5400 macro_ptr = init_str.str;
5401 next();
5402 decl_initializer(type, NULL, 0, 1, 1);
5403 /* prepare second initializer parsing */
5404 macro_ptr = init_str.str;
5405 next();
5407 /* if still unknown size, error */
5408 size = type_size(type, &align);
5409 if (size < 0)
5410 tcc_error("unknown type size");
5412 if (flexible_array)
5413 size += flexible_array->type.ref->c * pointed_size(&flexible_array->type);
5414 /* take into account specified alignment if bigger */
5415 if (ad->aligned) {
5416 if (ad->aligned > align)
5417 align = ad->aligned;
5418 } else if (ad->packed) {
5419 align = 1;
5421 if ((r & VT_VALMASK) == VT_LOCAL) {
5422 sec = NULL;
5423 #ifdef CONFIG_TCC_BCHECK
5424 if (tcc_state->do_bounds_check && (type->t & VT_ARRAY)) {
5425 loc--;
5427 #endif
5428 loc = (loc - size) & -align;
5429 addr = loc;
5430 #ifdef CONFIG_TCC_BCHECK
5431 /* handles bounds */
5432 /* XXX: currently, since we do only one pass, we cannot track
5433 '&' operators, so we add only arrays */
5434 if (tcc_state->do_bounds_check && (type->t & VT_ARRAY)) {
5435 unsigned long *bounds_ptr;
5436 /* add padding between regions */
5437 loc--;
5438 /* then add local bound info */
5439 bounds_ptr = section_ptr_add(lbounds_section, 2 * sizeof(unsigned long));
5440 bounds_ptr[0] = addr;
5441 bounds_ptr[1] = size;
5443 #endif
5444 if (v) {
5445 /* local variable */
5446 sym_push(v, type, r, addr);
5447 } else {
5448 /* push local reference */
5449 vset(type, r, addr);
5451 } else {
5452 Sym *sym;
5454 sym = NULL;
5455 if (v && scope == VT_CONST) {
5456 /* see if the symbol was already defined */
5457 sym = sym_find(v);
5458 if (sym) {
5459 if (!is_compatible_types(&sym->type, type))
5460 tcc_error("incompatible types for redefinition of '%s'",
5461 get_tok_str(v, NULL));
5462 if (sym->type.t & VT_EXTERN) {
5463 /* if the variable is extern, it was not allocated */
5464 sym->type.t &= ~VT_EXTERN;
5465 /* set array size if it was ommited in extern
5466 declaration */
5467 if ((sym->type.t & VT_ARRAY) &&
5468 sym->type.ref->c < 0 &&
5469 type->ref->c >= 0)
5470 sym->type.ref->c = type->ref->c;
5471 } else {
5472 /* we accept several definitions of the same
5473 global variable. this is tricky, because we
5474 must play with the SHN_COMMON type of the symbol */
5475 /* XXX: should check if the variable was already
5476 initialized. It is incorrect to initialized it
5477 twice */
5478 /* no init data, we won't add more to the symbol */
5479 if (!has_init)
5480 goto no_alloc;
5485 /* allocate symbol in corresponding section */
5486 sec = ad->section;
5487 if (!sec) {
5488 if (has_init)
5489 sec = data_section;
5490 else if (tcc_state->nocommon)
5491 sec = bss_section;
5493 if (sec) {
5494 data_offset = sec->data_offset;
5495 data_offset = (data_offset + align - 1) & -align;
5496 addr = data_offset;
5497 /* very important to increment global pointer at this time
5498 because initializers themselves can create new initializers */
5499 data_offset += size;
5500 #ifdef CONFIG_TCC_BCHECK
5501 /* add padding if bound check */
5502 if (tcc_state->do_bounds_check)
5503 data_offset++;
5504 #endif
5505 sec->data_offset = data_offset;
5506 /* allocate section space to put the data */
5507 if (sec->sh_type != SHT_NOBITS &&
5508 data_offset > sec->data_allocated)
5509 section_realloc(sec, data_offset);
5510 /* align section if needed */
5511 if (align > sec->sh_addralign)
5512 sec->sh_addralign = align;
5513 } else {
5514 addr = 0; /* avoid warning */
5517 if (v) {
5518 if (scope != VT_CONST || !sym) {
5519 sym = sym_push(v, type, r | VT_SYM, 0);
5520 sym->asm_label = asm_label;
5522 /* update symbol definition */
5523 if (sec) {
5524 put_extern_sym(sym, sec, addr, size);
5525 } else {
5526 ElfW(Sym) *esym;
5527 /* put a common area */
5528 put_extern_sym(sym, NULL, align, size);
5529 /* XXX: find a nicer way */
5530 esym = &((ElfW(Sym) *)symtab_section->data)[sym->c];
5531 esym->st_shndx = SHN_COMMON;
5533 } else {
5534 CValue cval;
5536 /* push global reference */
5537 sym = get_sym_ref(type, sec, addr, size);
5538 cval.ul = 0;
5539 vsetc(type, VT_CONST | VT_SYM, &cval);
5540 vtop->sym = sym;
5542 /* patch symbol weakness */
5543 if (type->t & VT_WEAK)
5544 weaken_symbol(sym);
5545 #ifdef CONFIG_TCC_BCHECK
5546 /* handles bounds now because the symbol must be defined
5547 before for the relocation */
5548 if (tcc_state->do_bounds_check) {
5549 unsigned long *bounds_ptr;
5551 greloc(bounds_section, sym, bounds_section->data_offset, R_DATA_PTR);
5552 /* then add global bound info */
5553 bounds_ptr = section_ptr_add(bounds_section, 2 * sizeof(long));
5554 bounds_ptr[0] = 0; /* relocated */
5555 bounds_ptr[1] = size;
5557 #endif
5559 if (has_init || (type->t & VT_VLA)) {
5560 decl_initializer(type, sec, addr, 1, 0);
5561 /* restore parse state if needed */
5562 if (init_str.str) {
5563 tok_str_free(init_str.str);
5564 restore_parse_state(&saved_parse_state);
5566 /* patch flexible array member size back to -1, */
5567 /* for possible subsequent similar declarations */
5568 if (flexible_array)
5569 flexible_array->type.ref->c = -1;
5571 no_alloc: ;
5574 static void put_func_debug(Sym *sym)
5576 char buf[512];
5578 /* stabs info */
5579 /* XXX: we put here a dummy type */
5580 snprintf(buf, sizeof(buf), "%s:%c1",
5581 funcname, sym->type.t & VT_STATIC ? 'f' : 'F');
5582 put_stabs_r(buf, N_FUN, 0, file->line_num, 0,
5583 cur_text_section, sym->c);
5584 /* //gr gdb wants a line at the function */
5585 put_stabn(N_SLINE, 0, file->line_num, 0);
5586 last_ind = 0;
5587 last_line_num = 0;
5590 /* parse an old style function declaration list */
5591 /* XXX: check multiple parameter */
5592 static void func_decl_list(Sym *func_sym)
5594 AttributeDef ad;
5595 int v;
5596 Sym *s;
5597 CType btype, type;
5599 /* parse each declaration */
5600 while (tok != '{' && tok != ';' && tok != ',' && tok != TOK_EOF &&
5601 tok != TOK_ASM1 && tok != TOK_ASM2 && tok != TOK_ASM3) {
5602 if (!parse_btype(&btype, &ad))
5603 expect("declaration list");
5604 if (((btype.t & VT_BTYPE) == VT_ENUM ||
5605 (btype.t & VT_BTYPE) == VT_STRUCT) &&
5606 tok == ';') {
5607 /* we accept no variable after */
5608 } else {
5609 for(;;) {
5610 type = btype;
5611 type_decl(&type, &ad, &v, TYPE_DIRECT);
5612 /* find parameter in function parameter list */
5613 s = func_sym->next;
5614 while (s != NULL) {
5615 if ((s->v & ~SYM_FIELD) == v)
5616 goto found;
5617 s = s->next;
5619 tcc_error("declaration for parameter '%s' but no such parameter",
5620 get_tok_str(v, NULL));
5621 found:
5622 /* check that no storage specifier except 'register' was given */
5623 if (type.t & VT_STORAGE)
5624 tcc_error("storage class specified for '%s'", get_tok_str(v, NULL));
5625 convert_parameter_type(&type);
5626 /* we can add the type (NOTE: it could be local to the function) */
5627 s->type = type;
5628 /* accept other parameters */
5629 if (tok == ',')
5630 next();
5631 else
5632 break;
5635 skip(';');
5639 /* parse a function defined by symbol 'sym' and generate its code in
5640 'cur_text_section' */
5641 static void gen_function(Sym *sym)
5643 int saved_nocode_wanted = nocode_wanted;
5644 nocode_wanted = 0;
5645 ind = cur_text_section->data_offset;
5646 /* NOTE: we patch the symbol size later */
5647 put_extern_sym(sym, cur_text_section, ind, 0);
5648 funcname = get_tok_str(sym->v, NULL);
5649 func_ind = ind;
5650 /* Initialize VLA state */
5651 vla_sp_loc = &vla_sp_root_loc;
5652 vla_flags = VLA_NEED_NEW_FRAME;
5653 /* put debug symbol */
5654 if (tcc_state->do_debug)
5655 put_func_debug(sym);
5656 /* push a dummy symbol to enable local sym storage */
5657 sym_push2(&local_stack, SYM_FIELD, 0, 0);
5658 gfunc_prolog(&sym->type);
5659 rsym = 0;
5660 block(NULL, NULL, NULL, NULL, 0, 0);
5661 gsym(rsym);
5662 gfunc_epilog();
5663 cur_text_section->data_offset = ind;
5664 label_pop(&global_label_stack, NULL);
5665 /* reset local stack */
5666 scope_stack_bottom = NULL;
5667 sym_pop(&local_stack, NULL);
5668 /* end of function */
5669 /* patch symbol size */
5670 ((ElfW(Sym) *)symtab_section->data)[sym->c].st_size =
5671 ind - func_ind;
5672 /* patch symbol weakness (this definition overrules any prototype) */
5673 if (sym->type.t & VT_WEAK)
5674 weaken_symbol(sym);
5675 if (tcc_state->do_debug) {
5676 put_stabn(N_FUN, 0, 0, ind - func_ind);
5678 /* It's better to crash than to generate wrong code */
5679 cur_text_section = NULL;
5680 funcname = ""; /* for safety */
5681 func_vt.t = VT_VOID; /* for safety */
5682 ind = 0; /* for safety */
5683 nocode_wanted = saved_nocode_wanted;
5686 ST_FUNC void gen_inline_functions(void)
5688 Sym *sym;
5689 int *str, inline_generated, i;
5690 struct InlineFunc *fn;
5692 /* iterate while inline function are referenced */
5693 for(;;) {
5694 inline_generated = 0;
5695 for (i = 0; i < tcc_state->nb_inline_fns; ++i) {
5696 fn = tcc_state->inline_fns[i];
5697 sym = fn->sym;
5698 if (sym && sym->c) {
5699 /* the function was used: generate its code and
5700 convert it to a normal function */
5701 str = fn->token_str;
5702 fn->sym = NULL;
5703 if (file)
5704 pstrcpy(file->filename, sizeof file->filename, fn->filename);
5705 sym->r = VT_SYM | VT_CONST;
5706 sym->type.t &= ~VT_INLINE;
5708 macro_ptr = str;
5709 next();
5710 cur_text_section = text_section;
5711 gen_function(sym);
5712 macro_ptr = NULL; /* fail safe */
5714 inline_generated = 1;
5717 if (!inline_generated)
5718 break;
5720 for (i = 0; i < tcc_state->nb_inline_fns; ++i) {
5721 fn = tcc_state->inline_fns[i];
5722 str = fn->token_str;
5723 tok_str_free(str);
5725 dynarray_reset(&tcc_state->inline_fns, &tcc_state->nb_inline_fns);
5728 /* 'l' is VT_LOCAL or VT_CONST to define default storage type */
5729 static int decl0(int l, int is_for_loop_init)
5731 int v, has_init, r;
5732 CType type, btype;
5733 Sym *sym;
5734 AttributeDef ad;
5736 while (1) {
5737 if (!parse_btype(&btype, &ad)) {
5738 if (is_for_loop_init)
5739 return 0;
5740 /* skip redundant ';' */
5741 /* XXX: find more elegant solution */
5742 if (tok == ';') {
5743 next();
5744 continue;
5746 if (l == VT_CONST &&
5747 (tok == TOK_ASM1 || tok == TOK_ASM2 || tok == TOK_ASM3)) {
5748 /* global asm block */
5749 asm_global_instr();
5750 continue;
5752 /* special test for old K&R protos without explicit int
5753 type. Only accepted when defining global data */
5754 if (l == VT_LOCAL || tok < TOK_DEFINE)
5755 break;
5756 btype.t = VT_INT;
5758 if (((btype.t & VT_BTYPE) == VT_ENUM ||
5759 (btype.t & VT_BTYPE) == VT_STRUCT) &&
5760 tok == ';') {
5761 /* we accept no variable after */
5762 next();
5763 continue;
5765 while (1) { /* iterate thru each declaration */
5766 char *asm_label; // associated asm label
5767 type = btype;
5768 type_decl(&type, &ad, &v, TYPE_DIRECT);
5769 #if 0
5771 char buf[500];
5772 type_to_str(buf, sizeof(buf), t, get_tok_str(v, NULL));
5773 printf("type = '%s'\n", buf);
5775 #endif
5776 if ((type.t & VT_BTYPE) == VT_FUNC) {
5777 if ((type.t & VT_STATIC) && (l == VT_LOCAL)) {
5778 tcc_error("function without file scope cannot be static");
5780 /* if old style function prototype, we accept a
5781 declaration list */
5782 sym = type.ref;
5783 if (sym->c == FUNC_OLD)
5784 func_decl_list(sym);
5787 asm_label = NULL;
5788 if (gnu_ext && (tok == TOK_ASM1 || tok == TOK_ASM2 || tok == TOK_ASM3)) {
5789 CString astr;
5791 asm_label_instr(&astr);
5792 asm_label = tcc_strdup(astr.data);
5793 cstr_free(&astr);
5795 /* parse one last attribute list, after asm label */
5796 parse_attribute(&ad);
5799 if (ad.weak)
5800 type.t |= VT_WEAK;
5801 #ifdef TCC_TARGET_PE
5802 if (ad.func_import)
5803 type.t |= VT_IMPORT;
5804 if (ad.func_export)
5805 type.t |= VT_EXPORT;
5806 #endif
5807 if (tok == '{') {
5808 if (l == VT_LOCAL)
5809 tcc_error("cannot use local functions");
5810 if ((type.t & VT_BTYPE) != VT_FUNC)
5811 expect("function definition");
5813 /* reject abstract declarators in function definition */
5814 sym = type.ref;
5815 while ((sym = sym->next) != NULL)
5816 if (!(sym->v & ~SYM_FIELD))
5817 expect("identifier");
5819 /* XXX: cannot do better now: convert extern line to static inline */
5820 if ((type.t & (VT_EXTERN | VT_INLINE)) == (VT_EXTERN | VT_INLINE))
5821 type.t = (type.t & ~VT_EXTERN) | VT_STATIC;
5823 sym = sym_find(v);
5824 if (sym) {
5825 if ((sym->type.t & VT_BTYPE) != VT_FUNC)
5826 goto func_error1;
5828 r = sym->type.ref->r;
5830 if (!FUNC_PROTO(r))
5831 tcc_error("redefinition of '%s'", get_tok_str(v, NULL));
5833 /* use func_call from prototype if not defined */
5834 if (FUNC_CALL(r) != FUNC_CDECL
5835 && FUNC_CALL(type.ref->r) == FUNC_CDECL)
5836 FUNC_CALL(type.ref->r) = FUNC_CALL(r);
5838 /* use export from prototype */
5839 if (FUNC_EXPORT(r))
5840 FUNC_EXPORT(type.ref->r) = 1;
5842 /* use static from prototype */
5843 if (sym->type.t & VT_STATIC)
5844 type.t = (type.t & ~VT_EXTERN) | VT_STATIC;
5846 if (!is_compatible_types(&sym->type, &type)) {
5847 func_error1:
5848 tcc_error("incompatible types for redefinition of '%s'",
5849 get_tok_str(v, NULL));
5851 FUNC_PROTO(type.ref->r) = 0;
5852 /* if symbol is already defined, then put complete type */
5853 sym->type = type;
5854 } else {
5855 /* put function symbol */
5856 sym = global_identifier_push(v, type.t, 0);
5857 sym->type.ref = type.ref;
5860 /* static inline functions are just recorded as a kind
5861 of macro. Their code will be emitted at the end of
5862 the compilation unit only if they are used */
5863 if ((type.t & (VT_INLINE | VT_STATIC)) ==
5864 (VT_INLINE | VT_STATIC)) {
5865 TokenString func_str;
5866 int block_level;
5867 struct InlineFunc *fn;
5868 const char *filename;
5870 tok_str_new(&func_str);
5872 block_level = 0;
5873 for(;;) {
5874 int t;
5875 if (tok == TOK_EOF)
5876 tcc_error("unexpected end of file");
5877 tok_str_add_tok(&func_str);
5878 t = tok;
5879 next();
5880 if (t == '{') {
5881 block_level++;
5882 } else if (t == '}') {
5883 block_level--;
5884 if (block_level == 0)
5885 break;
5888 tok_str_add(&func_str, -1);
5889 tok_str_add(&func_str, 0);
5890 filename = file ? file->filename : "";
5891 fn = tcc_malloc(sizeof *fn + strlen(filename));
5892 strcpy(fn->filename, filename);
5893 fn->sym = sym;
5894 fn->token_str = func_str.str;
5895 dynarray_add((void ***)&tcc_state->inline_fns, &tcc_state->nb_inline_fns, fn);
5897 } else {
5898 /* compute text section */
5899 cur_text_section = ad.section;
5900 if (!cur_text_section)
5901 cur_text_section = text_section;
5902 sym->r = VT_SYM | VT_CONST;
5903 gen_function(sym);
5905 break;
5906 } else {
5907 if (btype.t & VT_TYPEDEF) {
5908 /* save typedefed type */
5909 /* XXX: test storage specifiers ? */
5910 sym = sym_push(v, &type, INT_ATTR(&ad), 0);
5911 sym->type.t |= VT_TYPEDEF;
5912 } else {
5913 r = 0;
5914 if ((type.t & VT_BTYPE) == VT_FUNC) {
5915 /* external function definition */
5916 /* specific case for func_call attribute */
5917 ad.func_proto = 1;
5918 type.ref->r = INT_ATTR(&ad);
5919 } else if (!(type.t & VT_ARRAY)) {
5920 /* not lvalue if array */
5921 r |= lvalue_type(type.t);
5923 has_init = (tok == '=');
5924 if (has_init && (type.t & VT_VLA))
5925 tcc_error("Variable length array cannot be initialized");
5926 if ((btype.t & VT_EXTERN) || ((type.t & VT_BTYPE) == VT_FUNC) ||
5927 ((type.t & VT_ARRAY) && (type.t & VT_STATIC) &&
5928 !has_init && l == VT_CONST && type.ref->c < 0)) {
5929 /* external variable or function */
5930 /* NOTE: as GCC, uninitialized global static
5931 arrays of null size are considered as
5932 extern */
5933 sym = external_sym(v, &type, r, asm_label);
5935 if (type.t & VT_WEAK)
5936 weaken_symbol(sym);
5938 if (ad.alias_target) {
5939 Section tsec;
5940 Elf32_Sym *esym;
5941 Sym *alias_target;
5943 alias_target = sym_find(ad.alias_target);
5944 if (!alias_target || !alias_target->c)
5945 tcc_error("unsupported forward __alias__ attribute");
5946 esym = &((Elf32_Sym *)symtab_section->data)[alias_target->c];
5947 tsec.sh_num = esym->st_shndx;
5948 put_extern_sym2(sym, &tsec, esym->st_value, esym->st_size, 0);
5950 } else {
5951 type.t |= (btype.t & VT_STATIC); /* Retain "static". */
5952 if (type.t & VT_STATIC)
5953 r |= VT_CONST;
5954 else
5955 r |= l;
5956 if (has_init)
5957 next();
5958 decl_initializer_alloc(&type, &ad, r, has_init, v, asm_label, l);
5961 if (tok != ',') {
5962 if (is_for_loop_init)
5963 return 1;
5964 skip(';');
5965 break;
5967 next();
5969 ad.aligned = 0;
5972 return 0;
5975 ST_FUNC void decl(int l)
5977 decl0(l, 0);