Def signedness != signed != unsigned for char
[tinycc.git] / tccgen.c
blob2f5b3665cac6865aa9ac3ef34ded05f1fc8eadf7
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_var; /* true if current function is variadic (used by return instruction) */
70 ST_DATA int func_vc;
71 ST_DATA int last_line_num, last_ind, func_ind; /* debug last line number and pc */
72 ST_DATA char *funcname;
74 ST_DATA CType char_pointer_type, func_old_type, int_type, size_type;
76 /* ------------------------------------------------------------------------- */
77 static void gen_cast(CType *type);
78 static inline CType *pointed_type(CType *type);
79 static int is_compatible_types(CType *type1, CType *type2);
80 static int parse_btype(CType *type, AttributeDef *ad);
81 static void type_decl(CType *type, AttributeDef *ad, int *v, int td);
82 static void parse_expr_type(CType *type);
83 static void decl_initializer(CType *type, Section *sec, unsigned long c, int first, int size_only);
84 static void block(int *bsym, int *csym, int *case_sym, int *def_sym, int case_reg, int is_expr);
85 static void decl_initializer_alloc(CType *type, AttributeDef *ad, int r, int has_init, int v, char *asm_label, int scope);
86 static int decl0(int l, int is_for_loop_init);
87 static void expr_eq(void);
88 static void unary_type(CType *type);
89 static void vla_runtime_type_size(CType *type, int *a);
90 static void vla_sp_save(void);
91 static int is_compatible_parameter_types(CType *type1, CType *type2);
92 static void expr_type(CType *type);
94 ST_INLN int is_float(int t)
96 int bt;
97 bt = t & VT_BTYPE;
98 return bt == VT_LDOUBLE || bt == VT_DOUBLE || bt == VT_FLOAT || bt == VT_QFLOAT;
101 /* we use our own 'finite' function to avoid potential problems with
102 non standard math libs */
103 /* XXX: endianness dependent */
104 ST_FUNC int ieee_finite(double d)
106 int p[4];
107 memcpy(p, &d, sizeof(double));
108 return ((unsigned)((p[1] | 0x800fffff) + 1)) >> 31;
111 ST_FUNC void test_lvalue(void)
113 if (!(vtop->r & VT_LVAL))
114 expect("lvalue");
117 /* ------------------------------------------------------------------------- */
118 /* symbol allocator */
119 static Sym *__sym_malloc(void)
121 Sym *sym_pool, *sym, *last_sym;
122 int i;
124 sym_pool = tcc_malloc(SYM_POOL_NB * sizeof(Sym));
125 dynarray_add(&sym_pools, &nb_sym_pools, sym_pool);
127 last_sym = sym_free_first;
128 sym = sym_pool;
129 for(i = 0; i < SYM_POOL_NB; i++) {
130 sym->next = last_sym;
131 last_sym = sym;
132 sym++;
134 sym_free_first = last_sym;
135 return last_sym;
138 static inline Sym *sym_malloc(void)
140 Sym *sym;
141 sym = sym_free_first;
142 if (!sym)
143 sym = __sym_malloc();
144 sym_free_first = sym->next;
145 return sym;
148 ST_INLN void sym_free(Sym *sym)
150 sym->next = sym_free_first;
151 tcc_free(sym->asm_label);
152 sym_free_first = sym;
155 /* push, without hashing */
156 ST_FUNC Sym *sym_push2(Sym **ps, int v, int t, long c)
158 Sym *s;
159 if (ps == &local_stack) {
160 for (s = *ps; s && s != scope_stack_bottom; s = s->prev)
161 if (!(v & SYM_FIELD) && (v & ~SYM_STRUCT) < SYM_FIRST_ANOM && s->v == v)
162 tcc_error("incompatible types for redefinition of '%s'",
163 get_tok_str(v, NULL));
165 s = *ps;
166 s = sym_malloc();
167 s->asm_label = NULL;
168 s->v = v;
169 s->type.t = t;
170 s->type.ref = NULL;
171 #ifdef _WIN64
172 s->d = NULL;
173 #endif
174 s->c = c;
175 s->next = NULL;
176 /* add in stack */
177 s->prev = *ps;
178 *ps = s;
179 return s;
182 /* find a symbol and return its associated structure. 's' is the top
183 of the symbol stack */
184 ST_FUNC Sym *sym_find2(Sym *s, int v)
186 while (s) {
187 if (s->v == v)
188 return s;
189 s = s->prev;
191 return NULL;
194 /* structure lookup */
195 ST_INLN Sym *struct_find(int v)
197 v -= TOK_IDENT;
198 if ((unsigned)v >= (unsigned)(tok_ident - TOK_IDENT))
199 return NULL;
200 return table_ident[v]->sym_struct;
203 /* find an identifier */
204 ST_INLN Sym *sym_find(int v)
206 v -= TOK_IDENT;
207 if ((unsigned)v >= (unsigned)(tok_ident - TOK_IDENT))
208 return NULL;
209 return table_ident[v]->sym_identifier;
212 /* push a given symbol on the symbol stack */
213 ST_FUNC Sym *sym_push(int v, CType *type, int r, int c)
215 Sym *s, **ps;
216 TokenSym *ts;
218 if (local_stack)
219 ps = &local_stack;
220 else
221 ps = &global_stack;
222 s = sym_push2(ps, v, type->t, c);
223 s->type.ref = type->ref;
224 s->r = r;
225 /* don't record fields or anonymous symbols */
226 /* XXX: simplify */
227 if (!(v & SYM_FIELD) && (v & ~SYM_STRUCT) < SYM_FIRST_ANOM) {
228 /* record symbol in token array */
229 ts = table_ident[(v & ~SYM_STRUCT) - TOK_IDENT];
230 if (v & SYM_STRUCT)
231 ps = &ts->sym_struct;
232 else
233 ps = &ts->sym_identifier;
234 s->prev_tok = *ps;
235 *ps = s;
237 return s;
240 /* push a global identifier */
241 ST_FUNC Sym *global_identifier_push(int v, int t, int c)
243 Sym *s, **ps;
244 s = sym_push2(&global_stack, v, t, c);
245 /* don't record anonymous symbol */
246 if (v < SYM_FIRST_ANOM) {
247 ps = &table_ident[v - TOK_IDENT]->sym_identifier;
248 /* modify the top most local identifier, so that
249 sym_identifier will point to 's' when popped */
250 while (*ps != NULL)
251 ps = &(*ps)->prev_tok;
252 s->prev_tok = NULL;
253 *ps = s;
255 return s;
258 /* pop symbols until top reaches 'b' */
259 ST_FUNC void sym_pop(Sym **ptop, Sym *b)
261 Sym *s, *ss, **ps;
262 TokenSym *ts;
263 int v;
265 s = *ptop;
266 while(s != b) {
267 ss = s->prev;
268 v = s->v;
269 /* remove symbol in token array */
270 /* XXX: simplify */
271 if (!(v & SYM_FIELD) && (v & ~SYM_STRUCT) < SYM_FIRST_ANOM) {
272 ts = table_ident[(v & ~SYM_STRUCT) - TOK_IDENT];
273 if (v & SYM_STRUCT)
274 ps = &ts->sym_struct;
275 else
276 ps = &ts->sym_identifier;
277 *ps = s->prev_tok;
279 sym_free(s);
280 s = ss;
282 *ptop = b;
285 static void weaken_symbol(Sym *sym)
287 sym->type.t |= VT_WEAK;
288 if (sym->c > 0) {
289 int esym_type;
290 ElfW(Sym) *esym;
292 esym = &((ElfW(Sym) *)symtab_section->data)[sym->c];
293 esym_type = ELFW(ST_TYPE)(esym->st_info);
294 esym->st_info = ELFW(ST_INFO)(STB_WEAK, esym_type);
298 /* ------------------------------------------------------------------------- */
300 ST_FUNC void swap(int *p, int *q)
302 int t;
303 t = *p;
304 *p = *q;
305 *q = t;
308 static void vsetc(CType *type, int r, CValue *vc)
310 int v;
312 if (vtop >= vstack + (VSTACK_SIZE - 1))
313 tcc_error("memory full (vstack)");
314 /* cannot let cpu flags if other instruction are generated. Also
315 avoid leaving VT_JMP anywhere except on the top of the stack
316 because it would complicate the code generator. */
317 if (vtop >= vstack) {
318 v = vtop->r & VT_VALMASK;
319 if (v == VT_CMP || (v & ~1) == VT_JMP)
320 gv(RC_INT);
322 vtop++;
323 vtop->type = *type;
324 vtop->r = r;
325 vtop->r2 = VT_CONST;
326 vtop->c = *vc;
329 /* push constant of type "type" with useless value */
330 void vpush(CType *type)
332 CValue cval;
333 vsetc(type, VT_CONST, &cval);
336 /* push integer constant */
337 ST_FUNC void vpushi(int v)
339 CValue cval;
340 cval.i = v;
341 vsetc(&int_type, VT_CONST, &cval);
344 /* push a pointer sized constant */
345 static void vpushs(long long v)
347 CValue cval;
348 if (PTR_SIZE == 4)
349 cval.i = (int)v;
350 else
351 cval.ull = v;
352 vsetc(&size_type, VT_CONST, &cval);
355 /* push arbitrary 64bit constant */
356 void vpush64(int ty, unsigned long long v)
358 CValue cval;
359 CType ctype;
360 ctype.t = ty;
361 ctype.ref = NULL;
362 cval.ull = v;
363 vsetc(&ctype, VT_CONST, &cval);
366 /* push long long constant */
367 static inline void vpushll(long long v)
369 vpush64(VT_LLONG, v);
372 /* push a symbol value of TYPE */
373 static inline void vpushsym(CType *type, Sym *sym)
375 CValue cval;
377 cval.ull = 0;
378 vsetc(type, VT_CONST | VT_SYM, &cval);
379 vtop->sym = sym;
382 /* Return a static symbol pointing to a section */
383 ST_FUNC Sym *get_sym_ref(CType *type, Section *sec, unsigned long offset, unsigned long size)
385 int v;
386 Sym *sym;
388 v = anon_sym++;
389 sym = global_identifier_push(v, type->t | VT_STATIC, 0);
390 sym->type.ref = type->ref;
391 sym->r = VT_CONST | VT_SYM;
392 put_extern_sym(sym, sec, offset, size);
393 return sym;
396 /* push a reference to a section offset by adding a dummy symbol */
397 static void vpush_ref(CType *type, Section *sec, unsigned long offset, unsigned long size)
399 vpushsym(type, get_sym_ref(type, sec, offset, size));
402 /* define a new external reference to a symbol 'v' of type 'u' */
403 ST_FUNC Sym *external_global_sym(int v, CType *type, int r)
405 Sym *s;
407 s = sym_find(v);
408 if (!s) {
409 /* push forward reference */
410 s = global_identifier_push(v, type->t | VT_EXTERN, 0);
411 s->type.ref = type->ref;
412 s->r = r | VT_CONST | VT_SYM;
414 return s;
417 /* define a new external reference to a symbol 'v' with alternate asm
418 name 'asm_label' of type 'u'. 'asm_label' is equal to NULL if there
419 is no alternate name (most cases) */
420 static Sym *external_sym(int v, CType *type, int r, char *asm_label)
422 Sym *s;
424 s = sym_find(v);
425 if (!s) {
426 /* push forward reference */
427 s = sym_push(v, type, r | VT_CONST | VT_SYM, 0);
428 s->asm_label = asm_label;
429 s->type.t |= VT_EXTERN;
430 } else if (s->type.ref == func_old_type.ref) {
431 s->type.ref = type->ref;
432 s->r = r | VT_CONST | VT_SYM;
433 s->type.t |= VT_EXTERN;
434 } else if (!is_compatible_types(&s->type, type)) {
435 tcc_error("incompatible types for redefinition of '%s'",
436 get_tok_str(v, NULL));
438 return s;
441 /* push a reference to global symbol v */
442 ST_FUNC void vpush_global_sym(CType *type, int v)
444 vpushsym(type, external_global_sym(v, type, 0));
447 ST_FUNC void vset(CType *type, int r, int v)
449 CValue cval;
451 cval.i = v;
452 vsetc(type, r, &cval);
455 static void vseti(int r, int v)
457 CType type;
458 type.t = VT_INT;
459 type.ref = 0;
460 vset(&type, r, v);
463 ST_FUNC void vswap(void)
465 SValue tmp;
466 /* cannot let cpu flags if other instruction are generated. Also
467 avoid leaving VT_JMP anywhere except on the top of the stack
468 because it would complicate the code generator. */
469 if (vtop >= vstack) {
470 int v = vtop->r & VT_VALMASK;
471 if (v == VT_CMP || (v & ~1) == VT_JMP)
472 gv(RC_INT);
474 tmp = vtop[0];
475 vtop[0] = vtop[-1];
476 vtop[-1] = tmp;
478 /* XXX: +2% overall speed possible with optimized memswap
480 * memswap(&vtop[0], &vtop[1], sizeof *vtop);
484 ST_FUNC void vpushv(SValue *v)
486 if (vtop >= vstack + (VSTACK_SIZE - 1))
487 tcc_error("memory full (vstack)");
488 vtop++;
489 *vtop = *v;
492 static void vdup(void)
494 vpushv(vtop);
497 /* save r to the memory stack, and mark it as being free */
498 ST_FUNC void save_reg(int r)
500 int l, saved, size, align;
501 SValue *p, sv;
502 CType *type;
504 /* modify all stack values */
505 saved = 0;
506 l = 0;
507 for(p=vstack;p<=vtop;p++) {
508 if ((p->r & VT_VALMASK) == r ||
509 ((p->type.t & VT_BTYPE) == VT_LLONG && (p->r2 & VT_VALMASK) == r)) {
510 /* must save value on stack if not already done */
511 if (!saved) {
512 /* NOTE: must reload 'r' because r might be equal to r2 */
513 r = p->r & VT_VALMASK;
514 /* store register in the stack */
515 type = &p->type;
516 if ((p->r & VT_LVAL) ||
517 (!is_float(type->t) && (type->t & VT_BTYPE) != VT_LLONG))
518 #ifdef TCC_TARGET_X86_64
519 type = &char_pointer_type;
520 #else
521 type = &int_type;
522 #endif
523 size = type_size(type, &align);
524 loc = (loc - size) & -align;
525 sv.type.t = type->t;
526 sv.r = VT_LOCAL | VT_LVAL;
527 sv.c.ul = loc;
528 store(r, &sv);
529 #if defined(TCC_TARGET_I386) || defined(TCC_TARGET_X86_64)
530 /* x86 specific: need to pop fp register ST0 if saved */
531 if (r == TREG_ST0) {
532 o(0xd8dd); /* fstp %st(0) */
534 #endif
535 #ifndef TCC_TARGET_X86_64
536 /* special long long case */
537 if ((type->t & VT_BTYPE) == VT_LLONG) {
538 sv.c.ul += 4;
539 store(p->r2, &sv);
541 #endif
542 l = loc;
543 saved = 1;
545 /* mark that stack entry as being saved on the stack */
546 if (p->r & VT_LVAL) {
547 /* also clear the bounded flag because the
548 relocation address of the function was stored in
549 p->c.ul */
550 p->r = (p->r & ~(VT_VALMASK | VT_BOUNDED)) | VT_LLOCAL;
551 } else {
552 p->r = lvalue_type(p->type.t) | VT_LOCAL;
554 p->r2 = VT_CONST;
555 p->c.ul = l;
560 #ifdef TCC_TARGET_ARM
561 /* find a register of class 'rc2' with at most one reference on stack.
562 * If none, call get_reg(rc) */
563 ST_FUNC int get_reg_ex(int rc, int rc2)
565 int r;
566 SValue *p;
568 for(r=0;r<NB_REGS;r++) {
569 if (reg_classes[r] & rc2) {
570 int n;
571 n=0;
572 for(p = vstack; p <= vtop; p++) {
573 if ((p->r & VT_VALMASK) == r ||
574 (p->r2 & VT_VALMASK) == r)
575 n++;
577 if (n <= 1)
578 return r;
581 return get_reg(rc);
583 #endif
585 /* find a free register of class 'rc'. If none, save one register */
586 ST_FUNC int get_reg(int rc)
588 int r;
589 SValue *p;
591 /* find a free register */
592 for(r=0;r<NB_REGS;r++) {
593 if (reg_classes[r] & rc) {
594 for(p=vstack;p<=vtop;p++) {
595 if ((p->r & VT_VALMASK) == r ||
596 (p->r2 & VT_VALMASK) == r)
597 goto notfound;
599 return r;
601 notfound: ;
604 /* no register left : free the first one on the stack (VERY
605 IMPORTANT to start from the bottom to ensure that we don't
606 spill registers used in gen_opi()) */
607 for(p=vstack;p<=vtop;p++) {
608 /* look at second register (if long long) */
609 r = p->r2 & VT_VALMASK;
610 if (r < VT_CONST && (reg_classes[r] & rc))
611 goto save_found;
612 r = p->r & VT_VALMASK;
613 if (r < VT_CONST && (reg_classes[r] & rc)) {
614 save_found:
615 save_reg(r);
616 return r;
619 /* Should never comes here */
620 return -1;
623 /* save registers up to (vtop - n) stack entry */
624 ST_FUNC void save_regs(int n)
626 int r;
627 SValue *p, *p1;
628 p1 = vtop - n;
629 for(p = vstack;p <= p1; p++) {
630 r = p->r & VT_VALMASK;
631 if (r < VT_CONST) {
632 save_reg(r);
637 /* move register 's' (of type 't') to 'r', and flush previous value of r to memory
638 if needed */
639 static void move_reg(int r, int s, int t)
641 SValue sv;
643 if (r != s) {
644 save_reg(r);
645 sv.type.t = t;
646 sv.type.ref = NULL;
647 sv.r = s;
648 sv.c.ul = 0;
649 load(r, &sv);
653 /* get address of vtop (vtop MUST BE an lvalue) */
654 static void gaddrof(void)
656 if (vtop->r & VT_REF)
657 gv(RC_INT);
658 vtop->r &= ~VT_LVAL;
659 /* tricky: if saved lvalue, then we can go back to lvalue */
660 if ((vtop->r & VT_VALMASK) == VT_LLOCAL)
661 vtop->r = (vtop->r & ~(VT_VALMASK | VT_LVAL_TYPE)) | VT_LOCAL | VT_LVAL;
666 #ifdef CONFIG_TCC_BCHECK
667 /* generate lvalue bound code */
668 static void gbound(void)
670 int lval_type;
671 CType type1;
673 vtop->r &= ~VT_MUSTBOUND;
674 /* if lvalue, then use checking code before dereferencing */
675 if (vtop->r & VT_LVAL) {
676 /* if not VT_BOUNDED value, then make one */
677 if (!(vtop->r & VT_BOUNDED)) {
678 lval_type = vtop->r & (VT_LVAL_TYPE | VT_LVAL);
679 /* must save type because we must set it to int to get pointer */
680 type1 = vtop->type;
681 vtop->type.t = VT_INT;
682 gaddrof();
683 vpushi(0);
684 gen_bounded_ptr_add();
685 vtop->r |= lval_type;
686 vtop->type = type1;
688 /* then check for dereferencing */
689 gen_bounded_ptr_deref();
692 #endif
694 /* store vtop a register belonging to class 'rc'. lvalues are
695 converted to values. Cannot be used if cannot be converted to
696 register value (such as structures). */
697 ST_FUNC int gv(int rc)
699 int r, bit_pos, bit_size, size, align, i;
700 int rc2;
702 /* NOTE: get_reg can modify vstack[] */
703 if (vtop->type.t & VT_BITFIELD) {
704 CType type;
705 int bits = 32;
706 bit_pos = (vtop->type.t >> VT_STRUCT_SHIFT) & 0x3f;
707 bit_size = (vtop->type.t >> (VT_STRUCT_SHIFT + 6)) & 0x3f;
708 /* remove bit field info to avoid loops */
709 vtop->type.t &= ~(VT_BITFIELD | (-1 << VT_STRUCT_SHIFT));
710 /* cast to int to propagate signedness in following ops */
711 if ((vtop->type.t & VT_BTYPE) == VT_LLONG) {
712 type.t = VT_LLONG;
713 bits = 64;
714 } else
715 type.t = VT_INT;
716 if((vtop->type.t & VT_UNSIGNED) ||
717 (vtop->type.t & VT_BTYPE) == VT_BOOL)
718 type.t |= VT_UNSIGNED;
719 gen_cast(&type);
720 /* generate shifts */
721 vpushi(bits - (bit_pos + bit_size));
722 gen_op(TOK_SHL);
723 vpushi(bits - bit_size);
724 /* NOTE: transformed to SHR if unsigned */
725 gen_op(TOK_SAR);
726 r = gv(rc);
727 } else {
728 if (is_float(vtop->type.t) &&
729 (vtop->r & (VT_VALMASK | VT_LVAL)) == VT_CONST) {
730 Sym *sym;
731 int *ptr;
732 unsigned long offset;
733 #if defined(TCC_TARGET_ARM) && !defined(TCC_ARM_VFP)
734 CValue check;
735 #endif
737 /* XXX: unify with initializers handling ? */
738 /* CPUs usually cannot use float constants, so we store them
739 generically in data segment */
740 size = type_size(&vtop->type, &align);
741 offset = (data_section->data_offset + align - 1) & -align;
742 data_section->data_offset = offset;
743 /* XXX: not portable yet */
744 #if defined(__i386__) || defined(__x86_64__)
745 /* Zero pad x87 tenbyte long doubles */
746 if (size == LDOUBLE_SIZE) {
747 vtop->c.tab[2] &= 0xffff;
748 #if LDOUBLE_SIZE == 16
749 vtop->c.tab[3] = 0;
750 #endif
752 #endif
753 ptr = section_ptr_add(data_section, size);
754 size = size >> 2;
755 #if defined(TCC_TARGET_ARM) && !defined(TCC_ARM_VFP)
756 check.d = 1;
757 if(check.tab[0])
758 for(i=0;i<size;i++)
759 ptr[i] = vtop->c.tab[size-1-i];
760 else
761 #endif
762 for(i=0;i<size;i++)
763 ptr[i] = vtop->c.tab[i];
764 sym = get_sym_ref(&vtop->type, data_section, offset, size << 2);
765 vtop->r |= VT_LVAL | VT_SYM;
766 vtop->sym = sym;
767 vtop->c.ull = 0;
769 #ifdef CONFIG_TCC_BCHECK
770 if (vtop->r & VT_MUSTBOUND)
771 gbound();
772 #endif
774 r = vtop->r & VT_VALMASK;
775 rc2 = (rc & RC_FLOAT) ? RC_FLOAT : RC_INT;
776 if (rc == RC_IRET)
777 rc2 = RC_LRET;
778 #ifdef TCC_TARGET_X86_64
779 else if (rc == RC_FRET)
780 rc2 = RC_QRET;
781 #endif
783 /* need to reload if:
784 - constant
785 - lvalue (need to dereference pointer)
786 - already a register, but not in the right class */
787 if (r >= VT_CONST
788 || (vtop->r & VT_LVAL)
789 || !(reg_classes[r] & rc)
790 #ifdef TCC_TARGET_X86_64
791 || ((vtop->type.t & VT_BTYPE) == VT_QLONG && !(reg_classes[vtop->r2] & rc2))
792 || ((vtop->type.t & VT_BTYPE) == VT_QFLOAT && !(reg_classes[vtop->r2] & rc2))
793 #else
794 || ((vtop->type.t & VT_BTYPE) == VT_LLONG && !(reg_classes[vtop->r2] & rc2))
795 #endif
798 r = get_reg(rc);
799 #ifdef TCC_TARGET_X86_64
800 if (((vtop->type.t & VT_BTYPE) == VT_QLONG) || ((vtop->type.t & VT_BTYPE) == VT_QFLOAT)) {
801 int addr_type = VT_LLONG, load_size = 8, load_type = ((vtop->type.t & VT_BTYPE) == VT_QLONG) ? VT_LLONG : VT_DOUBLE;
802 #else
803 if ((vtop->type.t & VT_BTYPE) == VT_LLONG) {
804 int addr_type = VT_INT, load_size = 4, load_type = VT_INT;
805 unsigned long long ll;
806 #endif
807 int r2, original_type;
808 original_type = vtop->type.t;
809 /* two register type load : expand to two words
810 temporarily */
811 #ifndef TCC_TARGET_X86_64
812 if ((vtop->r & (VT_VALMASK | VT_LVAL)) == VT_CONST) {
813 /* load constant */
814 ll = vtop->c.ull;
815 vtop->c.ui = ll; /* first word */
816 load(r, vtop);
817 vtop->r = r; /* save register value */
818 vpushi(ll >> 32); /* second word */
819 } else
820 #endif
821 if (r >= VT_CONST || /* XXX: test to VT_CONST incorrect ? */
822 (vtop->r & VT_LVAL)) {
823 /* We do not want to modifier the long long
824 pointer here, so the safest (and less
825 efficient) is to save all the other registers
826 in the stack. XXX: totally inefficient. */
827 save_regs(1);
828 /* load from memory */
829 vtop->type.t = load_type;
830 load(r, vtop);
831 vdup();
832 vtop[-1].r = r; /* save register value */
833 /* increment pointer to get second word */
834 vtop->type.t = addr_type;
835 gaddrof();
836 vpushi(load_size);
837 gen_op('+');
838 vtop->r |= VT_LVAL;
839 vtop->type.t = load_type;
840 } else {
841 /* move registers */
842 load(r, vtop);
843 vdup();
844 vtop[-1].r = r; /* save register value */
845 vtop->r = vtop[-1].r2;
847 /* Allocate second register. Here we rely on the fact that
848 get_reg() tries first to free r2 of an SValue. */
849 r2 = get_reg(rc2);
850 load(r2, vtop);
851 vpop();
852 /* write second register */
853 vtop->r2 = r2;
854 vtop->type.t = original_type;
855 } else if ((vtop->r & VT_LVAL) && !is_float(vtop->type.t)) {
856 int t1, t;
857 /* lvalue of scalar type : need to use lvalue type
858 because of possible cast */
859 t = vtop->type.t;
860 t1 = t;
861 /* compute memory access type */
862 if (vtop->r & VT_REF)
863 #ifdef TCC_TARGET_X86_64
864 t = VT_PTR;
865 #else
866 t = VT_INT;
867 #endif
868 else if (vtop->r & VT_LVAL_BYTE)
869 t = VT_BYTE;
870 else if (vtop->r & VT_LVAL_SHORT)
871 t = VT_SHORT;
872 if (vtop->r & VT_LVAL_UNSIGNED)
873 t |= VT_UNSIGNED;
874 vtop->type.t = t;
875 load(r, vtop);
876 /* restore wanted type */
877 vtop->type.t = t1;
878 } else {
879 /* one register type load */
880 load(r, vtop);
883 vtop->r = r;
884 #ifdef TCC_TARGET_C67
885 /* uses register pairs for doubles */
886 if ((vtop->type.t & VT_BTYPE) == VT_DOUBLE)
887 vtop->r2 = r+1;
888 #endif
890 return r;
893 /* generate vtop[-1] and vtop[0] in resp. classes rc1 and rc2 */
894 ST_FUNC void gv2(int rc1, int rc2)
896 int v;
898 /* generate more generic register first. But VT_JMP or VT_CMP
899 values must be generated first in all cases to avoid possible
900 reload errors */
901 v = vtop[0].r & VT_VALMASK;
902 if (v != VT_CMP && (v & ~1) != VT_JMP && rc1 <= rc2) {
903 vswap();
904 gv(rc1);
905 vswap();
906 gv(rc2);
907 /* test if reload is needed for first register */
908 if ((vtop[-1].r & VT_VALMASK) >= VT_CONST) {
909 vswap();
910 gv(rc1);
911 vswap();
913 } else {
914 gv(rc2);
915 vswap();
916 gv(rc1);
917 vswap();
918 /* test if reload is needed for first register */
919 if ((vtop[0].r & VT_VALMASK) >= VT_CONST) {
920 gv(rc2);
925 /* wrapper around RC_FRET to return a register by type */
926 static int rc_fret(int t)
928 #ifdef TCC_TARGET_X86_64
929 if (t == VT_LDOUBLE) {
930 return RC_ST0;
932 #endif
933 return RC_FRET;
936 /* wrapper around REG_FRET to return a register by type */
937 static int reg_fret(int t)
939 #ifdef TCC_TARGET_X86_64
940 if (t == VT_LDOUBLE) {
941 return TREG_ST0;
943 #endif
944 return REG_FRET;
947 /* expand long long on stack in two int registers */
948 static void lexpand(void)
950 int u;
952 u = vtop->type.t & (VT_DEFSIGN | VT_UNSIGNED);
953 gv(RC_INT);
954 vdup();
955 vtop[0].r = vtop[-1].r2;
956 vtop[0].r2 = VT_CONST;
957 vtop[-1].r2 = VT_CONST;
958 vtop[0].type.t = VT_INT | u;
959 vtop[-1].type.t = VT_INT | u;
962 #ifdef TCC_TARGET_ARM
963 /* expand long long on stack */
964 ST_FUNC void lexpand_nr(void)
966 int u,v;
968 u = vtop->type.t & (VT_DEFSIGN | VT_UNSIGNED);
969 vdup();
970 vtop->r2 = VT_CONST;
971 vtop->type.t = VT_INT | u;
972 v=vtop[-1].r & (VT_VALMASK | VT_LVAL);
973 if (v == VT_CONST) {
974 vtop[-1].c.ui = vtop->c.ull;
975 vtop->c.ui = vtop->c.ull >> 32;
976 vtop->r = VT_CONST;
977 } else if (v == (VT_LVAL|VT_CONST) || v == (VT_LVAL|VT_LOCAL)) {
978 vtop->c.ui += 4;
979 vtop->r = vtop[-1].r;
980 } else if (v > VT_CONST) {
981 vtop--;
982 lexpand();
983 } else
984 vtop->r = vtop[-1].r2;
985 vtop[-1].r2 = VT_CONST;
986 vtop[-1].type.t = VT_INT | u;
988 #endif
990 /* build a long long from two ints */
991 static void lbuild(int t)
993 gv2(RC_INT, RC_INT);
994 vtop[-1].r2 = vtop[0].r;
995 vtop[-1].type.t = t;
996 vpop();
999 /* rotate n first stack elements to the bottom
1000 I1 ... In -> I2 ... In I1 [top is right]
1002 ST_FUNC void vrotb(int n)
1004 int i;
1005 SValue tmp;
1007 tmp = vtop[-n + 1];
1008 for(i=-n+1;i!=0;i++)
1009 vtop[i] = vtop[i+1];
1010 vtop[0] = tmp;
1013 /* rotate the n elements before entry e towards the top
1014 I1 ... In ... -> In I1 ... I(n-1) ... [top is right]
1016 ST_FUNC void vrote(SValue *e, int n)
1018 int i;
1019 SValue tmp;
1021 tmp = *e;
1022 for(i = 0;i < n - 1; i++)
1023 e[-i] = e[-i - 1];
1024 e[-n + 1] = tmp;
1027 /* rotate n first stack elements to the top
1028 I1 ... In -> In I1 ... I(n-1) [top is right]
1030 ST_FUNC void vrott(int n)
1032 vrote(vtop, n);
1035 /* pop stack value */
1036 ST_FUNC void vpop(void)
1038 int v;
1039 v = vtop->r & VT_VALMASK;
1040 #if defined(TCC_TARGET_I386) || defined(TCC_TARGET_X86_64)
1041 /* for x86, we need to pop the FP stack */
1042 if (v == TREG_ST0 && !nocode_wanted) {
1043 o(0xd8dd); /* fstp %st(0) */
1044 } else
1045 #endif
1046 if (v == VT_JMP || v == VT_JMPI) {
1047 /* need to put correct jump if && or || without test */
1048 gsym(vtop->c.ul);
1050 vtop--;
1053 /* convert stack entry to register and duplicate its value in another
1054 register */
1055 static void gv_dup(void)
1057 int rc, t, r, r1;
1058 SValue sv;
1060 t = vtop->type.t;
1061 if ((t & VT_BTYPE) == VT_LLONG) {
1062 lexpand();
1063 gv_dup();
1064 vswap();
1065 vrotb(3);
1066 gv_dup();
1067 vrotb(4);
1068 /* stack: H L L1 H1 */
1069 lbuild(t);
1070 vrotb(3);
1071 vrotb(3);
1072 vswap();
1073 lbuild(t);
1074 vswap();
1075 } else {
1076 /* duplicate value */
1077 rc = RC_INT;
1078 sv.type.t = VT_INT;
1079 if (is_float(t)) {
1080 rc = RC_FLOAT;
1081 #ifdef TCC_TARGET_X86_64
1082 if ((t & VT_BTYPE) == VT_LDOUBLE) {
1083 rc = RC_ST0;
1085 #endif
1086 sv.type.t = t;
1088 r = gv(rc);
1089 r1 = get_reg(rc);
1090 sv.r = r;
1091 sv.c.ul = 0;
1092 load(r1, &sv); /* move r to r1 */
1093 vdup();
1094 /* duplicates value */
1095 if (r != r1)
1096 vtop->r = r1;
1100 /* Generate value test
1102 * Generate a test for any value (jump, comparison and integers) */
1103 int gvtst(int inv, int t)
1105 int v = vtop->r & VT_VALMASK;
1106 if (v != VT_CMP && v != VT_JMP && v != VT_JMPI) {
1107 vpushi(0);
1108 gen_op(TOK_NE);
1110 if ((vtop->r & (VT_VALMASK | VT_LVAL | VT_SYM)) == VT_CONST) {
1111 /* constant jmp optimization */
1112 if ((vtop->c.i != 0) != inv)
1113 t = gjmp(t);
1114 vtop--;
1115 return t;
1117 return gtst(inv, t);
1120 #ifndef TCC_TARGET_X86_64
1121 /* generate CPU independent (unsigned) long long operations */
1122 static void gen_opl(int op)
1124 int t, a, b, op1, c, i;
1125 int func;
1126 unsigned short reg_iret = REG_IRET;
1127 unsigned short reg_lret = REG_LRET;
1128 SValue tmp;
1130 switch(op) {
1131 case '/':
1132 case TOK_PDIV:
1133 func = TOK___divdi3;
1134 goto gen_func;
1135 case TOK_UDIV:
1136 func = TOK___udivdi3;
1137 goto gen_func;
1138 case '%':
1139 func = TOK___moddi3;
1140 goto gen_mod_func;
1141 case TOK_UMOD:
1142 func = TOK___umoddi3;
1143 gen_mod_func:
1144 #ifdef TCC_ARM_EABI
1145 reg_iret = TREG_R2;
1146 reg_lret = TREG_R3;
1147 #endif
1148 gen_func:
1149 /* call generic long long function */
1150 vpush_global_sym(&func_old_type, func);
1151 vrott(3);
1152 gfunc_call(2);
1153 vpushi(0);
1154 vtop->r = reg_iret;
1155 vtop->r2 = reg_lret;
1156 break;
1157 case '^':
1158 case '&':
1159 case '|':
1160 case '*':
1161 case '+':
1162 case '-':
1163 t = vtop->type.t;
1164 vswap();
1165 lexpand();
1166 vrotb(3);
1167 lexpand();
1168 /* stack: L1 H1 L2 H2 */
1169 tmp = vtop[0];
1170 vtop[0] = vtop[-3];
1171 vtop[-3] = tmp;
1172 tmp = vtop[-2];
1173 vtop[-2] = vtop[-3];
1174 vtop[-3] = tmp;
1175 vswap();
1176 /* stack: H1 H2 L1 L2 */
1177 if (op == '*') {
1178 vpushv(vtop - 1);
1179 vpushv(vtop - 1);
1180 gen_op(TOK_UMULL);
1181 lexpand();
1182 /* stack: H1 H2 L1 L2 ML MH */
1183 for(i=0;i<4;i++)
1184 vrotb(6);
1185 /* stack: ML MH H1 H2 L1 L2 */
1186 tmp = vtop[0];
1187 vtop[0] = vtop[-2];
1188 vtop[-2] = tmp;
1189 /* stack: ML MH H1 L2 H2 L1 */
1190 gen_op('*');
1191 vrotb(3);
1192 vrotb(3);
1193 gen_op('*');
1194 /* stack: ML MH M1 M2 */
1195 gen_op('+');
1196 gen_op('+');
1197 } else if (op == '+' || op == '-') {
1198 /* XXX: add non carry method too (for MIPS or alpha) */
1199 if (op == '+')
1200 op1 = TOK_ADDC1;
1201 else
1202 op1 = TOK_SUBC1;
1203 gen_op(op1);
1204 /* stack: H1 H2 (L1 op L2) */
1205 vrotb(3);
1206 vrotb(3);
1207 gen_op(op1 + 1); /* TOK_xxxC2 */
1208 } else {
1209 gen_op(op);
1210 /* stack: H1 H2 (L1 op L2) */
1211 vrotb(3);
1212 vrotb(3);
1213 /* stack: (L1 op L2) H1 H2 */
1214 gen_op(op);
1215 /* stack: (L1 op L2) (H1 op H2) */
1217 /* stack: L H */
1218 lbuild(t);
1219 break;
1220 case TOK_SAR:
1221 case TOK_SHR:
1222 case TOK_SHL:
1223 if ((vtop->r & (VT_VALMASK | VT_LVAL | VT_SYM)) == VT_CONST) {
1224 t = vtop[-1].type.t;
1225 vswap();
1226 lexpand();
1227 vrotb(3);
1228 /* stack: L H shift */
1229 c = (int)vtop->c.i;
1230 /* constant: simpler */
1231 /* NOTE: all comments are for SHL. the other cases are
1232 done by swaping words */
1233 vpop();
1234 if (op != TOK_SHL)
1235 vswap();
1236 if (c >= 32) {
1237 /* stack: L H */
1238 vpop();
1239 if (c > 32) {
1240 vpushi(c - 32);
1241 gen_op(op);
1243 if (op != TOK_SAR) {
1244 vpushi(0);
1245 } else {
1246 gv_dup();
1247 vpushi(31);
1248 gen_op(TOK_SAR);
1250 vswap();
1251 } else {
1252 vswap();
1253 gv_dup();
1254 /* stack: H L L */
1255 vpushi(c);
1256 gen_op(op);
1257 vswap();
1258 vpushi(32 - c);
1259 if (op == TOK_SHL)
1260 gen_op(TOK_SHR);
1261 else
1262 gen_op(TOK_SHL);
1263 vrotb(3);
1264 /* stack: L L H */
1265 vpushi(c);
1266 if (op == TOK_SHL)
1267 gen_op(TOK_SHL);
1268 else
1269 gen_op(TOK_SHR);
1270 gen_op('|');
1272 if (op != TOK_SHL)
1273 vswap();
1274 lbuild(t);
1275 } else {
1276 /* XXX: should provide a faster fallback on x86 ? */
1277 switch(op) {
1278 case TOK_SAR:
1279 func = TOK___ashrdi3;
1280 goto gen_func;
1281 case TOK_SHR:
1282 func = TOK___lshrdi3;
1283 goto gen_func;
1284 case TOK_SHL:
1285 func = TOK___ashldi3;
1286 goto gen_func;
1289 break;
1290 default:
1291 /* compare operations */
1292 t = vtop->type.t;
1293 vswap();
1294 lexpand();
1295 vrotb(3);
1296 lexpand();
1297 /* stack: L1 H1 L2 H2 */
1298 tmp = vtop[-1];
1299 vtop[-1] = vtop[-2];
1300 vtop[-2] = tmp;
1301 /* stack: L1 L2 H1 H2 */
1302 /* compare high */
1303 op1 = op;
1304 /* when values are equal, we need to compare low words. since
1305 the jump is inverted, we invert the test too. */
1306 if (op1 == TOK_LT)
1307 op1 = TOK_LE;
1308 else if (op1 == TOK_GT)
1309 op1 = TOK_GE;
1310 else if (op1 == TOK_ULT)
1311 op1 = TOK_ULE;
1312 else if (op1 == TOK_UGT)
1313 op1 = TOK_UGE;
1314 a = 0;
1315 b = 0;
1316 gen_op(op1);
1317 if (op1 != TOK_NE) {
1318 a = gvtst(1, 0);
1320 if (op != TOK_EQ) {
1321 /* generate non equal test */
1322 /* XXX: NOT PORTABLE yet */
1323 if (a == 0) {
1324 b = gvtst(0, 0);
1325 } else {
1326 #if defined(TCC_TARGET_I386)
1327 b = psym(0x850f, 0);
1328 #elif defined(TCC_TARGET_ARM)
1329 b = ind;
1330 o(0x1A000000 | encbranch(ind, 0, 1));
1331 #elif defined(TCC_TARGET_C67)
1332 tcc_error("not implemented");
1333 #else
1334 #error not supported
1335 #endif
1338 /* compare low. Always unsigned */
1339 op1 = op;
1340 if (op1 == TOK_LT)
1341 op1 = TOK_ULT;
1342 else if (op1 == TOK_LE)
1343 op1 = TOK_ULE;
1344 else if (op1 == TOK_GT)
1345 op1 = TOK_UGT;
1346 else if (op1 == TOK_GE)
1347 op1 = TOK_UGE;
1348 gen_op(op1);
1349 a = gvtst(1, a);
1350 gsym(b);
1351 vseti(VT_JMPI, a);
1352 break;
1355 #endif
1357 /* handle integer constant optimizations and various machine
1358 independent opt */
1359 static void gen_opic(int op)
1361 int c1, c2, t1, t2, n;
1362 SValue *v1, *v2;
1363 long long l1, l2;
1364 typedef unsigned long long U;
1366 v1 = vtop - 1;
1367 v2 = vtop;
1368 t1 = v1->type.t & VT_BTYPE;
1369 t2 = v2->type.t & VT_BTYPE;
1371 if (t1 == VT_LLONG)
1372 l1 = v1->c.ll;
1373 else if (v1->type.t & VT_UNSIGNED)
1374 l1 = v1->c.ui;
1375 else
1376 l1 = v1->c.i;
1378 if (t2 == VT_LLONG)
1379 l2 = v2->c.ll;
1380 else if (v2->type.t & VT_UNSIGNED)
1381 l2 = v2->c.ui;
1382 else
1383 l2 = v2->c.i;
1385 /* currently, we cannot do computations with forward symbols */
1386 c1 = (v1->r & (VT_VALMASK | VT_LVAL | VT_SYM)) == VT_CONST;
1387 c2 = (v2->r & (VT_VALMASK | VT_LVAL | VT_SYM)) == VT_CONST;
1388 if (c1 && c2) {
1389 switch(op) {
1390 case '+': l1 += l2; break;
1391 case '-': l1 -= l2; break;
1392 case '&': l1 &= l2; break;
1393 case '^': l1 ^= l2; break;
1394 case '|': l1 |= l2; break;
1395 case '*': l1 *= l2; break;
1397 case TOK_PDIV:
1398 case '/':
1399 case '%':
1400 case TOK_UDIV:
1401 case TOK_UMOD:
1402 /* if division by zero, generate explicit division */
1403 if (l2 == 0) {
1404 if (const_wanted)
1405 tcc_error("division by zero in constant");
1406 goto general_case;
1408 switch(op) {
1409 default: l1 /= l2; break;
1410 case '%': l1 %= l2; break;
1411 case TOK_UDIV: l1 = (U)l1 / l2; break;
1412 case TOK_UMOD: l1 = (U)l1 % l2; break;
1414 break;
1415 case TOK_SHL: l1 <<= l2; break;
1416 case TOK_SHR: l1 = (U)l1 >> l2; break;
1417 case TOK_SAR: l1 >>= l2; break;
1418 /* tests */
1419 case TOK_ULT: l1 = (U)l1 < (U)l2; break;
1420 case TOK_UGE: l1 = (U)l1 >= (U)l2; break;
1421 case TOK_EQ: l1 = l1 == l2; break;
1422 case TOK_NE: l1 = l1 != l2; break;
1423 case TOK_ULE: l1 = (U)l1 <= (U)l2; break;
1424 case TOK_UGT: l1 = (U)l1 > (U)l2; break;
1425 case TOK_LT: l1 = l1 < l2; break;
1426 case TOK_GE: l1 = l1 >= l2; break;
1427 case TOK_LE: l1 = l1 <= l2; break;
1428 case TOK_GT: l1 = l1 > l2; break;
1429 /* logical */
1430 case TOK_LAND: l1 = l1 && l2; break;
1431 case TOK_LOR: l1 = l1 || l2; break;
1432 default:
1433 goto general_case;
1435 v1->c.ll = l1;
1436 vtop--;
1437 } else {
1438 /* if commutative ops, put c2 as constant */
1439 if (c1 && (op == '+' || op == '&' || op == '^' ||
1440 op == '|' || op == '*')) {
1441 vswap();
1442 c2 = c1; //c = c1, c1 = c2, c2 = c;
1443 l2 = l1; //l = l1, l1 = l2, l2 = l;
1445 /* Filter out NOP operations like x*1, x-0, x&-1... */
1446 if (c2 && (((op == '*' || op == '/' || op == TOK_UDIV ||
1447 op == TOK_PDIV) &&
1448 l2 == 1) ||
1449 ((op == '+' || op == '-' || op == '|' || op == '^' ||
1450 op == TOK_SHL || op == TOK_SHR || op == TOK_SAR) &&
1451 l2 == 0) ||
1452 (op == '&' &&
1453 l2 == -1))) {
1454 /* nothing to do */
1455 vtop--;
1456 } else if (c2 && (op == '*' || op == TOK_PDIV || op == TOK_UDIV)) {
1457 /* try to use shifts instead of muls or divs */
1458 if (l2 > 0 && (l2 & (l2 - 1)) == 0) {
1459 n = -1;
1460 while (l2) {
1461 l2 >>= 1;
1462 n++;
1464 vtop->c.ll = n;
1465 if (op == '*')
1466 op = TOK_SHL;
1467 else if (op == TOK_PDIV)
1468 op = TOK_SAR;
1469 else
1470 op = TOK_SHR;
1472 goto general_case;
1473 } else if (c2 && (op == '+' || op == '-') &&
1474 (((vtop[-1].r & (VT_VALMASK | VT_LVAL | VT_SYM)) == (VT_CONST | VT_SYM))
1475 || (vtop[-1].r & (VT_VALMASK | VT_LVAL)) == VT_LOCAL)) {
1476 /* symbol + constant case */
1477 if (op == '-')
1478 l2 = -l2;
1479 vtop--;
1480 vtop->c.ll += l2;
1481 } else {
1482 general_case:
1483 if (!nocode_wanted) {
1484 /* call low level op generator */
1485 if (t1 == VT_LLONG || t2 == VT_LLONG)
1486 gen_opl(op);
1487 else
1488 gen_opi(op);
1489 } else {
1490 vtop--;
1496 /* generate a floating point operation with constant propagation */
1497 static void gen_opif(int op)
1499 int c1, c2;
1500 SValue *v1, *v2;
1501 long double f1, f2;
1503 v1 = vtop - 1;
1504 v2 = vtop;
1505 /* currently, we cannot do computations with forward symbols */
1506 c1 = (v1->r & (VT_VALMASK | VT_LVAL | VT_SYM)) == VT_CONST;
1507 c2 = (v2->r & (VT_VALMASK | VT_LVAL | VT_SYM)) == VT_CONST;
1508 if (c1 && c2) {
1509 if (v1->type.t == VT_FLOAT) {
1510 f1 = v1->c.f;
1511 f2 = v2->c.f;
1512 } else if (v1->type.t == VT_DOUBLE) {
1513 f1 = v1->c.d;
1514 f2 = v2->c.d;
1515 } else {
1516 f1 = v1->c.ld;
1517 f2 = v2->c.ld;
1520 /* NOTE: we only do constant propagation if finite number (not
1521 NaN or infinity) (ANSI spec) */
1522 if (!ieee_finite(f1) || !ieee_finite(f2))
1523 goto general_case;
1525 switch(op) {
1526 case '+': f1 += f2; break;
1527 case '-': f1 -= f2; break;
1528 case '*': f1 *= f2; break;
1529 case '/':
1530 if (f2 == 0.0) {
1531 if (const_wanted)
1532 tcc_error("division by zero in constant");
1533 goto general_case;
1535 f1 /= f2;
1536 break;
1537 /* XXX: also handles tests ? */
1538 default:
1539 goto general_case;
1541 /* XXX: overflow test ? */
1542 if (v1->type.t == VT_FLOAT) {
1543 v1->c.f = f1;
1544 } else if (v1->type.t == VT_DOUBLE) {
1545 v1->c.d = f1;
1546 } else {
1547 v1->c.ld = f1;
1549 vtop--;
1550 } else {
1551 general_case:
1552 if (!nocode_wanted) {
1553 gen_opf(op);
1554 } else {
1555 vtop--;
1560 static int pointed_size(CType *type)
1562 int align;
1563 return type_size(pointed_type(type), &align);
1566 static void vla_runtime_pointed_size(CType *type)
1568 int align;
1569 vla_runtime_type_size(pointed_type(type), &align);
1572 static inline int is_null_pointer(SValue *p)
1574 if ((p->r & (VT_VALMASK | VT_LVAL | VT_SYM)) != VT_CONST)
1575 return 0;
1576 return ((p->type.t & VT_BTYPE) == VT_INT && p->c.i == 0) ||
1577 ((p->type.t & VT_BTYPE) == VT_LLONG && p->c.ll == 0) ||
1578 ((p->type.t & VT_BTYPE) == VT_PTR && p->c.ptr == 0);
1581 static inline int is_integer_btype(int bt)
1583 return (bt == VT_BYTE || bt == VT_SHORT ||
1584 bt == VT_INT || bt == VT_LLONG);
1587 /* check types for comparison or substraction of pointers */
1588 static void check_comparison_pointer_types(SValue *p1, SValue *p2, int op)
1590 CType *type1, *type2, tmp_type1, tmp_type2;
1591 int bt1, bt2;
1593 /* null pointers are accepted for all comparisons as gcc */
1594 if (is_null_pointer(p1) || is_null_pointer(p2))
1595 return;
1596 type1 = &p1->type;
1597 type2 = &p2->type;
1598 bt1 = type1->t & VT_BTYPE;
1599 bt2 = type2->t & VT_BTYPE;
1600 /* accept comparison between pointer and integer with a warning */
1601 if ((is_integer_btype(bt1) || is_integer_btype(bt2)) && op != '-') {
1602 if (op != TOK_LOR && op != TOK_LAND )
1603 tcc_warning("comparison between pointer and integer");
1604 return;
1607 /* both must be pointers or implicit function pointers */
1608 if (bt1 == VT_PTR) {
1609 type1 = pointed_type(type1);
1610 } else if (bt1 != VT_FUNC)
1611 goto invalid_operands;
1613 if (bt2 == VT_PTR) {
1614 type2 = pointed_type(type2);
1615 } else if (bt2 != VT_FUNC) {
1616 invalid_operands:
1617 tcc_error("invalid operands to binary %s", get_tok_str(op, NULL));
1619 if ((type1->t & VT_BTYPE) == VT_VOID ||
1620 (type2->t & VT_BTYPE) == VT_VOID)
1621 return;
1622 tmp_type1 = *type1;
1623 tmp_type2 = *type2;
1624 tmp_type1.t &= ~(VT_DEFSIGN | VT_UNSIGNED | VT_CONSTANT | VT_VOLATILE);
1625 tmp_type2.t &= ~(VT_DEFSIGN | VT_UNSIGNED | VT_CONSTANT | VT_VOLATILE);
1626 if (!is_compatible_types(&tmp_type1, &tmp_type2)) {
1627 /* gcc-like error if '-' is used */
1628 if (op == '-')
1629 goto invalid_operands;
1630 else
1631 tcc_warning("comparison of distinct pointer types lacks a cast");
1635 /* generic gen_op: handles types problems */
1636 ST_FUNC void gen_op(int op)
1638 int u, t1, t2, bt1, bt2, t;
1639 CType type1;
1641 t1 = vtop[-1].type.t;
1642 t2 = vtop[0].type.t;
1643 bt1 = t1 & VT_BTYPE;
1644 bt2 = t2 & VT_BTYPE;
1646 if (bt1 == VT_PTR || bt2 == VT_PTR) {
1647 /* at least one operand is a pointer */
1648 /* relationnal op: must be both pointers */
1649 if (op >= TOK_ULT && op <= TOK_LOR) {
1650 check_comparison_pointer_types(vtop - 1, vtop, op);
1651 /* pointers are handled are unsigned */
1652 #ifdef TCC_TARGET_X86_64
1653 t = VT_LLONG | VT_UNSIGNED;
1654 #else
1655 t = VT_INT | VT_UNSIGNED;
1656 #endif
1657 goto std_op;
1659 /* if both pointers, then it must be the '-' op */
1660 if (bt1 == VT_PTR && bt2 == VT_PTR) {
1661 if (op != '-')
1662 tcc_error("cannot use pointers here");
1663 check_comparison_pointer_types(vtop - 1, vtop, op);
1664 /* XXX: check that types are compatible */
1665 if (vtop[-1].type.t & VT_VLA) {
1666 vla_runtime_pointed_size(&vtop[-1].type);
1667 } else {
1668 vpushi(pointed_size(&vtop[-1].type));
1670 vrott(3);
1671 gen_opic(op);
1672 /* set to integer type */
1673 #ifdef TCC_TARGET_X86_64
1674 vtop->type.t = VT_LLONG;
1675 #else
1676 vtop->type.t = VT_INT;
1677 #endif
1678 vswap();
1679 gen_op(TOK_PDIV);
1680 } else {
1681 /* exactly one pointer : must be '+' or '-'. */
1682 if (op != '-' && op != '+')
1683 tcc_error("cannot use pointers here");
1684 /* Put pointer as first operand */
1685 if (bt2 == VT_PTR) {
1686 vswap();
1687 swap(&t1, &t2);
1689 type1 = vtop[-1].type;
1690 type1.t &= ~VT_ARRAY;
1691 if (vtop[-1].type.t & VT_VLA)
1692 vla_runtime_pointed_size(&vtop[-1].type);
1693 else {
1694 u = pointed_size(&vtop[-1].type);
1695 if (u < 0)
1696 tcc_error("unknown array element size");
1697 #ifdef TCC_TARGET_X86_64
1698 vpushll(u);
1699 #else
1700 /* XXX: cast to int ? (long long case) */
1701 vpushi(u);
1702 #endif
1704 gen_op('*');
1705 #ifdef CONFIG_TCC_BCHECK
1706 /* if evaluating constant expression, no code should be
1707 generated, so no bound check */
1708 if (tcc_state->do_bounds_check && !const_wanted) {
1709 /* if bounded pointers, we generate a special code to
1710 test bounds */
1711 if (op == '-') {
1712 vpushi(0);
1713 vswap();
1714 gen_op('-');
1716 gen_bounded_ptr_add();
1717 } else
1718 #endif
1720 gen_opic(op);
1722 /* put again type if gen_opic() swaped operands */
1723 vtop->type = type1;
1725 } else if (is_float(bt1) || is_float(bt2)) {
1726 /* compute bigger type and do implicit casts */
1727 if (bt1 == VT_LDOUBLE || bt2 == VT_LDOUBLE) {
1728 t = VT_LDOUBLE;
1729 } else if (bt1 == VT_DOUBLE || bt2 == VT_DOUBLE) {
1730 t = VT_DOUBLE;
1731 } else {
1732 t = VT_FLOAT;
1734 /* floats can only be used for a few operations */
1735 if (op != '+' && op != '-' && op != '*' && op != '/' &&
1736 (op < TOK_ULT || op > TOK_GT))
1737 tcc_error("invalid operands for binary operation");
1738 goto std_op;
1739 } else if (op == TOK_SHR || op == TOK_SAR || op == TOK_SHL) {
1740 t = bt1 == VT_LLONG ? VT_LLONG : VT_INT;
1741 if ((t1 & (VT_BTYPE | VT_UNSIGNED)) == (t | VT_UNSIGNED))
1742 t |= VT_UNSIGNED;
1743 goto std_op;
1744 } else if (bt1 == VT_LLONG || bt2 == VT_LLONG) {
1745 /* cast to biggest op */
1746 t = VT_LLONG;
1747 /* convert to unsigned if it does not fit in a long long */
1748 if ((t1 & (VT_BTYPE | VT_UNSIGNED)) == (VT_LLONG | VT_UNSIGNED) ||
1749 (t2 & (VT_BTYPE | VT_UNSIGNED)) == (VT_LLONG | VT_UNSIGNED))
1750 t |= VT_UNSIGNED;
1751 goto std_op;
1752 } else if (bt1 == VT_STRUCT || bt2 == VT_STRUCT) {
1753 tcc_error("comparison of struct");
1754 } else {
1755 /* integer operations */
1756 t = VT_INT;
1757 /* convert to unsigned if it does not fit in an integer */
1758 if ((t1 & (VT_BTYPE | VT_UNSIGNED)) == (VT_INT | VT_UNSIGNED) ||
1759 (t2 & (VT_BTYPE | VT_UNSIGNED)) == (VT_INT | VT_UNSIGNED))
1760 t |= VT_UNSIGNED;
1761 std_op:
1762 /* XXX: currently, some unsigned operations are explicit, so
1763 we modify them here */
1764 if (t & VT_UNSIGNED) {
1765 if (op == TOK_SAR)
1766 op = TOK_SHR;
1767 else if (op == '/')
1768 op = TOK_UDIV;
1769 else if (op == '%')
1770 op = TOK_UMOD;
1771 else if (op == TOK_LT)
1772 op = TOK_ULT;
1773 else if (op == TOK_GT)
1774 op = TOK_UGT;
1775 else if (op == TOK_LE)
1776 op = TOK_ULE;
1777 else if (op == TOK_GE)
1778 op = TOK_UGE;
1780 vswap();
1781 type1.t = t;
1782 gen_cast(&type1);
1783 vswap();
1784 /* special case for shifts and long long: we keep the shift as
1785 an integer */
1786 if (op == TOK_SHR || op == TOK_SAR || op == TOK_SHL)
1787 type1.t = VT_INT;
1788 gen_cast(&type1);
1789 if (is_float(t))
1790 gen_opif(op);
1791 else
1792 gen_opic(op);
1793 if (op >= TOK_ULT && op <= TOK_GT) {
1794 /* relationnal op: the result is an int */
1795 vtop->type.t = VT_INT;
1796 } else {
1797 vtop->type.t = t;
1802 #ifndef TCC_TARGET_ARM
1803 /* generic itof for unsigned long long case */
1804 static void gen_cvt_itof1(int t)
1806 if ((vtop->type.t & (VT_BTYPE | VT_UNSIGNED)) ==
1807 (VT_LLONG | VT_UNSIGNED)) {
1809 if (t == VT_FLOAT)
1810 vpush_global_sym(&func_old_type, TOK___floatundisf);
1811 #if LDOUBLE_SIZE != 8
1812 else if (t == VT_LDOUBLE)
1813 vpush_global_sym(&func_old_type, TOK___floatundixf);
1814 #endif
1815 else
1816 vpush_global_sym(&func_old_type, TOK___floatundidf);
1817 vrott(2);
1818 gfunc_call(1);
1819 vpushi(0);
1820 vtop->r = reg_fret(t);
1821 } else {
1822 gen_cvt_itof(t);
1825 #endif
1827 /* generic ftoi for unsigned long long case */
1828 static void gen_cvt_ftoi1(int t)
1830 int st;
1832 if (t == (VT_LLONG | VT_UNSIGNED)) {
1833 /* not handled natively */
1834 st = vtop->type.t & VT_BTYPE;
1835 if (st == VT_FLOAT)
1836 vpush_global_sym(&func_old_type, TOK___fixunssfdi);
1837 #if LDOUBLE_SIZE != 8
1838 else if (st == VT_LDOUBLE)
1839 vpush_global_sym(&func_old_type, TOK___fixunsxfdi);
1840 #endif
1841 else
1842 vpush_global_sym(&func_old_type, TOK___fixunsdfdi);
1843 vrott(2);
1844 gfunc_call(1);
1845 vpushi(0);
1846 vtop->r = REG_IRET;
1847 vtop->r2 = REG_LRET;
1848 } else {
1849 gen_cvt_ftoi(t);
1853 /* force char or short cast */
1854 static void force_charshort_cast(int t)
1856 int bits, dbt;
1857 dbt = t & VT_BTYPE;
1858 /* XXX: add optimization if lvalue : just change type and offset */
1859 if (dbt == VT_BYTE)
1860 bits = 8;
1861 else
1862 bits = 16;
1863 if (t & VT_UNSIGNED) {
1864 vpushi((1 << bits) - 1);
1865 gen_op('&');
1866 } else {
1867 bits = 32 - bits;
1868 vpushi(bits);
1869 gen_op(TOK_SHL);
1870 /* result must be signed or the SAR is converted to an SHL
1871 This was not the case when "t" was a signed short
1872 and the last value on the stack was an unsigned int */
1873 vtop->type.t &= ~VT_UNSIGNED;
1874 vpushi(bits);
1875 gen_op(TOK_SAR);
1879 /* cast 'vtop' to 'type'. Casting to bitfields is forbidden. */
1880 static void gen_cast(CType *type)
1882 int sbt, dbt, sf, df, c, p;
1884 /* special delayed cast for char/short */
1885 /* XXX: in some cases (multiple cascaded casts), it may still
1886 be incorrect */
1887 if (vtop->r & VT_MUSTCAST) {
1888 vtop->r &= ~VT_MUSTCAST;
1889 force_charshort_cast(vtop->type.t);
1892 /* bitfields first get cast to ints */
1893 if (vtop->type.t & VT_BITFIELD) {
1894 gv(RC_INT);
1897 dbt = type->t & (VT_BTYPE | VT_UNSIGNED);
1898 sbt = vtop->type.t & (VT_BTYPE | VT_UNSIGNED);
1900 if (sbt != dbt) {
1901 sf = is_float(sbt);
1902 df = is_float(dbt);
1903 c = (vtop->r & (VT_VALMASK | VT_LVAL | VT_SYM)) == VT_CONST;
1904 p = (vtop->r & (VT_VALMASK | VT_LVAL | VT_SYM)) == (VT_CONST | VT_SYM);
1905 if (c) {
1906 /* constant case: we can do it now */
1907 /* XXX: in ISOC, cannot do it if error in convert */
1908 if (sbt == VT_FLOAT)
1909 vtop->c.ld = vtop->c.f;
1910 else if (sbt == VT_DOUBLE)
1911 vtop->c.ld = vtop->c.d;
1913 if (df) {
1914 if ((sbt & VT_BTYPE) == VT_LLONG) {
1915 if (sbt & VT_UNSIGNED)
1916 vtop->c.ld = vtop->c.ull;
1917 else
1918 vtop->c.ld = vtop->c.ll;
1919 } else if(!sf) {
1920 if (sbt & VT_UNSIGNED)
1921 vtop->c.ld = vtop->c.ui;
1922 else
1923 vtop->c.ld = vtop->c.i;
1926 if (dbt == VT_FLOAT)
1927 vtop->c.f = (float)vtop->c.ld;
1928 else if (dbt == VT_DOUBLE)
1929 vtop->c.d = (double)vtop->c.ld;
1930 } else if (sf && dbt == (VT_LLONG|VT_UNSIGNED)) {
1931 vtop->c.ull = (unsigned long long)vtop->c.ld;
1932 } else if (sf && dbt == VT_BOOL) {
1933 vtop->c.i = (vtop->c.ld != 0);
1934 } else {
1935 if(sf)
1936 vtop->c.ll = (long long)vtop->c.ld;
1937 else if (sbt == (VT_LLONG|VT_UNSIGNED))
1938 vtop->c.ll = vtop->c.ull;
1939 else if (sbt & VT_UNSIGNED)
1940 vtop->c.ll = vtop->c.ui;
1941 #ifdef TCC_TARGET_X86_64
1942 else if (sbt == VT_PTR)
1944 #endif
1945 else if (sbt != VT_LLONG)
1946 vtop->c.ll = vtop->c.i;
1948 if (dbt == (VT_LLONG|VT_UNSIGNED))
1949 vtop->c.ull = vtop->c.ll;
1950 else if (dbt == VT_BOOL)
1951 vtop->c.i = (vtop->c.ll != 0);
1952 #ifdef TCC_TARGET_X86_64
1953 else if (dbt == VT_PTR)
1955 #endif
1956 else if (dbt != VT_LLONG) {
1957 int s = 0;
1958 if ((dbt & VT_BTYPE) == VT_BYTE)
1959 s = 24;
1960 else if ((dbt & VT_BTYPE) == VT_SHORT)
1961 s = 16;
1962 if(dbt & VT_UNSIGNED)
1963 vtop->c.ui = ((unsigned int)vtop->c.ll << s) >> s;
1964 else
1965 vtop->c.i = ((int)vtop->c.ll << s) >> s;
1968 } else if (p && dbt == VT_BOOL) {
1969 vtop->r = VT_CONST;
1970 vtop->c.i = 1;
1971 } else if (!nocode_wanted) {
1972 /* non constant case: generate code */
1973 if (sf && df) {
1974 /* convert from fp to fp */
1975 gen_cvt_ftof(dbt);
1976 } else if (df) {
1977 /* convert int to fp */
1978 gen_cvt_itof1(dbt);
1979 } else if (sf) {
1980 /* convert fp to int */
1981 if (dbt == VT_BOOL) {
1982 vpushi(0);
1983 gen_op(TOK_NE);
1984 } else {
1985 /* we handle char/short/etc... with generic code */
1986 if (dbt != (VT_INT | VT_UNSIGNED) &&
1987 dbt != (VT_LLONG | VT_UNSIGNED) &&
1988 dbt != VT_LLONG)
1989 dbt = VT_INT;
1990 gen_cvt_ftoi1(dbt);
1991 if (dbt == VT_INT && (type->t & (VT_BTYPE | VT_UNSIGNED)) != dbt) {
1992 /* additional cast for char/short... */
1993 vtop->type.t = dbt;
1994 gen_cast(type);
1997 #ifndef TCC_TARGET_X86_64
1998 } else if ((dbt & VT_BTYPE) == VT_LLONG) {
1999 if ((sbt & VT_BTYPE) != VT_LLONG) {
2000 /* scalar to long long */
2001 /* machine independent conversion */
2002 gv(RC_INT);
2003 /* generate high word */
2004 if (sbt == (VT_INT | VT_UNSIGNED)) {
2005 vpushi(0);
2006 gv(RC_INT);
2007 } else {
2008 if (sbt == VT_PTR) {
2009 /* cast from pointer to int before we apply
2010 shift operation, which pointers don't support*/
2011 gen_cast(&int_type);
2013 gv_dup();
2014 vpushi(31);
2015 gen_op(TOK_SAR);
2017 /* patch second register */
2018 vtop[-1].r2 = vtop->r;
2019 vpop();
2021 #else
2022 } else if ((dbt & VT_BTYPE) == VT_LLONG ||
2023 (dbt & VT_BTYPE) == VT_PTR ||
2024 (dbt & VT_BTYPE) == VT_FUNC) {
2025 if ((sbt & VT_BTYPE) != VT_LLONG &&
2026 (sbt & VT_BTYPE) != VT_PTR &&
2027 (sbt & VT_BTYPE) != VT_FUNC) {
2028 /* need to convert from 32bit to 64bit */
2029 int r = gv(RC_INT);
2030 if (sbt != (VT_INT | VT_UNSIGNED)) {
2031 /* x86_64 specific: movslq */
2032 o(0x6348);
2033 o(0xc0 + (REG_VALUE(r) << 3) + REG_VALUE(r));
2036 #endif
2037 } else if (dbt == VT_BOOL) {
2038 /* scalar to bool */
2039 vpushi(0);
2040 gen_op(TOK_NE);
2041 } else if ((dbt & VT_BTYPE) == VT_BYTE ||
2042 (dbt & VT_BTYPE) == VT_SHORT) {
2043 if (sbt == VT_PTR) {
2044 vtop->type.t = VT_INT;
2045 tcc_warning("nonportable conversion from pointer to char/short");
2047 force_charshort_cast(dbt);
2048 } else if ((dbt & VT_BTYPE) == VT_INT) {
2049 /* scalar to int */
2050 if (sbt == VT_LLONG) {
2051 /* from long long: just take low order word */
2052 lexpand();
2053 vpop();
2055 /* if lvalue and single word type, nothing to do because
2056 the lvalue already contains the real type size (see
2057 VT_LVAL_xxx constants) */
2060 } else if ((dbt & VT_BTYPE) == VT_PTR && !(vtop->r & VT_LVAL)) {
2061 /* if we are casting between pointer types,
2062 we must update the VT_LVAL_xxx size */
2063 vtop->r = (vtop->r & ~VT_LVAL_TYPE)
2064 | (lvalue_type(type->ref->type.t) & VT_LVAL_TYPE);
2066 vtop->type = *type;
2069 /* return type size as known at compile time. Put alignment at 'a' */
2070 ST_FUNC int type_size(CType *type, int *a)
2072 Sym *s;
2073 int bt;
2075 bt = type->t & VT_BTYPE;
2076 if (bt == VT_STRUCT) {
2077 /* struct/union */
2078 s = type->ref;
2079 *a = s->r;
2080 return s->c;
2081 } else if (bt == VT_PTR) {
2082 if (type->t & VT_ARRAY) {
2083 int ts;
2085 s = type->ref;
2086 ts = type_size(&s->type, a);
2088 if (ts < 0 && s->c < 0)
2089 ts = -ts;
2091 return ts * s->c;
2092 } else {
2093 *a = PTR_SIZE;
2094 return PTR_SIZE;
2096 } else if (bt == VT_LDOUBLE) {
2097 *a = LDOUBLE_ALIGN;
2098 return LDOUBLE_SIZE;
2099 } else if (bt == VT_DOUBLE || bt == VT_LLONG) {
2100 #ifdef TCC_TARGET_I386
2101 #ifdef TCC_TARGET_PE
2102 *a = 8;
2103 #else
2104 *a = 4;
2105 #endif
2106 #elif defined(TCC_TARGET_ARM)
2107 #ifdef TCC_ARM_EABI
2108 *a = 8;
2109 #else
2110 *a = 4;
2111 #endif
2112 #else
2113 *a = 8;
2114 #endif
2115 return 8;
2116 } else if (bt == VT_INT || bt == VT_ENUM || bt == VT_FLOAT) {
2117 *a = 4;
2118 return 4;
2119 } else if (bt == VT_SHORT) {
2120 *a = 2;
2121 return 2;
2122 } else if (bt == VT_QLONG || bt == VT_QFLOAT) {
2123 *a = 8;
2124 return 16;
2125 } else {
2126 /* char, void, function, _Bool */
2127 *a = 1;
2128 return 1;
2132 /* push type size as known at runtime time on top of value stack. Put
2133 alignment at 'a' */
2134 ST_FUNC void vla_runtime_type_size(CType *type, int *a)
2136 if (type->t & VT_VLA) {
2137 vset(&int_type, VT_LOCAL|VT_LVAL, type->ref->c);
2138 } else {
2139 vpushi(type_size(type, a));
2143 static void vla_sp_save(void) {
2144 if (!(vla_flags & VLA_SP_LOC_SET)) {
2145 *vla_sp_loc = (loc -= PTR_SIZE);
2146 vla_flags |= VLA_SP_LOC_SET;
2148 if (!(vla_flags & VLA_SP_SAVED)) {
2149 gen_vla_sp_save(*vla_sp_loc);
2150 vla_flags |= VLA_SP_SAVED;
2154 /* return the pointed type of t */
2155 static inline CType *pointed_type(CType *type)
2157 return &type->ref->type;
2160 /* modify type so that its it is a pointer to type. */
2161 ST_FUNC void mk_pointer(CType *type)
2163 Sym *s;
2164 s = sym_push(SYM_FIELD, type, 0, -1);
2165 type->t = VT_PTR | (type->t & ~VT_TYPE);
2166 type->ref = s;
2169 /* compare function types. OLD functions match any new functions */
2170 static int is_compatible_func(CType *type1, CType *type2)
2172 Sym *s1, *s2;
2174 s1 = type1->ref;
2175 s2 = type2->ref;
2176 if (!is_compatible_types(&s1->type, &s2->type))
2177 return 0;
2178 /* check func_call */
2179 if (s1->a.func_call != s2->a.func_call)
2180 return 0;
2181 /* XXX: not complete */
2182 if (s1->c == FUNC_OLD || s2->c == FUNC_OLD)
2183 return 1;
2184 if (s1->c != s2->c)
2185 return 0;
2186 while (s1 != NULL) {
2187 if (s2 == NULL)
2188 return 0;
2189 if (!is_compatible_parameter_types(&s1->type, &s2->type))
2190 return 0;
2191 s1 = s1->next;
2192 s2 = s2->next;
2194 if (s2)
2195 return 0;
2196 return 1;
2199 /* return true if type1 and type2 are the same. If unqualified is
2200 true, qualifiers on the types are ignored.
2202 - enums are not checked as gcc __builtin_types_compatible_p ()
2204 static int compare_types(CType *type1, CType *type2, int unqualified)
2206 int bt1, t1, t2;
2208 t1 = type1->t & VT_TYPE;
2209 t2 = type2->t & VT_TYPE;
2210 if (unqualified) {
2211 /* strip qualifiers before comparing */
2212 t1 &= ~(VT_CONSTANT | VT_VOLATILE);
2213 t2 &= ~(VT_CONSTANT | VT_VOLATILE);
2215 /* Default Vs explicit signedness only matters for char */
2216 if ((t1 & VT_BTYPE) != VT_BYTE) {
2217 t1 &= ~VT_DEFSIGN;
2218 t2 &= ~VT_DEFSIGN;
2220 /* XXX: bitfields ? */
2221 if (t1 != t2)
2222 return 0;
2223 /* test more complicated cases */
2224 bt1 = t1 & VT_BTYPE;
2225 if (bt1 == VT_PTR) {
2226 type1 = pointed_type(type1);
2227 type2 = pointed_type(type2);
2228 return is_compatible_types(type1, type2);
2229 } else if (bt1 == VT_STRUCT) {
2230 return (type1->ref == type2->ref);
2231 } else if (bt1 == VT_FUNC) {
2232 return is_compatible_func(type1, type2);
2233 } else {
2234 return 1;
2238 /* return true if type1 and type2 are exactly the same (including
2239 qualifiers).
2241 static int is_compatible_types(CType *type1, CType *type2)
2243 return compare_types(type1,type2,0);
2246 /* return true if type1 and type2 are the same (ignoring qualifiers).
2248 static int is_compatible_parameter_types(CType *type1, CType *type2)
2250 return compare_types(type1,type2,1);
2253 /* print a type. If 'varstr' is not NULL, then the variable is also
2254 printed in the type */
2255 /* XXX: union */
2256 /* XXX: add array and function pointers */
2257 static void type_to_str(char *buf, int buf_size,
2258 CType *type, const char *varstr)
2260 int bt, v, t;
2261 Sym *s, *sa;
2262 char buf1[256];
2263 const char *tstr;
2265 t = type->t & VT_TYPE;
2266 bt = t & VT_BTYPE;
2267 buf[0] = '\0';
2268 if (t & VT_CONSTANT)
2269 pstrcat(buf, buf_size, "const ");
2270 if (t & VT_VOLATILE)
2271 pstrcat(buf, buf_size, "volatile ");
2272 if (t & (VT_DEFSIGN | VT_UNSIGNED))
2273 pstrcat(buf, buf_size, "unsigned ");
2274 else if (t & VT_DEFSIGN)
2275 pstrcat(buf, buf_size, "signed ");
2276 switch(bt) {
2277 case VT_VOID:
2278 tstr = "void";
2279 goto add_tstr;
2280 case VT_BOOL:
2281 tstr = "_Bool";
2282 goto add_tstr;
2283 case VT_BYTE:
2284 tstr = "char";
2285 goto add_tstr;
2286 case VT_SHORT:
2287 tstr = "short";
2288 goto add_tstr;
2289 case VT_INT:
2290 tstr = "int";
2291 goto add_tstr;
2292 case VT_LONG:
2293 tstr = "long";
2294 goto add_tstr;
2295 case VT_LLONG:
2296 tstr = "long long";
2297 goto add_tstr;
2298 case VT_FLOAT:
2299 tstr = "float";
2300 goto add_tstr;
2301 case VT_DOUBLE:
2302 tstr = "double";
2303 goto add_tstr;
2304 case VT_LDOUBLE:
2305 tstr = "long double";
2306 add_tstr:
2307 pstrcat(buf, buf_size, tstr);
2308 break;
2309 case VT_ENUM:
2310 case VT_STRUCT:
2311 if (bt == VT_STRUCT)
2312 tstr = "struct ";
2313 else
2314 tstr = "enum ";
2315 pstrcat(buf, buf_size, tstr);
2316 v = type->ref->v & ~SYM_STRUCT;
2317 if (v >= SYM_FIRST_ANOM)
2318 pstrcat(buf, buf_size, "<anonymous>");
2319 else
2320 pstrcat(buf, buf_size, get_tok_str(v, NULL));
2321 break;
2322 case VT_FUNC:
2323 s = type->ref;
2324 type_to_str(buf, buf_size, &s->type, varstr);
2325 pstrcat(buf, buf_size, "(");
2326 sa = s->next;
2327 while (sa != NULL) {
2328 type_to_str(buf1, sizeof(buf1), &sa->type, NULL);
2329 pstrcat(buf, buf_size, buf1);
2330 sa = sa->next;
2331 if (sa)
2332 pstrcat(buf, buf_size, ", ");
2334 pstrcat(buf, buf_size, ")");
2335 goto no_var;
2336 case VT_PTR:
2337 s = type->ref;
2338 pstrcpy(buf1, sizeof(buf1), "*");
2339 if (varstr)
2340 pstrcat(buf1, sizeof(buf1), varstr);
2341 type_to_str(buf, buf_size, &s->type, buf1);
2342 goto no_var;
2344 if (varstr) {
2345 pstrcat(buf, buf_size, " ");
2346 pstrcat(buf, buf_size, varstr);
2348 no_var: ;
2351 /* verify type compatibility to store vtop in 'dt' type, and generate
2352 casts if needed. */
2353 static void gen_assign_cast(CType *dt)
2355 CType *st, *type1, *type2, tmp_type1, tmp_type2;
2356 char buf1[256], buf2[256];
2357 int dbt, sbt;
2359 st = &vtop->type; /* source type */
2360 dbt = dt->t & VT_BTYPE;
2361 sbt = st->t & VT_BTYPE;
2362 if (sbt == VT_VOID || dbt == VT_VOID)
2363 tcc_error("cannot cast from/to void");
2364 if (dt->t & VT_CONSTANT)
2365 tcc_warning("assignment of read-only location");
2366 switch(dbt) {
2367 case VT_PTR:
2368 /* special cases for pointers */
2369 /* '0' can also be a pointer */
2370 if (is_null_pointer(vtop))
2371 goto type_ok;
2372 /* accept implicit pointer to integer cast with warning */
2373 if (is_integer_btype(sbt)) {
2374 tcc_warning("assignment makes pointer from integer without a cast");
2375 goto type_ok;
2377 type1 = pointed_type(dt);
2378 /* a function is implicitely a function pointer */
2379 if (sbt == VT_FUNC) {
2380 if ((type1->t & VT_BTYPE) != VT_VOID &&
2381 !is_compatible_types(pointed_type(dt), st))
2382 tcc_warning("assignment from incompatible pointer type");
2383 goto type_ok;
2385 if (sbt != VT_PTR)
2386 goto error;
2387 type2 = pointed_type(st);
2388 if ((type1->t & VT_BTYPE) == VT_VOID ||
2389 (type2->t & VT_BTYPE) == VT_VOID) {
2390 /* void * can match anything */
2391 } else {
2392 /* exact type match, except for unsigned */
2393 tmp_type1 = *type1;
2394 tmp_type2 = *type2;
2395 tmp_type1.t &= ~(VT_DEFSIGN | VT_UNSIGNED | VT_CONSTANT |
2396 VT_VOLATILE);
2397 tmp_type2.t &= ~(VT_DEFSIGN | VT_UNSIGNED | VT_CONSTANT |
2398 VT_VOLATILE);
2399 if (!is_compatible_types(&tmp_type1, &tmp_type2))
2400 tcc_warning("assignment from incompatible pointer type");
2402 /* check const and volatile */
2403 if ((!(type1->t & VT_CONSTANT) && (type2->t & VT_CONSTANT)) ||
2404 (!(type1->t & VT_VOLATILE) && (type2->t & VT_VOLATILE)))
2405 tcc_warning("assignment discards qualifiers from pointer target type");
2406 break;
2407 case VT_BYTE:
2408 case VT_SHORT:
2409 case VT_INT:
2410 case VT_LLONG:
2411 if (sbt == VT_PTR || sbt == VT_FUNC) {
2412 tcc_warning("assignment makes integer from pointer without a cast");
2414 /* XXX: more tests */
2415 break;
2416 case VT_STRUCT:
2417 tmp_type1 = *dt;
2418 tmp_type2 = *st;
2419 tmp_type1.t &= ~(VT_CONSTANT | VT_VOLATILE);
2420 tmp_type2.t &= ~(VT_CONSTANT | VT_VOLATILE);
2421 if (!is_compatible_types(&tmp_type1, &tmp_type2)) {
2422 error:
2423 type_to_str(buf1, sizeof(buf1), st, NULL);
2424 type_to_str(buf2, sizeof(buf2), dt, NULL);
2425 tcc_error("cannot cast '%s' to '%s'", buf1, buf2);
2427 break;
2429 type_ok:
2430 gen_cast(dt);
2433 /* store vtop in lvalue pushed on stack */
2434 ST_FUNC void vstore(void)
2436 int sbt, dbt, ft, r, t, size, align, bit_size, bit_pos, rc, delayed_cast;
2438 ft = vtop[-1].type.t;
2439 sbt = vtop->type.t & VT_BTYPE;
2440 dbt = ft & VT_BTYPE;
2441 if ((((sbt == VT_INT || sbt == VT_SHORT) && dbt == VT_BYTE) ||
2442 (sbt == VT_INT && dbt == VT_SHORT))
2443 && !(vtop->type.t & VT_BITFIELD)) {
2444 /* optimize char/short casts */
2445 delayed_cast = VT_MUSTCAST;
2446 vtop->type.t = ft & (VT_TYPE & ~(VT_BITFIELD | (-1 << VT_STRUCT_SHIFT)));
2447 /* XXX: factorize */
2448 if (ft & VT_CONSTANT)
2449 tcc_warning("assignment of read-only location");
2450 } else {
2451 delayed_cast = 0;
2452 if (!(ft & VT_BITFIELD))
2453 gen_assign_cast(&vtop[-1].type);
2456 if (sbt == VT_STRUCT) {
2457 /* if structure, only generate pointer */
2458 /* structure assignment : generate memcpy */
2459 /* XXX: optimize if small size */
2460 if (!nocode_wanted) {
2461 size = type_size(&vtop->type, &align);
2463 /* destination */
2464 vswap();
2465 vtop->type.t = VT_PTR;
2466 gaddrof();
2468 /* address of memcpy() */
2469 #ifdef TCC_ARM_EABI
2470 if(!(align & 7))
2471 vpush_global_sym(&func_old_type, TOK_memcpy8);
2472 else if(!(align & 3))
2473 vpush_global_sym(&func_old_type, TOK_memcpy4);
2474 else
2475 #endif
2476 vpush_global_sym(&func_old_type, TOK_memcpy);
2478 vswap();
2479 /* source */
2480 vpushv(vtop - 2);
2481 vtop->type.t = VT_PTR;
2482 gaddrof();
2483 /* type size */
2484 vpushi(size);
2485 gfunc_call(3);
2486 } else {
2487 vswap();
2488 vpop();
2490 /* leave source on stack */
2491 } else if (ft & VT_BITFIELD) {
2492 /* bitfield store handling */
2493 bit_pos = (ft >> VT_STRUCT_SHIFT) & 0x3f;
2494 bit_size = (ft >> (VT_STRUCT_SHIFT + 6)) & 0x3f;
2495 /* remove bit field info to avoid loops */
2496 vtop[-1].type.t = ft & ~(VT_BITFIELD | (-1 << VT_STRUCT_SHIFT));
2498 /* duplicate source into other register */
2499 gv_dup();
2500 vswap();
2501 vrott(3);
2503 if((ft & VT_BTYPE) == VT_BOOL) {
2504 gen_cast(&vtop[-1].type);
2505 vtop[-1].type.t = (vtop[-1].type.t & ~VT_BTYPE) | (VT_BYTE | VT_UNSIGNED);
2508 /* duplicate destination */
2509 vdup();
2510 vtop[-1] = vtop[-2];
2512 /* mask and shift source */
2513 if((ft & VT_BTYPE) != VT_BOOL) {
2514 if((ft & VT_BTYPE) == VT_LLONG) {
2515 vpushll((1ULL << bit_size) - 1ULL);
2516 } else {
2517 vpushi((1 << bit_size) - 1);
2519 gen_op('&');
2521 vpushi(bit_pos);
2522 gen_op(TOK_SHL);
2523 /* load destination, mask and or with source */
2524 vswap();
2525 if((ft & VT_BTYPE) == VT_LLONG) {
2526 vpushll(~(((1ULL << bit_size) - 1ULL) << bit_pos));
2527 } else {
2528 vpushi(~(((1 << bit_size) - 1) << bit_pos));
2530 gen_op('&');
2531 gen_op('|');
2532 /* store result */
2533 vstore();
2535 /* pop off shifted source from "duplicate source..." above */
2536 vpop();
2538 } else {
2539 #ifdef CONFIG_TCC_BCHECK
2540 /* bound check case */
2541 if (vtop[-1].r & VT_MUSTBOUND) {
2542 vswap();
2543 gbound();
2544 vswap();
2546 #endif
2547 if (!nocode_wanted) {
2548 rc = RC_INT;
2549 if (is_float(ft)) {
2550 rc = RC_FLOAT;
2551 #ifdef TCC_TARGET_X86_64
2552 if ((ft & VT_BTYPE) == VT_LDOUBLE) {
2553 rc = RC_ST0;
2554 } else if ((ft & VT_BTYPE) == VT_QFLOAT) {
2555 rc = RC_FRET;
2557 #endif
2559 r = gv(rc); /* generate value */
2560 /* if lvalue was saved on stack, must read it */
2561 if ((vtop[-1].r & VT_VALMASK) == VT_LLOCAL) {
2562 SValue sv;
2563 t = get_reg(RC_INT);
2564 #ifdef TCC_TARGET_X86_64
2565 sv.type.t = VT_PTR;
2566 #else
2567 sv.type.t = VT_INT;
2568 #endif
2569 sv.r = VT_LOCAL | VT_LVAL;
2570 sv.c.ul = vtop[-1].c.ul;
2571 load(t, &sv);
2572 vtop[-1].r = t | VT_LVAL;
2574 /* two word case handling : store second register at word + 4 (or +8 for x86-64) */
2575 #ifdef TCC_TARGET_X86_64
2576 if (((ft & VT_BTYPE) == VT_QLONG) || ((ft & VT_BTYPE) == VT_QFLOAT)) {
2577 int addr_type = VT_LLONG, load_size = 8, load_type = ((vtop->type.t & VT_BTYPE) == VT_QLONG) ? VT_LLONG : VT_DOUBLE;
2578 #else
2579 if ((ft & VT_BTYPE) == VT_LLONG) {
2580 int addr_type = VT_INT, load_size = 4, load_type = VT_INT;
2581 #endif
2582 vtop[-1].type.t = load_type;
2583 store(r, vtop - 1);
2584 vswap();
2585 /* convert to int to increment easily */
2586 vtop->type.t = addr_type;
2587 gaddrof();
2588 vpushi(load_size);
2589 gen_op('+');
2590 vtop->r |= VT_LVAL;
2591 vswap();
2592 vtop[-1].type.t = load_type;
2593 /* XXX: it works because r2 is spilled last ! */
2594 store(vtop->r2, vtop - 1);
2595 } else {
2596 store(r, vtop - 1);
2599 vswap();
2600 vtop--; /* NOT vpop() because on x86 it would flush the fp stack */
2601 vtop->r |= delayed_cast;
2605 /* post defines POST/PRE add. c is the token ++ or -- */
2606 ST_FUNC void inc(int post, int c)
2608 test_lvalue();
2609 vdup(); /* save lvalue */
2610 if (post) {
2611 gv_dup(); /* duplicate value */
2612 vrotb(3);
2613 vrotb(3);
2615 /* add constant */
2616 vpushi(c - TOK_MID);
2617 gen_op('+');
2618 vstore(); /* store value */
2619 if (post)
2620 vpop(); /* if post op, return saved value */
2623 /* Parse GNUC __attribute__ extension. Currently, the following
2624 extensions are recognized:
2625 - aligned(n) : set data/function alignment.
2626 - packed : force data alignment to 1
2627 - section(x) : generate data/code in this section.
2628 - unused : currently ignored, but may be used someday.
2629 - regparm(n) : pass function parameters in registers (i386 only)
2631 static void parse_attribute(AttributeDef *ad)
2633 int t, n;
2635 while (tok == TOK_ATTRIBUTE1 || tok == TOK_ATTRIBUTE2) {
2636 next();
2637 skip('(');
2638 skip('(');
2639 while (tok != ')') {
2640 if (tok < TOK_IDENT)
2641 expect("attribute name");
2642 t = tok;
2643 next();
2644 switch(t) {
2645 case TOK_SECTION1:
2646 case TOK_SECTION2:
2647 skip('(');
2648 if (tok != TOK_STR)
2649 expect("section name");
2650 ad->section = find_section(tcc_state, (char *)tokc.cstr->data);
2651 next();
2652 skip(')');
2653 break;
2654 case TOK_ALIAS1:
2655 case TOK_ALIAS2:
2656 skip('(');
2657 if (tok != TOK_STR)
2658 expect("alias(\"target\")");
2659 ad->alias_target = /* save string as token, for later */
2660 tok_alloc((char*)tokc.cstr->data, tokc.cstr->size-1)->tok;
2661 next();
2662 skip(')');
2663 break;
2664 case TOK_ALIGNED1:
2665 case TOK_ALIGNED2:
2666 if (tok == '(') {
2667 next();
2668 n = expr_const();
2669 if (n <= 0 || (n & (n - 1)) != 0)
2670 tcc_error("alignment must be a positive power of two");
2671 skip(')');
2672 } else {
2673 n = MAX_ALIGN;
2675 ad->a.aligned = n;
2676 break;
2677 case TOK_PACKED1:
2678 case TOK_PACKED2:
2679 ad->a.packed = 1;
2680 break;
2681 case TOK_WEAK1:
2682 case TOK_WEAK2:
2683 ad->a.weak = 1;
2684 break;
2685 case TOK_UNUSED1:
2686 case TOK_UNUSED2:
2687 /* currently, no need to handle it because tcc does not
2688 track unused objects */
2689 break;
2690 case TOK_NORETURN1:
2691 case TOK_NORETURN2:
2692 /* currently, no need to handle it because tcc does not
2693 track unused objects */
2694 break;
2695 case TOK_CDECL1:
2696 case TOK_CDECL2:
2697 case TOK_CDECL3:
2698 ad->a.func_call = FUNC_CDECL;
2699 break;
2700 case TOK_STDCALL1:
2701 case TOK_STDCALL2:
2702 case TOK_STDCALL3:
2703 ad->a.func_call = FUNC_STDCALL;
2704 break;
2705 #ifdef TCC_TARGET_I386
2706 case TOK_REGPARM1:
2707 case TOK_REGPARM2:
2708 skip('(');
2709 n = expr_const();
2710 if (n > 3)
2711 n = 3;
2712 else if (n < 0)
2713 n = 0;
2714 if (n > 0)
2715 ad->a.func_call = FUNC_FASTCALL1 + n - 1;
2716 skip(')');
2717 break;
2718 case TOK_FASTCALL1:
2719 case TOK_FASTCALL2:
2720 case TOK_FASTCALL3:
2721 ad->a.func_call = FUNC_FASTCALLW;
2722 break;
2723 #endif
2724 case TOK_MODE:
2725 skip('(');
2726 switch(tok) {
2727 case TOK_MODE_DI:
2728 ad->a.mode = VT_LLONG + 1;
2729 break;
2730 case TOK_MODE_HI:
2731 ad->a.mode = VT_SHORT + 1;
2732 break;
2733 case TOK_MODE_SI:
2734 ad->a.mode = VT_INT + 1;
2735 break;
2736 default:
2737 tcc_warning("__mode__(%s) not supported\n", get_tok_str(tok, NULL));
2738 break;
2740 next();
2741 skip(')');
2742 break;
2743 case TOK_DLLEXPORT:
2744 ad->a.func_export = 1;
2745 break;
2746 case TOK_DLLIMPORT:
2747 ad->a.func_import = 1;
2748 break;
2749 default:
2750 if (tcc_state->warn_unsupported)
2751 tcc_warning("'%s' attribute ignored", get_tok_str(t, NULL));
2752 /* skip parameters */
2753 if (tok == '(') {
2754 int parenthesis = 0;
2755 do {
2756 if (tok == '(')
2757 parenthesis++;
2758 else if (tok == ')')
2759 parenthesis--;
2760 next();
2761 } while (parenthesis && tok != -1);
2763 break;
2765 if (tok != ',')
2766 break;
2767 next();
2769 skip(')');
2770 skip(')');
2774 /* enum/struct/union declaration. u is either VT_ENUM or VT_STRUCT */
2775 static void struct_decl(CType *type, int u, int tdef)
2777 int a, v, size, align, maxalign, c, offset, flexible;
2778 int bit_size, bit_pos, bsize, bt, lbit_pos, prevbt;
2779 Sym *s, *ss, *ass, **ps;
2780 AttributeDef ad;
2781 CType type1, btype;
2783 a = tok; /* save decl type */
2784 next();
2785 if (tok != '{') {
2786 v = tok;
2787 next();
2788 /* struct already defined ? return it */
2789 if (v < TOK_IDENT)
2790 expect("struct/union/enum name");
2791 s = struct_find(v);
2792 if (s) {
2793 if (s->type.t != a)
2794 tcc_error("invalid type");
2795 goto do_decl;
2796 } else if (tok >= TOK_IDENT && !tdef)
2797 tcc_error("unknown struct/union/enum");
2798 } else {
2799 v = anon_sym++;
2801 type1.t = a;
2802 type1.ref = NULL;
2803 /* we put an undefined size for struct/union */
2804 s = sym_push(v | SYM_STRUCT, &type1, 0, -1);
2805 s->r = 0; /* default alignment is zero as gcc */
2806 /* put struct/union/enum name in type */
2807 do_decl:
2808 type->t = u;
2809 type->ref = s;
2811 if (tok == '{') {
2812 next();
2813 if (s->c != -1)
2814 tcc_error("struct/union/enum already defined");
2815 /* cannot be empty */
2816 c = 0;
2817 /* non empty enums are not allowed */
2818 if (a == TOK_ENUM) {
2819 for(;;) {
2820 v = tok;
2821 if (v < TOK_UIDENT)
2822 expect("identifier");
2823 ss = sym_find(v);
2824 if (ss)
2825 tcc_error("redefinition of enumerator '%s'",
2826 get_tok_str(v, NULL));
2827 next();
2828 if (tok == '=') {
2829 next();
2830 c = expr_const();
2832 /* enum symbols have static storage */
2833 ss = sym_push(v, &int_type, VT_CONST, c);
2834 ss->type.t |= VT_STATIC;
2835 if (tok != ',')
2836 break;
2837 next();
2838 c++;
2839 /* NOTE: we accept a trailing comma */
2840 if (tok == '}')
2841 break;
2843 s->c = type_size(&int_type, &align);
2844 skip('}');
2845 } else {
2846 maxalign = 1;
2847 ps = &s->next;
2848 prevbt = VT_INT;
2849 bit_pos = 0;
2850 offset = 0;
2851 flexible = 0;
2852 while (tok != '}') {
2853 parse_btype(&btype, &ad);
2854 while (1) {
2855 if (flexible)
2856 tcc_error("flexible array member '%s' not at the end of struct",
2857 get_tok_str(v, NULL));
2858 bit_size = -1;
2859 v = 0;
2860 type1 = btype;
2861 if (tok != ':') {
2862 type_decl(&type1, &ad, &v, TYPE_DIRECT | TYPE_ABSTRACT);
2863 if (v == 0 && (type1.t & VT_BTYPE) != VT_STRUCT)
2864 expect("identifier");
2865 if (type_size(&type1, &align) < 0) {
2866 if ((a == TOK_STRUCT) && (type1.t & VT_ARRAY) && c)
2867 flexible = 1;
2868 else
2869 tcc_error("field '%s' has incomplete type",
2870 get_tok_str(v, NULL));
2872 if ((type1.t & VT_BTYPE) == VT_FUNC ||
2873 (type1.t & (VT_TYPEDEF | VT_STATIC | VT_EXTERN | VT_INLINE)))
2874 tcc_error("invalid type for '%s'",
2875 get_tok_str(v, NULL));
2877 if (tok == ':') {
2878 next();
2879 bit_size = expr_const();
2880 /* XXX: handle v = 0 case for messages */
2881 if (bit_size < 0)
2882 tcc_error("negative width in bit-field '%s'",
2883 get_tok_str(v, NULL));
2884 if (v && bit_size == 0)
2885 tcc_error("zero width for bit-field '%s'",
2886 get_tok_str(v, NULL));
2888 size = type_size(&type1, &align);
2889 if (ad.a.aligned) {
2890 if (align < ad.a.aligned)
2891 align = ad.a.aligned;
2892 } else if (ad.a.packed) {
2893 align = 1;
2894 } else if (*tcc_state->pack_stack_ptr) {
2895 if (align > *tcc_state->pack_stack_ptr)
2896 align = *tcc_state->pack_stack_ptr;
2898 lbit_pos = 0;
2899 if (bit_size >= 0) {
2900 bt = type1.t & VT_BTYPE;
2901 if (bt != VT_INT &&
2902 bt != VT_BYTE &&
2903 bt != VT_SHORT &&
2904 bt != VT_BOOL &&
2905 bt != VT_ENUM &&
2906 bt != VT_LLONG)
2907 tcc_error("bitfields must have scalar type");
2908 bsize = size * 8;
2909 if (bit_size > bsize) {
2910 tcc_error("width of '%s' exceeds its type",
2911 get_tok_str(v, NULL));
2912 } else if (bit_size == bsize) {
2913 /* no need for bit fields */
2914 bit_pos = 0;
2915 } else if (bit_size == 0) {
2916 /* XXX: what to do if only padding in a
2917 structure ? */
2918 /* zero size: means to pad */
2919 bit_pos = 0;
2920 } else {
2921 /* we do not have enough room ?
2922 did the type change?
2923 is it a union? */
2924 if ((bit_pos + bit_size) > bsize ||
2925 bt != prevbt || a == TOK_UNION)
2926 bit_pos = 0;
2927 lbit_pos = bit_pos;
2928 /* XXX: handle LSB first */
2929 type1.t |= VT_BITFIELD |
2930 (bit_pos << VT_STRUCT_SHIFT) |
2931 (bit_size << (VT_STRUCT_SHIFT + 6));
2932 bit_pos += bit_size;
2934 prevbt = bt;
2935 } else {
2936 bit_pos = 0;
2938 if (v != 0 || (type1.t & VT_BTYPE) == VT_STRUCT) {
2939 /* add new memory data only if starting
2940 bit field */
2941 if (lbit_pos == 0) {
2942 if (a == TOK_STRUCT) {
2943 c = (c + align - 1) & -align;
2944 offset = c;
2945 if (size > 0)
2946 c += size;
2947 } else {
2948 offset = 0;
2949 if (size > c)
2950 c = size;
2952 if (align > maxalign)
2953 maxalign = align;
2955 #if 0
2956 printf("add field %s offset=%d",
2957 get_tok_str(v, NULL), offset);
2958 if (type1.t & VT_BITFIELD) {
2959 printf(" pos=%d size=%d",
2960 (type1.t >> VT_STRUCT_SHIFT) & 0x3f,
2961 (type1.t >> (VT_STRUCT_SHIFT + 6)) & 0x3f);
2963 printf("\n");
2964 #endif
2966 if (v == 0 && (type1.t & VT_BTYPE) == VT_STRUCT) {
2967 ass = type1.ref;
2968 while ((ass = ass->next) != NULL) {
2969 ss = sym_push(ass->v, &ass->type, 0, offset + ass->c);
2970 *ps = ss;
2971 ps = &ss->next;
2973 } else if (v) {
2974 ss = sym_push(v | SYM_FIELD, &type1, 0, offset);
2975 *ps = ss;
2976 ps = &ss->next;
2978 if (tok == ';' || tok == TOK_EOF)
2979 break;
2980 skip(',');
2982 skip(';');
2984 skip('}');
2985 /* store size and alignment */
2986 s->c = (c + maxalign - 1) & -maxalign;
2987 s->r = maxalign;
2992 /* return 0 if no type declaration. otherwise, return the basic type
2993 and skip it.
2995 static int parse_btype(CType *type, AttributeDef *ad)
2997 int t, u, type_found, typespec_found, typedef_found;
2998 Sym *s;
2999 CType type1;
3001 memset(ad, 0, sizeof(AttributeDef));
3002 type_found = 0;
3003 typespec_found = 0;
3004 typedef_found = 0;
3005 t = 0;
3006 while(1) {
3007 switch(tok) {
3008 case TOK_EXTENSION:
3009 /* currently, we really ignore extension */
3010 next();
3011 continue;
3013 /* basic types */
3014 case TOK_CHAR:
3015 u = VT_BYTE;
3016 basic_type:
3017 next();
3018 basic_type1:
3019 if ((t & VT_BTYPE) != 0)
3020 tcc_error("too many basic types");
3021 t |= u;
3022 typespec_found = 1;
3023 break;
3024 case TOK_VOID:
3025 u = VT_VOID;
3026 goto basic_type;
3027 case TOK_SHORT:
3028 u = VT_SHORT;
3029 goto basic_type;
3030 case TOK_INT:
3031 next();
3032 typespec_found = 1;
3033 break;
3034 case TOK_LONG:
3035 next();
3036 if ((t & VT_BTYPE) == VT_DOUBLE) {
3037 #ifndef TCC_TARGET_PE
3038 t = (t & ~VT_BTYPE) | VT_LDOUBLE;
3039 #endif
3040 } else if ((t & VT_BTYPE) == VT_LONG) {
3041 t = (t & ~VT_BTYPE) | VT_LLONG;
3042 } else {
3043 u = VT_LONG;
3044 goto basic_type1;
3046 break;
3047 case TOK_BOOL:
3048 u = VT_BOOL;
3049 goto basic_type;
3050 case TOK_FLOAT:
3051 u = VT_FLOAT;
3052 goto basic_type;
3053 case TOK_DOUBLE:
3054 next();
3055 if ((t & VT_BTYPE) == VT_LONG) {
3056 #ifdef TCC_TARGET_PE
3057 t = (t & ~VT_BTYPE) | VT_DOUBLE;
3058 #else
3059 t = (t & ~VT_BTYPE) | VT_LDOUBLE;
3060 #endif
3061 } else {
3062 u = VT_DOUBLE;
3063 goto basic_type1;
3065 break;
3066 case TOK_ENUM:
3067 struct_decl(&type1, VT_ENUM, t & VT_TYPEDEF);
3068 basic_type2:
3069 u = type1.t;
3070 type->ref = type1.ref;
3071 goto basic_type1;
3072 case TOK_STRUCT:
3073 case TOK_UNION:
3074 struct_decl(&type1, VT_STRUCT, t & VT_TYPEDEF);
3075 goto basic_type2;
3077 /* type modifiers */
3078 case TOK_CONST1:
3079 case TOK_CONST2:
3080 case TOK_CONST3:
3081 t |= VT_CONSTANT;
3082 next();
3083 break;
3084 case TOK_VOLATILE1:
3085 case TOK_VOLATILE2:
3086 case TOK_VOLATILE3:
3087 t |= VT_VOLATILE;
3088 next();
3089 break;
3090 case TOK_SIGNED1:
3091 case TOK_SIGNED2:
3092 case TOK_SIGNED3:
3093 if ((t & (VT_DEFSIGN|VT_UNSIGNED)) == (VT_DEFSIGN|VT_UNSIGNED))
3094 tcc_error("signed and unsigned modifier");
3095 typespec_found = 1;
3096 t |= VT_DEFSIGN;
3097 next();
3098 break;
3099 case TOK_REGISTER:
3100 case TOK_AUTO:
3101 case TOK_RESTRICT1:
3102 case TOK_RESTRICT2:
3103 case TOK_RESTRICT3:
3104 next();
3105 break;
3106 case TOK_UNSIGNED:
3107 if ((t & (VT_DEFSIGN|VT_UNSIGNED)) == VT_DEFSIGN)
3108 tcc_error("signed and unsigned modifier");
3109 t |= VT_DEFSIGN | VT_UNSIGNED;
3110 next();
3111 typespec_found = 1;
3112 break;
3114 /* storage */
3115 case TOK_EXTERN:
3116 t |= VT_EXTERN;
3117 next();
3118 break;
3119 case TOK_STATIC:
3120 t |= VT_STATIC;
3121 next();
3122 break;
3123 case TOK_TYPEDEF:
3124 t |= VT_TYPEDEF;
3125 next();
3126 break;
3127 case TOK_INLINE1:
3128 case TOK_INLINE2:
3129 case TOK_INLINE3:
3130 t |= VT_INLINE;
3131 next();
3132 break;
3134 /* GNUC attribute */
3135 case TOK_ATTRIBUTE1:
3136 case TOK_ATTRIBUTE2:
3137 parse_attribute(ad);
3138 if (ad->a.mode) {
3139 u = ad->a.mode -1;
3140 t = (t & ~VT_BTYPE) | u;
3142 break;
3143 /* GNUC typeof */
3144 case TOK_TYPEOF1:
3145 case TOK_TYPEOF2:
3146 case TOK_TYPEOF3:
3147 next();
3148 parse_expr_type(&type1);
3149 /* remove all storage modifiers except typedef */
3150 type1.t &= ~(VT_STORAGE&~VT_TYPEDEF);
3151 goto basic_type2;
3152 default:
3153 if (typespec_found || typedef_found)
3154 goto the_end;
3155 s = sym_find(tok);
3156 if (!s || !(s->type.t & VT_TYPEDEF))
3157 goto the_end;
3158 typedef_found = 1;
3159 t |= (s->type.t & ~VT_TYPEDEF);
3160 type->ref = s->type.ref;
3161 if (s->r) {
3162 /* get attributes from typedef */
3163 if (0 == ad->a.aligned)
3164 ad->a.aligned = s->a.aligned;
3165 if (0 == ad->a.func_call)
3166 ad->a.func_call = s->a.func_call;
3167 ad->a.packed |= s->a.packed;
3169 next();
3170 typespec_found = 1;
3171 break;
3173 type_found = 1;
3175 the_end:
3176 if (tcc_state->char_is_unsigned) {
3177 if ((t & (VT_DEFSIGN|VT_BTYPE)) == VT_BYTE)
3178 t |= VT_UNSIGNED;
3181 /* long is never used as type */
3182 if ((t & VT_BTYPE) == VT_LONG)
3183 #if !defined TCC_TARGET_X86_64 || defined TCC_TARGET_PE
3184 t = (t & ~VT_BTYPE) | VT_INT;
3185 #else
3186 t = (t & ~VT_BTYPE) | VT_LLONG;
3187 #endif
3188 type->t = t;
3189 return type_found;
3192 /* convert a function parameter type (array to pointer and function to
3193 function pointer) */
3194 static inline void convert_parameter_type(CType *pt)
3196 /* remove const and volatile qualifiers (XXX: const could be used
3197 to indicate a const function parameter */
3198 pt->t &= ~(VT_CONSTANT | VT_VOLATILE);
3199 /* array must be transformed to pointer according to ANSI C */
3200 pt->t &= ~VT_ARRAY;
3201 if ((pt->t & VT_BTYPE) == VT_FUNC) {
3202 mk_pointer(pt);
3206 ST_FUNC void parse_asm_str(CString *astr)
3208 skip('(');
3209 /* read the string */
3210 if (tok != TOK_STR)
3211 expect("string constant");
3212 cstr_new(astr);
3213 while (tok == TOK_STR) {
3214 /* XXX: add \0 handling too ? */
3215 cstr_cat(astr, tokc.cstr->data);
3216 next();
3218 cstr_ccat(astr, '\0');
3221 /* Parse an asm label and return the label
3222 * Don't forget to free the CString in the caller! */
3223 static void asm_label_instr(CString *astr)
3225 next();
3226 parse_asm_str(astr);
3227 skip(')');
3228 #ifdef ASM_DEBUG
3229 printf("asm_alias: \"%s\"\n", (char *)astr->data);
3230 #endif
3233 static void post_type(CType *type, AttributeDef *ad)
3235 int n, l, t1, arg_size, align;
3236 Sym **plast, *s, *first;
3237 AttributeDef ad1;
3238 CType pt;
3240 if (tok == '(') {
3241 /* function declaration */
3242 next();
3243 l = 0;
3244 first = NULL;
3245 plast = &first;
3246 arg_size = 0;
3247 if (tok != ')') {
3248 for(;;) {
3249 /* read param name and compute offset */
3250 if (l != FUNC_OLD) {
3251 if (!parse_btype(&pt, &ad1)) {
3252 if (l) {
3253 tcc_error("invalid type");
3254 } else {
3255 l = FUNC_OLD;
3256 goto old_proto;
3259 l = FUNC_NEW;
3260 if ((pt.t & VT_BTYPE) == VT_VOID && tok == ')')
3261 break;
3262 type_decl(&pt, &ad1, &n, TYPE_DIRECT | TYPE_ABSTRACT);
3263 if ((pt.t & VT_BTYPE) == VT_VOID)
3264 tcc_error("parameter declared as void");
3265 arg_size += (type_size(&pt, &align) + PTR_SIZE - 1) / PTR_SIZE;
3266 } else {
3267 old_proto:
3268 n = tok;
3269 if (n < TOK_UIDENT)
3270 expect("identifier");
3271 pt.t = VT_INT;
3272 next();
3274 convert_parameter_type(&pt);
3275 s = sym_push(n | SYM_FIELD, &pt, 0, 0);
3276 *plast = s;
3277 plast = &s->next;
3278 if (tok == ')')
3279 break;
3280 skip(',');
3281 if (l == FUNC_NEW && tok == TOK_DOTS) {
3282 l = FUNC_ELLIPSIS;
3283 next();
3284 break;
3288 /* if no parameters, then old type prototype */
3289 if (l == 0)
3290 l = FUNC_OLD;
3291 skip(')');
3292 /* NOTE: const is ignored in returned type as it has a special
3293 meaning in gcc / C++ */
3294 type->t &= ~VT_CONSTANT;
3295 /* some ancient pre-K&R C allows a function to return an array
3296 and the array brackets to be put after the arguments, such
3297 that "int c()[]" means something like "int[] c()" */
3298 if (tok == '[') {
3299 next();
3300 skip(']'); /* only handle simple "[]" */
3301 type->t |= VT_PTR;
3303 /* we push a anonymous symbol which will contain the function prototype */
3304 ad->a.func_args = arg_size;
3305 s = sym_push(SYM_FIELD, type, 0, l);
3306 s->a = ad->a;
3307 s->next = first;
3308 type->t = VT_FUNC;
3309 type->ref = s;
3310 } else if (tok == '[') {
3311 /* array definition */
3312 next();
3313 if (tok == TOK_RESTRICT1)
3314 next();
3315 n = -1;
3316 t1 = 0;
3317 if (tok != ']') {
3318 if (!local_stack || nocode_wanted)
3319 vpushi(expr_const());
3320 else gexpr();
3321 if ((vtop->r & (VT_VALMASK | VT_LVAL | VT_SYM)) == VT_CONST) {
3322 n = vtop->c.i;
3323 if (n < 0)
3324 tcc_error("invalid array size");
3325 } else {
3326 if (!is_integer_btype(vtop->type.t & VT_BTYPE))
3327 tcc_error("size of variable length array should be an integer");
3328 t1 = VT_VLA;
3331 skip(']');
3332 /* parse next post type */
3333 post_type(type, ad);
3334 if (type->t == VT_FUNC)
3335 tcc_error("declaration of an array of functions");
3336 t1 |= type->t & VT_VLA;
3338 if (t1 & VT_VLA) {
3339 loc -= type_size(&int_type, &align);
3340 loc &= -align;
3341 n = loc;
3343 vla_runtime_type_size(type, &align);
3344 gen_op('*');
3345 vset(&int_type, VT_LOCAL|VT_LVAL, loc);
3346 vswap();
3347 vstore();
3349 if (n != -1)
3350 vpop();
3352 /* we push an anonymous symbol which will contain the array
3353 element type */
3354 s = sym_push(SYM_FIELD, type, 0, n);
3355 type->t = (t1 ? VT_VLA : VT_ARRAY) | VT_PTR;
3356 type->ref = s;
3360 /* Parse a type declaration (except basic type), and return the type
3361 in 'type'. 'td' is a bitmask indicating which kind of type decl is
3362 expected. 'type' should contain the basic type. 'ad' is the
3363 attribute definition of the basic type. It can be modified by
3364 type_decl().
3366 static void type_decl(CType *type, AttributeDef *ad, int *v, int td)
3368 Sym *s;
3369 CType type1, *type2;
3370 int qualifiers, storage;
3372 while (tok == '*') {
3373 qualifiers = 0;
3374 redo:
3375 next();
3376 switch(tok) {
3377 case TOK_CONST1:
3378 case TOK_CONST2:
3379 case TOK_CONST3:
3380 qualifiers |= VT_CONSTANT;
3381 goto redo;
3382 case TOK_VOLATILE1:
3383 case TOK_VOLATILE2:
3384 case TOK_VOLATILE3:
3385 qualifiers |= VT_VOLATILE;
3386 goto redo;
3387 case TOK_RESTRICT1:
3388 case TOK_RESTRICT2:
3389 case TOK_RESTRICT3:
3390 goto redo;
3392 mk_pointer(type);
3393 type->t |= qualifiers;
3396 /* XXX: clarify attribute handling */
3397 if (tok == TOK_ATTRIBUTE1 || tok == TOK_ATTRIBUTE2)
3398 parse_attribute(ad);
3400 /* recursive type */
3401 /* XXX: incorrect if abstract type for functions (e.g. 'int ()') */
3402 type1.t = 0; /* XXX: same as int */
3403 if (tok == '(') {
3404 next();
3405 /* XXX: this is not correct to modify 'ad' at this point, but
3406 the syntax is not clear */
3407 if (tok == TOK_ATTRIBUTE1 || tok == TOK_ATTRIBUTE2)
3408 parse_attribute(ad);
3409 type_decl(&type1, ad, v, td);
3410 skip(')');
3411 } else {
3412 /* type identifier */
3413 if (tok >= TOK_IDENT && (td & TYPE_DIRECT)) {
3414 *v = tok;
3415 next();
3416 } else {
3417 if (!(td & TYPE_ABSTRACT))
3418 expect("identifier");
3419 *v = 0;
3422 storage = type->t & VT_STORAGE;
3423 type->t &= ~VT_STORAGE;
3424 if (storage & VT_STATIC) {
3425 int saved_nocode_wanted = nocode_wanted;
3426 nocode_wanted = 1;
3427 post_type(type, ad);
3428 nocode_wanted = saved_nocode_wanted;
3429 } else
3430 post_type(type, ad);
3431 type->t |= storage;
3432 if (tok == TOK_ATTRIBUTE1 || tok == TOK_ATTRIBUTE2)
3433 parse_attribute(ad);
3435 if (!type1.t)
3436 return;
3437 /* append type at the end of type1 */
3438 type2 = &type1;
3439 for(;;) {
3440 s = type2->ref;
3441 type2 = &s->type;
3442 if (!type2->t) {
3443 *type2 = *type;
3444 break;
3447 *type = type1;
3450 /* compute the lvalue VT_LVAL_xxx needed to match type t. */
3451 ST_FUNC int lvalue_type(int t)
3453 int bt, r;
3454 r = VT_LVAL;
3455 bt = t & VT_BTYPE;
3456 if (bt == VT_BYTE || bt == VT_BOOL)
3457 r |= VT_LVAL_BYTE;
3458 else if (bt == VT_SHORT)
3459 r |= VT_LVAL_SHORT;
3460 else
3461 return r;
3462 if (t & VT_UNSIGNED)
3463 r |= VT_LVAL_UNSIGNED;
3464 return r;
3467 /* indirection with full error checking and bound check */
3468 ST_FUNC void indir(void)
3470 if ((vtop->type.t & VT_BTYPE) != VT_PTR) {
3471 if ((vtop->type.t & VT_BTYPE) == VT_FUNC)
3472 return;
3473 expect("pointer");
3475 if ((vtop->r & VT_LVAL) && !nocode_wanted)
3476 gv(RC_INT);
3477 vtop->type = *pointed_type(&vtop->type);
3478 /* Arrays and functions are never lvalues */
3479 if (!(vtop->type.t & VT_ARRAY) && !(vtop->type.t & VT_VLA)
3480 && (vtop->type.t & VT_BTYPE) != VT_FUNC) {
3481 vtop->r |= lvalue_type(vtop->type.t);
3482 /* if bound checking, the referenced pointer must be checked */
3483 #ifdef CONFIG_TCC_BCHECK
3484 if (tcc_state->do_bounds_check)
3485 vtop->r |= VT_MUSTBOUND;
3486 #endif
3490 /* pass a parameter to a function and do type checking and casting */
3491 static void gfunc_param_typed(Sym *func, Sym *arg)
3493 int func_type;
3494 CType type;
3496 func_type = func->c;
3497 if (func_type == FUNC_OLD ||
3498 (func_type == FUNC_ELLIPSIS && arg == NULL)) {
3499 /* default casting : only need to convert float to double */
3500 if ((vtop->type.t & VT_BTYPE) == VT_FLOAT) {
3501 type.t = VT_DOUBLE;
3502 gen_cast(&type);
3503 } else if (vtop->type.t & VT_BITFIELD) {
3504 type.t = vtop->type.t & (VT_BTYPE | VT_UNSIGNED);
3505 gen_cast(&type);
3507 } else if (arg == NULL) {
3508 tcc_error("too many arguments to function");
3509 } else {
3510 type = arg->type;
3511 type.t &= ~VT_CONSTANT; /* need to do that to avoid false warning */
3512 gen_assign_cast(&type);
3516 /* parse an expression of the form '(type)' or '(expr)' and return its
3517 type */
3518 static void parse_expr_type(CType *type)
3520 int n;
3521 AttributeDef ad;
3523 skip('(');
3524 if (parse_btype(type, &ad)) {
3525 type_decl(type, &ad, &n, TYPE_ABSTRACT);
3526 } else {
3527 expr_type(type);
3529 skip(')');
3532 static void parse_type(CType *type)
3534 AttributeDef ad;
3535 int n;
3537 if (!parse_btype(type, &ad)) {
3538 expect("type");
3540 type_decl(type, &ad, &n, TYPE_ABSTRACT);
3543 static void vpush_tokc(int t)
3545 CType type;
3546 type.t = t;
3547 type.ref = 0;
3548 vsetc(&type, VT_CONST, &tokc);
3551 ST_FUNC void unary(void)
3553 int n, t, align, size, r, sizeof_caller;
3554 CType type;
3555 Sym *s;
3556 AttributeDef ad;
3557 static int in_sizeof = 0;
3559 sizeof_caller = in_sizeof;
3560 in_sizeof = 0;
3561 /* XXX: GCC 2.95.3 does not generate a table although it should be
3562 better here */
3563 tok_next:
3564 switch(tok) {
3565 case TOK_EXTENSION:
3566 next();
3567 goto tok_next;
3568 case TOK_CINT:
3569 case TOK_CCHAR:
3570 case TOK_LCHAR:
3571 vpushi(tokc.i);
3572 next();
3573 break;
3574 case TOK_CUINT:
3575 vpush_tokc(VT_INT | VT_UNSIGNED);
3576 next();
3577 break;
3578 case TOK_CLLONG:
3579 vpush_tokc(VT_LLONG);
3580 next();
3581 break;
3582 case TOK_CULLONG:
3583 vpush_tokc(VT_LLONG | VT_UNSIGNED);
3584 next();
3585 break;
3586 case TOK_CFLOAT:
3587 vpush_tokc(VT_FLOAT);
3588 next();
3589 break;
3590 case TOK_CDOUBLE:
3591 vpush_tokc(VT_DOUBLE);
3592 next();
3593 break;
3594 case TOK_CLDOUBLE:
3595 vpush_tokc(VT_LDOUBLE);
3596 next();
3597 break;
3598 case TOK___FUNCTION__:
3599 if (!gnu_ext)
3600 goto tok_identifier;
3601 /* fall thru */
3602 case TOK___FUNC__:
3604 void *ptr;
3605 int len;
3606 /* special function name identifier */
3607 len = strlen(funcname) + 1;
3608 /* generate char[len] type */
3609 type.t = VT_BYTE;
3610 mk_pointer(&type);
3611 type.t |= VT_ARRAY;
3612 type.ref->c = len;
3613 vpush_ref(&type, data_section, data_section->data_offset, len);
3614 ptr = section_ptr_add(data_section, len);
3615 memcpy(ptr, funcname, len);
3616 next();
3618 break;
3619 case TOK_LSTR:
3620 #ifdef TCC_TARGET_PE
3621 t = VT_SHORT | VT_UNSIGNED;
3622 #else
3623 t = VT_INT;
3624 #endif
3625 goto str_init;
3626 case TOK_STR:
3627 /* string parsing */
3628 t = VT_BYTE;
3629 str_init:
3630 if (tcc_state->warn_write_strings)
3631 t |= VT_CONSTANT;
3632 type.t = t;
3633 mk_pointer(&type);
3634 type.t |= VT_ARRAY;
3635 memset(&ad, 0, sizeof(AttributeDef));
3636 decl_initializer_alloc(&type, &ad, VT_CONST, 2, 0, NULL, 0);
3637 break;
3638 case '(':
3639 next();
3640 /* cast ? */
3641 if (parse_btype(&type, &ad)) {
3642 type_decl(&type, &ad, &n, TYPE_ABSTRACT);
3643 skip(')');
3644 /* check ISOC99 compound literal */
3645 if (tok == '{') {
3646 /* data is allocated locally by default */
3647 if (global_expr)
3648 r = VT_CONST;
3649 else
3650 r = VT_LOCAL;
3651 /* all except arrays are lvalues */
3652 if (!(type.t & VT_ARRAY))
3653 r |= lvalue_type(type.t);
3654 memset(&ad, 0, sizeof(AttributeDef));
3655 decl_initializer_alloc(&type, &ad, r, 1, 0, NULL, 0);
3656 } else {
3657 if (sizeof_caller) {
3658 vpush(&type);
3659 return;
3661 unary();
3662 gen_cast(&type);
3664 } else if (tok == '{') {
3665 /* save all registers */
3666 save_regs(0);
3667 /* statement expression : we do not accept break/continue
3668 inside as GCC does */
3669 block(NULL, NULL, NULL, NULL, 0, 1);
3670 skip(')');
3671 } else {
3672 gexpr();
3673 skip(')');
3675 break;
3676 case '*':
3677 next();
3678 unary();
3679 indir();
3680 break;
3681 case '&':
3682 next();
3683 unary();
3684 /* functions names must be treated as function pointers,
3685 except for unary '&' and sizeof. Since we consider that
3686 functions are not lvalues, we only have to handle it
3687 there and in function calls. */
3688 /* arrays can also be used although they are not lvalues */
3689 if ((vtop->type.t & VT_BTYPE) != VT_FUNC &&
3690 !(vtop->type.t & VT_ARRAY) && !(vtop->type.t & VT_LLOCAL))
3691 test_lvalue();
3692 mk_pointer(&vtop->type);
3693 gaddrof();
3694 break;
3695 case '!':
3696 next();
3697 unary();
3698 if ((vtop->r & (VT_VALMASK | VT_LVAL | VT_SYM)) == VT_CONST) {
3699 CType boolean;
3700 boolean.t = VT_BOOL;
3701 gen_cast(&boolean);
3702 vtop->c.i = !vtop->c.i;
3703 } else if ((vtop->r & VT_VALMASK) == VT_CMP)
3704 vtop->c.i = vtop->c.i ^ 1;
3705 else {
3706 save_regs(1);
3707 vseti(VT_JMP, gvtst(1, 0));
3709 break;
3710 case '~':
3711 next();
3712 unary();
3713 vpushi(-1);
3714 gen_op('^');
3715 break;
3716 case '+':
3717 next();
3718 unary();
3719 if ((vtop->type.t & VT_BTYPE) == VT_PTR)
3720 tcc_error("pointer not accepted for unary plus");
3721 /* In order to force cast, we add zero, except for floating point
3722 where we really need an noop (otherwise -0.0 will be transformed
3723 into +0.0). */
3724 if (!is_float(vtop->type.t)) {
3725 vpushi(0);
3726 gen_op('+');
3728 break;
3729 case TOK_SIZEOF:
3730 case TOK_ALIGNOF1:
3731 case TOK_ALIGNOF2:
3732 t = tok;
3733 next();
3734 in_sizeof++;
3735 unary_type(&type); // Perform a in_sizeof = 0;
3736 size = type_size(&type, &align);
3737 if (t == TOK_SIZEOF) {
3738 if (!(type.t & VT_VLA)) {
3739 if (size < 0)
3740 tcc_error("sizeof applied to an incomplete type");
3741 vpushs(size);
3742 } else {
3743 vla_runtime_type_size(&type, &align);
3745 } else {
3746 vpushs(align);
3748 vtop->type.t |= VT_UNSIGNED;
3749 break;
3751 case TOK_builtin_types_compatible_p:
3753 CType type1, type2;
3754 next();
3755 skip('(');
3756 parse_type(&type1);
3757 skip(',');
3758 parse_type(&type2);
3759 skip(')');
3760 type1.t &= ~(VT_CONSTANT | VT_VOLATILE);
3761 type2.t &= ~(VT_CONSTANT | VT_VOLATILE);
3762 vpushi(is_compatible_types(&type1, &type2));
3764 break;
3765 case TOK_builtin_constant_p:
3767 int saved_nocode_wanted, res;
3768 next();
3769 skip('(');
3770 saved_nocode_wanted = nocode_wanted;
3771 nocode_wanted = 1;
3772 gexpr();
3773 res = (vtop->r & (VT_VALMASK | VT_LVAL | VT_SYM)) == VT_CONST;
3774 vpop();
3775 nocode_wanted = saved_nocode_wanted;
3776 skip(')');
3777 vpushi(res);
3779 break;
3780 case TOK_builtin_frame_address:
3782 int level;
3783 CType type;
3784 next();
3785 skip('(');
3786 if (tok != TOK_CINT || tokc.i < 0) {
3787 tcc_error("__builtin_frame_address only takes positive integers");
3789 level = tokc.i;
3790 next();
3791 skip(')');
3792 type.t = VT_VOID;
3793 mk_pointer(&type);
3794 vset(&type, VT_LOCAL, 0); /* local frame */
3795 while (level--) {
3796 mk_pointer(&vtop->type);
3797 indir(); /* -> parent frame */
3800 break;
3801 #ifdef TCC_TARGET_X86_64
3802 #ifdef TCC_TARGET_PE
3803 case TOK_builtin_va_start:
3805 next();
3806 skip('(');
3807 expr_eq();
3808 skip(',');
3809 expr_eq();
3810 skip(')');
3811 if ((vtop->r & VT_VALMASK) != VT_LOCAL)
3812 tcc_error("__builtin_va_start expects a local variable");
3813 vtop->r &= ~(VT_LVAL | VT_REF);
3814 vtop->type = char_pointer_type;
3815 vstore();
3817 break;
3818 #else
3819 case TOK_builtin_va_arg_types:
3821 CType type;
3822 next();
3823 skip('(');
3824 parse_type(&type);
3825 skip(')');
3826 vpushi(classify_x86_64_va_arg(&type));
3828 break;
3829 #endif
3830 #endif
3831 case TOK_INC:
3832 case TOK_DEC:
3833 t = tok;
3834 next();
3835 unary();
3836 inc(0, t);
3837 break;
3838 case '-':
3839 next();
3840 unary();
3841 t = vtop->type.t & VT_BTYPE;
3842 if (is_float(t)) {
3843 /* In IEEE negate(x) isn't subtract(0,x), but rather
3844 subtract(-0, x). */
3845 vpush(&vtop->type);
3846 if (t == VT_FLOAT)
3847 vtop->c.f = -0.0f;
3848 else if (t == VT_DOUBLE)
3849 vtop->c.d = -0.0;
3850 else
3851 vtop->c.ld = -0.0;
3852 } else
3853 vpushi(0);
3854 vswap();
3855 gen_op('-');
3856 break;
3857 case TOK_LAND:
3858 if (!gnu_ext)
3859 goto tok_identifier;
3860 next();
3861 /* allow to take the address of a label */
3862 if (tok < TOK_UIDENT)
3863 expect("label identifier");
3864 s = label_find(tok);
3865 if (!s) {
3866 s = label_push(&global_label_stack, tok, LABEL_FORWARD);
3867 } else {
3868 if (s->r == LABEL_DECLARED)
3869 s->r = LABEL_FORWARD;
3871 if (!s->type.t) {
3872 s->type.t = VT_VOID;
3873 mk_pointer(&s->type);
3874 s->type.t |= VT_STATIC;
3876 vset(&s->type, VT_CONST | VT_SYM, 0);
3877 vtop->sym = s;
3878 next();
3879 break;
3881 // special qnan , snan and infinity values
3882 case TOK___NAN__:
3883 vpush64(VT_DOUBLE, 0x7ff8000000000000ULL);
3884 next();
3885 break;
3886 case TOK___SNAN__:
3887 vpush64(VT_DOUBLE, 0x7ff0000000000001ULL);
3888 next();
3889 break;
3890 case TOK___INF__:
3891 vpush64(VT_DOUBLE, 0x7ff0000000000000ULL);
3892 next();
3893 break;
3895 default:
3896 tok_identifier:
3897 t = tok;
3898 next();
3899 if (t < TOK_UIDENT)
3900 expect("identifier");
3901 s = sym_find(t);
3902 if (!s) {
3903 if (tok != '(')
3904 tcc_error("'%s' undeclared", get_tok_str(t, NULL));
3905 /* for simple function calls, we tolerate undeclared
3906 external reference to int() function */
3907 if (tcc_state->warn_implicit_function_declaration)
3908 tcc_warning("implicit declaration of function '%s'",
3909 get_tok_str(t, NULL));
3910 s = external_global_sym(t, &func_old_type, 0);
3912 if ((s->type.t & (VT_STATIC | VT_INLINE | VT_BTYPE)) ==
3913 (VT_STATIC | VT_INLINE | VT_FUNC)) {
3914 /* if referencing an inline function, then we generate a
3915 symbol to it if not already done. It will have the
3916 effect to generate code for it at the end of the
3917 compilation unit. Inline function as always
3918 generated in the text section. */
3919 if (!s->c)
3920 put_extern_sym(s, text_section, 0, 0);
3921 r = VT_SYM | VT_CONST;
3922 } else {
3923 r = s->r;
3925 vset(&s->type, r, s->c);
3926 /* if forward reference, we must point to s */
3927 if (vtop->r & VT_SYM) {
3928 vtop->sym = s;
3929 vtop->c.ull = 0;
3931 break;
3934 /* post operations */
3935 while (1) {
3936 if (tok == TOK_INC || tok == TOK_DEC) {
3937 inc(1, tok);
3938 next();
3939 } else if (tok == '.' || tok == TOK_ARROW) {
3940 int qualifiers;
3941 /* field */
3942 if (tok == TOK_ARROW)
3943 indir();
3944 qualifiers = vtop->type.t & (VT_CONSTANT | VT_VOLATILE);
3945 test_lvalue();
3946 gaddrof();
3947 next();
3948 /* expect pointer on structure */
3949 if ((vtop->type.t & VT_BTYPE) != VT_STRUCT)
3950 expect("struct or union");
3951 s = vtop->type.ref;
3952 /* find field */
3953 tok |= SYM_FIELD;
3954 while ((s = s->next) != NULL) {
3955 if (s->v == tok)
3956 break;
3958 if (!s)
3959 tcc_error("field not found: %s", get_tok_str(tok & ~SYM_FIELD, NULL));
3960 /* add field offset to pointer */
3961 vtop->type = char_pointer_type; /* change type to 'char *' */
3962 vpushi(s->c);
3963 gen_op('+');
3964 /* change type to field type, and set to lvalue */
3965 vtop->type = s->type;
3966 vtop->type.t |= qualifiers;
3967 /* an array is never an lvalue */
3968 if (!(vtop->type.t & VT_ARRAY)) {
3969 vtop->r |= lvalue_type(vtop->type.t);
3970 #ifdef CONFIG_TCC_BCHECK
3971 /* if bound checking, the referenced pointer must be checked */
3972 if (tcc_state->do_bounds_check)
3973 vtop->r |= VT_MUSTBOUND;
3974 #endif
3976 next();
3977 } else if (tok == '[') {
3978 next();
3979 gexpr();
3980 gen_op('+');
3981 indir();
3982 skip(']');
3983 } else if (tok == '(') {
3984 SValue ret;
3985 Sym *sa;
3986 int nb_args, ret_nregs, ret_align, variadic;
3988 /* function call */
3989 if ((vtop->type.t & VT_BTYPE) != VT_FUNC) {
3990 /* pointer test (no array accepted) */
3991 if ((vtop->type.t & (VT_BTYPE | VT_ARRAY)) == VT_PTR) {
3992 vtop->type = *pointed_type(&vtop->type);
3993 if ((vtop->type.t & VT_BTYPE) != VT_FUNC)
3994 goto error_func;
3995 } else {
3996 error_func:
3997 expect("function pointer");
3999 } else {
4000 vtop->r &= ~VT_LVAL; /* no lvalue */
4002 /* get return type */
4003 s = vtop->type.ref;
4004 next();
4005 sa = s->next; /* first parameter */
4006 nb_args = 0;
4007 ret.r2 = VT_CONST;
4008 /* compute first implicit argument if a structure is returned */
4009 if ((s->type.t & VT_BTYPE) == VT_STRUCT) {
4010 variadic = (s->c == FUNC_ELLIPSIS);
4011 ret_nregs = gfunc_sret(&s->type, variadic, &ret.type,
4012 &ret_align);
4013 if (!ret_nregs) {
4014 /* get some space for the returned structure */
4015 size = type_size(&s->type, &align);
4016 loc = (loc - size) & -align;
4017 ret.type = s->type;
4018 ret.r = VT_LOCAL | VT_LVAL;
4019 /* pass it as 'int' to avoid structure arg passing
4020 problems */
4021 vseti(VT_LOCAL, loc);
4022 ret.c = vtop->c;
4023 nb_args++;
4025 } else {
4026 ret_nregs = 1;
4027 ret.type = s->type;
4030 if (ret_nregs) {
4031 /* return in register */
4032 if (is_float(ret.type.t)) {
4033 ret.r = reg_fret(ret.type.t);
4034 #ifdef TCC_TARGET_X86_64
4035 if ((ret.type.t & VT_BTYPE) == VT_QFLOAT)
4036 ret.r2 = REG_QRET;
4037 #endif
4038 } else {
4039 #ifdef TCC_TARGET_X86_64
4040 if ((ret.type.t & VT_BTYPE) == VT_QLONG)
4041 #else
4042 if ((ret.type.t & VT_BTYPE) == VT_LLONG)
4043 #endif
4044 ret.r2 = REG_LRET;
4045 ret.r = REG_IRET;
4047 ret.c.i = 0;
4049 if (tok != ')') {
4050 for(;;) {
4051 expr_eq();
4052 gfunc_param_typed(s, sa);
4053 nb_args++;
4054 if (sa)
4055 sa = sa->next;
4056 if (tok == ')')
4057 break;
4058 skip(',');
4061 if (sa)
4062 tcc_error("too few arguments to function");
4063 skip(')');
4064 if (!nocode_wanted) {
4065 gfunc_call(nb_args);
4066 } else {
4067 vtop -= (nb_args + 1);
4070 /* return value */
4071 for (r = ret.r + ret_nregs + !ret_nregs; r-- > ret.r;) {
4072 vsetc(&ret.type, r, &ret.c);
4073 vtop->r2 = ret.r2; /* Loop only happens when r2 is VT_CONST */
4076 /* handle packed struct return */
4077 if (((s->type.t & VT_BTYPE) == VT_STRUCT) && ret_nregs) {
4078 int addr, offset;
4080 size = type_size(&s->type, &align);
4081 loc = (loc - size) & -align;
4082 addr = loc;
4083 offset = 0;
4084 for (;;) {
4085 vset(&ret.type, VT_LOCAL | VT_LVAL, addr + offset);
4086 vswap();
4087 vstore();
4088 vtop--;
4089 if (--ret_nregs == 0)
4090 break;
4091 /* XXX: compatible with arm only: ret_align == register_size */
4092 offset += ret_align;
4094 vset(&s->type, VT_LOCAL | VT_LVAL, addr);
4096 } else {
4097 break;
4102 ST_FUNC void expr_prod(void)
4104 int t;
4106 unary();
4107 while (tok == '*' || tok == '/' || tok == '%') {
4108 t = tok;
4109 next();
4110 unary();
4111 gen_op(t);
4115 ST_FUNC void expr_sum(void)
4117 int t;
4119 expr_prod();
4120 while (tok == '+' || tok == '-') {
4121 t = tok;
4122 next();
4123 expr_prod();
4124 gen_op(t);
4128 static void expr_shift(void)
4130 int t;
4132 expr_sum();
4133 while (tok == TOK_SHL || tok == TOK_SAR) {
4134 t = tok;
4135 next();
4136 expr_sum();
4137 gen_op(t);
4141 static void expr_cmp(void)
4143 int t;
4145 expr_shift();
4146 while ((tok >= TOK_ULE && tok <= TOK_GT) ||
4147 tok == TOK_ULT || tok == TOK_UGE) {
4148 t = tok;
4149 next();
4150 expr_shift();
4151 gen_op(t);
4155 static void expr_cmpeq(void)
4157 int t;
4159 expr_cmp();
4160 while (tok == TOK_EQ || tok == TOK_NE) {
4161 t = tok;
4162 next();
4163 expr_cmp();
4164 gen_op(t);
4168 static void expr_and(void)
4170 expr_cmpeq();
4171 while (tok == '&') {
4172 next();
4173 expr_cmpeq();
4174 gen_op('&');
4178 static void expr_xor(void)
4180 expr_and();
4181 while (tok == '^') {
4182 next();
4183 expr_and();
4184 gen_op('^');
4188 static void expr_or(void)
4190 expr_xor();
4191 while (tok == '|') {
4192 next();
4193 expr_xor();
4194 gen_op('|');
4198 /* XXX: fix this mess */
4199 static void expr_land_const(void)
4201 expr_or();
4202 while (tok == TOK_LAND) {
4203 next();
4204 expr_or();
4205 gen_op(TOK_LAND);
4209 /* XXX: fix this mess */
4210 static void expr_lor_const(void)
4212 expr_land_const();
4213 while (tok == TOK_LOR) {
4214 next();
4215 expr_land_const();
4216 gen_op(TOK_LOR);
4220 /* only used if non constant */
4221 static void expr_land(void)
4223 int t;
4225 expr_or();
4226 if (tok == TOK_LAND) {
4227 t = 0;
4228 save_regs(1);
4229 for(;;) {
4230 t = gvtst(1, t);
4231 if (tok != TOK_LAND) {
4232 vseti(VT_JMPI, t);
4233 break;
4235 next();
4236 expr_or();
4241 static void expr_lor(void)
4243 int t;
4245 expr_land();
4246 if (tok == TOK_LOR) {
4247 t = 0;
4248 save_regs(1);
4249 for(;;) {
4250 t = gvtst(0, t);
4251 if (tok != TOK_LOR) {
4252 vseti(VT_JMP, t);
4253 break;
4255 next();
4256 expr_land();
4261 /* XXX: better constant handling */
4262 static void expr_cond(void)
4264 int tt, u, r1, r2, rc, t1, t2, bt1, bt2;
4265 SValue sv;
4266 CType type, type1, type2;
4268 if (const_wanted) {
4269 expr_lor_const();
4270 if (tok == '?') {
4271 CType boolean;
4272 int c;
4273 boolean.t = VT_BOOL;
4274 vdup();
4275 gen_cast(&boolean);
4276 c = vtop->c.i;
4277 vpop();
4278 next();
4279 if (tok != ':' || !gnu_ext) {
4280 vpop();
4281 gexpr();
4283 if (!c)
4284 vpop();
4285 skip(':');
4286 expr_cond();
4287 if (c)
4288 vpop();
4290 } else {
4291 expr_lor();
4292 if (tok == '?') {
4293 next();
4294 if (vtop != vstack) {
4295 /* needed to avoid having different registers saved in
4296 each branch */
4297 if (is_float(vtop->type.t)) {
4298 rc = RC_FLOAT;
4299 #ifdef TCC_TARGET_X86_64
4300 if ((vtop->type.t & VT_BTYPE) == VT_LDOUBLE) {
4301 rc = RC_ST0;
4303 #endif
4305 else
4306 rc = RC_INT;
4307 gv(rc);
4308 save_regs(1);
4310 if (tok == ':' && gnu_ext) {
4311 gv_dup();
4312 tt = gvtst(1, 0);
4313 } else {
4314 tt = gvtst(1, 0);
4315 gexpr();
4317 type1 = vtop->type;
4318 sv = *vtop; /* save value to handle it later */
4319 vtop--; /* no vpop so that FP stack is not flushed */
4320 skip(':');
4321 u = gjmp(0);
4322 gsym(tt);
4323 expr_cond();
4324 type2 = vtop->type;
4326 t1 = type1.t;
4327 bt1 = t1 & VT_BTYPE;
4328 t2 = type2.t;
4329 bt2 = t2 & VT_BTYPE;
4330 /* cast operands to correct type according to ISOC rules */
4331 if (is_float(bt1) || is_float(bt2)) {
4332 if (bt1 == VT_LDOUBLE || bt2 == VT_LDOUBLE) {
4333 type.t = VT_LDOUBLE;
4334 } else if (bt1 == VT_DOUBLE || bt2 == VT_DOUBLE) {
4335 type.t = VT_DOUBLE;
4336 } else {
4337 type.t = VT_FLOAT;
4339 } else if (bt1 == VT_LLONG || bt2 == VT_LLONG) {
4340 /* cast to biggest op */
4341 type.t = VT_LLONG;
4342 /* convert to unsigned if it does not fit in a long long */
4343 if ((t1 & (VT_BTYPE | VT_UNSIGNED)) == (VT_LLONG | VT_UNSIGNED) ||
4344 (t2 & (VT_BTYPE | VT_UNSIGNED)) == (VT_LLONG | VT_UNSIGNED))
4345 type.t |= VT_UNSIGNED;
4346 } else if (bt1 == VT_PTR || bt2 == VT_PTR) {
4347 /* If one is a null ptr constant the result type
4348 is the other. */
4349 if (is_null_pointer (vtop))
4350 type = type1;
4351 else if (is_null_pointer (&sv))
4352 type = type2;
4353 /* XXX: test pointer compatibility, C99 has more elaborate
4354 rules here. */
4355 else
4356 type = type1;
4357 } else if (bt1 == VT_FUNC || bt2 == VT_FUNC) {
4358 /* XXX: test function pointer compatibility */
4359 type = bt1 == VT_FUNC ? type1 : type2;
4360 } else if (bt1 == VT_STRUCT || bt2 == VT_STRUCT) {
4361 /* XXX: test structure compatibility */
4362 type = bt1 == VT_STRUCT ? type1 : type2;
4363 } else if (bt1 == VT_VOID || bt2 == VT_VOID) {
4364 /* NOTE: as an extension, we accept void on only one side */
4365 type.t = VT_VOID;
4366 } else {
4367 /* integer operations */
4368 type.t = VT_INT;
4369 /* convert to unsigned if it does not fit in an integer */
4370 if ((t1 & (VT_BTYPE | VT_UNSIGNED)) == (VT_INT | VT_UNSIGNED) ||
4371 (t2 & (VT_BTYPE | VT_UNSIGNED)) == (VT_INT | VT_UNSIGNED))
4372 type.t |= VT_UNSIGNED;
4375 /* now we convert second operand */
4376 gen_cast(&type);
4377 if (VT_STRUCT == (vtop->type.t & VT_BTYPE))
4378 gaddrof();
4379 rc = RC_INT;
4380 if (is_float(type.t)) {
4381 rc = RC_FLOAT;
4382 #ifdef TCC_TARGET_X86_64
4383 if ((type.t & VT_BTYPE) == VT_LDOUBLE) {
4384 rc = RC_ST0;
4386 #endif
4387 } else if ((type.t & VT_BTYPE) == VT_LLONG) {
4388 /* for long longs, we use fixed registers to avoid having
4389 to handle a complicated move */
4390 rc = RC_IRET;
4393 r2 = gv(rc);
4394 /* this is horrible, but we must also convert first
4395 operand */
4396 tt = gjmp(0);
4397 gsym(u);
4398 /* put again first value and cast it */
4399 *vtop = sv;
4400 gen_cast(&type);
4401 if (VT_STRUCT == (vtop->type.t & VT_BTYPE))
4402 gaddrof();
4403 r1 = gv(rc);
4404 move_reg(r2, r1, type.t);
4405 vtop->r = r2;
4406 gsym(tt);
4411 static void expr_eq(void)
4413 int t;
4415 expr_cond();
4416 if (tok == '=' ||
4417 (tok >= TOK_A_MOD && tok <= TOK_A_DIV) ||
4418 tok == TOK_A_XOR || tok == TOK_A_OR ||
4419 tok == TOK_A_SHL || tok == TOK_A_SAR) {
4420 test_lvalue();
4421 t = tok;
4422 next();
4423 if (t == '=') {
4424 expr_eq();
4425 } else {
4426 vdup();
4427 expr_eq();
4428 gen_op(t & 0x7f);
4430 vstore();
4434 ST_FUNC void gexpr(void)
4436 while (1) {
4437 expr_eq();
4438 if (tok != ',')
4439 break;
4440 vpop();
4441 next();
4445 /* parse an expression and return its type without any side effect. */
4446 static void expr_type(CType *type)
4448 int saved_nocode_wanted;
4450 saved_nocode_wanted = nocode_wanted;
4451 nocode_wanted = 1;
4452 gexpr();
4453 *type = vtop->type;
4454 vpop();
4455 nocode_wanted = saved_nocode_wanted;
4458 /* parse a unary expression and return its type without any side
4459 effect. */
4460 static void unary_type(CType *type)
4462 int a;
4464 a = nocode_wanted;
4465 nocode_wanted = 1;
4466 unary();
4467 *type = vtop->type;
4468 vpop();
4469 nocode_wanted = a;
4472 /* parse a constant expression and return value in vtop. */
4473 static void expr_const1(void)
4475 int a;
4476 a = const_wanted;
4477 const_wanted = 1;
4478 expr_cond();
4479 const_wanted = a;
4482 /* parse an integer constant and return its value. */
4483 ST_FUNC int expr_const(void)
4485 int c;
4486 expr_const1();
4487 if ((vtop->r & (VT_VALMASK | VT_LVAL | VT_SYM)) != VT_CONST)
4488 expect("constant expression");
4489 c = vtop->c.i;
4490 vpop();
4491 return c;
4494 /* return the label token if current token is a label, otherwise
4495 return zero */
4496 static int is_label(void)
4498 int last_tok;
4500 /* fast test first */
4501 if (tok < TOK_UIDENT)
4502 return 0;
4503 /* no need to save tokc because tok is an identifier */
4504 last_tok = tok;
4505 next();
4506 if (tok == ':') {
4507 next();
4508 return last_tok;
4509 } else {
4510 unget_tok(last_tok);
4511 return 0;
4515 static void label_or_decl(int l)
4517 int last_tok;
4519 /* fast test first */
4520 if (tok >= TOK_UIDENT)
4522 /* no need to save tokc because tok is an identifier */
4523 last_tok = tok;
4524 next();
4525 if (tok == ':') {
4526 unget_tok(last_tok);
4527 return;
4529 unget_tok(last_tok);
4531 decl(l);
4534 static void block(int *bsym, int *csym, int *case_sym, int *def_sym,
4535 int case_reg, int is_expr)
4537 int a, b, c, d;
4538 Sym *s, *frame_bottom;
4540 /* generate line number info */
4541 if (tcc_state->do_debug &&
4542 (last_line_num != file->line_num || last_ind != ind)) {
4543 put_stabn(N_SLINE, 0, file->line_num, ind - func_ind);
4544 last_ind = ind;
4545 last_line_num = file->line_num;
4548 if (is_expr) {
4549 /* default return value is (void) */
4550 vpushi(0);
4551 vtop->type.t = VT_VOID;
4554 if (tok == TOK_IF) {
4555 /* if test */
4556 next();
4557 skip('(');
4558 gexpr();
4559 skip(')');
4560 a = gvtst(1, 0);
4561 block(bsym, csym, case_sym, def_sym, case_reg, 0);
4562 c = tok;
4563 if (c == TOK_ELSE) {
4564 next();
4565 d = gjmp(0);
4566 gsym(a);
4567 block(bsym, csym, case_sym, def_sym, case_reg, 0);
4568 gsym(d); /* patch else jmp */
4569 } else
4570 gsym(a);
4571 } else if (tok == TOK_WHILE) {
4572 next();
4573 d = ind;
4574 skip('(');
4575 gexpr();
4576 skip(')');
4577 a = gvtst(1, 0);
4578 b = 0;
4579 block(&a, &b, case_sym, def_sym, case_reg, 0);
4580 gjmp_addr(d);
4581 gsym(a);
4582 gsym_addr(b, d);
4583 } else if (tok == '{') {
4584 Sym *llabel;
4585 int block_vla_sp_loc, *saved_vla_sp_loc, saved_vla_flags;
4587 next();
4588 /* record local declaration stack position */
4589 s = local_stack;
4590 frame_bottom = sym_push2(&local_stack, SYM_FIELD, 0, 0);
4591 frame_bottom->next = scope_stack_bottom;
4592 scope_stack_bottom = frame_bottom;
4593 llabel = local_label_stack;
4595 /* save VLA state */
4596 block_vla_sp_loc = *(saved_vla_sp_loc = vla_sp_loc);
4597 if (saved_vla_sp_loc != &vla_sp_root_loc)
4598 vla_sp_loc = &block_vla_sp_loc;
4600 saved_vla_flags = vla_flags;
4601 vla_flags |= VLA_NEED_NEW_FRAME;
4603 /* handle local labels declarations */
4604 if (tok == TOK_LABEL) {
4605 next();
4606 for(;;) {
4607 if (tok < TOK_UIDENT)
4608 expect("label identifier");
4609 label_push(&local_label_stack, tok, LABEL_DECLARED);
4610 next();
4611 if (tok == ',') {
4612 next();
4613 } else {
4614 skip(';');
4615 break;
4619 while (tok != '}') {
4620 label_or_decl(VT_LOCAL);
4621 if (tok != '}') {
4622 if (is_expr)
4623 vpop();
4624 block(bsym, csym, case_sym, def_sym, case_reg, is_expr);
4627 /* pop locally defined labels */
4628 label_pop(&local_label_stack, llabel);
4629 if(is_expr) {
4630 /* XXX: this solution makes only valgrind happy...
4631 triggered by gcc.c-torture/execute/20000917-1.c */
4632 Sym *p;
4633 switch(vtop->type.t & VT_BTYPE) {
4634 case VT_PTR:
4635 case VT_STRUCT:
4636 case VT_ENUM:
4637 case VT_FUNC:
4638 for(p=vtop->type.ref;p;p=p->prev)
4639 if(p->prev==s)
4640 tcc_error("unsupported expression type");
4643 /* pop locally defined symbols */
4644 scope_stack_bottom = scope_stack_bottom->next;
4645 sym_pop(&local_stack, s);
4647 /* Pop VLA frames and restore stack pointer if required */
4648 if (saved_vla_sp_loc != &vla_sp_root_loc)
4649 *saved_vla_sp_loc = block_vla_sp_loc;
4650 if (vla_sp_loc != (saved_vla_sp_loc == &vla_sp_root_loc ? &vla_sp_root_loc : &block_vla_sp_loc)) {
4651 vla_sp_loc = saved_vla_sp_loc;
4652 gen_vla_sp_restore(*vla_sp_loc);
4654 vla_flags = (vla_flags & ~VLA_SCOPE_FLAGS) | (saved_vla_flags & VLA_SCOPE_FLAGS);
4656 next();
4657 } else if (tok == TOK_RETURN) {
4658 next();
4659 if (tok != ';') {
4660 gexpr();
4661 gen_assign_cast(&func_vt);
4662 if ((func_vt.t & VT_BTYPE) == VT_STRUCT) {
4663 CType type, ret_type;
4664 int ret_align, ret_nregs;
4665 ret_nregs = gfunc_sret(&func_vt, func_var, &ret_type,
4666 &ret_align);
4667 if (0 == ret_nregs) {
4668 /* if returning structure, must copy it to implicit
4669 first pointer arg location */
4670 type = func_vt;
4671 mk_pointer(&type);
4672 vset(&type, VT_LOCAL | VT_LVAL, func_vc);
4673 indir();
4674 vswap();
4675 /* copy structure value to pointer */
4676 vstore();
4677 } else {
4678 /* returning structure packed into registers */
4679 int r, size, addr, align;
4680 size = type_size(&func_vt,&align);
4681 if ((vtop->r != (VT_LOCAL | VT_LVAL) || (vtop->c.i & (ret_align-1)))
4682 && (align & (ret_align-1))) {
4683 loc = (loc - size) & -align;
4684 addr = loc;
4685 type = func_vt;
4686 vset(&type, VT_LOCAL | VT_LVAL, addr);
4687 vswap();
4688 vstore();
4689 vset(&ret_type, VT_LOCAL | VT_LVAL, addr);
4691 vtop->type = ret_type;
4692 if (is_float(ret_type.t))
4693 r = rc_fret(ret_type.t);
4694 else
4695 r = RC_IRET;
4697 for (;;) {
4698 gv(r);
4699 if (--ret_nregs == 0)
4700 break;
4701 /* We assume that when a structure is returned in multiple
4702 registers, their classes are consecutive values of the
4703 suite s(n) = 2^n */
4704 r <<= 1;
4705 /* XXX: compatible with arm only: ret_align == register_size */
4706 vtop->c.i += ret_align;
4707 vtop->r = VT_LOCAL | VT_LVAL;
4710 } else if (is_float(func_vt.t)) {
4711 gv(rc_fret(func_vt.t));
4712 } else {
4713 gv(RC_IRET);
4715 vtop--; /* NOT vpop() because on x86 it would flush the fp stack */
4717 skip(';');
4718 rsym = gjmp(rsym); /* jmp */
4719 } else if (tok == TOK_BREAK) {
4720 /* compute jump */
4721 if (!bsym)
4722 tcc_error("cannot break");
4723 *bsym = gjmp(*bsym);
4724 next();
4725 skip(';');
4726 } else if (tok == TOK_CONTINUE) {
4727 /* compute jump */
4728 if (!csym)
4729 tcc_error("cannot continue");
4730 *csym = gjmp(*csym);
4731 next();
4732 skip(';');
4733 } else if (tok == TOK_FOR) {
4734 int e;
4735 next();
4736 skip('(');
4737 s = local_stack;
4738 frame_bottom = sym_push2(&local_stack, SYM_FIELD, 0, 0);
4739 frame_bottom->next = scope_stack_bottom;
4740 scope_stack_bottom = frame_bottom;
4741 if (tok != ';') {
4742 /* c99 for-loop init decl? */
4743 if (!decl0(VT_LOCAL, 1)) {
4744 /* no, regular for-loop init expr */
4745 gexpr();
4746 vpop();
4749 skip(';');
4750 d = ind;
4751 c = ind;
4752 a = 0;
4753 b = 0;
4754 if (tok != ';') {
4755 gexpr();
4756 a = gvtst(1, 0);
4758 skip(';');
4759 if (tok != ')') {
4760 e = gjmp(0);
4761 c = ind;
4762 gexpr();
4763 vpop();
4764 gjmp_addr(d);
4765 gsym(e);
4767 skip(')');
4768 block(&a, &b, case_sym, def_sym, case_reg, 0);
4769 gjmp_addr(c);
4770 gsym(a);
4771 gsym_addr(b, c);
4772 scope_stack_bottom = scope_stack_bottom->next;
4773 sym_pop(&local_stack, s);
4774 } else
4775 if (tok == TOK_DO) {
4776 next();
4777 a = 0;
4778 b = 0;
4779 d = ind;
4780 block(&a, &b, case_sym, def_sym, case_reg, 0);
4781 skip(TOK_WHILE);
4782 skip('(');
4783 gsym(b);
4784 gexpr();
4785 c = gvtst(0, 0);
4786 gsym_addr(c, d);
4787 skip(')');
4788 gsym(a);
4789 skip(';');
4790 } else
4791 if (tok == TOK_SWITCH) {
4792 next();
4793 skip('(');
4794 gexpr();
4795 /* XXX: other types than integer */
4796 case_reg = gv(RC_INT);
4797 vpop();
4798 skip(')');
4799 a = 0;
4800 b = gjmp(0); /* jump to first case */
4801 c = 0;
4802 block(&a, csym, &b, &c, case_reg, 0);
4803 /* if no default, jmp after switch */
4804 if (c == 0)
4805 c = ind;
4806 /* default label */
4807 gsym_addr(b, c);
4808 /* break label */
4809 gsym(a);
4810 } else
4811 if (tok == TOK_CASE) {
4812 int v1, v2;
4813 if (!case_sym)
4814 expect("switch");
4815 next();
4816 v1 = expr_const();
4817 v2 = v1;
4818 if (gnu_ext && tok == TOK_DOTS) {
4819 next();
4820 v2 = expr_const();
4821 if (v2 < v1)
4822 tcc_warning("empty case range");
4824 /* since a case is like a label, we must skip it with a jmp */
4825 b = gjmp(0);
4826 gsym(*case_sym);
4827 vseti(case_reg, 0);
4828 vpushi(v1);
4829 if (v1 == v2) {
4830 gen_op(TOK_EQ);
4831 *case_sym = gtst(1, 0);
4832 } else {
4833 gen_op(TOK_GE);
4834 *case_sym = gtst(1, 0);
4835 vseti(case_reg, 0);
4836 vpushi(v2);
4837 gen_op(TOK_LE);
4838 *case_sym = gtst(1, *case_sym);
4840 gsym(b);
4841 skip(':');
4842 is_expr = 0;
4843 goto block_after_label;
4844 } else
4845 if (tok == TOK_DEFAULT) {
4846 next();
4847 skip(':');
4848 if (!def_sym)
4849 expect("switch");
4850 if (*def_sym)
4851 tcc_error("too many 'default'");
4852 *def_sym = ind;
4853 is_expr = 0;
4854 goto block_after_label;
4855 } else
4856 if (tok == TOK_GOTO) {
4857 next();
4858 if (tok == '*' && gnu_ext) {
4859 /* computed goto */
4860 next();
4861 gexpr();
4862 if ((vtop->type.t & VT_BTYPE) != VT_PTR)
4863 expect("pointer");
4864 ggoto();
4865 } else if (tok >= TOK_UIDENT) {
4866 s = label_find(tok);
4867 /* put forward definition if needed */
4868 if (!s) {
4869 s = label_push(&global_label_stack, tok, LABEL_FORWARD);
4870 } else {
4871 if (s->r == LABEL_DECLARED)
4872 s->r = LABEL_FORWARD;
4874 /* label already defined */
4875 if (vla_flags & VLA_IN_SCOPE) {
4876 /* If VLAs are in use, save the current stack pointer and
4877 reset the stack pointer to what it was at function entry
4878 (label will restore stack pointer in inner scopes) */
4879 vla_sp_save();
4880 gen_vla_sp_restore(vla_sp_root_loc);
4882 if (s->r & LABEL_FORWARD)
4883 s->jnext = gjmp(s->jnext);
4884 else
4885 gjmp_addr(s->jnext);
4886 next();
4887 } else {
4888 expect("label identifier");
4890 skip(';');
4891 } else if (tok == TOK_ASM1 || tok == TOK_ASM2 || tok == TOK_ASM3) {
4892 asm_instr();
4893 } else {
4894 b = is_label();
4895 if (b) {
4896 /* label case */
4897 if (vla_flags & VLA_IN_SCOPE) {
4898 /* save/restore stack pointer across label
4899 this is a no-op when combined with the load immediately
4900 after the label unless we arrive via goto */
4901 vla_sp_save();
4903 s = label_find(b);
4904 if (s) {
4905 if (s->r == LABEL_DEFINED)
4906 tcc_error("duplicate label '%s'", get_tok_str(s->v, NULL));
4907 gsym(s->jnext);
4908 s->r = LABEL_DEFINED;
4909 } else {
4910 s = label_push(&global_label_stack, b, LABEL_DEFINED);
4912 s->jnext = ind;
4913 if (vla_flags & VLA_IN_SCOPE) {
4914 gen_vla_sp_restore(*vla_sp_loc);
4915 vla_flags |= VLA_NEED_NEW_FRAME;
4917 /* we accept this, but it is a mistake */
4918 block_after_label:
4919 if (tok == '}') {
4920 tcc_warning("deprecated use of label at end of compound statement");
4921 } else {
4922 if (is_expr)
4923 vpop();
4924 block(bsym, csym, case_sym, def_sym, case_reg, is_expr);
4926 } else {
4927 /* expression case */
4928 if (tok != ';') {
4929 if (is_expr) {
4930 vpop();
4931 gexpr();
4932 } else {
4933 gexpr();
4934 vpop();
4937 skip(';');
4942 /* t is the array or struct type. c is the array or struct
4943 address. cur_index/cur_field is the pointer to the current
4944 value. 'size_only' is true if only size info is needed (only used
4945 in arrays) */
4946 static void decl_designator(CType *type, Section *sec, unsigned long c,
4947 int *cur_index, Sym **cur_field,
4948 int size_only)
4950 Sym *s, *f;
4951 int notfirst, index, index_last, align, l, nb_elems, elem_size;
4952 CType type1;
4954 notfirst = 0;
4955 elem_size = 0;
4956 nb_elems = 1;
4957 if (gnu_ext && (l = is_label()) != 0)
4958 goto struct_field;
4959 while (tok == '[' || tok == '.') {
4960 if (tok == '[') {
4961 if (!(type->t & VT_ARRAY))
4962 expect("array type");
4963 s = type->ref;
4964 next();
4965 index = expr_const();
4966 if (index < 0 || (s->c >= 0 && index >= s->c))
4967 expect("invalid index");
4968 if (tok == TOK_DOTS && gnu_ext) {
4969 next();
4970 index_last = expr_const();
4971 if (index_last < 0 ||
4972 (s->c >= 0 && index_last >= s->c) ||
4973 index_last < index)
4974 expect("invalid index");
4975 } else {
4976 index_last = index;
4978 skip(']');
4979 if (!notfirst)
4980 *cur_index = index_last;
4981 type = pointed_type(type);
4982 elem_size = type_size(type, &align);
4983 c += index * elem_size;
4984 /* NOTE: we only support ranges for last designator */
4985 nb_elems = index_last - index + 1;
4986 if (nb_elems != 1) {
4987 notfirst = 1;
4988 break;
4990 } else {
4991 next();
4992 l = tok;
4993 next();
4994 struct_field:
4995 if ((type->t & VT_BTYPE) != VT_STRUCT)
4996 expect("struct/union type");
4997 s = type->ref;
4998 l |= SYM_FIELD;
4999 f = s->next;
5000 while (f) {
5001 if (f->v == l)
5002 break;
5003 f = f->next;
5005 if (!f)
5006 expect("field");
5007 if (!notfirst)
5008 *cur_field = f;
5009 /* XXX: fix this mess by using explicit storage field */
5010 type1 = f->type;
5011 type1.t |= (type->t & ~VT_TYPE);
5012 type = &type1;
5013 c += f->c;
5015 notfirst = 1;
5017 if (notfirst) {
5018 if (tok == '=') {
5019 next();
5020 } else {
5021 if (!gnu_ext)
5022 expect("=");
5024 } else {
5025 if (type->t & VT_ARRAY) {
5026 index = *cur_index;
5027 type = pointed_type(type);
5028 c += index * type_size(type, &align);
5029 } else {
5030 f = *cur_field;
5031 if (!f)
5032 tcc_error("too many field init");
5033 /* XXX: fix this mess by using explicit storage field */
5034 type1 = f->type;
5035 type1.t |= (type->t & ~VT_TYPE);
5036 type = &type1;
5037 c += f->c;
5040 decl_initializer(type, sec, c, 0, size_only);
5042 /* XXX: make it more general */
5043 if (!size_only && nb_elems > 1) {
5044 unsigned long c_end;
5045 uint8_t *src, *dst;
5046 int i;
5048 if (!sec)
5049 tcc_error("range init not supported yet for dynamic storage");
5050 c_end = c + nb_elems * elem_size;
5051 if (c_end > sec->data_allocated)
5052 section_realloc(sec, c_end);
5053 src = sec->data + c;
5054 dst = src;
5055 for(i = 1; i < nb_elems; i++) {
5056 dst += elem_size;
5057 memcpy(dst, src, elem_size);
5062 #define EXPR_VAL 0
5063 #define EXPR_CONST 1
5064 #define EXPR_ANY 2
5066 /* store a value or an expression directly in global data or in local array */
5067 static void init_putv(CType *type, Section *sec, unsigned long c,
5068 int v, int expr_type)
5070 int saved_global_expr, bt, bit_pos, bit_size;
5071 void *ptr;
5072 unsigned long long bit_mask;
5073 CType dtype;
5075 switch(expr_type) {
5076 case EXPR_VAL:
5077 vpushi(v);
5078 break;
5079 case EXPR_CONST:
5080 /* compound literals must be allocated globally in this case */
5081 saved_global_expr = global_expr;
5082 global_expr = 1;
5083 expr_const1();
5084 global_expr = saved_global_expr;
5085 /* NOTE: symbols are accepted */
5086 if ((vtop->r & (VT_VALMASK | VT_LVAL)) != VT_CONST)
5087 tcc_error("initializer element is not constant");
5088 break;
5089 case EXPR_ANY:
5090 expr_eq();
5091 break;
5094 dtype = *type;
5095 dtype.t &= ~VT_CONSTANT; /* need to do that to avoid false warning */
5097 if (sec) {
5098 /* XXX: not portable */
5099 /* XXX: generate error if incorrect relocation */
5100 gen_assign_cast(&dtype);
5101 bt = type->t & VT_BTYPE;
5102 /* we'll write at most 12 bytes */
5103 if (c + 12 > sec->data_allocated) {
5104 section_realloc(sec, c + 12);
5106 ptr = sec->data + c;
5107 /* XXX: make code faster ? */
5108 if (!(type->t & VT_BITFIELD)) {
5109 bit_pos = 0;
5110 bit_size = 32;
5111 bit_mask = -1LL;
5112 } else {
5113 bit_pos = (vtop->type.t >> VT_STRUCT_SHIFT) & 0x3f;
5114 bit_size = (vtop->type.t >> (VT_STRUCT_SHIFT + 6)) & 0x3f;
5115 bit_mask = (1LL << bit_size) - 1;
5117 if ((vtop->r & VT_SYM) &&
5118 (bt == VT_BYTE ||
5119 bt == VT_SHORT ||
5120 bt == VT_DOUBLE ||
5121 bt == VT_LDOUBLE ||
5122 bt == VT_LLONG ||
5123 (bt == VT_INT && bit_size != 32)))
5124 tcc_error("initializer element is not computable at load time");
5125 switch(bt) {
5126 case VT_BOOL:
5127 vtop->c.i = (vtop->c.i != 0);
5128 case VT_BYTE:
5129 *(char *)ptr |= (vtop->c.i & bit_mask) << bit_pos;
5130 break;
5131 case VT_SHORT:
5132 *(short *)ptr |= (vtop->c.i & bit_mask) << bit_pos;
5133 break;
5134 case VT_DOUBLE:
5135 *(double *)ptr = vtop->c.d;
5136 break;
5137 case VT_LDOUBLE:
5138 *(long double *)ptr = vtop->c.ld;
5139 break;
5140 case VT_LLONG:
5141 *(long long *)ptr |= (vtop->c.ll & bit_mask) << bit_pos;
5142 break;
5143 case VT_PTR:
5144 if (vtop->r & VT_SYM) {
5145 greloc(sec, vtop->sym, c, R_DATA_PTR);
5147 *(addr_t *)ptr |= (vtop->c.ull & bit_mask) << bit_pos;
5148 break;
5149 default:
5150 if (vtop->r & VT_SYM) {
5151 greloc(sec, vtop->sym, c, R_DATA_PTR);
5153 *(int *)ptr |= (vtop->c.i & bit_mask) << bit_pos;
5154 break;
5156 vtop--;
5157 } else {
5158 vset(&dtype, VT_LOCAL|VT_LVAL, c);
5159 vswap();
5160 vstore();
5161 vpop();
5165 /* put zeros for variable based init */
5166 static void init_putz(CType *t, Section *sec, unsigned long c, int size)
5168 if (sec) {
5169 /* nothing to do because globals are already set to zero */
5170 } else {
5171 vpush_global_sym(&func_old_type, TOK_memset);
5172 vseti(VT_LOCAL, c);
5173 #ifdef TCC_TARGET_ARM
5174 vpushs(size);
5175 vpushi(0);
5176 #else
5177 vpushi(0);
5178 vpushs(size);
5179 #endif
5180 gfunc_call(3);
5184 /* 't' contains the type and storage info. 'c' is the offset of the
5185 object in section 'sec'. If 'sec' is NULL, it means stack based
5186 allocation. 'first' is true if array '{' must be read (multi
5187 dimension implicit array init handling). 'size_only' is true if
5188 size only evaluation is wanted (only for arrays). */
5189 static void decl_initializer(CType *type, Section *sec, unsigned long c,
5190 int first, int size_only)
5192 int index, array_length, n, no_oblock, nb, parlevel, parlevel1, i;
5193 int size1, align1, expr_type;
5194 Sym *s, *f;
5195 CType *t1;
5197 if (type->t & VT_VLA) {
5198 int a;
5200 /* save current stack pointer */
5201 if (vla_flags & VLA_NEED_NEW_FRAME) {
5202 vla_sp_save();
5203 vla_flags = VLA_IN_SCOPE;
5204 vla_sp_loc = &vla_sp_loc_tmp;
5207 vla_runtime_type_size(type, &a);
5208 gen_vla_alloc(type, a);
5209 vset(type, VT_LOCAL|VT_LVAL, c);
5210 vswap();
5211 vstore();
5212 vpop();
5213 } else if (type->t & VT_ARRAY) {
5214 s = type->ref;
5215 n = s->c;
5216 array_length = 0;
5217 t1 = pointed_type(type);
5218 size1 = type_size(t1, &align1);
5220 no_oblock = 1;
5221 if ((first && tok != TOK_LSTR && tok != TOK_STR) ||
5222 tok == '{') {
5223 if (tok != '{')
5224 tcc_error("character array initializer must be a literal,"
5225 " optionally enclosed in braces");
5226 skip('{');
5227 no_oblock = 0;
5230 /* only parse strings here if correct type (otherwise: handle
5231 them as ((w)char *) expressions */
5232 if ((tok == TOK_LSTR &&
5233 #ifdef TCC_TARGET_PE
5234 (t1->t & VT_BTYPE) == VT_SHORT && (t1->t & VT_UNSIGNED)
5235 #else
5236 (t1->t & VT_BTYPE) == VT_INT
5237 #endif
5238 ) || (tok == TOK_STR && (t1->t & VT_BTYPE) == VT_BYTE)) {
5239 while (tok == TOK_STR || tok == TOK_LSTR) {
5240 int cstr_len, ch;
5241 CString *cstr;
5243 cstr = tokc.cstr;
5244 /* compute maximum number of chars wanted */
5245 if (tok == TOK_STR)
5246 cstr_len = cstr->size;
5247 else
5248 cstr_len = cstr->size / sizeof(nwchar_t);
5249 cstr_len--;
5250 nb = cstr_len;
5251 if (n >= 0 && nb > (n - array_length))
5252 nb = n - array_length;
5253 if (!size_only) {
5254 if (cstr_len > nb)
5255 tcc_warning("initializer-string for array is too long");
5256 /* in order to go faster for common case (char
5257 string in global variable, we handle it
5258 specifically */
5259 if (sec && tok == TOK_STR && size1 == 1) {
5260 memcpy(sec->data + c + array_length, cstr->data, nb);
5261 } else {
5262 for(i=0;i<nb;i++) {
5263 if (tok == TOK_STR)
5264 ch = ((unsigned char *)cstr->data)[i];
5265 else
5266 ch = ((nwchar_t *)cstr->data)[i];
5267 init_putv(t1, sec, c + (array_length + i) * size1,
5268 ch, EXPR_VAL);
5272 array_length += nb;
5273 next();
5275 /* only add trailing zero if enough storage (no
5276 warning in this case since it is standard) */
5277 if (n < 0 || array_length < n) {
5278 if (!size_only) {
5279 init_putv(t1, sec, c + (array_length * size1), 0, EXPR_VAL);
5281 array_length++;
5283 } else {
5284 index = 0;
5285 while (tok != '}') {
5286 decl_designator(type, sec, c, &index, NULL, size_only);
5287 if (n >= 0 && index >= n)
5288 tcc_error("index too large");
5289 /* must put zero in holes (note that doing it that way
5290 ensures that it even works with designators) */
5291 if (!size_only && array_length < index) {
5292 init_putz(t1, sec, c + array_length * size1,
5293 (index - array_length) * size1);
5295 index++;
5296 if (index > array_length)
5297 array_length = index;
5298 /* special test for multi dimensional arrays (may not
5299 be strictly correct if designators are used at the
5300 same time) */
5301 if (index >= n && no_oblock)
5302 break;
5303 if (tok == '}')
5304 break;
5305 skip(',');
5308 if (!no_oblock)
5309 skip('}');
5310 /* put zeros at the end */
5311 if (!size_only && n >= 0 && array_length < n) {
5312 init_putz(t1, sec, c + array_length * size1,
5313 (n - array_length) * size1);
5315 /* patch type size if needed */
5316 if (n < 0)
5317 s->c = array_length;
5318 } else if ((type->t & VT_BTYPE) == VT_STRUCT &&
5319 (sec || !first || tok == '{')) {
5320 int par_count;
5322 /* NOTE: the previous test is a specific case for automatic
5323 struct/union init */
5324 /* XXX: union needs only one init */
5326 /* XXX: this test is incorrect for local initializers
5327 beginning with ( without {. It would be much more difficult
5328 to do it correctly (ideally, the expression parser should
5329 be used in all cases) */
5330 par_count = 0;
5331 if (tok == '(') {
5332 AttributeDef ad1;
5333 CType type1;
5334 next();
5335 while (tok == '(') {
5336 par_count++;
5337 next();
5339 if (!parse_btype(&type1, &ad1))
5340 expect("cast");
5341 type_decl(&type1, &ad1, &n, TYPE_ABSTRACT);
5342 #if 0
5343 if (!is_assignable_types(type, &type1))
5344 tcc_error("invalid type for cast");
5345 #endif
5346 skip(')');
5348 no_oblock = 1;
5349 if (first || tok == '{') {
5350 skip('{');
5351 no_oblock = 0;
5353 s = type->ref;
5354 f = s->next;
5355 array_length = 0;
5356 index = 0;
5357 n = s->c;
5358 while (tok != '}') {
5359 decl_designator(type, sec, c, NULL, &f, size_only);
5360 index = f->c;
5361 if (!size_only && array_length < index) {
5362 init_putz(type, sec, c + array_length,
5363 index - array_length);
5365 index = index + type_size(&f->type, &align1);
5366 if (index > array_length)
5367 array_length = index;
5369 /* gr: skip fields from same union - ugly. */
5370 while (f->next) {
5371 ///printf("index: %2d %08x -- %2d %08x\n", f->c, f->type.t, f->next->c, f->next->type.t);
5372 /* test for same offset */
5373 if (f->next->c != f->c)
5374 break;
5375 /* if yes, test for bitfield shift */
5376 if ((f->type.t & VT_BITFIELD) && (f->next->type.t & VT_BITFIELD)) {
5377 int bit_pos_1 = (f->type.t >> VT_STRUCT_SHIFT) & 0x3f;
5378 int bit_pos_2 = (f->next->type.t >> VT_STRUCT_SHIFT) & 0x3f;
5379 //printf("bitfield %d %d\n", bit_pos_1, bit_pos_2);
5380 if (bit_pos_1 != bit_pos_2)
5381 break;
5383 f = f->next;
5386 f = f->next;
5387 if (no_oblock && f == NULL)
5388 break;
5389 if (tok == '}')
5390 break;
5391 skip(',');
5393 /* put zeros at the end */
5394 if (!size_only && array_length < n) {
5395 init_putz(type, sec, c + array_length,
5396 n - array_length);
5398 if (!no_oblock)
5399 skip('}');
5400 while (par_count) {
5401 skip(')');
5402 par_count--;
5404 } else if (tok == '{') {
5405 next();
5406 decl_initializer(type, sec, c, first, size_only);
5407 skip('}');
5408 } else if (size_only) {
5409 /* just skip expression */
5410 parlevel = parlevel1 = 0;
5411 while ((parlevel > 0 || parlevel1 > 0 ||
5412 (tok != '}' && tok != ',')) && tok != -1) {
5413 if (tok == '(')
5414 parlevel++;
5415 else if (tok == ')')
5416 parlevel--;
5417 else if (tok == '{')
5418 parlevel1++;
5419 else if (tok == '}')
5420 parlevel1--;
5421 next();
5423 } else {
5424 /* currently, we always use constant expression for globals
5425 (may change for scripting case) */
5426 expr_type = EXPR_CONST;
5427 if (!sec)
5428 expr_type = EXPR_ANY;
5429 init_putv(type, sec, c, 0, expr_type);
5433 /* parse an initializer for type 't' if 'has_init' is non zero, and
5434 allocate space in local or global data space ('r' is either
5435 VT_LOCAL or VT_CONST). If 'v' is non zero, then an associated
5436 variable 'v' with an associated name represented by 'asm_label' of
5437 scope 'scope' is declared before initializers are parsed. If 'v' is
5438 zero, then a reference to the new object is put in the value stack.
5439 If 'has_init' is 2, a special parsing is done to handle string
5440 constants. */
5441 static void decl_initializer_alloc(CType *type, AttributeDef *ad, int r,
5442 int has_init, int v, char *asm_label,
5443 int scope)
5445 int size, align, addr, data_offset;
5446 int level;
5447 ParseState saved_parse_state = {0};
5448 TokenString init_str;
5449 Section *sec;
5450 Sym *flexible_array;
5452 flexible_array = NULL;
5453 if ((type->t & VT_BTYPE) == VT_STRUCT) {
5454 Sym *field = type->ref->next;
5455 if (field) {
5456 while (field->next)
5457 field = field->next;
5458 if (field->type.t & VT_ARRAY && field->type.ref->c < 0)
5459 flexible_array = field;
5463 size = type_size(type, &align);
5464 /* If unknown size, we must evaluate it before
5465 evaluating initializers because
5466 initializers can generate global data too
5467 (e.g. string pointers or ISOC99 compound
5468 literals). It also simplifies local
5469 initializers handling */
5470 tok_str_new(&init_str);
5471 if (size < 0 || (flexible_array && has_init)) {
5472 if (!has_init)
5473 tcc_error("unknown type size");
5474 /* get all init string */
5475 if (has_init == 2) {
5476 /* only get strings */
5477 while (tok == TOK_STR || tok == TOK_LSTR) {
5478 tok_str_add_tok(&init_str);
5479 next();
5481 } else {
5482 level = 0;
5483 while (level > 0 || (tok != ',' && tok != ';')) {
5484 if (tok < 0)
5485 tcc_error("unexpected end of file in initializer");
5486 tok_str_add_tok(&init_str);
5487 if (tok == '{')
5488 level++;
5489 else if (tok == '}') {
5490 level--;
5491 if (level <= 0) {
5492 next();
5493 break;
5496 next();
5499 tok_str_add(&init_str, -1);
5500 tok_str_add(&init_str, 0);
5502 /* compute size */
5503 save_parse_state(&saved_parse_state);
5505 macro_ptr = init_str.str;
5506 next();
5507 decl_initializer(type, NULL, 0, 1, 1);
5508 /* prepare second initializer parsing */
5509 macro_ptr = init_str.str;
5510 next();
5512 /* if still unknown size, error */
5513 size = type_size(type, &align);
5514 if (size < 0)
5515 tcc_error("unknown type size");
5517 if (flexible_array)
5518 size += flexible_array->type.ref->c * pointed_size(&flexible_array->type);
5519 /* take into account specified alignment if bigger */
5520 if (ad->a.aligned) {
5521 if (ad->a.aligned > align)
5522 align = ad->a.aligned;
5523 } else if (ad->a.packed) {
5524 align = 1;
5526 if ((r & VT_VALMASK) == VT_LOCAL) {
5527 sec = NULL;
5528 #ifdef CONFIG_TCC_BCHECK
5529 if (tcc_state->do_bounds_check && (type->t & VT_ARRAY)) {
5530 loc--;
5532 #endif
5533 loc = (loc - size) & -align;
5534 addr = loc;
5535 #ifdef CONFIG_TCC_BCHECK
5536 /* handles bounds */
5537 /* XXX: currently, since we do only one pass, we cannot track
5538 '&' operators, so we add only arrays */
5539 if (tcc_state->do_bounds_check && (type->t & VT_ARRAY)) {
5540 unsigned long *bounds_ptr;
5541 /* add padding between regions */
5542 loc--;
5543 /* then add local bound info */
5544 bounds_ptr = section_ptr_add(lbounds_section, 2 * sizeof(unsigned long));
5545 bounds_ptr[0] = addr;
5546 bounds_ptr[1] = size;
5548 #endif
5549 if (v) {
5550 /* local variable */
5551 sym_push(v, type, r, addr);
5552 } else {
5553 /* push local reference */
5554 vset(type, r, addr);
5556 } else {
5557 Sym *sym;
5559 sym = NULL;
5560 if (v && scope == VT_CONST) {
5561 /* see if the symbol was already defined */
5562 sym = sym_find(v);
5563 if (sym) {
5564 if (!is_compatible_types(&sym->type, type))
5565 tcc_error("incompatible types for redefinition of '%s'",
5566 get_tok_str(v, NULL));
5567 if (sym->type.t & VT_EXTERN) {
5568 /* if the variable is extern, it was not allocated */
5569 sym->type.t &= ~VT_EXTERN;
5570 /* set array size if it was ommited in extern
5571 declaration */
5572 if ((sym->type.t & VT_ARRAY) &&
5573 sym->type.ref->c < 0 &&
5574 type->ref->c >= 0)
5575 sym->type.ref->c = type->ref->c;
5576 } else {
5577 /* we accept several definitions of the same
5578 global variable. this is tricky, because we
5579 must play with the SHN_COMMON type of the symbol */
5580 /* XXX: should check if the variable was already
5581 initialized. It is incorrect to initialized it
5582 twice */
5583 /* no init data, we won't add more to the symbol */
5584 if (!has_init)
5585 goto no_alloc;
5590 /* allocate symbol in corresponding section */
5591 sec = ad->section;
5592 if (!sec) {
5593 if (has_init)
5594 sec = data_section;
5595 else if (tcc_state->nocommon)
5596 sec = bss_section;
5598 if (sec) {
5599 data_offset = sec->data_offset;
5600 data_offset = (data_offset + align - 1) & -align;
5601 addr = data_offset;
5602 /* very important to increment global pointer at this time
5603 because initializers themselves can create new initializers */
5604 data_offset += size;
5605 #ifdef CONFIG_TCC_BCHECK
5606 /* add padding if bound check */
5607 if (tcc_state->do_bounds_check)
5608 data_offset++;
5609 #endif
5610 sec->data_offset = data_offset;
5611 /* allocate section space to put the data */
5612 if (sec->sh_type != SHT_NOBITS &&
5613 data_offset > sec->data_allocated)
5614 section_realloc(sec, data_offset);
5615 /* align section if needed */
5616 if (align > sec->sh_addralign)
5617 sec->sh_addralign = align;
5618 } else {
5619 addr = 0; /* avoid warning */
5622 if (v) {
5623 if (scope != VT_CONST || !sym) {
5624 sym = sym_push(v, type, r | VT_SYM, 0);
5625 sym->asm_label = asm_label;
5627 /* update symbol definition */
5628 if (sec) {
5629 put_extern_sym(sym, sec, addr, size);
5630 } else {
5631 ElfW(Sym) *esym;
5632 /* put a common area */
5633 put_extern_sym(sym, NULL, align, size);
5634 /* XXX: find a nicer way */
5635 esym = &((ElfW(Sym) *)symtab_section->data)[sym->c];
5636 esym->st_shndx = SHN_COMMON;
5638 } else {
5639 /* push global reference */
5640 sym = get_sym_ref(type, sec, addr, size);
5641 vpushsym(type, sym);
5643 /* patch symbol weakness */
5644 if (type->t & VT_WEAK)
5645 weaken_symbol(sym);
5646 #ifdef CONFIG_TCC_BCHECK
5647 /* handles bounds now because the symbol must be defined
5648 before for the relocation */
5649 if (tcc_state->do_bounds_check) {
5650 unsigned long *bounds_ptr;
5652 greloc(bounds_section, sym, bounds_section->data_offset, R_DATA_PTR);
5653 /* then add global bound info */
5654 bounds_ptr = section_ptr_add(bounds_section, 2 * sizeof(long));
5655 bounds_ptr[0] = 0; /* relocated */
5656 bounds_ptr[1] = size;
5658 #endif
5660 if (has_init || (type->t & VT_VLA)) {
5661 decl_initializer(type, sec, addr, 1, 0);
5662 /* restore parse state if needed */
5663 if (init_str.str) {
5664 tok_str_free(init_str.str);
5665 restore_parse_state(&saved_parse_state);
5667 /* patch flexible array member size back to -1, */
5668 /* for possible subsequent similar declarations */
5669 if (flexible_array)
5670 flexible_array->type.ref->c = -1;
5672 no_alloc: ;
5675 static void put_func_debug(Sym *sym)
5677 char buf[512];
5679 /* stabs info */
5680 /* XXX: we put here a dummy type */
5681 snprintf(buf, sizeof(buf), "%s:%c1",
5682 funcname, sym->type.t & VT_STATIC ? 'f' : 'F');
5683 put_stabs_r(buf, N_FUN, 0, file->line_num, 0,
5684 cur_text_section, sym->c);
5685 /* //gr gdb wants a line at the function */
5686 put_stabn(N_SLINE, 0, file->line_num, 0);
5687 last_ind = 0;
5688 last_line_num = 0;
5691 /* parse an old style function declaration list */
5692 /* XXX: check multiple parameter */
5693 static void func_decl_list(Sym *func_sym)
5695 AttributeDef ad;
5696 int v;
5697 Sym *s;
5698 CType btype, type;
5700 /* parse each declaration */
5701 while (tok != '{' && tok != ';' && tok != ',' && tok != TOK_EOF &&
5702 tok != TOK_ASM1 && tok != TOK_ASM2 && tok != TOK_ASM3) {
5703 if (!parse_btype(&btype, &ad))
5704 expect("declaration list");
5705 if (((btype.t & VT_BTYPE) == VT_ENUM ||
5706 (btype.t & VT_BTYPE) == VT_STRUCT) &&
5707 tok == ';') {
5708 /* we accept no variable after */
5709 } else {
5710 for(;;) {
5711 type = btype;
5712 type_decl(&type, &ad, &v, TYPE_DIRECT);
5713 /* find parameter in function parameter list */
5714 s = func_sym->next;
5715 while (s != NULL) {
5716 if ((s->v & ~SYM_FIELD) == v)
5717 goto found;
5718 s = s->next;
5720 tcc_error("declaration for parameter '%s' but no such parameter",
5721 get_tok_str(v, NULL));
5722 found:
5723 /* check that no storage specifier except 'register' was given */
5724 if (type.t & VT_STORAGE)
5725 tcc_error("storage class specified for '%s'", get_tok_str(v, NULL));
5726 convert_parameter_type(&type);
5727 /* we can add the type (NOTE: it could be local to the function) */
5728 s->type = type;
5729 /* accept other parameters */
5730 if (tok == ',')
5731 next();
5732 else
5733 break;
5736 skip(';');
5740 /* parse a function defined by symbol 'sym' and generate its code in
5741 'cur_text_section' */
5742 static void gen_function(Sym *sym)
5744 int saved_nocode_wanted = nocode_wanted;
5745 nocode_wanted = 0;
5746 ind = cur_text_section->data_offset;
5747 /* NOTE: we patch the symbol size later */
5748 put_extern_sym(sym, cur_text_section, ind, 0);
5749 funcname = get_tok_str(sym->v, NULL);
5750 func_ind = ind;
5751 /* Initialize VLA state */
5752 vla_sp_loc = &vla_sp_root_loc;
5753 vla_flags = VLA_NEED_NEW_FRAME;
5754 /* put debug symbol */
5755 if (tcc_state->do_debug)
5756 put_func_debug(sym);
5757 /* push a dummy symbol to enable local sym storage */
5758 sym_push2(&local_stack, SYM_FIELD, 0, 0);
5759 gfunc_prolog(&sym->type);
5760 rsym = 0;
5761 block(NULL, NULL, NULL, NULL, 0, 0);
5762 gsym(rsym);
5763 gfunc_epilog();
5764 cur_text_section->data_offset = ind;
5765 label_pop(&global_label_stack, NULL);
5766 /* reset local stack */
5767 scope_stack_bottom = NULL;
5768 sym_pop(&local_stack, NULL);
5769 /* end of function */
5770 /* patch symbol size */
5771 ((ElfW(Sym) *)symtab_section->data)[sym->c].st_size =
5772 ind - func_ind;
5773 /* patch symbol weakness (this definition overrules any prototype) */
5774 if (sym->type.t & VT_WEAK)
5775 weaken_symbol(sym);
5776 if (tcc_state->do_debug) {
5777 put_stabn(N_FUN, 0, 0, ind - func_ind);
5779 /* It's better to crash than to generate wrong code */
5780 cur_text_section = NULL;
5781 funcname = ""; /* for safety */
5782 func_vt.t = VT_VOID; /* for safety */
5783 func_var = 0; /* for safety */
5784 ind = 0; /* for safety */
5785 nocode_wanted = saved_nocode_wanted;
5788 ST_FUNC void gen_inline_functions(void)
5790 Sym *sym;
5791 int *str, inline_generated, i;
5792 struct InlineFunc *fn;
5794 /* iterate while inline function are referenced */
5795 for(;;) {
5796 inline_generated = 0;
5797 for (i = 0; i < tcc_state->nb_inline_fns; ++i) {
5798 fn = tcc_state->inline_fns[i];
5799 sym = fn->sym;
5800 if (sym && sym->c) {
5801 /* the function was used: generate its code and
5802 convert it to a normal function */
5803 str = fn->token_str;
5804 fn->sym = NULL;
5805 if (file)
5806 pstrcpy(file->filename, sizeof file->filename, fn->filename);
5807 sym->r = VT_SYM | VT_CONST;
5808 sym->type.t &= ~VT_INLINE;
5810 macro_ptr = str;
5811 next();
5812 cur_text_section = text_section;
5813 gen_function(sym);
5814 macro_ptr = NULL; /* fail safe */
5816 inline_generated = 1;
5819 if (!inline_generated)
5820 break;
5822 for (i = 0; i < tcc_state->nb_inline_fns; ++i) {
5823 fn = tcc_state->inline_fns[i];
5824 str = fn->token_str;
5825 tok_str_free(str);
5827 dynarray_reset(&tcc_state->inline_fns, &tcc_state->nb_inline_fns);
5830 /* 'l' is VT_LOCAL or VT_CONST to define default storage type */
5831 static int decl0(int l, int is_for_loop_init)
5833 int v, has_init, r;
5834 CType type, btype;
5835 Sym *sym;
5836 AttributeDef ad;
5838 while (1) {
5839 if (!parse_btype(&btype, &ad)) {
5840 if (is_for_loop_init)
5841 return 0;
5842 /* skip redundant ';' */
5843 /* XXX: find more elegant solution */
5844 if (tok == ';') {
5845 next();
5846 continue;
5848 if (l == VT_CONST &&
5849 (tok == TOK_ASM1 || tok == TOK_ASM2 || tok == TOK_ASM3)) {
5850 /* global asm block */
5851 asm_global_instr();
5852 continue;
5854 /* special test for old K&R protos without explicit int
5855 type. Only accepted when defining global data */
5856 if (l == VT_LOCAL || tok < TOK_DEFINE)
5857 break;
5858 btype.t = VT_INT;
5860 if (((btype.t & VT_BTYPE) == VT_ENUM ||
5861 (btype.t & VT_BTYPE) == VT_STRUCT) &&
5862 tok == ';') {
5863 /* we accept no variable after */
5864 next();
5865 continue;
5867 while (1) { /* iterate thru each declaration */
5868 char *asm_label; // associated asm label
5869 type = btype;
5870 type_decl(&type, &ad, &v, TYPE_DIRECT);
5871 #if 0
5873 char buf[500];
5874 type_to_str(buf, sizeof(buf), t, get_tok_str(v, NULL));
5875 printf("type = '%s'\n", buf);
5877 #endif
5878 if ((type.t & VT_BTYPE) == VT_FUNC) {
5879 if ((type.t & VT_STATIC) && (l == VT_LOCAL)) {
5880 tcc_error("function without file scope cannot be static");
5882 /* if old style function prototype, we accept a
5883 declaration list */
5884 sym = type.ref;
5885 if (sym->c == FUNC_OLD)
5886 func_decl_list(sym);
5889 asm_label = NULL;
5890 if (gnu_ext && (tok == TOK_ASM1 || tok == TOK_ASM2 || tok == TOK_ASM3)) {
5891 CString astr;
5893 asm_label_instr(&astr);
5894 asm_label = tcc_strdup(astr.data);
5895 cstr_free(&astr);
5897 /* parse one last attribute list, after asm label */
5898 parse_attribute(&ad);
5901 if (ad.a.weak)
5902 type.t |= VT_WEAK;
5903 #ifdef TCC_TARGET_PE
5904 if (ad.a.func_import)
5905 type.t |= VT_IMPORT;
5906 if (ad.a.func_export)
5907 type.t |= VT_EXPORT;
5908 #endif
5909 if (tok == '{') {
5910 if (l == VT_LOCAL)
5911 tcc_error("cannot use local functions");
5912 if ((type.t & VT_BTYPE) != VT_FUNC)
5913 expect("function definition");
5915 /* reject abstract declarators in function definition */
5916 sym = type.ref;
5917 while ((sym = sym->next) != NULL)
5918 if (!(sym->v & ~SYM_FIELD))
5919 expect("identifier");
5921 /* XXX: cannot do better now: convert extern line to static inline */
5922 if ((type.t & (VT_EXTERN | VT_INLINE)) == (VT_EXTERN | VT_INLINE))
5923 type.t = (type.t & ~VT_EXTERN) | VT_STATIC;
5925 sym = sym_find(v);
5926 if (sym) {
5927 Sym *ref;
5928 if ((sym->type.t & VT_BTYPE) != VT_FUNC)
5929 goto func_error1;
5931 ref = sym->type.ref;
5932 if (0 == ref->a.func_proto)
5933 tcc_error("redefinition of '%s'", get_tok_str(v, NULL));
5935 /* use func_call from prototype if not defined */
5936 if (ref->a.func_call != FUNC_CDECL
5937 && type.ref->a.func_call == FUNC_CDECL)
5938 type.ref->a.func_call = ref->a.func_call;
5940 /* use export from prototype */
5941 if (ref->a.func_export)
5942 type.ref->a.func_export = 1;
5944 /* use static from prototype */
5945 if (sym->type.t & VT_STATIC)
5946 type.t = (type.t & ~VT_EXTERN) | VT_STATIC;
5948 if (!is_compatible_types(&sym->type, &type)) {
5949 func_error1:
5950 tcc_error("incompatible types for redefinition of '%s'",
5951 get_tok_str(v, NULL));
5953 type.ref->a.func_proto = 0;
5954 /* if symbol is already defined, then put complete type */
5955 sym->type = type;
5956 } else {
5957 /* put function symbol */
5958 sym = global_identifier_push(v, type.t, 0);
5959 sym->type.ref = type.ref;
5962 /* static inline functions are just recorded as a kind
5963 of macro. Their code will be emitted at the end of
5964 the compilation unit only if they are used */
5965 if ((type.t & (VT_INLINE | VT_STATIC)) ==
5966 (VT_INLINE | VT_STATIC)) {
5967 TokenString func_str;
5968 int block_level;
5969 struct InlineFunc *fn;
5970 const char *filename;
5972 tok_str_new(&func_str);
5974 block_level = 0;
5975 for(;;) {
5976 int t;
5977 if (tok == TOK_EOF)
5978 tcc_error("unexpected end of file");
5979 tok_str_add_tok(&func_str);
5980 t = tok;
5981 next();
5982 if (t == '{') {
5983 block_level++;
5984 } else if (t == '}') {
5985 block_level--;
5986 if (block_level == 0)
5987 break;
5990 tok_str_add(&func_str, -1);
5991 tok_str_add(&func_str, 0);
5992 filename = file ? file->filename : "";
5993 fn = tcc_malloc(sizeof *fn + strlen(filename));
5994 strcpy(fn->filename, filename);
5995 fn->sym = sym;
5996 fn->token_str = func_str.str;
5997 dynarray_add((void ***)&tcc_state->inline_fns, &tcc_state->nb_inline_fns, fn);
5999 } else {
6000 /* compute text section */
6001 cur_text_section = ad.section;
6002 if (!cur_text_section)
6003 cur_text_section = text_section;
6004 sym->r = VT_SYM | VT_CONST;
6005 gen_function(sym);
6007 break;
6008 } else {
6009 if (btype.t & VT_TYPEDEF) {
6010 /* save typedefed type */
6011 /* XXX: test storage specifiers ? */
6012 sym = sym_push(v, &type, 0, 0);
6013 sym->a = ad.a;
6014 sym->type.t |= VT_TYPEDEF;
6015 } else {
6016 r = 0;
6017 if ((type.t & VT_BTYPE) == VT_FUNC) {
6018 /* external function definition */
6019 /* specific case for func_call attribute */
6020 ad.a.func_proto = 1;
6021 type.ref->a = ad.a;
6022 } else if (!(type.t & VT_ARRAY)) {
6023 /* not lvalue if array */
6024 r |= lvalue_type(type.t);
6026 has_init = (tok == '=');
6027 if (has_init && (type.t & VT_VLA))
6028 tcc_error("Variable length array cannot be initialized");
6029 if ((btype.t & VT_EXTERN) || ((type.t & VT_BTYPE) == VT_FUNC) ||
6030 ((type.t & VT_ARRAY) && (type.t & VT_STATIC) &&
6031 !has_init && l == VT_CONST && type.ref->c < 0)) {
6032 /* external variable or function */
6033 /* NOTE: as GCC, uninitialized global static
6034 arrays of null size are considered as
6035 extern */
6036 sym = external_sym(v, &type, r, asm_label);
6038 if (type.t & VT_WEAK)
6039 weaken_symbol(sym);
6041 if (ad.alias_target) {
6042 Section tsec;
6043 Elf32_Sym *esym;
6044 Sym *alias_target;
6046 alias_target = sym_find(ad.alias_target);
6047 if (!alias_target || !alias_target->c)
6048 tcc_error("unsupported forward __alias__ attribute");
6049 esym = &((Elf32_Sym *)symtab_section->data)[alias_target->c];
6050 tsec.sh_num = esym->st_shndx;
6051 put_extern_sym2(sym, &tsec, esym->st_value, esym->st_size, 0);
6053 } else {
6054 type.t |= (btype.t & VT_STATIC); /* Retain "static". */
6055 if (type.t & VT_STATIC)
6056 r |= VT_CONST;
6057 else
6058 r |= l;
6059 if (has_init)
6060 next();
6061 decl_initializer_alloc(&type, &ad, r, has_init, v, asm_label, l);
6064 if (tok != ',') {
6065 if (is_for_loop_init)
6066 return 1;
6067 skip(';');
6068 break;
6070 next();
6072 ad.a.aligned = 0;
6075 return 0;
6078 ST_FUNC void decl(int l)
6080 decl0(l, 0);