libtcc: cleanup the 'gen_makedeps' stuff
[tinycc.git] / tccgen.c
blobc800acca7fe4ae1a4f49e56e46cf9048e3ca1077
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 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 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 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 #ifdef TCC_TARGET_ARM
971 /* like vrott but in other direction
972 In ... I1 -> I(n-1) ... I1 In [top is right]
974 ST_FUNC void vnrott(int n)
976 int i;
977 SValue tmp;
979 tmp = vtop[-n + 1];
980 for(i = n - 1; i > 0; i--)
981 vtop[-i] = vtop[-i + 1];
982 vtop[0] = tmp;
984 #endif
986 /* pop stack value */
987 ST_FUNC void vpop(void)
989 int v;
990 v = vtop->r & VT_VALMASK;
991 #if defined(TCC_TARGET_I386) || defined(TCC_TARGET_X86_64)
992 /* for x86, we need to pop the FP stack */
993 if (v == TREG_ST0 && !nocode_wanted) {
994 o(0xd8dd); /* fstp %st(0) */
995 } else
996 #endif
997 if (v == VT_JMP || v == VT_JMPI) {
998 /* need to put correct jump if && or || without test */
999 gsym(vtop->c.ul);
1001 vtop--;
1004 /* convert stack entry to register and duplicate its value in another
1005 register */
1006 static void gv_dup(void)
1008 int rc, t, r, r1;
1009 SValue sv;
1011 t = vtop->type.t;
1012 if ((t & VT_BTYPE) == VT_LLONG) {
1013 lexpand();
1014 gv_dup();
1015 vswap();
1016 vrotb(3);
1017 gv_dup();
1018 vrotb(4);
1019 /* stack: H L L1 H1 */
1020 lbuild(t);
1021 vrotb(3);
1022 vrotb(3);
1023 vswap();
1024 lbuild(t);
1025 vswap();
1026 } else {
1027 /* duplicate value */
1028 rc = RC_INT;
1029 sv.type.t = VT_INT;
1030 if (is_float(t)) {
1031 rc = RC_FLOAT;
1032 #ifdef TCC_TARGET_X86_64
1033 if ((t & VT_BTYPE) == VT_LDOUBLE) {
1034 rc = RC_ST0;
1036 #endif
1037 sv.type.t = t;
1039 r = gv(rc);
1040 r1 = get_reg(rc);
1041 sv.r = r;
1042 sv.c.ul = 0;
1043 load(r1, &sv); /* move r to r1 */
1044 vdup();
1045 /* duplicates value */
1046 if (r != r1)
1047 vtop->r = r1;
1051 #ifndef TCC_TARGET_X86_64
1052 /* generate CPU independent (unsigned) long long operations */
1053 static void gen_opl(int op)
1055 int t, a, b, op1, c, i;
1056 int func;
1057 unsigned short reg_iret = REG_IRET;
1058 unsigned short reg_lret = REG_LRET;
1059 SValue tmp;
1061 switch(op) {
1062 case '/':
1063 case TOK_PDIV:
1064 func = TOK___divdi3;
1065 goto gen_func;
1066 case TOK_UDIV:
1067 func = TOK___udivdi3;
1068 goto gen_func;
1069 case '%':
1070 func = TOK___moddi3;
1071 goto gen_mod_func;
1072 case TOK_UMOD:
1073 func = TOK___umoddi3;
1074 gen_mod_func:
1075 #ifdef TCC_ARM_EABI
1076 reg_iret = TREG_R2;
1077 reg_lret = TREG_R3;
1078 #endif
1079 gen_func:
1080 /* call generic long long function */
1081 vpush_global_sym(&func_old_type, func);
1082 vrott(3);
1083 gfunc_call(2);
1084 vpushi(0);
1085 vtop->r = reg_iret;
1086 vtop->r2 = reg_lret;
1087 break;
1088 case '^':
1089 case '&':
1090 case '|':
1091 case '*':
1092 case '+':
1093 case '-':
1094 t = vtop->type.t;
1095 vswap();
1096 lexpand();
1097 vrotb(3);
1098 lexpand();
1099 /* stack: L1 H1 L2 H2 */
1100 tmp = vtop[0];
1101 vtop[0] = vtop[-3];
1102 vtop[-3] = tmp;
1103 tmp = vtop[-2];
1104 vtop[-2] = vtop[-3];
1105 vtop[-3] = tmp;
1106 vswap();
1107 /* stack: H1 H2 L1 L2 */
1108 if (op == '*') {
1109 vpushv(vtop - 1);
1110 vpushv(vtop - 1);
1111 gen_op(TOK_UMULL);
1112 lexpand();
1113 /* stack: H1 H2 L1 L2 ML MH */
1114 for(i=0;i<4;i++)
1115 vrotb(6);
1116 /* stack: ML MH H1 H2 L1 L2 */
1117 tmp = vtop[0];
1118 vtop[0] = vtop[-2];
1119 vtop[-2] = tmp;
1120 /* stack: ML MH H1 L2 H2 L1 */
1121 gen_op('*');
1122 vrotb(3);
1123 vrotb(3);
1124 gen_op('*');
1125 /* stack: ML MH M1 M2 */
1126 gen_op('+');
1127 gen_op('+');
1128 } else if (op == '+' || op == '-') {
1129 /* XXX: add non carry method too (for MIPS or alpha) */
1130 if (op == '+')
1131 op1 = TOK_ADDC1;
1132 else
1133 op1 = TOK_SUBC1;
1134 gen_op(op1);
1135 /* stack: H1 H2 (L1 op L2) */
1136 vrotb(3);
1137 vrotb(3);
1138 gen_op(op1 + 1); /* TOK_xxxC2 */
1139 } else {
1140 gen_op(op);
1141 /* stack: H1 H2 (L1 op L2) */
1142 vrotb(3);
1143 vrotb(3);
1144 /* stack: (L1 op L2) H1 H2 */
1145 gen_op(op);
1146 /* stack: (L1 op L2) (H1 op H2) */
1148 /* stack: L H */
1149 lbuild(t);
1150 break;
1151 case TOK_SAR:
1152 case TOK_SHR:
1153 case TOK_SHL:
1154 if ((vtop->r & (VT_VALMASK | VT_LVAL | VT_SYM)) == VT_CONST) {
1155 t = vtop[-1].type.t;
1156 vswap();
1157 lexpand();
1158 vrotb(3);
1159 /* stack: L H shift */
1160 c = (int)vtop->c.i;
1161 /* constant: simpler */
1162 /* NOTE: all comments are for SHL. the other cases are
1163 done by swaping words */
1164 vpop();
1165 if (op != TOK_SHL)
1166 vswap();
1167 if (c >= 32) {
1168 /* stack: L H */
1169 vpop();
1170 if (c > 32) {
1171 vpushi(c - 32);
1172 gen_op(op);
1174 if (op != TOK_SAR) {
1175 vpushi(0);
1176 } else {
1177 gv_dup();
1178 vpushi(31);
1179 gen_op(TOK_SAR);
1181 vswap();
1182 } else {
1183 vswap();
1184 gv_dup();
1185 /* stack: H L L */
1186 vpushi(c);
1187 gen_op(op);
1188 vswap();
1189 vpushi(32 - c);
1190 if (op == TOK_SHL)
1191 gen_op(TOK_SHR);
1192 else
1193 gen_op(TOK_SHL);
1194 vrotb(3);
1195 /* stack: L L H */
1196 vpushi(c);
1197 if (op == TOK_SHL)
1198 gen_op(TOK_SHL);
1199 else
1200 gen_op(TOK_SHR);
1201 gen_op('|');
1203 if (op != TOK_SHL)
1204 vswap();
1205 lbuild(t);
1206 } else {
1207 /* XXX: should provide a faster fallback on x86 ? */
1208 switch(op) {
1209 case TOK_SAR:
1210 func = TOK___ashrdi3;
1211 goto gen_func;
1212 case TOK_SHR:
1213 func = TOK___lshrdi3;
1214 goto gen_func;
1215 case TOK_SHL:
1216 func = TOK___ashldi3;
1217 goto gen_func;
1220 break;
1221 default:
1222 /* compare operations */
1223 t = vtop->type.t;
1224 vswap();
1225 lexpand();
1226 vrotb(3);
1227 lexpand();
1228 /* stack: L1 H1 L2 H2 */
1229 tmp = vtop[-1];
1230 vtop[-1] = vtop[-2];
1231 vtop[-2] = tmp;
1232 /* stack: L1 L2 H1 H2 */
1233 /* compare high */
1234 op1 = op;
1235 /* when values are equal, we need to compare low words. since
1236 the jump is inverted, we invert the test too. */
1237 if (op1 == TOK_LT)
1238 op1 = TOK_LE;
1239 else if (op1 == TOK_GT)
1240 op1 = TOK_GE;
1241 else if (op1 == TOK_ULT)
1242 op1 = TOK_ULE;
1243 else if (op1 == TOK_UGT)
1244 op1 = TOK_UGE;
1245 a = 0;
1246 b = 0;
1247 gen_op(op1);
1248 if (op1 != TOK_NE) {
1249 a = gtst(1, 0);
1251 if (op != TOK_EQ) {
1252 /* generate non equal test */
1253 /* XXX: NOT PORTABLE yet */
1254 if (a == 0) {
1255 b = gtst(0, 0);
1256 } else {
1257 #if defined(TCC_TARGET_I386)
1258 b = psym(0x850f, 0);
1259 #elif defined(TCC_TARGET_ARM)
1260 b = ind;
1261 o(0x1A000000 | encbranch(ind, 0, 1));
1262 #elif defined(TCC_TARGET_C67)
1263 error("not implemented");
1264 #else
1265 #error not supported
1266 #endif
1269 /* compare low. Always unsigned */
1270 op1 = op;
1271 if (op1 == TOK_LT)
1272 op1 = TOK_ULT;
1273 else if (op1 == TOK_LE)
1274 op1 = TOK_ULE;
1275 else if (op1 == TOK_GT)
1276 op1 = TOK_UGT;
1277 else if (op1 == TOK_GE)
1278 op1 = TOK_UGE;
1279 gen_op(op1);
1280 a = gtst(1, a);
1281 gsym(b);
1282 vseti(VT_JMPI, a);
1283 break;
1286 #endif
1288 /* handle integer constant optimizations and various machine
1289 independent opt */
1290 static void gen_opic(int op)
1292 int c1, c2, t1, t2, n;
1293 SValue *v1, *v2;
1294 long long l1, l2;
1295 typedef unsigned long long U;
1297 v1 = vtop - 1;
1298 v2 = vtop;
1299 t1 = v1->type.t & VT_BTYPE;
1300 t2 = v2->type.t & VT_BTYPE;
1302 if (t1 == VT_LLONG)
1303 l1 = v1->c.ll;
1304 else if (v1->type.t & VT_UNSIGNED)
1305 l1 = v1->c.ui;
1306 else
1307 l1 = v1->c.i;
1309 if (t2 == VT_LLONG)
1310 l2 = v2->c.ll;
1311 else if (v2->type.t & VT_UNSIGNED)
1312 l2 = v2->c.ui;
1313 else
1314 l2 = v2->c.i;
1316 /* currently, we cannot do computations with forward symbols */
1317 c1 = (v1->r & (VT_VALMASK | VT_LVAL | VT_SYM)) == VT_CONST;
1318 c2 = (v2->r & (VT_VALMASK | VT_LVAL | VT_SYM)) == VT_CONST;
1319 if (c1 && c2) {
1320 switch(op) {
1321 case '+': l1 += l2; break;
1322 case '-': l1 -= l2; break;
1323 case '&': l1 &= l2; break;
1324 case '^': l1 ^= l2; break;
1325 case '|': l1 |= l2; break;
1326 case '*': l1 *= l2; break;
1328 case TOK_PDIV:
1329 case '/':
1330 case '%':
1331 case TOK_UDIV:
1332 case TOK_UMOD:
1333 /* if division by zero, generate explicit division */
1334 if (l2 == 0) {
1335 if (const_wanted)
1336 error("division by zero in constant");
1337 goto general_case;
1339 switch(op) {
1340 default: l1 /= l2; break;
1341 case '%': l1 %= l2; break;
1342 case TOK_UDIV: l1 = (U)l1 / l2; break;
1343 case TOK_UMOD: l1 = (U)l1 % l2; break;
1345 break;
1346 case TOK_SHL: l1 <<= l2; break;
1347 case TOK_SHR: l1 = (U)l1 >> l2; break;
1348 case TOK_SAR: l1 >>= l2; break;
1349 /* tests */
1350 case TOK_ULT: l1 = (U)l1 < (U)l2; break;
1351 case TOK_UGE: l1 = (U)l1 >= (U)l2; break;
1352 case TOK_EQ: l1 = l1 == l2; break;
1353 case TOK_NE: l1 = l1 != l2; break;
1354 case TOK_ULE: l1 = (U)l1 <= (U)l2; break;
1355 case TOK_UGT: l1 = (U)l1 > (U)l2; break;
1356 case TOK_LT: l1 = l1 < l2; break;
1357 case TOK_GE: l1 = l1 >= l2; break;
1358 case TOK_LE: l1 = l1 <= l2; break;
1359 case TOK_GT: l1 = l1 > l2; break;
1360 /* logical */
1361 case TOK_LAND: l1 = l1 && l2; break;
1362 case TOK_LOR: l1 = l1 || l2; break;
1363 default:
1364 goto general_case;
1366 v1->c.ll = l1;
1367 vtop--;
1368 } else {
1369 /* if commutative ops, put c2 as constant */
1370 if (c1 && (op == '+' || op == '&' || op == '^' ||
1371 op == '|' || op == '*')) {
1372 vswap();
1373 c2 = c1; //c = c1, c1 = c2, c2 = c;
1374 l2 = l1; //l = l1, l1 = l2, l2 = l;
1376 /* Filter out NOP operations like x*1, x-0, x&-1... */
1377 if (c2 && (((op == '*' || op == '/' || op == TOK_UDIV ||
1378 op == TOK_PDIV) &&
1379 l2 == 1) ||
1380 ((op == '+' || op == '-' || op == '|' || op == '^' ||
1381 op == TOK_SHL || op == TOK_SHR || op == TOK_SAR) &&
1382 l2 == 0) ||
1383 (op == '&' &&
1384 l2 == -1))) {
1385 /* nothing to do */
1386 vtop--;
1387 } else if (c2 && (op == '*' || op == TOK_PDIV || op == TOK_UDIV)) {
1388 /* try to use shifts instead of muls or divs */
1389 if (l2 > 0 && (l2 & (l2 - 1)) == 0) {
1390 n = -1;
1391 while (l2) {
1392 l2 >>= 1;
1393 n++;
1395 vtop->c.ll = n;
1396 if (op == '*')
1397 op = TOK_SHL;
1398 else if (op == TOK_PDIV)
1399 op = TOK_SAR;
1400 else
1401 op = TOK_SHR;
1403 goto general_case;
1404 } else if (c2 && (op == '+' || op == '-') &&
1405 (((vtop[-1].r & (VT_VALMASK | VT_LVAL | VT_SYM)) == (VT_CONST | VT_SYM))
1406 || (vtop[-1].r & (VT_VALMASK | VT_LVAL)) == VT_LOCAL)) {
1407 /* symbol + constant case */
1408 if (op == '-')
1409 l2 = -l2;
1410 vtop--;
1411 vtop->c.ll += l2;
1412 } else {
1413 general_case:
1414 if (!nocode_wanted) {
1415 /* call low level op generator */
1416 if (t1 == VT_LLONG || t2 == VT_LLONG)
1417 gen_opl(op);
1418 else
1419 gen_opi(op);
1420 } else {
1421 vtop--;
1427 /* generate a floating point operation with constant propagation */
1428 static void gen_opif(int op)
1430 int c1, c2;
1431 SValue *v1, *v2;
1432 long double f1, f2;
1434 v1 = vtop - 1;
1435 v2 = vtop;
1436 /* currently, we cannot do computations with forward symbols */
1437 c1 = (v1->r & (VT_VALMASK | VT_LVAL | VT_SYM)) == VT_CONST;
1438 c2 = (v2->r & (VT_VALMASK | VT_LVAL | VT_SYM)) == VT_CONST;
1439 if (c1 && c2) {
1440 if (v1->type.t == VT_FLOAT) {
1441 f1 = v1->c.f;
1442 f2 = v2->c.f;
1443 } else if (v1->type.t == VT_DOUBLE) {
1444 f1 = v1->c.d;
1445 f2 = v2->c.d;
1446 } else {
1447 f1 = v1->c.ld;
1448 f2 = v2->c.ld;
1451 /* NOTE: we only do constant propagation if finite number (not
1452 NaN or infinity) (ANSI spec) */
1453 if (!ieee_finite(f1) || !ieee_finite(f2))
1454 goto general_case;
1456 switch(op) {
1457 case '+': f1 += f2; break;
1458 case '-': f1 -= f2; break;
1459 case '*': f1 *= f2; break;
1460 case '/':
1461 if (f2 == 0.0) {
1462 if (const_wanted)
1463 error("division by zero in constant");
1464 goto general_case;
1466 f1 /= f2;
1467 break;
1468 /* XXX: also handles tests ? */
1469 default:
1470 goto general_case;
1472 /* XXX: overflow test ? */
1473 if (v1->type.t == VT_FLOAT) {
1474 v1->c.f = f1;
1475 } else if (v1->type.t == VT_DOUBLE) {
1476 v1->c.d = f1;
1477 } else {
1478 v1->c.ld = f1;
1480 vtop--;
1481 } else {
1482 general_case:
1483 if (!nocode_wanted) {
1484 gen_opf(op);
1485 } else {
1486 vtop--;
1491 static int pointed_size(CType *type)
1493 int align;
1494 return type_size(pointed_type(type), &align);
1497 static void vla_runtime_pointed_size(CType *type)
1499 int align;
1500 vla_runtime_type_size(pointed_type(type), &align);
1503 static inline int is_null_pointer(SValue *p)
1505 if ((p->r & (VT_VALMASK | VT_LVAL | VT_SYM)) != VT_CONST)
1506 return 0;
1507 return ((p->type.t & VT_BTYPE) == VT_INT && p->c.i == 0) ||
1508 ((p->type.t & VT_BTYPE) == VT_LLONG && p->c.ll == 0);
1511 static inline int is_integer_btype(int bt)
1513 return (bt == VT_BYTE || bt == VT_SHORT ||
1514 bt == VT_INT || bt == VT_LLONG);
1517 /* check types for comparison or substraction of pointers */
1518 static void check_comparison_pointer_types(SValue *p1, SValue *p2, int op)
1520 CType *type1, *type2, tmp_type1, tmp_type2;
1521 int bt1, bt2;
1523 /* null pointers are accepted for all comparisons as gcc */
1524 if (is_null_pointer(p1) || is_null_pointer(p2))
1525 return;
1526 type1 = &p1->type;
1527 type2 = &p2->type;
1528 bt1 = type1->t & VT_BTYPE;
1529 bt2 = type2->t & VT_BTYPE;
1530 /* accept comparison between pointer and integer with a warning */
1531 if ((is_integer_btype(bt1) || is_integer_btype(bt2)) && op != '-') {
1532 if (op != TOK_LOR && op != TOK_LAND )
1533 warning("comparison between pointer and integer");
1534 return;
1537 /* both must be pointers or implicit function pointers */
1538 if (bt1 == VT_PTR) {
1539 type1 = pointed_type(type1);
1540 } else if (bt1 != VT_FUNC)
1541 goto invalid_operands;
1543 if (bt2 == VT_PTR) {
1544 type2 = pointed_type(type2);
1545 } else if (bt2 != VT_FUNC) {
1546 invalid_operands:
1547 error("invalid operands to binary %s", get_tok_str(op, NULL));
1549 if ((type1->t & VT_BTYPE) == VT_VOID ||
1550 (type2->t & VT_BTYPE) == VT_VOID)
1551 return;
1552 tmp_type1 = *type1;
1553 tmp_type2 = *type2;
1554 tmp_type1.t &= ~(VT_UNSIGNED | VT_CONSTANT | VT_VOLATILE);
1555 tmp_type2.t &= ~(VT_UNSIGNED | VT_CONSTANT | VT_VOLATILE);
1556 if (!is_compatible_types(&tmp_type1, &tmp_type2)) {
1557 /* gcc-like error if '-' is used */
1558 if (op == '-')
1559 goto invalid_operands;
1560 else
1561 warning("comparison of distinct pointer types lacks a cast");
1565 /* generic gen_op: handles types problems */
1566 ST_FUNC void gen_op(int op)
1568 int u, t1, t2, bt1, bt2, t;
1569 CType type1;
1571 t1 = vtop[-1].type.t;
1572 t2 = vtop[0].type.t;
1573 bt1 = t1 & VT_BTYPE;
1574 bt2 = t2 & VT_BTYPE;
1576 if (bt1 == VT_PTR || bt2 == VT_PTR) {
1577 /* at least one operand is a pointer */
1578 /* relationnal op: must be both pointers */
1579 if (op >= TOK_ULT && op <= TOK_LOR) {
1580 check_comparison_pointer_types(vtop - 1, vtop, op);
1581 /* pointers are handled are unsigned */
1582 #ifdef TCC_TARGET_X86_64
1583 t = VT_LLONG | VT_UNSIGNED;
1584 #else
1585 t = VT_INT | VT_UNSIGNED;
1586 #endif
1587 goto std_op;
1589 /* if both pointers, then it must be the '-' op */
1590 if (bt1 == VT_PTR && bt2 == VT_PTR) {
1591 if (op != '-')
1592 error("cannot use pointers here");
1593 check_comparison_pointer_types(vtop - 1, vtop, op);
1594 /* XXX: check that types are compatible */
1595 if (vtop[-1].type.t & VT_VLA) {
1596 vla_runtime_pointed_size(&vtop[-1].type);
1597 } else {
1598 vpushi(pointed_size(&vtop[-1].type));
1600 vrott(3);
1601 gen_opic(op);
1602 /* set to integer type */
1603 #ifdef TCC_TARGET_X86_64
1604 vtop->type.t = VT_LLONG;
1605 #else
1606 vtop->type.t = VT_INT;
1607 #endif
1608 vswap();
1609 gen_op(TOK_PDIV);
1610 } else {
1611 /* exactly one pointer : must be '+' or '-'. */
1612 if (op != '-' && op != '+')
1613 error("cannot use pointers here");
1614 /* Put pointer as first operand */
1615 if (bt2 == VT_PTR) {
1616 vswap();
1617 swap(&t1, &t2);
1619 type1 = vtop[-1].type;
1620 type1.t &= ~VT_ARRAY;
1621 if (vtop[-1].type.t & VT_VLA)
1622 vla_runtime_pointed_size(&vtop[-1].type);
1623 else {
1624 u = pointed_size(&vtop[-1].type);
1625 if (u < 0)
1626 error("unknown array element size");
1627 #ifdef TCC_TARGET_X86_64
1628 vpushll(u);
1629 #else
1630 /* XXX: cast to int ? (long long case) */
1631 vpushi(u);
1632 #endif
1634 gen_op('*');
1635 #ifdef CONFIG_TCC_BCHECK
1636 /* if evaluating constant expression, no code should be
1637 generated, so no bound check */
1638 if (tcc_state->do_bounds_check && !const_wanted) {
1639 /* if bounded pointers, we generate a special code to
1640 test bounds */
1641 if (op == '-') {
1642 vpushi(0);
1643 vswap();
1644 gen_op('-');
1646 gen_bounded_ptr_add();
1647 } else
1648 #endif
1650 gen_opic(op);
1652 /* put again type if gen_opic() swaped operands */
1653 vtop->type = type1;
1655 } else if (is_float(bt1) || is_float(bt2)) {
1656 /* compute bigger type and do implicit casts */
1657 if (bt1 == VT_LDOUBLE || bt2 == VT_LDOUBLE) {
1658 t = VT_LDOUBLE;
1659 } else if (bt1 == VT_DOUBLE || bt2 == VT_DOUBLE) {
1660 t = VT_DOUBLE;
1661 } else {
1662 t = VT_FLOAT;
1664 /* floats can only be used for a few operations */
1665 if (op != '+' && op != '-' && op != '*' && op != '/' &&
1666 (op < TOK_ULT || op > TOK_GT))
1667 error("invalid operands for binary operation");
1668 goto std_op;
1669 } else if (bt1 == VT_LLONG || bt2 == VT_LLONG) {
1670 /* cast to biggest op */
1671 t = VT_LLONG;
1672 /* convert to unsigned if it does not fit in a long long */
1673 if ((t1 & (VT_BTYPE | VT_UNSIGNED)) == (VT_LLONG | VT_UNSIGNED) ||
1674 (t2 & (VT_BTYPE | VT_UNSIGNED)) == (VT_LLONG | VT_UNSIGNED))
1675 t |= VT_UNSIGNED;
1676 goto std_op;
1677 } else {
1678 /* integer operations */
1679 t = VT_INT;
1680 /* convert to unsigned if it does not fit in an integer */
1681 if ((t1 & (VT_BTYPE | VT_UNSIGNED)) == (VT_INT | VT_UNSIGNED) ||
1682 (t2 & (VT_BTYPE | VT_UNSIGNED)) == (VT_INT | VT_UNSIGNED))
1683 t |= VT_UNSIGNED;
1684 std_op:
1685 /* XXX: currently, some unsigned operations are explicit, so
1686 we modify them here */
1687 if (t & VT_UNSIGNED) {
1688 if (op == TOK_SAR)
1689 op = TOK_SHR;
1690 else if (op == '/')
1691 op = TOK_UDIV;
1692 else if (op == '%')
1693 op = TOK_UMOD;
1694 else if (op == TOK_LT)
1695 op = TOK_ULT;
1696 else if (op == TOK_GT)
1697 op = TOK_UGT;
1698 else if (op == TOK_LE)
1699 op = TOK_ULE;
1700 else if (op == TOK_GE)
1701 op = TOK_UGE;
1703 vswap();
1704 type1.t = t;
1705 gen_cast(&type1);
1706 vswap();
1707 /* special case for shifts and long long: we keep the shift as
1708 an integer */
1709 if (op == TOK_SHR || op == TOK_SAR || op == TOK_SHL)
1710 type1.t = VT_INT;
1711 gen_cast(&type1);
1712 if (is_float(t))
1713 gen_opif(op);
1714 else
1715 gen_opic(op);
1716 if (op >= TOK_ULT && op <= TOK_GT) {
1717 /* relationnal op: the result is an int */
1718 vtop->type.t = VT_INT;
1719 } else {
1720 vtop->type.t = t;
1725 #ifndef TCC_TARGET_ARM
1726 /* generic itof for unsigned long long case */
1727 static void gen_cvt_itof1(int t)
1729 if ((vtop->type.t & (VT_BTYPE | VT_UNSIGNED)) ==
1730 (VT_LLONG | VT_UNSIGNED)) {
1732 if (t == VT_FLOAT)
1733 vpush_global_sym(&func_old_type, TOK___floatundisf);
1734 #if LDOUBLE_SIZE != 8
1735 else if (t == VT_LDOUBLE)
1736 vpush_global_sym(&func_old_type, TOK___floatundixf);
1737 #endif
1738 else
1739 vpush_global_sym(&func_old_type, TOK___floatundidf);
1740 vrott(2);
1741 gfunc_call(1);
1742 vpushi(0);
1743 vtop->r = reg_fret(t);
1744 } else {
1745 gen_cvt_itof(t);
1748 #endif
1750 /* generic ftoi for unsigned long long case */
1751 static void gen_cvt_ftoi1(int t)
1753 int st;
1755 if (t == (VT_LLONG | VT_UNSIGNED)) {
1756 /* not handled natively */
1757 st = vtop->type.t & VT_BTYPE;
1758 if (st == VT_FLOAT)
1759 vpush_global_sym(&func_old_type, TOK___fixunssfdi);
1760 #if LDOUBLE_SIZE != 8
1761 else if (st == VT_LDOUBLE)
1762 vpush_global_sym(&func_old_type, TOK___fixunsxfdi);
1763 #endif
1764 else
1765 vpush_global_sym(&func_old_type, TOK___fixunsdfdi);
1766 vrott(2);
1767 gfunc_call(1);
1768 vpushi(0);
1769 vtop->r = REG_IRET;
1770 vtop->r2 = REG_LRET;
1771 } else {
1772 gen_cvt_ftoi(t);
1776 /* force char or short cast */
1777 static void force_charshort_cast(int t)
1779 int bits, dbt;
1780 dbt = t & VT_BTYPE;
1781 /* XXX: add optimization if lvalue : just change type and offset */
1782 if (dbt == VT_BYTE)
1783 bits = 8;
1784 else
1785 bits = 16;
1786 if (t & VT_UNSIGNED) {
1787 vpushi((1 << bits) - 1);
1788 gen_op('&');
1789 } else {
1790 bits = 32 - bits;
1791 vpushi(bits);
1792 gen_op(TOK_SHL);
1793 /* result must be signed or the SAR is converted to an SHL
1794 This was not the case when "t" was a signed short
1795 and the last value on the stack was an unsigned int */
1796 vtop->type.t &= ~VT_UNSIGNED;
1797 vpushi(bits);
1798 gen_op(TOK_SAR);
1802 /* cast 'vtop' to 'type'. Casting to bitfields is forbidden. */
1803 static void gen_cast(CType *type)
1805 int sbt, dbt, sf, df, c, p;
1807 /* special delayed cast for char/short */
1808 /* XXX: in some cases (multiple cascaded casts), it may still
1809 be incorrect */
1810 if (vtop->r & VT_MUSTCAST) {
1811 vtop->r &= ~VT_MUSTCAST;
1812 force_charshort_cast(vtop->type.t);
1815 /* bitfields first get cast to ints */
1816 if (vtop->type.t & VT_BITFIELD) {
1817 gv(RC_INT);
1820 dbt = type->t & (VT_BTYPE | VT_UNSIGNED);
1821 sbt = vtop->type.t & (VT_BTYPE | VT_UNSIGNED);
1823 if (sbt != dbt) {
1824 sf = is_float(sbt);
1825 df = is_float(dbt);
1826 c = (vtop->r & (VT_VALMASK | VT_LVAL | VT_SYM)) == VT_CONST;
1827 p = (vtop->r & (VT_VALMASK | VT_LVAL | VT_SYM)) == (VT_CONST | VT_SYM);
1828 if (c) {
1829 /* constant case: we can do it now */
1830 /* XXX: in ISOC, cannot do it if error in convert */
1831 if (sbt == VT_FLOAT)
1832 vtop->c.ld = vtop->c.f;
1833 else if (sbt == VT_DOUBLE)
1834 vtop->c.ld = vtop->c.d;
1836 if (df) {
1837 if ((sbt & VT_BTYPE) == VT_LLONG) {
1838 if (sbt & VT_UNSIGNED)
1839 vtop->c.ld = vtop->c.ull;
1840 else
1841 vtop->c.ld = vtop->c.ll;
1842 } else if(!sf) {
1843 if (sbt & VT_UNSIGNED)
1844 vtop->c.ld = vtop->c.ui;
1845 else
1846 vtop->c.ld = vtop->c.i;
1849 if (dbt == VT_FLOAT)
1850 vtop->c.f = (float)vtop->c.ld;
1851 else if (dbt == VT_DOUBLE)
1852 vtop->c.d = (double)vtop->c.ld;
1853 } else if (sf && dbt == (VT_LLONG|VT_UNSIGNED)) {
1854 vtop->c.ull = (unsigned long long)vtop->c.ld;
1855 } else if (sf && dbt == VT_BOOL) {
1856 vtop->c.i = (vtop->c.ld != 0);
1857 } else {
1858 if(sf)
1859 vtop->c.ll = (long long)vtop->c.ld;
1860 else if (sbt == (VT_LLONG|VT_UNSIGNED))
1861 vtop->c.ll = vtop->c.ull;
1862 else if (sbt & VT_UNSIGNED)
1863 vtop->c.ll = vtop->c.ui;
1864 #ifdef TCC_TARGET_X86_64
1865 else if (sbt == VT_PTR)
1867 #endif
1868 else if (sbt != VT_LLONG)
1869 vtop->c.ll = vtop->c.i;
1871 if (dbt == (VT_LLONG|VT_UNSIGNED))
1872 vtop->c.ull = vtop->c.ll;
1873 else if (dbt == VT_BOOL)
1874 vtop->c.i = (vtop->c.ll != 0);
1875 else if (dbt != VT_LLONG) {
1876 int s = 0;
1877 if ((dbt & VT_BTYPE) == VT_BYTE)
1878 s = 24;
1879 else if ((dbt & VT_BTYPE) == VT_SHORT)
1880 s = 16;
1882 if(dbt & VT_UNSIGNED)
1883 vtop->c.ui = ((unsigned int)vtop->c.ll << s) >> s;
1884 else
1885 vtop->c.i = ((int)vtop->c.ll << s) >> s;
1888 } else if (p && dbt == VT_BOOL) {
1889 vtop->r = VT_CONST;
1890 vtop->c.i = 1;
1891 } else if (!nocode_wanted) {
1892 /* non constant case: generate code */
1893 if (sf && df) {
1894 /* convert from fp to fp */
1895 gen_cvt_ftof(dbt);
1896 } else if (df) {
1897 /* convert int to fp */
1898 gen_cvt_itof1(dbt);
1899 } else if (sf) {
1900 /* convert fp to int */
1901 if (dbt == VT_BOOL) {
1902 vpushi(0);
1903 gen_op(TOK_NE);
1904 } else {
1905 /* we handle char/short/etc... with generic code */
1906 if (dbt != (VT_INT | VT_UNSIGNED) &&
1907 dbt != (VT_LLONG | VT_UNSIGNED) &&
1908 dbt != VT_LLONG)
1909 dbt = VT_INT;
1910 gen_cvt_ftoi1(dbt);
1911 if (dbt == VT_INT && (type->t & (VT_BTYPE | VT_UNSIGNED)) != dbt) {
1912 /* additional cast for char/short... */
1913 vtop->type.t = dbt;
1914 gen_cast(type);
1917 #ifndef TCC_TARGET_X86_64
1918 } else if ((dbt & VT_BTYPE) == VT_LLONG) {
1919 if ((sbt & VT_BTYPE) != VT_LLONG) {
1920 /* scalar to long long */
1921 /* machine independent conversion */
1922 gv(RC_INT);
1923 /* generate high word */
1924 if (sbt == (VT_INT | VT_UNSIGNED)) {
1925 vpushi(0);
1926 gv(RC_INT);
1927 } else {
1928 if (sbt == VT_PTR) {
1929 /* cast from pointer to int before we apply
1930 shift operation, which pointers don't support*/
1931 gen_cast(&int_type);
1933 gv_dup();
1934 vpushi(31);
1935 gen_op(TOK_SAR);
1937 /* patch second register */
1938 vtop[-1].r2 = vtop->r;
1939 vpop();
1941 #else
1942 } else if ((dbt & VT_BTYPE) == VT_LLONG ||
1943 (dbt & VT_BTYPE) == VT_PTR ||
1944 (dbt & VT_BTYPE) == VT_FUNC) {
1945 if ((sbt & VT_BTYPE) != VT_LLONG &&
1946 (sbt & VT_BTYPE) != VT_PTR &&
1947 (sbt & VT_BTYPE) != VT_FUNC) {
1948 /* need to convert from 32bit to 64bit */
1949 int r = gv(RC_INT);
1950 if (sbt != (VT_INT | VT_UNSIGNED)) {
1951 /* x86_64 specific: movslq */
1952 o(0x6348);
1953 o(0xc0 + (REG_VALUE(r) << 3) + REG_VALUE(r));
1956 #endif
1957 } else if (dbt == VT_BOOL) {
1958 /* scalar to bool */
1959 vpushi(0);
1960 gen_op(TOK_NE);
1961 } else if ((dbt & VT_BTYPE) == VT_BYTE ||
1962 (dbt & VT_BTYPE) == VT_SHORT) {
1963 if (sbt == VT_PTR) {
1964 vtop->type.t = VT_INT;
1965 warning("nonportable conversion from pointer to char/short");
1967 force_charshort_cast(dbt);
1968 } else if ((dbt & VT_BTYPE) == VT_INT) {
1969 /* scalar to int */
1970 if (sbt == VT_LLONG) {
1971 /* from long long: just take low order word */
1972 lexpand();
1973 vpop();
1975 /* if lvalue and single word type, nothing to do because
1976 the lvalue already contains the real type size (see
1977 VT_LVAL_xxx constants) */
1980 } else if ((dbt & VT_BTYPE) == VT_PTR && !(vtop->r & VT_LVAL)) {
1981 /* if we are casting between pointer types,
1982 we must update the VT_LVAL_xxx size */
1983 vtop->r = (vtop->r & ~VT_LVAL_TYPE)
1984 | (lvalue_type(type->ref->type.t) & VT_LVAL_TYPE);
1986 vtop->type = *type;
1989 /* return type size as known at compile time. Put alignment at 'a' */
1990 ST_FUNC int type_size(CType *type, int *a)
1992 Sym *s;
1993 int bt;
1995 bt = type->t & VT_BTYPE;
1996 if (bt == VT_STRUCT) {
1997 /* struct/union */
1998 s = type->ref;
1999 *a = s->r;
2000 return s->c;
2001 } else if (bt == VT_PTR) {
2002 if (type->t & VT_ARRAY) {
2003 int ts;
2005 s = type->ref;
2006 ts = type_size(&s->type, a);
2008 if (ts < 0 && s->c < 0)
2009 ts = -ts;
2011 return ts * s->c;
2012 } else {
2013 *a = PTR_SIZE;
2014 return PTR_SIZE;
2016 } else if (bt == VT_LDOUBLE) {
2017 *a = LDOUBLE_ALIGN;
2018 return LDOUBLE_SIZE;
2019 } else if (bt == VT_DOUBLE || bt == VT_LLONG) {
2020 #ifdef TCC_TARGET_I386
2021 #ifdef TCC_TARGET_PE
2022 *a = 8;
2023 #else
2024 *a = 4;
2025 #endif
2026 #elif defined(TCC_TARGET_ARM)
2027 #ifdef TCC_ARM_EABI
2028 *a = 8;
2029 #else
2030 *a = 4;
2031 #endif
2032 #else
2033 *a = 8;
2034 #endif
2035 return 8;
2036 } else if (bt == VT_INT || bt == VT_ENUM || bt == VT_FLOAT) {
2037 *a = 4;
2038 return 4;
2039 } else if (bt == VT_SHORT) {
2040 *a = 2;
2041 return 2;
2042 } else {
2043 /* char, void, function, _Bool */
2044 *a = 1;
2045 return 1;
2049 /* push type size as known at runtime time on top of value stack. Put
2050 alignment at 'a' */
2051 ST_FUNC void vla_runtime_type_size(CType *type, int *a)
2053 if (type->t & VT_VLA) {
2054 vset(&int_type, VT_LOCAL|VT_LVAL, type->ref->c);
2055 } else {
2056 vpushi(type_size(type, a));
2060 /* return the pointed type of t */
2061 static inline CType *pointed_type(CType *type)
2063 return &type->ref->type;
2066 /* modify type so that its it is a pointer to type. */
2067 ST_FUNC void mk_pointer(CType *type)
2069 Sym *s;
2070 s = sym_push(SYM_FIELD, type, 0, -1);
2071 type->t = VT_PTR | (type->t & ~VT_TYPE);
2072 type->ref = s;
2075 /* compare function types. OLD functions match any new functions */
2076 static int is_compatible_func(CType *type1, CType *type2)
2078 Sym *s1, *s2;
2080 s1 = type1->ref;
2081 s2 = type2->ref;
2082 if (!is_compatible_types(&s1->type, &s2->type))
2083 return 0;
2084 /* check func_call */
2085 if (FUNC_CALL(s1->r) != FUNC_CALL(s2->r))
2086 return 0;
2087 /* XXX: not complete */
2088 if (s1->c == FUNC_OLD || s2->c == FUNC_OLD)
2089 return 1;
2090 if (s1->c != s2->c)
2091 return 0;
2092 while (s1 != NULL) {
2093 if (s2 == NULL)
2094 return 0;
2095 if (!is_compatible_parameter_types(&s1->type, &s2->type))
2096 return 0;
2097 s1 = s1->next;
2098 s2 = s2->next;
2100 if (s2)
2101 return 0;
2102 return 1;
2105 /* return true if type1 and type2 are the same. If unqualified is
2106 true, qualifiers on the types are ignored.
2108 - enums are not checked as gcc __builtin_types_compatible_p ()
2110 static int compare_types(CType *type1, CType *type2, int unqualified)
2112 int bt1, t1, t2;
2114 t1 = type1->t & VT_TYPE;
2115 t2 = type2->t & VT_TYPE;
2116 if (unqualified) {
2117 /* strip qualifiers before comparing */
2118 t1 &= ~(VT_CONSTANT | VT_VOLATILE);
2119 t2 &= ~(VT_CONSTANT | VT_VOLATILE);
2121 /* XXX: bitfields ? */
2122 if (t1 != t2)
2123 return 0;
2124 /* test more complicated cases */
2125 bt1 = t1 & VT_BTYPE;
2126 if (bt1 == VT_PTR) {
2127 type1 = pointed_type(type1);
2128 type2 = pointed_type(type2);
2129 return is_compatible_types(type1, type2);
2130 } else if (bt1 == VT_STRUCT) {
2131 return (type1->ref == type2->ref);
2132 } else if (bt1 == VT_FUNC) {
2133 return is_compatible_func(type1, type2);
2134 } else {
2135 return 1;
2139 /* return true if type1 and type2 are exactly the same (including
2140 qualifiers).
2142 static int is_compatible_types(CType *type1, CType *type2)
2144 return compare_types(type1,type2,0);
2147 /* return true if type1 and type2 are the same (ignoring qualifiers).
2149 static int is_compatible_parameter_types(CType *type1, CType *type2)
2151 return compare_types(type1,type2,1);
2154 /* print a type. If 'varstr' is not NULL, then the variable is also
2155 printed in the type */
2156 /* XXX: union */
2157 /* XXX: add array and function pointers */
2158 static void type_to_str(char *buf, int buf_size,
2159 CType *type, const char *varstr)
2161 int bt, v, t;
2162 Sym *s, *sa;
2163 char buf1[256];
2164 const char *tstr;
2166 t = type->t & VT_TYPE;
2167 bt = t & VT_BTYPE;
2168 buf[0] = '\0';
2169 if (t & VT_CONSTANT)
2170 pstrcat(buf, buf_size, "const ");
2171 if (t & VT_VOLATILE)
2172 pstrcat(buf, buf_size, "volatile ");
2173 if (t & VT_UNSIGNED)
2174 pstrcat(buf, buf_size, "unsigned ");
2175 switch(bt) {
2176 case VT_VOID:
2177 tstr = "void";
2178 goto add_tstr;
2179 case VT_BOOL:
2180 tstr = "_Bool";
2181 goto add_tstr;
2182 case VT_BYTE:
2183 tstr = "char";
2184 goto add_tstr;
2185 case VT_SHORT:
2186 tstr = "short";
2187 goto add_tstr;
2188 case VT_INT:
2189 tstr = "int";
2190 goto add_tstr;
2191 case VT_LONG:
2192 tstr = "long";
2193 goto add_tstr;
2194 case VT_LLONG:
2195 tstr = "long long";
2196 goto add_tstr;
2197 case VT_FLOAT:
2198 tstr = "float";
2199 goto add_tstr;
2200 case VT_DOUBLE:
2201 tstr = "double";
2202 goto add_tstr;
2203 case VT_LDOUBLE:
2204 tstr = "long double";
2205 add_tstr:
2206 pstrcat(buf, buf_size, tstr);
2207 break;
2208 case VT_ENUM:
2209 case VT_STRUCT:
2210 if (bt == VT_STRUCT)
2211 tstr = "struct ";
2212 else
2213 tstr = "enum ";
2214 pstrcat(buf, buf_size, tstr);
2215 v = type->ref->v & ~SYM_STRUCT;
2216 if (v >= SYM_FIRST_ANOM)
2217 pstrcat(buf, buf_size, "<anonymous>");
2218 else
2219 pstrcat(buf, buf_size, get_tok_str(v, NULL));
2220 break;
2221 case VT_FUNC:
2222 s = type->ref;
2223 type_to_str(buf, buf_size, &s->type, varstr);
2224 pstrcat(buf, buf_size, "(");
2225 sa = s->next;
2226 while (sa != NULL) {
2227 type_to_str(buf1, sizeof(buf1), &sa->type, NULL);
2228 pstrcat(buf, buf_size, buf1);
2229 sa = sa->next;
2230 if (sa)
2231 pstrcat(buf, buf_size, ", ");
2233 pstrcat(buf, buf_size, ")");
2234 goto no_var;
2235 case VT_PTR:
2236 s = type->ref;
2237 pstrcpy(buf1, sizeof(buf1), "*");
2238 if (varstr)
2239 pstrcat(buf1, sizeof(buf1), varstr);
2240 type_to_str(buf, buf_size, &s->type, buf1);
2241 goto no_var;
2243 if (varstr) {
2244 pstrcat(buf, buf_size, " ");
2245 pstrcat(buf, buf_size, varstr);
2247 no_var: ;
2250 /* verify type compatibility to store vtop in 'dt' type, and generate
2251 casts if needed. */
2252 static void gen_assign_cast(CType *dt)
2254 CType *st, *type1, *type2, tmp_type1, tmp_type2;
2255 char buf1[256], buf2[256];
2256 int dbt, sbt;
2258 st = &vtop->type; /* source type */
2259 dbt = dt->t & VT_BTYPE;
2260 sbt = st->t & VT_BTYPE;
2261 if (dt->t & VT_CONSTANT)
2262 warning("assignment of read-only location");
2263 switch(dbt) {
2264 case VT_PTR:
2265 /* special cases for pointers */
2266 /* '0' can also be a pointer */
2267 if (is_null_pointer(vtop))
2268 goto type_ok;
2269 /* accept implicit pointer to integer cast with warning */
2270 if (is_integer_btype(sbt)) {
2271 warning("assignment makes pointer from integer without a cast");
2272 goto type_ok;
2274 type1 = pointed_type(dt);
2275 /* a function is implicitely a function pointer */
2276 if (sbt == VT_FUNC) {
2277 if ((type1->t & VT_BTYPE) != VT_VOID &&
2278 !is_compatible_types(pointed_type(dt), st))
2279 warning("assignment from incompatible pointer type");
2280 goto type_ok;
2282 if (sbt != VT_PTR)
2283 goto error;
2284 type2 = pointed_type(st);
2285 if ((type1->t & VT_BTYPE) == VT_VOID ||
2286 (type2->t & VT_BTYPE) == VT_VOID) {
2287 /* void * can match anything */
2288 } else {
2289 /* exact type match, except for unsigned */
2290 tmp_type1 = *type1;
2291 tmp_type2 = *type2;
2292 tmp_type1.t &= ~(VT_UNSIGNED | VT_CONSTANT | VT_VOLATILE);
2293 tmp_type2.t &= ~(VT_UNSIGNED | VT_CONSTANT | VT_VOLATILE);
2294 if (!is_compatible_types(&tmp_type1, &tmp_type2))
2295 warning("assignment from incompatible pointer type");
2297 /* check const and volatile */
2298 if ((!(type1->t & VT_CONSTANT) && (type2->t & VT_CONSTANT)) ||
2299 (!(type1->t & VT_VOLATILE) && (type2->t & VT_VOLATILE)))
2300 warning("assignment discards qualifiers from pointer target type");
2301 break;
2302 case VT_BYTE:
2303 case VT_SHORT:
2304 case VT_INT:
2305 case VT_LLONG:
2306 if (sbt == VT_PTR || sbt == VT_FUNC) {
2307 warning("assignment makes integer from pointer without a cast");
2309 /* XXX: more tests */
2310 break;
2311 case VT_STRUCT:
2312 tmp_type1 = *dt;
2313 tmp_type2 = *st;
2314 tmp_type1.t &= ~(VT_CONSTANT | VT_VOLATILE);
2315 tmp_type2.t &= ~(VT_CONSTANT | VT_VOLATILE);
2316 if (!is_compatible_types(&tmp_type1, &tmp_type2)) {
2317 error:
2318 type_to_str(buf1, sizeof(buf1), st, NULL);
2319 type_to_str(buf2, sizeof(buf2), dt, NULL);
2320 error("cannot cast '%s' to '%s'", buf1, buf2);
2322 break;
2324 type_ok:
2325 gen_cast(dt);
2328 /* store vtop in lvalue pushed on stack */
2329 ST_FUNC void vstore(void)
2331 int sbt, dbt, ft, r, t, size, align, bit_size, bit_pos, rc, delayed_cast;
2333 ft = vtop[-1].type.t;
2334 sbt = vtop->type.t & VT_BTYPE;
2335 dbt = ft & VT_BTYPE;
2336 if (((sbt == VT_INT || sbt == VT_SHORT) && dbt == VT_BYTE) ||
2337 (sbt == VT_INT && dbt == VT_SHORT)) {
2338 /* optimize char/short casts */
2339 delayed_cast = VT_MUSTCAST;
2340 vtop->type.t = ft & (VT_TYPE & ~(VT_BITFIELD | (-1 << VT_STRUCT_SHIFT)));
2341 /* XXX: factorize */
2342 if (ft & VT_CONSTANT)
2343 warning("assignment of read-only location");
2344 } else {
2345 delayed_cast = 0;
2346 if (!(ft & VT_BITFIELD))
2347 gen_assign_cast(&vtop[-1].type);
2350 if (sbt == VT_STRUCT) {
2351 /* if structure, only generate pointer */
2352 /* structure assignment : generate memcpy */
2353 /* XXX: optimize if small size */
2354 if (!nocode_wanted) {
2355 size = type_size(&vtop->type, &align);
2357 /* destination */
2358 vswap();
2359 vtop->type.t = VT_PTR;
2360 gaddrof();
2362 /* address of memcpy() */
2363 #ifdef TCC_ARM_EABI
2364 if(!(align & 7))
2365 vpush_global_sym(&func_old_type, TOK_memcpy8);
2366 else if(!(align & 3))
2367 vpush_global_sym(&func_old_type, TOK_memcpy4);
2368 else
2369 #endif
2370 vpush_global_sym(&func_old_type, TOK_memcpy);
2372 vswap();
2373 /* source */
2374 vpushv(vtop - 2);
2375 vtop->type.t = VT_PTR;
2376 gaddrof();
2377 /* type size */
2378 vpushi(size);
2379 gfunc_call(3);
2380 } else {
2381 vswap();
2382 vpop();
2384 /* leave source on stack */
2385 } else if (ft & VT_BITFIELD) {
2386 /* bitfield store handling */
2387 bit_pos = (ft >> VT_STRUCT_SHIFT) & 0x3f;
2388 bit_size = (ft >> (VT_STRUCT_SHIFT + 6)) & 0x3f;
2389 /* remove bit field info to avoid loops */
2390 vtop[-1].type.t = ft & ~(VT_BITFIELD | (-1 << VT_STRUCT_SHIFT));
2392 /* duplicate source into other register */
2393 gv_dup();
2394 vswap();
2395 vrott(3);
2397 if((ft & VT_BTYPE) == VT_BOOL) {
2398 gen_cast(&vtop[-1].type);
2399 vtop[-1].type.t = (vtop[-1].type.t & ~VT_BTYPE) | (VT_BYTE | VT_UNSIGNED);
2402 /* duplicate destination */
2403 vdup();
2404 vtop[-1] = vtop[-2];
2406 /* mask and shift source */
2407 if((ft & VT_BTYPE) != VT_BOOL) {
2408 if((ft & VT_BTYPE) == VT_LLONG) {
2409 vpushll((1ULL << bit_size) - 1ULL);
2410 } else {
2411 vpushi((1 << bit_size) - 1);
2413 gen_op('&');
2415 vpushi(bit_pos);
2416 gen_op(TOK_SHL);
2417 /* load destination, mask and or with source */
2418 vswap();
2419 if((ft & VT_BTYPE) == VT_LLONG) {
2420 vpushll(~(((1ULL << bit_size) - 1ULL) << bit_pos));
2421 } else {
2422 vpushi(~(((1 << bit_size) - 1) << bit_pos));
2424 gen_op('&');
2425 gen_op('|');
2426 /* store result */
2427 vstore();
2429 /* pop off shifted source from "duplicate source..." above */
2430 vpop();
2432 } else {
2433 #ifdef CONFIG_TCC_BCHECK
2434 /* bound check case */
2435 if (vtop[-1].r & VT_MUSTBOUND) {
2436 vswap();
2437 gbound();
2438 vswap();
2440 #endif
2441 if (!nocode_wanted) {
2442 rc = RC_INT;
2443 if (is_float(ft)) {
2444 rc = RC_FLOAT;
2445 #ifdef TCC_TARGET_X86_64
2446 if ((ft & VT_BTYPE) == VT_LDOUBLE) {
2447 rc = RC_ST0;
2449 #endif
2451 r = gv(rc); /* generate value */
2452 /* if lvalue was saved on stack, must read it */
2453 if ((vtop[-1].r & VT_VALMASK) == VT_LLOCAL) {
2454 SValue sv;
2455 t = get_reg(RC_INT);
2456 #ifdef TCC_TARGET_X86_64
2457 sv.type.t = VT_PTR;
2458 #else
2459 sv.type.t = VT_INT;
2460 #endif
2461 sv.r = VT_LOCAL | VT_LVAL;
2462 sv.c.ul = vtop[-1].c.ul;
2463 load(t, &sv);
2464 vtop[-1].r = t | VT_LVAL;
2466 store(r, vtop - 1);
2467 #ifndef TCC_TARGET_X86_64
2468 /* two word case handling : store second register at word + 4 */
2469 if ((ft & VT_BTYPE) == VT_LLONG) {
2470 vswap();
2471 /* convert to int to increment easily */
2472 vtop->type.t = VT_INT;
2473 gaddrof();
2474 vpushi(4);
2475 gen_op('+');
2476 vtop->r |= VT_LVAL;
2477 vswap();
2478 /* XXX: it works because r2 is spilled last ! */
2479 store(vtop->r2, vtop - 1);
2481 #endif
2483 vswap();
2484 vtop--; /* NOT vpop() because on x86 it would flush the fp stack */
2485 vtop->r |= delayed_cast;
2489 /* post defines POST/PRE add. c is the token ++ or -- */
2490 ST_FUNC void inc(int post, int c)
2492 test_lvalue();
2493 vdup(); /* save lvalue */
2494 if (post) {
2495 gv_dup(); /* duplicate value */
2496 vrotb(3);
2497 vrotb(3);
2499 /* add constant */
2500 vpushi(c - TOK_MID);
2501 gen_op('+');
2502 vstore(); /* store value */
2503 if (post)
2504 vpop(); /* if post op, return saved value */
2507 /* Parse GNUC __attribute__ extension. Currently, the following
2508 extensions are recognized:
2509 - aligned(n) : set data/function alignment.
2510 - packed : force data alignment to 1
2511 - section(x) : generate data/code in this section.
2512 - unused : currently ignored, but may be used someday.
2513 - regparm(n) : pass function parameters in registers (i386 only)
2515 static void parse_attribute(AttributeDef *ad)
2517 int t, n;
2519 while (tok == TOK_ATTRIBUTE1 || tok == TOK_ATTRIBUTE2) {
2520 next();
2521 skip('(');
2522 skip('(');
2523 while (tok != ')') {
2524 if (tok < TOK_IDENT)
2525 expect("attribute name");
2526 t = tok;
2527 next();
2528 switch(t) {
2529 case TOK_SECTION1:
2530 case TOK_SECTION2:
2531 skip('(');
2532 if (tok != TOK_STR)
2533 expect("section name");
2534 ad->section = find_section(tcc_state, (char *)tokc.cstr->data);
2535 next();
2536 skip(')');
2537 break;
2538 case TOK_ALIAS1:
2539 case TOK_ALIAS2:
2540 skip('(');
2541 if (tok != TOK_STR)
2542 expect("alias(\"target\")");
2543 ad->alias_target = /* save string as token, for later */
2544 tok_alloc((char*)tokc.cstr->data, tokc.cstr->size-1)->tok;
2545 next();
2546 skip(')');
2547 break;
2548 case TOK_ALIGNED1:
2549 case TOK_ALIGNED2:
2550 if (tok == '(') {
2551 next();
2552 n = expr_const();
2553 if (n <= 0 || (n & (n - 1)) != 0)
2554 error("alignment must be a positive power of two");
2555 skip(')');
2556 } else {
2557 n = MAX_ALIGN;
2559 ad->aligned = n;
2560 break;
2561 case TOK_PACKED1:
2562 case TOK_PACKED2:
2563 ad->packed = 1;
2564 break;
2565 case TOK_WEAK1:
2566 case TOK_WEAK2:
2567 ad->weak = 1;
2568 break;
2569 case TOK_UNUSED1:
2570 case TOK_UNUSED2:
2571 /* currently, no need to handle it because tcc does not
2572 track unused objects */
2573 break;
2574 case TOK_NORETURN1:
2575 case TOK_NORETURN2:
2576 /* currently, no need to handle it because tcc does not
2577 track unused objects */
2578 break;
2579 case TOK_CDECL1:
2580 case TOK_CDECL2:
2581 case TOK_CDECL3:
2582 ad->func_call = FUNC_CDECL;
2583 break;
2584 case TOK_STDCALL1:
2585 case TOK_STDCALL2:
2586 case TOK_STDCALL3:
2587 ad->func_call = FUNC_STDCALL;
2588 break;
2589 #ifdef TCC_TARGET_I386
2590 case TOK_REGPARM1:
2591 case TOK_REGPARM2:
2592 skip('(');
2593 n = expr_const();
2594 if (n > 3)
2595 n = 3;
2596 else if (n < 0)
2597 n = 0;
2598 if (n > 0)
2599 ad->func_call = FUNC_FASTCALL1 + n - 1;
2600 skip(')');
2601 break;
2602 case TOK_FASTCALL1:
2603 case TOK_FASTCALL2:
2604 case TOK_FASTCALL3:
2605 ad->func_call = FUNC_FASTCALLW;
2606 break;
2607 #endif
2608 case TOK_MODE:
2609 skip('(');
2610 switch(tok) {
2611 case TOK_MODE_DI:
2612 ad->mode = VT_LLONG + 1;
2613 break;
2614 case TOK_MODE_HI:
2615 ad->mode = VT_SHORT + 1;
2616 break;
2617 case TOK_MODE_SI:
2618 ad->mode = VT_INT + 1;
2619 break;
2620 default:
2621 warning("__mode__(%s) not supported\n", get_tok_str(tok, NULL));
2622 break;
2624 next();
2625 skip(')');
2626 break;
2627 case TOK_DLLEXPORT:
2628 ad->func_export = 1;
2629 break;
2630 case TOK_DLLIMPORT:
2631 ad->func_import = 1;
2632 break;
2633 default:
2634 if (tcc_state->warn_unsupported)
2635 warning("'%s' attribute ignored", get_tok_str(t, NULL));
2636 /* skip parameters */
2637 if (tok == '(') {
2638 int parenthesis = 0;
2639 do {
2640 if (tok == '(')
2641 parenthesis++;
2642 else if (tok == ')')
2643 parenthesis--;
2644 next();
2645 } while (parenthesis && tok != -1);
2647 break;
2649 if (tok != ',')
2650 break;
2651 next();
2653 skip(')');
2654 skip(')');
2658 /* enum/struct/union declaration. u is either VT_ENUM or VT_STRUCT */
2659 static void struct_decl(CType *type, int u)
2661 int a, v, size, align, maxalign, c, offset;
2662 int bit_size, bit_pos, bsize, bt, lbit_pos, prevbt;
2663 Sym *s, *ss, *ass, **ps;
2664 AttributeDef ad;
2665 CType type1, btype;
2667 a = tok; /* save decl type */
2668 next();
2669 if (tok != '{') {
2670 v = tok;
2671 next();
2672 /* struct already defined ? return it */
2673 if (v < TOK_IDENT)
2674 expect("struct/union/enum name");
2675 s = struct_find(v);
2676 if (s) {
2677 if (s->type.t != a)
2678 error("invalid type");
2679 goto do_decl;
2681 } else {
2682 v = anon_sym++;
2684 type1.t = a;
2685 /* we put an undefined size for struct/union */
2686 s = sym_push(v | SYM_STRUCT, &type1, 0, -1);
2687 s->r = 0; /* default alignment is zero as gcc */
2688 /* put struct/union/enum name in type */
2689 do_decl:
2690 type->t = u;
2691 type->ref = s;
2693 if (tok == '{') {
2694 next();
2695 if (s->c != -1)
2696 error("struct/union/enum already defined");
2697 /* cannot be empty */
2698 c = 0;
2699 /* non empty enums are not allowed */
2700 if (a == TOK_ENUM) {
2701 for(;;) {
2702 v = tok;
2703 if (v < TOK_UIDENT)
2704 expect("identifier");
2705 next();
2706 if (tok == '=') {
2707 next();
2708 c = expr_const();
2710 /* enum symbols have static storage */
2711 ss = sym_push(v, &int_type, VT_CONST, c);
2712 ss->type.t |= VT_STATIC;
2713 if (tok != ',')
2714 break;
2715 next();
2716 c++;
2717 /* NOTE: we accept a trailing comma */
2718 if (tok == '}')
2719 break;
2721 skip('}');
2722 } else {
2723 maxalign = 1;
2724 ps = &s->next;
2725 prevbt = VT_INT;
2726 bit_pos = 0;
2727 offset = 0;
2728 while (tok != '}') {
2729 parse_btype(&btype, &ad);
2730 while (1) {
2731 bit_size = -1;
2732 v = 0;
2733 type1 = btype;
2734 if (tok != ':') {
2735 type_decl(&type1, &ad, &v, TYPE_DIRECT | TYPE_ABSTRACT);
2736 if (v == 0 && (type1.t & VT_BTYPE) != VT_STRUCT)
2737 expect("identifier");
2738 if ((type1.t & VT_BTYPE) == VT_FUNC ||
2739 (type1.t & (VT_TYPEDEF | VT_STATIC | VT_EXTERN | VT_INLINE)))
2740 error("invalid type for '%s'",
2741 get_tok_str(v, NULL));
2743 if (tok == ':') {
2744 next();
2745 bit_size = expr_const();
2746 /* XXX: handle v = 0 case for messages */
2747 if (bit_size < 0)
2748 error("negative width in bit-field '%s'",
2749 get_tok_str(v, NULL));
2750 if (v && bit_size == 0)
2751 error("zero width for bit-field '%s'",
2752 get_tok_str(v, NULL));
2754 size = type_size(&type1, &align);
2755 if (ad.aligned) {
2756 if (align < ad.aligned)
2757 align = ad.aligned;
2758 } else if (ad.packed) {
2759 align = 1;
2760 } else if (*tcc_state->pack_stack_ptr) {
2761 if (align > *tcc_state->pack_stack_ptr)
2762 align = *tcc_state->pack_stack_ptr;
2764 lbit_pos = 0;
2765 if (bit_size >= 0) {
2766 bt = type1.t & VT_BTYPE;
2767 if (bt != VT_INT &&
2768 bt != VT_BYTE &&
2769 bt != VT_SHORT &&
2770 bt != VT_BOOL &&
2771 bt != VT_ENUM &&
2772 bt != VT_LLONG)
2773 error("bitfields must have scalar type");
2774 bsize = size * 8;
2775 if (bit_size > bsize) {
2776 error("width of '%s' exceeds its type",
2777 get_tok_str(v, NULL));
2778 } else if (bit_size == bsize) {
2779 /* no need for bit fields */
2780 bit_pos = 0;
2781 } else if (bit_size == 0) {
2782 /* XXX: what to do if only padding in a
2783 structure ? */
2784 /* zero size: means to pad */
2785 bit_pos = 0;
2786 } else {
2787 /* we do not have enough room ?
2788 did the type change?
2789 is it a union? */
2790 if ((bit_pos + bit_size) > bsize ||
2791 bt != prevbt || a == TOK_UNION)
2792 bit_pos = 0;
2793 lbit_pos = bit_pos;
2794 /* XXX: handle LSB first */
2795 type1.t |= VT_BITFIELD |
2796 (bit_pos << VT_STRUCT_SHIFT) |
2797 (bit_size << (VT_STRUCT_SHIFT + 6));
2798 bit_pos += bit_size;
2800 prevbt = bt;
2801 } else {
2802 bit_pos = 0;
2804 if (v != 0 || (type1.t & VT_BTYPE) == VT_STRUCT) {
2805 /* add new memory data only if starting
2806 bit field */
2807 if (lbit_pos == 0) {
2808 if (a == TOK_STRUCT) {
2809 c = (c + align - 1) & -align;
2810 offset = c;
2811 if (size > 0)
2812 c += size;
2813 } else {
2814 offset = 0;
2815 if (size > c)
2816 c = size;
2818 if (align > maxalign)
2819 maxalign = align;
2821 #if 0
2822 printf("add field %s offset=%d",
2823 get_tok_str(v, NULL), offset);
2824 if (type1.t & VT_BITFIELD) {
2825 printf(" pos=%d size=%d",
2826 (type1.t >> VT_STRUCT_SHIFT) & 0x3f,
2827 (type1.t >> (VT_STRUCT_SHIFT + 6)) & 0x3f);
2829 printf("\n");
2830 #endif
2832 if (v == 0 && (type1.t & VT_BTYPE) == VT_STRUCT) {
2833 ass = type1.ref;
2834 while ((ass = ass->next) != NULL) {
2835 ss = sym_push(ass->v, &ass->type, 0, offset + ass->c);
2836 *ps = ss;
2837 ps = &ss->next;
2839 } else if (v) {
2840 ss = sym_push(v | SYM_FIELD, &type1, 0, offset);
2841 *ps = ss;
2842 ps = &ss->next;
2844 if (tok == ';' || tok == TOK_EOF)
2845 break;
2846 skip(',');
2848 skip(';');
2850 skip('}');
2851 /* store size and alignment */
2852 s->c = (c + maxalign - 1) & -maxalign;
2853 s->r = maxalign;
2858 /* return 0 if no type declaration. otherwise, return the basic type
2859 and skip it.
2861 static int parse_btype(CType *type, AttributeDef *ad)
2863 int t, u, type_found, typespec_found, typedef_found;
2864 Sym *s;
2865 CType type1;
2867 memset(ad, 0, sizeof(AttributeDef));
2868 type_found = 0;
2869 typespec_found = 0;
2870 typedef_found = 0;
2871 t = 0;
2872 while(1) {
2873 switch(tok) {
2874 case TOK_EXTENSION:
2875 /* currently, we really ignore extension */
2876 next();
2877 continue;
2879 /* basic types */
2880 case TOK_CHAR:
2881 u = VT_BYTE;
2882 basic_type:
2883 next();
2884 basic_type1:
2885 if ((t & VT_BTYPE) != 0)
2886 error("too many basic types");
2887 t |= u;
2888 typespec_found = 1;
2889 break;
2890 case TOK_VOID:
2891 u = VT_VOID;
2892 goto basic_type;
2893 case TOK_SHORT:
2894 u = VT_SHORT;
2895 goto basic_type;
2896 case TOK_INT:
2897 next();
2898 typespec_found = 1;
2899 break;
2900 case TOK_LONG:
2901 next();
2902 if ((t & VT_BTYPE) == VT_DOUBLE) {
2903 #ifndef TCC_TARGET_PE
2904 t = (t & ~VT_BTYPE) | VT_LDOUBLE;
2905 #endif
2906 } else if ((t & VT_BTYPE) == VT_LONG) {
2907 t = (t & ~VT_BTYPE) | VT_LLONG;
2908 } else {
2909 u = VT_LONG;
2910 goto basic_type1;
2912 break;
2913 case TOK_BOOL:
2914 u = VT_BOOL;
2915 goto basic_type;
2916 case TOK_FLOAT:
2917 u = VT_FLOAT;
2918 goto basic_type;
2919 case TOK_DOUBLE:
2920 next();
2921 if ((t & VT_BTYPE) == VT_LONG) {
2922 #ifdef TCC_TARGET_PE
2923 t = (t & ~VT_BTYPE) | VT_DOUBLE;
2924 #else
2925 t = (t & ~VT_BTYPE) | VT_LDOUBLE;
2926 #endif
2927 } else {
2928 u = VT_DOUBLE;
2929 goto basic_type1;
2931 break;
2932 case TOK_ENUM:
2933 struct_decl(&type1, VT_ENUM);
2934 basic_type2:
2935 u = type1.t;
2936 type->ref = type1.ref;
2937 goto basic_type1;
2938 case TOK_STRUCT:
2939 case TOK_UNION:
2940 struct_decl(&type1, VT_STRUCT);
2941 goto basic_type2;
2943 /* type modifiers */
2944 case TOK_CONST1:
2945 case TOK_CONST2:
2946 case TOK_CONST3:
2947 t |= VT_CONSTANT;
2948 next();
2949 break;
2950 case TOK_VOLATILE1:
2951 case TOK_VOLATILE2:
2952 case TOK_VOLATILE3:
2953 t |= VT_VOLATILE;
2954 next();
2955 break;
2956 case TOK_SIGNED1:
2957 case TOK_SIGNED2:
2958 case TOK_SIGNED3:
2959 typespec_found = 1;
2960 t |= VT_SIGNED;
2961 next();
2962 break;
2963 case TOK_REGISTER:
2964 case TOK_AUTO:
2965 case TOK_RESTRICT1:
2966 case TOK_RESTRICT2:
2967 case TOK_RESTRICT3:
2968 next();
2969 break;
2970 case TOK_UNSIGNED:
2971 t |= VT_UNSIGNED;
2972 next();
2973 typespec_found = 1;
2974 break;
2976 /* storage */
2977 case TOK_EXTERN:
2978 t |= VT_EXTERN;
2979 next();
2980 break;
2981 case TOK_STATIC:
2982 t |= VT_STATIC;
2983 next();
2984 break;
2985 case TOK_TYPEDEF:
2986 t |= VT_TYPEDEF;
2987 next();
2988 break;
2989 case TOK_INLINE1:
2990 case TOK_INLINE2:
2991 case TOK_INLINE3:
2992 t |= VT_INLINE;
2993 next();
2994 break;
2996 /* GNUC attribute */
2997 case TOK_ATTRIBUTE1:
2998 case TOK_ATTRIBUTE2:
2999 parse_attribute(ad);
3000 if (ad->mode) {
3001 u = ad->mode -1;
3002 t = (t & ~VT_BTYPE) | u;
3004 break;
3005 /* GNUC typeof */
3006 case TOK_TYPEOF1:
3007 case TOK_TYPEOF2:
3008 case TOK_TYPEOF3:
3009 next();
3010 parse_expr_type(&type1);
3011 /* remove all storage modifiers except typedef */
3012 type1.t &= ~(VT_STORAGE&~VT_TYPEDEF);
3013 goto basic_type2;
3014 default:
3015 if (typespec_found || typedef_found)
3016 goto the_end;
3017 s = sym_find(tok);
3018 if (!s || !(s->type.t & VT_TYPEDEF))
3019 goto the_end;
3020 typedef_found = 1;
3021 t |= (s->type.t & ~VT_TYPEDEF);
3022 type->ref = s->type.ref;
3023 if (s->r) {
3024 /* get attributes from typedef */
3025 if (0 == ad->aligned)
3026 ad->aligned = FUNC_ALIGN(s->r);
3027 if (0 == ad->func_call)
3028 ad->func_call = FUNC_CALL(s->r);
3029 ad->packed |= FUNC_PACKED(s->r);
3031 next();
3032 typespec_found = 1;
3033 break;
3035 type_found = 1;
3037 the_end:
3038 if ((t & (VT_SIGNED|VT_UNSIGNED)) == (VT_SIGNED|VT_UNSIGNED))
3039 error("signed and unsigned modifier");
3040 if (tcc_state->char_is_unsigned) {
3041 if ((t & (VT_SIGNED|VT_UNSIGNED|VT_BTYPE)) == VT_BYTE)
3042 t |= VT_UNSIGNED;
3044 t &= ~VT_SIGNED;
3046 /* long is never used as type */
3047 if ((t & VT_BTYPE) == VT_LONG)
3048 #if !defined TCC_TARGET_X86_64 || defined TCC_TARGET_PE
3049 t = (t & ~VT_BTYPE) | VT_INT;
3050 #else
3051 t = (t & ~VT_BTYPE) | VT_LLONG;
3052 #endif
3053 type->t = t;
3054 return type_found;
3057 /* convert a function parameter type (array to pointer and function to
3058 function pointer) */
3059 static inline void convert_parameter_type(CType *pt)
3061 /* remove const and volatile qualifiers (XXX: const could be used
3062 to indicate a const function parameter */
3063 pt->t &= ~(VT_CONSTANT | VT_VOLATILE);
3064 /* array must be transformed to pointer according to ANSI C */
3065 pt->t &= ~VT_ARRAY;
3066 if ((pt->t & VT_BTYPE) == VT_FUNC) {
3067 mk_pointer(pt);
3071 ST_FUNC void parse_asm_str(CString *astr)
3073 skip('(');
3074 /* read the string */
3075 if (tok != TOK_STR)
3076 expect("string constant");
3077 cstr_new(astr);
3078 while (tok == TOK_STR) {
3079 /* XXX: add \0 handling too ? */
3080 cstr_cat(astr, tokc.cstr->data);
3081 next();
3083 cstr_ccat(astr, '\0');
3086 /* Parse an asm label and return the label
3087 * Don't forget to free the CString in the caller! */
3088 static void asm_label_instr(CString *astr)
3090 next();
3091 parse_asm_str(astr);
3092 skip(')');
3093 #ifdef ASM_DEBUG
3094 printf("asm_alias: \"%s\"\n", (char *)astr->data);
3095 #endif
3098 static void post_type(CType *type, AttributeDef *ad)
3100 int n, l, t1, arg_size, align;
3101 Sym **plast, *s, *first;
3102 AttributeDef ad1;
3103 CType pt;
3105 if (tok == '(') {
3106 /* function declaration */
3107 next();
3108 l = 0;
3109 first = NULL;
3110 plast = &first;
3111 arg_size = 0;
3112 if (tok != ')') {
3113 for(;;) {
3114 /* read param name and compute offset */
3115 if (l != FUNC_OLD) {
3116 if (!parse_btype(&pt, &ad1)) {
3117 if (l) {
3118 error("invalid type");
3119 } else {
3120 l = FUNC_OLD;
3121 goto old_proto;
3124 l = FUNC_NEW;
3125 if ((pt.t & VT_BTYPE) == VT_VOID && tok == ')')
3126 break;
3127 type_decl(&pt, &ad1, &n, TYPE_DIRECT | TYPE_ABSTRACT);
3128 if ((pt.t & VT_BTYPE) == VT_VOID)
3129 error("parameter declared as void");
3130 arg_size += (type_size(&pt, &align) + PTR_SIZE - 1) / PTR_SIZE;
3131 } else {
3132 old_proto:
3133 n = tok;
3134 if (n < TOK_UIDENT)
3135 expect("identifier");
3136 pt.t = VT_INT;
3137 next();
3139 convert_parameter_type(&pt);
3140 s = sym_push(n | SYM_FIELD, &pt, 0, 0);
3141 *plast = s;
3142 plast = &s->next;
3143 if (tok == ')')
3144 break;
3145 skip(',');
3146 if (l == FUNC_NEW && tok == TOK_DOTS) {
3147 l = FUNC_ELLIPSIS;
3148 next();
3149 break;
3153 /* if no parameters, then old type prototype */
3154 if (l == 0)
3155 l = FUNC_OLD;
3156 skip(')');
3157 /* NOTE: const is ignored in returned type as it has a special
3158 meaning in gcc / C++ */
3159 type->t &= ~VT_CONSTANT;
3160 /* some ancient pre-K&R C allows a function to return an array
3161 and the array brackets to be put after the arguments, such
3162 that "int c()[]" means something like "int[] c()" */
3163 if (tok == '[') {
3164 next();
3165 skip(']'); /* only handle simple "[]" */
3166 type->t |= VT_PTR;
3168 /* we push a anonymous symbol which will contain the function prototype */
3169 ad->func_args = arg_size;
3170 s = sym_push(SYM_FIELD, type, INT_ATTR(ad), l);
3171 s->next = first;
3172 type->t = VT_FUNC;
3173 type->ref = s;
3174 } else if (tok == '[') {
3175 /* array definition */
3176 next();
3177 if (tok == TOK_RESTRICT1)
3178 next();
3179 n = -1;
3180 t1 = 0;
3181 if (tok != ']') {
3182 if (!local_stack || nocode_wanted)
3183 vpushi(expr_const());
3184 else gexpr();
3185 if ((vtop->r & (VT_VALMASK | VT_LVAL | VT_SYM)) == VT_CONST) {
3186 n = vtop->c.i;
3187 if (n < 0)
3188 error("invalid array size");
3189 } else {
3190 if (!is_integer_btype(vtop->type.t & VT_BTYPE))
3191 error("size of variable length array should be an integer");
3192 t1 = VT_VLA;
3195 skip(']');
3196 /* parse next post type */
3197 post_type(type, ad);
3198 t1 |= type->t & VT_VLA;
3200 if (t1 & VT_VLA) {
3201 loc -= type_size(&int_type, &align);
3202 loc &= -align;
3203 n = loc;
3205 vla_runtime_type_size(type, &align);
3206 gen_op('*');
3207 vset(&int_type, VT_LOCAL|VT_LVAL, loc);
3208 vswap();
3209 vstore();
3211 if (n != -1)
3212 vpop();
3214 /* we push an anonymous symbol which will contain the array
3215 element type */
3216 s = sym_push(SYM_FIELD, type, 0, n);
3217 type->t = (t1 ? VT_VLA : VT_ARRAY) | VT_PTR;
3218 type->ref = s;
3222 /* Parse a type declaration (except basic type), and return the type
3223 in 'type'. 'td' is a bitmask indicating which kind of type decl is
3224 expected. 'type' should contain the basic type. 'ad' is the
3225 attribute definition of the basic type. It can be modified by
3226 type_decl().
3228 static void type_decl(CType *type, AttributeDef *ad, int *v, int td)
3230 Sym *s;
3231 CType type1, *type2;
3232 int qualifiers, storage;
3234 while (tok == '*') {
3235 qualifiers = 0;
3236 redo:
3237 next();
3238 switch(tok) {
3239 case TOK_CONST1:
3240 case TOK_CONST2:
3241 case TOK_CONST3:
3242 qualifiers |= VT_CONSTANT;
3243 goto redo;
3244 case TOK_VOLATILE1:
3245 case TOK_VOLATILE2:
3246 case TOK_VOLATILE3:
3247 qualifiers |= VT_VOLATILE;
3248 goto redo;
3249 case TOK_RESTRICT1:
3250 case TOK_RESTRICT2:
3251 case TOK_RESTRICT3:
3252 goto redo;
3254 mk_pointer(type);
3255 type->t |= qualifiers;
3258 /* XXX: clarify attribute handling */
3259 if (tok == TOK_ATTRIBUTE1 || tok == TOK_ATTRIBUTE2)
3260 parse_attribute(ad);
3262 /* recursive type */
3263 /* XXX: incorrect if abstract type for functions (e.g. 'int ()') */
3264 type1.t = 0; /* XXX: same as int */
3265 if (tok == '(') {
3266 next();
3267 /* XXX: this is not correct to modify 'ad' at this point, but
3268 the syntax is not clear */
3269 if (tok == TOK_ATTRIBUTE1 || tok == TOK_ATTRIBUTE2)
3270 parse_attribute(ad);
3271 type_decl(&type1, ad, v, td);
3272 skip(')');
3273 } else {
3274 /* type identifier */
3275 if (tok >= TOK_IDENT && (td & TYPE_DIRECT)) {
3276 *v = tok;
3277 next();
3278 } else {
3279 if (!(td & TYPE_ABSTRACT))
3280 expect("identifier");
3281 *v = 0;
3284 storage = type->t & VT_STORAGE;
3285 type->t &= ~VT_STORAGE;
3286 post_type(type, ad);
3287 type->t |= storage;
3288 if (tok == TOK_ATTRIBUTE1 || tok == TOK_ATTRIBUTE2)
3289 parse_attribute(ad);
3291 if (!type1.t)
3292 return;
3293 /* append type at the end of type1 */
3294 type2 = &type1;
3295 for(;;) {
3296 s = type2->ref;
3297 type2 = &s->type;
3298 if (!type2->t) {
3299 *type2 = *type;
3300 break;
3303 *type = type1;
3306 /* compute the lvalue VT_LVAL_xxx needed to match type t. */
3307 ST_FUNC int lvalue_type(int t)
3309 int bt, r;
3310 r = VT_LVAL;
3311 bt = t & VT_BTYPE;
3312 if (bt == VT_BYTE || bt == VT_BOOL)
3313 r |= VT_LVAL_BYTE;
3314 else if (bt == VT_SHORT)
3315 r |= VT_LVAL_SHORT;
3316 else
3317 return r;
3318 if (t & VT_UNSIGNED)
3319 r |= VT_LVAL_UNSIGNED;
3320 return r;
3323 /* indirection with full error checking and bound check */
3324 ST_FUNC void indir(void)
3326 if ((vtop->type.t & VT_BTYPE) != VT_PTR) {
3327 if ((vtop->type.t & VT_BTYPE) == VT_FUNC)
3328 return;
3329 expect("pointer");
3331 if ((vtop->r & VT_LVAL) && !nocode_wanted)
3332 gv(RC_INT);
3333 vtop->type = *pointed_type(&vtop->type);
3334 /* Arrays and functions are never lvalues */
3335 if (!(vtop->type.t & VT_ARRAY) && !(vtop->type.t & VT_VLA)
3336 && (vtop->type.t & VT_BTYPE) != VT_FUNC) {
3337 vtop->r |= lvalue_type(vtop->type.t);
3338 /* if bound checking, the referenced pointer must be checked */
3339 #ifdef CONFIG_TCC_BCHECK
3340 if (tcc_state->do_bounds_check)
3341 vtop->r |= VT_MUSTBOUND;
3342 #endif
3346 /* pass a parameter to a function and do type checking and casting */
3347 static void gfunc_param_typed(Sym *func, Sym *arg)
3349 int func_type;
3350 CType type;
3352 func_type = func->c;
3353 if (func_type == FUNC_OLD ||
3354 (func_type == FUNC_ELLIPSIS && arg == NULL)) {
3355 /* default casting : only need to convert float to double */
3356 if ((vtop->type.t & VT_BTYPE) == VT_FLOAT) {
3357 type.t = VT_DOUBLE;
3358 gen_cast(&type);
3360 } else if (arg == NULL) {
3361 error("too many arguments to function");
3362 } else {
3363 type = arg->type;
3364 type.t &= ~VT_CONSTANT; /* need to do that to avoid false warning */
3365 gen_assign_cast(&type);
3369 /* parse an expression of the form '(type)' or '(expr)' and return its
3370 type */
3371 static void parse_expr_type(CType *type)
3373 int n;
3374 AttributeDef ad;
3376 skip('(');
3377 if (parse_btype(type, &ad)) {
3378 type_decl(type, &ad, &n, TYPE_ABSTRACT);
3379 } else {
3380 expr_type(type);
3382 skip(')');
3385 static void parse_type(CType *type)
3387 AttributeDef ad;
3388 int n;
3390 if (!parse_btype(type, &ad)) {
3391 expect("type");
3393 type_decl(type, &ad, &n, TYPE_ABSTRACT);
3396 static void vpush_tokc(int t)
3398 CType type;
3399 type.t = t;
3400 type.ref = 0;
3401 vsetc(&type, VT_CONST, &tokc);
3404 ST_FUNC void unary(void)
3406 int n, t, align, size, r, sizeof_caller;
3407 CType type;
3408 Sym *s;
3409 AttributeDef ad;
3410 static int in_sizeof = 0;
3412 sizeof_caller = in_sizeof;
3413 in_sizeof = 0;
3414 /* XXX: GCC 2.95.3 does not generate a table although it should be
3415 better here */
3416 tok_next:
3417 switch(tok) {
3418 case TOK_EXTENSION:
3419 next();
3420 goto tok_next;
3421 case TOK_CINT:
3422 case TOK_CCHAR:
3423 case TOK_LCHAR:
3424 vpushi(tokc.i);
3425 next();
3426 break;
3427 case TOK_CUINT:
3428 vpush_tokc(VT_INT | VT_UNSIGNED);
3429 next();
3430 break;
3431 case TOK_CLLONG:
3432 vpush_tokc(VT_LLONG);
3433 next();
3434 break;
3435 case TOK_CULLONG:
3436 vpush_tokc(VT_LLONG | VT_UNSIGNED);
3437 next();
3438 break;
3439 case TOK_CFLOAT:
3440 vpush_tokc(VT_FLOAT);
3441 next();
3442 break;
3443 case TOK_CDOUBLE:
3444 vpush_tokc(VT_DOUBLE);
3445 next();
3446 break;
3447 case TOK_CLDOUBLE:
3448 vpush_tokc(VT_LDOUBLE);
3449 next();
3450 break;
3451 case TOK___FUNCTION__:
3452 if (!gnu_ext)
3453 goto tok_identifier;
3454 /* fall thru */
3455 case TOK___FUNC__:
3457 void *ptr;
3458 int len;
3459 /* special function name identifier */
3460 len = strlen(funcname) + 1;
3461 /* generate char[len] type */
3462 type.t = VT_BYTE;
3463 mk_pointer(&type);
3464 type.t |= VT_ARRAY;
3465 type.ref->c = len;
3466 vpush_ref(&type, data_section, data_section->data_offset, len);
3467 ptr = section_ptr_add(data_section, len);
3468 memcpy(ptr, funcname, len);
3469 next();
3471 break;
3472 case TOK_LSTR:
3473 #ifdef TCC_TARGET_PE
3474 t = VT_SHORT | VT_UNSIGNED;
3475 #else
3476 t = VT_INT;
3477 #endif
3478 goto str_init;
3479 case TOK_STR:
3480 /* string parsing */
3481 t = VT_BYTE;
3482 str_init:
3483 if (tcc_state->warn_write_strings)
3484 t |= VT_CONSTANT;
3485 type.t = t;
3486 mk_pointer(&type);
3487 type.t |= VT_ARRAY;
3488 memset(&ad, 0, sizeof(AttributeDef));
3489 decl_initializer_alloc(&type, &ad, VT_CONST, 2, 0, NULL, 0);
3490 break;
3491 case '(':
3492 next();
3493 /* cast ? */
3494 if (parse_btype(&type, &ad)) {
3495 type_decl(&type, &ad, &n, TYPE_ABSTRACT);
3496 skip(')');
3497 /* check ISOC99 compound literal */
3498 if (tok == '{') {
3499 /* data is allocated locally by default */
3500 if (global_expr)
3501 r = VT_CONST;
3502 else
3503 r = VT_LOCAL;
3504 /* all except arrays are lvalues */
3505 if (!(type.t & VT_ARRAY))
3506 r |= lvalue_type(type.t);
3507 memset(&ad, 0, sizeof(AttributeDef));
3508 decl_initializer_alloc(&type, &ad, r, 1, 0, NULL, 0);
3509 } else {
3510 if (sizeof_caller) {
3511 vpush(&type);
3512 return;
3514 unary();
3515 gen_cast(&type);
3517 } else if (tok == '{') {
3518 /* save all registers */
3519 save_regs(0);
3520 /* statement expression : we do not accept break/continue
3521 inside as GCC does */
3522 block(NULL, NULL, NULL, NULL, 0, 1);
3523 skip(')');
3524 } else {
3525 gexpr();
3526 skip(')');
3528 break;
3529 case '*':
3530 next();
3531 unary();
3532 indir();
3533 break;
3534 case '&':
3535 next();
3536 unary();
3537 /* functions names must be treated as function pointers,
3538 except for unary '&' and sizeof. Since we consider that
3539 functions are not lvalues, we only have to handle it
3540 there and in function calls. */
3541 /* arrays can also be used although they are not lvalues */
3542 if ((vtop->type.t & VT_BTYPE) != VT_FUNC &&
3543 !(vtop->type.t & VT_ARRAY) && !(vtop->type.t & VT_LLOCAL))
3544 test_lvalue();
3545 mk_pointer(&vtop->type);
3546 gaddrof();
3547 break;
3548 case '!':
3549 next();
3550 unary();
3551 if ((vtop->r & (VT_VALMASK | VT_LVAL | VT_SYM)) == VT_CONST) {
3552 CType boolean;
3553 boolean.t = VT_BOOL;
3554 gen_cast(&boolean);
3555 vtop->c.i = !vtop->c.i;
3556 } else if ((vtop->r & VT_VALMASK) == VT_CMP)
3557 vtop->c.i = vtop->c.i ^ 1;
3558 else {
3559 save_regs(1);
3560 vseti(VT_JMP, gtst(1, 0));
3562 break;
3563 case '~':
3564 next();
3565 unary();
3566 vpushi(-1);
3567 gen_op('^');
3568 break;
3569 case '+':
3570 next();
3571 /* in order to force cast, we add zero */
3572 unary();
3573 if ((vtop->type.t & VT_BTYPE) == VT_PTR)
3574 error("pointer not accepted for unary plus");
3575 vpushi(0);
3576 gen_op('+');
3577 break;
3578 case TOK_SIZEOF:
3579 case TOK_ALIGNOF1:
3580 case TOK_ALIGNOF2:
3581 t = tok;
3582 next();
3583 in_sizeof++;
3584 unary_type(&type); // Perform a in_sizeof = 0;
3585 size = type_size(&type, &align);
3586 if (t == TOK_SIZEOF) {
3587 if (!(type.t & VT_VLA)) {
3588 if (size < 0)
3589 error("sizeof applied to an incomplete type");
3590 vpushi(size);
3591 } else {
3592 vla_runtime_type_size(&type, &align);
3594 } else {
3595 vpushi(align);
3597 vtop->type.t |= VT_UNSIGNED;
3598 break;
3600 case TOK_builtin_types_compatible_p:
3602 CType type1, type2;
3603 next();
3604 skip('(');
3605 parse_type(&type1);
3606 skip(',');
3607 parse_type(&type2);
3608 skip(')');
3609 type1.t &= ~(VT_CONSTANT | VT_VOLATILE);
3610 type2.t &= ~(VT_CONSTANT | VT_VOLATILE);
3611 vpushi(is_compatible_types(&type1, &type2));
3613 break;
3614 case TOK_builtin_constant_p:
3616 int saved_nocode_wanted, res;
3617 next();
3618 skip('(');
3619 saved_nocode_wanted = nocode_wanted;
3620 nocode_wanted = 1;
3621 gexpr();
3622 res = (vtop->r & (VT_VALMASK | VT_LVAL | VT_SYM)) == VT_CONST;
3623 vpop();
3624 nocode_wanted = saved_nocode_wanted;
3625 skip(')');
3626 vpushi(res);
3628 break;
3629 case TOK_builtin_frame_address:
3631 CType type;
3632 next();
3633 skip('(');
3634 if (tok != TOK_CINT) {
3635 error("__builtin_frame_address only takes integers");
3637 if (tokc.i != 0) {
3638 error("TCC only supports __builtin_frame_address(0)");
3640 next();
3641 skip(')');
3642 type.t = VT_VOID;
3643 mk_pointer(&type);
3644 vset(&type, VT_LOCAL, 0);
3646 break;
3647 #ifdef TCC_TARGET_X86_64
3648 case TOK_builtin_va_arg_types:
3650 /* This definition must be synced with stdarg.h */
3651 enum __va_arg_type {
3652 __va_gen_reg, __va_float_reg, __va_stack
3654 CType type;
3655 int bt;
3656 next();
3657 skip('(');
3658 parse_type(&type);
3659 skip(')');
3660 bt = type.t & VT_BTYPE;
3661 if (bt == VT_STRUCT || bt == VT_LDOUBLE) {
3662 vpushi(__va_stack);
3663 } else if (bt == VT_FLOAT || bt == VT_DOUBLE) {
3664 vpushi(__va_float_reg);
3665 } else {
3666 vpushi(__va_gen_reg);
3669 break;
3670 #endif
3671 case TOK_INC:
3672 case TOK_DEC:
3673 t = tok;
3674 next();
3675 unary();
3676 inc(0, t);
3677 break;
3678 case '-':
3679 next();
3680 vpushi(0);
3681 unary();
3682 gen_op('-');
3683 break;
3684 case TOK_LAND:
3685 if (!gnu_ext)
3686 goto tok_identifier;
3687 next();
3688 /* allow to take the address of a label */
3689 if (tok < TOK_UIDENT)
3690 expect("label identifier");
3691 s = label_find(tok);
3692 if (!s) {
3693 s = label_push(&global_label_stack, tok, LABEL_FORWARD);
3694 } else {
3695 if (s->r == LABEL_DECLARED)
3696 s->r = LABEL_FORWARD;
3698 if (!s->type.t) {
3699 s->type.t = VT_VOID;
3700 mk_pointer(&s->type);
3701 s->type.t |= VT_STATIC;
3703 vset(&s->type, VT_CONST | VT_SYM, 0);
3704 vtop->sym = s;
3705 next();
3706 break;
3708 // special qnan , snan and infinity values
3709 case TOK___NAN__:
3710 vpush64(VT_DOUBLE, 0x7ff8000000000000ULL);
3711 next();
3712 break;
3713 case TOK___SNAN__:
3714 vpush64(VT_DOUBLE, 0x7ff0000000000001ULL);
3715 next();
3716 break;
3717 case TOK___INF__:
3718 vpush64(VT_DOUBLE, 0x7ff0000000000000ULL);
3719 next();
3720 break;
3722 default:
3723 tok_identifier:
3724 t = tok;
3725 next();
3726 if (t < TOK_UIDENT)
3727 expect("identifier");
3728 s = sym_find(t);
3729 if (!s) {
3730 if (tok != '(')
3731 error("'%s' undeclared", get_tok_str(t, NULL));
3732 /* for simple function calls, we tolerate undeclared
3733 external reference to int() function */
3734 if (tcc_state->warn_implicit_function_declaration)
3735 warning("implicit declaration of function '%s'",
3736 get_tok_str(t, NULL));
3737 s = external_global_sym(t, &func_old_type, 0);
3739 if ((s->type.t & (VT_STATIC | VT_INLINE | VT_BTYPE)) ==
3740 (VT_STATIC | VT_INLINE | VT_FUNC)) {
3741 /* if referencing an inline function, then we generate a
3742 symbol to it if not already done. It will have the
3743 effect to generate code for it at the end of the
3744 compilation unit. Inline function as always
3745 generated in the text section. */
3746 if (!s->c)
3747 put_extern_sym(s, text_section, 0, 0);
3748 r = VT_SYM | VT_CONST;
3749 } else {
3750 r = s->r;
3752 vset(&s->type, r, s->c);
3753 /* if forward reference, we must point to s */
3754 if (vtop->r & VT_SYM) {
3755 vtop->sym = s;
3756 vtop->c.ul = 0;
3758 break;
3761 /* post operations */
3762 while (1) {
3763 if (tok == TOK_INC || tok == TOK_DEC) {
3764 inc(1, tok);
3765 next();
3766 } else if (tok == '.' || tok == TOK_ARROW) {
3767 int qualifiers;
3768 /* field */
3769 if (tok == TOK_ARROW)
3770 indir();
3771 qualifiers = vtop->type.t & (VT_CONSTANT | VT_VOLATILE);
3772 test_lvalue();
3773 gaddrof();
3774 next();
3775 /* expect pointer on structure */
3776 if ((vtop->type.t & VT_BTYPE) != VT_STRUCT)
3777 expect("struct or union");
3778 s = vtop->type.ref;
3779 /* find field */
3780 tok |= SYM_FIELD;
3781 while ((s = s->next) != NULL) {
3782 if (s->v == tok)
3783 break;
3785 if (!s)
3786 error("field not found: %s", get_tok_str(tok & ~SYM_FIELD, NULL));
3787 /* add field offset to pointer */
3788 vtop->type = char_pointer_type; /* change type to 'char *' */
3789 vpushi(s->c);
3790 gen_op('+');
3791 /* change type to field type, and set to lvalue */
3792 vtop->type = s->type;
3793 vtop->type.t |= qualifiers;
3794 /* an array is never an lvalue */
3795 if (!(vtop->type.t & VT_ARRAY)) {
3796 vtop->r |= lvalue_type(vtop->type.t);
3797 #ifdef CONFIG_TCC_BCHECK
3798 /* if bound checking, the referenced pointer must be checked */
3799 if (tcc_state->do_bounds_check)
3800 vtop->r |= VT_MUSTBOUND;
3801 #endif
3803 next();
3804 } else if (tok == '[') {
3805 next();
3806 gexpr();
3807 gen_op('+');
3808 indir();
3809 skip(']');
3810 } else if (tok == '(') {
3811 SValue ret;
3812 Sym *sa;
3813 int nb_args;
3815 /* function call */
3816 if ((vtop->type.t & VT_BTYPE) != VT_FUNC) {
3817 /* pointer test (no array accepted) */
3818 if ((vtop->type.t & (VT_BTYPE | VT_ARRAY)) == VT_PTR) {
3819 vtop->type = *pointed_type(&vtop->type);
3820 if ((vtop->type.t & VT_BTYPE) != VT_FUNC)
3821 goto error_func;
3822 } else {
3823 error_func:
3824 expect("function pointer");
3826 } else {
3827 vtop->r &= ~VT_LVAL; /* no lvalue */
3829 /* get return type */
3830 s = vtop->type.ref;
3831 next();
3832 sa = s->next; /* first parameter */
3833 nb_args = 0;
3834 ret.r2 = VT_CONST;
3835 /* compute first implicit argument if a structure is returned */
3836 if ((s->type.t & VT_BTYPE) == VT_STRUCT) {
3837 /* get some space for the returned structure */
3838 size = type_size(&s->type, &align);
3839 loc = (loc - size) & -align;
3840 ret.type = s->type;
3841 ret.r = VT_LOCAL | VT_LVAL;
3842 /* pass it as 'int' to avoid structure arg passing
3843 problems */
3844 vseti(VT_LOCAL, loc);
3845 ret.c = vtop->c;
3846 nb_args++;
3847 } else {
3848 ret.type = s->type;
3849 /* return in register */
3850 if (is_float(ret.type.t)) {
3851 ret.r = reg_fret(ret.type.t);
3852 } else {
3853 if ((ret.type.t & VT_BTYPE) == VT_LLONG)
3854 ret.r2 = REG_LRET;
3855 ret.r = REG_IRET;
3857 ret.c.i = 0;
3859 if (tok != ')') {
3860 for(;;) {
3861 expr_eq();
3862 gfunc_param_typed(s, sa);
3863 nb_args++;
3864 if (sa)
3865 sa = sa->next;
3866 if (tok == ')')
3867 break;
3868 skip(',');
3871 if (sa)
3872 error("too few arguments to function");
3873 skip(')');
3874 if (!nocode_wanted) {
3875 gfunc_call(nb_args);
3876 } else {
3877 vtop -= (nb_args + 1);
3879 /* return value */
3880 vsetc(&ret.type, ret.r, &ret.c);
3881 vtop->r2 = ret.r2;
3882 } else {
3883 break;
3888 ST_FUNC void expr_prod(void)
3890 int t;
3892 unary();
3893 while (tok == '*' || tok == '/' || tok == '%') {
3894 t = tok;
3895 next();
3896 unary();
3897 gen_op(t);
3901 ST_FUNC void expr_sum(void)
3903 int t;
3905 expr_prod();
3906 while (tok == '+' || tok == '-') {
3907 t = tok;
3908 next();
3909 expr_prod();
3910 gen_op(t);
3914 static void expr_shift(void)
3916 int t;
3918 expr_sum();
3919 while (tok == TOK_SHL || tok == TOK_SAR) {
3920 t = tok;
3921 next();
3922 expr_sum();
3923 gen_op(t);
3927 static void expr_cmp(void)
3929 int t;
3931 expr_shift();
3932 while ((tok >= TOK_ULE && tok <= TOK_GT) ||
3933 tok == TOK_ULT || tok == TOK_UGE) {
3934 t = tok;
3935 next();
3936 expr_shift();
3937 gen_op(t);
3941 static void expr_cmpeq(void)
3943 int t;
3945 expr_cmp();
3946 while (tok == TOK_EQ || tok == TOK_NE) {
3947 t = tok;
3948 next();
3949 expr_cmp();
3950 gen_op(t);
3954 static void expr_and(void)
3956 expr_cmpeq();
3957 while (tok == '&') {
3958 next();
3959 expr_cmpeq();
3960 gen_op('&');
3964 static void expr_xor(void)
3966 expr_and();
3967 while (tok == '^') {
3968 next();
3969 expr_and();
3970 gen_op('^');
3974 static void expr_or(void)
3976 expr_xor();
3977 while (tok == '|') {
3978 next();
3979 expr_xor();
3980 gen_op('|');
3984 /* XXX: fix this mess */
3985 static void expr_land_const(void)
3987 expr_or();
3988 while (tok == TOK_LAND) {
3989 next();
3990 expr_or();
3991 gen_op(TOK_LAND);
3995 /* XXX: fix this mess */
3996 static void expr_lor_const(void)
3998 expr_land_const();
3999 while (tok == TOK_LOR) {
4000 next();
4001 expr_land_const();
4002 gen_op(TOK_LOR);
4006 /* only used if non constant */
4007 static void expr_land(void)
4009 int t;
4011 expr_or();
4012 if (tok == TOK_LAND) {
4013 t = 0;
4014 save_regs(1);
4015 for(;;) {
4016 t = gtst(1, t);
4017 if (tok != TOK_LAND) {
4018 vseti(VT_JMPI, t);
4019 break;
4021 next();
4022 expr_or();
4027 static void expr_lor(void)
4029 int t;
4031 expr_land();
4032 if (tok == TOK_LOR) {
4033 t = 0;
4034 save_regs(1);
4035 for(;;) {
4036 t = gtst(0, t);
4037 if (tok != TOK_LOR) {
4038 vseti(VT_JMP, t);
4039 break;
4041 next();
4042 expr_land();
4047 /* XXX: better constant handling */
4048 static void expr_cond(void)
4050 int tt, u, r1, r2, rc, t1, t2, bt1, bt2;
4051 SValue sv;
4052 CType type, type1, type2;
4054 if (const_wanted) {
4055 expr_lor_const();
4056 if (tok == '?') {
4057 CType boolean;
4058 int c;
4059 boolean.t = VT_BOOL;
4060 vdup();
4061 gen_cast(&boolean);
4062 c = vtop->c.i;
4063 vpop();
4064 next();
4065 if (tok != ':' || !gnu_ext) {
4066 vpop();
4067 gexpr();
4069 if (!c)
4070 vpop();
4071 skip(':');
4072 expr_cond();
4073 if (c)
4074 vpop();
4076 } else {
4077 expr_lor();
4078 if (tok == '?') {
4079 next();
4080 if (vtop != vstack) {
4081 /* needed to avoid having different registers saved in
4082 each branch */
4083 if (is_float(vtop->type.t)) {
4084 rc = RC_FLOAT;
4085 #ifdef TCC_TARGET_X86_64
4086 if ((vtop->type.t & VT_BTYPE) == VT_LDOUBLE) {
4087 rc = RC_ST0;
4089 #endif
4091 else
4092 rc = RC_INT;
4093 gv(rc);
4094 save_regs(1);
4096 if (tok == ':' && gnu_ext) {
4097 gv_dup();
4098 tt = gtst(1, 0);
4099 } else {
4100 tt = gtst(1, 0);
4101 gexpr();
4103 type1 = vtop->type;
4104 sv = *vtop; /* save value to handle it later */
4105 vtop--; /* no vpop so that FP stack is not flushed */
4106 skip(':');
4107 u = gjmp(0);
4108 gsym(tt);
4109 expr_cond();
4110 type2 = vtop->type;
4112 t1 = type1.t;
4113 bt1 = t1 & VT_BTYPE;
4114 t2 = type2.t;
4115 bt2 = t2 & VT_BTYPE;
4116 /* cast operands to correct type according to ISOC rules */
4117 if (is_float(bt1) || is_float(bt2)) {
4118 if (bt1 == VT_LDOUBLE || bt2 == VT_LDOUBLE) {
4119 type.t = VT_LDOUBLE;
4120 } else if (bt1 == VT_DOUBLE || bt2 == VT_DOUBLE) {
4121 type.t = VT_DOUBLE;
4122 } else {
4123 type.t = VT_FLOAT;
4125 } else if (bt1 == VT_LLONG || bt2 == VT_LLONG) {
4126 /* cast to biggest op */
4127 type.t = VT_LLONG;
4128 /* convert to unsigned if it does not fit in a long long */
4129 if ((t1 & (VT_BTYPE | VT_UNSIGNED)) == (VT_LLONG | VT_UNSIGNED) ||
4130 (t2 & (VT_BTYPE | VT_UNSIGNED)) == (VT_LLONG | VT_UNSIGNED))
4131 type.t |= VT_UNSIGNED;
4132 } else if (bt1 == VT_PTR || bt2 == VT_PTR) {
4133 /* XXX: test pointer compatibility */
4134 type = type1;
4135 } else if (bt1 == VT_FUNC || bt2 == VT_FUNC) {
4136 /* XXX: test function pointer compatibility */
4137 type = type1;
4138 } else if (bt1 == VT_STRUCT || bt2 == VT_STRUCT) {
4139 /* XXX: test structure compatibility */
4140 type = type1;
4141 } else if (bt1 == VT_VOID || bt2 == VT_VOID) {
4142 /* NOTE: as an extension, we accept void on only one side */
4143 type.t = VT_VOID;
4144 } else {
4145 /* integer operations */
4146 type.t = VT_INT;
4147 /* convert to unsigned if it does not fit in an integer */
4148 if ((t1 & (VT_BTYPE | VT_UNSIGNED)) == (VT_INT | VT_UNSIGNED) ||
4149 (t2 & (VT_BTYPE | VT_UNSIGNED)) == (VT_INT | VT_UNSIGNED))
4150 type.t |= VT_UNSIGNED;
4153 /* now we convert second operand */
4154 gen_cast(&type);
4155 if (VT_STRUCT == (vtop->type.t & VT_BTYPE))
4156 gaddrof();
4157 rc = RC_INT;
4158 if (is_float(type.t)) {
4159 rc = RC_FLOAT;
4160 #ifdef TCC_TARGET_X86_64
4161 if ((type.t & VT_BTYPE) == VT_LDOUBLE) {
4162 rc = RC_ST0;
4164 #endif
4165 } else if ((type.t & VT_BTYPE) == VT_LLONG) {
4166 /* for long longs, we use fixed registers to avoid having
4167 to handle a complicated move */
4168 rc = RC_IRET;
4171 r2 = gv(rc);
4172 /* this is horrible, but we must also convert first
4173 operand */
4174 tt = gjmp(0);
4175 gsym(u);
4176 /* put again first value and cast it */
4177 *vtop = sv;
4178 gen_cast(&type);
4179 if (VT_STRUCT == (vtop->type.t & VT_BTYPE))
4180 gaddrof();
4181 r1 = gv(rc);
4182 move_reg(r2, r1);
4183 vtop->r = r2;
4184 gsym(tt);
4189 static void expr_eq(void)
4191 int t;
4193 expr_cond();
4194 if (tok == '=' ||
4195 (tok >= TOK_A_MOD && tok <= TOK_A_DIV) ||
4196 tok == TOK_A_XOR || tok == TOK_A_OR ||
4197 tok == TOK_A_SHL || tok == TOK_A_SAR) {
4198 test_lvalue();
4199 t = tok;
4200 next();
4201 if (t == '=') {
4202 expr_eq();
4203 } else {
4204 vdup();
4205 expr_eq();
4206 gen_op(t & 0x7f);
4208 vstore();
4212 ST_FUNC void gexpr(void)
4214 while (1) {
4215 expr_eq();
4216 if (tok != ',')
4217 break;
4218 vpop();
4219 next();
4223 /* parse an expression and return its type without any side effect. */
4224 static void expr_type(CType *type)
4226 int saved_nocode_wanted;
4228 saved_nocode_wanted = nocode_wanted;
4229 nocode_wanted = 1;
4230 gexpr();
4231 *type = vtop->type;
4232 vpop();
4233 nocode_wanted = saved_nocode_wanted;
4236 /* parse a unary expression and return its type without any side
4237 effect. */
4238 static void unary_type(CType *type)
4240 int a;
4242 a = nocode_wanted;
4243 nocode_wanted = 1;
4244 unary();
4245 *type = vtop->type;
4246 vpop();
4247 nocode_wanted = a;
4250 /* parse a constant expression and return value in vtop. */
4251 static void expr_const1(void)
4253 int a;
4254 a = const_wanted;
4255 const_wanted = 1;
4256 expr_cond();
4257 const_wanted = a;
4260 /* parse an integer constant and return its value. */
4261 ST_FUNC int expr_const(void)
4263 int c;
4264 expr_const1();
4265 if ((vtop->r & (VT_VALMASK | VT_LVAL | VT_SYM)) != VT_CONST)
4266 expect("constant expression");
4267 c = vtop->c.i;
4268 vpop();
4269 return c;
4272 /* return the label token if current token is a label, otherwise
4273 return zero */
4274 static int is_label(void)
4276 int last_tok;
4278 /* fast test first */
4279 if (tok < TOK_UIDENT)
4280 return 0;
4281 /* no need to save tokc because tok is an identifier */
4282 last_tok = tok;
4283 next();
4284 if (tok == ':') {
4285 next();
4286 return last_tok;
4287 } else {
4288 unget_tok(last_tok);
4289 return 0;
4293 static void block(int *bsym, int *csym, int *case_sym, int *def_sym,
4294 int case_reg, int is_expr)
4296 int a, b, c, d;
4297 Sym *s;
4299 /* generate line number info */
4300 if (tcc_state->do_debug &&
4301 (last_line_num != file->line_num || last_ind != ind)) {
4302 put_stabn(N_SLINE, 0, file->line_num, ind - func_ind);
4303 last_ind = ind;
4304 last_line_num = file->line_num;
4307 if (is_expr) {
4308 /* default return value is (void) */
4309 vpushi(0);
4310 vtop->type.t = VT_VOID;
4313 if (tok == TOK_IF) {
4314 /* if test */
4315 next();
4316 skip('(');
4317 gexpr();
4318 skip(')');
4319 a = gtst(1, 0);
4320 block(bsym, csym, case_sym, def_sym, case_reg, 0);
4321 c = tok;
4322 if (c == TOK_ELSE) {
4323 next();
4324 d = gjmp(0);
4325 gsym(a);
4326 block(bsym, csym, case_sym, def_sym, case_reg, 0);
4327 gsym(d); /* patch else jmp */
4328 } else
4329 gsym(a);
4330 } else if (tok == TOK_WHILE) {
4331 next();
4332 d = ind;
4333 skip('(');
4334 gexpr();
4335 skip(')');
4336 a = gtst(1, 0);
4337 b = 0;
4338 block(&a, &b, case_sym, def_sym, case_reg, 0);
4339 gjmp_addr(d);
4340 gsym(a);
4341 gsym_addr(b, d);
4342 } else if (tok == '{') {
4343 Sym *llabel;
4345 next();
4346 /* record local declaration stack position */
4347 s = local_stack;
4348 llabel = local_label_stack;
4349 /* handle local labels declarations */
4350 if (tok == TOK_LABEL) {
4351 next();
4352 for(;;) {
4353 if (tok < TOK_UIDENT)
4354 expect("label identifier");
4355 label_push(&local_label_stack, tok, LABEL_DECLARED);
4356 next();
4357 if (tok == ',') {
4358 next();
4359 } else {
4360 skip(';');
4361 break;
4365 while (tok != '}') {
4366 decl(VT_LOCAL);
4367 if (tok != '}') {
4368 if (is_expr)
4369 vpop();
4370 block(bsym, csym, case_sym, def_sym, case_reg, is_expr);
4373 /* pop locally defined labels */
4374 label_pop(&local_label_stack, llabel);
4375 if(is_expr) {
4376 /* XXX: this solution makes only valgrind happy...
4377 triggered by gcc.c-torture/execute/20000917-1.c */
4378 Sym *p;
4379 switch(vtop->type.t & VT_BTYPE) {
4380 case VT_PTR:
4381 case VT_STRUCT:
4382 case VT_ENUM:
4383 case VT_FUNC:
4384 for(p=vtop->type.ref;p;p=p->prev)
4385 if(p->prev==s)
4386 error("unsupported expression type");
4389 /* pop locally defined symbols */
4390 sym_pop(&local_stack, s);
4391 next();
4392 } else if (tok == TOK_RETURN) {
4393 next();
4394 if (tok != ';') {
4395 gexpr();
4396 gen_assign_cast(&func_vt);
4397 if ((func_vt.t & VT_BTYPE) == VT_STRUCT) {
4398 CType type;
4399 /* if returning structure, must copy it to implicit
4400 first pointer arg location */
4401 #ifdef TCC_ARM_EABI
4402 int align, size;
4403 size = type_size(&func_vt,&align);
4404 if(size <= 4)
4406 if((vtop->r != (VT_LOCAL | VT_LVAL) || (vtop->c.i & 3))
4407 && (align & 3))
4409 int addr;
4410 loc = (loc - size) & -4;
4411 addr = loc;
4412 type = func_vt;
4413 vset(&type, VT_LOCAL | VT_LVAL, addr);
4414 vswap();
4415 vstore();
4416 vset(&int_type, VT_LOCAL | VT_LVAL, addr);
4418 vtop->type = int_type;
4419 gv(RC_IRET);
4420 } else {
4421 #endif
4422 type = func_vt;
4423 mk_pointer(&type);
4424 vset(&type, VT_LOCAL | VT_LVAL, func_vc);
4425 indir();
4426 vswap();
4427 /* copy structure value to pointer */
4428 vstore();
4429 #ifdef TCC_ARM_EABI
4431 #endif
4432 } else if (is_float(func_vt.t)) {
4433 gv(rc_fret(func_vt.t));
4434 } else {
4435 gv(RC_IRET);
4437 vtop--; /* NOT vpop() because on x86 it would flush the fp stack */
4439 skip(';');
4440 rsym = gjmp(rsym); /* jmp */
4441 } else if (tok == TOK_BREAK) {
4442 /* compute jump */
4443 if (!bsym)
4444 error("cannot break");
4445 *bsym = gjmp(*bsym);
4446 next();
4447 skip(';');
4448 } else if (tok == TOK_CONTINUE) {
4449 /* compute jump */
4450 if (!csym)
4451 error("cannot continue");
4452 *csym = gjmp(*csym);
4453 next();
4454 skip(';');
4455 } else if (tok == TOK_FOR) {
4456 int e;
4457 next();
4458 skip('(');
4459 s = local_stack;
4460 if (tok != ';') {
4461 /* c99 for-loop init decl? */
4462 if (!decl0(VT_LOCAL, 1)) {
4463 /* no, regular for-loop init expr */
4464 gexpr();
4465 vpop();
4468 skip(';');
4469 d = ind;
4470 c = ind;
4471 a = 0;
4472 b = 0;
4473 if (tok != ';') {
4474 gexpr();
4475 a = gtst(1, 0);
4477 skip(';');
4478 if (tok != ')') {
4479 e = gjmp(0);
4480 c = ind;
4481 gexpr();
4482 vpop();
4483 gjmp_addr(d);
4484 gsym(e);
4486 skip(')');
4487 block(&a, &b, case_sym, def_sym, case_reg, 0);
4488 gjmp_addr(c);
4489 gsym(a);
4490 gsym_addr(b, c);
4491 sym_pop(&local_stack, s);
4492 } else
4493 if (tok == TOK_DO) {
4494 next();
4495 a = 0;
4496 b = 0;
4497 d = ind;
4498 block(&a, &b, case_sym, def_sym, case_reg, 0);
4499 skip(TOK_WHILE);
4500 skip('(');
4501 gsym(b);
4502 gexpr();
4503 c = gtst(0, 0);
4504 gsym_addr(c, d);
4505 skip(')');
4506 gsym(a);
4507 skip(';');
4508 } else
4509 if (tok == TOK_SWITCH) {
4510 next();
4511 skip('(');
4512 gexpr();
4513 /* XXX: other types than integer */
4514 case_reg = gv(RC_INT);
4515 vpop();
4516 skip(')');
4517 a = 0;
4518 b = gjmp(0); /* jump to first case */
4519 c = 0;
4520 block(&a, csym, &b, &c, case_reg, 0);
4521 /* if no default, jmp after switch */
4522 if (c == 0)
4523 c = ind;
4524 /* default label */
4525 gsym_addr(b, c);
4526 /* break label */
4527 gsym(a);
4528 } else
4529 if (tok == TOK_CASE) {
4530 int v1, v2;
4531 if (!case_sym)
4532 expect("switch");
4533 next();
4534 v1 = expr_const();
4535 v2 = v1;
4536 if (gnu_ext && tok == TOK_DOTS) {
4537 next();
4538 v2 = expr_const();
4539 if (v2 < v1)
4540 warning("empty case range");
4542 /* since a case is like a label, we must skip it with a jmp */
4543 b = gjmp(0);
4544 gsym(*case_sym);
4545 vseti(case_reg, 0);
4546 vpushi(v1);
4547 if (v1 == v2) {
4548 gen_op(TOK_EQ);
4549 *case_sym = gtst(1, 0);
4550 } else {
4551 gen_op(TOK_GE);
4552 *case_sym = gtst(1, 0);
4553 vseti(case_reg, 0);
4554 vpushi(v2);
4555 gen_op(TOK_LE);
4556 *case_sym = gtst(1, *case_sym);
4558 gsym(b);
4559 skip(':');
4560 is_expr = 0;
4561 goto block_after_label;
4562 } else
4563 if (tok == TOK_DEFAULT) {
4564 next();
4565 skip(':');
4566 if (!def_sym)
4567 expect("switch");
4568 if (*def_sym)
4569 error("too many 'default'");
4570 *def_sym = ind;
4571 is_expr = 0;
4572 goto block_after_label;
4573 } else
4574 if (tok == TOK_GOTO) {
4575 next();
4576 if (tok == '*' && gnu_ext) {
4577 /* computed goto */
4578 next();
4579 gexpr();
4580 if ((vtop->type.t & VT_BTYPE) != VT_PTR)
4581 expect("pointer");
4582 ggoto();
4583 } else if (tok >= TOK_UIDENT) {
4584 s = label_find(tok);
4585 /* put forward definition if needed */
4586 if (!s) {
4587 s = label_push(&global_label_stack, tok, LABEL_FORWARD);
4588 } else {
4589 if (s->r == LABEL_DECLARED)
4590 s->r = LABEL_FORWARD;
4592 /* label already defined */
4593 if (s->r & LABEL_FORWARD)
4594 s->jnext = gjmp(s->jnext);
4595 else
4596 gjmp_addr(s->jnext);
4597 next();
4598 } else {
4599 expect("label identifier");
4601 skip(';');
4602 } else if (tok == TOK_ASM1 || tok == TOK_ASM2 || tok == TOK_ASM3) {
4603 asm_instr();
4604 } else {
4605 b = is_label();
4606 if (b) {
4607 /* label case */
4608 s = label_find(b);
4609 if (s) {
4610 if (s->r == LABEL_DEFINED)
4611 error("duplicate label '%s'", get_tok_str(s->v, NULL));
4612 gsym(s->jnext);
4613 s->r = LABEL_DEFINED;
4614 } else {
4615 s = label_push(&global_label_stack, b, LABEL_DEFINED);
4617 s->jnext = ind;
4618 /* we accept this, but it is a mistake */
4619 block_after_label:
4620 if (tok == '}') {
4621 warning("deprecated use of label at end of compound statement");
4622 } else {
4623 if (is_expr)
4624 vpop();
4625 block(bsym, csym, case_sym, def_sym, case_reg, is_expr);
4627 } else {
4628 /* expression case */
4629 if (tok != ';') {
4630 if (is_expr) {
4631 vpop();
4632 gexpr();
4633 } else {
4634 gexpr();
4635 vpop();
4638 skip(';');
4643 /* t is the array or struct type. c is the array or struct
4644 address. cur_index/cur_field is the pointer to the current
4645 value. 'size_only' is true if only size info is needed (only used
4646 in arrays) */
4647 static void decl_designator(CType *type, Section *sec, unsigned long c,
4648 int *cur_index, Sym **cur_field,
4649 int size_only)
4651 Sym *s, *f;
4652 int notfirst, index, index_last, align, l, nb_elems, elem_size;
4653 CType type1;
4655 notfirst = 0;
4656 elem_size = 0;
4657 nb_elems = 1;
4658 if (gnu_ext && (l = is_label()) != 0)
4659 goto struct_field;
4660 while (tok == '[' || tok == '.') {
4661 if (tok == '[') {
4662 if (!(type->t & VT_ARRAY))
4663 expect("array type");
4664 s = type->ref;
4665 next();
4666 index = expr_const();
4667 if (index < 0 || (s->c >= 0 && index >= s->c))
4668 expect("invalid index");
4669 if (tok == TOK_DOTS && gnu_ext) {
4670 next();
4671 index_last = expr_const();
4672 if (index_last < 0 ||
4673 (s->c >= 0 && index_last >= s->c) ||
4674 index_last < index)
4675 expect("invalid index");
4676 } else {
4677 index_last = index;
4679 skip(']');
4680 if (!notfirst)
4681 *cur_index = index_last;
4682 type = pointed_type(type);
4683 elem_size = type_size(type, &align);
4684 c += index * elem_size;
4685 /* NOTE: we only support ranges for last designator */
4686 nb_elems = index_last - index + 1;
4687 if (nb_elems != 1) {
4688 notfirst = 1;
4689 break;
4691 } else {
4692 next();
4693 l = tok;
4694 next();
4695 struct_field:
4696 if ((type->t & VT_BTYPE) != VT_STRUCT)
4697 expect("struct/union type");
4698 s = type->ref;
4699 l |= SYM_FIELD;
4700 f = s->next;
4701 while (f) {
4702 if (f->v == l)
4703 break;
4704 f = f->next;
4706 if (!f)
4707 expect("field");
4708 if (!notfirst)
4709 *cur_field = f;
4710 /* XXX: fix this mess by using explicit storage field */
4711 type1 = f->type;
4712 type1.t |= (type->t & ~VT_TYPE);
4713 type = &type1;
4714 c += f->c;
4716 notfirst = 1;
4718 if (notfirst) {
4719 if (tok == '=') {
4720 next();
4721 } else {
4722 if (!gnu_ext)
4723 expect("=");
4725 } else {
4726 if (type->t & VT_ARRAY) {
4727 index = *cur_index;
4728 type = pointed_type(type);
4729 c += index * type_size(type, &align);
4730 } else {
4731 f = *cur_field;
4732 if (!f)
4733 error("too many field init");
4734 /* XXX: fix this mess by using explicit storage field */
4735 type1 = f->type;
4736 type1.t |= (type->t & ~VT_TYPE);
4737 type = &type1;
4738 c += f->c;
4741 decl_initializer(type, sec, c, 0, size_only);
4743 /* XXX: make it more general */
4744 if (!size_only && nb_elems > 1) {
4745 unsigned long c_end;
4746 uint8_t *src, *dst;
4747 int i;
4749 if (!sec)
4750 error("range init not supported yet for dynamic storage");
4751 c_end = c + nb_elems * elem_size;
4752 if (c_end > sec->data_allocated)
4753 section_realloc(sec, c_end);
4754 src = sec->data + c;
4755 dst = src;
4756 for(i = 1; i < nb_elems; i++) {
4757 dst += elem_size;
4758 memcpy(dst, src, elem_size);
4763 #define EXPR_VAL 0
4764 #define EXPR_CONST 1
4765 #define EXPR_ANY 2
4767 /* store a value or an expression directly in global data or in local array */
4768 static void init_putv(CType *type, Section *sec, unsigned long c,
4769 int v, int expr_type)
4771 int saved_global_expr, bt, bit_pos, bit_size;
4772 void *ptr;
4773 unsigned long long bit_mask;
4774 CType dtype;
4776 switch(expr_type) {
4777 case EXPR_VAL:
4778 vpushi(v);
4779 break;
4780 case EXPR_CONST:
4781 /* compound literals must be allocated globally in this case */
4782 saved_global_expr = global_expr;
4783 global_expr = 1;
4784 expr_const1();
4785 global_expr = saved_global_expr;
4786 /* NOTE: symbols are accepted */
4787 if ((vtop->r & (VT_VALMASK | VT_LVAL)) != VT_CONST)
4788 error("initializer element is not constant");
4789 break;
4790 case EXPR_ANY:
4791 expr_eq();
4792 break;
4795 dtype = *type;
4796 dtype.t &= ~VT_CONSTANT; /* need to do that to avoid false warning */
4798 if (sec) {
4799 /* XXX: not portable */
4800 /* XXX: generate error if incorrect relocation */
4801 gen_assign_cast(&dtype);
4802 bt = type->t & VT_BTYPE;
4803 /* we'll write at most 12 bytes */
4804 if (c + 12 > sec->data_allocated) {
4805 section_realloc(sec, c + 12);
4807 ptr = sec->data + c;
4808 /* XXX: make code faster ? */
4809 if (!(type->t & VT_BITFIELD)) {
4810 bit_pos = 0;
4811 bit_size = 32;
4812 bit_mask = -1LL;
4813 } else {
4814 bit_pos = (vtop->type.t >> VT_STRUCT_SHIFT) & 0x3f;
4815 bit_size = (vtop->type.t >> (VT_STRUCT_SHIFT + 6)) & 0x3f;
4816 bit_mask = (1LL << bit_size) - 1;
4818 if ((vtop->r & VT_SYM) &&
4819 (bt == VT_BYTE ||
4820 bt == VT_SHORT ||
4821 bt == VT_DOUBLE ||
4822 bt == VT_LDOUBLE ||
4823 bt == VT_LLONG ||
4824 (bt == VT_INT && bit_size != 32)))
4825 error("initializer element is not computable at load time");
4826 switch(bt) {
4827 case VT_BOOL:
4828 vtop->c.i = (vtop->c.i != 0);
4829 case VT_BYTE:
4830 *(char *)ptr |= (vtop->c.i & bit_mask) << bit_pos;
4831 break;
4832 case VT_SHORT:
4833 *(short *)ptr |= (vtop->c.i & bit_mask) << bit_pos;
4834 break;
4835 case VT_DOUBLE:
4836 *(double *)ptr = vtop->c.d;
4837 break;
4838 case VT_LDOUBLE:
4839 *(long double *)ptr = vtop->c.ld;
4840 break;
4841 case VT_LLONG:
4842 *(long long *)ptr |= (vtop->c.ll & bit_mask) << bit_pos;
4843 break;
4844 default:
4845 if (vtop->r & VT_SYM) {
4846 greloc(sec, vtop->sym, c, R_DATA_PTR);
4848 *(int *)ptr |= (vtop->c.i & bit_mask) << bit_pos;
4849 break;
4851 vtop--;
4852 } else {
4853 vset(&dtype, VT_LOCAL|VT_LVAL, c);
4854 vswap();
4855 vstore();
4856 vpop();
4860 /* put zeros for variable based init */
4861 static void init_putz(CType *t, Section *sec, unsigned long c, int size)
4863 if (sec) {
4864 /* nothing to do because globals are already set to zero */
4865 } else {
4866 vpush_global_sym(&func_old_type, TOK_memset);
4867 vseti(VT_LOCAL, c);
4868 vpushi(0);
4869 vpushi(size);
4870 gfunc_call(3);
4874 /* 't' contains the type and storage info. 'c' is the offset of the
4875 object in section 'sec'. If 'sec' is NULL, it means stack based
4876 allocation. 'first' is true if array '{' must be read (multi
4877 dimension implicit array init handling). 'size_only' is true if
4878 size only evaluation is wanted (only for arrays). */
4879 static void decl_initializer(CType *type, Section *sec, unsigned long c,
4880 int first, int size_only)
4882 int index, array_length, n, no_oblock, nb, parlevel, parlevel1, i;
4883 int size1, align1, expr_type;
4884 Sym *s, *f;
4885 CType *t1;
4887 if (type->t & VT_VLA) {
4888 #if defined TCC_TARGET_I386 || defined TCC_TARGET_X86_64
4889 int a;
4890 CValue retcval;
4892 vpush_global_sym(&func_old_type, TOK_alloca);
4893 vla_runtime_type_size(type, &a);
4894 gfunc_call(1);
4896 /* return value */
4897 retcval.i = 0;
4898 vsetc(type, REG_IRET, &retcval);
4899 vset(type, VT_LOCAL|VT_LVAL, c);
4900 vswap();
4901 vstore();
4902 vpop();
4903 #else
4904 error("variable length arrays unsupported for this target");
4905 #endif
4906 } else if (type->t & VT_ARRAY) {
4907 s = type->ref;
4908 n = s->c;
4909 array_length = 0;
4910 t1 = pointed_type(type);
4911 size1 = type_size(t1, &align1);
4913 no_oblock = 1;
4914 if ((first && tok != TOK_LSTR && tok != TOK_STR) ||
4915 tok == '{') {
4916 if (tok != '{')
4917 error("character array initializer must be a literal,"
4918 " optionally enclosed in braces");
4919 skip('{');
4920 no_oblock = 0;
4923 /* only parse strings here if correct type (otherwise: handle
4924 them as ((w)char *) expressions */
4925 if ((tok == TOK_LSTR &&
4926 #ifdef TCC_TARGET_PE
4927 (t1->t & VT_BTYPE) == VT_SHORT && (t1->t & VT_UNSIGNED)
4928 #else
4929 (t1->t & VT_BTYPE) == VT_INT
4930 #endif
4931 ) || (tok == TOK_STR && (t1->t & VT_BTYPE) == VT_BYTE)) {
4932 while (tok == TOK_STR || tok == TOK_LSTR) {
4933 int cstr_len, ch;
4934 CString *cstr;
4936 cstr = tokc.cstr;
4937 /* compute maximum number of chars wanted */
4938 if (tok == TOK_STR)
4939 cstr_len = cstr->size;
4940 else
4941 cstr_len = cstr->size / sizeof(nwchar_t);
4942 cstr_len--;
4943 nb = cstr_len;
4944 if (n >= 0 && nb > (n - array_length))
4945 nb = n - array_length;
4946 if (!size_only) {
4947 if (cstr_len > nb)
4948 warning("initializer-string for array is too long");
4949 /* in order to go faster for common case (char
4950 string in global variable, we handle it
4951 specifically */
4952 if (sec && tok == TOK_STR && size1 == 1) {
4953 memcpy(sec->data + c + array_length, cstr->data, nb);
4954 } else {
4955 for(i=0;i<nb;i++) {
4956 if (tok == TOK_STR)
4957 ch = ((unsigned char *)cstr->data)[i];
4958 else
4959 ch = ((nwchar_t *)cstr->data)[i];
4960 init_putv(t1, sec, c + (array_length + i) * size1,
4961 ch, EXPR_VAL);
4965 array_length += nb;
4966 next();
4968 /* only add trailing zero if enough storage (no
4969 warning in this case since it is standard) */
4970 if (n < 0 || array_length < n) {
4971 if (!size_only) {
4972 init_putv(t1, sec, c + (array_length * size1), 0, EXPR_VAL);
4974 array_length++;
4976 } else {
4977 index = 0;
4978 while (tok != '}') {
4979 decl_designator(type, sec, c, &index, NULL, size_only);
4980 if (n >= 0 && index >= n)
4981 error("index too large");
4982 /* must put zero in holes (note that doing it that way
4983 ensures that it even works with designators) */
4984 if (!size_only && array_length < index) {
4985 init_putz(t1, sec, c + array_length * size1,
4986 (index - array_length) * size1);
4988 index++;
4989 if (index > array_length)
4990 array_length = index;
4991 /* special test for multi dimensional arrays (may not
4992 be strictly correct if designators are used at the
4993 same time) */
4994 if (index >= n && no_oblock)
4995 break;
4996 if (tok == '}')
4997 break;
4998 skip(',');
5001 if (!no_oblock)
5002 skip('}');
5003 /* put zeros at the end */
5004 if (!size_only && n >= 0 && array_length < n) {
5005 init_putz(t1, sec, c + array_length * size1,
5006 (n - array_length) * size1);
5008 /* patch type size if needed */
5009 if (n < 0)
5010 s->c = array_length;
5011 } else if ((type->t & VT_BTYPE) == VT_STRUCT &&
5012 (sec || !first || tok == '{')) {
5013 int par_count;
5015 /* NOTE: the previous test is a specific case for automatic
5016 struct/union init */
5017 /* XXX: union needs only one init */
5019 /* XXX: this test is incorrect for local initializers
5020 beginning with ( without {. It would be much more difficult
5021 to do it correctly (ideally, the expression parser should
5022 be used in all cases) */
5023 par_count = 0;
5024 if (tok == '(') {
5025 AttributeDef ad1;
5026 CType type1;
5027 next();
5028 while (tok == '(') {
5029 par_count++;
5030 next();
5032 if (!parse_btype(&type1, &ad1))
5033 expect("cast");
5034 type_decl(&type1, &ad1, &n, TYPE_ABSTRACT);
5035 #if 0
5036 if (!is_assignable_types(type, &type1))
5037 error("invalid type for cast");
5038 #endif
5039 skip(')');
5041 no_oblock = 1;
5042 if (first || tok == '{') {
5043 skip('{');
5044 no_oblock = 0;
5046 s = type->ref;
5047 f = s->next;
5048 array_length = 0;
5049 index = 0;
5050 n = s->c;
5051 while (tok != '}') {
5052 decl_designator(type, sec, c, NULL, &f, size_only);
5053 index = f->c;
5054 if (!size_only && array_length < index) {
5055 init_putz(type, sec, c + array_length,
5056 index - array_length);
5058 index = index + type_size(&f->type, &align1);
5059 if (index > array_length)
5060 array_length = index;
5062 /* gr: skip fields from same union - ugly. */
5063 while (f->next) {
5064 ///printf("index: %2d %08x -- %2d %08x\n", f->c, f->type.t, f->next->c, f->next->type.t);
5065 /* test for same offset */
5066 if (f->next->c != f->c)
5067 break;
5068 /* if yes, test for bitfield shift */
5069 if ((f->type.t & VT_BITFIELD) && (f->next->type.t & VT_BITFIELD)) {
5070 int bit_pos_1 = (f->type.t >> VT_STRUCT_SHIFT) & 0x3f;
5071 int bit_pos_2 = (f->next->type.t >> VT_STRUCT_SHIFT) & 0x3f;
5072 //printf("bitfield %d %d\n", bit_pos_1, bit_pos_2);
5073 if (bit_pos_1 != bit_pos_2)
5074 break;
5076 f = f->next;
5079 f = f->next;
5080 if (no_oblock && f == NULL)
5081 break;
5082 if (tok == '}')
5083 break;
5084 skip(',');
5086 /* put zeros at the end */
5087 if (!size_only && array_length < n) {
5088 init_putz(type, sec, c + array_length,
5089 n - array_length);
5091 if (!no_oblock)
5092 skip('}');
5093 while (par_count) {
5094 skip(')');
5095 par_count--;
5097 } else if (tok == '{') {
5098 next();
5099 decl_initializer(type, sec, c, first, size_only);
5100 skip('}');
5101 } else if (size_only) {
5102 /* just skip expression */
5103 parlevel = parlevel1 = 0;
5104 while ((parlevel > 0 || parlevel1 > 0 ||
5105 (tok != '}' && tok != ',')) && tok != -1) {
5106 if (tok == '(')
5107 parlevel++;
5108 else if (tok == ')')
5109 parlevel--;
5110 else if (tok == '{')
5111 parlevel1++;
5112 else if (tok == '}')
5113 parlevel1--;
5114 next();
5116 } else {
5117 /* currently, we always use constant expression for globals
5118 (may change for scripting case) */
5119 expr_type = EXPR_CONST;
5120 if (!sec)
5121 expr_type = EXPR_ANY;
5122 init_putv(type, sec, c, 0, expr_type);
5126 /* parse an initializer for type 't' if 'has_init' is non zero, and
5127 allocate space in local or global data space ('r' is either
5128 VT_LOCAL or VT_CONST). If 'v' is non zero, then an associated
5129 variable 'v' with an associated name represented by 'asm_label' of
5130 scope 'scope' is declared before initializers are parsed. If 'v' is
5131 zero, then a reference to the new object is put in the value stack.
5132 If 'has_init' is 2, a special parsing is done to handle string
5133 constants. */
5134 static void decl_initializer_alloc(CType *type, AttributeDef *ad, int r,
5135 int has_init, int v, char *asm_label,
5136 int scope)
5138 int size, align, addr, data_offset;
5139 int level;
5140 ParseState saved_parse_state = {0};
5141 TokenString init_str;
5142 Section *sec;
5143 Sym *flexible_array;
5145 flexible_array = NULL;
5146 if ((type->t & VT_BTYPE) == VT_STRUCT) {
5147 Sym *field;
5148 field = type->ref;
5149 while (field && field->next)
5150 field = field->next;
5151 if (field->type.t & VT_ARRAY && field->type.ref->c < 0)
5152 flexible_array = field;
5155 size = type_size(type, &align);
5156 /* If unknown size, we must evaluate it before
5157 evaluating initializers because
5158 initializers can generate global data too
5159 (e.g. string pointers or ISOC99 compound
5160 literals). It also simplifies local
5161 initializers handling */
5162 tok_str_new(&init_str);
5163 if (size < 0 || (flexible_array && has_init)) {
5164 if (!has_init)
5165 error("unknown type size");
5166 /* get all init string */
5167 if (has_init == 2) {
5168 /* only get strings */
5169 while (tok == TOK_STR || tok == TOK_LSTR) {
5170 tok_str_add_tok(&init_str);
5171 next();
5173 } else {
5174 level = 0;
5175 while (level > 0 || (tok != ',' && tok != ';')) {
5176 if (tok < 0)
5177 error("unexpected end of file in initializer");
5178 tok_str_add_tok(&init_str);
5179 if (tok == '{')
5180 level++;
5181 else if (tok == '}') {
5182 level--;
5183 if (level <= 0) {
5184 next();
5185 break;
5188 next();
5191 tok_str_add(&init_str, -1);
5192 tok_str_add(&init_str, 0);
5194 /* compute size */
5195 save_parse_state(&saved_parse_state);
5197 macro_ptr = init_str.str;
5198 next();
5199 decl_initializer(type, NULL, 0, 1, 1);
5200 /* prepare second initializer parsing */
5201 macro_ptr = init_str.str;
5202 next();
5204 /* if still unknown size, error */
5205 size = type_size(type, &align);
5206 if (size < 0)
5207 error("unknown type size");
5209 if (flexible_array)
5210 size += flexible_array->type.ref->c * pointed_size(&flexible_array->type);
5211 /* take into account specified alignment if bigger */
5212 if (ad->aligned) {
5213 if (ad->aligned > align)
5214 align = ad->aligned;
5215 } else if (ad->packed) {
5216 align = 1;
5218 if ((r & VT_VALMASK) == VT_LOCAL) {
5219 sec = NULL;
5220 #ifdef CONFIG_TCC_BCHECK
5221 if (tcc_state->do_bounds_check && (type->t & VT_ARRAY)) {
5222 loc--;
5224 #endif
5225 loc = (loc - size) & -align;
5226 addr = loc;
5227 #ifdef CONFIG_TCC_BCHECK
5228 /* handles bounds */
5229 /* XXX: currently, since we do only one pass, we cannot track
5230 '&' operators, so we add only arrays */
5231 if (tcc_state->do_bounds_check && (type->t & VT_ARRAY)) {
5232 unsigned long *bounds_ptr;
5233 /* add padding between regions */
5234 loc--;
5235 /* then add local bound info */
5236 bounds_ptr = section_ptr_add(lbounds_section, 2 * sizeof(unsigned long));
5237 bounds_ptr[0] = addr;
5238 bounds_ptr[1] = size;
5240 #endif
5241 if (v) {
5242 /* local variable */
5243 sym_push(v, type, r, addr);
5244 } else {
5245 /* push local reference */
5246 vset(type, r, addr);
5248 } else {
5249 Sym *sym;
5251 sym = NULL;
5252 if (v && scope == VT_CONST) {
5253 /* see if the symbol was already defined */
5254 sym = sym_find(v);
5255 if (sym) {
5256 if (!is_compatible_types(&sym->type, type))
5257 error("incompatible types for redefinition of '%s'",
5258 get_tok_str(v, NULL));
5259 if (sym->type.t & VT_EXTERN) {
5260 /* if the variable is extern, it was not allocated */
5261 sym->type.t &= ~VT_EXTERN;
5262 /* set array size if it was ommited in extern
5263 declaration */
5264 if ((sym->type.t & VT_ARRAY) &&
5265 sym->type.ref->c < 0 &&
5266 type->ref->c >= 0)
5267 sym->type.ref->c = type->ref->c;
5268 } else {
5269 /* we accept several definitions of the same
5270 global variable. this is tricky, because we
5271 must play with the SHN_COMMON type of the symbol */
5272 /* XXX: should check if the variable was already
5273 initialized. It is incorrect to initialized it
5274 twice */
5275 /* no init data, we won't add more to the symbol */
5276 if (!has_init)
5277 goto no_alloc;
5282 /* allocate symbol in corresponding section */
5283 sec = ad->section;
5284 if (!sec) {
5285 if (has_init)
5286 sec = data_section;
5287 else if (tcc_state->nocommon)
5288 sec = bss_section;
5290 if (sec) {
5291 data_offset = sec->data_offset;
5292 data_offset = (data_offset + align - 1) & -align;
5293 addr = data_offset;
5294 /* very important to increment global pointer at this time
5295 because initializers themselves can create new initializers */
5296 data_offset += size;
5297 #ifdef CONFIG_TCC_BCHECK
5298 /* add padding if bound check */
5299 if (tcc_state->do_bounds_check)
5300 data_offset++;
5301 #endif
5302 sec->data_offset = data_offset;
5303 /* allocate section space to put the data */
5304 if (sec->sh_type != SHT_NOBITS &&
5305 data_offset > sec->data_allocated)
5306 section_realloc(sec, data_offset);
5307 /* align section if needed */
5308 if (align > sec->sh_addralign)
5309 sec->sh_addralign = align;
5310 } else {
5311 addr = 0; /* avoid warning */
5314 if (v) {
5315 if (scope != VT_CONST || !sym) {
5316 sym = sym_push(v, type, r | VT_SYM, 0);
5317 sym->asm_label = asm_label;
5319 /* update symbol definition */
5320 if (sec) {
5321 put_extern_sym(sym, sec, addr, size);
5322 } else {
5323 ElfW(Sym) *esym;
5324 /* put a common area */
5325 put_extern_sym(sym, NULL, align, size);
5326 /* XXX: find a nicer way */
5327 esym = &((ElfW(Sym) *)symtab_section->data)[sym->c];
5328 esym->st_shndx = SHN_COMMON;
5330 } else {
5331 CValue cval;
5333 /* push global reference */
5334 sym = get_sym_ref(type, sec, addr, size);
5335 cval.ul = 0;
5336 vsetc(type, VT_CONST | VT_SYM, &cval);
5337 vtop->sym = sym;
5339 /* patch symbol weakness */
5340 if (type->t & VT_WEAK)
5341 weaken_symbol(sym);
5342 #ifdef CONFIG_TCC_BCHECK
5343 /* handles bounds now because the symbol must be defined
5344 before for the relocation */
5345 if (tcc_state->do_bounds_check) {
5346 unsigned long *bounds_ptr;
5348 greloc(bounds_section, sym, bounds_section->data_offset, R_DATA_PTR);
5349 /* then add global bound info */
5350 bounds_ptr = section_ptr_add(bounds_section, 2 * sizeof(long));
5351 bounds_ptr[0] = 0; /* relocated */
5352 bounds_ptr[1] = size;
5354 #endif
5356 if (has_init || (type->t & VT_VLA)) {
5357 decl_initializer(type, sec, addr, 1, 0);
5358 /* restore parse state if needed */
5359 if (init_str.str) {
5360 tok_str_free(init_str.str);
5361 restore_parse_state(&saved_parse_state);
5363 /* patch flexible array member size back to -1, */
5364 /* for possible subsequent similar declarations */
5365 if (flexible_array)
5366 flexible_array->type.ref->c = -1;
5368 no_alloc: ;
5371 static void put_func_debug(Sym *sym)
5373 char buf[512];
5375 /* stabs info */
5376 /* XXX: we put here a dummy type */
5377 snprintf(buf, sizeof(buf), "%s:%c1",
5378 funcname, sym->type.t & VT_STATIC ? 'f' : 'F');
5379 put_stabs_r(buf, N_FUN, 0, file->line_num, 0,
5380 cur_text_section, sym->c);
5381 /* //gr gdb wants a line at the function */
5382 put_stabn(N_SLINE, 0, file->line_num, 0);
5383 last_ind = 0;
5384 last_line_num = 0;
5387 /* parse an old style function declaration list */
5388 /* XXX: check multiple parameter */
5389 static void func_decl_list(Sym *func_sym)
5391 AttributeDef ad;
5392 int v;
5393 Sym *s;
5394 CType btype, type;
5396 /* parse each declaration */
5397 while (tok != '{' && tok != ';' && tok != ',' && tok != TOK_EOF &&
5398 tok != TOK_ASM1 && tok != TOK_ASM2 && tok != TOK_ASM3) {
5399 if (!parse_btype(&btype, &ad))
5400 expect("declaration list");
5401 if (((btype.t & VT_BTYPE) == VT_ENUM ||
5402 (btype.t & VT_BTYPE) == VT_STRUCT) &&
5403 tok == ';') {
5404 /* we accept no variable after */
5405 } else {
5406 for(;;) {
5407 type = btype;
5408 type_decl(&type, &ad, &v, TYPE_DIRECT);
5409 /* find parameter in function parameter list */
5410 s = func_sym->next;
5411 while (s != NULL) {
5412 if ((s->v & ~SYM_FIELD) == v)
5413 goto found;
5414 s = s->next;
5416 error("declaration for parameter '%s' but no such parameter",
5417 get_tok_str(v, NULL));
5418 found:
5419 /* check that no storage specifier except 'register' was given */
5420 if (type.t & VT_STORAGE)
5421 error("storage class specified for '%s'", get_tok_str(v, NULL));
5422 convert_parameter_type(&type);
5423 /* we can add the type (NOTE: it could be local to the function) */
5424 s->type = type;
5425 /* accept other parameters */
5426 if (tok == ',')
5427 next();
5428 else
5429 break;
5432 skip(';');
5436 /* parse a function defined by symbol 'sym' and generate its code in
5437 'cur_text_section' */
5438 static void gen_function(Sym *sym)
5440 int saved_nocode_wanted = nocode_wanted;
5441 nocode_wanted = 0;
5442 ind = cur_text_section->data_offset;
5443 /* NOTE: we patch the symbol size later */
5444 put_extern_sym(sym, cur_text_section, ind, 0);
5445 funcname = get_tok_str(sym->v, NULL);
5446 func_ind = ind;
5447 /* put debug symbol */
5448 if (tcc_state->do_debug)
5449 put_func_debug(sym);
5450 /* push a dummy symbol to enable local sym storage */
5451 sym_push2(&local_stack, SYM_FIELD, 0, 0);
5452 gfunc_prolog(&sym->type);
5453 rsym = 0;
5454 block(NULL, NULL, NULL, NULL, 0, 0);
5455 gsym(rsym);
5456 gfunc_epilog();
5457 cur_text_section->data_offset = ind;
5458 label_pop(&global_label_stack, NULL);
5459 sym_pop(&local_stack, NULL); /* reset local stack */
5460 /* end of function */
5461 /* patch symbol size */
5462 ((ElfW(Sym) *)symtab_section->data)[sym->c].st_size =
5463 ind - func_ind;
5464 /* patch symbol weakness (this definition overrules any prototype) */
5465 if (sym->type.t & VT_WEAK)
5466 weaken_symbol(sym);
5467 if (tcc_state->do_debug) {
5468 put_stabn(N_FUN, 0, 0, ind - func_ind);
5470 /* It's better to crash than to generate wrong code */
5471 cur_text_section = NULL;
5472 funcname = ""; /* for safety */
5473 func_vt.t = VT_VOID; /* for safety */
5474 ind = 0; /* for safety */
5475 nocode_wanted = saved_nocode_wanted;
5478 ST_FUNC void gen_inline_functions(void)
5480 Sym *sym;
5481 int *str, inline_generated, i;
5482 struct InlineFunc *fn;
5484 /* iterate while inline function are referenced */
5485 for(;;) {
5486 inline_generated = 0;
5487 for (i = 0; i < tcc_state->nb_inline_fns; ++i) {
5488 fn = tcc_state->inline_fns[i];
5489 sym = fn->sym;
5490 if (sym && sym->c) {
5491 /* the function was used: generate its code and
5492 convert it to a normal function */
5493 str = fn->token_str;
5494 fn->sym = NULL;
5495 if (file)
5496 strcpy(file->filename, fn->filename);
5497 sym->r = VT_SYM | VT_CONST;
5498 sym->type.t &= ~VT_INLINE;
5500 macro_ptr = str;
5501 next();
5502 cur_text_section = text_section;
5503 gen_function(sym);
5504 macro_ptr = NULL; /* fail safe */
5506 inline_generated = 1;
5509 if (!inline_generated)
5510 break;
5512 for (i = 0; i < tcc_state->nb_inline_fns; ++i) {
5513 fn = tcc_state->inline_fns[i];
5514 str = fn->token_str;
5515 tok_str_free(str);
5517 dynarray_reset(&tcc_state->inline_fns, &tcc_state->nb_inline_fns);
5520 /* 'l' is VT_LOCAL or VT_CONST to define default storage type */
5521 static int decl0(int l, int is_for_loop_init)
5523 int v, has_init, r;
5524 CType type, btype;
5525 Sym *sym;
5526 AttributeDef ad;
5528 while (1) {
5529 if (!parse_btype(&btype, &ad)) {
5530 if (is_for_loop_init)
5531 return 0;
5532 /* skip redundant ';' */
5533 /* XXX: find more elegant solution */
5534 if (tok == ';') {
5535 next();
5536 continue;
5538 if (l == VT_CONST &&
5539 (tok == TOK_ASM1 || tok == TOK_ASM2 || tok == TOK_ASM3)) {
5540 /* global asm block */
5541 asm_global_instr();
5542 continue;
5544 /* special test for old K&R protos without explicit int
5545 type. Only accepted when defining global data */
5546 if (l == VT_LOCAL || tok < TOK_DEFINE)
5547 break;
5548 btype.t = VT_INT;
5550 if (((btype.t & VT_BTYPE) == VT_ENUM ||
5551 (btype.t & VT_BTYPE) == VT_STRUCT) &&
5552 tok == ';') {
5553 /* we accept no variable after */
5554 next();
5555 continue;
5557 while (1) { /* iterate thru each declaration */
5558 char *asm_label; // associated asm label
5559 type = btype;
5560 type_decl(&type, &ad, &v, TYPE_DIRECT);
5561 #if 0
5563 char buf[500];
5564 type_to_str(buf, sizeof(buf), t, get_tok_str(v, NULL));
5565 printf("type = '%s'\n", buf);
5567 #endif
5568 if ((type.t & VT_BTYPE) == VT_FUNC) {
5569 if ((type.t & VT_STATIC) && (l == VT_LOCAL)) {
5570 error("function without file scope cannot be static");
5572 /* if old style function prototype, we accept a
5573 declaration list */
5574 sym = type.ref;
5575 if (sym->c == FUNC_OLD)
5576 func_decl_list(sym);
5579 asm_label = NULL;
5580 if (gnu_ext && (tok == TOK_ASM1 || tok == TOK_ASM2 || tok == TOK_ASM3)) {
5581 CString astr;
5583 asm_label_instr(&astr);
5584 asm_label = tcc_strdup(astr.data);
5585 cstr_free(&astr);
5587 /* parse one last attribute list, after asm label */
5588 parse_attribute(&ad);
5591 if (ad.weak)
5592 type.t |= VT_WEAK;
5593 #ifdef TCC_TARGET_PE
5594 if (ad.func_import)
5595 type.t |= VT_IMPORT;
5596 if (ad.func_export)
5597 type.t |= VT_EXPORT;
5598 #endif
5599 if (tok == '{') {
5600 if (l == VT_LOCAL)
5601 error("cannot use local functions");
5602 if ((type.t & VT_BTYPE) != VT_FUNC)
5603 expect("function definition");
5605 /* reject abstract declarators in function definition */
5606 sym = type.ref;
5607 while ((sym = sym->next) != NULL)
5608 if (!(sym->v & ~SYM_FIELD))
5609 expect("identifier");
5611 /* XXX: cannot do better now: convert extern line to static inline */
5612 if ((type.t & (VT_EXTERN | VT_INLINE)) == (VT_EXTERN | VT_INLINE))
5613 type.t = (type.t & ~VT_EXTERN) | VT_STATIC;
5615 sym = sym_find(v);
5616 if (sym) {
5617 if ((sym->type.t & VT_BTYPE) != VT_FUNC)
5618 goto func_error1;
5620 r = sym->type.ref->r;
5621 /* use func_call from prototype if not defined */
5622 if (FUNC_CALL(r) != FUNC_CDECL
5623 && FUNC_CALL(type.ref->r) == FUNC_CDECL)
5624 FUNC_CALL(type.ref->r) = FUNC_CALL(r);
5626 /* use export from prototype */
5627 if (FUNC_EXPORT(r))
5628 FUNC_EXPORT(type.ref->r) = 1;
5630 /* use static from prototype */
5631 if (sym->type.t & VT_STATIC)
5632 type.t = (type.t & ~VT_EXTERN) | VT_STATIC;
5634 if (!is_compatible_types(&sym->type, &type)) {
5635 func_error1:
5636 error("incompatible types for redefinition of '%s'",
5637 get_tok_str(v, NULL));
5639 /* if symbol is already defined, then put complete type */
5640 sym->type = type;
5641 } else {
5642 /* put function symbol */
5643 sym = global_identifier_push(v, type.t, 0);
5644 sym->type.ref = type.ref;
5647 /* static inline functions are just recorded as a kind
5648 of macro. Their code will be emitted at the end of
5649 the compilation unit only if they are used */
5650 if ((type.t & (VT_INLINE | VT_STATIC)) ==
5651 (VT_INLINE | VT_STATIC)) {
5652 TokenString func_str;
5653 int block_level;
5654 struct InlineFunc *fn;
5655 const char *filename;
5657 tok_str_new(&func_str);
5659 block_level = 0;
5660 for(;;) {
5661 int t;
5662 if (tok == TOK_EOF)
5663 error("unexpected end of file");
5664 tok_str_add_tok(&func_str);
5665 t = tok;
5666 next();
5667 if (t == '{') {
5668 block_level++;
5669 } else if (t == '}') {
5670 block_level--;
5671 if (block_level == 0)
5672 break;
5675 tok_str_add(&func_str, -1);
5676 tok_str_add(&func_str, 0);
5677 filename = file ? file->filename : "";
5678 fn = tcc_malloc(sizeof *fn + strlen(filename));
5679 strcpy(fn->filename, filename);
5680 fn->sym = sym;
5681 fn->token_str = func_str.str;
5682 dynarray_add((void ***)&tcc_state->inline_fns, &tcc_state->nb_inline_fns, fn);
5684 } else {
5685 /* compute text section */
5686 cur_text_section = ad.section;
5687 if (!cur_text_section)
5688 cur_text_section = text_section;
5689 sym->r = VT_SYM | VT_CONST;
5690 gen_function(sym);
5692 break;
5693 } else {
5694 if (btype.t & VT_TYPEDEF) {
5695 /* save typedefed type */
5696 /* XXX: test storage specifiers ? */
5697 sym = sym_push(v, &type, INT_ATTR(&ad), 0);
5698 sym->type.t |= VT_TYPEDEF;
5699 } else {
5700 r = 0;
5701 if ((type.t & VT_BTYPE) == VT_FUNC) {
5702 /* external function definition */
5703 /* specific case for func_call attribute */
5704 type.ref->r = INT_ATTR(&ad);
5705 } else if (!(type.t & VT_ARRAY)) {
5706 /* not lvalue if array */
5707 r |= lvalue_type(type.t);
5709 has_init = (tok == '=');
5710 if (has_init && (type.t & VT_VLA))
5711 error("Variable length array cannot be initialized");
5712 if ((btype.t & VT_EXTERN) || ((type.t & VT_BTYPE) == VT_FUNC) ||
5713 ((type.t & VT_ARRAY) && (type.t & VT_STATIC) &&
5714 !has_init && l == VT_CONST && type.ref->c < 0)) {
5715 /* external variable or function */
5716 /* NOTE: as GCC, uninitialized global static
5717 arrays of null size are considered as
5718 extern */
5719 sym = external_sym(v, &type, r, asm_label);
5721 if (type.t & VT_WEAK)
5722 weaken_symbol(sym);
5724 if (ad.alias_target) {
5725 Section tsec;
5726 Elf32_Sym *esym;
5727 Sym *alias_target;
5729 alias_target = sym_find(ad.alias_target);
5730 if (!alias_target || !alias_target->c)
5731 error("unsupported forward __alias__ attribute");
5732 esym = &((Elf32_Sym *)symtab_section->data)[alias_target->c];
5733 tsec.sh_num = esym->st_shndx;
5734 put_extern_sym2(sym, &tsec, esym->st_value, esym->st_size, 0);
5736 } else {
5737 type.t |= (btype.t & VT_STATIC); /* Retain "static". */
5738 if (type.t & VT_STATIC)
5739 r |= VT_CONST;
5740 else
5741 r |= l;
5742 if (has_init)
5743 next();
5744 decl_initializer_alloc(&type, &ad, r, has_init, v, asm_label, l);
5747 if (tok != ',') {
5748 if (is_for_loop_init)
5749 return 1;
5750 skip(';');
5751 break;
5753 next();
5755 ad.aligned = 0;
5758 return 0;
5761 ST_FUNC void decl(int l)
5763 decl0(l, 0);