clean
[tinycc.git] / tccgen.c
bloba4881e0b1135adde2514b352ab22f13f70290fc2
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, ex_rc;
33 ST_DATA Section *text_section, *data_section, *bss_section; /* predefined sections */
34 ST_DATA Section *cur_text_section; /* current section where function code is generated */
35 #ifdef CONFIG_TCC_ASM
36 ST_DATA Section *last_text_section; /* to handle .previous asm directive */
37 #endif
38 #ifdef CONFIG_TCC_BCHECK
39 /* bound check related sections */
40 ST_DATA Section *bounds_section; /* contains global data bound description */
41 ST_DATA Section *lbounds_section; /* contains local data bound description */
42 #endif
43 /* symbol sections */
44 ST_DATA Section *symtab_section, *strtab_section;
45 /* debug sections */
46 ST_DATA Section *stab_section, *stabstr_section;
47 ST_DATA Sym *sym_free_first;
48 ST_DATA void **sym_pools;
49 ST_DATA int nb_sym_pools;
51 ST_DATA Sym *global_stack;
52 ST_DATA Sym *local_stack;
53 ST_DATA Sym *scope_stack_bottom;
54 ST_DATA Sym *define_stack;
55 ST_DATA Sym *global_label_stack;
56 ST_DATA Sym *local_label_stack;
58 ST_DATA int vla_sp_loc_tmp; /* vla_sp_loc is set to this when the value won't be needed later */
59 ST_DATA int vla_sp_root_loc; /* vla_sp_loc for SP before any VLAs were pushed */
60 ST_DATA int *vla_sp_loc; /* Pointer to variable holding location to store stack pointer on the stack when modifying stack pointer */
61 ST_DATA int vla_flags; /* VLA_* flags */
63 ST_DATA SValue __vstack[1+VSTACK_SIZE], *vtop;
65 ST_DATA int const_wanted; /* true if constant wanted */
66 ST_DATA int nocode_wanted; /* true if no code generation wanted for an expression */
67 ST_DATA int global_expr; /* true if compound literals must be allocated globally (used during initializers parsing */
68 ST_DATA CType func_vt; /* current function return type (used by return instruction) */
69 ST_DATA int func_var; /* true if current function is variadic (used by return instruction) */
70 ST_DATA int func_vc;
71 ST_DATA int last_line_num, last_ind, func_ind; /* debug last line number and pc */
72 ST_DATA char *funcname;
73 ST_DATA int pop_stack;
75 ST_DATA CType char_pointer_type, func_old_type, int_type, size_type;
77 /* ------------------------------------------------------------------------- */
78 static void gen_cast(CType *type);
79 static inline CType *pointed_type(CType *type);
80 static int is_compatible_types(CType *type1, CType *type2);
81 static int parse_btype(CType *type, AttributeDef *ad);
82 static void type_decl(CType *type, AttributeDef *ad, int *v, int td);
83 static void parse_expr_type(CType *type);
84 static void decl_initializer(CType *type, Section *sec, unsigned long c, int first, int size_only);
85 static void block(int *bsym, int *csym, int *case_sym, int *def_sym, int case_reg, int is_expr);
86 static void decl_initializer_alloc(CType *type, AttributeDef *ad, int r, int has_init, int v, char *asm_label, int scope);
87 static int decl0(int l, int is_for_loop_init);
88 static void expr_eq(void);
89 static void unary_type(CType *type);
90 static void vla_runtime_type_size(CType *type, int *a);
91 static void vla_sp_save(void);
92 static int is_compatible_parameter_types(CType *type1, CType *type2);
93 static void expr_type(CType *type);
94 ST_FUNC void vpush64(int ty, unsigned long long v);
95 ST_FUNC void vpush(CType *type);
96 ST_FUNC int gtst(int inv, int t);
97 ST_FUNC int is_btype_size(int bt);
99 ST_INLN int is_float(int t)
101 int bt;
102 bt = t & VT_BTYPE;
103 return bt == VT_LDOUBLE || bt == VT_DOUBLE || bt == VT_FLOAT || bt == VT_QFLOAT;
106 /* we use our own 'finite' function to avoid potential problems with
107 non standard math libs */
108 /* XXX: endianness dependent */
109 ST_FUNC int ieee_finite(double d)
111 int p[4];
112 memcpy(p, &d, sizeof(double));
113 return ((unsigned)((p[1] | 0x800fffff) + 1)) >> 31;
116 ST_FUNC void test_lvalue(void)
118 if (!(vtop->r & VT_LVAL))
119 expect("lvalue");
122 /* ------------------------------------------------------------------------- */
123 /* symbol allocator */
124 static Sym *__sym_malloc(void)
126 Sym *sym_pool, *sym, *last_sym;
127 int i;
129 sym_pool = tcc_malloc(SYM_POOL_NB * sizeof(Sym));
130 dynarray_add(&sym_pools, &nb_sym_pools, sym_pool);
132 last_sym = sym_free_first;
133 sym = sym_pool;
134 for(i = 0; i < SYM_POOL_NB; i++) {
135 sym->next = last_sym;
136 last_sym = sym;
137 sym++;
139 sym_free_first = last_sym;
140 return last_sym;
143 static inline Sym *sym_malloc(void)
145 Sym *sym;
146 sym = sym_free_first;
147 if (!sym)
148 sym = __sym_malloc();
149 sym_free_first = sym->next;
150 return sym;
153 ST_INLN void sym_free(Sym *sym)
155 sym->next = sym_free_first;
156 tcc_free(sym->asm_label);
157 sym_free_first = sym;
160 /* push, without hashing */
161 ST_FUNC Sym *sym_push2(Sym **ps, int v, int t, long c)
163 Sym *s;
164 if (ps == &local_stack) {
165 for (s = *ps; s && s != scope_stack_bottom; s = s->prev)
166 if (!(v & SYM_FIELD) && (v & ~SYM_STRUCT) < SYM_FIRST_ANOM && s->v == v)
167 tcc_error("incompatible types for redefinition of '%s'",
168 get_tok_str(v, NULL));
170 s = sym_malloc();
171 s->asm_label = NULL;
172 s->v = v;
173 s->type.t = t;
174 s->type.ref = NULL;
175 #ifdef _WIN64
176 s->d = NULL;
177 #endif
178 s->c = c;
179 s->next = NULL;
180 /* add in stack */
181 s->prev = *ps;
182 *ps = s;
183 return s;
186 /* find a symbol and return its associated structure. 's' is the top
187 of the symbol stack */
188 ST_FUNC Sym *sym_find2(Sym *s, int v)
190 while (s) {
191 if (s->v == v)
192 return s;
193 else if (s->v == -1)
194 return NULL;
195 s = s->prev;
197 return NULL;
200 /* structure lookup */
201 ST_INLN Sym *struct_find(int v)
203 v -= TOK_IDENT;
204 if ((unsigned)v >= (unsigned)(tok_ident - TOK_IDENT))
205 return NULL;
206 return table_ident[v]->sym_struct;
209 /* find an identifier */
210 ST_INLN Sym *sym_find(int v)
212 v -= TOK_IDENT;
213 if ((unsigned)v >= (unsigned)(tok_ident - TOK_IDENT))
214 return NULL;
215 return table_ident[v]->sym_identifier;
218 /* push a given symbol on the symbol stack */
219 ST_FUNC Sym *sym_push(int v, CType *type, int r, int c)
221 Sym *s, **ps;
222 TokenSym *ts;
224 if (local_stack)
225 ps = &local_stack;
226 else
227 ps = &global_stack;
228 s = sym_push2(ps, v, type->t, c);
229 s->type.ref = type->ref;
230 s->r = r;
231 /* don't record fields or anonymous symbols */
232 /* XXX: simplify */
233 if (!(v & SYM_FIELD) && (v & ~SYM_STRUCT) < SYM_FIRST_ANOM) {
234 /* record symbol in token array */
235 ts = table_ident[(v & ~SYM_STRUCT) - TOK_IDENT];
236 if (v & SYM_STRUCT)
237 ps = &ts->sym_struct;
238 else
239 ps = &ts->sym_identifier;
240 s->prev_tok = *ps;
241 *ps = s;
243 return s;
246 /* push a global identifier */
247 ST_FUNC Sym *global_identifier_push(int v, int t, int c)
249 Sym *s, **ps;
250 s = sym_push2(&global_stack, v, t, c);
251 /* don't record anonymous symbol */
252 if (v < SYM_FIRST_ANOM) {
253 ps = &table_ident[v - TOK_IDENT]->sym_identifier;
254 /* modify the top most local identifier, so that
255 sym_identifier will point to 's' when popped */
256 while (*ps != NULL)
257 ps = &(*ps)->prev_tok;
258 s->prev_tok = NULL;
259 *ps = s;
261 return s;
264 /* pop symbols until top reaches 'b' */
265 ST_FUNC void sym_pop(Sym **ptop, Sym *b)
267 Sym *s, *ss, **ps;
268 TokenSym *ts;
269 int v;
271 s = *ptop;
272 while(s != b) {
273 ss = s->prev;
274 v = s->v;
275 /* remove symbol in token array */
276 /* XXX: simplify */
277 if (!(v & SYM_FIELD) && (v & ~SYM_STRUCT) < SYM_FIRST_ANOM) {
278 ts = table_ident[(v & ~SYM_STRUCT) - TOK_IDENT];
279 if (v & SYM_STRUCT)
280 ps = &ts->sym_struct;
281 else
282 ps = &ts->sym_identifier;
283 *ps = s->prev_tok;
285 sym_free(s);
286 s = ss;
288 *ptop = b;
291 static void weaken_symbol(Sym *sym)
293 sym->type.t |= VT_WEAK;
294 if (sym->c > 0) {
295 int esym_type;
296 ElfW(Sym) *esym;
298 esym = &((ElfW(Sym) *)symtab_section->data)[sym->c];
299 esym_type = ELFW(ST_TYPE)(esym->st_info);
300 esym->st_info = ELFW(ST_INFO)(STB_WEAK, esym_type);
304 static void apply_visibility(Sym *sym, CType *type)
306 int vis = sym->type.t & VT_VIS_MASK;
307 int vis2 = type->t & VT_VIS_MASK;
308 if (vis == (STV_DEFAULT << VT_VIS_SHIFT))
309 vis = vis2;
310 else if (vis2 == (STV_DEFAULT << VT_VIS_SHIFT))
312 else
313 vis = (vis < vis2) ? vis : vis2;
314 sym->type.t &= ~VT_VIS_MASK;
315 sym->type.t |= vis;
317 if (sym->c > 0) {
318 ElfW(Sym) *esym;
320 esym = &((ElfW(Sym) *)symtab_section->data)[sym->c];
321 vis >>= VT_VIS_SHIFT;
322 esym->st_other = (esym->st_other & ~ELFW(ST_VISIBILITY)(-1)) | vis;
326 /* ------------------------------------------------------------------------- */
328 ST_FUNC void swap(int *p, int *q)
330 int t;
331 t = *p;
332 *p = *q;
333 *q = t;
336 static void vsetc(CType *type, int r, CValue *vc)
338 int v;
340 if (vtop >= vstack + (VSTACK_SIZE - 1))
341 tcc_error("memory full (vstack)");
342 /* cannot let cpu flags if other instruction are generated. Also
343 avoid leaving VT_JMP anywhere except on the top of the stack
344 because it would complicate the code generator. */
345 if (vtop >= vstack) {
346 v = vtop->r & VT_VALMASK;
347 if (v == VT_CMP || (v & ~1) == VT_JMP)
348 gv(RC_INT);
350 vtop++;
351 vtop->type = *type;
352 vtop->r = r;
353 vtop->r2 = VT_CONST;
354 vtop->c = *vc;
357 /* push constant of type "type" with useless value */
358 ST_FUNC void vpush(CType *type)
360 CValue cval;
361 vsetc(type, VT_CONST, &cval);
364 /* push integer constant */
365 ST_FUNC void vpushi(int v)
367 CValue cval;
368 cval.i = v;
369 vsetc(&int_type, VT_CONST, &cval);
372 /* push a pointer sized constant */
373 static void vpushs(addr_t v)
375 CValue cval;
376 cval.ptr_offset = v;
377 vsetc(&size_type, VT_CONST, &cval);
380 /* push arbitrary 64bit constant */
381 ST_FUNC void vpush64(int ty, unsigned long long v)
383 CValue cval;
384 CType ctype;
385 ctype.t = ty;
386 ctype.ref = NULL;
387 cval.ull = v;
388 vsetc(&ctype, VT_CONST, &cval);
391 /* push long long constant */
392 static inline void vpushll(long long v)
394 vpush64(VT_LLONG, v);
397 /* push a symbol value of TYPE */
398 static inline void vpushsym(CType *type, Sym *sym)
400 CValue cval;
401 cval.ptr_offset = 0;
402 vsetc(type, VT_CONST | VT_SYM, &cval);
403 vtop->sym = sym;
406 /* Return a static symbol pointing to a section */
407 ST_FUNC Sym *get_sym_ref(CType *type, Section *sec, unsigned long offset, unsigned long size)
409 int v;
410 Sym *sym;
412 v = anon_sym++;
413 sym = global_identifier_push(v, type->t | VT_STATIC, 0);
414 sym->type.ref = type->ref;
415 sym->r = VT_CONST | VT_SYM;
416 put_extern_sym(sym, sec, offset, size);
417 return sym;
420 /* push a reference to a section offset by adding a dummy symbol */
421 static void vpush_ref(CType *type, Section *sec, unsigned long offset, unsigned long size)
423 vpushsym(type, get_sym_ref(type, sec, offset, size));
426 /* define a new external reference to a symbol 'v' of type 'u' */
427 ST_FUNC Sym *external_global_sym(int v, CType *type, int r)
429 Sym *s;
431 s = sym_find(v);
432 if (!s) {
433 /* push forward reference */
434 s = global_identifier_push(v, type->t | VT_EXTERN, 0);
435 s->type.ref = type->ref;
436 s->r = r | VT_CONST | VT_SYM;
438 return s;
441 /* define a new external reference to a symbol 'v' with alternate asm
442 name 'asm_label' of type 'u'. 'asm_label' is equal to NULL if there
443 is no alternate name (most cases) */
444 static Sym *external_sym(int v, CType *type, int r, char *asm_label)
446 Sym *s;
448 s = sym_find(v);
449 if (!s) {
450 /* push forward reference */
451 s = sym_push(v, type, r | VT_CONST | VT_SYM, 0);
452 s->asm_label = asm_label;
453 s->type.t |= VT_EXTERN;
454 } else if (s->type.ref == func_old_type.ref) {
455 s->type.ref = type->ref;
456 s->r = r | VT_CONST | VT_SYM;
457 s->type.t |= VT_EXTERN;
458 } else if (!is_compatible_types(&s->type, type)) {
459 tcc_error("incompatible types for redefinition of '%s'",
460 get_tok_str(v, NULL));
462 /* Merge some storage attributes. */
463 if (type->t & VT_WEAK)
464 weaken_symbol(s);
466 if (type->t & VT_VIS_MASK)
467 apply_visibility(s, type);
469 return s;
472 /* push a reference to global symbol v */
473 ST_FUNC void vpush_global_sym(CType *type, int v)
475 vpushsym(type, external_global_sym(v, type, 0));
478 ST_FUNC void vset(CType *type, int r, int v)
480 CValue cval;
482 cval.i = v;
483 vsetc(type, r, &cval);
486 static void vseti(int r, int v)
488 CType type;
489 type.t = VT_INT;
490 type.ref = 0;
491 vset(&type, r, v);
494 ST_FUNC void vswap(void)
496 SValue tmp;
497 /* cannot let cpu flags if other instruction are generated. Also
498 avoid leaving VT_JMP anywhere except on the top of the stack
499 because it would complicate the code generator. */
500 if (vtop >= vstack) {
501 int v = vtop->r & VT_VALMASK;
502 if (v == VT_CMP || (v & ~1) == VT_JMP)
503 gv(RC_INT);
505 tmp = vtop[0];
506 vtop[0] = vtop[-1];
507 vtop[-1] = tmp;
509 /* XXX: +2% overall speed possible with optimized memswap
511 * memswap(&vtop[0], &vtop[1], sizeof *vtop);
515 ST_FUNC void vpushv(SValue *v)
517 if (vtop >= vstack + (VSTACK_SIZE - 1))
518 tcc_error("memory full (vstack)");
519 vtop++;
520 *vtop = *v;
523 static void vdup(void)
525 vpushv(vtop);
528 /* save r to the memory stack, and mark it as being free */
529 ST_FUNC void save_reg(int r)
531 int l, saved, size, align;
532 SValue *p, sv;
533 CType *type;
535 /* modify all stack values */
536 saved = 0;
537 l = 0;
538 for(p=vstack;p<=vtop;p++) {
539 if ((p->r & VT_VALMASK) == r ||
540 ((p->type.t & VT_BTYPE) == VT_LLONG && (p->r2 & VT_VALMASK) == r)) {
541 /* must save value on stack if not already done */
542 if (!saved) {
543 /* NOTE: must reload 'r' because r might be equal to r2 */
544 r = p->r & VT_VALMASK;
545 /* store register in the stack */
546 type = &p->type;
547 if ((p->r & VT_LVAL) ||
548 (!is_float(type->t) && (type->t & VT_BTYPE) != VT_LLONG))
549 #ifdef TCC_TARGET_X86_64
550 type = &char_pointer_type;
551 #else
552 type = &int_type;
553 #endif
554 size = type_size(type, &align);
555 loc = (loc - size) & -align;
556 sv.type.t = type->t;
557 sv.r = VT_LOCAL | VT_LVAL;
558 sv.c.ul = loc;
559 store(r, &sv);
560 #if defined(TCC_TARGET_I386) || defined(TCC_TARGET_X86_64)
561 /* x86 specific: need to pop fp register ST0 if saved */
562 if (r == TREG_ST0) {
563 o(0xd8dd); /* fstp %st(0) */
565 #endif
566 #ifndef TCC_TARGET_X86_64
567 /* special long long case */
568 if ((type->t & VT_BTYPE) == VT_LLONG) {
569 sv.c.ul += 4;
570 store(p->r2, &sv);
572 #endif
573 l = loc;
574 saved = 1;
576 /* mark that stack entry as being saved on the stack */
577 if (p->r & VT_LVAL) {
578 /* also clear the bounded flag because the
579 relocation address of the function was stored in
580 p->c.ul */
581 p->r = (p->r & ~(VT_VALMASK | VT_BOUNDED)) | VT_LLOCAL;
582 } else {
583 p->r = lvalue_type(p->type.t) | VT_LOCAL;
585 p->r2 = VT_CONST;
586 p->c.ul = l;
591 #ifdef TCC_TARGET_ARM
592 /* find a register of class 'rc2' with at most one reference on stack.
593 * If none, call get_reg(rc) */
594 ST_FUNC int get_reg_ex(int rc, int rc2)
596 int r;
597 SValue *p;
599 for(r=0;r<NB_REGS;r++) {
600 if (reg_classes[r] & rc2) {
601 int n;
602 n=0;
603 for(p = vstack; p <= vtop; p++) {
604 if ((p->r & VT_VALMASK) == r ||
605 (p->r2 & VT_VALMASK) == r)
606 n++;
608 if (n <= 1)
609 return r;
612 return get_reg(rc);
614 #endif
616 /* find a free register of class 'rc'. If none, save one register */
617 ST_FUNC int get_reg(int rc)
619 int r;
620 SValue *p;
622 /* find a free register */
623 for(r=0;r<NB_REGS;r++) {
624 if (reg_classes[r] & rc) {
625 for(p=vstack;p<=vtop;p++) {
626 if ((p->r & VT_VALMASK) == r ||
627 (p->r2 & VT_VALMASK) == r)
628 goto notfound;
630 return r;
632 notfound: ;
635 /* no register left : free the first one on the stack (VERY
636 IMPORTANT to start from the bottom to ensure that we don't
637 spill registers used in gen_opi()) */
638 for(p=vstack;p<=vtop;p++) {
639 /* look at second register (if long long) */
640 r = p->r2 & VT_VALMASK;
641 if (r < VT_CONST && (reg_classes[r] & rc))
642 goto save_found;
643 r = p->r & VT_VALMASK;
644 if (r < VT_CONST && (reg_classes[r] & rc)) {
645 save_found:
646 save_reg(r);
647 return r;
650 /* Should never comes here */
651 return -1;
654 /* save registers up to (vtop - n) stack entry */
655 ST_FUNC void save_regs(int n)
657 int r;
658 SValue *p, *p1;
659 p1 = vtop - n;
660 for(p = vstack;p <= p1; p++) {
661 r = p->r & VT_VALMASK;
662 if (r < VT_CONST) {
663 save_reg(r);
668 /* move register 's' (of type 't') to 'r', and flush previous value of r to memory
669 if needed */
670 static void move_reg(int r, int s, int t)
672 SValue sv;
674 if (r != s) {
675 save_reg(r);
676 sv.type.t = t;
677 sv.type.ref = NULL;
678 sv.r = s;
679 sv.c.ul = 0;
680 load(r, &sv);
684 /* get address of vtop (vtop MUST BE an lvalue) */
685 static void gaddrof(void)
687 if (vtop->r & VT_REF)
688 gv(RC_INT);
689 vtop->r &= ~VT_LVAL;
690 /* tricky: if saved lvalue, then we can go back to lvalue */
691 if ((vtop->r & VT_VALMASK) == VT_LLOCAL)
692 vtop->r = (vtop->r & ~(VT_VALMASK | VT_LVAL_TYPE)) | VT_LOCAL | VT_LVAL;
697 #ifdef CONFIG_TCC_BCHECK
698 /* generate lvalue bound code */
699 static void gbound(void)
701 int lval_type;
702 CType type1;
704 vtop->r &= ~VT_MUSTBOUND;
705 /* if lvalue, then use checking code before dereferencing */
706 if (vtop->r & VT_LVAL) {
707 /* if not VT_BOUNDED value, then make one */
708 if (!(vtop->r & VT_BOUNDED)) {
709 lval_type = vtop->r & (VT_LVAL_TYPE | VT_LVAL);
710 /* must save type because we must set it to int to get pointer */
711 type1 = vtop->type;
712 vtop->type.t = VT_INT;
713 gaddrof();
714 vpushi(0);
715 gen_bounded_ptr_add();
716 vtop->r |= lval_type;
717 vtop->type = type1;
719 /* then check for dereferencing */
720 gen_bounded_ptr_deref();
723 #endif
725 /* store vtop a register belonging to class 'rc'. lvalues are
726 converted to values. Cannot be used if cannot be converted to
727 register value (such as structures). */
728 ST_FUNC int gv(int rc)
730 int r, bit_pos, bit_size, size, align, i, ft, sbt;
731 int rc2;
733 ft = vtop->type.t;
734 sbt = ft & VT_BTYPE;
735 /* NOTE: get_reg can modify vstack[] */
736 if (ft & VT_BITFIELD) {
737 CType type;
738 int bits;
739 bit_pos = (ft >> VT_STRUCT_SHIFT) & 0x3f;
740 bit_size = (ft >> (VT_STRUCT_SHIFT + 6)) & 0x3f;
741 /* remove bit field info to avoid loops */
742 ft = vtop->type.t &= ~(VT_BITFIELD | (-1 << VT_STRUCT_SHIFT));
743 /* cast to int to propagate signedness in following ops */
744 if (sbt == VT_LLONG) {
745 type.t = VT_LLONG;
746 bits = 64;
747 } else{
748 type.t = VT_INT;
749 bits = 32;
751 if((ft & VT_UNSIGNED) || sbt == VT_BOOL)
752 type.t |= VT_UNSIGNED;
753 gen_cast(&type);
754 /* generate shifts */
755 vpushi(bits - (bit_pos + bit_size));
756 gen_op(TOK_SHL);
757 vpushi(bits - bit_size);
758 /* NOTE: transformed to SHR if unsigned */
759 gen_op(TOK_SAR);
760 r = gv(rc);
761 } else {
762 if (is_float(vtop->type.t) &&
763 (vtop->r & (VT_VALMASK | VT_LVAL)) == VT_CONST) {
764 Sym *sym;
765 int *ptr;
766 unsigned long offset;
767 #if defined(TCC_TARGET_ARM) && !defined(TCC_ARM_VFP)
768 CValue check;
769 #endif
771 /* XXX: unify with initializers handling ? */
772 /* CPUs usually cannot use float constants, so we store them
773 generically in data segment */
774 size = type_size(&vtop->type, &align);
775 offset = (data_section->data_offset + align - 1) & -align;
776 data_section->data_offset = offset;
777 /* XXX: not portable yet */
778 #if defined(__i386__) || defined(__x86_64__)
779 /* Zero pad x87 tenbyte long doubles */
780 if (size == LDOUBLE_SIZE) {
781 vtop->c.tab[2] &= 0xffff;
782 #if LDOUBLE_SIZE == 16
783 vtop->c.tab[3] = 0;
784 #endif
786 #endif
787 ptr = section_ptr_add(data_section, size);
788 size = size >> 2;
789 #if defined(TCC_TARGET_ARM) && !defined(TCC_ARM_VFP)
790 check.d = 1;
791 if(check.tab[0])
792 for(i=0;i<size;i++)
793 ptr[i] = vtop->c.tab[size-1-i];
794 else
795 #endif
796 for(i=0;i<size;i++)
797 ptr[i] = vtop->c.tab[i];
798 sym = get_sym_ref(&vtop->type, data_section, offset, size << 2);
799 vtop->r |= VT_LVAL | VT_SYM;
800 vtop->sym = sym;
801 vtop->c.ptr_offset = 0;
803 #ifdef CONFIG_TCC_BCHECK
804 if (vtop->r & VT_MUSTBOUND)
805 gbound();
806 #endif
808 r = vtop->r & VT_VALMASK;
809 if((rc & ~RC_MASK) && (rc != RC_ST0))
810 rc2 = ex_rc;
811 else
812 rc2 = (rc & RC_FLOAT) ? RC_FLOAT : RC_INT;
814 /* need to reload if:
815 - constant
816 - lvalue (need to dereference pointer)
817 - already a register, but not in the right class */
818 if (r >= VT_CONST || (vtop->r & VT_LVAL) || !(reg_classes[r] & rc)
819 #ifdef TCC_TARGET_X86_64
820 || (sbt == VT_QLONG && !(reg_classes[vtop->r2] & rc2))
821 || (sbt == VT_QFLOAT && !(reg_classes[vtop->r2] & rc2))
822 #else
823 || (sbt == VT_LLONG && !(reg_classes[vtop->r2] & rc2))
824 #endif
825 || vtop->c.i)
827 r = get_reg(rc);
828 #ifdef TCC_TARGET_X86_64
829 if ((sbt == VT_QLONG) || (sbt == VT_QFLOAT))
830 #else
831 if (sbt == VT_LLONG)
832 #endif
834 #ifdef TCC_TARGET_X86_64
835 int load_size = 8, load_type = (sbt == VT_QLONG) ? VT_LLONG : VT_DOUBLE;
836 #else
837 int load_size = 4, load_type = VT_INT;
838 unsigned long long ll;
839 #endif
840 int r2;
841 /* two register type load : expand to two words
842 temporarily */
843 #ifndef TCC_TARGET_X86_64
844 if ((vtop->r & (VT_VALMASK | VT_LVAL)) == VT_CONST) {
845 /* load constant */
846 ll = vtop->c.ull;
847 vtop->c.ui = ll; /* first word */
848 load(r, vtop);
849 vtop->r = r; /* save register value */
850 vpushi(ll >> 32); /* second word */
851 } else
852 #endif
853 /* XXX: test to VT_CONST incorrect ? */
854 if (r >= VT_CONST || (vtop->r & VT_LVAL)) {
855 /* We do not want to modifier the long long
856 pointer here, so the safest (and less
857 efficient) is to save all the other registers
858 in the regs. use VT_TMP XXX: totally inefficient. */
859 /* load from memory */
860 vtop->type.t = load_type;
861 load(r, vtop);
862 vdup();
863 vtop[-1].r = r | VT_TMP; /* lock register value */
864 /* increment pointer to get second word */
865 vtop->type = char_pointer_type;
866 gaddrof();
867 vpushi(load_size);
868 gen_op('+');
869 vtop->r |= VT_LVAL;
870 vtop->type.t = load_type;
871 } else {
872 /* move registers */
873 load(r, vtop);
874 vdup();
875 vtop[-1].r = r | VT_TMP; /* lock register value */
876 vtop->r = vtop[-1].r2;
878 /* Allocate second register. Here we rely on the fact that
879 get_reg() tries first to free r2 of an SValue. */
880 r2 = get_reg(rc2);
881 load(r2, vtop);
882 vtop--;
883 /* write second register */
884 vtop->r2 = r2;
885 vtop->r &= ~VT_TMP;
886 vtop->type.t = ft;
887 } else if ((vtop->r & VT_LVAL) && !is_float(ft)) {
888 int t;
889 /* lvalue of scalar type : need to use lvalue type
890 because of possible cast */
891 t = ft;
892 /* compute memory access type */
893 if (vtop->r & VT_REF)
894 #ifdef TCC_TARGET_X86_64
895 t = VT_PTR;
896 #else
897 t = VT_INT;
898 #endif
899 else if (vtop->r & VT_LVAL_BYTE)
900 t = VT_BYTE;
901 else if (vtop->r & VT_LVAL_SHORT)
902 t = VT_SHORT;
903 if (vtop->r & VT_LVAL_UNSIGNED)
904 t |= VT_UNSIGNED;
905 vtop->type.t = t;
906 load(r, vtop);
907 /* restore wanted type */
908 vtop->type.t = ft;
909 } else {
910 /* one register type load */
911 load(r, vtop);
913 vtop->r = r;
914 vtop->c.ptr_offset = 0;
916 #ifdef TCC_TARGET_C67
917 /* uses register pairs for doubles */
918 if ((vtop->type.t & VT_BTYPE) == VT_DOUBLE)
919 vtop->r2 = r+1;
920 #endif
922 return r;
925 /* generate vtop[-1] and vtop[0] in resp. classes rc1 and rc2 */
926 ST_FUNC void gv2(int rc1, int rc2)
928 /* generate more generic register first. But VT_JMP or VT_CMP
929 values must be generated first in all cases to avoid possible
930 reload errors */
931 if (rc1 <= rc2) {
932 vswap();
933 gv(rc1);
934 vswap();
935 gv(rc2);
936 /* test if reload is needed for first register */
937 if ((vtop[-1].r & VT_VALMASK) >= VT_CONST) {
938 vswap();
939 gv(rc1);
940 vswap();
942 } else {
943 gv(rc2);
944 vswap();
945 gv(rc1);
946 vswap();
947 /* test if reload is needed for first register */
948 if ((vtop[0].r & VT_VALMASK) >= VT_CONST) {
949 gv(rc2);
954 /* wrapper around RC_FRET to return a register by type */
955 static int rc_fret(int t)
957 #ifdef TCC_TARGET_X86_64
958 if (t == VT_LDOUBLE) {
959 return RC_ST0;
961 #endif
962 ex_rc = RC_QRET;
963 return RC_FRET;
966 /* wrapper around REG_FRET to return a register by type */
967 static int reg_fret(int t)
969 #ifdef TCC_TARGET_X86_64
970 if (t == VT_LDOUBLE) {
971 return TREG_ST0;
973 #endif
974 return REG_FRET;
977 /* expand long long on stack in two int registers */
978 static void lexpand(void)
980 int u;
982 u = vtop->type.t & (VT_DEFSIGN | VT_UNSIGNED);
983 gv(RC_INT);
984 vdup();
985 vtop[0].r = vtop[-1].r2;
986 vtop[0].r2 = VT_CONST;
987 vtop[-1].r2 = VT_CONST;
988 vtop[0].type.t = VT_INT | u;
989 vtop[-1].type.t = VT_INT | u;
992 #ifdef TCC_TARGET_ARM
993 /* expand long long on stack */
994 ST_FUNC void lexpand_nr(void)
996 int u,v;
998 u = vtop->type.t & (VT_DEFSIGN | VT_UNSIGNED);
999 vdup();
1000 vtop->r2 = VT_CONST;
1001 vtop->type.t = VT_INT | u;
1002 v=vtop[-1].r & (VT_VALMASK | VT_LVAL);
1003 if (v == VT_CONST) {
1004 vtop[-1].c.ui = vtop->c.ull;
1005 vtop->c.ui = vtop->c.ull >> 32;
1006 vtop->r = VT_CONST;
1007 } else if (v == (VT_LVAL|VT_CONST) || v == (VT_LVAL|VT_LOCAL)) {
1008 vtop->c.ui += 4;
1009 vtop->r = vtop[-1].r;
1010 } else if (v > VT_CONST) {
1011 vtop--;
1012 lexpand();
1013 } else
1014 vtop->r = vtop[-1].r2;
1015 vtop[-1].r2 = VT_CONST;
1016 vtop[-1].type.t = VT_INT | u;
1018 #endif
1020 #ifndef TCC_TARGET_X86_64
1021 /* build a long long from two ints */
1022 static void lbuild(int t)
1024 gv2(RC_INT, RC_INT);
1025 vtop[-1].r2 = vtop[0].r;
1026 vtop[-1].type.t = t;
1027 vpop();
1029 #endif
1031 /* rotate n first stack elements to the bottom
1032 I1 ... In -> I2 ... In I1 [top is right]
1034 ST_FUNC void vrotb(int n)
1036 int i;
1037 SValue tmp;
1039 tmp = vtop[-n + 1];
1040 for(i=-n+1;i!=0;i++)
1041 vtop[i] = vtop[i+1];
1042 vtop[0] = tmp;
1045 /* rotate the n elements before entry e towards the top
1046 I1 ... In ... -> In I1 ... I(n-1) ... [top is right]
1048 ST_FUNC void vrote(SValue *e, int n)
1050 int i;
1051 SValue tmp;
1053 tmp = *e;
1054 for(i = 0;i < n - 1; i++)
1055 e[-i] = e[-i - 1];
1056 e[-n + 1] = tmp;
1059 /* rotate n first stack elements to the top
1060 I1 ... In -> In I1 ... I(n-1) [top is right]
1062 ST_FUNC void vrott(int n)
1064 vrote(vtop, n);
1067 /* pop stack value */
1068 ST_FUNC void vpop(void)
1070 int v;
1071 v = vtop->r & VT_VALMASK;
1072 #if defined(TCC_TARGET_I386) || defined(TCC_TARGET_X86_64)
1073 /* for x86, we need to pop the FP stack */
1074 if (v == TREG_ST0 && !nocode_wanted) {
1075 o(0xd8dd); /* fstp %st(0) */
1076 } else
1077 #endif
1078 if (v == VT_JMP || v == VT_JMPI) {
1079 /* need to put correct jump if && or || without test */
1080 gsym(vtop->c.ul);
1082 vtop--;
1085 /* convert stack entry to register and duplicate its value in another
1086 register */
1087 static void gv_dup(void)
1089 int rc, t, r, r1;
1090 SValue sv;
1091 t = vtop->type.t;
1092 #ifndef TCC_TARGET_X86_64
1093 if ((t & VT_BTYPE) == VT_LLONG) {
1094 lexpand();
1095 gv_dup();
1096 vswap();
1097 vrotb(3);
1098 gv_dup();
1099 vrotb(4);
1100 /* stack: H L L1 H1 */
1101 lbuild(t);
1102 vrott(3);
1103 vswap();
1104 lbuild(t);
1105 vswap();
1106 } else
1107 #endif
1109 /* duplicate value */
1110 if (is_float(t)) {
1111 rc = RC_FLOAT;
1112 #ifdef TCC_TARGET_X86_64
1113 if ((t & VT_BTYPE) == VT_LDOUBLE) {
1114 rc = RC_ST0;
1116 #endif
1117 }else
1118 rc = RC_INT;
1119 sv.type.t = t;
1120 r = gv(rc);
1121 r1 = get_reg(rc);
1122 sv.r = r;
1123 sv.c.ul = 0;
1124 load(r1, &sv); /* move r to r1 */
1125 vdup();
1126 /* duplicates value */
1127 if (r != r1)
1128 vtop->r = r1;
1131 #ifndef TCC_TARGET_X86_64
1132 /* generate CPU independent (unsigned) long long operations */
1133 static void gen_opl(int op)
1135 int t, a, b, op1, c, i;
1136 int func;
1137 unsigned short reg_iret = REG_IRET;
1138 unsigned short reg_lret = REG_LRET;
1139 SValue tmp;
1141 switch(op) {
1142 case '/':
1143 case TOK_PDIV:
1144 func = TOK___divdi3;
1145 goto gen_func;
1146 case TOK_UDIV:
1147 func = TOK___udivdi3;
1148 goto gen_func;
1149 case '%':
1150 func = TOK___moddi3;
1151 goto gen_mod_func;
1152 case TOK_UMOD:
1153 func = TOK___umoddi3;
1154 gen_mod_func:
1155 #ifdef TCC_ARM_EABI
1156 reg_iret = TREG_R2;
1157 reg_lret = TREG_R3;
1158 #endif
1159 gen_func:
1160 /* call generic long long function */
1161 vpush_global_sym(&func_old_type, func);
1162 vrott(3);
1163 gfunc_call(2);
1164 vpushi(0);
1165 vtop->r = reg_iret;
1166 vtop->r2 = reg_lret;
1167 break;
1168 case '^':
1169 case '&':
1170 case '|':
1171 case '*':
1172 case '+':
1173 case '-':
1174 t = vtop->type.t;
1175 vswap();
1176 lexpand();
1177 vrotb(3);
1178 lexpand();
1179 /* stack: L1 H1 L2 H2 */
1180 tmp = vtop[0];
1181 vtop[0] = vtop[-3];
1182 vtop[-3] = tmp;
1183 tmp = vtop[-2];
1184 vtop[-2] = vtop[-3];
1185 vtop[-3] = tmp;
1186 vswap();
1187 /* stack: H1 H2 L1 L2 */
1188 if (op == '*') {
1189 vpushv(vtop - 1);
1190 vpushv(vtop - 1);
1191 gen_op(TOK_UMULL);
1192 lexpand();
1193 /* stack: H1 H2 L1 L2 ML MH */
1194 for(i=0;i<4;i++)
1195 vrotb(6);
1196 /* stack: ML MH H1 H2 L1 L2 */
1197 tmp = vtop[0];
1198 vtop[0] = vtop[-2];
1199 vtop[-2] = tmp;
1200 /* stack: ML MH H1 L2 H2 L1 */
1201 gen_op('*');
1202 vrotb(3);
1203 vrotb(3);
1204 gen_op('*');
1205 /* stack: ML MH M1 M2 */
1206 gen_op('+');
1207 gen_op('+');
1208 } else if (op == '+' || op == '-') {
1209 /* XXX: add non carry method too (for MIPS or alpha) */
1210 if (op == '+')
1211 op1 = TOK_ADDC1;
1212 else
1213 op1 = TOK_SUBC1;
1214 gen_op(op1);
1215 /* stack: H1 H2 (L1 op L2) */
1216 vrotb(3);
1217 vrotb(3);
1218 gen_op(op1 + 1); /* TOK_xxxC2 */
1219 } else {
1220 gen_op(op);
1221 /* stack: H1 H2 (L1 op L2) */
1222 vrotb(3);
1223 vrotb(3);
1224 /* stack: (L1 op L2) H1 H2 */
1225 gen_op(op);
1226 /* stack: (L1 op L2) (H1 op H2) */
1228 /* stack: L H */
1229 lbuild(t);
1230 break;
1231 case TOK_SAR:
1232 case TOK_SHR:
1233 case TOK_SHL:
1234 if ((vtop->r & (VT_VALMASK | VT_LVAL | VT_SYM)) == VT_CONST) {
1235 t = vtop[-1].type.t;
1236 vswap();
1237 lexpand();
1238 vrotb(3);
1239 /* stack: L H shift */
1240 c = (int)vtop->c.i;
1241 /* constant: simpler */
1242 /* NOTE: all comments are for SHL. the other cases are
1243 done by swaping words */
1244 vpop();
1245 if (op != TOK_SHL)
1246 vswap();
1247 if (c >= 32) {
1248 /* stack: L H */
1249 vpop();
1250 if (c > 32) {
1251 vpushi(c - 32);
1252 gen_op(op);
1254 if (op != TOK_SAR) {
1255 vpushi(0);
1256 } else {
1257 gv_dup();
1258 vpushi(31);
1259 gen_op(TOK_SAR);
1261 vswap();
1262 } else {
1263 vswap();
1264 gv_dup();
1265 /* stack: H L L */
1266 vpushi(c);
1267 gen_op(op);
1268 vswap();
1269 vpushi(32 - c);
1270 if (op == TOK_SHL)
1271 gen_op(TOK_SHR);
1272 else
1273 gen_op(TOK_SHL);
1274 vrotb(3);
1275 /* stack: L L H */
1276 vpushi(c);
1277 if (op == TOK_SHL)
1278 gen_op(TOK_SHL);
1279 else
1280 gen_op(TOK_SHR);
1281 gen_op('|');
1283 if (op != TOK_SHL)
1284 vswap();
1285 lbuild(t);
1286 } else {
1287 /* XXX: should provide a faster fallback on x86 ? */
1288 switch(op) {
1289 case TOK_SAR:
1290 func = TOK___ashrdi3;
1291 goto gen_func;
1292 case TOK_SHR:
1293 func = TOK___lshrdi3;
1294 goto gen_func;
1295 case TOK_SHL:
1296 func = TOK___ashldi3;
1297 goto gen_func;
1300 break;
1301 default:
1302 /* compare operations */
1303 t = vtop->type.t;
1304 vswap();
1305 lexpand();
1306 vrotb(3);
1307 lexpand();
1308 /* stack: L1 H1 L2 H2 */
1309 tmp = vtop[-1];
1310 vtop[-1] = vtop[-2];
1311 vtop[-2] = tmp;
1312 /* stack: L1 L2 H1 H2 */
1313 /* compare high */
1314 op1 = op;
1315 /* when values are equal, we need to compare low words. since
1316 the jump is inverted, we invert the test too. */
1317 if (op1 == TOK_LT)
1318 op1 = TOK_LE;
1319 else if (op1 == TOK_GT)
1320 op1 = TOK_GE;
1321 else if (op1 == TOK_ULT)
1322 op1 = TOK_ULE;
1323 else if (op1 == TOK_UGT)
1324 op1 = TOK_UGE;
1325 a = 0;
1326 b = 0;
1327 gen_op(op1);
1328 if (op1 != TOK_NE) {
1329 a = gtst(1, 0);
1331 if (op != TOK_EQ) {
1332 /* generate non equal test */
1333 /* XXX: NOT PORTABLE yet */
1334 if (a == 0) {
1335 b = gtst(0, 0);
1336 } else {
1337 #if defined(TCC_TARGET_I386)
1338 b = psym(0x850f, 0);
1339 #elif defined(TCC_TARGET_ARM)
1340 b = ind;
1341 o(0x1A000000 | encbranch(ind, 0, 1));
1342 #elif defined(TCC_TARGET_C67)
1343 tcc_error("not implemented");
1344 #else
1345 #error not supported
1346 #endif
1349 /* compare low. Always unsigned */
1350 op1 = op;
1351 if (op1 == TOK_LT)
1352 op1 = TOK_ULT;
1353 else if (op1 == TOK_LE)
1354 op1 = TOK_ULE;
1355 else if (op1 == TOK_GT)
1356 op1 = TOK_UGT;
1357 else if (op1 == TOK_GE)
1358 op1 = TOK_UGE;
1359 gen_op(op1);
1360 a = gtst(1, a);
1361 gsym(b);
1362 vseti(VT_JMPI, a);
1363 break;
1366 #endif
1368 /* handle integer constant optimizations and various machine
1369 independent opt */
1370 static void gen_opic(int op)
1372 int c1, c2, t1, t2, n;
1373 SValue *v1, *v2;
1374 long long l1, l2;
1375 typedef unsigned long long U;
1377 v1 = vtop - 1;
1378 v2 = vtop;
1379 t1 = v1->type.t & VT_BTYPE;
1380 t2 = v2->type.t & VT_BTYPE;
1382 if (t1 == VT_LLONG)
1383 l1 = v1->c.ll;
1384 else if (v1->type.t & VT_UNSIGNED)
1385 l1 = v1->c.ui;
1386 else
1387 l1 = v1->c.i;
1389 if (t2 == VT_LLONG)
1390 l2 = v2->c.ll;
1391 else if (v2->type.t & VT_UNSIGNED)
1392 l2 = v2->c.ui;
1393 else
1394 l2 = v2->c.i;
1396 /* currently, we cannot do computations with forward symbols */
1397 c1 = (v1->r & (VT_VALMASK | VT_LVAL | VT_SYM)) == VT_CONST;
1398 c2 = (v2->r & (VT_VALMASK | VT_LVAL | VT_SYM)) == VT_CONST;
1399 if (c1 && c2) {
1400 switch(op) {
1401 case '+': l1 += l2; break;
1402 case '-': l1 -= l2; break;
1403 case '&': l1 &= l2; break;
1404 case '^': l1 ^= l2; break;
1405 case '|': l1 |= l2; break;
1406 case '*': l1 *= l2; break;
1408 case TOK_PDIV:
1409 case '/':
1410 case '%':
1411 case TOK_UDIV:
1412 case TOK_UMOD:
1413 /* if division by zero, generate explicit division */
1414 if (l2 == 0) {
1415 if (const_wanted)
1416 tcc_error("division by zero in constant");
1417 goto general_case;
1419 switch(op) {
1420 default: l1 /= l2; break;
1421 case '%': l1 %= l2; break;
1422 case TOK_UDIV: l1 = (U)l1 / l2; break;
1423 case TOK_UMOD: l1 = (U)l1 % l2; break;
1425 break;
1426 case TOK_SHL: l1 <<= l2; break;
1427 case TOK_SHR: l1 = (U)l1 >> l2; break;
1428 case TOK_SAR: l1 >>= l2; break;
1429 /* tests */
1430 case TOK_ULT: l1 = (U)l1 < (U)l2; break;
1431 case TOK_UGE: l1 = (U)l1 >= (U)l2; break;
1432 case TOK_EQ: l1 = l1 == l2; break;
1433 case TOK_NE: l1 = l1 != l2; break;
1434 case TOK_ULE: l1 = (U)l1 <= (U)l2; break;
1435 case TOK_UGT: l1 = (U)l1 > (U)l2; break;
1436 case TOK_LT: l1 = l1 < l2; break;
1437 case TOK_GE: l1 = l1 >= l2; break;
1438 case TOK_LE: l1 = l1 <= l2; break;
1439 case TOK_GT: l1 = l1 > l2; break;
1440 /* logical */
1441 case TOK_LAND: l1 = l1 && l2; break;
1442 case TOK_LOR: l1 = l1 || l2; break;
1443 default:
1444 goto general_case;
1446 v1->c.ll = l1;
1447 vtop--;
1448 } else {
1449 /* if commutative ops, put c2 as constant */
1450 if (c1 && (op == '+' || op == '&' || op == '^' ||
1451 op == '|' || op == '*')) {
1452 vswap();
1453 c2 = c1; //c = c1, c1 = c2, c2 = c;
1454 l2 = l1; //l = l1, l1 = l2, l2 = l;
1456 /* Filter out NOP operations like x*1, x-0, x&-1... */
1457 if (c2 && (((op == '*' || op == '/' || op == TOK_UDIV ||
1458 op == TOK_PDIV) &&
1459 l2 == 1) ||
1460 ((op == '+' || op == '-' || op == '|' || op == '^' ||
1461 op == TOK_SHL || op == TOK_SHR || op == TOK_SAR) &&
1462 l2 == 0) ||
1463 (op == '&' &&
1464 l2 == -1))) {
1465 /* nothing to do */
1466 vtop--;
1467 } else if (c2 && (op == '*' || op == TOK_PDIV || op == TOK_UDIV)) {
1468 /* try to use shifts instead of muls or divs */
1469 if (l2 > 0 && (l2 & (l2 - 1)) == 0) {
1470 n = -1;
1471 while (l2) {
1472 l2 >>= 1;
1473 n++;
1475 vtop->c.ll = n;
1476 if (op == '*')
1477 op = TOK_SHL;
1478 else if (op == TOK_PDIV)
1479 op = TOK_SAR;
1480 else
1481 op = TOK_SHR;
1483 goto general_case;
1484 } else if (c2 && (op == '+' || op == '-') &&
1485 (((vtop[-1].r & (VT_VALMASK | VT_LVAL | VT_SYM)) == (VT_CONST | VT_SYM))
1486 || (vtop[-1].r & (VT_VALMASK | VT_LVAL)) == VT_LOCAL)) {
1487 /* symbol + constant case */
1488 if (op == '-')
1489 l2 = -l2;
1490 vtop--;
1491 vtop->c.ll += l2;
1492 } else {
1493 general_case:
1494 if (!nocode_wanted) {
1495 /* call low level op generator */
1496 if (t1 == VT_LLONG || t2 == VT_LLONG)
1497 gen_opl(op);
1498 else
1499 gen_opi(op);
1500 } else {
1501 vtop--;
1507 /* generate a floating point operation with constant propagation */
1508 static void gen_opif(int op)
1510 int c1, c2;
1511 SValue *v1, *v2;
1512 long double f1, f2;
1514 v1 = vtop - 1;
1515 v2 = vtop;
1516 /* currently, we cannot do computations with forward symbols */
1517 c1 = (v1->r & (VT_VALMASK | VT_LVAL | VT_SYM)) == VT_CONST;
1518 c2 = (v2->r & (VT_VALMASK | VT_LVAL | VT_SYM)) == VT_CONST;
1519 if (c1 && c2) {
1520 if (v1->type.t == VT_FLOAT) {
1521 f1 = v1->c.f;
1522 f2 = v2->c.f;
1523 } else if (v1->type.t == VT_DOUBLE) {
1524 f1 = v1->c.d;
1525 f2 = v2->c.d;
1526 } else {
1527 f1 = v1->c.ld;
1528 f2 = v2->c.ld;
1531 /* NOTE: we only do constant propagation if finite number (not
1532 NaN or infinity) (ANSI spec) */
1533 if (!ieee_finite(f1) || !ieee_finite(f2))
1534 goto general_case;
1536 switch(op) {
1537 case '+': f1 += f2; break;
1538 case '-': f1 -= f2; break;
1539 case '*': f1 *= f2; break;
1540 case '/':
1541 if (f2 == 0.0) {
1542 if (const_wanted)
1543 tcc_error("division by zero in constant");
1544 goto general_case;
1546 f1 /= f2;
1547 break;
1548 /* XXX: also handles tests ? */
1549 default:
1550 goto general_case;
1552 /* XXX: overflow test ? */
1553 if (v1->type.t == VT_FLOAT) {
1554 v1->c.f = f1;
1555 } else if (v1->type.t == VT_DOUBLE) {
1556 v1->c.d = f1;
1557 } else {
1558 v1->c.ld = f1;
1560 vtop--;
1561 } else {
1562 general_case:
1563 if (!nocode_wanted) {
1564 gen_opf(op);
1565 } else {
1566 vtop--;
1571 static int pointed_size(CType *type)
1573 int align;
1574 return type_size(pointed_type(type), &align);
1577 static void vla_runtime_pointed_size(CType *type)
1579 int align;
1580 vla_runtime_type_size(pointed_type(type), &align);
1583 static inline int is_null_pointer(SValue *p)
1585 if ((p->r & (VT_VALMASK | VT_LVAL | VT_SYM)) != VT_CONST)
1586 return 0;
1587 return ((p->type.t & VT_BTYPE) == VT_INT && p->c.i == 0) ||
1588 ((p->type.t & VT_BTYPE) == VT_LLONG && p->c.ll == 0) ||
1589 ((p->type.t & VT_BTYPE) == VT_PTR && p->c.ptr_offset == 0);
1592 static inline int is_integer_btype(int bt)
1594 return (bt == VT_BYTE || bt == VT_SHORT ||
1595 bt == VT_INT || bt == VT_LLONG);
1598 /* check types for comparison or subtraction of pointers */
1599 static void check_comparison_pointer_types(SValue *p1, SValue *p2, int op)
1601 CType *type1, *type2, tmp_type1, tmp_type2;
1602 int bt1, bt2;
1604 /* null pointers are accepted for all comparisons as gcc */
1605 if (is_null_pointer(p1) || is_null_pointer(p2))
1606 return;
1607 type1 = &p1->type;
1608 type2 = &p2->type;
1609 bt1 = type1->t & VT_BTYPE;
1610 bt2 = type2->t & VT_BTYPE;
1611 /* accept comparison between pointer and integer with a warning */
1612 if ((is_integer_btype(bt1) || is_integer_btype(bt2)) && op != '-') {
1613 if (op != TOK_LOR && op != TOK_LAND )
1614 tcc_warning("comparison between pointer and integer");
1615 return;
1618 /* both must be pointers or implicit function pointers */
1619 if (bt1 == VT_PTR) {
1620 type1 = pointed_type(type1);
1621 } else if (bt1 != VT_FUNC)
1622 goto invalid_operands;
1624 if (bt2 == VT_PTR) {
1625 type2 = pointed_type(type2);
1626 } else if (bt2 != VT_FUNC) {
1627 invalid_operands:
1628 tcc_error("invalid operands to binary %s", get_tok_str(op, NULL));
1630 if ((type1->t & VT_BTYPE) == VT_VOID ||
1631 (type2->t & VT_BTYPE) == VT_VOID)
1632 return;
1633 tmp_type1 = *type1;
1634 tmp_type2 = *type2;
1635 tmp_type1.t &= ~(VT_DEFSIGN | VT_UNSIGNED | VT_CONSTANT | VT_VOLATILE);
1636 tmp_type2.t &= ~(VT_DEFSIGN | VT_UNSIGNED | VT_CONSTANT | VT_VOLATILE);
1637 if (!is_compatible_types(&tmp_type1, &tmp_type2)) {
1638 /* gcc-like error if '-' is used */
1639 if (op == '-')
1640 goto invalid_operands;
1641 else
1642 tcc_warning("comparison of distinct pointer types lacks a cast");
1646 /* generic gen_op: handles types problems */
1647 ST_FUNC void gen_op(int op)
1649 int u, t1, t2, bt1, bt2, t;
1650 CType type1;
1652 t1 = vtop[-1].type.t;
1653 t2 = vtop[0].type.t;
1654 bt1 = t1 & VT_BTYPE;
1655 bt2 = t2 & VT_BTYPE;
1657 if (bt1 == VT_PTR || bt2 == VT_PTR) {
1658 /* at least one operand is a pointer */
1659 /* relationnal op: must be both pointers */
1660 if (op >= TOK_ULT && op <= TOK_LOR) {
1661 check_comparison_pointer_types(vtop - 1, vtop, op);
1662 /* pointers are handled are unsigned */
1663 #ifdef TCC_TARGET_X86_64
1664 t = VT_LLONG | VT_UNSIGNED;
1665 #else
1666 t = VT_INT | VT_UNSIGNED;
1667 #endif
1668 goto std_op;
1670 /* if both pointers, then it must be the '-' op */
1671 if (bt1 == VT_PTR && bt2 == VT_PTR) {
1672 if (op != '-')
1673 tcc_error("cannot use pointers here");
1674 check_comparison_pointer_types(vtop - 1, vtop, op);
1675 /* XXX: check that types are compatible */
1676 if (vtop[-1].type.t & VT_VLA) {
1677 vla_runtime_pointed_size(&vtop[-1].type);
1678 } else {
1679 vpushi(pointed_size(&vtop[-1].type));
1681 vrott(3);
1682 gen_opic(op);
1683 /* set to integer type */
1684 #ifdef TCC_TARGET_X86_64
1685 vtop->type.t = VT_LLONG;
1686 #else
1687 vtop->type.t = VT_INT;
1688 #endif
1689 vswap();
1690 gen_op(TOK_PDIV);
1691 } else {
1692 /* exactly one pointer : must be '+' or '-'. */
1693 if (op != '-' && op != '+')
1694 tcc_error("cannot use pointers here");
1695 /* Put pointer as first operand */
1696 if (bt2 == VT_PTR) {
1697 vswap();
1698 swap(&t1, &t2);
1700 type1 = vtop[-1].type;
1701 type1.t &= ~VT_ARRAY;
1702 if (vtop[-1].type.t & VT_VLA)
1703 vla_runtime_pointed_size(&vtop[-1].type);
1704 else {
1705 u = pointed_size(&vtop[-1].type);
1706 if (u < 0)
1707 tcc_error("unknown array element size");
1708 #ifdef TCC_TARGET_X86_64
1709 vpushll(u);
1710 #else
1711 /* XXX: cast to int ? (long long case) */
1712 vpushi(u);
1713 #endif
1715 gen_op('*');
1716 #ifdef CONFIG_TCC_BCHECK
1717 /* if evaluating constant expression, no code should be
1718 generated, so no bound check */
1719 if (tcc_state->do_bounds_check && !const_wanted) {
1720 /* if bounded pointers, we generate a special code to
1721 test bounds */
1722 if (op == '-') {
1723 vpushi(0);
1724 vswap();
1725 gen_op('-');
1727 gen_bounded_ptr_add();
1728 } else
1729 #endif
1731 gen_opic(op);
1733 /* put again type if gen_opic() swaped operands */
1734 vtop->type = type1;
1736 } else if (is_float(bt1) || is_float(bt2)) {
1737 /* compute bigger type and do implicit casts */
1738 if (bt1 == VT_LDOUBLE || bt2 == VT_LDOUBLE) {
1739 t = VT_LDOUBLE;
1740 } else if (bt1 == VT_DOUBLE || bt2 == VT_DOUBLE) {
1741 t = VT_DOUBLE;
1742 } else {
1743 t = VT_FLOAT;
1745 /* floats can only be used for a few operations */
1746 if (op != '+' && op != '-' && op != '*' && op != '/' &&
1747 (op < TOK_ULT || op > TOK_GT))
1748 tcc_error("invalid operands for binary operation");
1749 goto std_op;
1750 } else if (op == TOK_SHR || op == TOK_SAR || op == TOK_SHL) {
1751 t = bt1 == VT_LLONG ? VT_LLONG : VT_INT;
1752 if ((t1 & (VT_BTYPE | VT_UNSIGNED)) == (t | VT_UNSIGNED))
1753 t |= VT_UNSIGNED;
1754 goto std_op;
1755 } else if (bt1 == VT_LLONG || bt2 == VT_LLONG) {
1756 /* cast to biggest op */
1757 t = VT_LLONG;
1758 /* convert to unsigned if it does not fit in a long long */
1759 if ((t1 & (VT_BTYPE | VT_UNSIGNED)) == (VT_LLONG | VT_UNSIGNED) ||
1760 (t2 & (VT_BTYPE | VT_UNSIGNED)) == (VT_LLONG | VT_UNSIGNED))
1761 t |= VT_UNSIGNED;
1762 goto std_op;
1763 } else if (bt1 == VT_STRUCT || bt2 == VT_STRUCT) {
1764 tcc_error("comparison of struct");
1765 } else {
1766 /* integer operations */
1767 t = VT_INT;
1768 /* convert to unsigned if it does not fit in an integer */
1769 if ((t1 & (VT_BTYPE | VT_UNSIGNED)) == (VT_INT | VT_UNSIGNED) ||
1770 (t2 & (VT_BTYPE | VT_UNSIGNED)) == (VT_INT | VT_UNSIGNED))
1771 t |= VT_UNSIGNED;
1772 std_op:
1773 /* XXX: currently, some unsigned operations are explicit, so
1774 we modify them here */
1775 if (t & VT_UNSIGNED) {
1776 if (op == TOK_SAR)
1777 op = TOK_SHR;
1778 else if (op == '/')
1779 op = TOK_UDIV;
1780 else if (op == '%')
1781 op = TOK_UMOD;
1782 else if (op == TOK_LT)
1783 op = TOK_ULT;
1784 else if (op == TOK_GT)
1785 op = TOK_UGT;
1786 else if (op == TOK_LE)
1787 op = TOK_ULE;
1788 else if (op == TOK_GE)
1789 op = TOK_UGE;
1791 vswap();
1792 type1.t = t;
1793 gen_cast(&type1);
1794 vswap();
1795 /* special case for shifts and long long: we keep the shift as
1796 an integer */
1797 if (op == TOK_SHR || op == TOK_SAR || op == TOK_SHL)
1798 type1.t = VT_INT;
1799 gen_cast(&type1);
1800 if (is_float(t))
1801 gen_opif(op);
1802 else
1803 gen_opic(op);
1804 if (op >= TOK_ULT && op <= TOK_GT) {
1805 /* relationnal op: the result is an int */
1806 vtop->type.t = VT_INT;
1807 } else {
1808 vtop->type.t = t;
1813 #ifndef TCC_TARGET_ARM
1814 /* generic itof for unsigned long long case */
1815 static void gen_cvt_itof1(int t)
1817 if ((vtop->type.t & (VT_BTYPE | VT_UNSIGNED)) ==
1818 (VT_LLONG | VT_UNSIGNED)) {
1820 if (t == VT_FLOAT)
1821 vpush_global_sym(&func_old_type, TOK___floatundisf);
1822 #if LDOUBLE_SIZE != 8
1823 else if (t == VT_LDOUBLE)
1824 vpush_global_sym(&func_old_type, TOK___floatundixf);
1825 #endif
1826 else
1827 vpush_global_sym(&func_old_type, TOK___floatundidf);
1828 vrott(2);
1829 gfunc_call(1);
1830 vpushi(0);
1831 vtop->r = reg_fret(t);
1832 } else {
1833 gen_cvt_itof(t);
1836 #endif
1838 /* generic ftoi for unsigned long long case */
1839 static void gen_cvt_ftoi1(int t)
1841 int st;
1843 if (t == (VT_LLONG | VT_UNSIGNED)) {
1844 /* not handled natively */
1845 st = vtop->type.t & VT_BTYPE;
1846 if (st == VT_FLOAT)
1847 vpush_global_sym(&func_old_type, TOK___fixunssfdi);
1848 #if LDOUBLE_SIZE != 8
1849 else if (st == VT_LDOUBLE)
1850 vpush_global_sym(&func_old_type, TOK___fixunsxfdi);
1851 #endif
1852 else
1853 vpush_global_sym(&func_old_type, TOK___fixunsdfdi);
1854 vrott(2);
1855 gfunc_call(1);
1856 vpushi(0);
1857 vtop->r = REG_IRET;
1858 vtop->r2 = REG_LRET;
1859 } else {
1860 gen_cvt_ftoi(t);
1864 /* force char or short cast */
1865 static void force_charshort_cast(int t)
1867 int bits, dbt;
1868 dbt = t & VT_BTYPE;
1869 /* XXX: add optimization if lvalue : just change type and offset */
1870 if (dbt == VT_BYTE)
1871 bits = 8;
1872 else
1873 bits = 16;
1874 if (t & VT_UNSIGNED) {
1875 vpushi((1 << bits) - 1);
1876 gen_op('&');
1877 } else {
1878 bits = 32 - bits;
1879 vpushi(bits);
1880 gen_op(TOK_SHL);
1881 /* result must be signed or the SAR is converted to an SHL
1882 This was not the case when "t" was a signed short
1883 and the last value on the stack was an unsigned int */
1884 vtop->type.t &= ~VT_UNSIGNED;
1885 vpushi(bits);
1886 gen_op(TOK_SAR);
1890 /* cast 'vtop' to 'type'. Casting to bitfields is forbidden. */
1891 static void gen_cast(CType *type)
1893 int sbt, dbt, sf, df, c, p;
1895 /* special delayed cast for char/short */
1896 /* XXX: in some cases (multiple cascaded casts), it may still
1897 be incorrect */
1898 if (vtop->r & VT_MUSTCAST) {
1899 vtop->r &= ~VT_MUSTCAST;
1900 force_charshort_cast(vtop->type.t);
1903 /* bitfields first get cast to ints */
1904 if (vtop->type.t & VT_BITFIELD) {
1905 gv(RC_INT);
1908 dbt = type->t & (VT_BTYPE | VT_UNSIGNED);
1909 sbt = vtop->type.t & (VT_BTYPE | VT_UNSIGNED);
1911 if (sbt != dbt) {
1912 sf = is_float(sbt);
1913 df = is_float(dbt);
1914 c = (vtop->r & (VT_VALMASK | VT_LVAL | VT_SYM)) == VT_CONST;
1915 p = (vtop->r & (VT_VALMASK | VT_LVAL | VT_SYM)) == (VT_CONST | VT_SYM);
1916 if (c) {
1917 /* constant case: we can do it now */
1918 /* XXX: in ISOC, cannot do it if error in convert */
1919 if (sbt == VT_FLOAT)
1920 vtop->c.ld = vtop->c.f;
1921 else if (sbt == VT_DOUBLE)
1922 vtop->c.ld = vtop->c.d;
1924 if (df) {
1925 if ((sbt & VT_BTYPE) == VT_LLONG) {
1926 if (sbt & VT_UNSIGNED)
1927 vtop->c.ld = vtop->c.ull;
1928 else
1929 vtop->c.ld = vtop->c.ll;
1930 } else if(!sf) {
1931 if (sbt & VT_UNSIGNED)
1932 vtop->c.ld = vtop->c.ui;
1933 else
1934 vtop->c.ld = vtop->c.i;
1937 if (dbt == VT_FLOAT)
1938 vtop->c.f = (float)vtop->c.ld;
1939 else if (dbt == VT_DOUBLE)
1940 vtop->c.d = (double)vtop->c.ld;
1941 } else if (sf && dbt == (VT_LLONG|VT_UNSIGNED)) {
1942 vtop->c.ull = (unsigned long long)vtop->c.ld;
1943 } else if (sf && dbt == VT_BOOL) {
1944 vtop->c.i = (vtop->c.ld != 0);
1945 } else {
1946 if(sf)
1947 vtop->c.ll = (long long)vtop->c.ld;
1948 else if (sbt == (VT_LLONG|VT_UNSIGNED))
1949 vtop->c.ll = vtop->c.ull;
1950 else if (sbt & VT_UNSIGNED)
1951 vtop->c.ll = vtop->c.ui;
1952 #ifdef TCC_TARGET_X86_64
1953 else if (sbt == VT_PTR)
1955 #endif
1956 else if (sbt != VT_LLONG)
1957 vtop->c.ll = vtop->c.i;
1959 if (dbt == (VT_LLONG|VT_UNSIGNED))
1960 vtop->c.ull = vtop->c.ll;
1961 else if (dbt == VT_BOOL)
1962 vtop->c.i = (vtop->c.ll != 0);
1963 #ifdef TCC_TARGET_X86_64
1964 else if (dbt == VT_PTR)
1966 #endif
1967 else if (dbt != VT_LLONG) {
1968 int s = 0;
1969 if ((dbt & VT_BTYPE) == VT_BYTE)
1970 s = 24;
1971 else if ((dbt & VT_BTYPE) == VT_SHORT)
1972 s = 16;
1973 if(dbt & VT_UNSIGNED)
1974 vtop->c.ui = ((unsigned int)vtop->c.ll << s) >> s;
1975 else
1976 vtop->c.i = ((int)vtop->c.ll << s) >> s;
1979 } else if (p && dbt == VT_BOOL) {
1980 vtop->r = VT_CONST;
1981 vtop->c.i = 1;
1982 } else if (!nocode_wanted) {
1983 /* non constant case: generate code */
1984 if (sf && df) {
1985 /* convert from fp to fp */
1986 gen_cvt_ftof(dbt);
1987 } else if (df) {
1988 /* convert int to fp */
1989 gen_cvt_itof1(dbt);
1990 } else if (sf) {
1991 /* convert fp to int */
1992 if (dbt == VT_BOOL) {
1993 vpushi(0);
1994 gen_op(TOK_NE);
1995 } else {
1996 /* we handle char/short/etc... with generic code */
1997 if (dbt != (VT_INT | VT_UNSIGNED) &&
1998 dbt != (VT_LLONG | VT_UNSIGNED) &&
1999 dbt != VT_LLONG)
2000 dbt = VT_INT;
2001 gen_cvt_ftoi1(dbt);
2002 if (dbt == VT_INT && (type->t & (VT_BTYPE | VT_UNSIGNED)) != dbt) {
2003 /* additional cast for char/short... */
2004 vtop->type.t = dbt;
2005 gen_cast(type);
2008 #ifndef TCC_TARGET_X86_64
2009 } else if ((dbt & VT_BTYPE) == VT_LLONG) {
2010 if ((sbt & VT_BTYPE) != VT_LLONG) {
2011 /* scalar to long long */
2012 /* machine independent conversion */
2013 gv(RC_INT);
2014 /* generate high word */
2015 if (sbt == (VT_INT | VT_UNSIGNED)) {
2016 vpushi(0);
2017 gv(RC_INT);
2018 } else {
2019 if (sbt == VT_PTR) {
2020 /* cast from pointer to int before we apply
2021 shift operation, which pointers don't support*/
2022 gen_cast(&int_type);
2024 gv_dup();
2025 vpushi(31);
2026 gen_op(TOK_SAR);
2028 /* patch second register */
2029 vtop[-1].r2 = vtop->r;
2030 vpop();
2032 #else
2033 } else if ((dbt & VT_BTYPE) == VT_LLONG ||
2034 (dbt & VT_BTYPE) == VT_PTR ||
2035 (dbt & VT_BTYPE) == VT_FUNC) {
2036 if ((sbt & VT_BTYPE) != VT_LLONG &&
2037 (sbt & VT_BTYPE) != VT_PTR &&
2038 (sbt & VT_BTYPE) != VT_FUNC) {
2039 /* need to convert from 32bit to 64bit */
2040 int r = gv(RC_INT);
2041 if (sbt != (VT_INT | VT_UNSIGNED)) {
2042 /* x86_64 specific: movslq */
2043 o(0x6348);
2044 o(0xc0 + (REG_VALUE(r) << 3) + REG_VALUE(r));
2047 #endif
2048 } else if (dbt == VT_BOOL) {
2049 /* scalar to bool */
2050 vpushi(0);
2051 gen_op(TOK_NE);
2052 } else if ((dbt & VT_BTYPE) == VT_BYTE ||
2053 (dbt & VT_BTYPE) == VT_SHORT) {
2054 if (sbt == VT_PTR) {
2055 vtop->type.t = VT_INT;
2056 tcc_warning("nonportable conversion from pointer to char/short");
2058 force_charshort_cast(dbt);
2059 } else if ((dbt & VT_BTYPE) == VT_INT) {
2060 /* scalar to int */
2061 if (sbt == VT_LLONG) {
2062 /* from long long: just take low order word */
2063 lexpand();
2064 vpop();
2066 /* if lvalue and single word type, nothing to do because
2067 the lvalue already contains the real type size (see
2068 VT_LVAL_xxx constants) */
2071 } else if ((dbt & VT_BTYPE) == VT_PTR && !(vtop->r & VT_LVAL)) {
2072 /* if we are casting between pointer types,
2073 we must update the VT_LVAL_xxx size */
2074 vtop->r = (vtop->r & ~VT_LVAL_TYPE)
2075 | (lvalue_type(type->ref->type.t) & VT_LVAL_TYPE);
2077 vtop->type = *type;
2080 /* return type size as known at compile time. Put alignment at 'a' */
2081 ST_FUNC int type_size(CType *type, int *a)
2083 Sym *s;
2084 int bt;
2085 size_t size;
2087 bt = type->t & VT_BTYPE;
2088 if (bt == VT_STRUCT) {
2089 assert(!(type->t & VT_VLS));
2090 /* struct/union */
2091 s = type->ref;
2092 *a = s->r;
2093 size = s->c;
2094 } else if (bt == VT_PTR) {
2095 if (type->t & VT_ARRAY) {
2096 int ts;
2097 s = type->ref;
2098 ts = type_size(&s->type, a);
2099 if (ts < 0 && s->c < 0)
2100 ts = -ts;
2101 size = (size_t)ts * s->c;
2102 } else {
2103 *a = PTR_SIZE;
2104 size = PTR_SIZE;
2106 } else if (bt == VT_LDOUBLE) {
2107 *a = LDOUBLE_ALIGN;
2108 size = LDOUBLE_SIZE;
2109 } else if (bt == VT_DOUBLE || bt == VT_LLONG) {
2110 #ifdef TCC_TARGET_I386
2111 #ifdef TCC_TARGET_PE
2112 *a = 8;
2113 #else
2114 *a = 4;
2115 #endif
2116 #elif defined(TCC_TARGET_ARM)
2117 #ifdef TCC_ARM_EABI
2118 *a = 8;
2119 #else
2120 *a = 4;
2121 #endif
2122 #else
2123 *a = 8;
2124 #endif
2125 size = 8;
2126 } else if (bt == VT_INT || bt == VT_ENUM || bt == VT_FLOAT) {
2127 *a = 4;
2128 size = 4;
2129 } else if (bt == VT_SHORT) {
2130 *a = 2;
2131 size = 2;
2132 } else if (bt == VT_QLONG || bt == VT_QFLOAT) {
2133 *a = 8;
2134 size = 16;
2135 } else {
2136 /* char, void, function, _Bool */
2137 *a = 1;
2138 size = 1;
2140 assert(size == (int)size);
2141 return (int)size;
2144 /* push type size as known at runtime time on top of value stack. Put
2145 alignment at 'a' */
2146 ST_FUNC void vla_runtime_type_size(CType *type, int *a)
2148 if (type->t & VT_VLA) {
2149 vset(&int_type, VT_LOCAL|VT_LVAL, type->ref->c);
2150 } else {
2151 vpushi(type_size(type, a));
2155 static void vla_sp_save(void) {
2156 if (!(vla_flags & VLA_SP_LOC_SET)) {
2157 *vla_sp_loc = (loc -= PTR_SIZE);
2158 vla_flags |= VLA_SP_LOC_SET;
2160 if (!(vla_flags & VLA_SP_SAVED)) {
2161 gen_vla_sp_save(*vla_sp_loc);
2162 vla_flags |= VLA_SP_SAVED;
2166 /* return the pointed type of t */
2167 static inline CType *pointed_type(CType *type)
2169 return &type->ref->type;
2172 /* modify type so that its it is a pointer to type. */
2173 ST_FUNC void mk_pointer(CType *type)
2175 Sym *s;
2176 s = sym_push(SYM_FIELD, type, 0, -1);
2177 type->t = VT_PTR | (type->t & ~VT_TYPE);
2178 type->ref = s;
2181 /* compare function types. OLD functions match any new functions */
2182 static int is_compatible_func(CType *type1, CType *type2)
2184 Sym *s1, *s2;
2186 s1 = type1->ref;
2187 s2 = type2->ref;
2188 if (!is_compatible_types(&s1->type, &s2->type))
2189 return 0;
2190 /* check func_call */
2191 if (s1->a.func_call != s2->a.func_call)
2192 return 0;
2193 /* XXX: not complete */
2194 if (s1->c == FUNC_OLD || s2->c == FUNC_OLD)
2195 return 1;
2196 if (s1->c != s2->c)
2197 return 0;
2198 while (s1 != NULL) {
2199 if (s2 == NULL)
2200 return 0;
2201 if (!is_compatible_parameter_types(&s1->type, &s2->type))
2202 return 0;
2203 s1 = s1->next;
2204 s2 = s2->next;
2206 if (s2)
2207 return 0;
2208 return 1;
2211 /* return true if type1 and type2 are the same. If unqualified is
2212 true, qualifiers on the types are ignored.
2214 - enums are not checked as gcc __builtin_types_compatible_p ()
2216 static int compare_types(CType *type1, CType *type2, int unqualified)
2218 int bt1, t1, t2;
2220 t1 = type1->t & VT_TYPE;
2221 t2 = type2->t & VT_TYPE;
2222 if (unqualified) {
2223 /* strip qualifiers before comparing */
2224 t1 &= ~(VT_CONSTANT | VT_VOLATILE);
2225 t2 &= ~(VT_CONSTANT | VT_VOLATILE);
2227 /* Default Vs explicit signedness only matters for char */
2228 if ((t1 & VT_BTYPE) != VT_BYTE) {
2229 t1 &= ~VT_DEFSIGN;
2230 t2 &= ~VT_DEFSIGN;
2232 /* XXX: bitfields ? */
2233 if (t1 != t2)
2234 return 0;
2235 /* test more complicated cases */
2236 bt1 = t1 & VT_BTYPE;
2237 if (bt1 == VT_PTR) {
2238 type1 = pointed_type(type1);
2239 type2 = pointed_type(type2);
2240 return is_compatible_types(type1, type2);
2241 } else if (bt1 == VT_STRUCT) {
2242 return (type1->ref == type2->ref);
2243 } else if (bt1 == VT_FUNC) {
2244 return is_compatible_func(type1, type2);
2245 } else {
2246 return 1;
2250 /* return true if type1 and type2 are exactly the same (including
2251 qualifiers).
2253 static int is_compatible_types(CType *type1, CType *type2)
2255 return compare_types(type1,type2,0);
2258 /* return true if type1 and type2 are the same (ignoring qualifiers).
2260 static int is_compatible_parameter_types(CType *type1, CType *type2)
2262 return compare_types(type1,type2,1);
2265 /* print a type. If 'varstr' is not NULL, then the variable is also
2266 printed in the type */
2267 /* XXX: union */
2268 /* XXX: add array and function pointers */
2269 static void type_to_str(char *buf, int buf_size,
2270 CType *type, const char *varstr)
2272 int bt, v, t;
2273 Sym *s, *sa;
2274 char buf1[256];
2275 const char *tstr;
2277 t = type->t & VT_TYPE;
2278 bt = t & VT_BTYPE;
2279 buf[0] = '\0';
2280 if (t & VT_CONSTANT)
2281 pstrcat(buf, buf_size, "const ");
2282 if (t & VT_VOLATILE)
2283 pstrcat(buf, buf_size, "volatile ");
2284 if ((t & (VT_DEFSIGN | VT_UNSIGNED)) == (VT_DEFSIGN | VT_UNSIGNED))
2285 pstrcat(buf, buf_size, "unsigned ");
2286 else if (t & VT_DEFSIGN)
2287 pstrcat(buf, buf_size, "signed ");
2288 switch(bt) {
2289 case VT_VOID:
2290 tstr = "void";
2291 goto add_tstr;
2292 case VT_BOOL:
2293 tstr = "_Bool";
2294 goto add_tstr;
2295 case VT_BYTE:
2296 tstr = "char";
2297 goto add_tstr;
2298 case VT_SHORT:
2299 tstr = "short";
2300 goto add_tstr;
2301 case VT_INT:
2302 tstr = "int";
2303 goto add_tstr;
2304 case VT_LONG:
2305 tstr = "long";
2306 goto add_tstr;
2307 case VT_LLONG:
2308 tstr = "long long";
2309 goto add_tstr;
2310 case VT_FLOAT:
2311 tstr = "float";
2312 goto add_tstr;
2313 case VT_DOUBLE:
2314 tstr = "double";
2315 goto add_tstr;
2316 case VT_LDOUBLE:
2317 tstr = "long double";
2318 add_tstr:
2319 pstrcat(buf, buf_size, tstr);
2320 break;
2321 case VT_ENUM:
2322 case VT_STRUCT:
2323 if (bt == VT_STRUCT)
2324 tstr = "struct ";
2325 else
2326 tstr = "enum ";
2327 pstrcat(buf, buf_size, tstr);
2328 v = type->ref->v & ~SYM_STRUCT;
2329 if (v >= SYM_FIRST_ANOM)
2330 pstrcat(buf, buf_size, "<anonymous>");
2331 else
2332 pstrcat(buf, buf_size, get_tok_str(v, NULL));
2333 break;
2334 case VT_FUNC:
2335 s = type->ref;
2336 type_to_str(buf, buf_size, &s->type, varstr);
2337 pstrcat(buf, buf_size, "(");
2338 sa = s->next;
2339 while (sa != NULL) {
2340 type_to_str(buf1, sizeof(buf1), &sa->type, NULL);
2341 pstrcat(buf, buf_size, buf1);
2342 sa = sa->next;
2343 if (sa)
2344 pstrcat(buf, buf_size, ", ");
2346 pstrcat(buf, buf_size, ")");
2347 goto no_var;
2348 case VT_PTR:
2349 s = type->ref;
2350 pstrcpy(buf1, sizeof(buf1), "*");
2351 if (varstr)
2352 pstrcat(buf1, sizeof(buf1), varstr);
2353 type_to_str(buf, buf_size, &s->type, buf1);
2354 goto no_var;
2356 if (varstr) {
2357 pstrcat(buf, buf_size, " ");
2358 pstrcat(buf, buf_size, varstr);
2360 no_var: ;
2363 /* verify type compatibility to store vtop in 'dt' type, and generate
2364 casts if needed. */
2365 static void gen_assign_cast(CType *dt)
2367 CType *st, *type1, *type2, tmp_type1, tmp_type2;
2368 char buf1[256], buf2[256];
2369 int dbt, sbt;
2371 st = &vtop->type; /* source type */
2372 dbt = dt->t & VT_BTYPE;
2373 sbt = st->t & VT_BTYPE;
2374 if (sbt == VT_VOID || dbt == VT_VOID)
2375 tcc_error("cannot cast from/to void");
2376 if (dt->t & VT_CONSTANT)
2377 tcc_warning("assignment of read-only location");
2378 switch(dbt) {
2379 case VT_PTR:
2380 /* special cases for pointers */
2381 /* '0' can also be a pointer */
2382 if (is_null_pointer(vtop))
2383 goto type_ok;
2384 /* accept implicit pointer to integer cast with warning */
2385 if (is_integer_btype(sbt)) {
2386 tcc_warning("assignment makes pointer from integer without a cast");
2387 goto type_ok;
2389 type1 = pointed_type(dt);
2390 /* a function is implicitely a function pointer */
2391 if (sbt == VT_FUNC) {
2392 if ((type1->t & VT_BTYPE) != VT_VOID &&
2393 !is_compatible_types(pointed_type(dt), st))
2394 tcc_warning("assignment from incompatible pointer type");
2395 goto type_ok;
2397 if (sbt != VT_PTR)
2398 goto error;
2399 type2 = pointed_type(st);
2400 if ((type1->t & VT_BTYPE) == VT_VOID ||
2401 (type2->t & VT_BTYPE) == VT_VOID) {
2402 /* void * can match anything */
2403 } else {
2404 /* exact type match, except for unsigned */
2405 tmp_type1 = *type1;
2406 tmp_type2 = *type2;
2407 tmp_type1.t &= ~(VT_DEFSIGN | VT_UNSIGNED | VT_CONSTANT |
2408 VT_VOLATILE);
2409 tmp_type2.t &= ~(VT_DEFSIGN | VT_UNSIGNED | VT_CONSTANT |
2410 VT_VOLATILE);
2411 if (!is_compatible_types(&tmp_type1, &tmp_type2))
2412 tcc_warning("assignment from incompatible pointer type");
2414 /* check const and volatile */
2415 if ((!(type1->t & VT_CONSTANT) && (type2->t & VT_CONSTANT)) ||
2416 (!(type1->t & VT_VOLATILE) && (type2->t & VT_VOLATILE)))
2417 tcc_warning("assignment discards qualifiers from pointer target type");
2418 break;
2419 case VT_BYTE:
2420 case VT_SHORT:
2421 case VT_INT:
2422 case VT_LLONG:
2423 if (sbt == VT_PTR || sbt == VT_FUNC) {
2424 tcc_warning("assignment makes integer from pointer without a cast");
2426 /* XXX: more tests */
2427 break;
2428 case VT_STRUCT:
2429 tmp_type1 = *dt;
2430 tmp_type2 = *st;
2431 tmp_type1.t &= ~(VT_CONSTANT | VT_VOLATILE);
2432 tmp_type2.t &= ~(VT_CONSTANT | VT_VOLATILE);
2433 if (!is_compatible_types(&tmp_type1, &tmp_type2)) {
2434 error:
2435 type_to_str(buf1, sizeof(buf1), st, NULL);
2436 type_to_str(buf2, sizeof(buf2), dt, NULL);
2437 tcc_error("cannot cast '%s' to '%s'", buf1, buf2);
2439 break;
2441 type_ok:
2442 gen_cast(dt);
2445 static void vstore_im(){
2446 int rc, ft, sbt, dbt, t, r;
2447 ft = vtop[-1].type.t;
2448 sbt = vtop->type.t & VT_BTYPE;
2449 dbt = ft & VT_BTYPE;
2450 if (is_float(ft)) {
2451 rc = RC_FLOAT;
2452 #ifdef TCC_TARGET_X86_64
2453 if (dbt == VT_LDOUBLE) {
2454 rc = RC_ST0;
2456 #endif
2457 }else
2458 rc = RC_INT;
2459 r = gv(rc); /* generate value */
2460 /* if lvalue was saved on stack, must read it */
2461 if ((vtop[-1].r & VT_VALMASK) == VT_LLOCAL) {
2462 SValue sv;
2463 t = get_reg(RC_INT);
2464 #ifdef TCC_TARGET_X86_64
2465 sv.type.t = VT_PTR;
2466 #else
2467 sv.type.t = VT_INT;
2468 #endif
2469 sv.r = VT_LOCAL | VT_LVAL;
2470 sv.c.ul = vtop[-1].c.ul;
2471 load(t, &sv);
2472 vtop[-1].r = t | VT_LVAL;
2473 vtop[-1].c.ul = 0;
2475 /* two word case handling : store second register at word + 4 */
2476 #ifdef TCC_TARGET_X86_64
2477 if ((dbt == VT_QLONG) || (dbt == VT_QFLOAT))
2478 #else
2479 if (dbt == VT_LLONG)
2480 #endif
2482 #ifdef TCC_TARGET_X86_64
2483 int load_size = 8, load_type = (sbt == VT_QLONG) ? VT_LLONG : VT_DOUBLE;
2484 #else
2485 int load_size = 4, load_type = VT_INT;
2486 #endif
2487 vtop[-1].type.t = load_type;
2488 store(r, vtop - 1);
2489 vswap();
2490 /* convert to int to increment easily */
2491 vtop->type = char_pointer_type;
2492 gaddrof();
2493 vpushi(load_size);
2494 gen_op('+');
2495 vtop->r |= VT_LVAL;
2496 vswap();
2497 vtop[-1].type.t = load_type;
2498 /* XXX: it works because r2 is spilled last ! */
2499 store(vtop->r2, vtop - 1);
2500 vtop->type.t = ft;
2501 vtop[-1].type.t = ft;
2502 } else {
2503 store(r, vtop - 1);
2507 /* store vtop in lvalue pushed on stack */
2508 ST_FUNC void vstore(void)
2510 int sbt, dbt, ft, size, align, bit_size, bit_pos, delayed_cast;
2512 ft = vtop[-1].type.t;
2513 sbt = vtop->type.t & VT_BTYPE;
2514 dbt = ft & VT_BTYPE;
2515 if ((((sbt == VT_INT || sbt == VT_SHORT) && dbt == VT_BYTE) ||
2516 (sbt == VT_INT && dbt == VT_SHORT)) && !(vtop->type.t & VT_BITFIELD)) {
2517 /* optimize char/short casts */
2518 delayed_cast = VT_MUSTCAST;
2519 vtop->type.t = ft & (VT_TYPE & ~(VT_BITFIELD | (-1 << VT_STRUCT_SHIFT)));
2520 /* XXX: factorize */
2521 if (ft & VT_CONSTANT)
2522 tcc_warning("assignment of read-only location");
2523 } else {
2524 delayed_cast = 0;
2525 if (!(ft & VT_BITFIELD))
2526 gen_assign_cast(&vtop[-1].type);
2529 if (sbt == VT_STRUCT) {
2530 /* if structure, only generate pointer */
2531 /* structure assignment : generate memcpy */
2532 /* XXX: optimize if small size */
2533 if (!nocode_wanted) {
2534 size = type_size(&vtop->type, &align);
2536 /* destination */
2537 vswap();
2538 vtop->type.t = VT_PTR;
2539 gaddrof();
2541 /* address of memcpy() */
2542 #ifdef TCC_ARM_EABI
2543 if(!(align & 7))
2544 vpush_global_sym(&func_old_type, TOK_memcpy8);
2545 else if(!(align & 3))
2546 vpush_global_sym(&func_old_type, TOK_memcpy4);
2547 else
2548 #endif
2549 vpush_global_sym(&func_old_type, TOK_memcpy);
2551 vswap();
2552 /* source */
2553 vpushv(vtop - 2);
2554 vtop->type.t = VT_PTR;
2555 gaddrof();
2556 /* type size */
2557 vpushi(size);
2558 gfunc_call(3);
2559 } else {
2560 vswap();
2561 vpop();
2563 /* leave source on stack */
2564 } else if (ft & VT_BITFIELD) {
2565 /* bitfield store handling */
2566 bit_pos = (ft >> VT_STRUCT_SHIFT) & 0x3f;
2567 bit_size = (ft >> (VT_STRUCT_SHIFT + 6)) & 0x3f;
2568 /* remove bit field info to avoid loops */
2569 vtop[-1].type.t = ft & ~(VT_BITFIELD | (-1 << VT_STRUCT_SHIFT));
2570 /* duplicate source into other register */
2571 if(dbt == VT_BOOL) {
2572 gen_cast(&vtop[-1].type);
2573 vtop[-1].type.t = (vtop[-1].type.t & ~VT_BTYPE) | (VT_BYTE | VT_UNSIGNED);
2576 /* duplicate destination */
2577 vdup();
2578 vtop[-1] = vtop[-2];
2580 /* mask and shift source */
2581 if(dbt != VT_BOOL) {
2582 if(dbt == VT_LLONG) {
2583 vpushll((1ULL << bit_size) - 1ULL);
2584 } else {
2585 vpushi((1 << bit_size) - 1);
2587 gen_op('&');
2589 vpushi(bit_pos);
2590 gen_op(TOK_SHL);
2591 /* load destination, mask and or with source */
2592 vswap();
2593 if(dbt == VT_LLONG) {
2594 vpushll(~(((1ULL << bit_size) - 1ULL) << bit_pos));
2595 } else {
2596 vpushi(~(((1 << bit_size) - 1) << bit_pos));
2598 gen_op('&');
2599 gen_op('|');
2600 /* store result */
2601 vstore();
2602 } else {
2603 #ifdef CONFIG_TCC_BCHECK
2604 /* bound check case */
2605 if (vtop[-1].r & VT_MUSTBOUND) {
2606 vswap();
2607 gbound();
2608 vswap();
2610 #endif
2611 if (!nocode_wanted) {
2612 vstore_im();
2614 vswap();
2615 vtop--; /* NOT vpop() because on x86 it would flush the fp stack */
2616 vtop->r |= delayed_cast;
2620 /* post defines POST/PRE add. c is the token ++ or -- */
2621 ST_FUNC void inc(int post, int c)
2623 test_lvalue();
2624 vdup(); /* save lvalue */
2625 if (post) {
2626 gv_dup(); /* duplicate value */
2627 vrotb(3);
2628 vrotb(3);
2630 /* add constant */
2631 vpushi(c - TOK_MID);
2632 gen_op('+');
2633 vstore(); /* store value */
2634 if (post)
2635 vpop(); /* if post op, return saved value */
2638 /* Parse GNUC __attribute__ extension. Currently, the following
2639 extensions are recognized:
2640 - aligned(n) : set data/function alignment.
2641 - packed : force data alignment to 1
2642 - section(x) : generate data/code in this section.
2643 - unused : currently ignored, but may be used someday.
2644 - regparm(n) : pass function parameters in registers (i386 only)
2646 static void parse_attribute(AttributeDef *ad)
2648 int t, n;
2650 while (tok == TOK_ATTRIBUTE1 || tok == TOK_ATTRIBUTE2) {
2651 next();
2652 skip('(');
2653 skip('(');
2654 while (tok != ')') {
2655 if (tok < TOK_IDENT)
2656 expect("attribute name");
2657 t = tok;
2658 next();
2659 switch(t) {
2660 case TOK_SECTION1:
2661 case TOK_SECTION2:
2662 skip('(');
2663 if (tok != TOK_STR)
2664 expect("section name");
2665 ad->section = find_section(tcc_state, (char *)tokc.cstr->data);
2666 next();
2667 skip(')');
2668 break;
2669 case TOK_ALIAS1:
2670 case TOK_ALIAS2:
2671 skip('(');
2672 if (tok != TOK_STR)
2673 expect("alias(\"target\")");
2674 ad->alias_target = /* save string as token, for later */
2675 tok_alloc((char*)tokc.cstr->data, tokc.cstr->size-1)->tok;
2676 next();
2677 skip(')');
2678 break;
2679 case TOK_VISIBILITY1:
2680 case TOK_VISIBILITY2:
2681 skip('(');
2682 if (tok != TOK_STR)
2683 expect("visibility(\"default|hidden|internal|protected\")");
2684 if (!strcmp (tokc.cstr->data, "default"))
2685 ad->a.visibility = STV_DEFAULT;
2686 else if (!strcmp (tokc.cstr->data, "hidden"))
2687 ad->a.visibility = STV_HIDDEN;
2688 else if (!strcmp (tokc.cstr->data, "internal"))
2689 ad->a.visibility = STV_INTERNAL;
2690 else if (!strcmp (tokc.cstr->data, "protected"))
2691 ad->a.visibility = STV_PROTECTED;
2692 else
2693 expect("visibility(\"default|hidden|internal|protected\")");
2694 next();
2695 skip(')');
2696 break;
2697 case TOK_ALIGNED1:
2698 case TOK_ALIGNED2:
2699 if (tok == '(') {
2700 next();
2701 n = expr_const();
2702 if (n <= 0 || (n & (n - 1)) != 0)
2703 tcc_error("alignment must be a positive power of two");
2704 skip(')');
2705 } else {
2706 n = MAX_ALIGN;
2708 ad->a.aligned = n;
2709 break;
2710 case TOK_PACKED1:
2711 case TOK_PACKED2:
2712 ad->a.packed = 1;
2713 break;
2714 case TOK_WEAK1:
2715 case TOK_WEAK2:
2716 ad->a.weak = 1;
2717 break;
2718 case TOK_UNUSED1:
2719 case TOK_UNUSED2:
2720 /* currently, no need to handle it because tcc does not
2721 track unused objects */
2722 break;
2723 case TOK_NORETURN1:
2724 case TOK_NORETURN2:
2725 /* currently, no need to handle it because tcc does not
2726 track unused objects */
2727 break;
2728 case TOK_CDECL1:
2729 case TOK_CDECL2:
2730 case TOK_CDECL3:
2731 ad->a.func_call = FUNC_CDECL;
2732 break;
2733 case TOK_STDCALL1:
2734 case TOK_STDCALL2:
2735 case TOK_STDCALL3:
2736 ad->a.func_call = FUNC_STDCALL;
2737 break;
2738 #ifdef TCC_TARGET_I386
2739 case TOK_REGPARM1:
2740 case TOK_REGPARM2:
2741 skip('(');
2742 n = expr_const();
2743 if (n > 3)
2744 n = 3;
2745 else if (n < 0)
2746 n = 0;
2747 if (n > 0)
2748 ad->a.func_call = FUNC_FASTCALL1 + n - 1;
2749 skip(')');
2750 break;
2751 case TOK_FASTCALL1:
2752 case TOK_FASTCALL2:
2753 case TOK_FASTCALL3:
2754 ad->a.func_call = FUNC_FASTCALLW;
2755 break;
2756 #endif
2757 case TOK_MODE:
2758 skip('(');
2759 switch(tok) {
2760 case TOK_MODE_DI:
2761 ad->a.mode = VT_LLONG + 1;
2762 break;
2763 case TOK_MODE_HI:
2764 ad->a.mode = VT_SHORT + 1;
2765 break;
2766 case TOK_MODE_SI:
2767 ad->a.mode = VT_INT + 1;
2768 break;
2769 default:
2770 tcc_warning("__mode__(%s) not supported\n", get_tok_str(tok, NULL));
2771 break;
2773 next();
2774 skip(')');
2775 break;
2776 case TOK_DLLEXPORT:
2777 ad->a.func_export = 1;
2778 break;
2779 case TOK_DLLIMPORT:
2780 ad->a.func_import = 1;
2781 break;
2782 default:
2783 if (tcc_state->warn_unsupported)
2784 tcc_warning("'%s' attribute ignored", get_tok_str(t, NULL));
2785 /* skip parameters */
2786 if (tok == '(') {
2787 int parenthesis = 0;
2788 do {
2789 if (tok == '(')
2790 parenthesis++;
2791 else if (tok == ')')
2792 parenthesis--;
2793 next();
2794 } while (parenthesis && tok != -1);
2796 break;
2798 if (tok != ',')
2799 break;
2800 next();
2802 skip(')');
2803 skip(')');
2807 /* enum/struct/union declaration. u is either VT_ENUM or VT_STRUCT */
2808 static void struct_decl(CType *type, int u, int tdef)
2810 int a, v, size, align, maxalign, c, offset, flexible;
2811 int bit_size, bit_pos, bsize, bt, lbit_pos, prevbt;
2812 Sym *s, *ss, *ass, **ps;
2813 AttributeDef ad;
2814 CType type1, btype;
2816 a = tok; /* save decl type */
2817 next();
2818 if (tok != '{') {
2819 v = tok;
2820 next();
2821 /* struct already defined ? return it */
2822 if (v < TOK_IDENT)
2823 expect("struct/union/enum name");
2824 s = struct_find(v);
2825 if (s) {
2826 if (s->type.t != a)
2827 tcc_error("invalid type");
2828 goto do_decl;
2829 } else if (tok >= TOK_IDENT && !tdef)
2830 tcc_error("unknown struct/union/enum");
2831 } else {
2832 v = anon_sym++;
2834 type1.t = a;
2835 type1.ref = NULL;
2836 /* we put an undefined size for struct/union */
2837 s = sym_push(v | SYM_STRUCT, &type1, 0, -1);
2838 s->r = 0; /* default alignment is zero as gcc */
2839 /* put struct/union/enum name in type */
2840 do_decl:
2841 type->t = u;
2842 type->ref = s;
2844 if (tok == '{') {
2845 next();
2846 if (s->c != -1)
2847 tcc_error("struct/union/enum already defined");
2848 /* cannot be empty */
2849 c = 0;
2850 /* non empty enums are not allowed */
2851 if (a == TOK_ENUM) {
2852 for(;;) {
2853 v = tok;
2854 if (v < TOK_UIDENT)
2855 expect("identifier");
2856 ss = sym_find(v);
2857 if (ss && !local_stack)
2858 tcc_error("redefinition of enumerator '%s'",
2859 get_tok_str(v, NULL));
2860 next();
2861 if (tok == '=') {
2862 next();
2863 c = expr_const();
2865 /* enum symbols have static storage */
2866 ss = sym_push(v, &int_type, VT_CONST, c);
2867 ss->type.t |= VT_STATIC;
2868 if (tok != ',')
2869 break;
2870 next();
2871 c++;
2872 /* NOTE: we accept a trailing comma */
2873 if (tok == '}')
2874 break;
2876 s->c = type_size(&int_type, &align);
2877 skip('}');
2878 } else {
2879 maxalign = 1;
2880 ps = &s->next;
2881 prevbt = VT_INT;
2882 bit_pos = 0;
2883 offset = 0;
2884 flexible = 0;
2885 while (tok != '}') {
2886 parse_btype(&btype, &ad);
2887 while (1) {
2888 if (flexible)
2889 tcc_error("flexible array member '%s' not at the end of struct",
2890 get_tok_str(v, NULL));
2891 bit_size = -1;
2892 v = 0;
2893 type1 = btype;
2894 if (tok != ':') {
2895 type_decl(&type1, &ad, &v, TYPE_DIRECT | TYPE_ABSTRACT);
2896 if (v == 0 && (type1.t & VT_BTYPE) != VT_STRUCT)
2897 expect("identifier");
2898 if (type_size(&type1, &align) < 0) {
2899 if ((a == TOK_STRUCT) && (type1.t & VT_ARRAY) && c)
2900 flexible = 1;
2901 else
2902 tcc_error("field '%s' has incomplete type",
2903 get_tok_str(v, NULL));
2905 if ((type1.t & VT_BTYPE) == VT_FUNC ||
2906 (type1.t & (VT_TYPEDEF | VT_STATIC | VT_EXTERN | VT_INLINE)))
2907 tcc_error("invalid type for '%s'",
2908 get_tok_str(v, NULL));
2910 if (tok == ':') {
2911 next();
2912 bit_size = expr_const();
2913 /* XXX: handle v = 0 case for messages */
2914 if (bit_size < 0)
2915 tcc_error("negative width in bit-field '%s'",
2916 get_tok_str(v, NULL));
2917 if (v && bit_size == 0)
2918 tcc_error("zero width for bit-field '%s'",
2919 get_tok_str(v, NULL));
2921 size = type_size(&type1, &align);
2922 if (ad.a.aligned) {
2923 if (align < ad.a.aligned)
2924 align = ad.a.aligned;
2925 } else if (ad.a.packed) {
2926 align = 1;
2927 } else if (*tcc_state->pack_stack_ptr) {
2928 if (align > *tcc_state->pack_stack_ptr)
2929 align = *tcc_state->pack_stack_ptr;
2931 lbit_pos = 0;
2932 if (bit_size >= 0) {
2933 bt = type1.t & VT_BTYPE;
2934 if (bt != VT_INT &&
2935 bt != VT_BYTE &&
2936 bt != VT_SHORT &&
2937 bt != VT_BOOL &&
2938 bt != VT_ENUM &&
2939 bt != VT_LLONG)
2940 tcc_error("bitfields must have scalar type");
2941 bsize = size * 8;
2942 if (bit_size > bsize) {
2943 tcc_error("width of '%s' exceeds its type",
2944 get_tok_str(v, NULL));
2945 } else if (bit_size == bsize) {
2946 /* no need for bit fields */
2947 bit_pos = 0;
2948 } else if (bit_size == 0) {
2949 /* XXX: what to do if only padding in a
2950 structure ? */
2951 /* zero size: means to pad */
2952 bit_pos = 0;
2953 } else {
2954 /* we do not have enough room ?
2955 did the type change?
2956 is it a union? */
2957 if ((bit_pos + bit_size) > bsize ||
2958 bt != prevbt || a == TOK_UNION)
2959 bit_pos = 0;
2960 lbit_pos = bit_pos;
2961 /* XXX: handle LSB first */
2962 type1.t |= VT_BITFIELD |
2963 (bit_pos << VT_STRUCT_SHIFT) |
2964 (bit_size << (VT_STRUCT_SHIFT + 6));
2965 bit_pos += bit_size;
2967 prevbt = bt;
2968 } else {
2969 bit_pos = 0;
2971 if (v != 0 || (type1.t & VT_BTYPE) == VT_STRUCT) {
2972 /* add new memory data only if starting
2973 bit field */
2974 if (lbit_pos == 0) {
2975 if (a == TOK_STRUCT) {
2976 c = (c + align - 1) & -align;
2977 offset = c;
2978 if (size > 0)
2979 c += size;
2980 } else {
2981 offset = 0;
2982 if (size > c)
2983 c = size;
2985 if (align > maxalign)
2986 maxalign = align;
2988 #if 0
2989 printf("add field %s offset=%d",
2990 get_tok_str(v, NULL), offset);
2991 if (type1.t & VT_BITFIELD) {
2992 printf(" pos=%d size=%d",
2993 (type1.t >> VT_STRUCT_SHIFT) & 0x3f,
2994 (type1.t >> (VT_STRUCT_SHIFT + 6)) & 0x3f);
2996 printf("\n");
2997 #endif
2999 if (v == 0 && (type1.t & VT_BTYPE) == VT_STRUCT) {
3000 ass = type1.ref;
3001 while ((ass = ass->next) != NULL) {
3002 ss = sym_push(ass->v, &ass->type, 0, offset + ass->c);
3003 *ps = ss;
3004 ps = &ss->next;
3006 } else if (v) {
3007 ss = sym_push(v | SYM_FIELD, &type1, 0, offset);
3008 *ps = ss;
3009 ps = &ss->next;
3011 if (tok == ';' || tok == TOK_EOF)
3012 break;
3013 skip(',');
3015 skip(';');
3017 skip('}');
3018 /* store size and alignment */
3019 s->c = (c + maxalign - 1) & -maxalign;
3020 s->r = maxalign;
3025 /* return 1 if basic type is a type size (short, long, long long) */
3026 ST_FUNC int is_btype_size(int bt)
3028 return bt == VT_SHORT || bt == VT_LONG || bt == VT_LLONG;
3031 /* return 0 if no type declaration. otherwise, return the basic type
3032 and skip it.
3034 static int parse_btype(CType *type, AttributeDef *ad)
3036 int t, u, bt_size, complete, type_found, typespec_found;
3037 Sym *s;
3038 CType type1;
3040 memset(ad, 0, sizeof(AttributeDef));
3041 complete = 0;
3042 type_found = 0;
3043 typespec_found = 0;
3044 t = 0;
3045 while(1) {
3046 switch(tok) {
3047 case TOK_EXTENSION:
3048 /* currently, we really ignore extension */
3049 next();
3050 continue;
3052 /* basic types */
3053 case TOK_CHAR:
3054 u = VT_BYTE;
3055 basic_type:
3056 next();
3057 basic_type1:
3058 if (complete)
3059 tcc_error("too many basic types");
3060 t |= u;
3061 bt_size = is_btype_size (u & VT_BTYPE);
3062 if (u == VT_INT || (!bt_size && !(t & VT_TYPEDEF)))
3063 complete = 1;
3064 typespec_found = 1;
3065 break;
3066 case TOK_VOID:
3067 u = VT_VOID;
3068 goto basic_type;
3069 case TOK_SHORT:
3070 u = VT_SHORT;
3071 goto basic_type;
3072 case TOK_INT:
3073 u = VT_INT;
3074 goto basic_type;
3075 case TOK_LONG:
3076 next();
3077 if ((t & VT_BTYPE) == VT_DOUBLE) {
3078 #ifndef TCC_TARGET_PE
3079 t = (t & ~VT_BTYPE) | VT_LDOUBLE;
3080 #endif
3081 } else if ((t & VT_BTYPE) == VT_LONG) {
3082 t = (t & ~VT_BTYPE) | VT_LLONG;
3083 } else {
3084 u = VT_LONG;
3085 goto basic_type1;
3087 break;
3088 case TOK_BOOL:
3089 u = VT_BOOL;
3090 goto basic_type;
3091 case TOK_FLOAT:
3092 u = VT_FLOAT;
3093 goto basic_type;
3094 case TOK_DOUBLE:
3095 next();
3096 if ((t & VT_BTYPE) == VT_LONG) {
3097 #ifdef TCC_TARGET_PE
3098 t = (t & ~VT_BTYPE) | VT_DOUBLE;
3099 #else
3100 t = (t & ~VT_BTYPE) | VT_LDOUBLE;
3101 #endif
3102 } else {
3103 u = VT_DOUBLE;
3104 goto basic_type1;
3106 break;
3107 case TOK_ENUM:
3108 struct_decl(&type1, VT_ENUM, t & VT_TYPEDEF);
3109 basic_type2:
3110 u = type1.t;
3111 type->ref = type1.ref;
3112 goto basic_type1;
3113 case TOK_STRUCT:
3114 case TOK_UNION:
3115 struct_decl(&type1, VT_STRUCT, t & VT_TYPEDEF);
3116 goto basic_type2;
3118 /* type modifiers */
3119 case TOK_CONST1:
3120 case TOK_CONST2:
3121 case TOK_CONST3:
3122 t |= VT_CONSTANT;
3123 next();
3124 break;
3125 case TOK_VOLATILE1:
3126 case TOK_VOLATILE2:
3127 case TOK_VOLATILE3:
3128 t |= VT_VOLATILE;
3129 next();
3130 break;
3131 case TOK_SIGNED1:
3132 case TOK_SIGNED2:
3133 case TOK_SIGNED3:
3134 if ((t & (VT_DEFSIGN|VT_UNSIGNED)) == (VT_DEFSIGN|VT_UNSIGNED))
3135 tcc_error("signed and unsigned modifier");
3136 typespec_found = 1;
3137 t |= VT_DEFSIGN;
3138 next();
3139 break;
3140 case TOK_REGISTER:
3141 case TOK_AUTO:
3142 case TOK_RESTRICT1:
3143 case TOK_RESTRICT2:
3144 case TOK_RESTRICT3:
3145 next();
3146 break;
3147 case TOK_UNSIGNED:
3148 if ((t & (VT_DEFSIGN|VT_UNSIGNED)) == VT_DEFSIGN)
3149 tcc_error("signed and unsigned modifier");
3150 t |= VT_DEFSIGN | VT_UNSIGNED;
3151 next();
3152 typespec_found = 1;
3153 break;
3155 /* storage */
3156 case TOK_EXTERN:
3157 t |= VT_EXTERN;
3158 next();
3159 break;
3160 case TOK_STATIC:
3161 t |= VT_STATIC;
3162 next();
3163 break;
3164 case TOK_TYPEDEF:
3165 t |= VT_TYPEDEF;
3166 next();
3167 break;
3168 case TOK_INLINE1:
3169 case TOK_INLINE2:
3170 case TOK_INLINE3:
3171 t |= VT_INLINE;
3172 next();
3173 break;
3175 /* GNUC attribute */
3176 case TOK_ATTRIBUTE1:
3177 case TOK_ATTRIBUTE2:
3178 parse_attribute(ad);
3179 if (ad->a.mode) {
3180 u = ad->a.mode -1;
3181 t = (t & ~VT_BTYPE) | u;
3183 break;
3184 /* GNUC typeof */
3185 case TOK_TYPEOF1:
3186 case TOK_TYPEOF2:
3187 case TOK_TYPEOF3:
3188 next();
3189 parse_expr_type(&type1);
3190 /* remove all storage modifiers except typedef */
3191 type1.t &= ~(VT_STORAGE&~VT_TYPEDEF);
3192 goto basic_type2;
3193 default:
3194 if (typespec_found)
3195 goto the_end;
3196 s = sym_find(tok);
3197 if (!s || !(s->type.t & VT_TYPEDEF))
3198 goto the_end;
3199 t |= (s->type.t & ~VT_TYPEDEF);
3200 type->ref = s->type.ref;
3201 if (s->r) {
3202 /* get attributes from typedef */
3203 if (0 == ad->a.aligned)
3204 ad->a.aligned = s->a.aligned;
3205 if (0 == ad->a.func_call)
3206 ad->a.func_call = s->a.func_call;
3207 ad->a.packed |= s->a.packed;
3209 next();
3210 typespec_found = 1;
3211 break;
3213 type_found = 1;
3215 the_end:
3216 if (tcc_state->char_is_unsigned) {
3217 if ((t & (VT_DEFSIGN|VT_BTYPE)) == VT_BYTE)
3218 t |= VT_UNSIGNED;
3221 /* long is never used as type */
3222 if ((t & VT_BTYPE) == VT_LONG)
3223 #if !defined TCC_TARGET_X86_64 || defined TCC_TARGET_PE
3224 t = (t & ~VT_BTYPE) | VT_INT;
3225 #else
3226 t = (t & ~VT_BTYPE) | VT_LLONG;
3227 #endif
3228 type->t = t;
3229 return type_found;
3232 /* convert a function parameter type (array to pointer and function to
3233 function pointer) */
3234 static inline void convert_parameter_type(CType *pt)
3236 /* remove const and volatile qualifiers (XXX: const could be used
3237 to indicate a const function parameter */
3238 pt->t &= ~(VT_CONSTANT | VT_VOLATILE);
3239 /* array must be transformed to pointer according to ANSI C */
3240 pt->t &= ~VT_ARRAY;
3241 if ((pt->t & VT_BTYPE) == VT_FUNC) {
3242 mk_pointer(pt);
3246 ST_FUNC void parse_asm_str(CString *astr)
3248 skip('(');
3249 /* read the string */
3250 if (tok != TOK_STR)
3251 expect("string constant");
3252 cstr_new(astr);
3253 while (tok == TOK_STR) {
3254 /* XXX: add \0 handling too ? */
3255 cstr_cat(astr, tokc.cstr->data);
3256 next();
3258 cstr_ccat(astr, '\0');
3261 /* Parse an asm label and return the label
3262 * Don't forget to free the CString in the caller! */
3263 static void asm_label_instr(CString *astr)
3265 next();
3266 parse_asm_str(astr);
3267 skip(')');
3268 #ifdef ASM_DEBUG
3269 printf("asm_alias: \"%s\"\n", (char *)astr->data);
3270 #endif
3273 static void post_type(CType *type, AttributeDef *ad)
3275 int n, l, t1, arg_size, align;
3276 Sym **plast, *s, *first;
3277 AttributeDef ad1;
3278 CType pt;
3280 if (tok == '(') {
3281 /* function declaration */
3282 next();
3283 l = 0;
3284 first = NULL;
3285 plast = &first;
3286 arg_size = 0;
3287 if (tok != ')') {
3288 for(;;) {
3289 /* read param name and compute offset */
3290 if (l != FUNC_OLD) {
3291 if (!parse_btype(&pt, &ad1)) {
3292 if (l) {
3293 tcc_error("invalid type");
3294 } else {
3295 l = FUNC_OLD;
3296 goto old_proto;
3299 l = FUNC_NEW;
3300 if ((pt.t & VT_BTYPE) == VT_VOID && tok == ')')
3301 break;
3302 type_decl(&pt, &ad1, &n, TYPE_DIRECT | TYPE_ABSTRACT);
3303 if ((pt.t & VT_BTYPE) == VT_VOID)
3304 tcc_error("parameter declared as void");
3305 arg_size += (type_size(&pt, &align) + PTR_SIZE - 1) / PTR_SIZE;
3306 } else {
3307 old_proto:
3308 n = tok;
3309 if (n < TOK_UIDENT)
3310 expect("identifier");
3311 pt.t = VT_INT;
3312 next();
3314 convert_parameter_type(&pt);
3315 s = sym_push(n | SYM_FIELD, &pt, 0, 0);
3316 *plast = s;
3317 plast = &s->next;
3318 if (tok == ')')
3319 break;
3320 skip(',');
3321 if (l == FUNC_NEW && tok == TOK_DOTS) {
3322 l = FUNC_ELLIPSIS;
3323 next();
3324 break;
3328 /* if no parameters, then old type prototype */
3329 if (l == 0)
3330 l = FUNC_OLD;
3331 skip(')');
3332 /* NOTE: const is ignored in returned type as it has a special
3333 meaning in gcc / C++ */
3334 type->t &= ~VT_CONSTANT;
3335 /* some ancient pre-K&R C allows a function to return an array
3336 and the array brackets to be put after the arguments, such
3337 that "int c()[]" means something like "int[] c()" */
3338 if (tok == '[') {
3339 next();
3340 skip(']'); /* only handle simple "[]" */
3341 type->t |= VT_PTR;
3343 /* we push a anonymous symbol which will contain the function prototype */
3344 ad->a.func_args = arg_size;
3345 s = sym_push(SYM_FIELD, type, 0, l);
3346 s->a = ad->a;
3347 s->next = first;
3348 type->t = VT_FUNC;
3349 type->ref = s;
3350 } else if (tok == '[') {
3351 /* array definition */
3352 next();
3353 if (tok == TOK_RESTRICT1)
3354 next();
3355 n = -1;
3356 t1 = 0;
3357 if (tok != ']') {
3358 if (!local_stack || nocode_wanted)
3359 vpushi(expr_const());
3360 else gexpr();
3361 if ((vtop->r & (VT_VALMASK | VT_LVAL | VT_SYM)) == VT_CONST) {
3362 n = vtop->c.i;
3363 if (n < 0)
3364 tcc_error("invalid array size");
3365 } else {
3366 if (!is_integer_btype(vtop->type.t & VT_BTYPE))
3367 tcc_error("size of variable length array should be an integer");
3368 t1 = VT_VLA;
3371 skip(']');
3372 /* parse next post type */
3373 post_type(type, ad);
3374 if (type->t == VT_FUNC)
3375 tcc_error("declaration of an array of functions");
3376 t1 |= type->t & VT_VLA;
3378 if (t1 & VT_VLA) {
3379 loc -= type_size(&int_type, &align);
3380 loc &= -align;
3381 n = loc;
3383 vla_runtime_type_size(type, &align);
3384 gen_op('*');
3385 vset(&int_type, VT_LOCAL|VT_LVAL, loc);
3386 vswap();
3387 vstore();
3389 if (n != -1)
3390 vpop();
3392 /* we push an anonymous symbol which will contain the array
3393 element type */
3394 s = sym_push(SYM_FIELD, type, 0, n);
3395 type->t = (t1 ? VT_VLA : VT_ARRAY) | VT_PTR;
3396 type->ref = s;
3400 /* Parse a type declaration (except basic type), and return the type
3401 in 'type'. 'td' is a bitmask indicating which kind of type decl is
3402 expected. 'type' should contain the basic type. 'ad' is the
3403 attribute definition of the basic type. It can be modified by
3404 type_decl().
3406 static void type_decl(CType *type, AttributeDef *ad, int *v, int td)
3408 Sym *s;
3409 CType type1, *type2;
3410 int qualifiers, storage;
3412 while (tok == '*') {
3413 qualifiers = 0;
3414 redo:
3415 next();
3416 switch(tok) {
3417 case TOK_CONST1:
3418 case TOK_CONST2:
3419 case TOK_CONST3:
3420 qualifiers |= VT_CONSTANT;
3421 goto redo;
3422 case TOK_VOLATILE1:
3423 case TOK_VOLATILE2:
3424 case TOK_VOLATILE3:
3425 qualifiers |= VT_VOLATILE;
3426 goto redo;
3427 case TOK_RESTRICT1:
3428 case TOK_RESTRICT2:
3429 case TOK_RESTRICT3:
3430 goto redo;
3432 mk_pointer(type);
3433 type->t |= qualifiers;
3436 /* XXX: clarify attribute handling */
3437 if (tok == TOK_ATTRIBUTE1 || tok == TOK_ATTRIBUTE2)
3438 parse_attribute(ad);
3440 /* recursive type */
3441 /* XXX: incorrect if abstract type for functions (e.g. 'int ()') */
3442 type1.t = 0; /* XXX: same as int */
3443 if (tok == '(') {
3444 next();
3445 /* XXX: this is not correct to modify 'ad' at this point, but
3446 the syntax is not clear */
3447 if (tok == TOK_ATTRIBUTE1 || tok == TOK_ATTRIBUTE2)
3448 parse_attribute(ad);
3449 type_decl(&type1, ad, v, td);
3450 skip(')');
3451 } else {
3452 /* type identifier */
3453 if (tok >= TOK_IDENT && (td & TYPE_DIRECT)) {
3454 *v = tok;
3455 next();
3456 } else {
3457 if (!(td & TYPE_ABSTRACT))
3458 expect("identifier");
3459 *v = 0;
3462 storage = type->t & VT_STORAGE;
3463 type->t &= ~VT_STORAGE;
3464 if (storage & VT_STATIC) {
3465 int saved_nocode_wanted = nocode_wanted;
3466 nocode_wanted = 1;
3467 post_type(type, ad);
3468 nocode_wanted = saved_nocode_wanted;
3469 } else
3470 post_type(type, ad);
3471 type->t |= storage;
3472 if (tok == TOK_ATTRIBUTE1 || tok == TOK_ATTRIBUTE2)
3473 parse_attribute(ad);
3475 if (!type1.t)
3476 return;
3477 /* append type at the end of type1 */
3478 type2 = &type1;
3479 for(;;) {
3480 s = type2->ref;
3481 type2 = &s->type;
3482 if (!type2->t) {
3483 *type2 = *type;
3484 break;
3487 *type = type1;
3490 /* compute the lvalue VT_LVAL_xxx needed to match type t. */
3491 ST_FUNC int lvalue_type(int t)
3493 int bt, r;
3494 r = VT_LVAL;
3495 bt = t & VT_BTYPE;
3496 if (bt == VT_BYTE || bt == VT_BOOL)
3497 r |= VT_LVAL_BYTE;
3498 else if (bt == VT_SHORT)
3499 r |= VT_LVAL_SHORT;
3500 else
3501 return r;
3502 if (t & VT_UNSIGNED)
3503 r |= VT_LVAL_UNSIGNED;
3504 return r;
3507 /* indirection with full error checking and bound check */
3508 ST_FUNC void indir(void)
3510 if ((vtop->type.t & VT_BTYPE) != VT_PTR) {
3511 if ((vtop->type.t & VT_BTYPE) == VT_FUNC)
3512 return;
3513 expect("pointer");
3515 if ((vtop->r & VT_LVAL) && !nocode_wanted)
3516 gv(RC_INT);
3517 vtop->type = *pointed_type(&vtop->type);
3518 /* Arrays and functions are never lvalues */
3519 if (!(vtop->type.t & VT_ARRAY) && !(vtop->type.t & VT_VLA)
3520 && (vtop->type.t & VT_BTYPE) != VT_FUNC) {
3521 vtop->r |= lvalue_type(vtop->type.t);
3522 /* if bound checking, the referenced pointer must be checked */
3523 #ifdef CONFIG_TCC_BCHECK
3524 if (tcc_state->do_bounds_check)
3525 vtop->r |= VT_MUSTBOUND;
3526 #endif
3530 /* pass a parameter to a function and do type checking and casting */
3531 static void gfunc_param_typed(Sym *func, Sym *arg)
3533 int func_type;
3534 CType type;
3536 func_type = func->c;
3537 if (func_type == FUNC_OLD ||
3538 (func_type == FUNC_ELLIPSIS && arg == NULL)) {
3539 /* default casting : only need to convert float to double */
3540 if ((vtop->type.t & VT_BTYPE) == VT_FLOAT) {
3541 type.t = VT_DOUBLE;
3542 gen_cast(&type);
3543 } else if (vtop->type.t & VT_BITFIELD) {
3544 type.t = vtop->type.t & (VT_BTYPE | VT_UNSIGNED);
3545 gen_cast(&type);
3547 } else if (arg == NULL) {
3548 tcc_error("too many arguments to function");
3549 } else {
3550 type = arg->type;
3551 type.t &= ~VT_CONSTANT; /* need to do that to avoid false warning */
3552 gen_assign_cast(&type);
3556 /* parse an expression of the form '(type)' or '(expr)' and return its
3557 type */
3558 static void parse_expr_type(CType *type)
3560 int n;
3561 AttributeDef ad;
3563 skip('(');
3564 if (parse_btype(type, &ad)) {
3565 type_decl(type, &ad, &n, TYPE_ABSTRACT);
3566 } else {
3567 expr_type(type);
3569 skip(')');
3572 static void parse_type(CType *type)
3574 AttributeDef ad;
3575 int n;
3577 if (!parse_btype(type, &ad)) {
3578 expect("type");
3580 type_decl(type, &ad, &n, TYPE_ABSTRACT);
3583 static void vpush_tokc(int t)
3585 CType type;
3586 type.t = t;
3587 type.ref = 0;
3588 vsetc(&type, VT_CONST, &tokc);
3591 ST_FUNC void unary(void)
3593 int n, t, align, size, r, sizeof_caller;
3594 CType type;
3595 Sym *s;
3596 AttributeDef ad;
3597 static int in_sizeof = 0;
3599 sizeof_caller = in_sizeof;
3600 in_sizeof = 0;
3601 /* XXX: GCC 2.95.3 does not generate a table although it should be
3602 better here */
3603 tok_next:
3604 switch(tok) {
3605 case TOK_EXTENSION:
3606 next();
3607 goto tok_next;
3608 case TOK_CINT:
3609 case TOK_CCHAR:
3610 case TOK_LCHAR:
3611 vpushi(tokc.i);
3612 next();
3613 break;
3614 case TOK_CUINT:
3615 vpush_tokc(VT_INT | VT_UNSIGNED);
3616 next();
3617 break;
3618 case TOK_CLLONG:
3619 vpush_tokc(VT_LLONG);
3620 next();
3621 break;
3622 case TOK_CULLONG:
3623 vpush_tokc(VT_LLONG | VT_UNSIGNED);
3624 next();
3625 break;
3626 case TOK_CFLOAT:
3627 vpush_tokc(VT_FLOAT);
3628 next();
3629 break;
3630 case TOK_CDOUBLE:
3631 vpush_tokc(VT_DOUBLE);
3632 next();
3633 break;
3634 case TOK_CLDOUBLE:
3635 vpush_tokc(VT_LDOUBLE);
3636 next();
3637 break;
3638 case TOK___FUNCTION__:
3639 if (!gnu_ext)
3640 goto tok_identifier;
3641 /* fall thru */
3642 case TOK___FUNC__:
3644 void *ptr;
3645 int len;
3646 /* special function name identifier */
3647 len = strlen(funcname) + 1;
3648 /* generate char[len] type */
3649 type.t = VT_BYTE;
3650 mk_pointer(&type);
3651 type.t |= VT_ARRAY;
3652 type.ref->c = len;
3653 vpush_ref(&type, data_section, data_section->data_offset, len);
3654 ptr = section_ptr_add(data_section, len);
3655 memcpy(ptr, funcname, len);
3656 next();
3658 break;
3659 case TOK_LSTR:
3660 #ifdef TCC_TARGET_PE
3661 t = VT_SHORT | VT_UNSIGNED;
3662 #else
3663 t = VT_INT;
3664 #endif
3665 goto str_init;
3666 case TOK_STR:
3667 /* string parsing */
3668 t = VT_BYTE;
3669 str_init:
3670 if (tcc_state->warn_write_strings)
3671 t |= VT_CONSTANT;
3672 type.t = t;
3673 mk_pointer(&type);
3674 type.t |= VT_ARRAY;
3675 memset(&ad, 0, sizeof(AttributeDef));
3676 decl_initializer_alloc(&type, &ad, VT_CONST, 2, 0, NULL, 0);
3677 break;
3678 case '(':
3679 next();
3680 /* cast ? */
3681 if (parse_btype(&type, &ad)) {
3682 type_decl(&type, &ad, &n, TYPE_ABSTRACT);
3683 skip(')');
3684 /* check ISOC99 compound literal */
3685 if (tok == '{') {
3686 /* data is allocated locally by default */
3687 if (global_expr)
3688 r = VT_CONST;
3689 else
3690 r = VT_LOCAL;
3691 /* all except arrays are lvalues */
3692 if (!(type.t & VT_ARRAY))
3693 r |= lvalue_type(type.t);
3694 memset(&ad, 0, sizeof(AttributeDef));
3695 decl_initializer_alloc(&type, &ad, r, 1, 0, NULL, 0);
3696 } else {
3697 if (sizeof_caller) {
3698 vpush(&type);
3699 return;
3701 unary();
3702 gen_cast(&type);
3704 } else if (tok == '{') {
3705 /* save all registers */
3706 save_regs(0);
3707 /* statement expression : we do not accept break/continue
3708 inside as GCC does */
3709 block(NULL, NULL, NULL, NULL, 0, 1);
3710 skip(')');
3711 } else {
3712 gexpr();
3713 skip(')');
3715 break;
3716 case '*':
3717 next();
3718 unary();
3719 indir();
3720 break;
3721 case '&':
3722 next();
3723 unary();
3724 /* functions names must be treated as function pointers,
3725 except for unary '&' and sizeof. Since we consider that
3726 functions are not lvalues, we only have to handle it
3727 there and in function calls. */
3728 /* arrays can also be used although they are not lvalues */
3729 if ((vtop->type.t & VT_BTYPE) != VT_FUNC &&
3730 !(vtop->type.t & VT_ARRAY) && !(vtop->type.t & VT_LLOCAL))
3731 test_lvalue();
3732 mk_pointer(&vtop->type);
3733 gaddrof();
3734 break;
3735 case '!':
3736 next();
3737 unary();
3738 if ((vtop->r & (VT_VALMASK | VT_LVAL | VT_SYM)) == VT_CONST) {
3739 CType boolean;
3740 boolean.t = VT_BOOL;
3741 gen_cast(&boolean);
3742 vtop->c.i = !vtop->c.i;
3743 } else if ((vtop->r & VT_VALMASK) == VT_CMP)
3744 vtop->c.i = vtop->c.i ^ 1;
3745 else {
3746 save_regs(1);
3747 vseti(VT_JMP, gtst(1, 0));
3749 break;
3750 case '~':
3751 next();
3752 unary();
3753 vpushi(-1);
3754 gen_op('^');
3755 break;
3756 case '+':
3757 next();
3758 unary();
3759 if ((vtop->type.t & VT_BTYPE) == VT_PTR)
3760 tcc_error("pointer not accepted for unary plus");
3761 /* In order to force cast, we add zero, except for floating point
3762 where we really need an noop (otherwise -0.0 will be transformed
3763 into +0.0). */
3764 if (!is_float(vtop->type.t)) {
3765 vpushi(0);
3766 gen_op('+');
3768 break;
3769 case TOK_SIZEOF:
3770 case TOK_ALIGNOF1:
3771 case TOK_ALIGNOF2:
3772 t = tok;
3773 next();
3774 in_sizeof++;
3775 unary_type(&type); // Perform a in_sizeof = 0;
3776 size = type_size(&type, &align);
3777 if (t == TOK_SIZEOF) {
3778 if (!(type.t & VT_VLA)) {
3779 if (size < 0)
3780 tcc_error("sizeof applied to an incomplete type");
3781 vpushs(size);
3782 } else {
3783 vla_runtime_type_size(&type, &align);
3785 } else {
3786 vpushs(align);
3788 vtop->type.t |= VT_UNSIGNED;
3789 break;
3791 case TOK_builtin_types_compatible_p:
3793 CType type1, type2;
3794 next();
3795 skip('(');
3796 parse_type(&type1);
3797 skip(',');
3798 parse_type(&type2);
3799 skip(')');
3800 type1.t &= ~(VT_CONSTANT | VT_VOLATILE);
3801 type2.t &= ~(VT_CONSTANT | VT_VOLATILE);
3802 vpushi(is_compatible_types(&type1, &type2));
3804 break;
3805 case TOK_builtin_constant_p:
3807 int saved_nocode_wanted, res;
3808 next();
3809 skip('(');
3810 saved_nocode_wanted = nocode_wanted;
3811 nocode_wanted = 1;
3812 gexpr();
3813 res = (vtop->r & (VT_VALMASK | VT_LVAL | VT_SYM)) == VT_CONST;
3814 vpop();
3815 nocode_wanted = saved_nocode_wanted;
3816 skip(')');
3817 vpushi(res);
3819 break;
3820 case TOK_builtin_frame_address:
3822 int level;
3823 CType type;
3824 next();
3825 skip('(');
3826 if (tok != TOK_CINT || tokc.i < 0) {
3827 tcc_error("__builtin_frame_address only takes positive integers");
3829 level = tokc.i;
3830 next();
3831 skip(')');
3832 type.t = VT_VOID;
3833 mk_pointer(&type);
3834 vset(&type, VT_LOCAL, 0); /* local frame */
3835 while (level--) {
3836 mk_pointer(&vtop->type);
3837 indir(); /* -> parent frame */
3840 break;
3841 #ifdef TCC_TARGET_X86_64
3842 #ifdef TCC_TARGET_PE
3843 case TOK_builtin_va_start:
3845 next();
3846 skip('(');
3847 expr_eq();
3848 skip(',');
3849 expr_eq();
3850 skip(')');
3851 if ((vtop->r & VT_VALMASK) != VT_LOCAL)
3852 tcc_error("__builtin_va_start expects a local variable");
3853 vtop->r &= ~(VT_LVAL | VT_REF);
3854 vtop->type = char_pointer_type;
3855 vstore();
3857 break;
3858 #else
3859 case TOK_builtin_va_arg_types:
3861 CType type;
3862 next();
3863 skip('(');
3864 parse_type(&type);
3865 skip(')');
3866 vpushi(classify_x86_64_va_arg(&type));
3868 break;
3869 #endif
3870 #endif
3871 case TOK_INC:
3872 case TOK_DEC:
3873 t = tok;
3874 next();
3875 unary();
3876 inc(0, t);
3877 break;
3878 case '-':
3879 next();
3880 unary();
3881 t = vtop->type.t & VT_BTYPE;
3882 if (is_float(t)) {
3883 /* In IEEE negate(x) isn't subtract(0,x), but rather
3884 subtract(-0, x). */
3885 vpush(&vtop->type);
3886 if (t == VT_FLOAT)
3887 vtop->c.f = -0.0f;
3888 else if (t == VT_DOUBLE)
3889 vtop->c.d = -0.0;
3890 else
3891 vtop->c.ld = -0.0;
3892 } else
3893 vpushi(0);
3894 vswap();
3895 gen_op('-');
3896 break;
3897 case TOK_LAND:
3898 if (!gnu_ext)
3899 goto tok_identifier;
3900 next();
3901 /* allow to take the address of a label */
3902 if (tok < TOK_UIDENT)
3903 expect("label identifier");
3904 s = label_find(tok);
3905 if (!s) {
3906 s = label_push(&global_label_stack, tok, LABEL_FORWARD);
3907 } else {
3908 if (s->r == LABEL_DECLARED)
3909 s->r = LABEL_FORWARD;
3911 if (!s->type.t) {
3912 s->type.t = VT_VOID;
3913 mk_pointer(&s->type);
3914 s->type.t |= VT_STATIC;
3916 vpushsym(&s->type, s);
3917 next();
3918 break;
3920 // special qnan , snan and infinity values
3921 case TOK___NAN__:
3922 vpush64(VT_DOUBLE, 0x7ff8000000000000ULL);
3923 next();
3924 break;
3925 case TOK___SNAN__:
3926 vpush64(VT_DOUBLE, 0x7ff0000000000001ULL);
3927 next();
3928 break;
3929 case TOK___INF__:
3930 vpush64(VT_DOUBLE, 0x7ff0000000000000ULL);
3931 next();
3932 break;
3934 default:
3935 tok_identifier:
3936 t = tok;
3937 next();
3938 if (t < TOK_UIDENT)
3939 expect("identifier");
3940 s = sym_find(t);
3941 if (!s) {
3942 const char *name = get_tok_str(t, NULL);
3943 if (tok != '(')
3944 tcc_error("'%s' undeclared", name);
3945 /* for simple function calls, we tolerate undeclared
3946 external reference to int() function */
3947 if (tcc_state->warn_implicit_function_declaration
3948 #ifdef TCC_TARGET_PE
3949 /* people must be warned about using undeclared WINAPI functions
3950 (which usually start with uppercase letter) */
3951 || (name[0] >= 'A' && name[0] <= 'Z')
3952 #endif
3954 tcc_warning("implicit declaration of function '%s'", name);
3955 s = external_global_sym(t, &func_old_type, 0);
3957 if ((s->type.t & (VT_STATIC | VT_INLINE | VT_BTYPE)) ==
3958 (VT_STATIC | VT_INLINE | VT_FUNC)) {
3959 /* if referencing an inline function, then we generate a
3960 symbol to it if not already done. It will have the
3961 effect to generate code for it at the end of the
3962 compilation unit. Inline function as always
3963 generated in the text section. */
3964 if (!s->c)
3965 put_extern_sym(s, text_section, 0, 0);
3966 r = VT_SYM | VT_CONST;
3967 } else {
3968 r = s->r;
3970 vset(&s->type, r, s->c);
3971 /* if forward reference, we must point to s */
3972 if (vtop->r & VT_SYM) {
3973 vtop->sym = s;
3974 vtop->c.ptr_offset = 0;
3976 break;
3979 /* post operations */
3980 while (1) {
3981 if (tok == TOK_INC || tok == TOK_DEC) {
3982 inc(1, tok);
3983 next();
3984 } else if (tok == '.' || tok == TOK_ARROW) {
3985 int qualifiers;
3986 /* field */
3987 if (tok == TOK_ARROW)
3988 indir();
3989 qualifiers = vtop->type.t & (VT_CONSTANT | VT_VOLATILE);
3990 test_lvalue();
3991 gaddrof();
3992 next();
3993 /* expect pointer on structure */
3994 if ((vtop->type.t & VT_BTYPE) != VT_STRUCT)
3995 expect("struct or union");
3996 s = vtop->type.ref;
3997 /* find field */
3998 tok |= SYM_FIELD;
3999 while ((s = s->next) != NULL) {
4000 if (s->v == tok)
4001 break;
4003 if (!s)
4004 tcc_error("field not found: %s", get_tok_str(tok & ~SYM_FIELD, NULL));
4005 /* add field offset to pointer */
4006 vtop->type = char_pointer_type; /* change type to 'char *' */
4007 vpushi(s->c);
4008 gen_op('+');
4009 /* change type to field type, and set to lvalue */
4010 vtop->type = s->type;
4011 vtop->type.t |= qualifiers;
4012 /* an array is never an lvalue */
4013 if (!(vtop->type.t & VT_ARRAY)) {
4014 vtop->r |= lvalue_type(vtop->type.t);
4015 #ifdef CONFIG_TCC_BCHECK
4016 /* if bound checking, the referenced pointer must be checked */
4017 if (tcc_state->do_bounds_check)
4018 vtop->r |= VT_MUSTBOUND;
4019 #endif
4021 next();
4022 } else if (tok == '[') {
4023 next();
4024 gexpr();
4025 gen_op('+');
4026 indir();
4027 skip(']');
4028 } else if (tok == '(') {
4029 SValue ret;
4030 Sym *sa;
4031 int nb_args, ret_nregs, ret_align, variadic;
4033 /* function call */
4034 if ((vtop->type.t & VT_BTYPE) != VT_FUNC) {
4035 /* pointer test (no array accepted) */
4036 if ((vtop->type.t & (VT_BTYPE | VT_ARRAY)) == VT_PTR) {
4037 vtop->type = *pointed_type(&vtop->type);
4038 if ((vtop->type.t & VT_BTYPE) != VT_FUNC)
4039 goto error_func;
4040 } else {
4041 error_func:
4042 expect("function pointer");
4044 } else {
4045 vtop->r &= ~VT_LVAL; /* no lvalue */
4047 /* get return type */
4048 s = vtop->type.ref;
4049 next();
4050 sa = s->next; /* first parameter */
4051 nb_args = 0;
4052 ret.r2 = VT_CONST;
4053 /* compute first implicit argument if a structure is returned */
4054 if ((s->type.t & VT_BTYPE) == VT_STRUCT) {
4055 variadic = (s->c == FUNC_ELLIPSIS);
4056 ret_nregs = gfunc_sret(&s->type, variadic, &ret.type,
4057 &ret_align);
4058 if (!ret_nregs) {
4059 /* get some space for the returned structure */
4060 size = type_size(&s->type, &align);
4061 loc = (loc - size) & -align;
4062 ret.type = s->type;
4063 ret.r = VT_LOCAL | VT_LVAL;
4064 /* pass it as 'int' to avoid structure arg passing
4065 problems */
4066 vseti(VT_LOCAL, loc);
4067 ret.c = vtop->c;
4068 nb_args++;
4070 } else {
4071 ret_nregs = 1;
4072 ret.type = s->type;
4075 if (ret_nregs) {
4076 /* return in register */
4077 if (is_float(ret.type.t)) {
4078 ret.r = reg_fret(ret.type.t);
4079 #ifdef TCC_TARGET_X86_64
4080 if ((ret.type.t & VT_BTYPE) == VT_QFLOAT)
4081 ret.r2 = REG_QRET;
4082 #endif
4083 } else {
4084 #ifdef TCC_TARGET_X86_64
4085 if ((ret.type.t & VT_BTYPE) == VT_QLONG)
4086 #else
4087 if ((ret.type.t & VT_BTYPE) == VT_LLONG)
4088 #endif
4089 ret.r2 = REG_LRET;
4090 ret.r = REG_IRET;
4092 ret.c.i = 0;
4094 if (tok != ')') {
4095 for(;;) {
4096 expr_eq();
4097 gfunc_param_typed(s, sa);
4098 nb_args++;
4099 if (sa)
4100 sa = sa->next;
4101 if (tok == ')')
4102 break;
4103 skip(',');
4106 if (sa)
4107 tcc_error("too few arguments to function");
4108 skip(')');
4109 if (!nocode_wanted) {
4110 gfunc_call(nb_args);
4111 } else {
4112 vtop -= (nb_args + 1);
4115 /* return value */
4116 for (r = ret.r + ret_nregs + !ret_nregs; r-- > ret.r;) {
4117 vsetc(&ret.type, r, &ret.c);
4118 vtop->r2 = ret.r2; /* Loop only happens when r2 is VT_CONST */
4121 /* handle packed struct return */
4122 if (((s->type.t & VT_BTYPE) == VT_STRUCT) && ret_nregs) {
4123 int addr, offset;
4125 size = type_size(&s->type, &align);
4126 loc = (loc - size) & -align;
4127 addr = loc;
4128 offset = 0;
4129 for (;;) {
4130 vset(&ret.type, VT_LOCAL | VT_LVAL, addr + offset);
4131 vswap();
4132 vstore();
4133 vtop--;
4134 if (--ret_nregs == 0)
4135 break;
4136 /* XXX: compatible with arm only: ret_align == register_size */
4137 offset += ret_align;
4139 vset(&s->type, VT_LOCAL | VT_LVAL, addr);
4141 } else {
4142 break;
4147 ST_FUNC void expr_prod(void)
4149 int t;
4151 unary();
4152 while (tok == '*' || tok == '/' || tok == '%') {
4153 t = tok;
4154 next();
4155 unary();
4156 gen_op(t);
4160 ST_FUNC void expr_sum(void)
4162 int t;
4164 expr_prod();
4165 while (tok == '+' || tok == '-') {
4166 t = tok;
4167 next();
4168 expr_prod();
4169 gen_op(t);
4173 static void expr_shift(void)
4175 int t;
4177 expr_sum();
4178 while (tok == TOK_SHL || tok == TOK_SAR) {
4179 t = tok;
4180 next();
4181 expr_sum();
4182 gen_op(t);
4186 static void expr_cmp(void)
4188 int t;
4190 expr_shift();
4191 while ((tok >= TOK_ULE && tok <= TOK_GT) ||
4192 tok == TOK_ULT || tok == TOK_UGE) {
4193 t = tok;
4194 next();
4195 expr_shift();
4196 gen_op(t);
4200 static void expr_cmpeq(void)
4202 int t;
4204 expr_cmp();
4205 while (tok == TOK_EQ || tok == TOK_NE) {
4206 t = tok;
4207 next();
4208 expr_cmp();
4209 gen_op(t);
4213 static void expr_and(void)
4215 expr_cmpeq();
4216 while (tok == '&') {
4217 next();
4218 expr_cmpeq();
4219 gen_op('&');
4223 static void expr_xor(void)
4225 expr_and();
4226 while (tok == '^') {
4227 next();
4228 expr_and();
4229 gen_op('^');
4233 static void expr_or(void)
4235 expr_xor();
4236 while (tok == '|') {
4237 next();
4238 expr_xor();
4239 gen_op('|');
4243 /* XXX: fix this mess */
4244 static void expr_land_const(void)
4246 expr_or();
4247 while (tok == TOK_LAND) {
4248 next();
4249 expr_or();
4250 gen_op(TOK_LAND);
4254 /* XXX: fix this mess */
4255 static void expr_lor_const(void)
4257 expr_land_const();
4258 while (tok == TOK_LOR) {
4259 next();
4260 expr_land_const();
4261 gen_op(TOK_LOR);
4265 /* only used if non constant */
4266 static void expr_land(void)
4268 int t;
4270 expr_or();
4271 if (tok == TOK_LAND) {
4272 t = 0;
4273 save_regs(1);
4274 for(;;) {
4275 t = gtst(1, t);
4276 if (tok != TOK_LAND) {
4277 vseti(VT_JMPI, t);
4278 break;
4280 next();
4281 expr_or();
4286 static void expr_lor(void)
4288 int t;
4290 expr_land();
4291 if (tok == TOK_LOR) {
4292 t = 0;
4293 save_regs(1);
4294 for(;;) {
4295 t = gtst(0, t);
4296 if (tok != TOK_LOR) {
4297 vseti(VT_JMP, t);
4298 break;
4300 next();
4301 expr_land();
4306 /* XXX: better constant handling */
4307 static void expr_cond(void)
4309 int tt, u, r1, r2, rc, t1, t2, bt1, bt2;
4310 SValue sv;
4311 CType type, type1, type2;
4313 if (const_wanted) {
4314 expr_lor_const();
4315 if (tok == '?') {
4316 CType boolean;
4317 int c;
4318 boolean.t = VT_BOOL;
4319 vdup();
4320 gen_cast(&boolean);
4321 c = vtop->c.i;
4322 vpop();
4323 next();
4324 if (tok != ':' || !gnu_ext) {
4325 vpop();
4326 gexpr();
4328 if (!c)
4329 vpop();
4330 skip(':');
4331 expr_cond();
4332 if (c)
4333 vpop();
4335 } else {
4336 expr_lor();
4337 if (tok == '?') {
4338 next();
4339 if (vtop != vstack) {
4340 /* needed to avoid having different registers saved in
4341 each branch */
4342 if (is_float(vtop->type.t)) {
4343 rc = RC_FLOAT;
4344 #ifdef TCC_TARGET_X86_64
4345 if ((vtop->type.t & VT_BTYPE) == VT_LDOUBLE) {
4346 rc = RC_ST0;
4348 #endif
4350 else
4351 rc = RC_INT;
4352 gv(rc);
4353 save_regs(1);
4355 if (tok == ':' && gnu_ext) {
4356 gv_dup();
4357 tt = gtst(1, 0);
4358 } else {
4359 tt = gtst(1, 0);
4360 gexpr();
4362 type1 = vtop->type;
4363 sv = *vtop; /* save value to handle it later */
4364 vtop--; /* no vpop so that FP stack is not flushed */
4365 skip(':');
4366 u = gjmp(0);
4367 gsym(tt);
4368 expr_cond();
4369 type2 = vtop->type;
4371 t1 = type1.t;
4372 bt1 = t1 & VT_BTYPE;
4373 t2 = type2.t;
4374 bt2 = t2 & VT_BTYPE;
4375 /* cast operands to correct type according to ISOC rules */
4376 if (is_float(bt1) || is_float(bt2)) {
4377 if (bt1 == VT_LDOUBLE || bt2 == VT_LDOUBLE) {
4378 type.t = VT_LDOUBLE;
4379 } else if (bt1 == VT_DOUBLE || bt2 == VT_DOUBLE) {
4380 type.t = VT_DOUBLE;
4381 } else {
4382 type.t = VT_FLOAT;
4384 } else if (bt1 == VT_LLONG || bt2 == VT_LLONG) {
4385 /* cast to biggest op */
4386 type.t = VT_LLONG;
4387 /* convert to unsigned if it does not fit in a long long */
4388 if ((t1 & (VT_BTYPE | VT_UNSIGNED)) == (VT_LLONG | VT_UNSIGNED) ||
4389 (t2 & (VT_BTYPE | VT_UNSIGNED)) == (VT_LLONG | VT_UNSIGNED))
4390 type.t |= VT_UNSIGNED;
4391 } else if (bt1 == VT_PTR || bt2 == VT_PTR) {
4392 /* If one is a null ptr constant the result type
4393 is the other. */
4394 if (is_null_pointer (vtop))
4395 type = type1;
4396 else if (is_null_pointer (&sv))
4397 type = type2;
4398 /* XXX: test pointer compatibility, C99 has more elaborate
4399 rules here. */
4400 else
4401 type = type1;
4402 } else if (bt1 == VT_FUNC || bt2 == VT_FUNC) {
4403 /* XXX: test function pointer compatibility */
4404 type = bt1 == VT_FUNC ? type1 : type2;
4405 } else if (bt1 == VT_STRUCT || bt2 == VT_STRUCT) {
4406 /* XXX: test structure compatibility */
4407 type = bt1 == VT_STRUCT ? type1 : type2;
4408 } else if (bt1 == VT_VOID || bt2 == VT_VOID) {
4409 /* NOTE: as an extension, we accept void on only one side */
4410 type.t = VT_VOID;
4411 } else {
4412 /* integer operations */
4413 type.t = VT_INT;
4414 /* convert to unsigned if it does not fit in an integer */
4415 if ((t1 & (VT_BTYPE | VT_UNSIGNED)) == (VT_INT | VT_UNSIGNED) ||
4416 (t2 & (VT_BTYPE | VT_UNSIGNED)) == (VT_INT | VT_UNSIGNED))
4417 type.t |= VT_UNSIGNED;
4420 /* now we convert second operand */
4421 gen_cast(&type);
4422 if (VT_STRUCT == (vtop->type.t & VT_BTYPE))
4423 gaddrof();
4424 rc = RC_INT;
4425 if (is_float(type.t)) {
4426 rc = RC_FLOAT;
4427 #ifdef TCC_TARGET_X86_64
4428 if ((type.t & VT_BTYPE) == VT_LDOUBLE) {
4429 rc = RC_ST0;
4431 #endif
4432 } else if ((type.t & VT_BTYPE) == VT_LLONG) {
4433 /* for long longs, we use fixed registers to avoid having
4434 to handle a complicated move */
4435 rc = RC_IRET;
4438 r2 = gv(rc);
4439 /* this is horrible, but we must also convert first
4440 operand */
4441 tt = gjmp(0);
4442 gsym(u);
4443 /* put again first value and cast it */
4444 *vtop = sv;
4445 gen_cast(&type);
4446 if (VT_STRUCT == (vtop->type.t & VT_BTYPE))
4447 gaddrof();
4448 r1 = gv(rc);
4449 move_reg(r2, r1, type.t);
4450 vtop->r = r2;
4451 gsym(tt);
4456 static void expr_eq(void)
4458 int t;
4460 expr_cond();
4461 if (tok == '=' ||
4462 (tok >= TOK_A_MOD && tok <= TOK_A_DIV) ||
4463 tok == TOK_A_XOR || tok == TOK_A_OR ||
4464 tok == TOK_A_SHL || tok == TOK_A_SAR) {
4465 test_lvalue();
4466 t = tok;
4467 next();
4468 if (t == '=') {
4469 expr_eq();
4470 } else {
4471 vdup();
4472 expr_eq();
4473 gen_op(t & 0x7f);
4475 vstore();
4479 ST_FUNC void gexpr(void)
4481 while (1) {
4482 expr_eq();
4483 if (tok != ',')
4484 break;
4485 vpop();
4486 next();
4490 /* parse an expression and return its type without any side effect. */
4491 static void expr_type(CType *type)
4493 int saved_nocode_wanted;
4495 saved_nocode_wanted = nocode_wanted;
4496 nocode_wanted = 1;
4497 gexpr();
4498 *type = vtop->type;
4499 vpop();
4500 nocode_wanted = saved_nocode_wanted;
4503 /* parse a unary expression and return its type without any side
4504 effect. */
4505 static void unary_type(CType *type)
4507 int a;
4509 a = nocode_wanted;
4510 nocode_wanted = 1;
4511 unary();
4512 *type = vtop->type;
4513 vpop();
4514 nocode_wanted = a;
4517 /* parse a constant expression and return value in vtop. */
4518 static void expr_const1(void)
4520 int a;
4521 a = const_wanted;
4522 const_wanted = 1;
4523 expr_cond();
4524 const_wanted = a;
4527 /* parse an integer constant and return its value. */
4528 ST_FUNC int expr_const(void)
4530 int c;
4531 expr_const1();
4532 if ((vtop->r & (VT_VALMASK | VT_LVAL | VT_SYM)) != VT_CONST)
4533 expect("constant expression");
4534 c = vtop->c.i;
4535 vpop();
4536 return c;
4539 /* return the label token if current token is a label, otherwise
4540 return zero */
4541 static int is_label(void)
4543 int last_tok;
4545 /* fast test first */
4546 if (tok < TOK_UIDENT)
4547 return 0;
4548 /* no need to save tokc because tok is an identifier */
4549 last_tok = tok;
4550 next();
4551 if (tok == ':') {
4552 next();
4553 return last_tok;
4554 } else {
4555 unget_tok(last_tok);
4556 return 0;
4560 static void label_or_decl(int l)
4562 int last_tok;
4564 /* fast test first */
4565 if (tok >= TOK_UIDENT)
4567 /* no need to save tokc because tok is an identifier */
4568 last_tok = tok;
4569 next();
4570 if (tok == ':') {
4571 unget_tok(last_tok);
4572 return;
4574 unget_tok(last_tok);
4576 decl(l);
4579 static void block(int *bsym, int *csym, int *case_sym, int *def_sym,
4580 int case_reg, int is_expr)
4582 int a, b, c, d;
4583 Sym *s, *frame_bottom;
4585 /* generate line number info */
4586 if (tcc_state->do_debug &&
4587 (last_line_num != file->line_num || last_ind != ind)) {
4588 put_stabn(N_SLINE, 0, file->line_num, ind - func_ind);
4589 last_ind = ind;
4590 last_line_num = file->line_num;
4593 if (is_expr) {
4594 /* default return value is (void) */
4595 vpushi(0);
4596 vtop->type.t = VT_VOID;
4599 if (tok == TOK_IF) {
4600 /* if test */
4601 next();
4602 skip('(');
4603 gexpr();
4604 skip(')');
4605 a = gtst(1, 0);
4606 block(bsym, csym, case_sym, def_sym, case_reg, 0);
4607 c = tok;
4608 if (c == TOK_ELSE) {
4609 next();
4610 d = gjmp(0);
4611 gsym(a);
4612 block(bsym, csym, case_sym, def_sym, case_reg, 0);
4613 gsym(d); /* patch else jmp */
4614 } else
4615 gsym(a);
4616 } else if (tok == TOK_WHILE) {
4617 next();
4618 d = ind;
4619 skip('(');
4620 gexpr();
4621 skip(')');
4622 a = gtst(1, 0);
4623 b = 0;
4624 block(&a, &b, case_sym, def_sym, case_reg, 0);
4625 gjmp_addr(d);
4626 gsym(a);
4627 gsym_addr(b, d);
4628 } else if (tok == '{') {
4629 Sym *llabel;
4630 int block_vla_sp_loc, *saved_vla_sp_loc, saved_vla_flags;
4632 next();
4633 /* record local declaration stack position */
4634 s = local_stack;
4635 frame_bottom = sym_push2(&local_stack, SYM_FIELD, 0, 0);
4636 frame_bottom->next = scope_stack_bottom;
4637 scope_stack_bottom = frame_bottom;
4638 llabel = local_label_stack;
4640 /* save VLA state */
4641 block_vla_sp_loc = *(saved_vla_sp_loc = vla_sp_loc);
4642 if (saved_vla_sp_loc != &vla_sp_root_loc)
4643 vla_sp_loc = &block_vla_sp_loc;
4645 saved_vla_flags = vla_flags;
4646 vla_flags |= VLA_NEED_NEW_FRAME;
4648 /* handle local labels declarations */
4649 if (tok == TOK_LABEL) {
4650 next();
4651 for(;;) {
4652 if (tok < TOK_UIDENT)
4653 expect("label identifier");
4654 label_push(&local_label_stack, tok, LABEL_DECLARED);
4655 next();
4656 if (tok == ',') {
4657 next();
4658 } else {
4659 skip(';');
4660 break;
4664 while (tok != '}') {
4665 label_or_decl(VT_LOCAL);
4666 if (tok != '}') {
4667 if (is_expr)
4668 vpop();
4669 block(bsym, csym, case_sym, def_sym, case_reg, is_expr);
4672 /* pop locally defined labels */
4673 label_pop(&local_label_stack, llabel);
4674 if(is_expr) {
4675 /* XXX: this solution makes only valgrind happy...
4676 triggered by gcc.c-torture/execute/20000917-1.c */
4677 Sym *p;
4678 switch(vtop->type.t & VT_BTYPE) {
4679 case VT_PTR:
4680 case VT_STRUCT:
4681 case VT_ENUM:
4682 case VT_FUNC:
4683 for(p=vtop->type.ref;p;p=p->prev)
4684 if(p->prev==s)
4685 tcc_error("unsupported expression type");
4688 /* pop locally defined symbols */
4689 scope_stack_bottom = scope_stack_bottom->next;
4690 sym_pop(&local_stack, s);
4692 /* Pop VLA frames and restore stack pointer if required */
4693 if (saved_vla_sp_loc != &vla_sp_root_loc)
4694 *saved_vla_sp_loc = block_vla_sp_loc;
4695 if (vla_sp_loc != (saved_vla_sp_loc == &vla_sp_root_loc ? &vla_sp_root_loc : &block_vla_sp_loc)) {
4696 vla_sp_loc = saved_vla_sp_loc;
4697 gen_vla_sp_restore(*vla_sp_loc);
4699 vla_flags = (vla_flags & ~VLA_SCOPE_FLAGS) | (saved_vla_flags & VLA_SCOPE_FLAGS);
4701 next();
4702 } else if (tok == TOK_RETURN) {
4703 next();
4704 if (tok != ';') {
4705 gexpr();
4706 gen_assign_cast(&func_vt);
4707 if ((func_vt.t & VT_BTYPE) == VT_STRUCT) {
4708 CType type, ret_type;
4709 int ret_align, ret_nregs;
4710 ret_nregs = gfunc_sret(&func_vt, func_var, &ret_type,
4711 &ret_align);
4712 if (0 == ret_nregs) {
4713 /* if returning structure, must copy it to implicit
4714 first pointer arg location */
4715 type = func_vt;
4716 mk_pointer(&type);
4717 vset(&type, VT_LOCAL | VT_LVAL, func_vc);
4718 indir();
4719 vswap();
4720 /* copy structure value to pointer */
4721 vstore();
4722 } else {
4723 /* returning structure packed into registers */
4724 int rc, size, addr, align;
4725 size = type_size(&func_vt,&align);
4726 if ((vtop->r != (VT_LOCAL | VT_LVAL) || (vtop->c.i & (ret_align-1)))
4727 && (align & (ret_align-1))) {
4728 loc = (loc - size) & -align;
4729 addr = loc;
4730 type = func_vt;
4731 vset(&type, VT_LOCAL | VT_LVAL, addr);
4732 vswap();
4733 vstore();
4734 vset(&ret_type, VT_LOCAL | VT_LVAL, addr);
4736 vtop->type = ret_type;
4737 if (is_float(ret_type.t))
4738 rc = rc_fret(ret_type.t);
4739 else{
4740 rc = RC_IRET;
4741 ex_rc = RC_LRET;
4744 for (;;) {
4745 gv(rc);
4746 if (--ret_nregs == 0)
4747 break;
4748 /* We assume that when a structure is returned in multiple
4749 registers, their classes are consecutive values of the
4750 suite s(n) = 2^n */
4751 rc <<= 1;
4752 /* XXX: compatible with arm only: ret_align == register_size */
4753 vtop->c.i += ret_align;
4754 vtop->r = VT_LOCAL | VT_LVAL;
4757 } else if (is_float(func_vt.t)) {
4758 gv(rc_fret(func_vt.t));
4759 } else {
4760 gv(RC_IRET);
4762 vtop--; /* NOT vpop() because on x86 it would flush the fp stack */
4764 skip(';');
4765 rsym = gjmp(rsym); /* jmp */
4766 } else if (tok == TOK_BREAK) {
4767 /* compute jump */
4768 if (!bsym)
4769 tcc_error("cannot break");
4770 *bsym = gjmp(*bsym);
4771 next();
4772 skip(';');
4773 } else if (tok == TOK_CONTINUE) {
4774 /* compute jump */
4775 if (!csym)
4776 tcc_error("cannot continue");
4777 *csym = gjmp(*csym);
4778 next();
4779 skip(';');
4780 } else if (tok == TOK_FOR) {
4781 int e;
4782 next();
4783 skip('(');
4784 s = local_stack;
4785 frame_bottom = sym_push2(&local_stack, SYM_FIELD, 0, 0);
4786 frame_bottom->next = scope_stack_bottom;
4787 scope_stack_bottom = frame_bottom;
4788 if (tok != ';') {
4789 /* c99 for-loop init decl? */
4790 if (!decl0(VT_LOCAL, 1)) {
4791 /* no, regular for-loop init expr */
4792 gexpr();
4793 vpop();
4796 skip(';');
4797 d = ind;
4798 c = ind;
4799 a = 0;
4800 b = 0;
4801 if (tok != ';') {
4802 gexpr();
4803 a = gtst(1, 0);
4805 skip(';');
4806 if (tok != ')') {
4807 e = gjmp(0);
4808 c = ind;
4809 gexpr();
4810 vpop();
4811 gjmp_addr(d);
4812 gsym(e);
4814 skip(')');
4815 block(&a, &b, case_sym, def_sym, case_reg, 0);
4816 gjmp_addr(c);
4817 gsym(a);
4818 gsym_addr(b, c);
4819 scope_stack_bottom = scope_stack_bottom->next;
4820 sym_pop(&local_stack, s);
4821 } else
4822 if (tok == TOK_DO) {
4823 next();
4824 a = 0;
4825 b = 0;
4826 d = ind;
4827 block(&a, &b, case_sym, def_sym, case_reg, 0);
4828 skip(TOK_WHILE);
4829 skip('(');
4830 gsym(b);
4831 gexpr();
4832 c = gtst(0, 0);
4833 gsym_addr(c, d);
4834 skip(')');
4835 gsym(a);
4836 skip(';');
4837 } else
4838 if (tok == TOK_SWITCH) {
4839 next();
4840 skip('(');
4841 gexpr();
4842 /* XXX: other types than integer */
4843 case_reg = gv(RC_INT);
4844 vpop();
4845 skip(')');
4846 a = 0;
4847 b = gjmp(0); /* jump to first case */
4848 c = 0;
4849 block(&a, csym, &b, &c, case_reg, 0);
4850 /* if no default, jmp after switch */
4851 if (c == 0)
4852 c = ind;
4853 /* default label */
4854 gsym_addr(b, c);
4855 /* break label */
4856 gsym(a);
4857 } else
4858 if (tok == TOK_CASE) {
4859 int v1, v2;
4860 if (!case_sym)
4861 expect("switch");
4862 next();
4863 v1 = expr_const();
4864 v2 = v1;
4865 if (gnu_ext && tok == TOK_DOTS) {
4866 next();
4867 v2 = expr_const();
4868 if (v2 < v1)
4869 tcc_warning("empty case range");
4871 /* since a case is like a label, we must skip it with a jmp */
4872 b = gjmp(0);
4873 gsym(*case_sym);
4874 vseti(case_reg, 0);
4875 vpushi(v1);
4876 if (v1 == v2) {
4877 gen_op(TOK_EQ);
4878 *case_sym = gtst(1, 0);
4879 } else {
4880 gen_op(TOK_GE);
4881 *case_sym = gtst(1, 0);
4882 vseti(case_reg, 0);
4883 vpushi(v2);
4884 gen_op(TOK_LE);
4885 *case_sym = gtst(1, *case_sym);
4887 gsym(b);
4888 skip(':');
4889 is_expr = 0;
4890 goto block_after_label;
4891 } else
4892 if (tok == TOK_DEFAULT) {
4893 next();
4894 skip(':');
4895 if (!def_sym)
4896 expect("switch");
4897 if (*def_sym)
4898 tcc_error("too many 'default'");
4899 *def_sym = ind;
4900 is_expr = 0;
4901 goto block_after_label;
4902 } else
4903 if (tok == TOK_GOTO) {
4904 next();
4905 if (tok == '*' && gnu_ext) {
4906 /* computed goto */
4907 next();
4908 gexpr();
4909 if ((vtop->type.t & VT_BTYPE) != VT_PTR)
4910 expect("pointer");
4911 ggoto();
4912 } else if (tok >= TOK_UIDENT) {
4913 s = label_find(tok);
4914 /* put forward definition if needed */
4915 if (!s) {
4916 s = label_push(&global_label_stack, tok, LABEL_FORWARD);
4917 } else {
4918 if (s->r == LABEL_DECLARED)
4919 s->r = LABEL_FORWARD;
4921 /* label already defined */
4922 if (vla_flags & VLA_IN_SCOPE) {
4923 /* If VLAs are in use, save the current stack pointer and
4924 reset the stack pointer to what it was at function entry
4925 (label will restore stack pointer in inner scopes) */
4926 vla_sp_save();
4927 gen_vla_sp_restore(vla_sp_root_loc);
4929 if (s->r & LABEL_FORWARD)
4930 s->jnext = gjmp(s->jnext);
4931 else
4932 gjmp_addr(s->jnext);
4933 next();
4934 } else {
4935 expect("label identifier");
4937 skip(';');
4938 } else if (tok == TOK_ASM1 || tok == TOK_ASM2 || tok == TOK_ASM3) {
4939 asm_instr();
4940 } else {
4941 b = is_label();
4942 if (b) {
4943 /* label case */
4944 if (vla_flags & VLA_IN_SCOPE) {
4945 /* save/restore stack pointer across label
4946 this is a no-op when combined with the load immediately
4947 after the label unless we arrive via goto */
4948 vla_sp_save();
4950 s = label_find(b);
4951 if (s) {
4952 if (s->r == LABEL_DEFINED)
4953 tcc_error("duplicate label '%s'", get_tok_str(s->v, NULL));
4954 gsym(s->jnext);
4955 s->r = LABEL_DEFINED;
4956 } else {
4957 s = label_push(&global_label_stack, b, LABEL_DEFINED);
4959 s->jnext = ind;
4960 if (vla_flags & VLA_IN_SCOPE) {
4961 gen_vla_sp_restore(*vla_sp_loc);
4962 vla_flags |= VLA_NEED_NEW_FRAME;
4964 /* we accept this, but it is a mistake */
4965 block_after_label:
4966 if (tok == '}') {
4967 tcc_warning("deprecated use of label at end of compound statement");
4968 } else {
4969 if (is_expr)
4970 vpop();
4971 block(bsym, csym, case_sym, def_sym, case_reg, is_expr);
4973 } else {
4974 /* expression case */
4975 if (tok != ';') {
4976 if (is_expr) {
4977 vpop();
4978 gexpr();
4979 } else {
4980 gexpr();
4981 vpop();
4984 skip(';');
4989 /* t is the array or struct type. c is the array or struct
4990 address. cur_index/cur_field is the pointer to the current
4991 value. 'size_only' is true if only size info is needed (only used
4992 in arrays) */
4993 static void decl_designator(CType *type, Section *sec, unsigned long c,
4994 int *cur_index, Sym **cur_field,
4995 int size_only)
4997 Sym *s, *f;
4998 int notfirst, index, index_last, align, l, nb_elems, elem_size;
4999 CType type1;
5001 notfirst = 0;
5002 elem_size = 0;
5003 nb_elems = 1;
5004 if (gnu_ext && (l = is_label()) != 0)
5005 goto struct_field;
5006 while (tok == '[' || tok == '.') {
5007 if (tok == '[') {
5008 if (!(type->t & VT_ARRAY))
5009 expect("array type");
5010 s = type->ref;
5011 next();
5012 index = expr_const();
5013 if (index < 0 || (s->c >= 0 && index >= s->c))
5014 expect("invalid index");
5015 if (tok == TOK_DOTS && gnu_ext) {
5016 next();
5017 index_last = expr_const();
5018 if (index_last < 0 ||
5019 (s->c >= 0 && index_last >= s->c) ||
5020 index_last < index)
5021 expect("invalid index");
5022 } else {
5023 index_last = index;
5025 skip(']');
5026 if (!notfirst)
5027 *cur_index = index_last;
5028 type = pointed_type(type);
5029 elem_size = type_size(type, &align);
5030 c += index * elem_size;
5031 /* NOTE: we only support ranges for last designator */
5032 nb_elems = index_last - index + 1;
5033 if (nb_elems != 1) {
5034 notfirst = 1;
5035 break;
5037 } else {
5038 next();
5039 l = tok;
5040 next();
5041 struct_field:
5042 if ((type->t & VT_BTYPE) != VT_STRUCT)
5043 expect("struct/union type");
5044 s = type->ref;
5045 l |= SYM_FIELD;
5046 f = s->next;
5047 while (f) {
5048 if (f->v == l)
5049 break;
5050 f = f->next;
5052 if (!f)
5053 expect("field");
5054 if (!notfirst)
5055 *cur_field = f;
5056 /* XXX: fix this mess by using explicit storage field */
5057 type1 = f->type;
5058 type1.t |= (type->t & ~VT_TYPE);
5059 type = &type1;
5060 c += f->c;
5062 notfirst = 1;
5064 if (notfirst) {
5065 if (tok == '=') {
5066 next();
5067 } else {
5068 if (!gnu_ext)
5069 expect("=");
5071 } else {
5072 if (type->t & VT_ARRAY) {
5073 index = *cur_index;
5074 type = pointed_type(type);
5075 c += index * type_size(type, &align);
5076 } else {
5077 f = *cur_field;
5078 if (!f)
5079 tcc_error("too many field init");
5080 /* XXX: fix this mess by using explicit storage field */
5081 type1 = f->type;
5082 type1.t |= (type->t & ~VT_TYPE);
5083 type = &type1;
5084 c += f->c;
5087 decl_initializer(type, sec, c, 0, size_only);
5089 /* XXX: make it more general */
5090 if (!size_only && nb_elems > 1) {
5091 unsigned long c_end;
5092 uint8_t *src, *dst;
5093 int i;
5095 if (!sec)
5096 tcc_error("range init not supported yet for dynamic storage");
5097 c_end = c + nb_elems * elem_size;
5098 if (c_end > sec->data_allocated)
5099 section_realloc(sec, c_end);
5100 src = sec->data + c;
5101 dst = src;
5102 for(i = 1; i < nb_elems; i++) {
5103 dst += elem_size;
5104 memcpy(dst, src, elem_size);
5109 #define EXPR_VAL 0
5110 #define EXPR_CONST 1
5111 #define EXPR_ANY 2
5113 /* store a value or an expression directly in global data or in local array */
5114 static void init_putv(CType *type, Section *sec, unsigned long c,
5115 int v, int expr_type)
5117 int saved_global_expr, bt, bit_pos, bit_size;
5118 void *ptr;
5119 unsigned long long bit_mask;
5120 CType dtype;
5122 switch(expr_type) {
5123 case EXPR_VAL:
5124 vpushi(v);
5125 break;
5126 case EXPR_CONST:
5127 /* compound literals must be allocated globally in this case */
5128 saved_global_expr = global_expr;
5129 global_expr = 1;
5130 expr_const1();
5131 global_expr = saved_global_expr;
5132 /* NOTE: symbols are accepted */
5133 if ((vtop->r & (VT_VALMASK | VT_LVAL)) != VT_CONST)
5134 tcc_error("initializer element is not constant");
5135 break;
5136 case EXPR_ANY:
5137 expr_eq();
5138 break;
5141 dtype = *type;
5142 dtype.t &= ~VT_CONSTANT; /* need to do that to avoid false warning */
5144 if (sec) {
5145 /* XXX: not portable */
5146 /* XXX: generate error if incorrect relocation */
5147 gen_assign_cast(&dtype);
5148 bt = type->t & VT_BTYPE;
5149 /* we'll write at most 12 bytes */
5150 if (c + 12 > sec->data_allocated) {
5151 section_realloc(sec, c + 12);
5153 ptr = sec->data + c;
5154 /* XXX: make code faster ? */
5155 if (!(type->t & VT_BITFIELD)) {
5156 bit_pos = 0;
5157 bit_size = 32;
5158 bit_mask = -1LL;
5159 } else {
5160 bit_pos = (vtop->type.t >> VT_STRUCT_SHIFT) & 0x3f;
5161 bit_size = (vtop->type.t >> (VT_STRUCT_SHIFT + 6)) & 0x3f;
5162 bit_mask = (1LL << bit_size) - 1;
5164 if ((vtop->r & VT_SYM) &&
5165 (bt == VT_BYTE ||
5166 bt == VT_SHORT ||
5167 bt == VT_DOUBLE ||
5168 bt == VT_LDOUBLE ||
5169 bt == VT_LLONG ||
5170 (bt == VT_INT && bit_size != 32)))
5171 tcc_error("initializer element is not computable at load time");
5172 switch(bt) {
5173 case VT_BOOL:
5174 vtop->c.i = (vtop->c.i != 0);
5175 case VT_BYTE:
5176 *(char *)ptr |= (vtop->c.i & bit_mask) << bit_pos;
5177 break;
5178 case VT_SHORT:
5179 *(short *)ptr |= (vtop->c.i & bit_mask) << bit_pos;
5180 break;
5181 case VT_DOUBLE:
5182 *(double *)ptr = vtop->c.d;
5183 break;
5184 case VT_LDOUBLE:
5185 *(long double *)ptr = vtop->c.ld;
5186 break;
5187 case VT_LLONG:
5188 *(long long *)ptr |= (vtop->c.ll & bit_mask) << bit_pos;
5189 break;
5190 case VT_PTR:
5191 if (vtop->r & VT_SYM) {
5192 greloc(sec, vtop->sym, c, R_DATA_PTR);
5194 *(addr_t *)ptr |= (vtop->c.ptr_offset & bit_mask) << bit_pos;
5195 break;
5196 default:
5197 if (vtop->r & VT_SYM) {
5198 greloc(sec, vtop->sym, c, R_DATA_PTR);
5200 *(int *)ptr |= (vtop->c.i & bit_mask) << bit_pos;
5201 break;
5203 vtop--;
5204 } else {
5205 vset(&dtype, VT_LOCAL|VT_LVAL, c);
5206 vswap();
5207 vstore();
5208 vpop();
5212 /* put zeros for variable based init */
5213 static void init_putz(CType *t, Section *sec, unsigned long c, int size)
5215 if (sec) {
5216 /* nothing to do because globals are already set to zero */
5217 } else {
5218 #ifdef TCC_TARGET_ARM
5219 vpush_global_sym(&func_old_type, TOK_memset);
5220 vseti(VT_LOCAL, c);
5221 vpushs(size);
5222 vpushi(0);
5223 gfunc_call(3);
5224 #else
5225 vseti(VT_LOCAL, c);
5226 gen_putz(vtop, size);
5227 vtop--;
5228 #endif
5232 /* 't' contains the type and storage info. 'c' is the offset of the
5233 object in section 'sec'. If 'sec' is NULL, it means stack based
5234 allocation. 'first' is true if array '{' must be read (multi
5235 dimension implicit array init handling). 'size_only' is true if
5236 size only evaluation is wanted (only for arrays). */
5237 static void decl_initializer(CType *type, Section *sec, unsigned long c,
5238 int first, int size_only)
5240 int index, array_length, n, no_oblock, nb, parlevel, parlevel1, i;
5241 int size1, align1, expr_type;
5242 Sym *s, *f;
5243 CType *t1;
5245 if (type->t & VT_VLA) {
5246 int a;
5248 /* save current stack pointer */
5249 if (vla_flags & VLA_NEED_NEW_FRAME) {
5250 vla_sp_save();
5251 vla_flags = VLA_IN_SCOPE;
5252 vla_sp_loc = &vla_sp_loc_tmp;
5255 vla_runtime_type_size(type, &a);
5256 gen_vla_alloc(type, a);
5257 vset(type, VT_LOCAL|VT_LVAL, c);
5258 vswap();
5259 vstore();
5260 vpop();
5261 } else if (type->t & VT_ARRAY) {
5262 s = type->ref;
5263 n = s->c;
5264 array_length = 0;
5265 t1 = pointed_type(type);
5266 size1 = type_size(t1, &align1);
5268 no_oblock = 1;
5269 if ((first && tok != TOK_LSTR && tok != TOK_STR) ||
5270 tok == '{') {
5271 if (tok != '{')
5272 tcc_error("character array initializer must be a literal,"
5273 " optionally enclosed in braces");
5274 skip('{');
5275 no_oblock = 0;
5278 /* only parse strings here if correct type (otherwise: handle
5279 them as ((w)char *) expressions */
5280 if ((tok == TOK_LSTR &&
5281 #ifdef TCC_TARGET_PE
5282 (t1->t & VT_BTYPE) == VT_SHORT && (t1->t & VT_UNSIGNED)
5283 #else
5284 (t1->t & VT_BTYPE) == VT_INT
5285 #endif
5286 ) || (tok == TOK_STR && (t1->t & VT_BTYPE) == VT_BYTE)) {
5287 while (tok == TOK_STR || tok == TOK_LSTR) {
5288 int cstr_len, ch;
5289 CString *cstr;
5291 cstr = tokc.cstr;
5292 /* compute maximum number of chars wanted */
5293 if (tok == TOK_STR)
5294 cstr_len = cstr->size;
5295 else
5296 cstr_len = cstr->size / sizeof(nwchar_t);
5297 cstr_len--;
5298 nb = cstr_len;
5299 if (n >= 0 && nb > (n - array_length))
5300 nb = n - array_length;
5301 if (!size_only) {
5302 if (cstr_len > nb)
5303 tcc_warning("initializer-string for array is too long");
5304 /* in order to go faster for common case (char
5305 string in global variable, we handle it
5306 specifically */
5307 if (sec && tok == TOK_STR && size1 == 1) {
5308 memcpy(sec->data + c + array_length, cstr->data, nb);
5309 } else {
5310 for(i=0;i<nb;i++) {
5311 if (tok == TOK_STR)
5312 ch = ((unsigned char *)cstr->data)[i];
5313 else
5314 ch = ((nwchar_t *)cstr->data)[i];
5315 init_putv(t1, sec, c + (array_length + i) * size1,
5316 ch, EXPR_VAL);
5320 array_length += nb;
5321 next();
5323 /* only add trailing zero if enough storage (no
5324 warning in this case since it is standard) */
5325 if (n < 0 || array_length < n) {
5326 if (!size_only) {
5327 init_putv(t1, sec, c + (array_length * size1), 0, EXPR_VAL);
5329 array_length++;
5331 } else {
5332 index = 0;
5333 while (tok != '}') {
5334 decl_designator(type, sec, c, &index, NULL, size_only);
5335 if (n >= 0 && index >= n)
5336 tcc_error("index too large");
5337 /* must put zero in holes (note that doing it that way
5338 ensures that it even works with designators) */
5339 if (!size_only && array_length < index) {
5340 init_putz(t1, sec, c + array_length * size1,
5341 (index - array_length) * size1);
5343 index++;
5344 if (index > array_length)
5345 array_length = index;
5346 /* special test for multi dimensional arrays (may not
5347 be strictly correct if designators are used at the
5348 same time) */
5349 if (index >= n && no_oblock)
5350 break;
5351 if (tok == '}')
5352 break;
5353 skip(',');
5356 if (!no_oblock)
5357 skip('}');
5358 /* put zeros at the end */
5359 if (!size_only && n >= 0 && array_length < n) {
5360 init_putz(t1, sec, c + array_length * size1,
5361 (n - array_length) * size1);
5363 /* patch type size if needed */
5364 if (n < 0)
5365 s->c = array_length;
5366 } else if ((type->t & VT_BTYPE) == VT_STRUCT &&
5367 (sec || !first || tok == '{')) {
5368 int par_count;
5370 /* NOTE: the previous test is a specific case for automatic
5371 struct/union init */
5372 /* XXX: union needs only one init */
5374 /* XXX: this test is incorrect for local initializers
5375 beginning with ( without {. It would be much more difficult
5376 to do it correctly (ideally, the expression parser should
5377 be used in all cases) */
5378 par_count = 0;
5379 if (tok == '(') {
5380 AttributeDef ad1;
5381 CType type1;
5382 next();
5383 while (tok == '(') {
5384 par_count++;
5385 next();
5387 if (!parse_btype(&type1, &ad1))
5388 expect("cast");
5389 type_decl(&type1, &ad1, &n, TYPE_ABSTRACT);
5390 #if 0
5391 if (!is_assignable_types(type, &type1))
5392 tcc_error("invalid type for cast");
5393 #endif
5394 skip(')');
5396 no_oblock = 1;
5397 if (first || tok == '{') {
5398 skip('{');
5399 no_oblock = 0;
5401 s = type->ref;
5402 f = s->next;
5403 array_length = 0;
5404 index = 0;
5405 n = s->c;
5406 while (tok != '}') {
5407 decl_designator(type, sec, c, NULL, &f, size_only);
5408 index = f->c;
5409 if (!size_only && array_length < index) {
5410 init_putz(type, sec, c + array_length,
5411 index - array_length);
5413 index = index + type_size(&f->type, &align1);
5414 if (index > array_length)
5415 array_length = index;
5417 /* gr: skip fields from same union - ugly. */
5418 while (f->next) {
5419 ///printf("index: %2d %08x -- %2d %08x\n", f->c, f->type.t, f->next->c, f->next->type.t);
5420 /* test for same offset */
5421 if (f->next->c != f->c)
5422 break;
5423 /* if yes, test for bitfield shift */
5424 if ((f->type.t & VT_BITFIELD) && (f->next->type.t & VT_BITFIELD)) {
5425 int bit_pos_1 = (f->type.t >> VT_STRUCT_SHIFT) & 0x3f;
5426 int bit_pos_2 = (f->next->type.t >> VT_STRUCT_SHIFT) & 0x3f;
5427 //printf("bitfield %d %d\n", bit_pos_1, bit_pos_2);
5428 if (bit_pos_1 != bit_pos_2)
5429 break;
5431 f = f->next;
5434 f = f->next;
5435 if (no_oblock && f == NULL)
5436 break;
5437 if (tok == '}')
5438 break;
5439 skip(',');
5441 /* put zeros at the end */
5442 if (!size_only && array_length < n) {
5443 init_putz(type, sec, c + array_length,
5444 n - array_length);
5446 if (!no_oblock)
5447 skip('}');
5448 while (par_count) {
5449 skip(')');
5450 par_count--;
5452 } else if (tok == '{') {
5453 next();
5454 decl_initializer(type, sec, c, first, size_only);
5455 skip('}');
5456 } else if (size_only) {
5457 /* just skip expression */
5458 parlevel = parlevel1 = 0;
5459 while ((parlevel > 0 || parlevel1 > 0 ||
5460 (tok != '}' && tok != ',')) && tok != -1) {
5461 if (tok == '(')
5462 parlevel++;
5463 else if (tok == ')')
5464 parlevel--;
5465 else if (tok == '{')
5466 parlevel1++;
5467 else if (tok == '}')
5468 parlevel1--;
5469 next();
5471 } else {
5472 /* currently, we always use constant expression for globals
5473 (may change for scripting case) */
5474 expr_type = EXPR_CONST;
5475 if (!sec)
5476 expr_type = EXPR_ANY;
5477 init_putv(type, sec, c, 0, expr_type);
5481 /* parse an initializer for type 't' if 'has_init' is non zero, and
5482 allocate space in local or global data space ('r' is either
5483 VT_LOCAL or VT_CONST). If 'v' is non zero, then an associated
5484 variable 'v' with an associated name represented by 'asm_label' of
5485 scope 'scope' is declared before initializers are parsed. If 'v' is
5486 zero, then a reference to the new object is put in the value stack.
5487 If 'has_init' is 2, a special parsing is done to handle string
5488 constants. */
5489 static void decl_initializer_alloc(CType *type, AttributeDef *ad, int r,
5490 int has_init, int v, char *asm_label,
5491 int scope)
5493 int size, align, addr, data_offset;
5494 int level;
5495 ParseState saved_parse_state = {0};
5496 TokenString init_str;
5497 Section *sec;
5498 Sym *flexible_array;
5500 flexible_array = NULL;
5501 if ((type->t & VT_BTYPE) == VT_STRUCT) {
5502 Sym *field = type->ref->next;
5503 if (field) {
5504 while (field->next)
5505 field = field->next;
5506 if (field->type.t & VT_ARRAY && field->type.ref->c < 0)
5507 flexible_array = field;
5511 size = type_size(type, &align);
5512 /* If unknown size, we must evaluate it before
5513 evaluating initializers because
5514 initializers can generate global data too
5515 (e.g. string pointers or ISOC99 compound
5516 literals). It also simplifies local
5517 initializers handling */
5518 tok_str_new(&init_str);
5519 if (size < 0 || (flexible_array && has_init)) {
5520 if (!has_init)
5521 tcc_error("unknown type size");
5522 /* get all init string */
5523 if (has_init == 2) {
5524 /* only get strings */
5525 while (tok == TOK_STR || tok == TOK_LSTR) {
5526 tok_str_add_tok(&init_str);
5527 next();
5529 } else {
5530 level = 0;
5531 while (level > 0 || (tok != ',' && tok != ';')) {
5532 if (tok < 0)
5533 tcc_error("unexpected end of file in initializer");
5534 tok_str_add_tok(&init_str);
5535 if (tok == '{')
5536 level++;
5537 else if (tok == '}') {
5538 level--;
5539 if (level <= 0) {
5540 next();
5541 break;
5544 next();
5547 tok_str_add(&init_str, -1);
5548 tok_str_add(&init_str, 0);
5550 /* compute size */
5551 save_parse_state(&saved_parse_state);
5553 macro_ptr = init_str.str;
5554 next();
5555 decl_initializer(type, NULL, 0, 1, 1);
5556 /* prepare second initializer parsing */
5557 macro_ptr = init_str.str;
5558 next();
5560 /* if still unknown size, error */
5561 size = type_size(type, &align);
5562 if (size < 0)
5563 tcc_error("unknown type size");
5565 if (flexible_array)
5566 size += flexible_array->type.ref->c * pointed_size(&flexible_array->type);
5567 /* take into account specified alignment if bigger */
5568 if (ad->a.aligned) {
5569 if (ad->a.aligned > align)
5570 align = ad->a.aligned;
5571 } else if (ad->a.packed) {
5572 align = 1;
5574 if ((r & VT_VALMASK) == VT_LOCAL) {
5575 sec = NULL;
5576 #ifdef CONFIG_TCC_BCHECK
5577 if (tcc_state->do_bounds_check && (type->t & VT_ARRAY)) {
5578 loc--;
5580 #endif
5581 loc = (loc - size) & -align;
5582 addr = loc;
5583 #ifdef CONFIG_TCC_BCHECK
5584 /* handles bounds */
5585 /* XXX: currently, since we do only one pass, we cannot track
5586 '&' operators, so we add only arrays */
5587 if (tcc_state->do_bounds_check && (type->t & VT_ARRAY)) {
5588 unsigned long *bounds_ptr;
5589 /* add padding between regions */
5590 loc--;
5591 /* then add local bound info */
5592 bounds_ptr = section_ptr_add(lbounds_section, 2 * sizeof(unsigned long));
5593 bounds_ptr[0] = addr;
5594 bounds_ptr[1] = size;
5596 #endif
5597 if (v) {
5598 /* local variable */
5599 sym_push(v, type, r, addr);
5600 } else {
5601 /* push local reference */
5602 vset(type, r, addr);
5604 } else {
5605 Sym *sym;
5607 sym = NULL;
5608 if (v && scope == VT_CONST) {
5609 /* see if the symbol was already defined */
5610 sym = sym_find(v);
5611 if (sym) {
5612 if (!is_compatible_types(&sym->type, type))
5613 tcc_error("incompatible types for redefinition of '%s'",
5614 get_tok_str(v, NULL));
5615 if (sym->type.t & VT_EXTERN) {
5616 /* if the variable is extern, it was not allocated */
5617 sym->type.t &= ~VT_EXTERN;
5618 /* set array size if it was omitted in extern
5619 declaration */
5620 if ((sym->type.t & VT_ARRAY) &&
5621 sym->type.ref->c < 0 &&
5622 type->ref->c >= 0)
5623 sym->type.ref->c = type->ref->c;
5624 } else {
5625 /* we accept several definitions of the same
5626 global variable. this is tricky, because we
5627 must play with the SHN_COMMON type of the symbol */
5628 /* XXX: should check if the variable was already
5629 initialized. It is incorrect to initialized it
5630 twice */
5631 /* no init data, we won't add more to the symbol */
5632 if (!has_init)
5633 goto no_alloc;
5638 /* allocate symbol in corresponding section */
5639 sec = ad->section;
5640 if (!sec) {
5641 if (has_init)
5642 sec = data_section;
5643 else if (tcc_state->nocommon)
5644 sec = bss_section;
5646 if (sec) {
5647 data_offset = sec->data_offset;
5648 data_offset = (data_offset + align - 1) & -align;
5649 addr = data_offset;
5650 /* very important to increment global pointer at this time
5651 because initializers themselves can create new initializers */
5652 data_offset += size;
5653 #ifdef CONFIG_TCC_BCHECK
5654 /* add padding if bound check */
5655 if (tcc_state->do_bounds_check)
5656 data_offset++;
5657 #endif
5658 sec->data_offset = data_offset;
5659 /* allocate section space to put the data */
5660 if (sec->sh_type != SHT_NOBITS &&
5661 data_offset > sec->data_allocated)
5662 section_realloc(sec, data_offset);
5663 /* align section if needed */
5664 if (align > sec->sh_addralign)
5665 sec->sh_addralign = align;
5666 } else {
5667 addr = 0; /* avoid warning */
5670 if (v) {
5671 if (scope != VT_CONST || !sym) {
5672 sym = sym_push(v, type, r | VT_SYM, 0);
5673 sym->asm_label = asm_label;
5675 /* update symbol definition */
5676 if (sec) {
5677 put_extern_sym(sym, sec, addr, size);
5678 } else {
5679 ElfW(Sym) *esym;
5680 /* put a common area */
5681 put_extern_sym(sym, NULL, align, size);
5682 /* XXX: find a nicer way */
5683 esym = &((ElfW(Sym) *)symtab_section->data)[sym->c];
5684 esym->st_shndx = SHN_COMMON;
5686 } else {
5687 /* push global reference */
5688 sym = get_sym_ref(type, sec, addr, size);
5689 vpushsym(type, sym);
5691 /* patch symbol weakness */
5692 if (type->t & VT_WEAK)
5693 weaken_symbol(sym);
5694 apply_visibility(sym, type);
5695 #ifdef CONFIG_TCC_BCHECK
5696 /* handles bounds now because the symbol must be defined
5697 before for the relocation */
5698 if (tcc_state->do_bounds_check) {
5699 unsigned long *bounds_ptr;
5701 greloc(bounds_section, sym, bounds_section->data_offset, R_DATA_PTR);
5702 /* then add global bound info */
5703 bounds_ptr = section_ptr_add(bounds_section, 2 * sizeof(long));
5704 bounds_ptr[0] = 0; /* relocated */
5705 bounds_ptr[1] = size;
5707 #endif
5709 if (has_init || (type->t & VT_VLA)) {
5710 decl_initializer(type, sec, addr, 1, 0);
5711 /* restore parse state if needed */
5712 if (init_str.str) {
5713 tok_str_free(init_str.str);
5714 restore_parse_state(&saved_parse_state);
5716 /* patch flexible array member size back to -1, */
5717 /* for possible subsequent similar declarations */
5718 if (flexible_array)
5719 flexible_array->type.ref->c = -1;
5721 no_alloc: ;
5724 static void put_func_debug(Sym *sym)
5726 char buf[512];
5728 /* stabs info */
5729 /* XXX: we put here a dummy type */
5730 snprintf(buf, sizeof(buf), "%s:%c1",
5731 funcname, sym->type.t & VT_STATIC ? 'f' : 'F');
5732 put_stabs_r(buf, N_FUN, 0, file->line_num, 0,
5733 cur_text_section, sym->c);
5734 /* //gr gdb wants a line at the function */
5735 put_stabn(N_SLINE, 0, file->line_num, 0);
5736 last_ind = 0;
5737 last_line_num = 0;
5740 /* parse an old style function declaration list */
5741 /* XXX: check multiple parameter */
5742 static void func_decl_list(Sym *func_sym)
5744 AttributeDef ad;
5745 int v;
5746 Sym *s;
5747 CType btype, type;
5749 /* parse each declaration */
5750 while (tok != '{' && tok != ';' && tok != ',' && tok != TOK_EOF &&
5751 tok != TOK_ASM1 && tok != TOK_ASM2 && tok != TOK_ASM3) {
5752 if (!parse_btype(&btype, &ad))
5753 expect("declaration list");
5754 if (((btype.t & VT_BTYPE) == VT_ENUM ||
5755 (btype.t & VT_BTYPE) == VT_STRUCT) &&
5756 tok == ';') {
5757 /* we accept no variable after */
5758 } else {
5759 for(;;) {
5760 type = btype;
5761 type_decl(&type, &ad, &v, TYPE_DIRECT);
5762 /* find parameter in function parameter list */
5763 s = func_sym->next;
5764 while (s != NULL) {
5765 if ((s->v & ~SYM_FIELD) == v)
5766 goto found;
5767 s = s->next;
5769 tcc_error("declaration for parameter '%s' but no such parameter",
5770 get_tok_str(v, NULL));
5771 found:
5772 /* check that no storage specifier except 'register' was given */
5773 if (type.t & VT_STORAGE)
5774 tcc_error("storage class specified for '%s'", get_tok_str(v, NULL));
5775 convert_parameter_type(&type);
5776 /* we can add the type (NOTE: it could be local to the function) */
5777 s->type = type;
5778 /* accept other parameters */
5779 if (tok == ',')
5780 next();
5781 else
5782 break;
5785 skip(';');
5789 /* parse a function defined by symbol 'sym' and generate its code in
5790 'cur_text_section' */
5791 static void gen_function(Sym *sym)
5793 int saved_nocode_wanted = nocode_wanted;
5794 nocode_wanted = 0;
5795 ind = cur_text_section->data_offset;
5796 /* NOTE: we patch the symbol size later */
5797 put_extern_sym(sym, cur_text_section, ind, 0);
5798 funcname = get_tok_str(sym->v, NULL);
5799 func_ind = ind;
5800 /* Initialize VLA state */
5801 vla_sp_loc = &vla_sp_root_loc;
5802 vla_flags = VLA_NEED_NEW_FRAME;
5803 /* put debug symbol */
5804 if (tcc_state->do_debug)
5805 put_func_debug(sym);
5806 /* push a dummy symbol to enable local sym storage */
5807 sym_push2(&local_stack, SYM_FIELD, 0, 0);
5808 gfunc_prolog(&sym->type);
5809 #ifdef CONFIG_TCC_BCHECK
5810 if (tcc_state->do_bounds_check
5811 && !strcmp(get_tok_str(sym->v, NULL), "main")) {
5812 int i;
5814 sym = local_stack;
5815 for (i = 0, sym = local_stack; i < 2; i++, sym = sym->prev) {
5816 if (sym->v & SYM_FIELD || sym->prev->v & SYM_FIELD)
5817 break;
5818 vpush_global_sym(&func_old_type, TOK___bound_main_arg);
5819 vset(&sym->type, sym->r, sym->c);
5820 gfunc_call(1);
5823 #endif
5824 rsym = 0;
5825 block(NULL, NULL, NULL, NULL, 0, 0);
5826 gsym(rsym);
5827 gfunc_epilog();
5828 cur_text_section->data_offset = ind;
5829 label_pop(&global_label_stack, NULL);
5830 /* reset local stack */
5831 scope_stack_bottom = NULL;
5832 sym_pop(&local_stack, NULL);
5833 /* end of function */
5834 /* patch symbol size */
5835 ((ElfW(Sym) *)symtab_section->data)[sym->c].st_size =
5836 ind - func_ind;
5837 /* patch symbol weakness (this definition overrules any prototype) */
5838 if (sym->type.t & VT_WEAK)
5839 weaken_symbol(sym);
5840 apply_visibility(sym, &sym->type);
5841 if (tcc_state->do_debug) {
5842 put_stabn(N_FUN, 0, 0, ind - func_ind);
5844 /* It's better to crash than to generate wrong code */
5845 cur_text_section = NULL;
5846 funcname = ""; /* for safety */
5847 func_vt.t = VT_VOID; /* for safety */
5848 func_var = 0; /* for safety */
5849 ind = 0; /* for safety */
5850 nocode_wanted = saved_nocode_wanted;
5853 ST_FUNC void gen_inline_functions(void)
5855 Sym *sym;
5856 int *str, inline_generated, i;
5857 struct InlineFunc *fn;
5859 /* iterate while inline function are referenced */
5860 for(;;) {
5861 inline_generated = 0;
5862 for (i = 0; i < tcc_state->nb_inline_fns; ++i) {
5863 fn = tcc_state->inline_fns[i];
5864 sym = fn->sym;
5865 if (sym && sym->c) {
5866 /* the function was used: generate its code and
5867 convert it to a normal function */
5868 str = fn->token_str;
5869 fn->sym = NULL;
5870 if (file)
5871 pstrcpy(file->filename, sizeof file->filename, fn->filename);
5872 sym->r = VT_SYM | VT_CONST;
5873 sym->type.t &= ~VT_INLINE;
5875 macro_ptr = str;
5876 next();
5877 cur_text_section = text_section;
5878 gen_function(sym);
5879 macro_ptr = NULL; /* fail safe */
5881 inline_generated = 1;
5884 if (!inline_generated)
5885 break;
5887 for (i = 0; i < tcc_state->nb_inline_fns; ++i) {
5888 fn = tcc_state->inline_fns[i];
5889 str = fn->token_str;
5890 tok_str_free(str);
5892 dynarray_reset(&tcc_state->inline_fns, &tcc_state->nb_inline_fns);
5895 /* 'l' is VT_LOCAL or VT_CONST to define default storage type */
5896 static int decl0(int l, int is_for_loop_init)
5898 int v, has_init, r;
5899 CType type, btype;
5900 Sym *sym;
5901 AttributeDef ad;
5903 while (1) {
5904 if (!parse_btype(&btype, &ad)) {
5905 if (is_for_loop_init)
5906 return 0;
5907 /* skip redundant ';' */
5908 /* XXX: find more elegant solution */
5909 if (tok == ';') {
5910 next();
5911 continue;
5913 if (l == VT_CONST &&
5914 (tok == TOK_ASM1 || tok == TOK_ASM2 || tok == TOK_ASM3)) {
5915 /* global asm block */
5916 asm_global_instr();
5917 continue;
5919 /* special test for old K&R protos without explicit int
5920 type. Only accepted when defining global data */
5921 if (l == VT_LOCAL || tok < TOK_DEFINE)
5922 break;
5923 btype.t = VT_INT;
5925 if (((btype.t & VT_BTYPE) == VT_ENUM ||
5926 (btype.t & VT_BTYPE) == VT_STRUCT) &&
5927 tok == ';') {
5928 /* we accept no variable after */
5929 next();
5930 continue;
5932 while (1) { /* iterate thru each declaration */
5933 char *asm_label; // associated asm label
5934 type = btype;
5935 type_decl(&type, &ad, &v, TYPE_DIRECT);
5936 #if 0
5938 char buf[500];
5939 type_to_str(buf, sizeof(buf), t, get_tok_str(v, NULL));
5940 printf("type = '%s'\n", buf);
5942 #endif
5943 if ((type.t & VT_BTYPE) == VT_FUNC) {
5944 if ((type.t & VT_STATIC) && (l == VT_LOCAL)) {
5945 tcc_error("function without file scope cannot be static");
5947 /* if old style function prototype, we accept a
5948 declaration list */
5949 sym = type.ref;
5950 if (sym->c == FUNC_OLD)
5951 func_decl_list(sym);
5954 asm_label = NULL;
5955 if (gnu_ext && (tok == TOK_ASM1 || tok == TOK_ASM2 || tok == TOK_ASM3)) {
5956 CString astr;
5958 asm_label_instr(&astr);
5959 asm_label = tcc_strdup(astr.data);
5960 cstr_free(&astr);
5962 /* parse one last attribute list, after asm label */
5963 parse_attribute(&ad);
5966 if (ad.a.weak)
5967 type.t |= VT_WEAK;
5968 #ifdef TCC_TARGET_PE
5969 if (ad.a.func_import)
5970 type.t |= VT_IMPORT;
5971 if (ad.a.func_export)
5972 type.t |= VT_EXPORT;
5973 #endif
5974 type.t |= ad.a.visibility << VT_VIS_SHIFT;
5976 if (tok == '{') {
5977 if (l == VT_LOCAL)
5978 tcc_error("cannot use local functions");
5979 if ((type.t & VT_BTYPE) != VT_FUNC)
5980 expect("function definition");
5982 /* reject abstract declarators in function definition */
5983 sym = type.ref;
5984 while ((sym = sym->next) != NULL)
5985 if (!(sym->v & ~SYM_FIELD))
5986 expect("identifier");
5988 /* XXX: cannot do better now: convert extern line to static inline */
5989 if ((type.t & (VT_EXTERN | VT_INLINE)) == (VT_EXTERN | VT_INLINE))
5990 type.t = (type.t & ~VT_EXTERN) | VT_STATIC;
5992 sym = sym_find(v);
5993 if (sym) {
5994 Sym *ref;
5995 if ((sym->type.t & VT_BTYPE) != VT_FUNC)
5996 goto func_error1;
5998 ref = sym->type.ref;
5999 if (0 == ref->a.func_proto)
6000 tcc_error("redefinition of '%s'", get_tok_str(v, NULL));
6002 /* use func_call from prototype if not defined */
6003 if (ref->a.func_call != FUNC_CDECL
6004 && type.ref->a.func_call == FUNC_CDECL)
6005 type.ref->a.func_call = ref->a.func_call;
6007 /* use export from prototype */
6008 if (ref->a.func_export)
6009 type.ref->a.func_export = 1;
6011 /* use static from prototype */
6012 if (sym->type.t & VT_STATIC)
6013 type.t = (type.t & ~VT_EXTERN) | VT_STATIC;
6015 /* If the definition has no visibility use the
6016 one from prototype. */
6017 if (! (type.t & VT_VIS_MASK))
6018 type.t |= sym->type.t & VT_VIS_MASK;
6020 if (!is_compatible_types(&sym->type, &type)) {
6021 func_error1:
6022 tcc_error("incompatible types for redefinition of '%s'",
6023 get_tok_str(v, NULL));
6025 type.ref->a.func_proto = 0;
6026 /* if symbol is already defined, then put complete type */
6027 sym->type = type;
6028 } else {
6029 /* put function symbol */
6030 sym = global_identifier_push(v, type.t, 0);
6031 sym->type.ref = type.ref;
6034 /* static inline functions are just recorded as a kind
6035 of macro. Their code will be emitted at the end of
6036 the compilation unit only if they are used */
6037 if ((type.t & (VT_INLINE | VT_STATIC)) ==
6038 (VT_INLINE | VT_STATIC)) {
6039 TokenString func_str;
6040 int block_level;
6041 struct InlineFunc *fn;
6042 const char *filename;
6044 tok_str_new(&func_str);
6046 block_level = 0;
6047 for(;;) {
6048 int t;
6049 if (tok == TOK_EOF)
6050 tcc_error("unexpected end of file");
6051 tok_str_add_tok(&func_str);
6052 t = tok;
6053 next();
6054 if (t == '{') {
6055 block_level++;
6056 } else if (t == '}') {
6057 block_level--;
6058 if (block_level == 0)
6059 break;
6062 tok_str_add(&func_str, -1);
6063 tok_str_add(&func_str, 0);
6064 filename = file ? file->filename : "";
6065 fn = tcc_malloc(sizeof *fn + strlen(filename));
6066 strcpy(fn->filename, filename);
6067 fn->sym = sym;
6068 fn->token_str = func_str.str;
6069 dynarray_add((void ***)&tcc_state->inline_fns, &tcc_state->nb_inline_fns, fn);
6071 } else {
6072 /* compute text section */
6073 cur_text_section = ad.section;
6074 if (!cur_text_section)
6075 cur_text_section = text_section;
6076 sym->r = VT_SYM | VT_CONST;
6077 gen_function(sym);
6079 break;
6080 } else {
6081 if (btype.t & VT_TYPEDEF) {
6082 /* save typedefed type */
6083 /* XXX: test storage specifiers ? */
6084 sym = sym_push(v, &type, 0, 0);
6085 sym->a = ad.a;
6086 sym->type.t |= VT_TYPEDEF;
6087 } else {
6088 r = 0;
6089 if ((type.t & VT_BTYPE) == VT_FUNC) {
6090 /* external function definition */
6091 /* specific case for func_call attribute */
6092 ad.a.func_proto = 1;
6093 type.ref->a = ad.a;
6094 } else if (!(type.t & VT_ARRAY)) {
6095 /* not lvalue if array */
6096 r |= lvalue_type(type.t);
6098 has_init = (tok == '=');
6099 if (has_init && (type.t & VT_VLA))
6100 tcc_error("Variable length array cannot be initialized");
6101 if ((btype.t & VT_EXTERN) || ((type.t & VT_BTYPE) == VT_FUNC) ||
6102 ((type.t & VT_ARRAY) && (type.t & VT_STATIC) &&
6103 !has_init && l == VT_CONST && type.ref->c < 0)) {
6104 /* external variable or function */
6105 /* NOTE: as GCC, uninitialized global static
6106 arrays of null size are considered as
6107 extern */
6108 sym = external_sym(v, &type, r, asm_label);
6110 if (ad.alias_target) {
6111 Section tsec;
6112 Elf32_Sym *esym;
6113 Sym *alias_target;
6115 alias_target = sym_find(ad.alias_target);
6116 if (!alias_target || !alias_target->c)
6117 tcc_error("unsupported forward __alias__ attribute");
6118 esym = &((Elf32_Sym *)symtab_section->data)[alias_target->c];
6119 tsec.sh_num = esym->st_shndx;
6120 put_extern_sym2(sym, &tsec, esym->st_value, esym->st_size, 0);
6122 } else {
6123 type.t |= (btype.t & VT_STATIC); /* Retain "static". */
6124 if (type.t & VT_STATIC)
6125 r |= VT_CONST;
6126 else
6127 r |= l;
6128 if (has_init)
6129 next();
6130 decl_initializer_alloc(&type, &ad, r, has_init, v, asm_label, l);
6133 if (tok != ',') {
6134 if (is_for_loop_init)
6135 return 1;
6136 skip(';');
6137 break;
6139 next();
6141 ad.a.aligned = 0;
6144 return 0;
6147 ST_FUNC void decl(int l)
6149 decl0(l, 0);