Fix conversion in a?0:ptr.
[tinycc.git] / tccgen.c
blobb0cec4a1440c45245fc0a2ca15049c08b6b04774
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 *define_stack;
54 ST_DATA Sym *global_label_stack;
55 ST_DATA Sym *local_label_stack;
57 ST_DATA SValue vstack[VSTACK_SIZE], *vtop;
59 ST_DATA int const_wanted; /* true if constant wanted */
60 ST_DATA int nocode_wanted; /* true if no code generation wanted for an expression */
61 ST_DATA int global_expr; /* true if compound literals must be allocated globally (used during initializers parsing */
62 ST_DATA CType func_vt; /* current function return type (used by return instruction) */
63 ST_DATA int func_vc;
64 ST_DATA int last_line_num, last_ind, func_ind; /* debug last line number and pc */
65 ST_DATA char *funcname;
67 ST_DATA CType char_pointer_type, func_old_type, int_type;
69 /* ------------------------------------------------------------------------- */
70 static void gen_cast(CType *type);
71 static inline CType *pointed_type(CType *type);
72 static int is_compatible_types(CType *type1, CType *type2);
73 static int parse_btype(CType *type, AttributeDef *ad);
74 static void type_decl(CType *type, AttributeDef *ad, int *v, int td);
75 static void parse_expr_type(CType *type);
76 static void decl_initializer(CType *type, Section *sec, unsigned long c, int first, int size_only);
77 static void block(int *bsym, int *csym, int *case_sym, int *def_sym, int case_reg, int is_expr);
78 static void decl_initializer_alloc(CType *type, AttributeDef *ad, int r, int has_init, int v, char *asm_label, int scope);
79 static int decl0(int l, int is_for_loop_init);
80 static void expr_eq(void);
81 static void unary_type(CType *type);
82 static void vla_runtime_type_size(CType *type, int *a);
83 static int is_compatible_parameter_types(CType *type1, CType *type2);
84 static void expr_type(CType *type);
86 ST_INLN int is_float(int t)
88 int bt;
89 bt = t & VT_BTYPE;
90 return bt == VT_LDOUBLE || bt == VT_DOUBLE || bt == VT_FLOAT;
93 /* we use our own 'finite' function to avoid potential problems with
94 non standard math libs */
95 /* XXX: endianness dependent */
96 ST_FUNC int ieee_finite(double d)
98 int *p = (int *)&d;
99 return ((unsigned)((p[1] | 0x800fffff) + 1)) >> 31;
102 ST_FUNC void test_lvalue(void)
104 if (!(vtop->r & VT_LVAL))
105 expect("lvalue");
108 /* ------------------------------------------------------------------------- */
109 /* symbol allocator */
110 static Sym *__sym_malloc(void)
112 Sym *sym_pool, *sym, *last_sym;
113 int i;
115 sym_pool = tcc_malloc(SYM_POOL_NB * sizeof(Sym));
116 dynarray_add(&sym_pools, &nb_sym_pools, sym_pool);
118 last_sym = sym_free_first;
119 sym = sym_pool;
120 for(i = 0; i < SYM_POOL_NB; i++) {
121 sym->next = last_sym;
122 last_sym = sym;
123 sym++;
125 sym_free_first = last_sym;
126 return last_sym;
129 static inline Sym *sym_malloc(void)
131 Sym *sym;
132 sym = sym_free_first;
133 if (!sym)
134 sym = __sym_malloc();
135 sym_free_first = sym->next;
136 return sym;
139 ST_INLN void sym_free(Sym *sym)
141 sym->next = sym_free_first;
142 tcc_free(sym->asm_label);
143 sym_free_first = sym;
146 /* push, without hashing */
147 ST_FUNC Sym *sym_push2(Sym **ps, int v, int t, long c)
149 Sym *s;
150 s = sym_malloc();
151 s->asm_label = NULL;
152 s->v = v;
153 s->type.t = t;
154 s->type.ref = NULL;
155 #ifdef _WIN64
156 s->d = NULL;
157 #endif
158 s->c = c;
159 s->next = NULL;
160 /* add in stack */
161 s->prev = *ps;
162 *ps = s;
163 return s;
166 /* find a symbol and return its associated structure. 's' is the top
167 of the symbol stack */
168 ST_FUNC Sym *sym_find2(Sym *s, int v)
170 while (s) {
171 if (s->v == v)
172 return s;
173 s = s->prev;
175 return NULL;
178 /* structure lookup */
179 ST_INLN Sym *struct_find(int v)
181 v -= TOK_IDENT;
182 if ((unsigned)v >= (unsigned)(tok_ident - TOK_IDENT))
183 return NULL;
184 return table_ident[v]->sym_struct;
187 /* find an identifier */
188 ST_INLN Sym *sym_find(int v)
190 v -= TOK_IDENT;
191 if ((unsigned)v >= (unsigned)(tok_ident - TOK_IDENT))
192 return NULL;
193 return table_ident[v]->sym_identifier;
196 /* push a given symbol on the symbol stack */
197 ST_FUNC Sym *sym_push(int v, CType *type, int r, int c)
199 Sym *s, **ps;
200 TokenSym *ts;
202 if (local_stack)
203 ps = &local_stack;
204 else
205 ps = &global_stack;
206 s = sym_push2(ps, v, type->t, c);
207 s->type.ref = type->ref;
208 s->r = r;
209 /* don't record fields or anonymous symbols */
210 /* XXX: simplify */
211 if (!(v & SYM_FIELD) && (v & ~SYM_STRUCT) < SYM_FIRST_ANOM) {
212 /* record symbol in token array */
213 ts = table_ident[(v & ~SYM_STRUCT) - TOK_IDENT];
214 if (v & SYM_STRUCT)
215 ps = &ts->sym_struct;
216 else
217 ps = &ts->sym_identifier;
218 s->prev_tok = *ps;
219 *ps = s;
221 return s;
224 /* push a global identifier */
225 ST_FUNC Sym *global_identifier_push(int v, int t, int c)
227 Sym *s, **ps;
228 s = sym_push2(&global_stack, v, t, c);
229 /* don't record anonymous symbol */
230 if (v < SYM_FIRST_ANOM) {
231 ps = &table_ident[v - TOK_IDENT]->sym_identifier;
232 /* modify the top most local identifier, so that
233 sym_identifier will point to 's' when popped */
234 while (*ps != NULL)
235 ps = &(*ps)->prev_tok;
236 s->prev_tok = NULL;
237 *ps = s;
239 return s;
242 /* pop symbols until top reaches 'b' */
243 ST_FUNC void sym_pop(Sym **ptop, Sym *b)
245 Sym *s, *ss, **ps;
246 TokenSym *ts;
247 int v;
249 s = *ptop;
250 while(s != b) {
251 ss = s->prev;
252 v = s->v;
253 /* remove symbol in token array */
254 /* XXX: simplify */
255 if (!(v & SYM_FIELD) && (v & ~SYM_STRUCT) < SYM_FIRST_ANOM) {
256 ts = table_ident[(v & ~SYM_STRUCT) - TOK_IDENT];
257 if (v & SYM_STRUCT)
258 ps = &ts->sym_struct;
259 else
260 ps = &ts->sym_identifier;
261 *ps = s->prev_tok;
263 sym_free(s);
264 s = ss;
266 *ptop = b;
269 static void weaken_symbol(Sym *sym)
271 sym->type.t |= VT_WEAK;
272 if (sym->c > 0) {
273 int esym_type;
274 ElfW(Sym) *esym;
276 esym = &((ElfW(Sym) *)symtab_section->data)[sym->c];
277 esym_type = ELFW(ST_TYPE)(esym->st_info);
278 esym->st_info = ELFW(ST_INFO)(STB_WEAK, esym_type);
282 /* ------------------------------------------------------------------------- */
284 ST_FUNC void swap(int *p, int *q)
286 int t;
287 t = *p;
288 *p = *q;
289 *q = t;
292 static void vsetc(CType *type, int r, CValue *vc)
294 int v;
296 if (vtop >= vstack + (VSTACK_SIZE - 1))
297 tcc_error("memory full");
298 /* cannot let cpu flags if other instruction are generated. Also
299 avoid leaving VT_JMP anywhere except on the top of the stack
300 because it would complicate the code generator. */
301 if (vtop >= vstack) {
302 v = vtop->r & VT_VALMASK;
303 if (v == VT_CMP || (v & ~1) == VT_JMP)
304 gv(RC_INT);
306 vtop++;
307 vtop->type = *type;
308 vtop->r = r;
309 vtop->r2 = VT_CONST;
310 vtop->c = *vc;
313 /* push constant of type "type" with useless value */
314 void vpush(CType *type)
316 CValue cval;
317 vsetc(type, VT_CONST, &cval);
320 /* push integer constant */
321 ST_FUNC void vpushi(int v)
323 CValue cval;
324 cval.i = v;
325 vsetc(&int_type, VT_CONST, &cval);
328 /* push long long constant */
329 static void vpushll(long long v)
331 CValue cval;
332 CType ctype;
333 ctype.t = VT_LLONG;
334 ctype.ref = 0;
335 cval.ull = v;
336 vsetc(&ctype, VT_CONST, &cval);
339 /* push arbitrary 64bit constant */
340 void vpush64(int ty, unsigned long long v)
342 CValue cval;
343 CType ctype;
344 ctype.t = ty;
345 cval.ull = v;
346 vsetc(&ctype, VT_CONST, &cval);
349 /* Return a static symbol pointing to a section */
350 ST_FUNC Sym *get_sym_ref(CType *type, Section *sec, unsigned long offset, unsigned long size)
352 int v;
353 Sym *sym;
355 v = anon_sym++;
356 sym = global_identifier_push(v, type->t | VT_STATIC, 0);
357 sym->type.ref = type->ref;
358 sym->r = VT_CONST | VT_SYM;
359 put_extern_sym(sym, sec, offset, size);
360 return sym;
363 /* push a reference to a section offset by adding a dummy symbol */
364 static void vpush_ref(CType *type, Section *sec, unsigned long offset, unsigned long size)
366 CValue cval;
368 cval.ul = 0;
369 vsetc(type, VT_CONST | VT_SYM, &cval);
370 vtop->sym = get_sym_ref(type, sec, offset, size);
373 /* define a new external reference to a symbol 'v' of type 'u' */
374 ST_FUNC Sym *external_global_sym(int v, CType *type, int r)
376 Sym *s;
378 s = sym_find(v);
379 if (!s) {
380 /* push forward reference */
381 s = global_identifier_push(v, type->t | VT_EXTERN, 0);
382 s->type.ref = type->ref;
383 s->r = r | VT_CONST | VT_SYM;
385 return s;
388 /* define a new external reference to a symbol 'v' with alternate asm
389 name 'asm_label' of type 'u'. 'asm_label' is equal to NULL if there
390 is no alternate name (most cases) */
391 static Sym *external_sym(int v, CType *type, int r, char *asm_label)
393 Sym *s;
395 s = sym_find(v);
396 if (!s) {
397 /* push forward reference */
398 s = sym_push(v, type, r | VT_CONST | VT_SYM, 0);
399 s->asm_label = asm_label;
400 s->type.t |= VT_EXTERN;
401 } else if (s->type.ref == func_old_type.ref) {
402 s->type.ref = type->ref;
403 s->r = r | VT_CONST | VT_SYM;
404 s->type.t |= VT_EXTERN;
405 } else if (!is_compatible_types(&s->type, type)) {
406 tcc_error("incompatible types for redefinition of '%s'",
407 get_tok_str(v, NULL));
409 return s;
412 /* push a reference to global symbol v */
413 ST_FUNC void vpush_global_sym(CType *type, int v)
415 Sym *sym;
416 CValue cval;
418 sym = external_global_sym(v, type, 0);
419 cval.ul = 0;
420 vsetc(type, VT_CONST | VT_SYM, &cval);
421 vtop->sym = sym;
424 ST_FUNC void vset(CType *type, int r, int v)
426 CValue cval;
428 cval.i = v;
429 vsetc(type, r, &cval);
432 static void vseti(int r, int v)
434 CType type;
435 type.t = VT_INT;
436 type.ref = 0;
437 vset(&type, r, v);
440 ST_FUNC void vswap(void)
442 SValue tmp;
444 tmp = vtop[0];
445 vtop[0] = vtop[-1];
446 vtop[-1] = tmp;
449 ST_FUNC void vpushv(SValue *v)
451 if (vtop >= vstack + (VSTACK_SIZE - 1))
452 tcc_error("memory full");
453 vtop++;
454 *vtop = *v;
457 static void vdup(void)
459 vpushv(vtop);
462 /* save r to the memory stack, and mark it as being free */
463 ST_FUNC void save_reg(int r)
465 int l, saved, size, align;
466 SValue *p, sv;
467 CType *type;
469 /* modify all stack values */
470 saved = 0;
471 l = 0;
472 for(p=vstack;p<=vtop;p++) {
473 if ((p->r & VT_VALMASK) == r ||
474 ((p->type.t & VT_BTYPE) == VT_LLONG && (p->r2 & VT_VALMASK) == r)) {
475 /* must save value on stack if not already done */
476 if (!saved) {
477 /* NOTE: must reload 'r' because r might be equal to r2 */
478 r = p->r & VT_VALMASK;
479 /* store register in the stack */
480 type = &p->type;
481 if ((p->r & VT_LVAL) ||
482 (!is_float(type->t) && (type->t & VT_BTYPE) != VT_LLONG))
483 #ifdef TCC_TARGET_X86_64
484 type = &char_pointer_type;
485 #else
486 type = &int_type;
487 #endif
488 size = type_size(type, &align);
489 loc = (loc - size) & -align;
490 sv.type.t = type->t;
491 sv.r = VT_LOCAL | VT_LVAL;
492 sv.c.ul = loc;
493 store(r, &sv);
494 #if defined(TCC_TARGET_I386) || defined(TCC_TARGET_X86_64)
495 /* x86 specific: need to pop fp register ST0 if saved */
496 if (r == TREG_ST0) {
497 o(0xd8dd); /* fstp %st(0) */
499 #endif
500 #ifndef TCC_TARGET_X86_64
501 /* special long long case */
502 if ((type->t & VT_BTYPE) == VT_LLONG) {
503 sv.c.ul += 4;
504 store(p->r2, &sv);
506 #endif
507 l = loc;
508 saved = 1;
510 /* mark that stack entry as being saved on the stack */
511 if (p->r & VT_LVAL) {
512 /* also clear the bounded flag because the
513 relocation address of the function was stored in
514 p->c.ul */
515 p->r = (p->r & ~(VT_VALMASK | VT_BOUNDED)) | VT_LLOCAL;
516 } else {
517 p->r = lvalue_type(p->type.t) | VT_LOCAL;
519 p->r2 = VT_CONST;
520 p->c.ul = l;
525 #ifdef TCC_TARGET_ARM
526 /* find a register of class 'rc2' with at most one reference on stack.
527 * If none, call get_reg(rc) */
528 ST_FUNC int get_reg_ex(int rc, int rc2)
530 int r;
531 SValue *p;
533 for(r=0;r<NB_REGS;r++) {
534 if (reg_classes[r] & rc2) {
535 int n;
536 n=0;
537 for(p = vstack; p <= vtop; p++) {
538 if ((p->r & VT_VALMASK) == r ||
539 (p->r2 & VT_VALMASK) == r)
540 n++;
542 if (n <= 1)
543 return r;
546 return get_reg(rc);
548 #endif
550 /* find a free register of class 'rc'. If none, save one register */
551 ST_FUNC int get_reg(int rc)
553 int r;
554 SValue *p;
556 /* find a free register */
557 for(r=0;r<NB_REGS;r++) {
558 if (reg_classes[r] & rc) {
559 for(p=vstack;p<=vtop;p++) {
560 if ((p->r & VT_VALMASK) == r ||
561 (p->r2 & VT_VALMASK) == r)
562 goto notfound;
564 return r;
566 notfound: ;
569 /* no register left : free the first one on the stack (VERY
570 IMPORTANT to start from the bottom to ensure that we don't
571 spill registers used in gen_opi()) */
572 for(p=vstack;p<=vtop;p++) {
573 r = p->r & VT_VALMASK;
574 if (r < VT_CONST && (reg_classes[r] & rc))
575 goto save_found;
576 /* also look at second register (if long long) */
577 r = p->r2 & VT_VALMASK;
578 if (r < VT_CONST && (reg_classes[r] & rc)) {
579 save_found:
580 save_reg(r);
581 return r;
584 /* Should never comes here */
585 return -1;
588 /* save registers up to (vtop - n) stack entry */
589 ST_FUNC void save_regs(int n)
591 int r;
592 SValue *p, *p1;
593 p1 = vtop - n;
594 for(p = vstack;p <= p1; p++) {
595 r = p->r & VT_VALMASK;
596 if (r < VT_CONST) {
597 save_reg(r);
602 /* move register 's' to 'r', and flush previous value of r to memory
603 if needed */
604 static void move_reg(int r, int s)
606 SValue sv;
608 if (r != s) {
609 save_reg(r);
610 sv.type.t = VT_INT;
611 sv.r = s;
612 sv.c.ul = 0;
613 load(r, &sv);
617 /* get address of vtop (vtop MUST BE an lvalue) */
618 static void gaddrof(void)
620 if (vtop->r & VT_REF)
621 gv(RC_INT);
622 vtop->r &= ~VT_LVAL;
623 /* tricky: if saved lvalue, then we can go back to lvalue */
624 if ((vtop->r & VT_VALMASK) == VT_LLOCAL)
625 vtop->r = (vtop->r & ~(VT_VALMASK | VT_LVAL_TYPE)) | VT_LOCAL | VT_LVAL;
630 #ifdef CONFIG_TCC_BCHECK
631 /* generate lvalue bound code */
632 static void gbound(void)
634 int lval_type;
635 CType type1;
637 vtop->r &= ~VT_MUSTBOUND;
638 /* if lvalue, then use checking code before dereferencing */
639 if (vtop->r & VT_LVAL) {
640 /* if not VT_BOUNDED value, then make one */
641 if (!(vtop->r & VT_BOUNDED)) {
642 lval_type = vtop->r & (VT_LVAL_TYPE | VT_LVAL);
643 /* must save type because we must set it to int to get pointer */
644 type1 = vtop->type;
645 vtop->type.t = VT_INT;
646 gaddrof();
647 vpushi(0);
648 gen_bounded_ptr_add();
649 vtop->r |= lval_type;
650 vtop->type = type1;
652 /* then check for dereferencing */
653 gen_bounded_ptr_deref();
656 #endif
658 /* store vtop a register belonging to class 'rc'. lvalues are
659 converted to values. Cannot be used if cannot be converted to
660 register value (such as structures). */
661 ST_FUNC int gv(int rc)
663 int r, bit_pos, bit_size, size, align, i;
664 #ifndef TCC_TARGET_X86_64
665 int rc2;
666 #endif
668 /* NOTE: get_reg can modify vstack[] */
669 if (vtop->type.t & VT_BITFIELD) {
670 CType type;
671 int bits = 32;
672 bit_pos = (vtop->type.t >> VT_STRUCT_SHIFT) & 0x3f;
673 bit_size = (vtop->type.t >> (VT_STRUCT_SHIFT + 6)) & 0x3f;
674 /* remove bit field info to avoid loops */
675 vtop->type.t &= ~(VT_BITFIELD | (-1 << VT_STRUCT_SHIFT));
676 /* cast to int to propagate signedness in following ops */
677 if ((vtop->type.t & VT_BTYPE) == VT_LLONG) {
678 type.t = VT_LLONG;
679 bits = 64;
680 } else
681 type.t = VT_INT;
682 if((vtop->type.t & VT_UNSIGNED) ||
683 (vtop->type.t & VT_BTYPE) == VT_BOOL)
684 type.t |= VT_UNSIGNED;
685 gen_cast(&type);
686 /* generate shifts */
687 vpushi(bits - (bit_pos + bit_size));
688 gen_op(TOK_SHL);
689 vpushi(bits - bit_size);
690 /* NOTE: transformed to SHR if unsigned */
691 gen_op(TOK_SAR);
692 r = gv(rc);
693 } else {
694 if (is_float(vtop->type.t) &&
695 (vtop->r & (VT_VALMASK | VT_LVAL)) == VT_CONST) {
696 Sym *sym;
697 int *ptr;
698 unsigned long offset;
699 #if defined(TCC_TARGET_ARM) && !defined(TCC_ARM_VFP)
700 CValue check;
701 #endif
703 /* XXX: unify with initializers handling ? */
704 /* CPUs usually cannot use float constants, so we store them
705 generically in data segment */
706 size = type_size(&vtop->type, &align);
707 offset = (data_section->data_offset + align - 1) & -align;
708 data_section->data_offset = offset;
709 /* XXX: not portable yet */
710 #if defined(__i386__) || defined(__x86_64__)
711 /* Zero pad x87 tenbyte long doubles */
712 if (size == LDOUBLE_SIZE) {
713 vtop->c.tab[2] &= 0xffff;
714 #if LDOUBLE_SIZE == 16
715 vtop->c.tab[3] = 0;
716 #endif
718 #endif
719 ptr = section_ptr_add(data_section, size);
720 size = size >> 2;
721 #if defined(TCC_TARGET_ARM) && !defined(TCC_ARM_VFP)
722 check.d = 1;
723 if(check.tab[0])
724 for(i=0;i<size;i++)
725 ptr[i] = vtop->c.tab[size-1-i];
726 else
727 #endif
728 for(i=0;i<size;i++)
729 ptr[i] = vtop->c.tab[i];
730 sym = get_sym_ref(&vtop->type, data_section, offset, size << 2);
731 vtop->r |= VT_LVAL | VT_SYM;
732 vtop->sym = sym;
733 vtop->c.ul = 0;
735 #ifdef CONFIG_TCC_BCHECK
736 if (vtop->r & VT_MUSTBOUND)
737 gbound();
738 #endif
740 r = vtop->r & VT_VALMASK;
741 #ifndef TCC_TARGET_X86_64
742 rc2 = RC_INT;
743 if (rc == RC_IRET)
744 rc2 = RC_LRET;
745 #endif
746 /* need to reload if:
747 - constant
748 - lvalue (need to dereference pointer)
749 - already a register, but not in the right class */
750 if (r >= VT_CONST
751 || (vtop->r & VT_LVAL)
752 || !(reg_classes[r] & rc)
753 #ifndef TCC_TARGET_X86_64
754 || ((vtop->type.t & VT_BTYPE) == VT_LLONG && !(reg_classes[vtop->r2] & rc2))
755 #endif
758 r = get_reg(rc);
759 #ifndef TCC_TARGET_X86_64
760 if ((vtop->type.t & VT_BTYPE) == VT_LLONG) {
761 int r2;
762 unsigned long long ll;
763 /* two register type load : expand to two words
764 temporarily */
765 if ((vtop->r & (VT_VALMASK | VT_LVAL)) == VT_CONST) {
766 /* load constant */
767 ll = vtop->c.ull;
768 vtop->c.ui = ll; /* first word */
769 load(r, vtop);
770 vtop->r = r; /* save register value */
771 vpushi(ll >> 32); /* second word */
772 } else if (r >= VT_CONST || /* XXX: test to VT_CONST incorrect ? */
773 (vtop->r & VT_LVAL)) {
774 /* We do not want to modifier the long long
775 pointer here, so the safest (and less
776 efficient) is to save all the other registers
777 in the stack. XXX: totally inefficient. */
778 save_regs(1);
779 /* load from memory */
780 load(r, vtop);
781 vdup();
782 vtop[-1].r = r; /* save register value */
783 /* increment pointer to get second word */
784 vtop->type.t = VT_INT;
785 gaddrof();
786 vpushi(4);
787 gen_op('+');
788 vtop->r |= VT_LVAL;
789 } else {
790 /* move registers */
791 load(r, vtop);
792 vdup();
793 vtop[-1].r = r; /* save register value */
794 vtop->r = vtop[-1].r2;
796 /* allocate second register */
797 r2 = get_reg(rc2);
798 load(r2, vtop);
799 vpop();
800 /* write second register */
801 vtop->r2 = r2;
802 } else
803 #endif
804 if ((vtop->r & VT_LVAL) && !is_float(vtop->type.t)) {
805 int t1, t;
806 /* lvalue of scalar type : need to use lvalue type
807 because of possible cast */
808 t = vtop->type.t;
809 t1 = t;
810 /* compute memory access type */
811 if (vtop->r & VT_LVAL_BYTE)
812 t = VT_BYTE;
813 else if (vtop->r & VT_LVAL_SHORT)
814 t = VT_SHORT;
815 if (vtop->r & VT_LVAL_UNSIGNED)
816 t |= VT_UNSIGNED;
817 vtop->type.t = t;
818 load(r, vtop);
819 /* restore wanted type */
820 vtop->type.t = t1;
821 } else {
822 /* one register type load */
823 load(r, vtop);
826 vtop->r = r;
827 #ifdef TCC_TARGET_C67
828 /* uses register pairs for doubles */
829 if ((vtop->type.t & VT_BTYPE) == VT_DOUBLE)
830 vtop->r2 = r+1;
831 #endif
833 return r;
836 /* generate vtop[-1] and vtop[0] in resp. classes rc1 and rc2 */
837 ST_FUNC void gv2(int rc1, int rc2)
839 int v;
841 /* generate more generic register first. But VT_JMP or VT_CMP
842 values must be generated first in all cases to avoid possible
843 reload errors */
844 v = vtop[0].r & VT_VALMASK;
845 if (v != VT_CMP && (v & ~1) != VT_JMP && rc1 <= rc2) {
846 vswap();
847 gv(rc1);
848 vswap();
849 gv(rc2);
850 /* test if reload is needed for first register */
851 if ((vtop[-1].r & VT_VALMASK) >= VT_CONST) {
852 vswap();
853 gv(rc1);
854 vswap();
856 } else {
857 gv(rc2);
858 vswap();
859 gv(rc1);
860 vswap();
861 /* test if reload is needed for first register */
862 if ((vtop[0].r & VT_VALMASK) >= VT_CONST) {
863 gv(rc2);
868 /* wrapper around RC_FRET to return a register by type */
869 static int rc_fret(int t)
871 #ifdef TCC_TARGET_X86_64
872 if (t == VT_LDOUBLE) {
873 return RC_ST0;
875 #endif
876 return RC_FRET;
879 /* wrapper around REG_FRET to return a register by type */
880 static int reg_fret(int t)
882 #ifdef TCC_TARGET_X86_64
883 if (t == VT_LDOUBLE) {
884 return TREG_ST0;
886 #endif
887 return REG_FRET;
890 /* expand long long on stack in two int registers */
891 static void lexpand(void)
893 int u;
895 u = vtop->type.t & VT_UNSIGNED;
896 gv(RC_INT);
897 vdup();
898 vtop[0].r = vtop[-1].r2;
899 vtop[0].r2 = VT_CONST;
900 vtop[-1].r2 = VT_CONST;
901 vtop[0].type.t = VT_INT | u;
902 vtop[-1].type.t = VT_INT | u;
905 #ifdef TCC_TARGET_ARM
906 /* expand long long on stack */
907 ST_FUNC void lexpand_nr(void)
909 int u,v;
911 u = vtop->type.t & VT_UNSIGNED;
912 vdup();
913 vtop->r2 = VT_CONST;
914 vtop->type.t = VT_INT | u;
915 v=vtop[-1].r & (VT_VALMASK | VT_LVAL);
916 if (v == VT_CONST) {
917 vtop[-1].c.ui = vtop->c.ull;
918 vtop->c.ui = vtop->c.ull >> 32;
919 vtop->r = VT_CONST;
920 } else if (v == (VT_LVAL|VT_CONST) || v == (VT_LVAL|VT_LOCAL)) {
921 vtop->c.ui += 4;
922 vtop->r = vtop[-1].r;
923 } else if (v > VT_CONST) {
924 vtop--;
925 lexpand();
926 } else
927 vtop->r = vtop[-1].r2;
928 vtop[-1].r2 = VT_CONST;
929 vtop[-1].type.t = VT_INT | u;
931 #endif
933 /* build a long long from two ints */
934 static void lbuild(int t)
936 gv2(RC_INT, RC_INT);
937 vtop[-1].r2 = vtop[0].r;
938 vtop[-1].type.t = t;
939 vpop();
942 /* rotate n first stack elements to the bottom
943 I1 ... In -> I2 ... In I1 [top is right]
945 static void vrotb(int n)
947 int i;
948 SValue tmp;
950 tmp = vtop[-n + 1];
951 for(i=-n+1;i!=0;i++)
952 vtop[i] = vtop[i+1];
953 vtop[0] = tmp;
956 /* rotate n first stack elements to the top
957 I1 ... In -> In I1 ... I(n-1) [top is right]
959 ST_FUNC void vrott(int n)
961 int i;
962 SValue tmp;
964 tmp = vtop[0];
965 for(i = 0;i < n - 1; i++)
966 vtop[-i] = vtop[-i - 1];
967 vtop[-n + 1] = tmp;
970 /* pop stack value */
971 ST_FUNC void vpop(void)
973 int v;
974 v = vtop->r & VT_VALMASK;
975 #if defined(TCC_TARGET_I386) || defined(TCC_TARGET_X86_64)
976 /* for x86, we need to pop the FP stack */
977 if (v == TREG_ST0 && !nocode_wanted) {
978 o(0xd8dd); /* fstp %st(0) */
979 } else
980 #endif
981 if (v == VT_JMP || v == VT_JMPI) {
982 /* need to put correct jump if && or || without test */
983 gsym(vtop->c.ul);
985 vtop--;
988 /* convert stack entry to register and duplicate its value in another
989 register */
990 static void gv_dup(void)
992 int rc, t, r, r1;
993 SValue sv;
995 t = vtop->type.t;
996 if ((t & VT_BTYPE) == VT_LLONG) {
997 lexpand();
998 gv_dup();
999 vswap();
1000 vrotb(3);
1001 gv_dup();
1002 vrotb(4);
1003 /* stack: H L L1 H1 */
1004 lbuild(t);
1005 vrotb(3);
1006 vrotb(3);
1007 vswap();
1008 lbuild(t);
1009 vswap();
1010 } else {
1011 /* duplicate value */
1012 rc = RC_INT;
1013 sv.type.t = VT_INT;
1014 if (is_float(t)) {
1015 rc = RC_FLOAT;
1016 #ifdef TCC_TARGET_X86_64
1017 if ((t & VT_BTYPE) == VT_LDOUBLE) {
1018 rc = RC_ST0;
1020 #endif
1021 sv.type.t = t;
1023 r = gv(rc);
1024 r1 = get_reg(rc);
1025 sv.r = r;
1026 sv.c.ul = 0;
1027 load(r1, &sv); /* move r to r1 */
1028 vdup();
1029 /* duplicates value */
1030 if (r != r1)
1031 vtop->r = r1;
1035 #ifndef TCC_TARGET_X86_64
1036 /* generate CPU independent (unsigned) long long operations */
1037 static void gen_opl(int op)
1039 int t, a, b, op1, c, i;
1040 int func;
1041 unsigned short reg_iret = REG_IRET;
1042 unsigned short reg_lret = REG_LRET;
1043 SValue tmp;
1045 switch(op) {
1046 case '/':
1047 case TOK_PDIV:
1048 func = TOK___divdi3;
1049 goto gen_func;
1050 case TOK_UDIV:
1051 func = TOK___udivdi3;
1052 goto gen_func;
1053 case '%':
1054 func = TOK___moddi3;
1055 goto gen_mod_func;
1056 case TOK_UMOD:
1057 func = TOK___umoddi3;
1058 gen_mod_func:
1059 #ifdef TCC_ARM_EABI
1060 reg_iret = TREG_R2;
1061 reg_lret = TREG_R3;
1062 #endif
1063 gen_func:
1064 /* call generic long long function */
1065 vpush_global_sym(&func_old_type, func);
1066 vrott(3);
1067 gfunc_call(2);
1068 vpushi(0);
1069 vtop->r = reg_iret;
1070 vtop->r2 = reg_lret;
1071 break;
1072 case '^':
1073 case '&':
1074 case '|':
1075 case '*':
1076 case '+':
1077 case '-':
1078 t = vtop->type.t;
1079 vswap();
1080 lexpand();
1081 vrotb(3);
1082 lexpand();
1083 /* stack: L1 H1 L2 H2 */
1084 tmp = vtop[0];
1085 vtop[0] = vtop[-3];
1086 vtop[-3] = tmp;
1087 tmp = vtop[-2];
1088 vtop[-2] = vtop[-3];
1089 vtop[-3] = tmp;
1090 vswap();
1091 /* stack: H1 H2 L1 L2 */
1092 if (op == '*') {
1093 vpushv(vtop - 1);
1094 vpushv(vtop - 1);
1095 gen_op(TOK_UMULL);
1096 lexpand();
1097 /* stack: H1 H2 L1 L2 ML MH */
1098 for(i=0;i<4;i++)
1099 vrotb(6);
1100 /* stack: ML MH H1 H2 L1 L2 */
1101 tmp = vtop[0];
1102 vtop[0] = vtop[-2];
1103 vtop[-2] = tmp;
1104 /* stack: ML MH H1 L2 H2 L1 */
1105 gen_op('*');
1106 vrotb(3);
1107 vrotb(3);
1108 gen_op('*');
1109 /* stack: ML MH M1 M2 */
1110 gen_op('+');
1111 gen_op('+');
1112 } else if (op == '+' || op == '-') {
1113 /* XXX: add non carry method too (for MIPS or alpha) */
1114 if (op == '+')
1115 op1 = TOK_ADDC1;
1116 else
1117 op1 = TOK_SUBC1;
1118 gen_op(op1);
1119 /* stack: H1 H2 (L1 op L2) */
1120 vrotb(3);
1121 vrotb(3);
1122 gen_op(op1 + 1); /* TOK_xxxC2 */
1123 } else {
1124 gen_op(op);
1125 /* stack: H1 H2 (L1 op L2) */
1126 vrotb(3);
1127 vrotb(3);
1128 /* stack: (L1 op L2) H1 H2 */
1129 gen_op(op);
1130 /* stack: (L1 op L2) (H1 op H2) */
1132 /* stack: L H */
1133 lbuild(t);
1134 break;
1135 case TOK_SAR:
1136 case TOK_SHR:
1137 case TOK_SHL:
1138 if ((vtop->r & (VT_VALMASK | VT_LVAL | VT_SYM)) == VT_CONST) {
1139 t = vtop[-1].type.t;
1140 vswap();
1141 lexpand();
1142 vrotb(3);
1143 /* stack: L H shift */
1144 c = (int)vtop->c.i;
1145 /* constant: simpler */
1146 /* NOTE: all comments are for SHL. the other cases are
1147 done by swaping words */
1148 vpop();
1149 if (op != TOK_SHL)
1150 vswap();
1151 if (c >= 32) {
1152 /* stack: L H */
1153 vpop();
1154 if (c > 32) {
1155 vpushi(c - 32);
1156 gen_op(op);
1158 if (op != TOK_SAR) {
1159 vpushi(0);
1160 } else {
1161 gv_dup();
1162 vpushi(31);
1163 gen_op(TOK_SAR);
1165 vswap();
1166 } else {
1167 vswap();
1168 gv_dup();
1169 /* stack: H L L */
1170 vpushi(c);
1171 gen_op(op);
1172 vswap();
1173 vpushi(32 - c);
1174 if (op == TOK_SHL)
1175 gen_op(TOK_SHR);
1176 else
1177 gen_op(TOK_SHL);
1178 vrotb(3);
1179 /* stack: L L H */
1180 vpushi(c);
1181 if (op == TOK_SHL)
1182 gen_op(TOK_SHL);
1183 else
1184 gen_op(TOK_SHR);
1185 gen_op('|');
1187 if (op != TOK_SHL)
1188 vswap();
1189 lbuild(t);
1190 } else {
1191 /* XXX: should provide a faster fallback on x86 ? */
1192 switch(op) {
1193 case TOK_SAR:
1194 func = TOK___ashrdi3;
1195 goto gen_func;
1196 case TOK_SHR:
1197 func = TOK___lshrdi3;
1198 goto gen_func;
1199 case TOK_SHL:
1200 func = TOK___ashldi3;
1201 goto gen_func;
1204 break;
1205 default:
1206 /* compare operations */
1207 t = vtop->type.t;
1208 vswap();
1209 lexpand();
1210 vrotb(3);
1211 lexpand();
1212 /* stack: L1 H1 L2 H2 */
1213 tmp = vtop[-1];
1214 vtop[-1] = vtop[-2];
1215 vtop[-2] = tmp;
1216 /* stack: L1 L2 H1 H2 */
1217 /* compare high */
1218 op1 = op;
1219 /* when values are equal, we need to compare low words. since
1220 the jump is inverted, we invert the test too. */
1221 if (op1 == TOK_LT)
1222 op1 = TOK_LE;
1223 else if (op1 == TOK_GT)
1224 op1 = TOK_GE;
1225 else if (op1 == TOK_ULT)
1226 op1 = TOK_ULE;
1227 else if (op1 == TOK_UGT)
1228 op1 = TOK_UGE;
1229 a = 0;
1230 b = 0;
1231 gen_op(op1);
1232 if (op1 != TOK_NE) {
1233 a = gtst(1, 0);
1235 if (op != TOK_EQ) {
1236 /* generate non equal test */
1237 /* XXX: NOT PORTABLE yet */
1238 if (a == 0) {
1239 b = gtst(0, 0);
1240 } else {
1241 #if defined(TCC_TARGET_I386)
1242 b = psym(0x850f, 0);
1243 #elif defined(TCC_TARGET_ARM)
1244 b = ind;
1245 o(0x1A000000 | encbranch(ind, 0, 1));
1246 #elif defined(TCC_TARGET_C67)
1247 tcc_error("not implemented");
1248 #else
1249 #error not supported
1250 #endif
1253 /* compare low. Always unsigned */
1254 op1 = op;
1255 if (op1 == TOK_LT)
1256 op1 = TOK_ULT;
1257 else if (op1 == TOK_LE)
1258 op1 = TOK_ULE;
1259 else if (op1 == TOK_GT)
1260 op1 = TOK_UGT;
1261 else if (op1 == TOK_GE)
1262 op1 = TOK_UGE;
1263 gen_op(op1);
1264 a = gtst(1, a);
1265 gsym(b);
1266 vseti(VT_JMPI, a);
1267 break;
1270 #endif
1272 /* handle integer constant optimizations and various machine
1273 independent opt */
1274 static void gen_opic(int op)
1276 int c1, c2, t1, t2, n;
1277 SValue *v1, *v2;
1278 long long l1, l2;
1279 typedef unsigned long long U;
1281 v1 = vtop - 1;
1282 v2 = vtop;
1283 t1 = v1->type.t & VT_BTYPE;
1284 t2 = v2->type.t & VT_BTYPE;
1286 if (t1 == VT_LLONG)
1287 l1 = v1->c.ll;
1288 else if (v1->type.t & VT_UNSIGNED)
1289 l1 = v1->c.ui;
1290 else
1291 l1 = v1->c.i;
1293 if (t2 == VT_LLONG)
1294 l2 = v2->c.ll;
1295 else if (v2->type.t & VT_UNSIGNED)
1296 l2 = v2->c.ui;
1297 else
1298 l2 = v2->c.i;
1300 /* currently, we cannot do computations with forward symbols */
1301 c1 = (v1->r & (VT_VALMASK | VT_LVAL | VT_SYM)) == VT_CONST;
1302 c2 = (v2->r & (VT_VALMASK | VT_LVAL | VT_SYM)) == VT_CONST;
1303 if (c1 && c2) {
1304 switch(op) {
1305 case '+': l1 += l2; break;
1306 case '-': l1 -= l2; break;
1307 case '&': l1 &= l2; break;
1308 case '^': l1 ^= l2; break;
1309 case '|': l1 |= l2; break;
1310 case '*': l1 *= l2; break;
1312 case TOK_PDIV:
1313 case '/':
1314 case '%':
1315 case TOK_UDIV:
1316 case TOK_UMOD:
1317 /* if division by zero, generate explicit division */
1318 if (l2 == 0) {
1319 if (const_wanted)
1320 tcc_error("division by zero in constant");
1321 goto general_case;
1323 switch(op) {
1324 default: l1 /= l2; break;
1325 case '%': l1 %= l2; break;
1326 case TOK_UDIV: l1 = (U)l1 / l2; break;
1327 case TOK_UMOD: l1 = (U)l1 % l2; break;
1329 break;
1330 case TOK_SHL: l1 <<= l2; break;
1331 case TOK_SHR: l1 = (U)l1 >> l2; break;
1332 case TOK_SAR: l1 >>= l2; break;
1333 /* tests */
1334 case TOK_ULT: l1 = (U)l1 < (U)l2; break;
1335 case TOK_UGE: l1 = (U)l1 >= (U)l2; break;
1336 case TOK_EQ: l1 = l1 == l2; break;
1337 case TOK_NE: l1 = l1 != l2; break;
1338 case TOK_ULE: l1 = (U)l1 <= (U)l2; break;
1339 case TOK_UGT: l1 = (U)l1 > (U)l2; break;
1340 case TOK_LT: l1 = l1 < l2; break;
1341 case TOK_GE: l1 = l1 >= l2; break;
1342 case TOK_LE: l1 = l1 <= l2; break;
1343 case TOK_GT: l1 = l1 > l2; break;
1344 /* logical */
1345 case TOK_LAND: l1 = l1 && l2; break;
1346 case TOK_LOR: l1 = l1 || l2; break;
1347 default:
1348 goto general_case;
1350 v1->c.ll = l1;
1351 vtop--;
1352 } else {
1353 /* if commutative ops, put c2 as constant */
1354 if (c1 && (op == '+' || op == '&' || op == '^' ||
1355 op == '|' || op == '*')) {
1356 vswap();
1357 c2 = c1; //c = c1, c1 = c2, c2 = c;
1358 l2 = l1; //l = l1, l1 = l2, l2 = l;
1360 /* Filter out NOP operations like x*1, x-0, x&-1... */
1361 if (c2 && (((op == '*' || op == '/' || op == TOK_UDIV ||
1362 op == TOK_PDIV) &&
1363 l2 == 1) ||
1364 ((op == '+' || op == '-' || op == '|' || op == '^' ||
1365 op == TOK_SHL || op == TOK_SHR || op == TOK_SAR) &&
1366 l2 == 0) ||
1367 (op == '&' &&
1368 l2 == -1))) {
1369 /* nothing to do */
1370 vtop--;
1371 } else if (c2 && (op == '*' || op == TOK_PDIV || op == TOK_UDIV)) {
1372 /* try to use shifts instead of muls or divs */
1373 if (l2 > 0 && (l2 & (l2 - 1)) == 0) {
1374 n = -1;
1375 while (l2) {
1376 l2 >>= 1;
1377 n++;
1379 vtop->c.ll = n;
1380 if (op == '*')
1381 op = TOK_SHL;
1382 else if (op == TOK_PDIV)
1383 op = TOK_SAR;
1384 else
1385 op = TOK_SHR;
1387 goto general_case;
1388 } else if (c2 && (op == '+' || op == '-') &&
1389 (((vtop[-1].r & (VT_VALMASK | VT_LVAL | VT_SYM)) == (VT_CONST | VT_SYM))
1390 || (vtop[-1].r & (VT_VALMASK | VT_LVAL)) == VT_LOCAL)) {
1391 /* symbol + constant case */
1392 if (op == '-')
1393 l2 = -l2;
1394 vtop--;
1395 vtop->c.ll += l2;
1396 } else {
1397 general_case:
1398 if (!nocode_wanted) {
1399 /* call low level op generator */
1400 if (t1 == VT_LLONG || t2 == VT_LLONG)
1401 gen_opl(op);
1402 else
1403 gen_opi(op);
1404 } else {
1405 vtop--;
1411 /* generate a floating point operation with constant propagation */
1412 static void gen_opif(int op)
1414 int c1, c2;
1415 SValue *v1, *v2;
1416 long double f1, f2;
1418 v1 = vtop - 1;
1419 v2 = vtop;
1420 /* currently, we cannot do computations with forward symbols */
1421 c1 = (v1->r & (VT_VALMASK | VT_LVAL | VT_SYM)) == VT_CONST;
1422 c2 = (v2->r & (VT_VALMASK | VT_LVAL | VT_SYM)) == VT_CONST;
1423 if (c1 && c2) {
1424 if (v1->type.t == VT_FLOAT) {
1425 f1 = v1->c.f;
1426 f2 = v2->c.f;
1427 } else if (v1->type.t == VT_DOUBLE) {
1428 f1 = v1->c.d;
1429 f2 = v2->c.d;
1430 } else {
1431 f1 = v1->c.ld;
1432 f2 = v2->c.ld;
1435 /* NOTE: we only do constant propagation if finite number (not
1436 NaN or infinity) (ANSI spec) */
1437 if (!ieee_finite(f1) || !ieee_finite(f2))
1438 goto general_case;
1440 switch(op) {
1441 case '+': f1 += f2; break;
1442 case '-': f1 -= f2; break;
1443 case '*': f1 *= f2; break;
1444 case '/':
1445 if (f2 == 0.0) {
1446 if (const_wanted)
1447 tcc_error("division by zero in constant");
1448 goto general_case;
1450 f1 /= f2;
1451 break;
1452 /* XXX: also handles tests ? */
1453 default:
1454 goto general_case;
1456 /* XXX: overflow test ? */
1457 if (v1->type.t == VT_FLOAT) {
1458 v1->c.f = f1;
1459 } else if (v1->type.t == VT_DOUBLE) {
1460 v1->c.d = f1;
1461 } else {
1462 v1->c.ld = f1;
1464 vtop--;
1465 } else {
1466 general_case:
1467 if (!nocode_wanted) {
1468 gen_opf(op);
1469 } else {
1470 vtop--;
1475 static int pointed_size(CType *type)
1477 int align;
1478 return type_size(pointed_type(type), &align);
1481 static void vla_runtime_pointed_size(CType *type)
1483 int align;
1484 vla_runtime_type_size(pointed_type(type), &align);
1487 static inline int is_null_pointer(SValue *p)
1489 if ((p->r & (VT_VALMASK | VT_LVAL | VT_SYM)) != VT_CONST)
1490 return 0;
1491 return ((p->type.t & VT_BTYPE) == VT_INT && p->c.i == 0) ||
1492 ((p->type.t & VT_BTYPE) == VT_LLONG && p->c.ll == 0) ||
1493 ((p->type.t & VT_BTYPE) == VT_PTR && p->c.ptr == 0);
1496 static inline int is_integer_btype(int bt)
1498 return (bt == VT_BYTE || bt == VT_SHORT ||
1499 bt == VT_INT || bt == VT_LLONG);
1502 /* check types for comparison or substraction of pointers */
1503 static void check_comparison_pointer_types(SValue *p1, SValue *p2, int op)
1505 CType *type1, *type2, tmp_type1, tmp_type2;
1506 int bt1, bt2;
1508 /* null pointers are accepted for all comparisons as gcc */
1509 if (is_null_pointer(p1) || is_null_pointer(p2))
1510 return;
1511 type1 = &p1->type;
1512 type2 = &p2->type;
1513 bt1 = type1->t & VT_BTYPE;
1514 bt2 = type2->t & VT_BTYPE;
1515 /* accept comparison between pointer and integer with a warning */
1516 if ((is_integer_btype(bt1) || is_integer_btype(bt2)) && op != '-') {
1517 if (op != TOK_LOR && op != TOK_LAND )
1518 tcc_warning("comparison between pointer and integer");
1519 return;
1522 /* both must be pointers or implicit function pointers */
1523 if (bt1 == VT_PTR) {
1524 type1 = pointed_type(type1);
1525 } else if (bt1 != VT_FUNC)
1526 goto invalid_operands;
1528 if (bt2 == VT_PTR) {
1529 type2 = pointed_type(type2);
1530 } else if (bt2 != VT_FUNC) {
1531 invalid_operands:
1532 tcc_error("invalid operands to binary %s", get_tok_str(op, NULL));
1534 if ((type1->t & VT_BTYPE) == VT_VOID ||
1535 (type2->t & VT_BTYPE) == VT_VOID)
1536 return;
1537 tmp_type1 = *type1;
1538 tmp_type2 = *type2;
1539 tmp_type1.t &= ~(VT_UNSIGNED | VT_CONSTANT | VT_VOLATILE);
1540 tmp_type2.t &= ~(VT_UNSIGNED | VT_CONSTANT | VT_VOLATILE);
1541 if (!is_compatible_types(&tmp_type1, &tmp_type2)) {
1542 /* gcc-like error if '-' is used */
1543 if (op == '-')
1544 goto invalid_operands;
1545 else
1546 tcc_warning("comparison of distinct pointer types lacks a cast");
1550 /* generic gen_op: handles types problems */
1551 ST_FUNC void gen_op(int op)
1553 int u, t1, t2, bt1, bt2, t;
1554 CType type1;
1556 t1 = vtop[-1].type.t;
1557 t2 = vtop[0].type.t;
1558 bt1 = t1 & VT_BTYPE;
1559 bt2 = t2 & VT_BTYPE;
1561 if (bt1 == VT_PTR || bt2 == VT_PTR) {
1562 /* at least one operand is a pointer */
1563 /* relationnal op: must be both pointers */
1564 if (op >= TOK_ULT && op <= TOK_LOR) {
1565 check_comparison_pointer_types(vtop - 1, vtop, op);
1566 /* pointers are handled are unsigned */
1567 #ifdef TCC_TARGET_X86_64
1568 t = VT_LLONG | VT_UNSIGNED;
1569 #else
1570 t = VT_INT | VT_UNSIGNED;
1571 #endif
1572 goto std_op;
1574 /* if both pointers, then it must be the '-' op */
1575 if (bt1 == VT_PTR && bt2 == VT_PTR) {
1576 if (op != '-')
1577 tcc_error("cannot use pointers here");
1578 check_comparison_pointer_types(vtop - 1, vtop, op);
1579 /* XXX: check that types are compatible */
1580 if (vtop[-1].type.t & VT_VLA) {
1581 vla_runtime_pointed_size(&vtop[-1].type);
1582 } else {
1583 vpushi(pointed_size(&vtop[-1].type));
1585 vrott(3);
1586 gen_opic(op);
1587 /* set to integer type */
1588 #ifdef TCC_TARGET_X86_64
1589 vtop->type.t = VT_LLONG;
1590 #else
1591 vtop->type.t = VT_INT;
1592 #endif
1593 vswap();
1594 gen_op(TOK_PDIV);
1595 } else {
1596 /* exactly one pointer : must be '+' or '-'. */
1597 if (op != '-' && op != '+')
1598 tcc_error("cannot use pointers here");
1599 /* Put pointer as first operand */
1600 if (bt2 == VT_PTR) {
1601 vswap();
1602 swap(&t1, &t2);
1604 type1 = vtop[-1].type;
1605 type1.t &= ~VT_ARRAY;
1606 if (vtop[-1].type.t & VT_VLA)
1607 vla_runtime_pointed_size(&vtop[-1].type);
1608 else {
1609 u = pointed_size(&vtop[-1].type);
1610 if (u < 0)
1611 tcc_error("unknown array element size");
1612 #ifdef TCC_TARGET_X86_64
1613 vpushll(u);
1614 #else
1615 /* XXX: cast to int ? (long long case) */
1616 vpushi(u);
1617 #endif
1619 gen_op('*');
1620 #ifdef CONFIG_TCC_BCHECK
1621 /* if evaluating constant expression, no code should be
1622 generated, so no bound check */
1623 if (tcc_state->do_bounds_check && !const_wanted) {
1624 /* if bounded pointers, we generate a special code to
1625 test bounds */
1626 if (op == '-') {
1627 vpushi(0);
1628 vswap();
1629 gen_op('-');
1631 gen_bounded_ptr_add();
1632 } else
1633 #endif
1635 gen_opic(op);
1637 /* put again type if gen_opic() swaped operands */
1638 vtop->type = type1;
1640 } else if (is_float(bt1) || is_float(bt2)) {
1641 /* compute bigger type and do implicit casts */
1642 if (bt1 == VT_LDOUBLE || bt2 == VT_LDOUBLE) {
1643 t = VT_LDOUBLE;
1644 } else if (bt1 == VT_DOUBLE || bt2 == VT_DOUBLE) {
1645 t = VT_DOUBLE;
1646 } else {
1647 t = VT_FLOAT;
1649 /* floats can only be used for a few operations */
1650 if (op != '+' && op != '-' && op != '*' && op != '/' &&
1651 (op < TOK_ULT || op > TOK_GT))
1652 tcc_error("invalid operands for binary operation");
1653 goto std_op;
1654 } else if (bt1 == VT_LLONG || bt2 == VT_LLONG) {
1655 /* cast to biggest op */
1656 t = VT_LLONG;
1657 /* convert to unsigned if it does not fit in a long long */
1658 if ((t1 & (VT_BTYPE | VT_UNSIGNED)) == (VT_LLONG | VT_UNSIGNED) ||
1659 (t2 & (VT_BTYPE | VT_UNSIGNED)) == (VT_LLONG | VT_UNSIGNED))
1660 t |= VT_UNSIGNED;
1661 goto std_op;
1662 } else {
1663 /* integer operations */
1664 t = VT_INT;
1665 /* convert to unsigned if it does not fit in an integer */
1666 if ((t1 & (VT_BTYPE | VT_UNSIGNED)) == (VT_INT | VT_UNSIGNED) ||
1667 (t2 & (VT_BTYPE | VT_UNSIGNED)) == (VT_INT | VT_UNSIGNED))
1668 t |= VT_UNSIGNED;
1669 std_op:
1670 /* XXX: currently, some unsigned operations are explicit, so
1671 we modify them here */
1672 if (t & VT_UNSIGNED) {
1673 if (op == TOK_SAR)
1674 op = TOK_SHR;
1675 else if (op == '/')
1676 op = TOK_UDIV;
1677 else if (op == '%')
1678 op = TOK_UMOD;
1679 else if (op == TOK_LT)
1680 op = TOK_ULT;
1681 else if (op == TOK_GT)
1682 op = TOK_UGT;
1683 else if (op == TOK_LE)
1684 op = TOK_ULE;
1685 else if (op == TOK_GE)
1686 op = TOK_UGE;
1688 vswap();
1689 type1.t = t;
1690 gen_cast(&type1);
1691 vswap();
1692 /* special case for shifts and long long: we keep the shift as
1693 an integer */
1694 if (op == TOK_SHR || op == TOK_SAR || op == TOK_SHL)
1695 type1.t = VT_INT;
1696 gen_cast(&type1);
1697 if (is_float(t))
1698 gen_opif(op);
1699 else
1700 gen_opic(op);
1701 if (op >= TOK_ULT && op <= TOK_GT) {
1702 /* relationnal op: the result is an int */
1703 vtop->type.t = VT_INT;
1704 } else {
1705 vtop->type.t = t;
1710 #ifndef TCC_TARGET_ARM
1711 /* generic itof for unsigned long long case */
1712 static void gen_cvt_itof1(int t)
1714 if ((vtop->type.t & (VT_BTYPE | VT_UNSIGNED)) ==
1715 (VT_LLONG | VT_UNSIGNED)) {
1717 if (t == VT_FLOAT)
1718 vpush_global_sym(&func_old_type, TOK___floatundisf);
1719 #if LDOUBLE_SIZE != 8
1720 else if (t == VT_LDOUBLE)
1721 vpush_global_sym(&func_old_type, TOK___floatundixf);
1722 #endif
1723 else
1724 vpush_global_sym(&func_old_type, TOK___floatundidf);
1725 vrott(2);
1726 gfunc_call(1);
1727 vpushi(0);
1728 vtop->r = reg_fret(t);
1729 } else {
1730 gen_cvt_itof(t);
1733 #endif
1735 /* generic ftoi for unsigned long long case */
1736 static void gen_cvt_ftoi1(int t)
1738 int st;
1740 if (t == (VT_LLONG | VT_UNSIGNED)) {
1741 /* not handled natively */
1742 st = vtop->type.t & VT_BTYPE;
1743 if (st == VT_FLOAT)
1744 vpush_global_sym(&func_old_type, TOK___fixunssfdi);
1745 #if LDOUBLE_SIZE != 8
1746 else if (st == VT_LDOUBLE)
1747 vpush_global_sym(&func_old_type, TOK___fixunsxfdi);
1748 #endif
1749 else
1750 vpush_global_sym(&func_old_type, TOK___fixunsdfdi);
1751 vrott(2);
1752 gfunc_call(1);
1753 vpushi(0);
1754 vtop->r = REG_IRET;
1755 vtop->r2 = REG_LRET;
1756 } else {
1757 gen_cvt_ftoi(t);
1761 /* force char or short cast */
1762 static void force_charshort_cast(int t)
1764 int bits, dbt;
1765 dbt = t & VT_BTYPE;
1766 /* XXX: add optimization if lvalue : just change type and offset */
1767 if (dbt == VT_BYTE)
1768 bits = 8;
1769 else
1770 bits = 16;
1771 if (t & VT_UNSIGNED) {
1772 vpushi((1 << bits) - 1);
1773 gen_op('&');
1774 } else {
1775 bits = 32 - bits;
1776 vpushi(bits);
1777 gen_op(TOK_SHL);
1778 /* result must be signed or the SAR is converted to an SHL
1779 This was not the case when "t" was a signed short
1780 and the last value on the stack was an unsigned int */
1781 vtop->type.t &= ~VT_UNSIGNED;
1782 vpushi(bits);
1783 gen_op(TOK_SAR);
1787 /* cast 'vtop' to 'type'. Casting to bitfields is forbidden. */
1788 static void gen_cast(CType *type)
1790 int sbt, dbt, sf, df, c, p;
1792 /* special delayed cast for char/short */
1793 /* XXX: in some cases (multiple cascaded casts), it may still
1794 be incorrect */
1795 if (vtop->r & VT_MUSTCAST) {
1796 vtop->r &= ~VT_MUSTCAST;
1797 force_charshort_cast(vtop->type.t);
1800 /* bitfields first get cast to ints */
1801 if (vtop->type.t & VT_BITFIELD) {
1802 gv(RC_INT);
1805 dbt = type->t & (VT_BTYPE | VT_UNSIGNED);
1806 sbt = vtop->type.t & (VT_BTYPE | VT_UNSIGNED);
1808 if (sbt != dbt) {
1809 sf = is_float(sbt);
1810 df = is_float(dbt);
1811 c = (vtop->r & (VT_VALMASK | VT_LVAL | VT_SYM)) == VT_CONST;
1812 p = (vtop->r & (VT_VALMASK | VT_LVAL | VT_SYM)) == (VT_CONST | VT_SYM);
1813 if (c) {
1814 /* constant case: we can do it now */
1815 /* XXX: in ISOC, cannot do it if error in convert */
1816 if (sbt == VT_FLOAT)
1817 vtop->c.ld = vtop->c.f;
1818 else if (sbt == VT_DOUBLE)
1819 vtop->c.ld = vtop->c.d;
1821 if (df) {
1822 if ((sbt & VT_BTYPE) == VT_LLONG) {
1823 if (sbt & VT_UNSIGNED)
1824 vtop->c.ld = vtop->c.ull;
1825 else
1826 vtop->c.ld = vtop->c.ll;
1827 } else if(!sf) {
1828 if (sbt & VT_UNSIGNED)
1829 vtop->c.ld = vtop->c.ui;
1830 else
1831 vtop->c.ld = vtop->c.i;
1834 if (dbt == VT_FLOAT)
1835 vtop->c.f = (float)vtop->c.ld;
1836 else if (dbt == VT_DOUBLE)
1837 vtop->c.d = (double)vtop->c.ld;
1838 } else if (sf && dbt == (VT_LLONG|VT_UNSIGNED)) {
1839 vtop->c.ull = (unsigned long long)vtop->c.ld;
1840 } else if (sf && dbt == VT_BOOL) {
1841 vtop->c.i = (vtop->c.ld != 0);
1842 } else {
1843 if(sf)
1844 vtop->c.ll = (long long)vtop->c.ld;
1845 else if (sbt == (VT_LLONG|VT_UNSIGNED))
1846 vtop->c.ll = vtop->c.ull;
1847 else if (sbt & VT_UNSIGNED)
1848 vtop->c.ll = vtop->c.ui;
1849 #ifdef TCC_TARGET_X86_64
1850 else if (sbt == VT_PTR)
1852 #endif
1853 else if (sbt != VT_LLONG)
1854 vtop->c.ll = vtop->c.i;
1856 if (dbt == (VT_LLONG|VT_UNSIGNED))
1857 vtop->c.ull = vtop->c.ll;
1858 else if (dbt == VT_BOOL)
1859 vtop->c.i = (vtop->c.ll != 0);
1860 else if (dbt != VT_LLONG) {
1861 int s = 0;
1862 if ((dbt & VT_BTYPE) == VT_BYTE)
1863 s = 24;
1864 else if ((dbt & VT_BTYPE) == VT_SHORT)
1865 s = 16;
1867 if(dbt & VT_UNSIGNED)
1868 vtop->c.ui = ((unsigned int)vtop->c.ll << s) >> s;
1869 else
1870 vtop->c.i = ((int)vtop->c.ll << s) >> s;
1873 } else if (p && dbt == VT_BOOL) {
1874 vtop->r = VT_CONST;
1875 vtop->c.i = 1;
1876 } else if (!nocode_wanted) {
1877 /* non constant case: generate code */
1878 if (sf && df) {
1879 /* convert from fp to fp */
1880 gen_cvt_ftof(dbt);
1881 } else if (df) {
1882 /* convert int to fp */
1883 gen_cvt_itof1(dbt);
1884 } else if (sf) {
1885 /* convert fp to int */
1886 if (dbt == VT_BOOL) {
1887 vpushi(0);
1888 gen_op(TOK_NE);
1889 } else {
1890 /* we handle char/short/etc... with generic code */
1891 if (dbt != (VT_INT | VT_UNSIGNED) &&
1892 dbt != (VT_LLONG | VT_UNSIGNED) &&
1893 dbt != VT_LLONG)
1894 dbt = VT_INT;
1895 gen_cvt_ftoi1(dbt);
1896 if (dbt == VT_INT && (type->t & (VT_BTYPE | VT_UNSIGNED)) != dbt) {
1897 /* additional cast for char/short... */
1898 vtop->type.t = dbt;
1899 gen_cast(type);
1902 #ifndef TCC_TARGET_X86_64
1903 } else if ((dbt & VT_BTYPE) == VT_LLONG) {
1904 if ((sbt & VT_BTYPE) != VT_LLONG) {
1905 /* scalar to long long */
1906 /* machine independent conversion */
1907 gv(RC_INT);
1908 /* generate high word */
1909 if (sbt == (VT_INT | VT_UNSIGNED)) {
1910 vpushi(0);
1911 gv(RC_INT);
1912 } else {
1913 if (sbt == VT_PTR) {
1914 /* cast from pointer to int before we apply
1915 shift operation, which pointers don't support*/
1916 gen_cast(&int_type);
1918 gv_dup();
1919 vpushi(31);
1920 gen_op(TOK_SAR);
1922 /* patch second register */
1923 vtop[-1].r2 = vtop->r;
1924 vpop();
1926 #else
1927 } else if ((dbt & VT_BTYPE) == VT_LLONG ||
1928 (dbt & VT_BTYPE) == VT_PTR ||
1929 (dbt & VT_BTYPE) == VT_FUNC) {
1930 if ((sbt & VT_BTYPE) != VT_LLONG &&
1931 (sbt & VT_BTYPE) != VT_PTR &&
1932 (sbt & VT_BTYPE) != VT_FUNC) {
1933 /* need to convert from 32bit to 64bit */
1934 int r = gv(RC_INT);
1935 if (sbt != (VT_INT | VT_UNSIGNED)) {
1936 /* x86_64 specific: movslq */
1937 o(0x6348);
1938 o(0xc0 + (REG_VALUE(r) << 3) + REG_VALUE(r));
1941 #endif
1942 } else if (dbt == VT_BOOL) {
1943 /* scalar to bool */
1944 vpushi(0);
1945 gen_op(TOK_NE);
1946 } else if ((dbt & VT_BTYPE) == VT_BYTE ||
1947 (dbt & VT_BTYPE) == VT_SHORT) {
1948 if (sbt == VT_PTR) {
1949 vtop->type.t = VT_INT;
1950 tcc_warning("nonportable conversion from pointer to char/short");
1952 force_charshort_cast(dbt);
1953 } else if ((dbt & VT_BTYPE) == VT_INT) {
1954 /* scalar to int */
1955 if (sbt == VT_LLONG) {
1956 /* from long long: just take low order word */
1957 lexpand();
1958 vpop();
1960 /* if lvalue and single word type, nothing to do because
1961 the lvalue already contains the real type size (see
1962 VT_LVAL_xxx constants) */
1965 } else if ((dbt & VT_BTYPE) == VT_PTR && !(vtop->r & VT_LVAL)) {
1966 /* if we are casting between pointer types,
1967 we must update the VT_LVAL_xxx size */
1968 vtop->r = (vtop->r & ~VT_LVAL_TYPE)
1969 | (lvalue_type(type->ref->type.t) & VT_LVAL_TYPE);
1971 vtop->type = *type;
1974 /* return type size as known at compile time. Put alignment at 'a' */
1975 ST_FUNC int type_size(CType *type, int *a)
1977 Sym *s;
1978 int bt;
1980 bt = type->t & VT_BTYPE;
1981 if (bt == VT_STRUCT) {
1982 /* struct/union */
1983 s = type->ref;
1984 *a = s->r;
1985 return s->c;
1986 } else if (bt == VT_PTR) {
1987 if (type->t & VT_ARRAY) {
1988 int ts;
1990 s = type->ref;
1991 ts = type_size(&s->type, a);
1993 if (ts < 0 && s->c < 0)
1994 ts = -ts;
1996 return ts * s->c;
1997 } else {
1998 *a = PTR_SIZE;
1999 return PTR_SIZE;
2001 } else if (bt == VT_LDOUBLE) {
2002 *a = LDOUBLE_ALIGN;
2003 return LDOUBLE_SIZE;
2004 } else if (bt == VT_DOUBLE || bt == VT_LLONG) {
2005 #ifdef TCC_TARGET_I386
2006 #ifdef TCC_TARGET_PE
2007 *a = 8;
2008 #else
2009 *a = 4;
2010 #endif
2011 #elif defined(TCC_TARGET_ARM)
2012 #ifdef TCC_ARM_EABI
2013 *a = 8;
2014 #else
2015 *a = 4;
2016 #endif
2017 #else
2018 *a = 8;
2019 #endif
2020 return 8;
2021 } else if (bt == VT_INT || bt == VT_ENUM || bt == VT_FLOAT) {
2022 *a = 4;
2023 return 4;
2024 } else if (bt == VT_SHORT) {
2025 *a = 2;
2026 return 2;
2027 } else {
2028 /* char, void, function, _Bool */
2029 *a = 1;
2030 return 1;
2034 /* push type size as known at runtime time on top of value stack. Put
2035 alignment at 'a' */
2036 ST_FUNC void vla_runtime_type_size(CType *type, int *a)
2038 if (type->t & VT_VLA) {
2039 vset(&int_type, VT_LOCAL|VT_LVAL, type->ref->c);
2040 } else {
2041 vpushi(type_size(type, a));
2045 /* return the pointed type of t */
2046 static inline CType *pointed_type(CType *type)
2048 return &type->ref->type;
2051 /* modify type so that its it is a pointer to type. */
2052 ST_FUNC void mk_pointer(CType *type)
2054 Sym *s;
2055 s = sym_push(SYM_FIELD, type, 0, -1);
2056 type->t = VT_PTR | (type->t & ~VT_TYPE);
2057 type->ref = s;
2060 /* compare function types. OLD functions match any new functions */
2061 static int is_compatible_func(CType *type1, CType *type2)
2063 Sym *s1, *s2;
2065 s1 = type1->ref;
2066 s2 = type2->ref;
2067 if (!is_compatible_types(&s1->type, &s2->type))
2068 return 0;
2069 /* check func_call */
2070 if (FUNC_CALL(s1->r) != FUNC_CALL(s2->r))
2071 return 0;
2072 /* XXX: not complete */
2073 if (s1->c == FUNC_OLD || s2->c == FUNC_OLD)
2074 return 1;
2075 if (s1->c != s2->c)
2076 return 0;
2077 while (s1 != NULL) {
2078 if (s2 == NULL)
2079 return 0;
2080 if (!is_compatible_parameter_types(&s1->type, &s2->type))
2081 return 0;
2082 s1 = s1->next;
2083 s2 = s2->next;
2085 if (s2)
2086 return 0;
2087 return 1;
2090 /* return true if type1 and type2 are the same. If unqualified is
2091 true, qualifiers on the types are ignored.
2093 - enums are not checked as gcc __builtin_types_compatible_p ()
2095 static int compare_types(CType *type1, CType *type2, int unqualified)
2097 int bt1, t1, t2;
2099 t1 = type1->t & VT_TYPE;
2100 t2 = type2->t & VT_TYPE;
2101 if (unqualified) {
2102 /* strip qualifiers before comparing */
2103 t1 &= ~(VT_CONSTANT | VT_VOLATILE);
2104 t2 &= ~(VT_CONSTANT | VT_VOLATILE);
2106 /* XXX: bitfields ? */
2107 if (t1 != t2)
2108 return 0;
2109 /* test more complicated cases */
2110 bt1 = t1 & VT_BTYPE;
2111 if (bt1 == VT_PTR) {
2112 type1 = pointed_type(type1);
2113 type2 = pointed_type(type2);
2114 return is_compatible_types(type1, type2);
2115 } else if (bt1 == VT_STRUCT) {
2116 return (type1->ref == type2->ref);
2117 } else if (bt1 == VT_FUNC) {
2118 return is_compatible_func(type1, type2);
2119 } else {
2120 return 1;
2124 /* return true if type1 and type2 are exactly the same (including
2125 qualifiers).
2127 static int is_compatible_types(CType *type1, CType *type2)
2129 return compare_types(type1,type2,0);
2132 /* return true if type1 and type2 are the same (ignoring qualifiers).
2134 static int is_compatible_parameter_types(CType *type1, CType *type2)
2136 return compare_types(type1,type2,1);
2139 /* print a type. If 'varstr' is not NULL, then the variable is also
2140 printed in the type */
2141 /* XXX: union */
2142 /* XXX: add array and function pointers */
2143 static void type_to_str(char *buf, int buf_size,
2144 CType *type, const char *varstr)
2146 int bt, v, t;
2147 Sym *s, *sa;
2148 char buf1[256];
2149 const char *tstr;
2151 t = type->t & VT_TYPE;
2152 bt = t & VT_BTYPE;
2153 buf[0] = '\0';
2154 if (t & VT_CONSTANT)
2155 pstrcat(buf, buf_size, "const ");
2156 if (t & VT_VOLATILE)
2157 pstrcat(buf, buf_size, "volatile ");
2158 if (t & VT_UNSIGNED)
2159 pstrcat(buf, buf_size, "unsigned ");
2160 switch(bt) {
2161 case VT_VOID:
2162 tstr = "void";
2163 goto add_tstr;
2164 case VT_BOOL:
2165 tstr = "_Bool";
2166 goto add_tstr;
2167 case VT_BYTE:
2168 tstr = "char";
2169 goto add_tstr;
2170 case VT_SHORT:
2171 tstr = "short";
2172 goto add_tstr;
2173 case VT_INT:
2174 tstr = "int";
2175 goto add_tstr;
2176 case VT_LONG:
2177 tstr = "long";
2178 goto add_tstr;
2179 case VT_LLONG:
2180 tstr = "long long";
2181 goto add_tstr;
2182 case VT_FLOAT:
2183 tstr = "float";
2184 goto add_tstr;
2185 case VT_DOUBLE:
2186 tstr = "double";
2187 goto add_tstr;
2188 case VT_LDOUBLE:
2189 tstr = "long double";
2190 add_tstr:
2191 pstrcat(buf, buf_size, tstr);
2192 break;
2193 case VT_ENUM:
2194 case VT_STRUCT:
2195 if (bt == VT_STRUCT)
2196 tstr = "struct ";
2197 else
2198 tstr = "enum ";
2199 pstrcat(buf, buf_size, tstr);
2200 v = type->ref->v & ~SYM_STRUCT;
2201 if (v >= SYM_FIRST_ANOM)
2202 pstrcat(buf, buf_size, "<anonymous>");
2203 else
2204 pstrcat(buf, buf_size, get_tok_str(v, NULL));
2205 break;
2206 case VT_FUNC:
2207 s = type->ref;
2208 type_to_str(buf, buf_size, &s->type, varstr);
2209 pstrcat(buf, buf_size, "(");
2210 sa = s->next;
2211 while (sa != NULL) {
2212 type_to_str(buf1, sizeof(buf1), &sa->type, NULL);
2213 pstrcat(buf, buf_size, buf1);
2214 sa = sa->next;
2215 if (sa)
2216 pstrcat(buf, buf_size, ", ");
2218 pstrcat(buf, buf_size, ")");
2219 goto no_var;
2220 case VT_PTR:
2221 s = type->ref;
2222 pstrcpy(buf1, sizeof(buf1), "*");
2223 if (varstr)
2224 pstrcat(buf1, sizeof(buf1), varstr);
2225 type_to_str(buf, buf_size, &s->type, buf1);
2226 goto no_var;
2228 if (varstr) {
2229 pstrcat(buf, buf_size, " ");
2230 pstrcat(buf, buf_size, varstr);
2232 no_var: ;
2235 /* verify type compatibility to store vtop in 'dt' type, and generate
2236 casts if needed. */
2237 static void gen_assign_cast(CType *dt)
2239 CType *st, *type1, *type2, tmp_type1, tmp_type2;
2240 char buf1[256], buf2[256];
2241 int dbt, sbt;
2243 st = &vtop->type; /* source type */
2244 dbt = dt->t & VT_BTYPE;
2245 sbt = st->t & VT_BTYPE;
2246 if (sbt == VT_VOID)
2247 tcc_error("Cannot assign void value");
2248 if (dt->t & VT_CONSTANT)
2249 tcc_warning("assignment of read-only location");
2250 switch(dbt) {
2251 case VT_PTR:
2252 /* special cases for pointers */
2253 /* '0' can also be a pointer */
2254 if (is_null_pointer(vtop))
2255 goto type_ok;
2256 /* accept implicit pointer to integer cast with warning */
2257 if (is_integer_btype(sbt)) {
2258 tcc_warning("assignment makes pointer from integer without a cast");
2259 goto type_ok;
2261 type1 = pointed_type(dt);
2262 /* a function is implicitely a function pointer */
2263 if (sbt == VT_FUNC) {
2264 if ((type1->t & VT_BTYPE) != VT_VOID &&
2265 !is_compatible_types(pointed_type(dt), st))
2266 tcc_warning("assignment from incompatible pointer type");
2267 goto type_ok;
2269 if (sbt != VT_PTR)
2270 goto error;
2271 type2 = pointed_type(st);
2272 if ((type1->t & VT_BTYPE) == VT_VOID ||
2273 (type2->t & VT_BTYPE) == VT_VOID) {
2274 /* void * can match anything */
2275 } else {
2276 /* exact type match, except for unsigned */
2277 tmp_type1 = *type1;
2278 tmp_type2 = *type2;
2279 tmp_type1.t &= ~(VT_UNSIGNED | VT_CONSTANT | VT_VOLATILE);
2280 tmp_type2.t &= ~(VT_UNSIGNED | VT_CONSTANT | VT_VOLATILE);
2281 if (!is_compatible_types(&tmp_type1, &tmp_type2))
2282 tcc_warning("assignment from incompatible pointer type");
2284 /* check const and volatile */
2285 if ((!(type1->t & VT_CONSTANT) && (type2->t & VT_CONSTANT)) ||
2286 (!(type1->t & VT_VOLATILE) && (type2->t & VT_VOLATILE)))
2287 tcc_warning("assignment discards qualifiers from pointer target type");
2288 break;
2289 case VT_BYTE:
2290 case VT_SHORT:
2291 case VT_INT:
2292 case VT_LLONG:
2293 if (sbt == VT_PTR || sbt == VT_FUNC) {
2294 tcc_warning("assignment makes integer from pointer without a cast");
2296 /* XXX: more tests */
2297 break;
2298 case VT_STRUCT:
2299 tmp_type1 = *dt;
2300 tmp_type2 = *st;
2301 tmp_type1.t &= ~(VT_CONSTANT | VT_VOLATILE);
2302 tmp_type2.t &= ~(VT_CONSTANT | VT_VOLATILE);
2303 if (!is_compatible_types(&tmp_type1, &tmp_type2)) {
2304 error:
2305 type_to_str(buf1, sizeof(buf1), st, NULL);
2306 type_to_str(buf2, sizeof(buf2), dt, NULL);
2307 tcc_error("cannot cast '%s' to '%s'", buf1, buf2);
2309 break;
2311 type_ok:
2312 gen_cast(dt);
2315 /* store vtop in lvalue pushed on stack */
2316 ST_FUNC void vstore(void)
2318 int sbt, dbt, ft, r, t, size, align, bit_size, bit_pos, rc, delayed_cast;
2320 ft = vtop[-1].type.t;
2321 sbt = vtop->type.t & VT_BTYPE;
2322 dbt = ft & VT_BTYPE;
2323 if (((sbt == VT_INT || sbt == VT_SHORT) && dbt == VT_BYTE) ||
2324 (sbt == VT_INT && dbt == VT_SHORT)) {
2325 /* optimize char/short casts */
2326 delayed_cast = VT_MUSTCAST;
2327 vtop->type.t = ft & (VT_TYPE & ~(VT_BITFIELD | (-1 << VT_STRUCT_SHIFT)));
2328 /* XXX: factorize */
2329 if (ft & VT_CONSTANT)
2330 tcc_warning("assignment of read-only location");
2331 } else {
2332 delayed_cast = 0;
2333 if (!(ft & VT_BITFIELD))
2334 gen_assign_cast(&vtop[-1].type);
2337 if (sbt == VT_STRUCT) {
2338 /* if structure, only generate pointer */
2339 /* structure assignment : generate memcpy */
2340 /* XXX: optimize if small size */
2341 if (!nocode_wanted) {
2342 size = type_size(&vtop->type, &align);
2344 /* destination */
2345 vswap();
2346 vtop->type.t = VT_PTR;
2347 gaddrof();
2349 /* address of memcpy() */
2350 #ifdef TCC_ARM_EABI
2351 if(!(align & 7))
2352 vpush_global_sym(&func_old_type, TOK_memcpy8);
2353 else if(!(align & 3))
2354 vpush_global_sym(&func_old_type, TOK_memcpy4);
2355 else
2356 #endif
2357 vpush_global_sym(&func_old_type, TOK_memcpy);
2359 vswap();
2360 /* source */
2361 vpushv(vtop - 2);
2362 vtop->type.t = VT_PTR;
2363 gaddrof();
2364 /* type size */
2365 vpushi(size);
2366 gfunc_call(3);
2367 } else {
2368 vswap();
2369 vpop();
2371 /* leave source on stack */
2372 } else if (ft & VT_BITFIELD) {
2373 /* bitfield store handling */
2374 bit_pos = (ft >> VT_STRUCT_SHIFT) & 0x3f;
2375 bit_size = (ft >> (VT_STRUCT_SHIFT + 6)) & 0x3f;
2376 /* remove bit field info to avoid loops */
2377 vtop[-1].type.t = ft & ~(VT_BITFIELD | (-1 << VT_STRUCT_SHIFT));
2379 /* duplicate source into other register */
2380 gv_dup();
2381 vswap();
2382 vrott(3);
2384 if((ft & VT_BTYPE) == VT_BOOL) {
2385 gen_cast(&vtop[-1].type);
2386 vtop[-1].type.t = (vtop[-1].type.t & ~VT_BTYPE) | (VT_BYTE | VT_UNSIGNED);
2389 /* duplicate destination */
2390 vdup();
2391 vtop[-1] = vtop[-2];
2393 /* mask and shift source */
2394 if((ft & VT_BTYPE) != VT_BOOL) {
2395 if((ft & VT_BTYPE) == VT_LLONG) {
2396 vpushll((1ULL << bit_size) - 1ULL);
2397 } else {
2398 vpushi((1 << bit_size) - 1);
2400 gen_op('&');
2402 vpushi(bit_pos);
2403 gen_op(TOK_SHL);
2404 /* load destination, mask and or with source */
2405 vswap();
2406 if((ft & VT_BTYPE) == VT_LLONG) {
2407 vpushll(~(((1ULL << bit_size) - 1ULL) << bit_pos));
2408 } else {
2409 vpushi(~(((1 << bit_size) - 1) << bit_pos));
2411 gen_op('&');
2412 gen_op('|');
2413 /* store result */
2414 vstore();
2416 /* pop off shifted source from "duplicate source..." above */
2417 vpop();
2419 } else {
2420 #ifdef CONFIG_TCC_BCHECK
2421 /* bound check case */
2422 if (vtop[-1].r & VT_MUSTBOUND) {
2423 vswap();
2424 gbound();
2425 vswap();
2427 #endif
2428 if (!nocode_wanted) {
2429 rc = RC_INT;
2430 if (is_float(ft)) {
2431 rc = RC_FLOAT;
2432 #ifdef TCC_TARGET_X86_64
2433 if ((ft & VT_BTYPE) == VT_LDOUBLE) {
2434 rc = RC_ST0;
2436 #endif
2438 r = gv(rc); /* generate value */
2439 /* if lvalue was saved on stack, must read it */
2440 if ((vtop[-1].r & VT_VALMASK) == VT_LLOCAL) {
2441 SValue sv;
2442 t = get_reg(RC_INT);
2443 #ifdef TCC_TARGET_X86_64
2444 sv.type.t = VT_PTR;
2445 #else
2446 sv.type.t = VT_INT;
2447 #endif
2448 sv.r = VT_LOCAL | VT_LVAL;
2449 sv.c.ul = vtop[-1].c.ul;
2450 load(t, &sv);
2451 vtop[-1].r = t | VT_LVAL;
2453 store(r, vtop - 1);
2454 #ifndef TCC_TARGET_X86_64
2455 /* two word case handling : store second register at word + 4 */
2456 if ((ft & VT_BTYPE) == VT_LLONG) {
2457 vswap();
2458 /* convert to int to increment easily */
2459 vtop->type.t = VT_INT;
2460 gaddrof();
2461 vpushi(4);
2462 gen_op('+');
2463 vtop->r |= VT_LVAL;
2464 vswap();
2465 /* XXX: it works because r2 is spilled last ! */
2466 store(vtop->r2, vtop - 1);
2468 #endif
2470 vswap();
2471 vtop--; /* NOT vpop() because on x86 it would flush the fp stack */
2472 vtop->r |= delayed_cast;
2476 /* post defines POST/PRE add. c is the token ++ or -- */
2477 ST_FUNC void inc(int post, int c)
2479 test_lvalue();
2480 vdup(); /* save lvalue */
2481 if (post) {
2482 gv_dup(); /* duplicate value */
2483 vrotb(3);
2484 vrotb(3);
2486 /* add constant */
2487 vpushi(c - TOK_MID);
2488 gen_op('+');
2489 vstore(); /* store value */
2490 if (post)
2491 vpop(); /* if post op, return saved value */
2494 /* Parse GNUC __attribute__ extension. Currently, the following
2495 extensions are recognized:
2496 - aligned(n) : set data/function alignment.
2497 - packed : force data alignment to 1
2498 - section(x) : generate data/code in this section.
2499 - unused : currently ignored, but may be used someday.
2500 - regparm(n) : pass function parameters in registers (i386 only)
2502 static void parse_attribute(AttributeDef *ad)
2504 int t, n;
2506 while (tok == TOK_ATTRIBUTE1 || tok == TOK_ATTRIBUTE2) {
2507 next();
2508 skip('(');
2509 skip('(');
2510 while (tok != ')') {
2511 if (tok < TOK_IDENT)
2512 expect("attribute name");
2513 t = tok;
2514 next();
2515 switch(t) {
2516 case TOK_SECTION1:
2517 case TOK_SECTION2:
2518 skip('(');
2519 if (tok != TOK_STR)
2520 expect("section name");
2521 ad->section = find_section(tcc_state, (char *)tokc.cstr->data);
2522 next();
2523 skip(')');
2524 break;
2525 case TOK_ALIAS1:
2526 case TOK_ALIAS2:
2527 skip('(');
2528 if (tok != TOK_STR)
2529 expect("alias(\"target\")");
2530 ad->alias_target = /* save string as token, for later */
2531 tok_alloc((char*)tokc.cstr->data, tokc.cstr->size-1)->tok;
2532 next();
2533 skip(')');
2534 break;
2535 case TOK_ALIGNED1:
2536 case TOK_ALIGNED2:
2537 if (tok == '(') {
2538 next();
2539 n = expr_const();
2540 if (n <= 0 || (n & (n - 1)) != 0)
2541 tcc_error("alignment must be a positive power of two");
2542 skip(')');
2543 } else {
2544 n = MAX_ALIGN;
2546 ad->aligned = n;
2547 break;
2548 case TOK_PACKED1:
2549 case TOK_PACKED2:
2550 ad->packed = 1;
2551 break;
2552 case TOK_WEAK1:
2553 case TOK_WEAK2:
2554 ad->weak = 1;
2555 break;
2556 case TOK_UNUSED1:
2557 case TOK_UNUSED2:
2558 /* currently, no need to handle it because tcc does not
2559 track unused objects */
2560 break;
2561 case TOK_NORETURN1:
2562 case TOK_NORETURN2:
2563 /* currently, no need to handle it because tcc does not
2564 track unused objects */
2565 break;
2566 case TOK_CDECL1:
2567 case TOK_CDECL2:
2568 case TOK_CDECL3:
2569 ad->func_call = FUNC_CDECL;
2570 break;
2571 case TOK_STDCALL1:
2572 case TOK_STDCALL2:
2573 case TOK_STDCALL3:
2574 ad->func_call = FUNC_STDCALL;
2575 break;
2576 #ifdef TCC_TARGET_I386
2577 case TOK_REGPARM1:
2578 case TOK_REGPARM2:
2579 skip('(');
2580 n = expr_const();
2581 if (n > 3)
2582 n = 3;
2583 else if (n < 0)
2584 n = 0;
2585 if (n > 0)
2586 ad->func_call = FUNC_FASTCALL1 + n - 1;
2587 skip(')');
2588 break;
2589 case TOK_FASTCALL1:
2590 case TOK_FASTCALL2:
2591 case TOK_FASTCALL3:
2592 ad->func_call = FUNC_FASTCALLW;
2593 break;
2594 #endif
2595 case TOK_MODE:
2596 skip('(');
2597 switch(tok) {
2598 case TOK_MODE_DI:
2599 ad->mode = VT_LLONG + 1;
2600 break;
2601 case TOK_MODE_HI:
2602 ad->mode = VT_SHORT + 1;
2603 break;
2604 case TOK_MODE_SI:
2605 ad->mode = VT_INT + 1;
2606 break;
2607 default:
2608 tcc_warning("__mode__(%s) not supported\n", get_tok_str(tok, NULL));
2609 break;
2611 next();
2612 skip(')');
2613 break;
2614 case TOK_DLLEXPORT:
2615 ad->func_export = 1;
2616 break;
2617 case TOK_DLLIMPORT:
2618 ad->func_import = 1;
2619 break;
2620 default:
2621 if (tcc_state->warn_unsupported)
2622 tcc_warning("'%s' attribute ignored", get_tok_str(t, NULL));
2623 /* skip parameters */
2624 if (tok == '(') {
2625 int parenthesis = 0;
2626 do {
2627 if (tok == '(')
2628 parenthesis++;
2629 else if (tok == ')')
2630 parenthesis--;
2631 next();
2632 } while (parenthesis && tok != -1);
2634 break;
2636 if (tok != ',')
2637 break;
2638 next();
2640 skip(')');
2641 skip(')');
2645 /* enum/struct/union declaration. u is either VT_ENUM or VT_STRUCT */
2646 static void struct_decl(CType *type, int u)
2648 int a, v, size, align, maxalign, c, offset;
2649 int bit_size, bit_pos, bsize, bt, lbit_pos, prevbt;
2650 Sym *s, *ss, *ass, **ps;
2651 AttributeDef ad;
2652 CType type1, btype;
2654 a = tok; /* save decl type */
2655 next();
2656 if (tok != '{') {
2657 v = tok;
2658 next();
2659 /* struct already defined ? return it */
2660 if (v < TOK_IDENT)
2661 expect("struct/union/enum name");
2662 s = struct_find(v);
2663 if (s) {
2664 if (s->type.t != a)
2665 tcc_error("invalid type");
2666 goto do_decl;
2668 } else {
2669 v = anon_sym++;
2671 type1.t = a;
2672 /* we put an undefined size for struct/union */
2673 s = sym_push(v | SYM_STRUCT, &type1, 0, -1);
2674 s->r = 0; /* default alignment is zero as gcc */
2675 /* put struct/union/enum name in type */
2676 do_decl:
2677 type->t = u;
2678 type->ref = s;
2680 if (tok == '{') {
2681 next();
2682 if (s->c != -1)
2683 tcc_error("struct/union/enum already defined");
2684 /* cannot be empty */
2685 c = 0;
2686 /* non empty enums are not allowed */
2687 if (a == TOK_ENUM) {
2688 for(;;) {
2689 v = tok;
2690 if (v < TOK_UIDENT)
2691 expect("identifier");
2692 next();
2693 if (tok == '=') {
2694 next();
2695 c = expr_const();
2697 /* enum symbols have static storage */
2698 ss = sym_push(v, &int_type, VT_CONST, c);
2699 ss->type.t |= VT_STATIC;
2700 if (tok != ',')
2701 break;
2702 next();
2703 c++;
2704 /* NOTE: we accept a trailing comma */
2705 if (tok == '}')
2706 break;
2708 skip('}');
2709 } else {
2710 maxalign = 1;
2711 ps = &s->next;
2712 prevbt = VT_INT;
2713 bit_pos = 0;
2714 offset = 0;
2715 while (tok != '}') {
2716 parse_btype(&btype, &ad);
2717 while (1) {
2718 bit_size = -1;
2719 v = 0;
2720 type1 = btype;
2721 if (tok != ':') {
2722 type_decl(&type1, &ad, &v, TYPE_DIRECT | TYPE_ABSTRACT);
2723 if (v == 0 && (type1.t & VT_BTYPE) != VT_STRUCT)
2724 expect("identifier");
2725 if ((type1.t & VT_BTYPE) == VT_FUNC ||
2726 (type1.t & (VT_TYPEDEF | VT_STATIC | VT_EXTERN | VT_INLINE)))
2727 tcc_error("invalid type for '%s'",
2728 get_tok_str(v, NULL));
2730 if (tok == ':') {
2731 next();
2732 bit_size = expr_const();
2733 /* XXX: handle v = 0 case for messages */
2734 if (bit_size < 0)
2735 tcc_error("negative width in bit-field '%s'",
2736 get_tok_str(v, NULL));
2737 if (v && bit_size == 0)
2738 tcc_error("zero width for bit-field '%s'",
2739 get_tok_str(v, NULL));
2741 size = type_size(&type1, &align);
2742 if (ad.aligned) {
2743 if (align < ad.aligned)
2744 align = ad.aligned;
2745 } else if (ad.packed) {
2746 align = 1;
2747 } else if (*tcc_state->pack_stack_ptr) {
2748 if (align > *tcc_state->pack_stack_ptr)
2749 align = *tcc_state->pack_stack_ptr;
2751 lbit_pos = 0;
2752 if (bit_size >= 0) {
2753 bt = type1.t & VT_BTYPE;
2754 if (bt != VT_INT &&
2755 bt != VT_BYTE &&
2756 bt != VT_SHORT &&
2757 bt != VT_BOOL &&
2758 bt != VT_ENUM &&
2759 bt != VT_LLONG)
2760 tcc_error("bitfields must have scalar type");
2761 bsize = size * 8;
2762 if (bit_size > bsize) {
2763 tcc_error("width of '%s' exceeds its type",
2764 get_tok_str(v, NULL));
2765 } else if (bit_size == bsize) {
2766 /* no need for bit fields */
2767 bit_pos = 0;
2768 } else if (bit_size == 0) {
2769 /* XXX: what to do if only padding in a
2770 structure ? */
2771 /* zero size: means to pad */
2772 bit_pos = 0;
2773 } else {
2774 /* we do not have enough room ?
2775 did the type change?
2776 is it a union? */
2777 if ((bit_pos + bit_size) > bsize ||
2778 bt != prevbt || a == TOK_UNION)
2779 bit_pos = 0;
2780 lbit_pos = bit_pos;
2781 /* XXX: handle LSB first */
2782 type1.t |= VT_BITFIELD |
2783 (bit_pos << VT_STRUCT_SHIFT) |
2784 (bit_size << (VT_STRUCT_SHIFT + 6));
2785 bit_pos += bit_size;
2787 prevbt = bt;
2788 } else {
2789 bit_pos = 0;
2791 if (v != 0 || (type1.t & VT_BTYPE) == VT_STRUCT) {
2792 /* add new memory data only if starting
2793 bit field */
2794 if (lbit_pos == 0) {
2795 if (a == TOK_STRUCT) {
2796 c = (c + align - 1) & -align;
2797 offset = c;
2798 if (size > 0)
2799 c += size;
2800 } else {
2801 offset = 0;
2802 if (size > c)
2803 c = size;
2805 if (align > maxalign)
2806 maxalign = align;
2808 #if 0
2809 printf("add field %s offset=%d",
2810 get_tok_str(v, NULL), offset);
2811 if (type1.t & VT_BITFIELD) {
2812 printf(" pos=%d size=%d",
2813 (type1.t >> VT_STRUCT_SHIFT) & 0x3f,
2814 (type1.t >> (VT_STRUCT_SHIFT + 6)) & 0x3f);
2816 printf("\n");
2817 #endif
2819 if (v == 0 && (type1.t & VT_BTYPE) == VT_STRUCT) {
2820 ass = type1.ref;
2821 while ((ass = ass->next) != NULL) {
2822 ss = sym_push(ass->v, &ass->type, 0, offset + ass->c);
2823 *ps = ss;
2824 ps = &ss->next;
2826 } else if (v) {
2827 ss = sym_push(v | SYM_FIELD, &type1, 0, offset);
2828 *ps = ss;
2829 ps = &ss->next;
2831 if (tok == ';' || tok == TOK_EOF)
2832 break;
2833 skip(',');
2835 skip(';');
2837 skip('}');
2838 /* store size and alignment */
2839 s->c = (c + maxalign - 1) & -maxalign;
2840 s->r = maxalign;
2845 /* return 0 if no type declaration. otherwise, return the basic type
2846 and skip it.
2848 static int parse_btype(CType *type, AttributeDef *ad)
2850 int t, u, type_found, typespec_found, typedef_found;
2851 Sym *s;
2852 CType type1;
2854 memset(ad, 0, sizeof(AttributeDef));
2855 type_found = 0;
2856 typespec_found = 0;
2857 typedef_found = 0;
2858 t = 0;
2859 while(1) {
2860 switch(tok) {
2861 case TOK_EXTENSION:
2862 /* currently, we really ignore extension */
2863 next();
2864 continue;
2866 /* basic types */
2867 case TOK_CHAR:
2868 u = VT_BYTE;
2869 basic_type:
2870 next();
2871 basic_type1:
2872 if ((t & VT_BTYPE) != 0)
2873 tcc_error("too many basic types");
2874 t |= u;
2875 typespec_found = 1;
2876 break;
2877 case TOK_VOID:
2878 u = VT_VOID;
2879 goto basic_type;
2880 case TOK_SHORT:
2881 u = VT_SHORT;
2882 goto basic_type;
2883 case TOK_INT:
2884 next();
2885 typespec_found = 1;
2886 break;
2887 case TOK_LONG:
2888 next();
2889 if ((t & VT_BTYPE) == VT_DOUBLE) {
2890 #ifndef TCC_TARGET_PE
2891 t = (t & ~VT_BTYPE) | VT_LDOUBLE;
2892 #endif
2893 } else if ((t & VT_BTYPE) == VT_LONG) {
2894 t = (t & ~VT_BTYPE) | VT_LLONG;
2895 } else {
2896 u = VT_LONG;
2897 goto basic_type1;
2899 break;
2900 case TOK_BOOL:
2901 u = VT_BOOL;
2902 goto basic_type;
2903 case TOK_FLOAT:
2904 u = VT_FLOAT;
2905 goto basic_type;
2906 case TOK_DOUBLE:
2907 next();
2908 if ((t & VT_BTYPE) == VT_LONG) {
2909 #ifdef TCC_TARGET_PE
2910 t = (t & ~VT_BTYPE) | VT_DOUBLE;
2911 #else
2912 t = (t & ~VT_BTYPE) | VT_LDOUBLE;
2913 #endif
2914 } else {
2915 u = VT_DOUBLE;
2916 goto basic_type1;
2918 break;
2919 case TOK_ENUM:
2920 struct_decl(&type1, VT_ENUM);
2921 basic_type2:
2922 u = type1.t;
2923 type->ref = type1.ref;
2924 goto basic_type1;
2925 case TOK_STRUCT:
2926 case TOK_UNION:
2927 struct_decl(&type1, VT_STRUCT);
2928 goto basic_type2;
2930 /* type modifiers */
2931 case TOK_CONST1:
2932 case TOK_CONST2:
2933 case TOK_CONST3:
2934 t |= VT_CONSTANT;
2935 next();
2936 break;
2937 case TOK_VOLATILE1:
2938 case TOK_VOLATILE2:
2939 case TOK_VOLATILE3:
2940 t |= VT_VOLATILE;
2941 next();
2942 break;
2943 case TOK_SIGNED1:
2944 case TOK_SIGNED2:
2945 case TOK_SIGNED3:
2946 typespec_found = 1;
2947 t |= VT_SIGNED;
2948 next();
2949 break;
2950 case TOK_REGISTER:
2951 case TOK_AUTO:
2952 case TOK_RESTRICT1:
2953 case TOK_RESTRICT2:
2954 case TOK_RESTRICT3:
2955 next();
2956 break;
2957 case TOK_UNSIGNED:
2958 t |= VT_UNSIGNED;
2959 next();
2960 typespec_found = 1;
2961 break;
2963 /* storage */
2964 case TOK_EXTERN:
2965 t |= VT_EXTERN;
2966 next();
2967 break;
2968 case TOK_STATIC:
2969 t |= VT_STATIC;
2970 next();
2971 break;
2972 case TOK_TYPEDEF:
2973 t |= VT_TYPEDEF;
2974 next();
2975 break;
2976 case TOK_INLINE1:
2977 case TOK_INLINE2:
2978 case TOK_INLINE3:
2979 t |= VT_INLINE;
2980 next();
2981 break;
2983 /* GNUC attribute */
2984 case TOK_ATTRIBUTE1:
2985 case TOK_ATTRIBUTE2:
2986 parse_attribute(ad);
2987 if (ad->mode) {
2988 u = ad->mode -1;
2989 t = (t & ~VT_BTYPE) | u;
2991 break;
2992 /* GNUC typeof */
2993 case TOK_TYPEOF1:
2994 case TOK_TYPEOF2:
2995 case TOK_TYPEOF3:
2996 next();
2997 parse_expr_type(&type1);
2998 /* remove all storage modifiers except typedef */
2999 type1.t &= ~(VT_STORAGE&~VT_TYPEDEF);
3000 goto basic_type2;
3001 default:
3002 if (typespec_found || typedef_found)
3003 goto the_end;
3004 s = sym_find(tok);
3005 if (!s || !(s->type.t & VT_TYPEDEF))
3006 goto the_end;
3007 typedef_found = 1;
3008 t |= (s->type.t & ~VT_TYPEDEF);
3009 type->ref = s->type.ref;
3010 if (s->r) {
3011 /* get attributes from typedef */
3012 if (0 == ad->aligned)
3013 ad->aligned = FUNC_ALIGN(s->r);
3014 if (0 == ad->func_call)
3015 ad->func_call = FUNC_CALL(s->r);
3016 ad->packed |= FUNC_PACKED(s->r);
3018 next();
3019 typespec_found = 1;
3020 break;
3022 type_found = 1;
3024 the_end:
3025 if ((t & (VT_SIGNED|VT_UNSIGNED)) == (VT_SIGNED|VT_UNSIGNED))
3026 tcc_error("signed and unsigned modifier");
3027 if (tcc_state->char_is_unsigned) {
3028 if ((t & (VT_SIGNED|VT_UNSIGNED|VT_BTYPE)) == VT_BYTE)
3029 t |= VT_UNSIGNED;
3031 t &= ~VT_SIGNED;
3033 /* long is never used as type */
3034 if ((t & VT_BTYPE) == VT_LONG)
3035 #if !defined TCC_TARGET_X86_64 || defined TCC_TARGET_PE
3036 t = (t & ~VT_BTYPE) | VT_INT;
3037 #else
3038 t = (t & ~VT_BTYPE) | VT_LLONG;
3039 #endif
3040 type->t = t;
3041 return type_found;
3044 /* convert a function parameter type (array to pointer and function to
3045 function pointer) */
3046 static inline void convert_parameter_type(CType *pt)
3048 /* remove const and volatile qualifiers (XXX: const could be used
3049 to indicate a const function parameter */
3050 pt->t &= ~(VT_CONSTANT | VT_VOLATILE);
3051 /* array must be transformed to pointer according to ANSI C */
3052 pt->t &= ~VT_ARRAY;
3053 if ((pt->t & VT_BTYPE) == VT_FUNC) {
3054 mk_pointer(pt);
3058 ST_FUNC void parse_asm_str(CString *astr)
3060 skip('(');
3061 /* read the string */
3062 if (tok != TOK_STR)
3063 expect("string constant");
3064 cstr_new(astr);
3065 while (tok == TOK_STR) {
3066 /* XXX: add \0 handling too ? */
3067 cstr_cat(astr, tokc.cstr->data);
3068 next();
3070 cstr_ccat(astr, '\0');
3073 /* Parse an asm label and return the label
3074 * Don't forget to free the CString in the caller! */
3075 static void asm_label_instr(CString *astr)
3077 next();
3078 parse_asm_str(astr);
3079 skip(')');
3080 #ifdef ASM_DEBUG
3081 printf("asm_alias: \"%s\"\n", (char *)astr->data);
3082 #endif
3085 static void post_type(CType *type, AttributeDef *ad)
3087 int n, l, t1, arg_size, align;
3088 Sym **plast, *s, *first;
3089 AttributeDef ad1;
3090 CType pt;
3092 if (tok == '(') {
3093 /* function declaration */
3094 next();
3095 l = 0;
3096 first = NULL;
3097 plast = &first;
3098 arg_size = 0;
3099 if (tok != ')') {
3100 for(;;) {
3101 /* read param name and compute offset */
3102 if (l != FUNC_OLD) {
3103 if (!parse_btype(&pt, &ad1)) {
3104 if (l) {
3105 tcc_error("invalid type");
3106 } else {
3107 l = FUNC_OLD;
3108 goto old_proto;
3111 l = FUNC_NEW;
3112 if ((pt.t & VT_BTYPE) == VT_VOID && tok == ')')
3113 break;
3114 type_decl(&pt, &ad1, &n, TYPE_DIRECT | TYPE_ABSTRACT);
3115 if ((pt.t & VT_BTYPE) == VT_VOID)
3116 tcc_error("parameter declared as void");
3117 arg_size += (type_size(&pt, &align) + PTR_SIZE - 1) / PTR_SIZE;
3118 } else {
3119 old_proto:
3120 n = tok;
3121 if (n < TOK_UIDENT)
3122 expect("identifier");
3123 pt.t = VT_INT;
3124 next();
3126 convert_parameter_type(&pt);
3127 s = sym_push(n | SYM_FIELD, &pt, 0, 0);
3128 *plast = s;
3129 plast = &s->next;
3130 if (tok == ')')
3131 break;
3132 skip(',');
3133 if (l == FUNC_NEW && tok == TOK_DOTS) {
3134 l = FUNC_ELLIPSIS;
3135 next();
3136 break;
3140 /* if no parameters, then old type prototype */
3141 if (l == 0)
3142 l = FUNC_OLD;
3143 skip(')');
3144 /* NOTE: const is ignored in returned type as it has a special
3145 meaning in gcc / C++ */
3146 type->t &= ~VT_CONSTANT;
3147 /* some ancient pre-K&R C allows a function to return an array
3148 and the array brackets to be put after the arguments, such
3149 that "int c()[]" means something like "int[] c()" */
3150 if (tok == '[') {
3151 next();
3152 skip(']'); /* only handle simple "[]" */
3153 type->t |= VT_PTR;
3155 /* we push a anonymous symbol which will contain the function prototype */
3156 ad->func_args = arg_size;
3157 s = sym_push(SYM_FIELD, type, INT_ATTR(ad), l);
3158 s->next = first;
3159 type->t = VT_FUNC;
3160 type->ref = s;
3161 } else if (tok == '[') {
3162 /* array definition */
3163 next();
3164 if (tok == TOK_RESTRICT1)
3165 next();
3166 n = -1;
3167 t1 = 0;
3168 if (tok != ']') {
3169 if (!local_stack || nocode_wanted)
3170 vpushi(expr_const());
3171 else gexpr();
3172 if ((vtop->r & (VT_VALMASK | VT_LVAL | VT_SYM)) == VT_CONST) {
3173 n = vtop->c.i;
3174 if (n < 0)
3175 tcc_error("invalid array size");
3176 } else {
3177 if (!is_integer_btype(vtop->type.t & VT_BTYPE))
3178 tcc_error("size of variable length array should be an integer");
3179 t1 = VT_VLA;
3182 skip(']');
3183 /* parse next post type */
3184 post_type(type, ad);
3185 t1 |= type->t & VT_VLA;
3187 if (t1 & VT_VLA) {
3188 loc -= type_size(&int_type, &align);
3189 loc &= -align;
3190 n = loc;
3192 vla_runtime_type_size(type, &align);
3193 gen_op('*');
3194 vset(&int_type, VT_LOCAL|VT_LVAL, loc);
3195 vswap();
3196 vstore();
3198 if (n != -1)
3199 vpop();
3201 /* we push an anonymous symbol which will contain the array
3202 element type */
3203 s = sym_push(SYM_FIELD, type, 0, n);
3204 type->t = (t1 ? VT_VLA : VT_ARRAY) | VT_PTR;
3205 type->ref = s;
3209 /* Parse a type declaration (except basic type), and return the type
3210 in 'type'. 'td' is a bitmask indicating which kind of type decl is
3211 expected. 'type' should contain the basic type. 'ad' is the
3212 attribute definition of the basic type. It can be modified by
3213 type_decl().
3215 static void type_decl(CType *type, AttributeDef *ad, int *v, int td)
3217 Sym *s;
3218 CType type1, *type2;
3219 int qualifiers, storage;
3221 while (tok == '*') {
3222 qualifiers = 0;
3223 redo:
3224 next();
3225 switch(tok) {
3226 case TOK_CONST1:
3227 case TOK_CONST2:
3228 case TOK_CONST3:
3229 qualifiers |= VT_CONSTANT;
3230 goto redo;
3231 case TOK_VOLATILE1:
3232 case TOK_VOLATILE2:
3233 case TOK_VOLATILE3:
3234 qualifiers |= VT_VOLATILE;
3235 goto redo;
3236 case TOK_RESTRICT1:
3237 case TOK_RESTRICT2:
3238 case TOK_RESTRICT3:
3239 goto redo;
3241 mk_pointer(type);
3242 type->t |= qualifiers;
3245 /* XXX: clarify attribute handling */
3246 if (tok == TOK_ATTRIBUTE1 || tok == TOK_ATTRIBUTE2)
3247 parse_attribute(ad);
3249 /* recursive type */
3250 /* XXX: incorrect if abstract type for functions (e.g. 'int ()') */
3251 type1.t = 0; /* XXX: same as int */
3252 if (tok == '(') {
3253 next();
3254 /* XXX: this is not correct to modify 'ad' at this point, but
3255 the syntax is not clear */
3256 if (tok == TOK_ATTRIBUTE1 || tok == TOK_ATTRIBUTE2)
3257 parse_attribute(ad);
3258 type_decl(&type1, ad, v, td);
3259 skip(')');
3260 } else {
3261 /* type identifier */
3262 if (tok >= TOK_IDENT && (td & TYPE_DIRECT)) {
3263 *v = tok;
3264 next();
3265 } else {
3266 if (!(td & TYPE_ABSTRACT))
3267 expect("identifier");
3268 *v = 0;
3271 storage = type->t & VT_STORAGE;
3272 type->t &= ~VT_STORAGE;
3273 post_type(type, ad);
3274 type->t |= storage;
3275 if (tok == TOK_ATTRIBUTE1 || tok == TOK_ATTRIBUTE2)
3276 parse_attribute(ad);
3278 if (!type1.t)
3279 return;
3280 /* append type at the end of type1 */
3281 type2 = &type1;
3282 for(;;) {
3283 s = type2->ref;
3284 type2 = &s->type;
3285 if (!type2->t) {
3286 *type2 = *type;
3287 break;
3290 *type = type1;
3293 /* compute the lvalue VT_LVAL_xxx needed to match type t. */
3294 ST_FUNC int lvalue_type(int t)
3296 int bt, r;
3297 r = VT_LVAL;
3298 bt = t & VT_BTYPE;
3299 if (bt == VT_BYTE || bt == VT_BOOL)
3300 r |= VT_LVAL_BYTE;
3301 else if (bt == VT_SHORT)
3302 r |= VT_LVAL_SHORT;
3303 else
3304 return r;
3305 if (t & VT_UNSIGNED)
3306 r |= VT_LVAL_UNSIGNED;
3307 return r;
3310 /* indirection with full error checking and bound check */
3311 ST_FUNC void indir(void)
3313 if ((vtop->type.t & VT_BTYPE) != VT_PTR) {
3314 if ((vtop->type.t & VT_BTYPE) == VT_FUNC)
3315 return;
3316 expect("pointer");
3318 if ((vtop->r & VT_LVAL) && !nocode_wanted)
3319 gv(RC_INT);
3320 vtop->type = *pointed_type(&vtop->type);
3321 /* Arrays and functions are never lvalues */
3322 if (!(vtop->type.t & VT_ARRAY) && !(vtop->type.t & VT_VLA)
3323 && (vtop->type.t & VT_BTYPE) != VT_FUNC) {
3324 vtop->r |= lvalue_type(vtop->type.t);
3325 /* if bound checking, the referenced pointer must be checked */
3326 #ifdef CONFIG_TCC_BCHECK
3327 if (tcc_state->do_bounds_check)
3328 vtop->r |= VT_MUSTBOUND;
3329 #endif
3333 /* pass a parameter to a function and do type checking and casting */
3334 static void gfunc_param_typed(Sym *func, Sym *arg)
3336 int func_type;
3337 CType type;
3339 func_type = func->c;
3340 if (func_type == FUNC_OLD ||
3341 (func_type == FUNC_ELLIPSIS && arg == NULL)) {
3342 /* default casting : only need to convert float to double */
3343 if ((vtop->type.t & VT_BTYPE) == VT_FLOAT) {
3344 type.t = VT_DOUBLE;
3345 gen_cast(&type);
3347 } else if (arg == NULL) {
3348 tcc_error("too many arguments to function");
3349 } else {
3350 type = arg->type;
3351 type.t &= ~VT_CONSTANT; /* need to do that to avoid false warning */
3352 gen_assign_cast(&type);
3356 /* parse an expression of the form '(type)' or '(expr)' and return its
3357 type */
3358 static void parse_expr_type(CType *type)
3360 int n;
3361 AttributeDef ad;
3363 skip('(');
3364 if (parse_btype(type, &ad)) {
3365 type_decl(type, &ad, &n, TYPE_ABSTRACT);
3366 } else {
3367 expr_type(type);
3369 skip(')');
3372 static void parse_type(CType *type)
3374 AttributeDef ad;
3375 int n;
3377 if (!parse_btype(type, &ad)) {
3378 expect("type");
3380 type_decl(type, &ad, &n, TYPE_ABSTRACT);
3383 static void vpush_tokc(int t)
3385 CType type;
3386 type.t = t;
3387 type.ref = 0;
3388 vsetc(&type, VT_CONST, &tokc);
3391 ST_FUNC void unary(void)
3393 int n, t, align, size, r, sizeof_caller;
3394 CType type;
3395 Sym *s;
3396 AttributeDef ad;
3397 static int in_sizeof = 0;
3399 sizeof_caller = in_sizeof;
3400 in_sizeof = 0;
3401 /* XXX: GCC 2.95.3 does not generate a table although it should be
3402 better here */
3403 tok_next:
3404 switch(tok) {
3405 case TOK_EXTENSION:
3406 next();
3407 goto tok_next;
3408 case TOK_CINT:
3409 case TOK_CCHAR:
3410 case TOK_LCHAR:
3411 vpushi(tokc.i);
3412 next();
3413 break;
3414 case TOK_CUINT:
3415 vpush_tokc(VT_INT | VT_UNSIGNED);
3416 next();
3417 break;
3418 case TOK_CLLONG:
3419 vpush_tokc(VT_LLONG);
3420 next();
3421 break;
3422 case TOK_CULLONG:
3423 vpush_tokc(VT_LLONG | VT_UNSIGNED);
3424 next();
3425 break;
3426 case TOK_CFLOAT:
3427 vpush_tokc(VT_FLOAT);
3428 next();
3429 break;
3430 case TOK_CDOUBLE:
3431 vpush_tokc(VT_DOUBLE);
3432 next();
3433 break;
3434 case TOK_CLDOUBLE:
3435 vpush_tokc(VT_LDOUBLE);
3436 next();
3437 break;
3438 case TOK___FUNCTION__:
3439 if (!gnu_ext)
3440 goto tok_identifier;
3441 /* fall thru */
3442 case TOK___FUNC__:
3444 void *ptr;
3445 int len;
3446 /* special function name identifier */
3447 len = strlen(funcname) + 1;
3448 /* generate char[len] type */
3449 type.t = VT_BYTE;
3450 mk_pointer(&type);
3451 type.t |= VT_ARRAY;
3452 type.ref->c = len;
3453 vpush_ref(&type, data_section, data_section->data_offset, len);
3454 ptr = section_ptr_add(data_section, len);
3455 memcpy(ptr, funcname, len);
3456 next();
3458 break;
3459 case TOK_LSTR:
3460 #ifdef TCC_TARGET_PE
3461 t = VT_SHORT | VT_UNSIGNED;
3462 #else
3463 t = VT_INT;
3464 #endif
3465 goto str_init;
3466 case TOK_STR:
3467 /* string parsing */
3468 t = VT_BYTE;
3469 str_init:
3470 if (tcc_state->warn_write_strings)
3471 t |= VT_CONSTANT;
3472 type.t = t;
3473 mk_pointer(&type);
3474 type.t |= VT_ARRAY;
3475 memset(&ad, 0, sizeof(AttributeDef));
3476 decl_initializer_alloc(&type, &ad, VT_CONST, 2, 0, NULL, 0);
3477 break;
3478 case '(':
3479 next();
3480 /* cast ? */
3481 if (parse_btype(&type, &ad)) {
3482 type_decl(&type, &ad, &n, TYPE_ABSTRACT);
3483 skip(')');
3484 /* check ISOC99 compound literal */
3485 if (tok == '{') {
3486 /* data is allocated locally by default */
3487 if (global_expr)
3488 r = VT_CONST;
3489 else
3490 r = VT_LOCAL;
3491 /* all except arrays are lvalues */
3492 if (!(type.t & VT_ARRAY))
3493 r |= lvalue_type(type.t);
3494 memset(&ad, 0, sizeof(AttributeDef));
3495 decl_initializer_alloc(&type, &ad, r, 1, 0, NULL, 0);
3496 } else {
3497 if (sizeof_caller) {
3498 vpush(&type);
3499 return;
3501 unary();
3502 gen_cast(&type);
3504 } else if (tok == '{') {
3505 /* save all registers */
3506 save_regs(0);
3507 /* statement expression : we do not accept break/continue
3508 inside as GCC does */
3509 block(NULL, NULL, NULL, NULL, 0, 1);
3510 skip(')');
3511 } else {
3512 gexpr();
3513 skip(')');
3515 break;
3516 case '*':
3517 next();
3518 unary();
3519 indir();
3520 break;
3521 case '&':
3522 next();
3523 unary();
3524 /* functions names must be treated as function pointers,
3525 except for unary '&' and sizeof. Since we consider that
3526 functions are not lvalues, we only have to handle it
3527 there and in function calls. */
3528 /* arrays can also be used although they are not lvalues */
3529 if ((vtop->type.t & VT_BTYPE) != VT_FUNC &&
3530 !(vtop->type.t & VT_ARRAY) && !(vtop->type.t & VT_LLOCAL))
3531 test_lvalue();
3532 mk_pointer(&vtop->type);
3533 gaddrof();
3534 break;
3535 case '!':
3536 next();
3537 unary();
3538 if ((vtop->r & (VT_VALMASK | VT_LVAL | VT_SYM)) == VT_CONST) {
3539 CType boolean;
3540 boolean.t = VT_BOOL;
3541 gen_cast(&boolean);
3542 vtop->c.i = !vtop->c.i;
3543 } else if ((vtop->r & VT_VALMASK) == VT_CMP)
3544 vtop->c.i = vtop->c.i ^ 1;
3545 else {
3546 save_regs(1);
3547 vseti(VT_JMP, gtst(1, 0));
3549 break;
3550 case '~':
3551 next();
3552 unary();
3553 vpushi(-1);
3554 gen_op('^');
3555 break;
3556 case '+':
3557 next();
3558 /* in order to force cast, we add zero */
3559 unary();
3560 if ((vtop->type.t & VT_BTYPE) == VT_PTR)
3561 tcc_error("pointer not accepted for unary plus");
3562 vpushi(0);
3563 gen_op('+');
3564 break;
3565 case TOK_SIZEOF:
3566 case TOK_ALIGNOF1:
3567 case TOK_ALIGNOF2:
3568 t = tok;
3569 next();
3570 in_sizeof++;
3571 unary_type(&type); // Perform a in_sizeof = 0;
3572 size = type_size(&type, &align);
3573 if (t == TOK_SIZEOF) {
3574 if (!(type.t & VT_VLA)) {
3575 if (size < 0)
3576 tcc_error("sizeof applied to an incomplete type");
3577 vpushi(size);
3578 } else {
3579 vla_runtime_type_size(&type, &align);
3581 } else {
3582 vpushi(align);
3584 vtop->type.t |= VT_UNSIGNED;
3585 break;
3587 case TOK_builtin_types_compatible_p:
3589 CType type1, type2;
3590 next();
3591 skip('(');
3592 parse_type(&type1);
3593 skip(',');
3594 parse_type(&type2);
3595 skip(')');
3596 type1.t &= ~(VT_CONSTANT | VT_VOLATILE);
3597 type2.t &= ~(VT_CONSTANT | VT_VOLATILE);
3598 vpushi(is_compatible_types(&type1, &type2));
3600 break;
3601 case TOK_builtin_constant_p:
3603 int saved_nocode_wanted, res;
3604 next();
3605 skip('(');
3606 saved_nocode_wanted = nocode_wanted;
3607 nocode_wanted = 1;
3608 gexpr();
3609 res = (vtop->r & (VT_VALMASK | VT_LVAL | VT_SYM)) == VT_CONST;
3610 vpop();
3611 nocode_wanted = saved_nocode_wanted;
3612 skip(')');
3613 vpushi(res);
3615 break;
3616 case TOK_builtin_frame_address:
3618 CType type;
3619 next();
3620 skip('(');
3621 if (tok != TOK_CINT) {
3622 tcc_error("__builtin_frame_address only takes integers");
3624 if (tokc.i != 0) {
3625 tcc_error("TCC only supports __builtin_frame_address(0)");
3627 next();
3628 skip(')');
3629 type.t = VT_VOID;
3630 mk_pointer(&type);
3631 vset(&type, VT_LOCAL, 0);
3633 break;
3634 #ifdef TCC_TARGET_X86_64
3635 case TOK_builtin_va_arg_types:
3637 /* This definition must be synced with stdarg.h */
3638 enum __va_arg_type {
3639 __va_gen_reg, __va_float_reg, __va_stack
3641 CType type;
3642 int bt;
3643 next();
3644 skip('(');
3645 parse_type(&type);
3646 skip(')');
3647 bt = type.t & VT_BTYPE;
3648 if (bt == VT_STRUCT || bt == VT_LDOUBLE) {
3649 vpushi(__va_stack);
3650 } else if (bt == VT_FLOAT || bt == VT_DOUBLE) {
3651 vpushi(__va_float_reg);
3652 } else {
3653 vpushi(__va_gen_reg);
3656 break;
3657 #endif
3658 case TOK_INC:
3659 case TOK_DEC:
3660 t = tok;
3661 next();
3662 unary();
3663 inc(0, t);
3664 break;
3665 case '-':
3666 next();
3667 vpushi(0);
3668 unary();
3669 gen_op('-');
3670 break;
3671 case TOK_LAND:
3672 if (!gnu_ext)
3673 goto tok_identifier;
3674 next();
3675 /* allow to take the address of a label */
3676 if (tok < TOK_UIDENT)
3677 expect("label identifier");
3678 s = label_find(tok);
3679 if (!s) {
3680 s = label_push(&global_label_stack, tok, LABEL_FORWARD);
3681 } else {
3682 if (s->r == LABEL_DECLARED)
3683 s->r = LABEL_FORWARD;
3685 if (!s->type.t) {
3686 s->type.t = VT_VOID;
3687 mk_pointer(&s->type);
3688 s->type.t |= VT_STATIC;
3690 vset(&s->type, VT_CONST | VT_SYM, 0);
3691 vtop->sym = s;
3692 next();
3693 break;
3695 // special qnan , snan and infinity values
3696 case TOK___NAN__:
3697 vpush64(VT_DOUBLE, 0x7ff8000000000000ULL);
3698 next();
3699 break;
3700 case TOK___SNAN__:
3701 vpush64(VT_DOUBLE, 0x7ff0000000000001ULL);
3702 next();
3703 break;
3704 case TOK___INF__:
3705 vpush64(VT_DOUBLE, 0x7ff0000000000000ULL);
3706 next();
3707 break;
3709 default:
3710 tok_identifier:
3711 t = tok;
3712 next();
3713 if (t < TOK_UIDENT)
3714 expect("identifier");
3715 s = sym_find(t);
3716 if (!s) {
3717 if (tok != '(')
3718 tcc_error("'%s' undeclared", get_tok_str(t, NULL));
3719 /* for simple function calls, we tolerate undeclared
3720 external reference to int() function */
3721 if (tcc_state->warn_implicit_function_declaration)
3722 tcc_warning("implicit declaration of function '%s'",
3723 get_tok_str(t, NULL));
3724 s = external_global_sym(t, &func_old_type, 0);
3726 if ((s->type.t & (VT_STATIC | VT_INLINE | VT_BTYPE)) ==
3727 (VT_STATIC | VT_INLINE | VT_FUNC)) {
3728 /* if referencing an inline function, then we generate a
3729 symbol to it if not already done. It will have the
3730 effect to generate code for it at the end of the
3731 compilation unit. Inline function as always
3732 generated in the text section. */
3733 if (!s->c)
3734 put_extern_sym(s, text_section, 0, 0);
3735 r = VT_SYM | VT_CONST;
3736 } else {
3737 r = s->r;
3739 vset(&s->type, r, s->c);
3740 /* if forward reference, we must point to s */
3741 if (vtop->r & VT_SYM) {
3742 vtop->sym = s;
3743 vtop->c.ul = 0;
3745 break;
3748 /* post operations */
3749 while (1) {
3750 if (tok == TOK_INC || tok == TOK_DEC) {
3751 inc(1, tok);
3752 next();
3753 } else if (tok == '.' || tok == TOK_ARROW) {
3754 int qualifiers;
3755 /* field */
3756 if (tok == TOK_ARROW)
3757 indir();
3758 qualifiers = vtop->type.t & (VT_CONSTANT | VT_VOLATILE);
3759 test_lvalue();
3760 gaddrof();
3761 next();
3762 /* expect pointer on structure */
3763 if ((vtop->type.t & VT_BTYPE) != VT_STRUCT)
3764 expect("struct or union");
3765 s = vtop->type.ref;
3766 /* find field */
3767 tok |= SYM_FIELD;
3768 while ((s = s->next) != NULL) {
3769 if (s->v == tok)
3770 break;
3772 if (!s)
3773 tcc_error("field not found: %s", get_tok_str(tok & ~SYM_FIELD, NULL));
3774 /* add field offset to pointer */
3775 vtop->type = char_pointer_type; /* change type to 'char *' */
3776 vpushi(s->c);
3777 gen_op('+');
3778 /* change type to field type, and set to lvalue */
3779 vtop->type = s->type;
3780 vtop->type.t |= qualifiers;
3781 /* an array is never an lvalue */
3782 if (!(vtop->type.t & VT_ARRAY)) {
3783 vtop->r |= lvalue_type(vtop->type.t);
3784 #ifdef CONFIG_TCC_BCHECK
3785 /* if bound checking, the referenced pointer must be checked */
3786 if (tcc_state->do_bounds_check)
3787 vtop->r |= VT_MUSTBOUND;
3788 #endif
3790 next();
3791 } else if (tok == '[') {
3792 next();
3793 gexpr();
3794 gen_op('+');
3795 indir();
3796 skip(']');
3797 } else if (tok == '(') {
3798 SValue ret;
3799 Sym *sa;
3800 int nb_args;
3802 /* function call */
3803 if ((vtop->type.t & VT_BTYPE) != VT_FUNC) {
3804 /* pointer test (no array accepted) */
3805 if ((vtop->type.t & (VT_BTYPE | VT_ARRAY)) == VT_PTR) {
3806 vtop->type = *pointed_type(&vtop->type);
3807 if ((vtop->type.t & VT_BTYPE) != VT_FUNC)
3808 goto error_func;
3809 } else {
3810 error_func:
3811 expect("function pointer");
3813 } else {
3814 vtop->r &= ~VT_LVAL; /* no lvalue */
3816 /* get return type */
3817 s = vtop->type.ref;
3818 next();
3819 sa = s->next; /* first parameter */
3820 nb_args = 0;
3821 ret.r2 = VT_CONST;
3822 /* compute first implicit argument if a structure is returned */
3823 if ((s->type.t & VT_BTYPE) == VT_STRUCT) {
3824 /* get some space for the returned structure */
3825 size = type_size(&s->type, &align);
3826 loc = (loc - size) & -align;
3827 ret.type = s->type;
3828 ret.r = VT_LOCAL | VT_LVAL;
3829 /* pass it as 'int' to avoid structure arg passing
3830 problems */
3831 vseti(VT_LOCAL, loc);
3832 ret.c = vtop->c;
3833 nb_args++;
3834 } else {
3835 ret.type = s->type;
3836 /* return in register */
3837 if (is_float(ret.type.t)) {
3838 ret.r = reg_fret(ret.type.t);
3839 } else {
3840 if ((ret.type.t & VT_BTYPE) == VT_LLONG)
3841 ret.r2 = REG_LRET;
3842 ret.r = REG_IRET;
3844 ret.c.i = 0;
3846 if (tok != ')') {
3847 for(;;) {
3848 expr_eq();
3849 gfunc_param_typed(s, sa);
3850 nb_args++;
3851 if (sa)
3852 sa = sa->next;
3853 if (tok == ')')
3854 break;
3855 skip(',');
3858 if (sa)
3859 tcc_error("too few arguments to function");
3860 skip(')');
3861 if (!nocode_wanted) {
3862 gfunc_call(nb_args);
3863 } else {
3864 vtop -= (nb_args + 1);
3866 /* return value */
3867 vsetc(&ret.type, ret.r, &ret.c);
3868 vtop->r2 = ret.r2;
3869 } else {
3870 break;
3875 ST_FUNC void expr_prod(void)
3877 int t;
3879 unary();
3880 while (tok == '*' || tok == '/' || tok == '%') {
3881 t = tok;
3882 next();
3883 unary();
3884 gen_op(t);
3888 ST_FUNC void expr_sum(void)
3890 int t;
3892 expr_prod();
3893 while (tok == '+' || tok == '-') {
3894 t = tok;
3895 next();
3896 expr_prod();
3897 gen_op(t);
3901 static void expr_shift(void)
3903 int t;
3905 expr_sum();
3906 while (tok == TOK_SHL || tok == TOK_SAR) {
3907 t = tok;
3908 next();
3909 expr_sum();
3910 gen_op(t);
3914 static void expr_cmp(void)
3916 int t;
3918 expr_shift();
3919 while ((tok >= TOK_ULE && tok <= TOK_GT) ||
3920 tok == TOK_ULT || tok == TOK_UGE) {
3921 t = tok;
3922 next();
3923 expr_shift();
3924 gen_op(t);
3928 static void expr_cmpeq(void)
3930 int t;
3932 expr_cmp();
3933 while (tok == TOK_EQ || tok == TOK_NE) {
3934 t = tok;
3935 next();
3936 expr_cmp();
3937 gen_op(t);
3941 static void expr_and(void)
3943 expr_cmpeq();
3944 while (tok == '&') {
3945 next();
3946 expr_cmpeq();
3947 gen_op('&');
3951 static void expr_xor(void)
3953 expr_and();
3954 while (tok == '^') {
3955 next();
3956 expr_and();
3957 gen_op('^');
3961 static void expr_or(void)
3963 expr_xor();
3964 while (tok == '|') {
3965 next();
3966 expr_xor();
3967 gen_op('|');
3971 /* XXX: fix this mess */
3972 static void expr_land_const(void)
3974 expr_or();
3975 while (tok == TOK_LAND) {
3976 next();
3977 expr_or();
3978 gen_op(TOK_LAND);
3982 /* XXX: fix this mess */
3983 static void expr_lor_const(void)
3985 expr_land_const();
3986 while (tok == TOK_LOR) {
3987 next();
3988 expr_land_const();
3989 gen_op(TOK_LOR);
3993 /* only used if non constant */
3994 static void expr_land(void)
3996 int t;
3998 expr_or();
3999 if (tok == TOK_LAND) {
4000 t = 0;
4001 save_regs(1);
4002 for(;;) {
4003 t = gtst(1, t);
4004 if (tok != TOK_LAND) {
4005 vseti(VT_JMPI, t);
4006 break;
4008 next();
4009 expr_or();
4014 static void expr_lor(void)
4016 int t;
4018 expr_land();
4019 if (tok == TOK_LOR) {
4020 t = 0;
4021 save_regs(1);
4022 for(;;) {
4023 t = gtst(0, t);
4024 if (tok != TOK_LOR) {
4025 vseti(VT_JMP, t);
4026 break;
4028 next();
4029 expr_land();
4034 /* XXX: better constant handling */
4035 static void expr_cond(void)
4037 int tt, u, r1, r2, rc, t1, t2, bt1, bt2;
4038 SValue sv;
4039 CType type, type1, type2;
4041 if (const_wanted) {
4042 expr_lor_const();
4043 if (tok == '?') {
4044 CType boolean;
4045 int c;
4046 boolean.t = VT_BOOL;
4047 vdup();
4048 gen_cast(&boolean);
4049 c = vtop->c.i;
4050 vpop();
4051 next();
4052 if (tok != ':' || !gnu_ext) {
4053 vpop();
4054 gexpr();
4056 if (!c)
4057 vpop();
4058 skip(':');
4059 expr_cond();
4060 if (c)
4061 vpop();
4063 } else {
4064 expr_lor();
4065 if (tok == '?') {
4066 next();
4067 if (vtop != vstack) {
4068 /* needed to avoid having different registers saved in
4069 each branch */
4070 if (is_float(vtop->type.t)) {
4071 rc = RC_FLOAT;
4072 #ifdef TCC_TARGET_X86_64
4073 if ((vtop->type.t & VT_BTYPE) == VT_LDOUBLE) {
4074 rc = RC_ST0;
4076 #endif
4078 else
4079 rc = RC_INT;
4080 gv(rc);
4081 save_regs(1);
4083 if (tok == ':' && gnu_ext) {
4084 gv_dup();
4085 tt = gtst(1, 0);
4086 } else {
4087 tt = gtst(1, 0);
4088 gexpr();
4090 type1 = vtop->type;
4091 sv = *vtop; /* save value to handle it later */
4092 vtop--; /* no vpop so that FP stack is not flushed */
4093 skip(':');
4094 u = gjmp(0);
4095 gsym(tt);
4096 expr_cond();
4097 type2 = vtop->type;
4099 t1 = type1.t;
4100 bt1 = t1 & VT_BTYPE;
4101 t2 = type2.t;
4102 bt2 = t2 & VT_BTYPE;
4103 /* cast operands to correct type according to ISOC rules */
4104 if (is_float(bt1) || is_float(bt2)) {
4105 if (bt1 == VT_LDOUBLE || bt2 == VT_LDOUBLE) {
4106 type.t = VT_LDOUBLE;
4107 } else if (bt1 == VT_DOUBLE || bt2 == VT_DOUBLE) {
4108 type.t = VT_DOUBLE;
4109 } else {
4110 type.t = VT_FLOAT;
4112 } else if (bt1 == VT_LLONG || bt2 == VT_LLONG) {
4113 /* cast to biggest op */
4114 type.t = VT_LLONG;
4115 /* convert to unsigned if it does not fit in a long long */
4116 if ((t1 & (VT_BTYPE | VT_UNSIGNED)) == (VT_LLONG | VT_UNSIGNED) ||
4117 (t2 & (VT_BTYPE | VT_UNSIGNED)) == (VT_LLONG | VT_UNSIGNED))
4118 type.t |= VT_UNSIGNED;
4119 } else if (bt1 == VT_PTR || bt2 == VT_PTR) {
4120 /* If one is a null ptr constant the result type
4121 is the other. */
4122 if (is_null_pointer (vtop))
4123 type = type1;
4124 else if (is_null_pointer (&sv))
4125 type = type2;
4126 /* XXX: test pointer compatibility, C99 has more elaborate
4127 rules here. */
4128 else
4129 type = type1;
4130 } else if (bt1 == VT_FUNC || bt2 == VT_FUNC) {
4131 /* XXX: test function pointer compatibility */
4132 type = bt1 == VT_FUNC ? type1 : type2;
4133 } else if (bt1 == VT_STRUCT || bt2 == VT_STRUCT) {
4134 /* XXX: test structure compatibility */
4135 type = bt1 == VT_STRUCT ? type1 : type2;
4136 } else if (bt1 == VT_VOID || bt2 == VT_VOID) {
4137 /* NOTE: as an extension, we accept void on only one side */
4138 type.t = VT_VOID;
4139 } else {
4140 /* integer operations */
4141 type.t = VT_INT;
4142 /* convert to unsigned if it does not fit in an integer */
4143 if ((t1 & (VT_BTYPE | VT_UNSIGNED)) == (VT_INT | VT_UNSIGNED) ||
4144 (t2 & (VT_BTYPE | VT_UNSIGNED)) == (VT_INT | VT_UNSIGNED))
4145 type.t |= VT_UNSIGNED;
4148 /* now we convert second operand */
4149 gen_cast(&type);
4150 if (VT_STRUCT == (vtop->type.t & VT_BTYPE))
4151 gaddrof();
4152 rc = RC_INT;
4153 if (is_float(type.t)) {
4154 rc = RC_FLOAT;
4155 #ifdef TCC_TARGET_X86_64
4156 if ((type.t & VT_BTYPE) == VT_LDOUBLE) {
4157 rc = RC_ST0;
4159 #endif
4160 } else if ((type.t & VT_BTYPE) == VT_LLONG) {
4161 /* for long longs, we use fixed registers to avoid having
4162 to handle a complicated move */
4163 rc = RC_IRET;
4166 r2 = gv(rc);
4167 /* this is horrible, but we must also convert first
4168 operand */
4169 tt = gjmp(0);
4170 gsym(u);
4171 /* put again first value and cast it */
4172 *vtop = sv;
4173 gen_cast(&type);
4174 if (VT_STRUCT == (vtop->type.t & VT_BTYPE))
4175 gaddrof();
4176 r1 = gv(rc);
4177 move_reg(r2, r1);
4178 vtop->r = r2;
4179 gsym(tt);
4184 static void expr_eq(void)
4186 int t;
4188 expr_cond();
4189 if (tok == '=' ||
4190 (tok >= TOK_A_MOD && tok <= TOK_A_DIV) ||
4191 tok == TOK_A_XOR || tok == TOK_A_OR ||
4192 tok == TOK_A_SHL || tok == TOK_A_SAR) {
4193 test_lvalue();
4194 t = tok;
4195 next();
4196 if (t == '=') {
4197 expr_eq();
4198 } else {
4199 vdup();
4200 expr_eq();
4201 gen_op(t & 0x7f);
4203 vstore();
4207 ST_FUNC void gexpr(void)
4209 while (1) {
4210 expr_eq();
4211 if (tok != ',')
4212 break;
4213 vpop();
4214 next();
4218 /* parse an expression and return its type without any side effect. */
4219 static void expr_type(CType *type)
4221 int saved_nocode_wanted;
4223 saved_nocode_wanted = nocode_wanted;
4224 nocode_wanted = 1;
4225 gexpr();
4226 *type = vtop->type;
4227 vpop();
4228 nocode_wanted = saved_nocode_wanted;
4231 /* parse a unary expression and return its type without any side
4232 effect. */
4233 static void unary_type(CType *type)
4235 int a;
4237 a = nocode_wanted;
4238 nocode_wanted = 1;
4239 unary();
4240 *type = vtop->type;
4241 vpop();
4242 nocode_wanted = a;
4245 /* parse a constant expression and return value in vtop. */
4246 static void expr_const1(void)
4248 int a;
4249 a = const_wanted;
4250 const_wanted = 1;
4251 expr_cond();
4252 const_wanted = a;
4255 /* parse an integer constant and return its value. */
4256 ST_FUNC int expr_const(void)
4258 int c;
4259 expr_const1();
4260 if ((vtop->r & (VT_VALMASK | VT_LVAL | VT_SYM)) != VT_CONST)
4261 expect("constant expression");
4262 c = vtop->c.i;
4263 vpop();
4264 return c;
4267 /* return the label token if current token is a label, otherwise
4268 return zero */
4269 static int is_label(void)
4271 int last_tok;
4273 /* fast test first */
4274 if (tok < TOK_UIDENT)
4275 return 0;
4276 /* no need to save tokc because tok is an identifier */
4277 last_tok = tok;
4278 next();
4279 if (tok == ':') {
4280 next();
4281 return last_tok;
4282 } else {
4283 unget_tok(last_tok);
4284 return 0;
4288 static void block(int *bsym, int *csym, int *case_sym, int *def_sym,
4289 int case_reg, int is_expr)
4291 int a, b, c, d;
4292 Sym *s;
4294 /* generate line number info */
4295 if (tcc_state->do_debug &&
4296 (last_line_num != file->line_num || last_ind != ind)) {
4297 put_stabn(N_SLINE, 0, file->line_num, ind - func_ind);
4298 last_ind = ind;
4299 last_line_num = file->line_num;
4302 if (is_expr) {
4303 /* default return value is (void) */
4304 vpushi(0);
4305 vtop->type.t = VT_VOID;
4308 if (tok == TOK_IF) {
4309 /* if test */
4310 next();
4311 skip('(');
4312 gexpr();
4313 skip(')');
4314 a = gtst(1, 0);
4315 block(bsym, csym, case_sym, def_sym, case_reg, 0);
4316 c = tok;
4317 if (c == TOK_ELSE) {
4318 next();
4319 d = gjmp(0);
4320 gsym(a);
4321 block(bsym, csym, case_sym, def_sym, case_reg, 0);
4322 gsym(d); /* patch else jmp */
4323 } else
4324 gsym(a);
4325 } else if (tok == TOK_WHILE) {
4326 next();
4327 d = ind;
4328 skip('(');
4329 gexpr();
4330 skip(')');
4331 a = gtst(1, 0);
4332 b = 0;
4333 block(&a, &b, case_sym, def_sym, case_reg, 0);
4334 gjmp_addr(d);
4335 gsym(a);
4336 gsym_addr(b, d);
4337 } else if (tok == '{') {
4338 Sym *llabel;
4340 next();
4341 /* record local declaration stack position */
4342 s = local_stack;
4343 llabel = local_label_stack;
4344 /* handle local labels declarations */
4345 if (tok == TOK_LABEL) {
4346 next();
4347 for(;;) {
4348 if (tok < TOK_UIDENT)
4349 expect("label identifier");
4350 label_push(&local_label_stack, tok, LABEL_DECLARED);
4351 next();
4352 if (tok == ',') {
4353 next();
4354 } else {
4355 skip(';');
4356 break;
4360 while (tok != '}') {
4361 decl(VT_LOCAL);
4362 if (tok != '}') {
4363 if (is_expr)
4364 vpop();
4365 block(bsym, csym, case_sym, def_sym, case_reg, is_expr);
4368 /* pop locally defined labels */
4369 label_pop(&local_label_stack, llabel);
4370 if(is_expr) {
4371 /* XXX: this solution makes only valgrind happy...
4372 triggered by gcc.c-torture/execute/20000917-1.c */
4373 Sym *p;
4374 switch(vtop->type.t & VT_BTYPE) {
4375 case VT_PTR:
4376 case VT_STRUCT:
4377 case VT_ENUM:
4378 case VT_FUNC:
4379 for(p=vtop->type.ref;p;p=p->prev)
4380 if(p->prev==s)
4381 tcc_error("unsupported expression type");
4384 /* pop locally defined symbols */
4385 sym_pop(&local_stack, s);
4386 next();
4387 } else if (tok == TOK_RETURN) {
4388 next();
4389 if (tok != ';') {
4390 gexpr();
4391 gen_assign_cast(&func_vt);
4392 if ((func_vt.t & VT_BTYPE) == VT_STRUCT) {
4393 CType type;
4394 /* if returning structure, must copy it to implicit
4395 first pointer arg location */
4396 #ifdef TCC_ARM_EABI
4397 int align, size;
4398 size = type_size(&func_vt,&align);
4399 if(size <= 4)
4401 if((vtop->r != (VT_LOCAL | VT_LVAL) || (vtop->c.i & 3))
4402 && (align & 3))
4404 int addr;
4405 loc = (loc - size) & -4;
4406 addr = loc;
4407 type = func_vt;
4408 vset(&type, VT_LOCAL | VT_LVAL, addr);
4409 vswap();
4410 vstore();
4411 vset(&int_type, VT_LOCAL | VT_LVAL, addr);
4413 vtop->type = int_type;
4414 gv(RC_IRET);
4415 } else {
4416 #endif
4417 type = func_vt;
4418 mk_pointer(&type);
4419 vset(&type, VT_LOCAL | VT_LVAL, func_vc);
4420 indir();
4421 vswap();
4422 /* copy structure value to pointer */
4423 vstore();
4424 #ifdef TCC_ARM_EABI
4426 #endif
4427 } else if (is_float(func_vt.t)) {
4428 gv(rc_fret(func_vt.t));
4429 } else {
4430 gv(RC_IRET);
4432 vtop--; /* NOT vpop() because on x86 it would flush the fp stack */
4434 skip(';');
4435 rsym = gjmp(rsym); /* jmp */
4436 } else if (tok == TOK_BREAK) {
4437 /* compute jump */
4438 if (!bsym)
4439 tcc_error("cannot break");
4440 *bsym = gjmp(*bsym);
4441 next();
4442 skip(';');
4443 } else if (tok == TOK_CONTINUE) {
4444 /* compute jump */
4445 if (!csym)
4446 tcc_error("cannot continue");
4447 *csym = gjmp(*csym);
4448 next();
4449 skip(';');
4450 } else if (tok == TOK_FOR) {
4451 int e;
4452 next();
4453 skip('(');
4454 s = local_stack;
4455 if (tok != ';') {
4456 /* c99 for-loop init decl? */
4457 if (!decl0(VT_LOCAL, 1)) {
4458 /* no, regular for-loop init expr */
4459 gexpr();
4460 vpop();
4463 skip(';');
4464 d = ind;
4465 c = ind;
4466 a = 0;
4467 b = 0;
4468 if (tok != ';') {
4469 gexpr();
4470 a = gtst(1, 0);
4472 skip(';');
4473 if (tok != ')') {
4474 e = gjmp(0);
4475 c = ind;
4476 gexpr();
4477 vpop();
4478 gjmp_addr(d);
4479 gsym(e);
4481 skip(')');
4482 block(&a, &b, case_sym, def_sym, case_reg, 0);
4483 gjmp_addr(c);
4484 gsym(a);
4485 gsym_addr(b, c);
4486 sym_pop(&local_stack, s);
4487 } else
4488 if (tok == TOK_DO) {
4489 next();
4490 a = 0;
4491 b = 0;
4492 d = ind;
4493 block(&a, &b, case_sym, def_sym, case_reg, 0);
4494 skip(TOK_WHILE);
4495 skip('(');
4496 gsym(b);
4497 gexpr();
4498 c = gtst(0, 0);
4499 gsym_addr(c, d);
4500 skip(')');
4501 gsym(a);
4502 skip(';');
4503 } else
4504 if (tok == TOK_SWITCH) {
4505 next();
4506 skip('(');
4507 gexpr();
4508 /* XXX: other types than integer */
4509 case_reg = gv(RC_INT);
4510 vpop();
4511 skip(')');
4512 a = 0;
4513 b = gjmp(0); /* jump to first case */
4514 c = 0;
4515 block(&a, csym, &b, &c, case_reg, 0);
4516 /* if no default, jmp after switch */
4517 if (c == 0)
4518 c = ind;
4519 /* default label */
4520 gsym_addr(b, c);
4521 /* break label */
4522 gsym(a);
4523 } else
4524 if (tok == TOK_CASE) {
4525 int v1, v2;
4526 if (!case_sym)
4527 expect("switch");
4528 next();
4529 v1 = expr_const();
4530 v2 = v1;
4531 if (gnu_ext && tok == TOK_DOTS) {
4532 next();
4533 v2 = expr_const();
4534 if (v2 < v1)
4535 tcc_warning("empty case range");
4537 /* since a case is like a label, we must skip it with a jmp */
4538 b = gjmp(0);
4539 gsym(*case_sym);
4540 vseti(case_reg, 0);
4541 vpushi(v1);
4542 if (v1 == v2) {
4543 gen_op(TOK_EQ);
4544 *case_sym = gtst(1, 0);
4545 } else {
4546 gen_op(TOK_GE);
4547 *case_sym = gtst(1, 0);
4548 vseti(case_reg, 0);
4549 vpushi(v2);
4550 gen_op(TOK_LE);
4551 *case_sym = gtst(1, *case_sym);
4553 gsym(b);
4554 skip(':');
4555 is_expr = 0;
4556 goto block_after_label;
4557 } else
4558 if (tok == TOK_DEFAULT) {
4559 next();
4560 skip(':');
4561 if (!def_sym)
4562 expect("switch");
4563 if (*def_sym)
4564 tcc_error("too many 'default'");
4565 *def_sym = ind;
4566 is_expr = 0;
4567 goto block_after_label;
4568 } else
4569 if (tok == TOK_GOTO) {
4570 next();
4571 if (tok == '*' && gnu_ext) {
4572 /* computed goto */
4573 next();
4574 gexpr();
4575 if ((vtop->type.t & VT_BTYPE) != VT_PTR)
4576 expect("pointer");
4577 ggoto();
4578 } else if (tok >= TOK_UIDENT) {
4579 s = label_find(tok);
4580 /* put forward definition if needed */
4581 if (!s) {
4582 s = label_push(&global_label_stack, tok, LABEL_FORWARD);
4583 } else {
4584 if (s->r == LABEL_DECLARED)
4585 s->r = LABEL_FORWARD;
4587 /* label already defined */
4588 if (s->r & LABEL_FORWARD)
4589 s->jnext = gjmp(s->jnext);
4590 else
4591 gjmp_addr(s->jnext);
4592 next();
4593 } else {
4594 expect("label identifier");
4596 skip(';');
4597 } else if (tok == TOK_ASM1 || tok == TOK_ASM2 || tok == TOK_ASM3) {
4598 asm_instr();
4599 } else {
4600 b = is_label();
4601 if (b) {
4602 /* label case */
4603 s = label_find(b);
4604 if (s) {
4605 if (s->r == LABEL_DEFINED)
4606 tcc_error("duplicate label '%s'", get_tok_str(s->v, NULL));
4607 gsym(s->jnext);
4608 s->r = LABEL_DEFINED;
4609 } else {
4610 s = label_push(&global_label_stack, b, LABEL_DEFINED);
4612 s->jnext = ind;
4613 /* we accept this, but it is a mistake */
4614 block_after_label:
4615 if (tok == '}') {
4616 tcc_warning("deprecated use of label at end of compound statement");
4617 } else {
4618 if (is_expr)
4619 vpop();
4620 block(bsym, csym, case_sym, def_sym, case_reg, is_expr);
4622 } else {
4623 /* expression case */
4624 if (tok != ';') {
4625 if (is_expr) {
4626 vpop();
4627 gexpr();
4628 } else {
4629 gexpr();
4630 vpop();
4633 skip(';');
4638 /* t is the array or struct type. c is the array or struct
4639 address. cur_index/cur_field is the pointer to the current
4640 value. 'size_only' is true if only size info is needed (only used
4641 in arrays) */
4642 static void decl_designator(CType *type, Section *sec, unsigned long c,
4643 int *cur_index, Sym **cur_field,
4644 int size_only)
4646 Sym *s, *f;
4647 int notfirst, index, index_last, align, l, nb_elems, elem_size;
4648 CType type1;
4650 notfirst = 0;
4651 elem_size = 0;
4652 nb_elems = 1;
4653 if (gnu_ext && (l = is_label()) != 0)
4654 goto struct_field;
4655 while (tok == '[' || tok == '.') {
4656 if (tok == '[') {
4657 if (!(type->t & VT_ARRAY))
4658 expect("array type");
4659 s = type->ref;
4660 next();
4661 index = expr_const();
4662 if (index < 0 || (s->c >= 0 && index >= s->c))
4663 expect("invalid index");
4664 if (tok == TOK_DOTS && gnu_ext) {
4665 next();
4666 index_last = expr_const();
4667 if (index_last < 0 ||
4668 (s->c >= 0 && index_last >= s->c) ||
4669 index_last < index)
4670 expect("invalid index");
4671 } else {
4672 index_last = index;
4674 skip(']');
4675 if (!notfirst)
4676 *cur_index = index_last;
4677 type = pointed_type(type);
4678 elem_size = type_size(type, &align);
4679 c += index * elem_size;
4680 /* NOTE: we only support ranges for last designator */
4681 nb_elems = index_last - index + 1;
4682 if (nb_elems != 1) {
4683 notfirst = 1;
4684 break;
4686 } else {
4687 next();
4688 l = tok;
4689 next();
4690 struct_field:
4691 if ((type->t & VT_BTYPE) != VT_STRUCT)
4692 expect("struct/union type");
4693 s = type->ref;
4694 l |= SYM_FIELD;
4695 f = s->next;
4696 while (f) {
4697 if (f->v == l)
4698 break;
4699 f = f->next;
4701 if (!f)
4702 expect("field");
4703 if (!notfirst)
4704 *cur_field = f;
4705 /* XXX: fix this mess by using explicit storage field */
4706 type1 = f->type;
4707 type1.t |= (type->t & ~VT_TYPE);
4708 type = &type1;
4709 c += f->c;
4711 notfirst = 1;
4713 if (notfirst) {
4714 if (tok == '=') {
4715 next();
4716 } else {
4717 if (!gnu_ext)
4718 expect("=");
4720 } else {
4721 if (type->t & VT_ARRAY) {
4722 index = *cur_index;
4723 type = pointed_type(type);
4724 c += index * type_size(type, &align);
4725 } else {
4726 f = *cur_field;
4727 if (!f)
4728 tcc_error("too many field init");
4729 /* XXX: fix this mess by using explicit storage field */
4730 type1 = f->type;
4731 type1.t |= (type->t & ~VT_TYPE);
4732 type = &type1;
4733 c += f->c;
4736 decl_initializer(type, sec, c, 0, size_only);
4738 /* XXX: make it more general */
4739 if (!size_only && nb_elems > 1) {
4740 unsigned long c_end;
4741 uint8_t *src, *dst;
4742 int i;
4744 if (!sec)
4745 tcc_error("range init not supported yet for dynamic storage");
4746 c_end = c + nb_elems * elem_size;
4747 if (c_end > sec->data_allocated)
4748 section_realloc(sec, c_end);
4749 src = sec->data + c;
4750 dst = src;
4751 for(i = 1; i < nb_elems; i++) {
4752 dst += elem_size;
4753 memcpy(dst, src, elem_size);
4758 #define EXPR_VAL 0
4759 #define EXPR_CONST 1
4760 #define EXPR_ANY 2
4762 /* store a value or an expression directly in global data or in local array */
4763 static void init_putv(CType *type, Section *sec, unsigned long c,
4764 int v, int expr_type)
4766 int saved_global_expr, bt, bit_pos, bit_size;
4767 void *ptr;
4768 unsigned long long bit_mask;
4769 CType dtype;
4771 switch(expr_type) {
4772 case EXPR_VAL:
4773 vpushi(v);
4774 break;
4775 case EXPR_CONST:
4776 /* compound literals must be allocated globally in this case */
4777 saved_global_expr = global_expr;
4778 global_expr = 1;
4779 expr_const1();
4780 global_expr = saved_global_expr;
4781 /* NOTE: symbols are accepted */
4782 if ((vtop->r & (VT_VALMASK | VT_LVAL)) != VT_CONST)
4783 tcc_error("initializer element is not constant");
4784 break;
4785 case EXPR_ANY:
4786 expr_eq();
4787 break;
4790 dtype = *type;
4791 dtype.t &= ~VT_CONSTANT; /* need to do that to avoid false warning */
4793 if (sec) {
4794 /* XXX: not portable */
4795 /* XXX: generate error if incorrect relocation */
4796 gen_assign_cast(&dtype);
4797 bt = type->t & VT_BTYPE;
4798 /* we'll write at most 12 bytes */
4799 if (c + 12 > sec->data_allocated) {
4800 section_realloc(sec, c + 12);
4802 ptr = sec->data + c;
4803 /* XXX: make code faster ? */
4804 if (!(type->t & VT_BITFIELD)) {
4805 bit_pos = 0;
4806 bit_size = 32;
4807 bit_mask = -1LL;
4808 } else {
4809 bit_pos = (vtop->type.t >> VT_STRUCT_SHIFT) & 0x3f;
4810 bit_size = (vtop->type.t >> (VT_STRUCT_SHIFT + 6)) & 0x3f;
4811 bit_mask = (1LL << bit_size) - 1;
4813 if ((vtop->r & VT_SYM) &&
4814 (bt == VT_BYTE ||
4815 bt == VT_SHORT ||
4816 bt == VT_DOUBLE ||
4817 bt == VT_LDOUBLE ||
4818 bt == VT_LLONG ||
4819 (bt == VT_INT && bit_size != 32)))
4820 tcc_error("initializer element is not computable at load time");
4821 switch(bt) {
4822 case VT_BOOL:
4823 vtop->c.i = (vtop->c.i != 0);
4824 case VT_BYTE:
4825 *(char *)ptr |= (vtop->c.i & bit_mask) << bit_pos;
4826 break;
4827 case VT_SHORT:
4828 *(short *)ptr |= (vtop->c.i & bit_mask) << bit_pos;
4829 break;
4830 case VT_DOUBLE:
4831 *(double *)ptr = vtop->c.d;
4832 break;
4833 case VT_LDOUBLE:
4834 *(long double *)ptr = vtop->c.ld;
4835 break;
4836 case VT_LLONG:
4837 *(long long *)ptr |= (vtop->c.ll & bit_mask) << bit_pos;
4838 break;
4839 default:
4840 if (vtop->r & VT_SYM) {
4841 greloc(sec, vtop->sym, c, R_DATA_PTR);
4843 *(int *)ptr |= (vtop->c.i & bit_mask) << bit_pos;
4844 break;
4846 vtop--;
4847 } else {
4848 vset(&dtype, VT_LOCAL|VT_LVAL, c);
4849 vswap();
4850 vstore();
4851 vpop();
4855 /* put zeros for variable based init */
4856 static void init_putz(CType *t, Section *sec, unsigned long c, int size)
4858 if (sec) {
4859 /* nothing to do because globals are already set to zero */
4860 } else {
4861 vpush_global_sym(&func_old_type, TOK_memset);
4862 vseti(VT_LOCAL, c);
4863 vpushi(0);
4864 vpushi(size);
4865 gfunc_call(3);
4869 /* 't' contains the type and storage info. 'c' is the offset of the
4870 object in section 'sec'. If 'sec' is NULL, it means stack based
4871 allocation. 'first' is true if array '{' must be read (multi
4872 dimension implicit array init handling). 'size_only' is true if
4873 size only evaluation is wanted (only for arrays). */
4874 static void decl_initializer(CType *type, Section *sec, unsigned long c,
4875 int first, int size_only)
4877 int index, array_length, n, no_oblock, nb, parlevel, parlevel1, i;
4878 int size1, align1, expr_type;
4879 Sym *s, *f;
4880 CType *t1;
4882 if (type->t & VT_VLA) {
4883 #if defined TCC_TARGET_I386 || defined TCC_TARGET_X86_64
4884 int a;
4885 CValue retcval;
4887 vpush_global_sym(&func_old_type, TOK_alloca);
4888 vla_runtime_type_size(type, &a);
4889 gfunc_call(1);
4891 /* return value */
4892 retcval.i = 0;
4893 vsetc(type, REG_IRET, &retcval);
4894 vset(type, VT_LOCAL|VT_LVAL, c);
4895 vswap();
4896 vstore();
4897 vpop();
4898 #else
4899 tcc_error("variable length arrays unsupported for this target");
4900 #endif
4901 } else if (type->t & VT_ARRAY) {
4902 s = type->ref;
4903 n = s->c;
4904 array_length = 0;
4905 t1 = pointed_type(type);
4906 size1 = type_size(t1, &align1);
4908 no_oblock = 1;
4909 if ((first && tok != TOK_LSTR && tok != TOK_STR) ||
4910 tok == '{') {
4911 if (tok != '{')
4912 tcc_error("character array initializer must be a literal,"
4913 " optionally enclosed in braces");
4914 skip('{');
4915 no_oblock = 0;
4918 /* only parse strings here if correct type (otherwise: handle
4919 them as ((w)char *) expressions */
4920 if ((tok == TOK_LSTR &&
4921 #ifdef TCC_TARGET_PE
4922 (t1->t & VT_BTYPE) == VT_SHORT && (t1->t & VT_UNSIGNED)
4923 #else
4924 (t1->t & VT_BTYPE) == VT_INT
4925 #endif
4926 ) || (tok == TOK_STR && (t1->t & VT_BTYPE) == VT_BYTE)) {
4927 while (tok == TOK_STR || tok == TOK_LSTR) {
4928 int cstr_len, ch;
4929 CString *cstr;
4931 cstr = tokc.cstr;
4932 /* compute maximum number of chars wanted */
4933 if (tok == TOK_STR)
4934 cstr_len = cstr->size;
4935 else
4936 cstr_len = cstr->size / sizeof(nwchar_t);
4937 cstr_len--;
4938 nb = cstr_len;
4939 if (n >= 0 && nb > (n - array_length))
4940 nb = n - array_length;
4941 if (!size_only) {
4942 if (cstr_len > nb)
4943 tcc_warning("initializer-string for array is too long");
4944 /* in order to go faster for common case (char
4945 string in global variable, we handle it
4946 specifically */
4947 if (sec && tok == TOK_STR && size1 == 1) {
4948 memcpy(sec->data + c + array_length, cstr->data, nb);
4949 } else {
4950 for(i=0;i<nb;i++) {
4951 if (tok == TOK_STR)
4952 ch = ((unsigned char *)cstr->data)[i];
4953 else
4954 ch = ((nwchar_t *)cstr->data)[i];
4955 init_putv(t1, sec, c + (array_length + i) * size1,
4956 ch, EXPR_VAL);
4960 array_length += nb;
4961 next();
4963 /* only add trailing zero if enough storage (no
4964 warning in this case since it is standard) */
4965 if (n < 0 || array_length < n) {
4966 if (!size_only) {
4967 init_putv(t1, sec, c + (array_length * size1), 0, EXPR_VAL);
4969 array_length++;
4971 } else {
4972 index = 0;
4973 while (tok != '}') {
4974 decl_designator(type, sec, c, &index, NULL, size_only);
4975 if (n >= 0 && index >= n)
4976 tcc_error("index too large");
4977 /* must put zero in holes (note that doing it that way
4978 ensures that it even works with designators) */
4979 if (!size_only && array_length < index) {
4980 init_putz(t1, sec, c + array_length * size1,
4981 (index - array_length) * size1);
4983 index++;
4984 if (index > array_length)
4985 array_length = index;
4986 /* special test for multi dimensional arrays (may not
4987 be strictly correct if designators are used at the
4988 same time) */
4989 if (index >= n && no_oblock)
4990 break;
4991 if (tok == '}')
4992 break;
4993 skip(',');
4996 if (!no_oblock)
4997 skip('}');
4998 /* put zeros at the end */
4999 if (!size_only && n >= 0 && array_length < n) {
5000 init_putz(t1, sec, c + array_length * size1,
5001 (n - array_length) * size1);
5003 /* patch type size if needed */
5004 if (n < 0)
5005 s->c = array_length;
5006 } else if ((type->t & VT_BTYPE) == VT_STRUCT &&
5007 (sec || !first || tok == '{')) {
5008 int par_count;
5010 /* NOTE: the previous test is a specific case for automatic
5011 struct/union init */
5012 /* XXX: union needs only one init */
5014 /* XXX: this test is incorrect for local initializers
5015 beginning with ( without {. It would be much more difficult
5016 to do it correctly (ideally, the expression parser should
5017 be used in all cases) */
5018 par_count = 0;
5019 if (tok == '(') {
5020 AttributeDef ad1;
5021 CType type1;
5022 next();
5023 while (tok == '(') {
5024 par_count++;
5025 next();
5027 if (!parse_btype(&type1, &ad1))
5028 expect("cast");
5029 type_decl(&type1, &ad1, &n, TYPE_ABSTRACT);
5030 #if 0
5031 if (!is_assignable_types(type, &type1))
5032 tcc_error("invalid type for cast");
5033 #endif
5034 skip(')');
5036 no_oblock = 1;
5037 if (first || tok == '{') {
5038 skip('{');
5039 no_oblock = 0;
5041 s = type->ref;
5042 f = s->next;
5043 array_length = 0;
5044 index = 0;
5045 n = s->c;
5046 while (tok != '}') {
5047 decl_designator(type, sec, c, NULL, &f, size_only);
5048 index = f->c;
5049 if (!size_only && array_length < index) {
5050 init_putz(type, sec, c + array_length,
5051 index - array_length);
5053 index = index + type_size(&f->type, &align1);
5054 if (index > array_length)
5055 array_length = index;
5057 /* gr: skip fields from same union - ugly. */
5058 while (f->next) {
5059 ///printf("index: %2d %08x -- %2d %08x\n", f->c, f->type.t, f->next->c, f->next->type.t);
5060 /* test for same offset */
5061 if (f->next->c != f->c)
5062 break;
5063 /* if yes, test for bitfield shift */
5064 if ((f->type.t & VT_BITFIELD) && (f->next->type.t & VT_BITFIELD)) {
5065 int bit_pos_1 = (f->type.t >> VT_STRUCT_SHIFT) & 0x3f;
5066 int bit_pos_2 = (f->next->type.t >> VT_STRUCT_SHIFT) & 0x3f;
5067 //printf("bitfield %d %d\n", bit_pos_1, bit_pos_2);
5068 if (bit_pos_1 != bit_pos_2)
5069 break;
5071 f = f->next;
5074 f = f->next;
5075 if (no_oblock && f == NULL)
5076 break;
5077 if (tok == '}')
5078 break;
5079 skip(',');
5081 /* put zeros at the end */
5082 if (!size_only && array_length < n) {
5083 init_putz(type, sec, c + array_length,
5084 n - array_length);
5086 if (!no_oblock)
5087 skip('}');
5088 while (par_count) {
5089 skip(')');
5090 par_count--;
5092 } else if (tok == '{') {
5093 next();
5094 decl_initializer(type, sec, c, first, size_only);
5095 skip('}');
5096 } else if (size_only) {
5097 /* just skip expression */
5098 parlevel = parlevel1 = 0;
5099 while ((parlevel > 0 || parlevel1 > 0 ||
5100 (tok != '}' && tok != ',')) && tok != -1) {
5101 if (tok == '(')
5102 parlevel++;
5103 else if (tok == ')')
5104 parlevel--;
5105 else if (tok == '{')
5106 parlevel1++;
5107 else if (tok == '}')
5108 parlevel1--;
5109 next();
5111 } else {
5112 /* currently, we always use constant expression for globals
5113 (may change for scripting case) */
5114 expr_type = EXPR_CONST;
5115 if (!sec)
5116 expr_type = EXPR_ANY;
5117 init_putv(type, sec, c, 0, expr_type);
5121 /* parse an initializer for type 't' if 'has_init' is non zero, and
5122 allocate space in local or global data space ('r' is either
5123 VT_LOCAL or VT_CONST). If 'v' is non zero, then an associated
5124 variable 'v' with an associated name represented by 'asm_label' of
5125 scope 'scope' is declared before initializers are parsed. If 'v' is
5126 zero, then a reference to the new object is put in the value stack.
5127 If 'has_init' is 2, a special parsing is done to handle string
5128 constants. */
5129 static void decl_initializer_alloc(CType *type, AttributeDef *ad, int r,
5130 int has_init, int v, char *asm_label,
5131 int scope)
5133 int size, align, addr, data_offset;
5134 int level;
5135 ParseState saved_parse_state = {0};
5136 TokenString init_str;
5137 Section *sec;
5138 Sym *flexible_array;
5140 flexible_array = NULL;
5141 if ((type->t & VT_BTYPE) == VT_STRUCT) {
5142 Sym *field;
5143 field = type->ref;
5144 while (field && field->next)
5145 field = field->next;
5146 if (field->type.t & VT_ARRAY && field->type.ref->c < 0)
5147 flexible_array = field;
5150 size = type_size(type, &align);
5151 /* If unknown size, we must evaluate it before
5152 evaluating initializers because
5153 initializers can generate global data too
5154 (e.g. string pointers or ISOC99 compound
5155 literals). It also simplifies local
5156 initializers handling */
5157 tok_str_new(&init_str);
5158 if (size < 0 || (flexible_array && has_init)) {
5159 if (!has_init)
5160 tcc_error("unknown type size");
5161 /* get all init string */
5162 if (has_init == 2) {
5163 /* only get strings */
5164 while (tok == TOK_STR || tok == TOK_LSTR) {
5165 tok_str_add_tok(&init_str);
5166 next();
5168 } else {
5169 level = 0;
5170 while (level > 0 || (tok != ',' && tok != ';')) {
5171 if (tok < 0)
5172 tcc_error("unexpected end of file in initializer");
5173 tok_str_add_tok(&init_str);
5174 if (tok == '{')
5175 level++;
5176 else if (tok == '}') {
5177 level--;
5178 if (level <= 0) {
5179 next();
5180 break;
5183 next();
5186 tok_str_add(&init_str, -1);
5187 tok_str_add(&init_str, 0);
5189 /* compute size */
5190 save_parse_state(&saved_parse_state);
5192 macro_ptr = init_str.str;
5193 next();
5194 decl_initializer(type, NULL, 0, 1, 1);
5195 /* prepare second initializer parsing */
5196 macro_ptr = init_str.str;
5197 next();
5199 /* if still unknown size, error */
5200 size = type_size(type, &align);
5201 if (size < 0)
5202 tcc_error("unknown type size");
5204 if (flexible_array)
5205 size += flexible_array->type.ref->c * pointed_size(&flexible_array->type);
5206 /* take into account specified alignment if bigger */
5207 if (ad->aligned) {
5208 if (ad->aligned > align)
5209 align = ad->aligned;
5210 } else if (ad->packed) {
5211 align = 1;
5213 if ((r & VT_VALMASK) == VT_LOCAL) {
5214 sec = NULL;
5215 #ifdef CONFIG_TCC_BCHECK
5216 if (tcc_state->do_bounds_check && (type->t & VT_ARRAY)) {
5217 loc--;
5219 #endif
5220 loc = (loc - size) & -align;
5221 addr = loc;
5222 #ifdef CONFIG_TCC_BCHECK
5223 /* handles bounds */
5224 /* XXX: currently, since we do only one pass, we cannot track
5225 '&' operators, so we add only arrays */
5226 if (tcc_state->do_bounds_check && (type->t & VT_ARRAY)) {
5227 unsigned long *bounds_ptr;
5228 /* add padding between regions */
5229 loc--;
5230 /* then add local bound info */
5231 bounds_ptr = section_ptr_add(lbounds_section, 2 * sizeof(unsigned long));
5232 bounds_ptr[0] = addr;
5233 bounds_ptr[1] = size;
5235 #endif
5236 if (v) {
5237 /* local variable */
5238 sym_push(v, type, r, addr);
5239 } else {
5240 /* push local reference */
5241 vset(type, r, addr);
5243 } else {
5244 Sym *sym;
5246 sym = NULL;
5247 if (v && scope == VT_CONST) {
5248 /* see if the symbol was already defined */
5249 sym = sym_find(v);
5250 if (sym) {
5251 if (!is_compatible_types(&sym->type, type))
5252 tcc_error("incompatible types for redefinition of '%s'",
5253 get_tok_str(v, NULL));
5254 if (sym->type.t & VT_EXTERN) {
5255 /* if the variable is extern, it was not allocated */
5256 sym->type.t &= ~VT_EXTERN;
5257 /* set array size if it was ommited in extern
5258 declaration */
5259 if ((sym->type.t & VT_ARRAY) &&
5260 sym->type.ref->c < 0 &&
5261 type->ref->c >= 0)
5262 sym->type.ref->c = type->ref->c;
5263 } else {
5264 /* we accept several definitions of the same
5265 global variable. this is tricky, because we
5266 must play with the SHN_COMMON type of the symbol */
5267 /* XXX: should check if the variable was already
5268 initialized. It is incorrect to initialized it
5269 twice */
5270 /* no init data, we won't add more to the symbol */
5271 if (!has_init)
5272 goto no_alloc;
5277 /* allocate symbol in corresponding section */
5278 sec = ad->section;
5279 if (!sec) {
5280 if (has_init)
5281 sec = data_section;
5282 else if (tcc_state->nocommon)
5283 sec = bss_section;
5285 if (sec) {
5286 data_offset = sec->data_offset;
5287 data_offset = (data_offset + align - 1) & -align;
5288 addr = data_offset;
5289 /* very important to increment global pointer at this time
5290 because initializers themselves can create new initializers */
5291 data_offset += size;
5292 #ifdef CONFIG_TCC_BCHECK
5293 /* add padding if bound check */
5294 if (tcc_state->do_bounds_check)
5295 data_offset++;
5296 #endif
5297 sec->data_offset = data_offset;
5298 /* allocate section space to put the data */
5299 if (sec->sh_type != SHT_NOBITS &&
5300 data_offset > sec->data_allocated)
5301 section_realloc(sec, data_offset);
5302 /* align section if needed */
5303 if (align > sec->sh_addralign)
5304 sec->sh_addralign = align;
5305 } else {
5306 addr = 0; /* avoid warning */
5309 if (v) {
5310 if (scope != VT_CONST || !sym) {
5311 sym = sym_push(v, type, r | VT_SYM, 0);
5312 sym->asm_label = asm_label;
5314 /* update symbol definition */
5315 if (sec) {
5316 put_extern_sym(sym, sec, addr, size);
5317 } else {
5318 ElfW(Sym) *esym;
5319 /* put a common area */
5320 put_extern_sym(sym, NULL, align, size);
5321 /* XXX: find a nicer way */
5322 esym = &((ElfW(Sym) *)symtab_section->data)[sym->c];
5323 esym->st_shndx = SHN_COMMON;
5325 } else {
5326 CValue cval;
5328 /* push global reference */
5329 sym = get_sym_ref(type, sec, addr, size);
5330 cval.ul = 0;
5331 vsetc(type, VT_CONST | VT_SYM, &cval);
5332 vtop->sym = sym;
5334 /* patch symbol weakness */
5335 if (type->t & VT_WEAK)
5336 weaken_symbol(sym);
5337 #ifdef CONFIG_TCC_BCHECK
5338 /* handles bounds now because the symbol must be defined
5339 before for the relocation */
5340 if (tcc_state->do_bounds_check) {
5341 unsigned long *bounds_ptr;
5343 greloc(bounds_section, sym, bounds_section->data_offset, R_DATA_PTR);
5344 /* then add global bound info */
5345 bounds_ptr = section_ptr_add(bounds_section, 2 * sizeof(long));
5346 bounds_ptr[0] = 0; /* relocated */
5347 bounds_ptr[1] = size;
5349 #endif
5351 if (has_init || (type->t & VT_VLA)) {
5352 decl_initializer(type, sec, addr, 1, 0);
5353 /* restore parse state if needed */
5354 if (init_str.str) {
5355 tok_str_free(init_str.str);
5356 restore_parse_state(&saved_parse_state);
5358 /* patch flexible array member size back to -1, */
5359 /* for possible subsequent similar declarations */
5360 if (flexible_array)
5361 flexible_array->type.ref->c = -1;
5363 no_alloc: ;
5366 static void put_func_debug(Sym *sym)
5368 char buf[512];
5370 /* stabs info */
5371 /* XXX: we put here a dummy type */
5372 snprintf(buf, sizeof(buf), "%s:%c1",
5373 funcname, sym->type.t & VT_STATIC ? 'f' : 'F');
5374 put_stabs_r(buf, N_FUN, 0, file->line_num, 0,
5375 cur_text_section, sym->c);
5376 /* //gr gdb wants a line at the function */
5377 put_stabn(N_SLINE, 0, file->line_num, 0);
5378 last_ind = 0;
5379 last_line_num = 0;
5382 /* parse an old style function declaration list */
5383 /* XXX: check multiple parameter */
5384 static void func_decl_list(Sym *func_sym)
5386 AttributeDef ad;
5387 int v;
5388 Sym *s;
5389 CType btype, type;
5391 /* parse each declaration */
5392 while (tok != '{' && tok != ';' && tok != ',' && tok != TOK_EOF &&
5393 tok != TOK_ASM1 && tok != TOK_ASM2 && tok != TOK_ASM3) {
5394 if (!parse_btype(&btype, &ad))
5395 expect("declaration list");
5396 if (((btype.t & VT_BTYPE) == VT_ENUM ||
5397 (btype.t & VT_BTYPE) == VT_STRUCT) &&
5398 tok == ';') {
5399 /* we accept no variable after */
5400 } else {
5401 for(;;) {
5402 type = btype;
5403 type_decl(&type, &ad, &v, TYPE_DIRECT);
5404 /* find parameter in function parameter list */
5405 s = func_sym->next;
5406 while (s != NULL) {
5407 if ((s->v & ~SYM_FIELD) == v)
5408 goto found;
5409 s = s->next;
5411 tcc_error("declaration for parameter '%s' but no such parameter",
5412 get_tok_str(v, NULL));
5413 found:
5414 /* check that no storage specifier except 'register' was given */
5415 if (type.t & VT_STORAGE)
5416 tcc_error("storage class specified for '%s'", get_tok_str(v, NULL));
5417 convert_parameter_type(&type);
5418 /* we can add the type (NOTE: it could be local to the function) */
5419 s->type = type;
5420 /* accept other parameters */
5421 if (tok == ',')
5422 next();
5423 else
5424 break;
5427 skip(';');
5431 /* parse a function defined by symbol 'sym' and generate its code in
5432 'cur_text_section' */
5433 static void gen_function(Sym *sym)
5435 int saved_nocode_wanted = nocode_wanted;
5436 nocode_wanted = 0;
5437 ind = cur_text_section->data_offset;
5438 /* NOTE: we patch the symbol size later */
5439 put_extern_sym(sym, cur_text_section, ind, 0);
5440 funcname = get_tok_str(sym->v, NULL);
5441 func_ind = ind;
5442 /* put debug symbol */
5443 if (tcc_state->do_debug)
5444 put_func_debug(sym);
5445 /* push a dummy symbol to enable local sym storage */
5446 sym_push2(&local_stack, SYM_FIELD, 0, 0);
5447 gfunc_prolog(&sym->type);
5448 rsym = 0;
5449 block(NULL, NULL, NULL, NULL, 0, 0);
5450 gsym(rsym);
5451 gfunc_epilog();
5452 cur_text_section->data_offset = ind;
5453 label_pop(&global_label_stack, NULL);
5454 sym_pop(&local_stack, NULL); /* reset local stack */
5455 /* end of function */
5456 /* patch symbol size */
5457 ((ElfW(Sym) *)symtab_section->data)[sym->c].st_size =
5458 ind - func_ind;
5459 /* patch symbol weakness (this definition overrules any prototype) */
5460 if (sym->type.t & VT_WEAK)
5461 weaken_symbol(sym);
5462 if (tcc_state->do_debug) {
5463 put_stabn(N_FUN, 0, 0, ind - func_ind);
5465 /* It's better to crash than to generate wrong code */
5466 cur_text_section = NULL;
5467 funcname = ""; /* for safety */
5468 func_vt.t = VT_VOID; /* for safety */
5469 ind = 0; /* for safety */
5470 nocode_wanted = saved_nocode_wanted;
5473 ST_FUNC void gen_inline_functions(void)
5475 Sym *sym;
5476 int *str, inline_generated, i;
5477 struct InlineFunc *fn;
5479 /* iterate while inline function are referenced */
5480 for(;;) {
5481 inline_generated = 0;
5482 for (i = 0; i < tcc_state->nb_inline_fns; ++i) {
5483 fn = tcc_state->inline_fns[i];
5484 sym = fn->sym;
5485 if (sym && sym->c) {
5486 /* the function was used: generate its code and
5487 convert it to a normal function */
5488 str = fn->token_str;
5489 fn->sym = NULL;
5490 if (file)
5491 strcpy(file->filename, fn->filename);
5492 sym->r = VT_SYM | VT_CONST;
5493 sym->type.t &= ~VT_INLINE;
5495 macro_ptr = str;
5496 next();
5497 cur_text_section = text_section;
5498 gen_function(sym);
5499 macro_ptr = NULL; /* fail safe */
5501 inline_generated = 1;
5504 if (!inline_generated)
5505 break;
5507 for (i = 0; i < tcc_state->nb_inline_fns; ++i) {
5508 fn = tcc_state->inline_fns[i];
5509 str = fn->token_str;
5510 tok_str_free(str);
5512 dynarray_reset(&tcc_state->inline_fns, &tcc_state->nb_inline_fns);
5515 /* 'l' is VT_LOCAL or VT_CONST to define default storage type */
5516 static int decl0(int l, int is_for_loop_init)
5518 int v, has_init, r;
5519 CType type, btype;
5520 Sym *sym;
5521 AttributeDef ad;
5523 while (1) {
5524 if (!parse_btype(&btype, &ad)) {
5525 if (is_for_loop_init)
5526 return 0;
5527 /* skip redundant ';' */
5528 /* XXX: find more elegant solution */
5529 if (tok == ';') {
5530 next();
5531 continue;
5533 if (l == VT_CONST &&
5534 (tok == TOK_ASM1 || tok == TOK_ASM2 || tok == TOK_ASM3)) {
5535 /* global asm block */
5536 asm_global_instr();
5537 continue;
5539 /* special test for old K&R protos without explicit int
5540 type. Only accepted when defining global data */
5541 if (l == VT_LOCAL || tok < TOK_DEFINE)
5542 break;
5543 btype.t = VT_INT;
5545 if (((btype.t & VT_BTYPE) == VT_ENUM ||
5546 (btype.t & VT_BTYPE) == VT_STRUCT) &&
5547 tok == ';') {
5548 /* we accept no variable after */
5549 next();
5550 continue;
5552 while (1) { /* iterate thru each declaration */
5553 char *asm_label; // associated asm label
5554 type = btype;
5555 type_decl(&type, &ad, &v, TYPE_DIRECT);
5556 #if 0
5558 char buf[500];
5559 type_to_str(buf, sizeof(buf), t, get_tok_str(v, NULL));
5560 printf("type = '%s'\n", buf);
5562 #endif
5563 if ((type.t & VT_BTYPE) == VT_FUNC) {
5564 if ((type.t & VT_STATIC) && (l == VT_LOCAL)) {
5565 tcc_error("function without file scope cannot be static");
5567 /* if old style function prototype, we accept a
5568 declaration list */
5569 sym = type.ref;
5570 if (sym->c == FUNC_OLD)
5571 func_decl_list(sym);
5574 asm_label = NULL;
5575 if (gnu_ext && (tok == TOK_ASM1 || tok == TOK_ASM2 || tok == TOK_ASM3)) {
5576 CString astr;
5578 asm_label_instr(&astr);
5579 asm_label = tcc_strdup(astr.data);
5580 cstr_free(&astr);
5582 /* parse one last attribute list, after asm label */
5583 parse_attribute(&ad);
5586 if (ad.weak)
5587 type.t |= VT_WEAK;
5588 #ifdef TCC_TARGET_PE
5589 if (ad.func_import)
5590 type.t |= VT_IMPORT;
5591 if (ad.func_export)
5592 type.t |= VT_EXPORT;
5593 #endif
5594 if (tok == '{') {
5595 if (l == VT_LOCAL)
5596 tcc_error("cannot use local functions");
5597 if ((type.t & VT_BTYPE) != VT_FUNC)
5598 expect("function definition");
5600 /* reject abstract declarators in function definition */
5601 sym = type.ref;
5602 while ((sym = sym->next) != NULL)
5603 if (!(sym->v & ~SYM_FIELD))
5604 expect("identifier");
5606 /* XXX: cannot do better now: convert extern line to static inline */
5607 if ((type.t & (VT_EXTERN | VT_INLINE)) == (VT_EXTERN | VT_INLINE))
5608 type.t = (type.t & ~VT_EXTERN) | VT_STATIC;
5610 sym = sym_find(v);
5611 if (sym) {
5612 if ((sym->type.t & VT_BTYPE) != VT_FUNC)
5613 goto func_error1;
5615 r = sym->type.ref->r;
5616 /* use func_call from prototype if not defined */
5617 if (FUNC_CALL(r) != FUNC_CDECL
5618 && FUNC_CALL(type.ref->r) == FUNC_CDECL)
5619 FUNC_CALL(type.ref->r) = FUNC_CALL(r);
5621 /* use export from prototype */
5622 if (FUNC_EXPORT(r))
5623 FUNC_EXPORT(type.ref->r) = 1;
5625 /* use static from prototype */
5626 if (sym->type.t & VT_STATIC)
5627 type.t = (type.t & ~VT_EXTERN) | VT_STATIC;
5629 if (!is_compatible_types(&sym->type, &type)) {
5630 func_error1:
5631 tcc_error("incompatible types for redefinition of '%s'",
5632 get_tok_str(v, NULL));
5634 /* if symbol is already defined, then put complete type */
5635 sym->type = type;
5636 } else {
5637 /* put function symbol */
5638 sym = global_identifier_push(v, type.t, 0);
5639 sym->type.ref = type.ref;
5642 /* static inline functions are just recorded as a kind
5643 of macro. Their code will be emitted at the end of
5644 the compilation unit only if they are used */
5645 if ((type.t & (VT_INLINE | VT_STATIC)) ==
5646 (VT_INLINE | VT_STATIC)) {
5647 TokenString func_str;
5648 int block_level;
5649 struct InlineFunc *fn;
5650 const char *filename;
5652 tok_str_new(&func_str);
5654 block_level = 0;
5655 for(;;) {
5656 int t;
5657 if (tok == TOK_EOF)
5658 tcc_error("unexpected end of file");
5659 tok_str_add_tok(&func_str);
5660 t = tok;
5661 next();
5662 if (t == '{') {
5663 block_level++;
5664 } else if (t == '}') {
5665 block_level--;
5666 if (block_level == 0)
5667 break;
5670 tok_str_add(&func_str, -1);
5671 tok_str_add(&func_str, 0);
5672 filename = file ? file->filename : "";
5673 fn = tcc_malloc(sizeof *fn + strlen(filename));
5674 strcpy(fn->filename, filename);
5675 fn->sym = sym;
5676 fn->token_str = func_str.str;
5677 dynarray_add((void ***)&tcc_state->inline_fns, &tcc_state->nb_inline_fns, fn);
5679 } else {
5680 /* compute text section */
5681 cur_text_section = ad.section;
5682 if (!cur_text_section)
5683 cur_text_section = text_section;
5684 sym->r = VT_SYM | VT_CONST;
5685 gen_function(sym);
5687 break;
5688 } else {
5689 if (btype.t & VT_TYPEDEF) {
5690 /* save typedefed type */
5691 /* XXX: test storage specifiers ? */
5692 sym = sym_push(v, &type, INT_ATTR(&ad), 0);
5693 sym->type.t |= VT_TYPEDEF;
5694 } else {
5695 r = 0;
5696 if ((type.t & VT_BTYPE) == VT_FUNC) {
5697 /* external function definition */
5698 /* specific case for func_call attribute */
5699 type.ref->r = INT_ATTR(&ad);
5700 } else if (!(type.t & VT_ARRAY)) {
5701 /* not lvalue if array */
5702 r |= lvalue_type(type.t);
5704 has_init = (tok == '=');
5705 if (has_init && (type.t & VT_VLA))
5706 tcc_error("Variable length array cannot be initialized");
5707 if ((btype.t & VT_EXTERN) || ((type.t & VT_BTYPE) == VT_FUNC) ||
5708 ((type.t & VT_ARRAY) && (type.t & VT_STATIC) &&
5709 !has_init && l == VT_CONST && type.ref->c < 0)) {
5710 /* external variable or function */
5711 /* NOTE: as GCC, uninitialized global static
5712 arrays of null size are considered as
5713 extern */
5714 sym = external_sym(v, &type, r, asm_label);
5716 if (type.t & VT_WEAK)
5717 weaken_symbol(sym);
5719 if (ad.alias_target) {
5720 Section tsec;
5721 Elf32_Sym *esym;
5722 Sym *alias_target;
5724 alias_target = sym_find(ad.alias_target);
5725 if (!alias_target || !alias_target->c)
5726 tcc_error("unsupported forward __alias__ attribute");
5727 esym = &((Elf32_Sym *)symtab_section->data)[alias_target->c];
5728 tsec.sh_num = esym->st_shndx;
5729 put_extern_sym2(sym, &tsec, esym->st_value, esym->st_size, 0);
5731 } else {
5732 type.t |= (btype.t & VT_STATIC); /* Retain "static". */
5733 if (type.t & VT_STATIC)
5734 r |= VT_CONST;
5735 else
5736 r |= l;
5737 if (has_init)
5738 next();
5739 decl_initializer_alloc(&type, &ad, r, has_init, v, asm_label, l);
5742 if (tok != ',') {
5743 if (is_for_loop_init)
5744 return 1;
5745 skip(';');
5746 break;
5748 next();
5750 ad.aligned = 0;
5753 return 0;
5756 ST_FUNC void decl(int l)
5758 decl0(l, 0);