x86-asm: Implement clflush opcode
[tinycc.git] / tccgen.c
blob202ed0739c40e2cd09976f539f263a1cbaae2b75
1 /*
2 * TCC - Tiny C Compiler
3 *
4 * Copyright (c) 2001-2004 Fabrice Bellard
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 #include "tcc.h"
23 /********************************************************/
24 /* global variables */
26 /* loc : local variable index
27 ind : output code index
28 rsym: return symbol
29 anon_sym: anonymous symbol index
31 ST_DATA int rsym, anon_sym, ind, loc;
33 ST_DATA Sym *sym_free_first;
34 ST_DATA void **sym_pools;
35 ST_DATA int nb_sym_pools;
37 ST_DATA Sym *global_stack;
38 ST_DATA Sym *local_stack;
39 ST_DATA Sym *define_stack;
40 ST_DATA Sym *global_label_stack;
41 ST_DATA Sym *local_label_stack;
42 static int local_scope;
43 static int in_sizeof;
44 static int section_sym;
46 ST_DATA int vlas_in_scope; /* number of VLAs that are currently in scope */
47 ST_DATA int vla_sp_root_loc; /* vla_sp_loc for SP before any VLAs were pushed */
48 ST_DATA int vla_sp_loc; /* Pointer to variable holding location to store stack pointer on the stack when modifying stack pointer */
50 ST_DATA SValue __vstack[1+VSTACK_SIZE], *vtop, *pvtop;
52 ST_DATA int const_wanted; /* true if constant wanted */
53 ST_DATA int nocode_wanted; /* true if no code generation wanted for an expression */
54 ST_DATA int global_expr; /* true if compound literals must be allocated globally (used during initializers parsing */
55 ST_DATA CType func_vt; /* current function return type (used by return instruction) */
56 ST_DATA int func_var; /* true if current function is variadic (used by return instruction) */
57 ST_DATA int func_vc;
58 ST_DATA int last_line_num, last_ind, func_ind; /* debug last line number and pc */
59 ST_DATA const char *funcname;
61 ST_DATA CType char_pointer_type, func_old_type, int_type, size_type;
63 ST_DATA struct switch_t {
64 struct case_t {
65 int v1, v2, sym;
66 } **p; int n; /* list of case ranges */
67 int def_sym; /* default symbol */
68 } *cur_switch; /* current switch */
70 /* ------------------------------------------------------------------------- */
71 static void gen_cast(CType *type);
72 static inline CType *pointed_type(CType *type);
73 static int is_compatible_types(CType *type1, CType *type2);
74 static int parse_btype(CType *type, AttributeDef *ad);
75 static void type_decl(CType *type, AttributeDef *ad, int *v, int td);
76 static void parse_expr_type(CType *type);
77 static void decl_initializer(CType *type, Section *sec, unsigned long c, int first, int size_only);
78 static void block(int *bsym, int *csym, int is_expr);
79 static void decl_initializer_alloc(CType *type, AttributeDef *ad, int r, int has_init, int v, int scope);
80 static int decl0(int l, int is_for_loop_init);
81 static void expr_eq(void);
82 static void expr_lor_const(void);
83 static void unary_type(CType *type);
84 static void vla_runtime_type_size(CType *type, int *a);
85 static void vla_sp_restore(void);
86 static void vla_sp_restore_root(void);
87 static int is_compatible_parameter_types(CType *type1, CType *type2);
88 static void expr_type(CType *type);
89 ST_FUNC void vpush64(int ty, unsigned long long v);
90 ST_FUNC void vpush(CType *type);
91 ST_FUNC int gvtst(int inv, int t);
92 ST_FUNC int is_btype_size(int bt);
93 static void gen_inline_functions(TCCState *s);
95 ST_INLN int is_float(int t)
97 int bt;
98 bt = t & VT_BTYPE;
99 return bt == VT_LDOUBLE || bt == VT_DOUBLE || bt == VT_FLOAT || bt == VT_QFLOAT;
102 /* we use our own 'finite' function to avoid potential problems with
103 non standard math libs */
104 /* XXX: endianness dependent */
105 ST_FUNC int ieee_finite(double d)
107 int p[4];
108 memcpy(p, &d, sizeof(double));
109 return ((unsigned)((p[1] | 0x800fffff) + 1)) >> 31;
112 ST_FUNC void test_lvalue(void)
114 if (!(vtop->r & VT_LVAL))
115 expect("lvalue");
118 ST_FUNC void check_vstack(void)
120 if (pvtop != vtop)
121 tcc_error("internal compiler error: vstack leak (%d)", vtop - pvtop);
124 /* ------------------------------------------------------------------------- */
125 /* vstack debugging aid */
127 #if 0
128 void pv (const char *lbl, int a, int b)
130 int i;
131 for (i = a; i < a + b; ++i) {
132 SValue *p = &vtop[-i];
133 printf("%s vtop[-%d] : type.t:%04x r:%04x r2:%04x c.i:%d\n",
134 lbl, i, p->type.t, p->r, p->r2, (int)p->c.i);
137 #endif
139 /* ------------------------------------------------------------------------- */
140 ST_FUNC void tccgen_start(TCCState *s1)
142 cur_text_section = NULL;
143 funcname = "";
144 anon_sym = SYM_FIRST_ANOM;
145 section_sym = 0;
146 nocode_wanted = 1;
148 /* define some often used types */
149 int_type.t = VT_INT;
150 char_pointer_type.t = VT_BYTE;
151 mk_pointer(&char_pointer_type);
152 #if PTR_SIZE == 4
153 size_type.t = VT_INT;
154 #else
155 size_type.t = VT_LLONG;
156 #endif
157 func_old_type.t = VT_FUNC;
158 func_old_type.ref = sym_push(SYM_FIELD, &int_type, FUNC_CDECL, FUNC_OLD);
160 if (s1->do_debug) {
161 char buf[512];
163 /* file info: full path + filename */
164 section_sym = put_elf_sym(symtab_section, 0, 0,
165 ELFW(ST_INFO)(STB_LOCAL, STT_SECTION), 0,
166 text_section->sh_num, NULL);
167 getcwd(buf, sizeof(buf));
168 #ifdef _WIN32
169 normalize_slashes(buf);
170 #endif
171 pstrcat(buf, sizeof(buf), "/");
172 put_stabs_r(buf, N_SO, 0, 0,
173 text_section->data_offset, text_section, section_sym);
174 put_stabs_r(file->filename, N_SO, 0, 0,
175 text_section->data_offset, text_section, section_sym);
177 /* an elf symbol of type STT_FILE must be put so that STB_LOCAL
178 symbols can be safely used */
179 put_elf_sym(symtab_section, 0, 0,
180 ELFW(ST_INFO)(STB_LOCAL, STT_FILE), 0,
181 SHN_ABS, file->filename);
183 #ifdef TCC_TARGET_ARM
184 arm_init(s1);
185 #endif
188 ST_FUNC void tccgen_end(TCCState *s1)
190 gen_inline_functions(s1);
191 check_vstack();
192 /* end of translation unit info */
193 if (s1->do_debug) {
194 put_stabs_r(NULL, N_SO, 0, 0,
195 text_section->data_offset, text_section, section_sym);
199 /* ------------------------------------------------------------------------- */
200 /* update sym->c so that it points to an external symbol in section
201 'section' with value 'value' */
203 ST_FUNC void put_extern_sym2(Sym *sym, Section *section,
204 addr_t value, unsigned long size,
205 int can_add_underscore)
207 int sym_type, sym_bind, sh_num, info, other;
208 ElfW(Sym) *esym;
209 const char *name;
210 char buf1[256];
212 #ifdef CONFIG_TCC_BCHECK
213 char buf[32];
214 #endif
216 if (section == NULL)
217 sh_num = SHN_UNDEF;
218 else if (section == SECTION_ABS)
219 sh_num = SHN_ABS;
220 else
221 sh_num = section->sh_num;
223 if ((sym->type.t & VT_BTYPE) == VT_FUNC) {
224 sym_type = STT_FUNC;
225 } else if ((sym->type.t & VT_BTYPE) == VT_VOID) {
226 sym_type = STT_NOTYPE;
227 } else {
228 sym_type = STT_OBJECT;
231 if (sym->type.t & VT_STATIC)
232 sym_bind = STB_LOCAL;
233 else {
234 if (sym->type.t & VT_WEAK)
235 sym_bind = STB_WEAK;
236 else
237 sym_bind = STB_GLOBAL;
240 if (!sym->c) {
241 name = get_tok_str(sym->v, NULL);
242 #ifdef CONFIG_TCC_BCHECK
243 if (tcc_state->do_bounds_check) {
244 /* XXX: avoid doing that for statics ? */
245 /* if bound checking is activated, we change some function
246 names by adding the "__bound" prefix */
247 switch(sym->v) {
248 #ifdef TCC_TARGET_PE
249 /* XXX: we rely only on malloc hooks */
250 case TOK_malloc:
251 case TOK_free:
252 case TOK_realloc:
253 case TOK_memalign:
254 case TOK_calloc:
255 #endif
256 case TOK_memcpy:
257 case TOK_memmove:
258 case TOK_memset:
259 case TOK_strlen:
260 case TOK_strcpy:
261 case TOK_alloca:
262 strcpy(buf, "__bound_");
263 strcat(buf, name);
264 name = buf;
265 break;
268 #endif
269 other = 0;
271 #ifdef TCC_TARGET_PE
272 if (sym->type.t & VT_EXPORT)
273 other |= ST_PE_EXPORT;
274 if (sym_type == STT_FUNC && sym->type.ref) {
275 Sym *ref = sym->type.ref;
276 if (ref->a.func_export)
277 other |= ST_PE_EXPORT;
278 if (ref->a.func_call == FUNC_STDCALL && can_add_underscore) {
279 sprintf(buf1, "_%s@%d", name, ref->a.func_args * PTR_SIZE);
280 name = buf1;
281 other |= ST_PE_STDCALL;
282 can_add_underscore = 0;
284 } else {
285 if (find_elf_sym(tcc_state->dynsymtab_section, name))
286 other |= ST_PE_IMPORT;
287 if (sym->type.t & VT_IMPORT)
288 other |= ST_PE_IMPORT;
290 #else
291 if (! (sym->type.t & VT_STATIC))
292 other = (sym->type.t & VT_VIS_MASK) >> VT_VIS_SHIFT;
293 #endif
294 if (tcc_state->leading_underscore && can_add_underscore) {
295 buf1[0] = '_';
296 pstrcpy(buf1 + 1, sizeof(buf1) - 1, name);
297 name = buf1;
299 if (sym->asm_label) {
300 name = get_tok_str(sym->asm_label, NULL);
302 info = ELFW(ST_INFO)(sym_bind, sym_type);
303 sym->c = set_elf_sym(symtab_section, value, size, info, other, sh_num, name);
304 } else {
305 esym = &((ElfW(Sym) *)symtab_section->data)[sym->c];
306 esym->st_value = value;
307 esym->st_size = size;
308 esym->st_shndx = sh_num;
312 ST_FUNC void put_extern_sym(Sym *sym, Section *section,
313 addr_t value, unsigned long size)
315 put_extern_sym2(sym, section, value, size, 1);
318 /* add a new relocation entry to symbol 'sym' in section 's' */
319 ST_FUNC void greloca(Section *s, Sym *sym, unsigned long offset, int type,
320 addr_t addend)
322 int c = 0;
323 if (sym) {
324 if (0 == sym->c)
325 put_extern_sym(sym, NULL, 0, 0);
326 c = sym->c;
328 /* now we can add ELF relocation info */
329 put_elf_reloca(symtab_section, s, offset, type, c, addend);
332 ST_FUNC void greloc(Section *s, Sym *sym, unsigned long offset, int type)
334 greloca(s, sym, offset, type, 0);
337 /* ------------------------------------------------------------------------- */
338 /* symbol allocator */
339 static Sym *__sym_malloc(void)
341 Sym *sym_pool, *sym, *last_sym;
342 int i;
344 sym_pool = tcc_malloc(SYM_POOL_NB * sizeof(Sym));
345 dynarray_add(&sym_pools, &nb_sym_pools, sym_pool);
347 last_sym = sym_free_first;
348 sym = sym_pool;
349 for(i = 0; i < SYM_POOL_NB; i++) {
350 sym->next = last_sym;
351 last_sym = sym;
352 sym++;
354 sym_free_first = last_sym;
355 return last_sym;
358 static inline Sym *sym_malloc(void)
360 Sym *sym;
361 sym = sym_free_first;
362 if (!sym)
363 sym = __sym_malloc();
364 sym_free_first = sym->next;
365 return sym;
368 ST_INLN void sym_free(Sym *sym)
370 sym->next = sym_free_first;
371 sym_free_first = sym;
374 /* push, without hashing */
375 ST_FUNC Sym *sym_push2(Sym **ps, int v, int t, long c)
377 Sym *s;
379 s = sym_malloc();
380 s->asm_label = 0;
381 s->v = v;
382 s->type.t = t;
383 s->type.ref = NULL;
384 #ifdef _WIN64
385 s->d = NULL;
386 #endif
387 s->c = c;
388 s->next = NULL;
389 /* add in stack */
390 s->prev = *ps;
391 *ps = s;
392 return s;
395 /* find a symbol and return its associated structure. 's' is the top
396 of the symbol stack */
397 ST_FUNC Sym *sym_find2(Sym *s, int v)
399 while (s) {
400 if (s->v == v)
401 return s;
402 else if (s->v == -1)
403 return NULL;
404 s = s->prev;
406 return NULL;
409 /* structure lookup */
410 ST_INLN Sym *struct_find(int v)
412 v -= TOK_IDENT;
413 if ((unsigned)v >= (unsigned)(tok_ident - TOK_IDENT))
414 return NULL;
415 return table_ident[v]->sym_struct;
418 /* find an identifier */
419 ST_INLN Sym *sym_find(int v)
421 v -= TOK_IDENT;
422 if ((unsigned)v >= (unsigned)(tok_ident - TOK_IDENT))
423 return NULL;
424 return table_ident[v]->sym_identifier;
427 /* push a given symbol on the symbol stack */
428 ST_FUNC Sym *sym_push(int v, CType *type, int r, int c)
430 Sym *s, **ps;
431 TokenSym *ts;
433 if (local_stack)
434 ps = &local_stack;
435 else
436 ps = &global_stack;
437 s = sym_push2(ps, v, type->t, c);
438 s->type.ref = type->ref;
439 s->r = r;
440 /* don't record fields or anonymous symbols */
441 /* XXX: simplify */
442 if (!(v & SYM_FIELD) && (v & ~SYM_STRUCT) < SYM_FIRST_ANOM) {
443 /* record symbol in token array */
444 ts = table_ident[(v & ~SYM_STRUCT) - TOK_IDENT];
445 if (v & SYM_STRUCT)
446 ps = &ts->sym_struct;
447 else
448 ps = &ts->sym_identifier;
449 s->prev_tok = *ps;
450 *ps = s;
451 s->scope = local_scope;
452 if (s->prev_tok && s->prev_tok->scope == s->scope)
453 tcc_error("redeclaration of '%s'",
454 get_tok_str(v & ~SYM_STRUCT, NULL));
456 return s;
459 /* push a global identifier */
460 ST_FUNC Sym *global_identifier_push(int v, int t, int c)
462 Sym *s, **ps;
463 s = sym_push2(&global_stack, v, t, c);
464 /* don't record anonymous symbol */
465 if (v < SYM_FIRST_ANOM) {
466 ps = &table_ident[v - TOK_IDENT]->sym_identifier;
467 /* modify the top most local identifier, so that
468 sym_identifier will point to 's' when popped */
469 while (*ps != NULL)
470 ps = &(*ps)->prev_tok;
471 s->prev_tok = NULL;
472 *ps = s;
474 return s;
477 /* pop symbols until top reaches 'b' */
478 ST_FUNC void sym_pop(Sym **ptop, Sym *b)
480 Sym *s, *ss, **ps;
481 TokenSym *ts;
482 int v;
484 s = *ptop;
485 while(s != b) {
486 ss = s->prev;
487 v = s->v;
488 /* remove symbol in token array */
489 /* XXX: simplify */
490 if (!(v & SYM_FIELD) && (v & ~SYM_STRUCT) < SYM_FIRST_ANOM) {
491 ts = table_ident[(v & ~SYM_STRUCT) - TOK_IDENT];
492 if (v & SYM_STRUCT)
493 ps = &ts->sym_struct;
494 else
495 ps = &ts->sym_identifier;
496 *ps = s->prev_tok;
498 sym_free(s);
499 s = ss;
501 *ptop = b;
504 static void weaken_symbol(Sym *sym)
506 sym->type.t |= VT_WEAK;
507 if (sym->c > 0) {
508 int esym_type;
509 ElfW(Sym) *esym;
511 esym = &((ElfW(Sym) *)symtab_section->data)[sym->c];
512 esym_type = ELFW(ST_TYPE)(esym->st_info);
513 esym->st_info = ELFW(ST_INFO)(STB_WEAK, esym_type);
517 static void apply_visibility(Sym *sym, CType *type)
519 int vis = sym->type.t & VT_VIS_MASK;
520 int vis2 = type->t & VT_VIS_MASK;
521 if (vis == (STV_DEFAULT << VT_VIS_SHIFT))
522 vis = vis2;
523 else if (vis2 == (STV_DEFAULT << VT_VIS_SHIFT))
525 else
526 vis = (vis < vis2) ? vis : vis2;
527 sym->type.t &= ~VT_VIS_MASK;
528 sym->type.t |= vis;
530 if (sym->c > 0) {
531 ElfW(Sym) *esym;
533 esym = &((ElfW(Sym) *)symtab_section->data)[sym->c];
534 vis >>= VT_VIS_SHIFT;
535 esym->st_other = (esym->st_other & ~ELFW(ST_VISIBILITY)(-1)) | vis;
539 /* ------------------------------------------------------------------------- */
541 ST_FUNC void swap(int *p, int *q)
543 int t;
544 t = *p;
545 *p = *q;
546 *q = t;
549 static void vsetc(CType *type, int r, CValue *vc)
551 int v;
553 if (vtop >= vstack + (VSTACK_SIZE - 1))
554 tcc_error("memory full (vstack)");
555 /* cannot let cpu flags if other instruction are generated. Also
556 avoid leaving VT_JMP anywhere except on the top of the stack
557 because it would complicate the code generator. */
558 if (vtop >= vstack) {
559 v = vtop->r & VT_VALMASK;
560 if (v == VT_CMP || (v & ~1) == VT_JMP)
561 gv(RC_INT);
563 vtop++;
564 vtop->type = *type;
565 vtop->r = r;
566 vtop->r2 = VT_CONST;
567 vtop->c = *vc;
570 /* push constant of type "type" with useless value */
571 ST_FUNC void vpush(CType *type)
573 CValue cval;
574 vsetc(type, VT_CONST, &cval);
577 /* push integer constant */
578 ST_FUNC void vpushi(int v)
580 CValue cval;
581 cval.i = v;
582 vsetc(&int_type, VT_CONST, &cval);
585 /* push a pointer sized constant */
586 static void vpushs(addr_t v)
588 CValue cval;
589 cval.i = v;
590 vsetc(&size_type, VT_CONST, &cval);
593 /* push arbitrary 64bit constant */
594 ST_FUNC void vpush64(int ty, unsigned long long v)
596 CValue cval;
597 CType ctype;
598 ctype.t = ty;
599 ctype.ref = NULL;
600 cval.i = v;
601 vsetc(&ctype, VT_CONST, &cval);
604 /* push long long constant */
605 static inline void vpushll(long long v)
607 vpush64(VT_LLONG, v);
610 /* push a symbol value of TYPE */
611 static inline void vpushsym(CType *type, Sym *sym)
613 CValue cval;
614 cval.i = 0;
615 vsetc(type, VT_CONST | VT_SYM, &cval);
616 vtop->sym = sym;
619 /* Return a static symbol pointing to a section */
620 ST_FUNC Sym *get_sym_ref(CType *type, Section *sec, unsigned long offset, unsigned long size)
622 int v;
623 Sym *sym;
625 v = anon_sym++;
626 sym = global_identifier_push(v, type->t | VT_STATIC, 0);
627 sym->type.ref = type->ref;
628 sym->r = VT_CONST | VT_SYM;
629 put_extern_sym(sym, sec, offset, size);
630 return sym;
633 /* push a reference to a section offset by adding a dummy symbol */
634 static void vpush_ref(CType *type, Section *sec, unsigned long offset, unsigned long size)
636 vpushsym(type, get_sym_ref(type, sec, offset, size));
639 /* define a new external reference to a symbol 'v' of type 'u' */
640 ST_FUNC Sym *external_global_sym(int v, CType *type, int r)
642 Sym *s;
644 s = sym_find(v);
645 if (!s) {
646 /* push forward reference */
647 s = global_identifier_push(v, type->t | VT_EXTERN, 0);
648 s->type.ref = type->ref;
649 s->r = r | VT_CONST | VT_SYM;
651 return s;
654 /* define a new external reference to a symbol 'v' */
655 static Sym *external_sym(int v, CType *type, int r)
657 Sym *s;
659 s = sym_find(v);
660 if (!s) {
661 /* push forward reference */
662 s = sym_push(v, type, r | VT_CONST | VT_SYM, 0);
663 s->type.t |= VT_EXTERN;
664 } else if (s->type.ref == func_old_type.ref) {
665 s->type.ref = type->ref;
666 s->r = r | VT_CONST | VT_SYM;
667 s->type.t |= VT_EXTERN;
668 } else if (!is_compatible_types(&s->type, type)) {
669 tcc_error("incompatible types for redefinition of '%s'",
670 get_tok_str(v, NULL));
672 /* Merge some storage attributes. */
673 if (type->t & VT_WEAK)
674 weaken_symbol(s);
676 if (type->t & VT_VIS_MASK)
677 apply_visibility(s, type);
679 return s;
682 /* push a reference to global symbol v */
683 ST_FUNC void vpush_global_sym(CType *type, int v)
685 vpushsym(type, external_global_sym(v, type, 0));
688 ST_FUNC void vset(CType *type, int r, int v)
690 CValue cval;
692 cval.i = v;
693 vsetc(type, r, &cval);
696 static void vseti(int r, int v)
698 CType type;
699 type.t = VT_INT;
700 type.ref = 0;
701 vset(&type, r, v);
704 ST_FUNC void vswap(void)
706 SValue tmp;
707 /* cannot let cpu flags if other instruction are generated. Also
708 avoid leaving VT_JMP anywhere except on the top of the stack
709 because it would complicate the code generator. */
710 if (vtop >= vstack) {
711 int v = vtop->r & VT_VALMASK;
712 if (v == VT_CMP || (v & ~1) == VT_JMP)
713 gv(RC_INT);
715 tmp = vtop[0];
716 vtop[0] = vtop[-1];
717 vtop[-1] = tmp;
719 /* XXX: +2% overall speed possible with optimized memswap
721 * memswap(&vtop[0], &vtop[1], sizeof *vtop);
725 ST_FUNC void vpushv(SValue *v)
727 if (vtop >= vstack + (VSTACK_SIZE - 1))
728 tcc_error("memory full (vstack)");
729 vtop++;
730 *vtop = *v;
733 static void vdup(void)
735 vpushv(vtop);
738 /* save registers up to (vtop - n) stack entry */
739 ST_FUNC void save_regs(int n)
741 SValue *p, *p1;
742 for(p = vstack, p1 = vtop - n; p <= p1; p++)
743 save_reg(p->r);
746 /* save r to the memory stack, and mark it as being free */
747 ST_FUNC void save_reg(int r)
749 save_reg_upstack(r, 0);
752 /* save r to the memory stack, and mark it as being free,
753 if seen up to (vtop - n) stack entry */
754 ST_FUNC void save_reg_upstack(int r, int n)
756 int l, saved, size, align;
757 SValue *p, *p1, sv;
758 CType *type;
760 if ((r &= VT_VALMASK) >= VT_CONST)
761 return;
763 /* modify all stack values */
764 saved = 0;
765 l = 0;
766 for(p = vstack, p1 = vtop - n; p <= p1; p++) {
767 if ((p->r & VT_VALMASK) == r ||
768 ((p->type.t & VT_BTYPE) == VT_LLONG && (p->r2 & VT_VALMASK) == r)) {
769 /* must save value on stack if not already done */
770 if (!saved) {
771 /* NOTE: must reload 'r' because r might be equal to r2 */
772 r = p->r & VT_VALMASK;
773 /* store register in the stack */
774 type = &p->type;
775 if ((p->r & VT_LVAL) ||
776 (!is_float(type->t) && (type->t & VT_BTYPE) != VT_LLONG))
777 #if defined(TCC_TARGET_ARM64) || defined(TCC_TARGET_X86_64)
778 type = &char_pointer_type;
779 #else
780 type = &int_type;
781 #endif
782 size = type_size(type, &align);
783 loc = (loc - size) & -align;
784 sv.type.t = type->t;
785 sv.r = VT_LOCAL | VT_LVAL;
786 sv.c.i = loc;
787 store(r, &sv);
788 #if defined(TCC_TARGET_I386) || defined(TCC_TARGET_X86_64)
789 /* x86 specific: need to pop fp register ST0 if saved */
790 if (r == TREG_ST0) {
791 o(0xd8dd); /* fstp %st(0) */
793 #endif
794 #if !defined(TCC_TARGET_ARM64) && !defined(TCC_TARGET_X86_64)
795 /* special long long case */
796 if ((type->t & VT_BTYPE) == VT_LLONG) {
797 sv.c.i += 4;
798 store(p->r2, &sv);
800 #endif
801 l = loc;
802 saved = 1;
804 /* mark that stack entry as being saved on the stack */
805 if (p->r & VT_LVAL) {
806 /* also clear the bounded flag because the
807 relocation address of the function was stored in
808 p->c.i */
809 p->r = (p->r & ~(VT_VALMASK | VT_BOUNDED)) | VT_LLOCAL;
810 } else {
811 p->r = lvalue_type(p->type.t) | VT_LOCAL;
813 p->r2 = VT_CONST;
814 p->c.i = l;
819 #ifdef TCC_TARGET_ARM
820 /* find a register of class 'rc2' with at most one reference on stack.
821 * If none, call get_reg(rc) */
822 ST_FUNC int get_reg_ex(int rc, int rc2)
824 int r;
825 SValue *p;
827 for(r=0;r<NB_REGS;r++) {
828 if (reg_classes[r] & rc2) {
829 int n;
830 n=0;
831 for(p = vstack; p <= vtop; p++) {
832 if ((p->r & VT_VALMASK) == r ||
833 (p->r2 & VT_VALMASK) == r)
834 n++;
836 if (n <= 1)
837 return r;
840 return get_reg(rc);
842 #endif
844 /* find a free register of class 'rc'. If none, save one register */
845 ST_FUNC int get_reg(int rc)
847 int r;
848 SValue *p;
850 /* find a free register */
851 for(r=0;r<NB_REGS;r++) {
852 if (reg_classes[r] & rc) {
853 for(p=vstack;p<=vtop;p++) {
854 if ((p->r & VT_VALMASK) == r ||
855 (p->r2 & VT_VALMASK) == r)
856 goto notfound;
858 return r;
860 notfound: ;
863 /* no register left : free the first one on the stack (VERY
864 IMPORTANT to start from the bottom to ensure that we don't
865 spill registers used in gen_opi()) */
866 for(p=vstack;p<=vtop;p++) {
867 /* look at second register (if long long) */
868 r = p->r2 & VT_VALMASK;
869 if (r < VT_CONST && (reg_classes[r] & rc))
870 goto save_found;
871 r = p->r & VT_VALMASK;
872 if (r < VT_CONST && (reg_classes[r] & rc)) {
873 save_found:
874 save_reg(r);
875 return r;
878 /* Should never comes here */
879 return -1;
882 /* move register 's' (of type 't') to 'r', and flush previous value of r to memory
883 if needed */
884 static void move_reg(int r, int s, int t)
886 SValue sv;
888 if (r != s) {
889 save_reg(r);
890 sv.type.t = t;
891 sv.type.ref = NULL;
892 sv.r = s;
893 sv.c.i = 0;
894 load(r, &sv);
898 /* get address of vtop (vtop MUST BE an lvalue) */
899 ST_FUNC void gaddrof(void)
901 if (vtop->r & VT_REF && !nocode_wanted)
902 gv(RC_INT);
903 vtop->r &= ~VT_LVAL;
904 /* tricky: if saved lvalue, then we can go back to lvalue */
905 if ((vtop->r & VT_VALMASK) == VT_LLOCAL)
906 vtop->r = (vtop->r & ~(VT_VALMASK | VT_LVAL_TYPE)) | VT_LOCAL | VT_LVAL;
911 #ifdef CONFIG_TCC_BCHECK
912 /* generate lvalue bound code */
913 static void gbound(void)
915 int lval_type;
916 CType type1;
918 vtop->r &= ~VT_MUSTBOUND;
919 /* if lvalue, then use checking code before dereferencing */
920 if (vtop->r & VT_LVAL) {
921 /* if not VT_BOUNDED value, then make one */
922 if (!(vtop->r & VT_BOUNDED)) {
923 lval_type = vtop->r & (VT_LVAL_TYPE | VT_LVAL);
924 /* must save type because we must set it to int to get pointer */
925 type1 = vtop->type;
926 vtop->type.t = VT_PTR;
927 gaddrof();
928 vpushi(0);
929 gen_bounded_ptr_add();
930 vtop->r |= lval_type;
931 vtop->type = type1;
933 /* then check for dereferencing */
934 gen_bounded_ptr_deref();
937 #endif
939 /* store vtop a register belonging to class 'rc'. lvalues are
940 converted to values. Cannot be used if cannot be converted to
941 register value (such as structures). */
942 ST_FUNC int gv(int rc)
944 int r, bit_pos, bit_size, size, align, i;
945 int rc2;
947 /* NOTE: get_reg can modify vstack[] */
948 if (vtop->type.t & VT_BITFIELD) {
949 CType type;
950 int bits = 32;
951 bit_pos = (vtop->type.t >> VT_STRUCT_SHIFT) & 0x3f;
952 bit_size = (vtop->type.t >> (VT_STRUCT_SHIFT + 6)) & 0x3f;
953 /* remove bit field info to avoid loops */
954 vtop->type.t &= ~VT_BITFIELD & ((1 << VT_STRUCT_SHIFT) - 1);
955 /* cast to int to propagate signedness in following ops */
956 if ((vtop->type.t & VT_BTYPE) == VT_LLONG) {
957 type.t = VT_LLONG;
958 bits = 64;
959 } else
960 type.t = VT_INT;
961 if((vtop->type.t & VT_UNSIGNED) ||
962 (vtop->type.t & VT_BTYPE) == VT_BOOL)
963 type.t |= VT_UNSIGNED;
964 gen_cast(&type);
965 /* generate shifts */
966 vpushi(bits - (bit_pos + bit_size));
967 gen_op(TOK_SHL);
968 vpushi(bits - bit_size);
969 /* NOTE: transformed to SHR if unsigned */
970 gen_op(TOK_SAR);
971 r = gv(rc);
972 } else {
973 if (is_float(vtop->type.t) &&
974 (vtop->r & (VT_VALMASK | VT_LVAL)) == VT_CONST) {
975 Sym *sym;
976 int *ptr;
977 unsigned long offset;
978 #if defined(TCC_TARGET_ARM) && !defined(TCC_ARM_VFP)
979 CValue check;
980 #endif
982 /* XXX: unify with initializers handling ? */
983 /* CPUs usually cannot use float constants, so we store them
984 generically in data segment */
985 size = type_size(&vtop->type, &align);
986 offset = (data_section->data_offset + align - 1) & -align;
987 data_section->data_offset = offset;
988 /* XXX: not portable yet */
989 #if defined(__i386__) || defined(__x86_64__)
990 /* Zero pad x87 tenbyte long doubles */
991 if (size == LDOUBLE_SIZE) {
992 vtop->c.tab[2] &= 0xffff;
993 #if LDOUBLE_SIZE == 16
994 vtop->c.tab[3] = 0;
995 #endif
997 #endif
998 ptr = section_ptr_add(data_section, size);
999 size = size >> 2;
1000 #if defined(TCC_TARGET_ARM) && !defined(TCC_ARM_VFP)
1001 check.d = 1;
1002 if(check.tab[0])
1003 for(i=0;i<size;i++)
1004 ptr[i] = vtop->c.tab[size-1-i];
1005 else
1006 #endif
1007 for(i=0;i<size;i++)
1008 ptr[i] = vtop->c.tab[i];
1009 sym = get_sym_ref(&vtop->type, data_section, offset, size << 2);
1010 vtop->r |= VT_LVAL | VT_SYM;
1011 vtop->sym = sym;
1012 vtop->c.i = 0;
1014 #ifdef CONFIG_TCC_BCHECK
1015 if (vtop->r & VT_MUSTBOUND)
1016 gbound();
1017 #endif
1019 r = vtop->r & VT_VALMASK;
1020 rc2 = (rc & RC_FLOAT) ? RC_FLOAT : RC_INT;
1021 #ifndef TCC_TARGET_ARM64
1022 if (rc == RC_IRET)
1023 rc2 = RC_LRET;
1024 #ifdef TCC_TARGET_X86_64
1025 else if (rc == RC_FRET)
1026 rc2 = RC_QRET;
1027 #endif
1028 #endif
1030 /* need to reload if:
1031 - constant
1032 - lvalue (need to dereference pointer)
1033 - already a register, but not in the right class */
1034 if (r >= VT_CONST
1035 || (vtop->r & VT_LVAL)
1036 || !(reg_classes[r] & rc)
1037 #if defined(TCC_TARGET_ARM64) || defined(TCC_TARGET_X86_64)
1038 || ((vtop->type.t & VT_BTYPE) == VT_QLONG && !(reg_classes[vtop->r2] & rc2))
1039 || ((vtop->type.t & VT_BTYPE) == VT_QFLOAT && !(reg_classes[vtop->r2] & rc2))
1040 #else
1041 || ((vtop->type.t & VT_BTYPE) == VT_LLONG && !(reg_classes[vtop->r2] & rc2))
1042 #endif
1045 r = get_reg(rc);
1046 #if defined(TCC_TARGET_ARM64) || defined(TCC_TARGET_X86_64)
1047 if (((vtop->type.t & VT_BTYPE) == VT_QLONG) || ((vtop->type.t & VT_BTYPE) == VT_QFLOAT)) {
1048 int addr_type = VT_LLONG, load_size = 8, load_type = ((vtop->type.t & VT_BTYPE) == VT_QLONG) ? VT_LLONG : VT_DOUBLE;
1049 #else
1050 if ((vtop->type.t & VT_BTYPE) == VT_LLONG) {
1051 int addr_type = VT_INT, load_size = 4, load_type = VT_INT;
1052 unsigned long long ll;
1053 #endif
1054 int r2, original_type;
1055 original_type = vtop->type.t;
1056 /* two register type load : expand to two words
1057 temporarily */
1058 #if !defined(TCC_TARGET_ARM64) && !defined(TCC_TARGET_X86_64)
1059 if ((vtop->r & (VT_VALMASK | VT_LVAL)) == VT_CONST) {
1060 /* load constant */
1061 ll = vtop->c.i;
1062 vtop->c.i = ll; /* first word */
1063 load(r, vtop);
1064 vtop->r = r; /* save register value */
1065 vpushi(ll >> 32); /* second word */
1066 } else
1067 #endif
1068 if (vtop->r & VT_LVAL) {
1069 /* We do not want to modifier the long long
1070 pointer here, so the safest (and less
1071 efficient) is to save all the other registers
1072 in the stack. XXX: totally inefficient. */
1073 #if 0
1074 save_regs(1);
1075 #else
1076 /* lvalue_save: save only if used further down the stack */
1077 save_reg_upstack(vtop->r, 1);
1078 #endif
1079 /* load from memory */
1080 vtop->type.t = load_type;
1081 load(r, vtop);
1082 vdup();
1083 vtop[-1].r = r; /* save register value */
1084 /* increment pointer to get second word */
1085 vtop->type.t = addr_type;
1086 gaddrof();
1087 vpushi(load_size);
1088 gen_op('+');
1089 vtop->r |= VT_LVAL;
1090 vtop->type.t = load_type;
1091 } else {
1092 /* move registers */
1093 load(r, vtop);
1094 vdup();
1095 vtop[-1].r = r; /* save register value */
1096 vtop->r = vtop[-1].r2;
1098 /* Allocate second register. Here we rely on the fact that
1099 get_reg() tries first to free r2 of an SValue. */
1100 r2 = get_reg(rc2);
1101 load(r2, vtop);
1102 vpop();
1103 /* write second register */
1104 vtop->r2 = r2;
1105 vtop->type.t = original_type;
1106 } else if ((vtop->r & VT_LVAL) && !is_float(vtop->type.t)) {
1107 int t1, t;
1108 /* lvalue of scalar type : need to use lvalue type
1109 because of possible cast */
1110 t = vtop->type.t;
1111 t1 = t;
1112 /* compute memory access type */
1113 if (vtop->r & VT_REF)
1114 #if defined(TCC_TARGET_ARM64) || defined(TCC_TARGET_X86_64)
1115 t = VT_PTR;
1116 #else
1117 t = VT_INT;
1118 #endif
1119 else if (vtop->r & VT_LVAL_BYTE)
1120 t = VT_BYTE;
1121 else if (vtop->r & VT_LVAL_SHORT)
1122 t = VT_SHORT;
1123 if (vtop->r & VT_LVAL_UNSIGNED)
1124 t |= VT_UNSIGNED;
1125 vtop->type.t = t;
1126 load(r, vtop);
1127 /* restore wanted type */
1128 vtop->type.t = t1;
1129 } else {
1130 /* one register type load */
1131 load(r, vtop);
1134 vtop->r = r;
1135 #ifdef TCC_TARGET_C67
1136 /* uses register pairs for doubles */
1137 if ((vtop->type.t & VT_BTYPE) == VT_DOUBLE)
1138 vtop->r2 = r+1;
1139 #endif
1141 return r;
1144 /* generate vtop[-1] and vtop[0] in resp. classes rc1 and rc2 */
1145 ST_FUNC void gv2(int rc1, int rc2)
1147 int v;
1149 /* generate more generic register first. But VT_JMP or VT_CMP
1150 values must be generated first in all cases to avoid possible
1151 reload errors */
1152 v = vtop[0].r & VT_VALMASK;
1153 if (v != VT_CMP && (v & ~1) != VT_JMP && rc1 <= rc2) {
1154 vswap();
1155 gv(rc1);
1156 vswap();
1157 gv(rc2);
1158 /* test if reload is needed for first register */
1159 if ((vtop[-1].r & VT_VALMASK) >= VT_CONST) {
1160 vswap();
1161 gv(rc1);
1162 vswap();
1164 } else {
1165 gv(rc2);
1166 vswap();
1167 gv(rc1);
1168 vswap();
1169 /* test if reload is needed for first register */
1170 if ((vtop[0].r & VT_VALMASK) >= VT_CONST) {
1171 gv(rc2);
1176 #ifndef TCC_TARGET_ARM64
1177 /* wrapper around RC_FRET to return a register by type */
1178 static int rc_fret(int t)
1180 #ifdef TCC_TARGET_X86_64
1181 if (t == VT_LDOUBLE) {
1182 return RC_ST0;
1184 #endif
1185 return RC_FRET;
1187 #endif
1189 /* wrapper around REG_FRET to return a register by type */
1190 static int reg_fret(int t)
1192 #ifdef TCC_TARGET_X86_64
1193 if (t == VT_LDOUBLE) {
1194 return TREG_ST0;
1196 #endif
1197 return REG_FRET;
1200 #if !defined(TCC_TARGET_ARM64) && !defined(TCC_TARGET_X86_64)
1201 /* expand 64bit on stack in two ints */
1202 static void lexpand(void)
1204 int u, v;
1205 u = vtop->type.t & (VT_DEFSIGN | VT_UNSIGNED);
1206 v = vtop->r & (VT_VALMASK | VT_LVAL);
1207 if (v == VT_CONST) {
1208 vdup();
1209 vtop[0].c.i >>= 32;
1210 } else if (v == (VT_LVAL|VT_CONST) || v == (VT_LVAL|VT_LOCAL)) {
1211 vdup();
1212 vtop[0].c.i += 4;
1213 } else {
1214 gv(RC_INT);
1215 vdup();
1216 vtop[0].r = vtop[-1].r2;
1217 vtop[0].r2 = vtop[-1].r2 = VT_CONST;
1219 vtop[0].type.t = vtop[-1].type.t = VT_INT | u;
1221 #endif
1223 #ifdef TCC_TARGET_ARM
1224 /* expand long long on stack */
1225 ST_FUNC void lexpand_nr(void)
1227 int u,v;
1229 u = vtop->type.t & (VT_DEFSIGN | VT_UNSIGNED);
1230 vdup();
1231 vtop->r2 = VT_CONST;
1232 vtop->type.t = VT_INT | u;
1233 v=vtop[-1].r & (VT_VALMASK | VT_LVAL);
1234 if (v == VT_CONST) {
1235 vtop[-1].c.i = vtop->c.i;
1236 vtop->c.i = vtop->c.i >> 32;
1237 vtop->r = VT_CONST;
1238 } else if (v == (VT_LVAL|VT_CONST) || v == (VT_LVAL|VT_LOCAL)) {
1239 vtop->c.i += 4;
1240 vtop->r = vtop[-1].r;
1241 } else if (v > VT_CONST) {
1242 vtop--;
1243 lexpand();
1244 } else
1245 vtop->r = vtop[-1].r2;
1246 vtop[-1].r2 = VT_CONST;
1247 vtop[-1].type.t = VT_INT | u;
1249 #endif
1251 #if !defined(TCC_TARGET_X86_64) && !defined(TCC_TARGET_ARM64)
1252 /* build a long long from two ints */
1253 static void lbuild(int t)
1255 gv2(RC_INT, RC_INT);
1256 vtop[-1].r2 = vtop[0].r;
1257 vtop[-1].type.t = t;
1258 vpop();
1260 #endif
1262 /* rotate n first stack elements to the bottom
1263 I1 ... In -> I2 ... In I1 [top is right]
1265 ST_FUNC void vrotb(int n)
1267 int i;
1268 SValue tmp;
1270 tmp = vtop[-n + 1];
1271 for(i=-n+1;i!=0;i++)
1272 vtop[i] = vtop[i+1];
1273 vtop[0] = tmp;
1276 /* rotate the n elements before entry e towards the top
1277 I1 ... In ... -> In I1 ... I(n-1) ... [top is right]
1279 ST_FUNC void vrote(SValue *e, int n)
1281 int i;
1282 SValue tmp;
1284 tmp = *e;
1285 for(i = 0;i < n - 1; i++)
1286 e[-i] = e[-i - 1];
1287 e[-n + 1] = tmp;
1290 /* rotate n first stack elements to the top
1291 I1 ... In -> In I1 ... I(n-1) [top is right]
1293 ST_FUNC void vrott(int n)
1295 vrote(vtop, n);
1298 /* pop stack value */
1299 ST_FUNC void vpop(void)
1301 int v;
1302 v = vtop->r & VT_VALMASK;
1303 #if defined(TCC_TARGET_I386) || defined(TCC_TARGET_X86_64)
1304 /* for x86, we need to pop the FP stack */
1305 if (v == TREG_ST0 && !nocode_wanted) {
1306 o(0xd8dd); /* fstp %st(0) */
1307 } else
1308 #endif
1309 if (v == VT_JMP || v == VT_JMPI) {
1310 /* need to put correct jump if && or || without test */
1311 gsym(vtop->c.i);
1313 vtop--;
1316 /* convert stack entry to register and duplicate its value in another
1317 register */
1318 static void gv_dup(void)
1320 int rc, t, r, r1;
1321 SValue sv;
1323 t = vtop->type.t;
1324 #if !defined(TCC_TARGET_X86_64) && !defined(TCC_TARGET_ARM64)
1325 if ((t & VT_BTYPE) == VT_LLONG) {
1326 lexpand();
1327 gv_dup();
1328 vswap();
1329 vrotb(3);
1330 gv_dup();
1331 vrotb(4);
1332 /* stack: H L L1 H1 */
1333 lbuild(t);
1334 vrotb(3);
1335 vrotb(3);
1336 vswap();
1337 lbuild(t);
1338 vswap();
1339 } else
1340 #endif
1342 /* duplicate value */
1343 rc = RC_INT;
1344 sv.type.t = VT_INT;
1345 if (is_float(t)) {
1346 rc = RC_FLOAT;
1347 #ifdef TCC_TARGET_X86_64
1348 if ((t & VT_BTYPE) == VT_LDOUBLE) {
1349 rc = RC_ST0;
1351 #endif
1352 sv.type.t = t;
1354 r = gv(rc);
1355 r1 = get_reg(rc);
1356 sv.r = r;
1357 sv.c.i = 0;
1358 load(r1, &sv); /* move r to r1 */
1359 vdup();
1360 /* duplicates value */
1361 if (r != r1)
1362 vtop->r = r1;
1366 /* Generate value test
1368 * Generate a test for any value (jump, comparison and integers) */
1369 ST_FUNC int gvtst(int inv, int t)
1371 int v = vtop->r & VT_VALMASK;
1372 if (v != VT_CMP && v != VT_JMP && v != VT_JMPI) {
1373 vpushi(0);
1374 gen_op(TOK_NE);
1376 if ((vtop->r & (VT_VALMASK | VT_LVAL | VT_SYM)) == VT_CONST) {
1377 /* constant jmp optimization */
1378 if ((vtop->c.i != 0) != inv)
1379 t = gjmp(t);
1380 vtop--;
1381 return t;
1383 return gtst(inv, t);
1386 #if !defined(TCC_TARGET_ARM64) && !defined(TCC_TARGET_X86_64)
1387 /* generate CPU independent (unsigned) long long operations */
1388 static void gen_opl(int op)
1390 int t, a, b, op1, c, i;
1391 int func;
1392 unsigned short reg_iret = REG_IRET;
1393 unsigned short reg_lret = REG_LRET;
1394 SValue tmp;
1396 switch(op) {
1397 case '/':
1398 case TOK_PDIV:
1399 func = TOK___divdi3;
1400 goto gen_func;
1401 case TOK_UDIV:
1402 func = TOK___udivdi3;
1403 goto gen_func;
1404 case '%':
1405 func = TOK___moddi3;
1406 goto gen_mod_func;
1407 case TOK_UMOD:
1408 func = TOK___umoddi3;
1409 gen_mod_func:
1410 #ifdef TCC_ARM_EABI
1411 reg_iret = TREG_R2;
1412 reg_lret = TREG_R3;
1413 #endif
1414 gen_func:
1415 /* call generic long long function */
1416 vpush_global_sym(&func_old_type, func);
1417 vrott(3);
1418 gfunc_call(2);
1419 vpushi(0);
1420 vtop->r = reg_iret;
1421 vtop->r2 = reg_lret;
1422 break;
1423 case '^':
1424 case '&':
1425 case '|':
1426 case '*':
1427 case '+':
1428 case '-':
1429 //pv("gen_opl A",0,2);
1430 t = vtop->type.t;
1431 vswap();
1432 lexpand();
1433 vrotb(3);
1434 lexpand();
1435 /* stack: L1 H1 L2 H2 */
1436 tmp = vtop[0];
1437 vtop[0] = vtop[-3];
1438 vtop[-3] = tmp;
1439 tmp = vtop[-2];
1440 vtop[-2] = vtop[-3];
1441 vtop[-3] = tmp;
1442 vswap();
1443 /* stack: H1 H2 L1 L2 */
1444 //pv("gen_opl B",0,4);
1445 if (op == '*') {
1446 vpushv(vtop - 1);
1447 vpushv(vtop - 1);
1448 gen_op(TOK_UMULL);
1449 lexpand();
1450 /* stack: H1 H2 L1 L2 ML MH */
1451 for(i=0;i<4;i++)
1452 vrotb(6);
1453 /* stack: ML MH H1 H2 L1 L2 */
1454 tmp = vtop[0];
1455 vtop[0] = vtop[-2];
1456 vtop[-2] = tmp;
1457 /* stack: ML MH H1 L2 H2 L1 */
1458 gen_op('*');
1459 vrotb(3);
1460 vrotb(3);
1461 gen_op('*');
1462 /* stack: ML MH M1 M2 */
1463 gen_op('+');
1464 gen_op('+');
1465 } else if (op == '+' || op == '-') {
1466 /* XXX: add non carry method too (for MIPS or alpha) */
1467 if (op == '+')
1468 op1 = TOK_ADDC1;
1469 else
1470 op1 = TOK_SUBC1;
1471 gen_op(op1);
1472 /* stack: H1 H2 (L1 op L2) */
1473 vrotb(3);
1474 vrotb(3);
1475 gen_op(op1 + 1); /* TOK_xxxC2 */
1476 } else {
1477 gen_op(op);
1478 /* stack: H1 H2 (L1 op L2) */
1479 vrotb(3);
1480 vrotb(3);
1481 /* stack: (L1 op L2) H1 H2 */
1482 gen_op(op);
1483 /* stack: (L1 op L2) (H1 op H2) */
1485 /* stack: L H */
1486 lbuild(t);
1487 break;
1488 case TOK_SAR:
1489 case TOK_SHR:
1490 case TOK_SHL:
1491 if ((vtop->r & (VT_VALMASK | VT_LVAL | VT_SYM)) == VT_CONST) {
1492 t = vtop[-1].type.t;
1493 vswap();
1494 lexpand();
1495 vrotb(3);
1496 /* stack: L H shift */
1497 c = (int)vtop->c.i;
1498 /* constant: simpler */
1499 /* NOTE: all comments are for SHL. the other cases are
1500 done by swaping words */
1501 vpop();
1502 if (op != TOK_SHL)
1503 vswap();
1504 if (c >= 32) {
1505 /* stack: L H */
1506 vpop();
1507 if (c > 32) {
1508 vpushi(c - 32);
1509 gen_op(op);
1511 if (op != TOK_SAR) {
1512 vpushi(0);
1513 } else {
1514 gv_dup();
1515 vpushi(31);
1516 gen_op(TOK_SAR);
1518 vswap();
1519 } else {
1520 vswap();
1521 gv_dup();
1522 /* stack: H L L */
1523 vpushi(c);
1524 gen_op(op);
1525 vswap();
1526 vpushi(32 - c);
1527 if (op == TOK_SHL)
1528 gen_op(TOK_SHR);
1529 else
1530 gen_op(TOK_SHL);
1531 vrotb(3);
1532 /* stack: L L H */
1533 vpushi(c);
1534 if (op == TOK_SHL)
1535 gen_op(TOK_SHL);
1536 else
1537 gen_op(TOK_SHR);
1538 gen_op('|');
1540 if (op != TOK_SHL)
1541 vswap();
1542 lbuild(t);
1543 } else {
1544 /* XXX: should provide a faster fallback on x86 ? */
1545 switch(op) {
1546 case TOK_SAR:
1547 func = TOK___ashrdi3;
1548 goto gen_func;
1549 case TOK_SHR:
1550 func = TOK___lshrdi3;
1551 goto gen_func;
1552 case TOK_SHL:
1553 func = TOK___ashldi3;
1554 goto gen_func;
1557 break;
1558 default:
1559 /* compare operations */
1560 t = vtop->type.t;
1561 vswap();
1562 lexpand();
1563 vrotb(3);
1564 lexpand();
1565 /* stack: L1 H1 L2 H2 */
1566 tmp = vtop[-1];
1567 vtop[-1] = vtop[-2];
1568 vtop[-2] = tmp;
1569 /* stack: L1 L2 H1 H2 */
1570 /* compare high */
1571 op1 = op;
1572 /* when values are equal, we need to compare low words. since
1573 the jump is inverted, we invert the test too. */
1574 if (op1 == TOK_LT)
1575 op1 = TOK_LE;
1576 else if (op1 == TOK_GT)
1577 op1 = TOK_GE;
1578 else if (op1 == TOK_ULT)
1579 op1 = TOK_ULE;
1580 else if (op1 == TOK_UGT)
1581 op1 = TOK_UGE;
1582 a = 0;
1583 b = 0;
1584 gen_op(op1);
1585 if (op1 != TOK_NE) {
1586 a = gvtst(1, 0);
1588 if (op != TOK_EQ) {
1589 /* generate non equal test */
1590 /* XXX: NOT PORTABLE yet */
1591 if (a == 0) {
1592 b = gvtst(0, 0);
1593 } else {
1594 #if defined(TCC_TARGET_I386)
1595 b = psym(0x850f, 0);
1596 #elif defined(TCC_TARGET_ARM)
1597 b = ind;
1598 o(0x1A000000 | encbranch(ind, 0, 1));
1599 #elif defined(TCC_TARGET_C67) || defined(TCC_TARGET_ARM64)
1600 tcc_error("not implemented");
1601 #else
1602 #error not supported
1603 #endif
1606 /* compare low. Always unsigned */
1607 op1 = op;
1608 if (op1 == TOK_LT)
1609 op1 = TOK_ULT;
1610 else if (op1 == TOK_LE)
1611 op1 = TOK_ULE;
1612 else if (op1 == TOK_GT)
1613 op1 = TOK_UGT;
1614 else if (op1 == TOK_GE)
1615 op1 = TOK_UGE;
1616 gen_op(op1);
1617 a = gvtst(1, a);
1618 gsym(b);
1619 vseti(VT_JMPI, a);
1620 break;
1623 #endif
1625 static uint64_t gen_opic_sdiv(uint64_t a, uint64_t b)
1627 uint64_t x = (a >> 63 ? -a : a) / (b >> 63 ? -b : b);
1628 return (a ^ b) >> 63 ? -x : x;
1631 static int gen_opic_lt(uint64_t a, uint64_t b)
1633 return (a ^ (uint64_t)1 << 63) < (b ^ (uint64_t)1 << 63);
1636 /* handle integer constant optimizations and various machine
1637 independent opt */
1638 static void gen_opic(int op)
1640 SValue *v1 = vtop - 1;
1641 SValue *v2 = vtop;
1642 int t1 = v1->type.t & VT_BTYPE;
1643 int t2 = v2->type.t & VT_BTYPE;
1644 int c1 = (v1->r & (VT_VALMASK | VT_LVAL | VT_SYM)) == VT_CONST;
1645 int c2 = (v2->r & (VT_VALMASK | VT_LVAL | VT_SYM)) == VT_CONST;
1646 uint64_t l1 = c1 ? v1->c.i : 0;
1647 uint64_t l2 = c2 ? v2->c.i : 0;
1648 int shm = (t1 == VT_LLONG) ? 63 : 31;
1650 if (t1 != VT_LLONG)
1651 l1 = ((uint32_t)l1 |
1652 (v1->type.t & VT_UNSIGNED ? 0 : -(l1 & 0x80000000)));
1653 if (t2 != VT_LLONG)
1654 l2 = ((uint32_t)l2 |
1655 (v2->type.t & VT_UNSIGNED ? 0 : -(l2 & 0x80000000)));
1657 if (c1 && c2) {
1658 switch(op) {
1659 case '+': l1 += l2; break;
1660 case '-': l1 -= l2; break;
1661 case '&': l1 &= l2; break;
1662 case '^': l1 ^= l2; break;
1663 case '|': l1 |= l2; break;
1664 case '*': l1 *= l2; break;
1666 case TOK_PDIV:
1667 case '/':
1668 case '%':
1669 case TOK_UDIV:
1670 case TOK_UMOD:
1671 /* if division by zero, generate explicit division */
1672 if (l2 == 0) {
1673 if (const_wanted)
1674 tcc_error("division by zero in constant");
1675 goto general_case;
1677 switch(op) {
1678 default: l1 = gen_opic_sdiv(l1, l2); break;
1679 case '%': l1 = l1 - l2 * gen_opic_sdiv(l1, l2); break;
1680 case TOK_UDIV: l1 = l1 / l2; break;
1681 case TOK_UMOD: l1 = l1 % l2; break;
1683 break;
1684 case TOK_SHL: l1 <<= (l2 & shm); break;
1685 case TOK_SHR: l1 >>= (l2 & shm); break;
1686 case TOK_SAR:
1687 l1 = (l1 >> 63) ? ~(~l1 >> (l2 & shm)) : l1 >> (l2 & shm);
1688 break;
1689 /* tests */
1690 case TOK_ULT: l1 = l1 < l2; break;
1691 case TOK_UGE: l1 = l1 >= l2; break;
1692 case TOK_EQ: l1 = l1 == l2; break;
1693 case TOK_NE: l1 = l1 != l2; break;
1694 case TOK_ULE: l1 = l1 <= l2; break;
1695 case TOK_UGT: l1 = l1 > l2; break;
1696 case TOK_LT: l1 = gen_opic_lt(l1, l2); break;
1697 case TOK_GE: l1 = !gen_opic_lt(l1, l2); break;
1698 case TOK_LE: l1 = !gen_opic_lt(l2, l1); break;
1699 case TOK_GT: l1 = gen_opic_lt(l2, l1); break;
1700 /* logical */
1701 case TOK_LAND: l1 = l1 && l2; break;
1702 case TOK_LOR: l1 = l1 || l2; break;
1703 default:
1704 goto general_case;
1706 v1->c.i = l1;
1707 vtop--;
1708 } else {
1709 /* if commutative ops, put c2 as constant */
1710 if (c1 && (op == '+' || op == '&' || op == '^' ||
1711 op == '|' || op == '*')) {
1712 vswap();
1713 c2 = c1; //c = c1, c1 = c2, c2 = c;
1714 l2 = l1; //l = l1, l1 = l2, l2 = l;
1716 if (!const_wanted &&
1717 c1 && ((l1 == 0 &&
1718 (op == TOK_SHL || op == TOK_SHR || op == TOK_SAR)) ||
1719 (l1 == -1 && op == TOK_SAR))) {
1720 /* treat (0 << x), (0 >> x) and (-1 >> x) as constant */
1721 vtop--;
1722 } else if (!const_wanted &&
1723 c2 && ((l2 == 0 && (op == '&' || op == '*')) ||
1724 (l2 == -1 && op == '|') ||
1725 (l2 == 0xffffffff && t2 != VT_LLONG && op == '|') ||
1726 (l2 == 1 && (op == '%' || op == TOK_UMOD)))) {
1727 /* treat (x & 0), (x * 0), (x | -1) and (x % 1) as constant */
1728 if (l2 == 1)
1729 vtop->c.i = 0;
1730 vswap();
1731 vtop--;
1732 } else if (c2 && (((op == '*' || op == '/' || op == TOK_UDIV ||
1733 op == TOK_PDIV) &&
1734 l2 == 1) ||
1735 ((op == '+' || op == '-' || op == '|' || op == '^' ||
1736 op == TOK_SHL || op == TOK_SHR || op == TOK_SAR) &&
1737 l2 == 0) ||
1738 (op == '&' &&
1739 l2 == -1))) {
1740 /* filter out NOP operations like x*1, x-0, x&-1... */
1741 vtop--;
1742 } else if (c2 && (op == '*' || op == TOK_PDIV || op == TOK_UDIV)) {
1743 /* try to use shifts instead of muls or divs */
1744 if (l2 > 0 && (l2 & (l2 - 1)) == 0) {
1745 int n = -1;
1746 while (l2) {
1747 l2 >>= 1;
1748 n++;
1750 vtop->c.i = n;
1751 if (op == '*')
1752 op = TOK_SHL;
1753 else if (op == TOK_PDIV)
1754 op = TOK_SAR;
1755 else
1756 op = TOK_SHR;
1758 goto general_case;
1759 } else if (c2 && (op == '+' || op == '-') &&
1760 (((vtop[-1].r & (VT_VALMASK | VT_LVAL | VT_SYM)) == (VT_CONST | VT_SYM))
1761 || (vtop[-1].r & (VT_VALMASK | VT_LVAL)) == VT_LOCAL)) {
1762 /* symbol + constant case */
1763 if (op == '-')
1764 l2 = -l2;
1765 vtop--;
1766 vtop->c.i += l2;
1767 } else {
1768 general_case:
1769 if (!nocode_wanted) {
1770 /* call low level op generator */
1771 if (t1 == VT_LLONG || t2 == VT_LLONG ||
1772 (PTR_SIZE == 8 && (t1 == VT_PTR || t2 == VT_PTR)))
1773 gen_opl(op);
1774 else
1775 gen_opi(op);
1776 } else {
1777 vtop--;
1783 /* generate a floating point operation with constant propagation */
1784 static void gen_opif(int op)
1786 int c1, c2;
1787 SValue *v1, *v2;
1788 long double f1, f2;
1790 v1 = vtop - 1;
1791 v2 = vtop;
1792 /* currently, we cannot do computations with forward symbols */
1793 c1 = (v1->r & (VT_VALMASK | VT_LVAL | VT_SYM)) == VT_CONST;
1794 c2 = (v2->r & (VT_VALMASK | VT_LVAL | VT_SYM)) == VT_CONST;
1795 if (c1 && c2) {
1796 if (v1->type.t == VT_FLOAT) {
1797 f1 = v1->c.f;
1798 f2 = v2->c.f;
1799 } else if (v1->type.t == VT_DOUBLE) {
1800 f1 = v1->c.d;
1801 f2 = v2->c.d;
1802 } else {
1803 f1 = v1->c.ld;
1804 f2 = v2->c.ld;
1807 /* NOTE: we only do constant propagation if finite number (not
1808 NaN or infinity) (ANSI spec) */
1809 if (!ieee_finite(f1) || !ieee_finite(f2))
1810 goto general_case;
1812 switch(op) {
1813 case '+': f1 += f2; break;
1814 case '-': f1 -= f2; break;
1815 case '*': f1 *= f2; break;
1816 case '/':
1817 if (f2 == 0.0) {
1818 if (const_wanted)
1819 tcc_error("division by zero in constant");
1820 goto general_case;
1822 f1 /= f2;
1823 break;
1824 /* XXX: also handles tests ? */
1825 default:
1826 goto general_case;
1828 /* XXX: overflow test ? */
1829 if (v1->type.t == VT_FLOAT) {
1830 v1->c.f = f1;
1831 } else if (v1->type.t == VT_DOUBLE) {
1832 v1->c.d = f1;
1833 } else {
1834 v1->c.ld = f1;
1836 vtop--;
1837 } else {
1838 general_case:
1839 if (!nocode_wanted) {
1840 gen_opf(op);
1841 } else {
1842 vtop--;
1847 static int pointed_size(CType *type)
1849 int align;
1850 return type_size(pointed_type(type), &align);
1853 static void vla_runtime_pointed_size(CType *type)
1855 int align;
1856 vla_runtime_type_size(pointed_type(type), &align);
1859 static inline int is_null_pointer(SValue *p)
1861 if ((p->r & (VT_VALMASK | VT_LVAL | VT_SYM)) != VT_CONST)
1862 return 0;
1863 return ((p->type.t & VT_BTYPE) == VT_INT && (uint32_t)p->c.i == 0) ||
1864 ((p->type.t & VT_BTYPE) == VT_LLONG && p->c.i == 0) ||
1865 ((p->type.t & VT_BTYPE) == VT_PTR &&
1866 (PTR_SIZE == 4 ? (uint32_t)p->c.i == 0 : p->c.i == 0));
1869 static inline int is_integer_btype(int bt)
1871 return (bt == VT_BYTE || bt == VT_SHORT ||
1872 bt == VT_INT || bt == VT_LLONG);
1875 /* check types for comparison or subtraction of pointers */
1876 static void check_comparison_pointer_types(SValue *p1, SValue *p2, int op)
1878 CType *type1, *type2, tmp_type1, tmp_type2;
1879 int bt1, bt2;
1881 /* null pointers are accepted for all comparisons as gcc */
1882 if (is_null_pointer(p1) || is_null_pointer(p2))
1883 return;
1884 type1 = &p1->type;
1885 type2 = &p2->type;
1886 bt1 = type1->t & VT_BTYPE;
1887 bt2 = type2->t & VT_BTYPE;
1888 /* accept comparison between pointer and integer with a warning */
1889 if ((is_integer_btype(bt1) || is_integer_btype(bt2)) && op != '-') {
1890 if (op != TOK_LOR && op != TOK_LAND )
1891 tcc_warning("comparison between pointer and integer");
1892 return;
1895 /* both must be pointers or implicit function pointers */
1896 if (bt1 == VT_PTR) {
1897 type1 = pointed_type(type1);
1898 } else if (bt1 != VT_FUNC)
1899 goto invalid_operands;
1901 if (bt2 == VT_PTR) {
1902 type2 = pointed_type(type2);
1903 } else if (bt2 != VT_FUNC) {
1904 invalid_operands:
1905 tcc_error("invalid operands to binary %s", get_tok_str(op, NULL));
1907 if ((type1->t & VT_BTYPE) == VT_VOID ||
1908 (type2->t & VT_BTYPE) == VT_VOID)
1909 return;
1910 tmp_type1 = *type1;
1911 tmp_type2 = *type2;
1912 tmp_type1.t &= ~(VT_DEFSIGN | VT_UNSIGNED | VT_CONSTANT | VT_VOLATILE);
1913 tmp_type2.t &= ~(VT_DEFSIGN | VT_UNSIGNED | VT_CONSTANT | VT_VOLATILE);
1914 if (!is_compatible_types(&tmp_type1, &tmp_type2)) {
1915 /* gcc-like error if '-' is used */
1916 if (op == '-')
1917 goto invalid_operands;
1918 else
1919 tcc_warning("comparison of distinct pointer types lacks a cast");
1923 /* generic gen_op: handles types problems */
1924 ST_FUNC void gen_op(int op)
1926 int u, t1, t2, bt1, bt2, t;
1927 CType type1;
1929 t1 = vtop[-1].type.t;
1930 t2 = vtop[0].type.t;
1931 bt1 = t1 & VT_BTYPE;
1932 bt2 = t2 & VT_BTYPE;
1934 if (bt1 == VT_STRUCT || bt2 == VT_STRUCT) {
1935 tcc_error("operation on a struct");
1936 } else if (bt1 == VT_PTR || bt2 == VT_PTR) {
1937 /* at least one operand is a pointer */
1938 /* relationnal op: must be both pointers */
1939 if (op >= TOK_ULT && op <= TOK_LOR) {
1940 check_comparison_pointer_types(vtop - 1, vtop, op);
1941 /* pointers are handled are unsigned */
1942 #if defined(TCC_TARGET_ARM64) || defined(TCC_TARGET_X86_64)
1943 t = VT_LLONG | VT_UNSIGNED;
1944 #else
1945 t = VT_INT | VT_UNSIGNED;
1946 #endif
1947 goto std_op;
1949 /* if both pointers, then it must be the '-' op */
1950 if (bt1 == VT_PTR && bt2 == VT_PTR) {
1951 if (op != '-')
1952 tcc_error("cannot use pointers here");
1953 check_comparison_pointer_types(vtop - 1, vtop, op);
1954 /* XXX: check that types are compatible */
1955 if (vtop[-1].type.t & VT_VLA) {
1956 vla_runtime_pointed_size(&vtop[-1].type);
1957 } else {
1958 vpushi(pointed_size(&vtop[-1].type));
1960 vrott(3);
1961 gen_opic(op);
1962 /* set to integer type */
1963 #if defined(TCC_TARGET_ARM64) || defined(TCC_TARGET_X86_64)
1964 vtop->type.t = VT_LLONG;
1965 #else
1966 vtop->type.t = VT_INT;
1967 #endif
1968 vswap();
1969 gen_op(TOK_PDIV);
1970 } else {
1971 /* exactly one pointer : must be '+' or '-'. */
1972 if (op != '-' && op != '+')
1973 tcc_error("cannot use pointers here");
1974 /* Put pointer as first operand */
1975 if (bt2 == VT_PTR) {
1976 vswap();
1977 swap(&t1, &t2);
1979 #if PTR_SIZE == 4
1980 if ((vtop[0].type.t & VT_BTYPE) == VT_LLONG)
1981 /* XXX: truncate here because gen_opl can't handle ptr + long long */
1982 gen_cast(&int_type);
1983 #endif
1984 type1 = vtop[-1].type;
1985 type1.t &= ~VT_ARRAY;
1986 if (vtop[-1].type.t & VT_VLA)
1987 vla_runtime_pointed_size(&vtop[-1].type);
1988 else {
1989 u = pointed_size(&vtop[-1].type);
1990 if (u < 0)
1991 tcc_error("unknown array element size");
1992 #if defined(TCC_TARGET_ARM64) || defined(TCC_TARGET_X86_64)
1993 vpushll(u);
1994 #else
1995 /* XXX: cast to int ? (long long case) */
1996 vpushi(u);
1997 #endif
1999 gen_op('*');
2000 #if 0
2001 /* #ifdef CONFIG_TCC_BCHECK
2002 The main reason to removing this code:
2003 #include <stdio.h>
2004 int main ()
2006 int v[10];
2007 int i = 10;
2008 int j = 9;
2009 fprintf(stderr, "v+i-j = %p\n", v+i-j);
2010 fprintf(stderr, "v+(i-j) = %p\n", v+(i-j));
2012 When this code is on. then the output looks like
2013 v+i-j = 0xfffffffe
2014 v+(i-j) = 0xbff84000
2016 /* if evaluating constant expression, no code should be
2017 generated, so no bound check */
2018 if (tcc_state->do_bounds_check && !const_wanted) {
2019 /* if bounded pointers, we generate a special code to
2020 test bounds */
2021 if (op == '-') {
2022 vpushi(0);
2023 vswap();
2024 gen_op('-');
2026 gen_bounded_ptr_add();
2027 } else
2028 #endif
2030 gen_opic(op);
2032 /* put again type if gen_opic() swaped operands */
2033 vtop->type = type1;
2035 } else if (is_float(bt1) || is_float(bt2)) {
2036 /* compute bigger type and do implicit casts */
2037 if (bt1 == VT_LDOUBLE || bt2 == VT_LDOUBLE) {
2038 t = VT_LDOUBLE;
2039 } else if (bt1 == VT_DOUBLE || bt2 == VT_DOUBLE) {
2040 t = VT_DOUBLE;
2041 } else {
2042 t = VT_FLOAT;
2044 /* floats can only be used for a few operations */
2045 if (op != '+' && op != '-' && op != '*' && op != '/' &&
2046 (op < TOK_ULT || op > TOK_GT))
2047 tcc_error("invalid operands for binary operation");
2048 goto std_op;
2049 } else if (op == TOK_SHR || op == TOK_SAR || op == TOK_SHL) {
2050 t = bt1 == VT_LLONG ? VT_LLONG : VT_INT;
2051 if ((t1 & (VT_BTYPE | VT_UNSIGNED)) == (t | VT_UNSIGNED))
2052 t |= VT_UNSIGNED;
2053 goto std_op;
2054 } else if (bt1 == VT_LLONG || bt2 == VT_LLONG) {
2055 /* cast to biggest op */
2056 t = VT_LLONG;
2057 /* convert to unsigned if it does not fit in a long long */
2058 if ((t1 & (VT_BTYPE | VT_UNSIGNED)) == (VT_LLONG | VT_UNSIGNED) ||
2059 (t2 & (VT_BTYPE | VT_UNSIGNED)) == (VT_LLONG | VT_UNSIGNED))
2060 t |= VT_UNSIGNED;
2061 goto std_op;
2062 } else {
2063 /* integer operations */
2064 t = VT_INT;
2065 /* convert to unsigned if it does not fit in an integer */
2066 if ((t1 & (VT_BTYPE | VT_UNSIGNED)) == (VT_INT | VT_UNSIGNED) ||
2067 (t2 & (VT_BTYPE | VT_UNSIGNED)) == (VT_INT | VT_UNSIGNED))
2068 t |= VT_UNSIGNED;
2069 std_op:
2070 /* XXX: currently, some unsigned operations are explicit, so
2071 we modify them here */
2072 if (t & VT_UNSIGNED) {
2073 if (op == TOK_SAR)
2074 op = TOK_SHR;
2075 else if (op == '/')
2076 op = TOK_UDIV;
2077 else if (op == '%')
2078 op = TOK_UMOD;
2079 else if (op == TOK_LT)
2080 op = TOK_ULT;
2081 else if (op == TOK_GT)
2082 op = TOK_UGT;
2083 else if (op == TOK_LE)
2084 op = TOK_ULE;
2085 else if (op == TOK_GE)
2086 op = TOK_UGE;
2088 vswap();
2089 type1.t = t;
2090 gen_cast(&type1);
2091 vswap();
2092 /* special case for shifts and long long: we keep the shift as
2093 an integer */
2094 if (op == TOK_SHR || op == TOK_SAR || op == TOK_SHL)
2095 type1.t = VT_INT;
2096 gen_cast(&type1);
2097 if (is_float(t))
2098 gen_opif(op);
2099 else
2100 gen_opic(op);
2101 if (op >= TOK_ULT && op <= TOK_GT) {
2102 /* relationnal op: the result is an int */
2103 vtop->type.t = VT_INT;
2104 } else {
2105 vtop->type.t = t;
2108 // Make sure that we have converted to an rvalue:
2109 if (vtop->r & VT_LVAL && !nocode_wanted)
2110 gv(is_float(vtop->type.t & VT_BTYPE) ? RC_FLOAT : RC_INT);
2113 #ifndef TCC_TARGET_ARM
2114 /* generic itof for unsigned long long case */
2115 static void gen_cvt_itof1(int t)
2117 #ifdef TCC_TARGET_ARM64
2118 gen_cvt_itof(t);
2119 #else
2120 if ((vtop->type.t & (VT_BTYPE | VT_UNSIGNED)) ==
2121 (VT_LLONG | VT_UNSIGNED)) {
2123 if (t == VT_FLOAT)
2124 vpush_global_sym(&func_old_type, TOK___floatundisf);
2125 #if LDOUBLE_SIZE != 8
2126 else if (t == VT_LDOUBLE)
2127 vpush_global_sym(&func_old_type, TOK___floatundixf);
2128 #endif
2129 else
2130 vpush_global_sym(&func_old_type, TOK___floatundidf);
2131 vrott(2);
2132 gfunc_call(1);
2133 vpushi(0);
2134 vtop->r = reg_fret(t);
2135 } else {
2136 gen_cvt_itof(t);
2138 #endif
2140 #endif
2142 /* generic ftoi for unsigned long long case */
2143 static void gen_cvt_ftoi1(int t)
2145 #ifdef TCC_TARGET_ARM64
2146 gen_cvt_ftoi(t);
2147 #else
2148 int st;
2150 if (t == (VT_LLONG | VT_UNSIGNED)) {
2151 /* not handled natively */
2152 st = vtop->type.t & VT_BTYPE;
2153 if (st == VT_FLOAT)
2154 vpush_global_sym(&func_old_type, TOK___fixunssfdi);
2155 #if LDOUBLE_SIZE != 8
2156 else if (st == VT_LDOUBLE)
2157 vpush_global_sym(&func_old_type, TOK___fixunsxfdi);
2158 #endif
2159 else
2160 vpush_global_sym(&func_old_type, TOK___fixunsdfdi);
2161 vrott(2);
2162 gfunc_call(1);
2163 vpushi(0);
2164 vtop->r = REG_IRET;
2165 vtop->r2 = REG_LRET;
2166 } else {
2167 gen_cvt_ftoi(t);
2169 #endif
2172 /* force char or short cast */
2173 static void force_charshort_cast(int t)
2175 int bits, dbt;
2176 dbt = t & VT_BTYPE;
2177 /* XXX: add optimization if lvalue : just change type and offset */
2178 if (dbt == VT_BYTE)
2179 bits = 8;
2180 else
2181 bits = 16;
2182 if (t & VT_UNSIGNED) {
2183 vpushi((1 << bits) - 1);
2184 gen_op('&');
2185 } else {
2186 if ((vtop->type.t & VT_BTYPE) == VT_LLONG)
2187 bits = 64 - bits;
2188 else
2189 bits = 32 - bits;
2190 vpushi(bits);
2191 gen_op(TOK_SHL);
2192 /* result must be signed or the SAR is converted to an SHL
2193 This was not the case when "t" was a signed short
2194 and the last value on the stack was an unsigned int */
2195 vtop->type.t &= ~VT_UNSIGNED;
2196 vpushi(bits);
2197 gen_op(TOK_SAR);
2201 /* cast 'vtop' to 'type'. Casting to bitfields is forbidden. */
2202 static void gen_cast(CType *type)
2204 int sbt, dbt, sf, df, c, p;
2206 /* special delayed cast for char/short */
2207 /* XXX: in some cases (multiple cascaded casts), it may still
2208 be incorrect */
2209 if (vtop->r & VT_MUSTCAST) {
2210 vtop->r &= ~VT_MUSTCAST;
2211 force_charshort_cast(vtop->type.t);
2214 /* bitfields first get cast to ints */
2215 if (vtop->type.t & VT_BITFIELD && !nocode_wanted) {
2216 gv(RC_INT);
2219 dbt = type->t & (VT_BTYPE | VT_UNSIGNED);
2220 sbt = vtop->type.t & (VT_BTYPE | VT_UNSIGNED);
2222 if (sbt != dbt) {
2223 sf = is_float(sbt);
2224 df = is_float(dbt);
2225 c = (vtop->r & (VT_VALMASK | VT_LVAL | VT_SYM)) == VT_CONST;
2226 p = (vtop->r & (VT_VALMASK | VT_LVAL | VT_SYM)) == (VT_CONST | VT_SYM);
2227 if (c) {
2228 /* constant case: we can do it now */
2229 /* XXX: in ISOC, cannot do it if error in convert */
2230 if (sbt == VT_FLOAT)
2231 vtop->c.ld = vtop->c.f;
2232 else if (sbt == VT_DOUBLE)
2233 vtop->c.ld = vtop->c.d;
2235 if (df) {
2236 if ((sbt & VT_BTYPE) == VT_LLONG) {
2237 if ((sbt & VT_UNSIGNED) || !(vtop->c.i >> 63))
2238 vtop->c.ld = vtop->c.i;
2239 else
2240 vtop->c.ld = -(long double)-vtop->c.i;
2241 } else if(!sf) {
2242 if ((sbt & VT_UNSIGNED) || !(vtop->c.i >> 31))
2243 vtop->c.ld = (uint32_t)vtop->c.i;
2244 else
2245 vtop->c.ld = -(long double)-(uint32_t)vtop->c.i;
2248 if (dbt == VT_FLOAT)
2249 vtop->c.f = (float)vtop->c.ld;
2250 else if (dbt == VT_DOUBLE)
2251 vtop->c.d = (double)vtop->c.ld;
2252 } else if (sf && dbt == (VT_LLONG|VT_UNSIGNED)) {
2253 vtop->c.i = vtop->c.ld;
2254 } else if (sf && dbt == VT_BOOL) {
2255 vtop->c.i = (vtop->c.ld != 0);
2256 } else {
2257 if(sf)
2258 vtop->c.i = vtop->c.ld;
2259 else if (sbt == (VT_LLONG|VT_UNSIGNED))
2261 else if (sbt & VT_UNSIGNED)
2262 vtop->c.i = (uint32_t)vtop->c.i;
2263 #if defined(TCC_TARGET_ARM64) || defined(TCC_TARGET_X86_64)
2264 else if (sbt == VT_PTR)
2266 #endif
2267 else if (sbt != VT_LLONG)
2268 vtop->c.i = ((uint32_t)vtop->c.i |
2269 -(vtop->c.i & 0x80000000));
2271 if (dbt == (VT_LLONG|VT_UNSIGNED))
2273 else if (dbt == VT_BOOL)
2274 vtop->c.i = (vtop->c.i != 0);
2275 #if defined(TCC_TARGET_ARM64) || defined(TCC_TARGET_X86_64)
2276 else if (dbt == VT_PTR)
2278 #endif
2279 else if (dbt != VT_LLONG) {
2280 uint32_t m = ((dbt & VT_BTYPE) == VT_BYTE ? 0xff :
2281 (dbt & VT_BTYPE) == VT_SHORT ? 0xffff :
2282 0xffffffff);
2283 vtop->c.i &= m;
2284 if (!(dbt & VT_UNSIGNED))
2285 vtop->c.i |= -(vtop->c.i & ((m >> 1) + 1));
2288 } else if (p && dbt == VT_BOOL) {
2289 vtop->r = VT_CONST;
2290 vtop->c.i = 1;
2291 } else if (!nocode_wanted) {
2292 /* non constant case: generate code */
2293 if (sf && df) {
2294 /* convert from fp to fp */
2295 gen_cvt_ftof(dbt);
2296 } else if (df) {
2297 /* convert int to fp */
2298 gen_cvt_itof1(dbt);
2299 } else if (sf) {
2300 /* convert fp to int */
2301 if (dbt == VT_BOOL) {
2302 vpushi(0);
2303 gen_op(TOK_NE);
2304 } else {
2305 /* we handle char/short/etc... with generic code */
2306 if (dbt != (VT_INT | VT_UNSIGNED) &&
2307 dbt != (VT_LLONG | VT_UNSIGNED) &&
2308 dbt != VT_LLONG)
2309 dbt = VT_INT;
2310 gen_cvt_ftoi1(dbt);
2311 if (dbt == VT_INT && (type->t & (VT_BTYPE | VT_UNSIGNED)) != dbt) {
2312 /* additional cast for char/short... */
2313 vtop->type.t = dbt;
2314 gen_cast(type);
2317 #if !defined(TCC_TARGET_ARM64) && !defined(TCC_TARGET_X86_64)
2318 } else if ((dbt & VT_BTYPE) == VT_LLONG) {
2319 if ((sbt & VT_BTYPE) != VT_LLONG) {
2320 /* scalar to long long */
2321 /* machine independent conversion */
2322 gv(RC_INT);
2323 /* generate high word */
2324 if (sbt == (VT_INT | VT_UNSIGNED)) {
2325 vpushi(0);
2326 gv(RC_INT);
2327 } else {
2328 if (sbt == VT_PTR) {
2329 /* cast from pointer to int before we apply
2330 shift operation, which pointers don't support*/
2331 gen_cast(&int_type);
2333 gv_dup();
2334 vpushi(31);
2335 gen_op(TOK_SAR);
2337 /* patch second register */
2338 vtop[-1].r2 = vtop->r;
2339 vpop();
2341 #else
2342 } else if ((dbt & VT_BTYPE) == VT_LLONG ||
2343 (dbt & VT_BTYPE) == VT_PTR ||
2344 (dbt & VT_BTYPE) == VT_FUNC) {
2345 if ((sbt & VT_BTYPE) != VT_LLONG &&
2346 (sbt & VT_BTYPE) != VT_PTR &&
2347 (sbt & VT_BTYPE) != VT_FUNC) {
2348 /* need to convert from 32bit to 64bit */
2349 gv(RC_INT);
2350 if (sbt != (VT_INT | VT_UNSIGNED)) {
2351 #if defined(TCC_TARGET_ARM64)
2352 gen_cvt_sxtw();
2353 #elif defined(TCC_TARGET_X86_64)
2354 int r = gv(RC_INT);
2355 /* x86_64 specific: movslq */
2356 o(0x6348);
2357 o(0xc0 + (REG_VALUE(r) << 3) + REG_VALUE(r));
2358 #else
2359 #error
2360 #endif
2363 #endif
2364 } else if (dbt == VT_BOOL) {
2365 /* scalar to bool */
2366 vpushi(0);
2367 gen_op(TOK_NE);
2368 } else if ((dbt & VT_BTYPE) == VT_BYTE ||
2369 (dbt & VT_BTYPE) == VT_SHORT) {
2370 if (sbt == VT_PTR) {
2371 vtop->type.t = VT_INT;
2372 tcc_warning("nonportable conversion from pointer to char/short");
2374 force_charshort_cast(dbt);
2375 #if !defined(TCC_TARGET_ARM64) && !defined(TCC_TARGET_X86_64)
2376 } else if ((dbt & VT_BTYPE) == VT_INT) {
2377 /* scalar to int */
2378 if ((sbt & VT_BTYPE) == VT_LLONG) {
2379 /* from long long: just take low order word */
2380 lexpand();
2381 vpop();
2383 /* if lvalue and single word type, nothing to do because
2384 the lvalue already contains the real type size (see
2385 VT_LVAL_xxx constants) */
2386 #endif
2389 } else if ((dbt & VT_BTYPE) == VT_PTR && !(vtop->r & VT_LVAL)) {
2390 /* if we are casting between pointer types,
2391 we must update the VT_LVAL_xxx size */
2392 vtop->r = (vtop->r & ~VT_LVAL_TYPE)
2393 | (lvalue_type(type->ref->type.t) & VT_LVAL_TYPE);
2395 vtop->type = *type;
2398 /* return type size as known at compile time. Put alignment at 'a' */
2399 ST_FUNC int type_size(CType *type, int *a)
2401 Sym *s;
2402 int bt;
2404 bt = type->t & VT_BTYPE;
2405 if (bt == VT_STRUCT) {
2406 /* struct/union */
2407 s = type->ref;
2408 *a = s->r;
2409 return s->c;
2410 } else if (bt == VT_PTR) {
2411 if (type->t & VT_ARRAY) {
2412 int ts;
2414 s = type->ref;
2415 ts = type_size(&s->type, a);
2417 if (ts < 0 && s->c < 0)
2418 ts = -ts;
2420 return ts * s->c;
2421 } else {
2422 *a = PTR_SIZE;
2423 return PTR_SIZE;
2425 } else if (bt == VT_LDOUBLE) {
2426 *a = LDOUBLE_ALIGN;
2427 return LDOUBLE_SIZE;
2428 } else if (bt == VT_DOUBLE || bt == VT_LLONG) {
2429 #ifdef TCC_TARGET_I386
2430 #ifdef TCC_TARGET_PE
2431 *a = 8;
2432 #else
2433 *a = 4;
2434 #endif
2435 #elif defined(TCC_TARGET_ARM)
2436 #ifdef TCC_ARM_EABI
2437 *a = 8;
2438 #else
2439 *a = 4;
2440 #endif
2441 #else
2442 *a = 8;
2443 #endif
2444 return 8;
2445 } else if (bt == VT_INT || bt == VT_FLOAT) {
2446 *a = 4;
2447 return 4;
2448 } else if (bt == VT_SHORT) {
2449 *a = 2;
2450 return 2;
2451 } else if (bt == VT_QLONG || bt == VT_QFLOAT) {
2452 *a = 8;
2453 return 16;
2454 } else if (bt == VT_ENUM) {
2455 *a = 4;
2456 /* Enums might be incomplete, so don't just return '4' here. */
2457 return type->ref->c;
2458 } else {
2459 /* char, void, function, _Bool */
2460 *a = 1;
2461 return 1;
2465 /* push type size as known at runtime time on top of value stack. Put
2466 alignment at 'a' */
2467 ST_FUNC void vla_runtime_type_size(CType *type, int *a)
2469 if (type->t & VT_VLA) {
2470 type_size(&type->ref->type, a);
2471 vset(&int_type, VT_LOCAL|VT_LVAL, type->ref->c);
2472 } else {
2473 vpushi(type_size(type, a));
2477 static void vla_sp_restore(void) {
2478 if (vlas_in_scope) {
2479 gen_vla_sp_restore(vla_sp_loc);
2483 static void vla_sp_restore_root(void) {
2484 if (vlas_in_scope) {
2485 gen_vla_sp_restore(vla_sp_root_loc);
2489 /* return the pointed type of t */
2490 static inline CType *pointed_type(CType *type)
2492 return &type->ref->type;
2495 /* modify type so that its it is a pointer to type. */
2496 ST_FUNC void mk_pointer(CType *type)
2498 Sym *s;
2499 s = sym_push(SYM_FIELD, type, 0, -1);
2500 type->t = VT_PTR | (type->t & ~VT_TYPE);
2501 type->ref = s;
2504 /* compare function types. OLD functions match any new functions */
2505 static int is_compatible_func(CType *type1, CType *type2)
2507 Sym *s1, *s2;
2509 s1 = type1->ref;
2510 s2 = type2->ref;
2511 if (!is_compatible_types(&s1->type, &s2->type))
2512 return 0;
2513 /* check func_call */
2514 if (s1->a.func_call != s2->a.func_call)
2515 return 0;
2516 /* XXX: not complete */
2517 if (s1->c == FUNC_OLD || s2->c == FUNC_OLD)
2518 return 1;
2519 if (s1->c != s2->c)
2520 return 0;
2521 while (s1 != NULL) {
2522 if (s2 == NULL)
2523 return 0;
2524 if (!is_compatible_parameter_types(&s1->type, &s2->type))
2525 return 0;
2526 s1 = s1->next;
2527 s2 = s2->next;
2529 if (s2)
2530 return 0;
2531 return 1;
2534 /* return true if type1 and type2 are the same. If unqualified is
2535 true, qualifiers on the types are ignored.
2537 - enums are not checked as gcc __builtin_types_compatible_p ()
2539 static int compare_types(CType *type1, CType *type2, int unqualified)
2541 int bt1, t1, t2;
2543 t1 = type1->t & VT_TYPE;
2544 t2 = type2->t & VT_TYPE;
2545 if (unqualified) {
2546 /* strip qualifiers before comparing */
2547 t1 &= ~(VT_CONSTANT | VT_VOLATILE);
2548 t2 &= ~(VT_CONSTANT | VT_VOLATILE);
2550 /* Default Vs explicit signedness only matters for char */
2551 if ((t1 & VT_BTYPE) != VT_BYTE) {
2552 t1 &= ~VT_DEFSIGN;
2553 t2 &= ~VT_DEFSIGN;
2555 /* XXX: bitfields ? */
2556 if (t1 != t2)
2557 return 0;
2558 /* test more complicated cases */
2559 bt1 = t1 & VT_BTYPE;
2560 if (bt1 == VT_PTR) {
2561 type1 = pointed_type(type1);
2562 type2 = pointed_type(type2);
2563 return is_compatible_types(type1, type2);
2564 } else if (bt1 == VT_STRUCT) {
2565 return (type1->ref == type2->ref);
2566 } else if (bt1 == VT_FUNC) {
2567 return is_compatible_func(type1, type2);
2568 } else {
2569 return 1;
2573 /* return true if type1 and type2 are exactly the same (including
2574 qualifiers).
2576 static int is_compatible_types(CType *type1, CType *type2)
2578 return compare_types(type1,type2,0);
2581 /* return true if type1 and type2 are the same (ignoring qualifiers).
2583 static int is_compatible_parameter_types(CType *type1, CType *type2)
2585 return compare_types(type1,type2,1);
2588 /* print a type. If 'varstr' is not NULL, then the variable is also
2589 printed in the type */
2590 /* XXX: union */
2591 /* XXX: add array and function pointers */
2592 static void type_to_str(char *buf, int buf_size,
2593 CType *type, const char *varstr)
2595 int bt, v, t;
2596 Sym *s, *sa;
2597 char buf1[256];
2598 const char *tstr;
2600 t = type->t & VT_TYPE;
2601 bt = t & VT_BTYPE;
2602 buf[0] = '\0';
2603 if (t & VT_CONSTANT)
2604 pstrcat(buf, buf_size, "const ");
2605 if (t & VT_VOLATILE)
2606 pstrcat(buf, buf_size, "volatile ");
2607 if ((t & (VT_DEFSIGN | VT_UNSIGNED)) == (VT_DEFSIGN | VT_UNSIGNED))
2608 pstrcat(buf, buf_size, "unsigned ");
2609 else if (t & VT_DEFSIGN)
2610 pstrcat(buf, buf_size, "signed ");
2611 switch(bt) {
2612 case VT_VOID:
2613 tstr = "void";
2614 goto add_tstr;
2615 case VT_BOOL:
2616 tstr = "_Bool";
2617 goto add_tstr;
2618 case VT_BYTE:
2619 tstr = "char";
2620 goto add_tstr;
2621 case VT_SHORT:
2622 tstr = "short";
2623 goto add_tstr;
2624 case VT_INT:
2625 tstr = "int";
2626 goto add_tstr;
2627 case VT_LONG:
2628 tstr = "long";
2629 goto add_tstr;
2630 case VT_LLONG:
2631 tstr = "long long";
2632 goto add_tstr;
2633 case VT_FLOAT:
2634 tstr = "float";
2635 goto add_tstr;
2636 case VT_DOUBLE:
2637 tstr = "double";
2638 goto add_tstr;
2639 case VT_LDOUBLE:
2640 tstr = "long double";
2641 add_tstr:
2642 pstrcat(buf, buf_size, tstr);
2643 break;
2644 case VT_ENUM:
2645 case VT_STRUCT:
2646 if (bt == VT_STRUCT)
2647 tstr = "struct ";
2648 else
2649 tstr = "enum ";
2650 pstrcat(buf, buf_size, tstr);
2651 v = type->ref->v & ~SYM_STRUCT;
2652 if (v >= SYM_FIRST_ANOM)
2653 pstrcat(buf, buf_size, "<anonymous>");
2654 else
2655 pstrcat(buf, buf_size, get_tok_str(v, NULL));
2656 break;
2657 case VT_FUNC:
2658 s = type->ref;
2659 type_to_str(buf, buf_size, &s->type, varstr);
2660 pstrcat(buf, buf_size, "(");
2661 sa = s->next;
2662 while (sa != NULL) {
2663 type_to_str(buf1, sizeof(buf1), &sa->type, NULL);
2664 pstrcat(buf, buf_size, buf1);
2665 sa = sa->next;
2666 if (sa)
2667 pstrcat(buf, buf_size, ", ");
2669 pstrcat(buf, buf_size, ")");
2670 goto no_var;
2671 case VT_PTR:
2672 s = type->ref;
2673 if (t & VT_ARRAY) {
2674 snprintf(buf1, sizeof(buf1), "%s[%ld]", varstr ? varstr : "", s->c);
2675 type_to_str(buf, buf_size, &s->type, buf1);
2676 goto no_var;
2678 pstrcpy(buf1, sizeof(buf1), "*");
2679 if (t & VT_CONSTANT)
2680 pstrcat(buf1, buf_size, "const ");
2681 if (t & VT_VOLATILE)
2682 pstrcat(buf1, buf_size, "volatile ");
2683 if (varstr)
2684 pstrcat(buf1, sizeof(buf1), varstr);
2685 type_to_str(buf, buf_size, &s->type, buf1);
2686 goto no_var;
2688 if (varstr) {
2689 pstrcat(buf, buf_size, " ");
2690 pstrcat(buf, buf_size, varstr);
2692 no_var: ;
2695 /* verify type compatibility to store vtop in 'dt' type, and generate
2696 casts if needed. */
2697 static void gen_assign_cast(CType *dt)
2699 CType *st, *type1, *type2, tmp_type1, tmp_type2;
2700 char buf1[256], buf2[256];
2701 int dbt, sbt;
2703 st = &vtop->type; /* source type */
2704 dbt = dt->t & VT_BTYPE;
2705 sbt = st->t & VT_BTYPE;
2706 if (sbt == VT_VOID || dbt == VT_VOID) {
2707 if (sbt == VT_VOID && dbt == VT_VOID)
2708 ; /*
2709 It is Ok if both are void
2710 A test program:
2711 void func1() {}
2712 void func2() {
2713 return func1();
2715 gcc accepts this program
2717 else
2718 tcc_error("cannot cast from/to void");
2720 if (dt->t & VT_CONSTANT)
2721 tcc_warning("assignment of read-only location");
2722 switch(dbt) {
2723 case VT_PTR:
2724 /* special cases for pointers */
2725 /* '0' can also be a pointer */
2726 if (is_null_pointer(vtop))
2727 goto type_ok;
2728 /* accept implicit pointer to integer cast with warning */
2729 if (is_integer_btype(sbt)) {
2730 tcc_warning("assignment makes pointer from integer without a cast");
2731 goto type_ok;
2733 type1 = pointed_type(dt);
2734 /* a function is implicitely a function pointer */
2735 if (sbt == VT_FUNC) {
2736 if ((type1->t & VT_BTYPE) != VT_VOID &&
2737 !is_compatible_types(pointed_type(dt), st))
2738 tcc_warning("assignment from incompatible pointer type");
2739 goto type_ok;
2741 if (sbt != VT_PTR)
2742 goto error;
2743 type2 = pointed_type(st);
2744 if ((type1->t & VT_BTYPE) == VT_VOID ||
2745 (type2->t & VT_BTYPE) == VT_VOID) {
2746 /* void * can match anything */
2747 } else {
2748 /* exact type match, except for unsigned */
2749 tmp_type1 = *type1;
2750 tmp_type2 = *type2;
2751 tmp_type1.t &= ~(VT_DEFSIGN | VT_UNSIGNED | VT_CONSTANT |
2752 VT_VOLATILE);
2753 tmp_type2.t &= ~(VT_DEFSIGN | VT_UNSIGNED | VT_CONSTANT |
2754 VT_VOLATILE);
2755 if (!is_compatible_types(&tmp_type1, &tmp_type2))
2756 tcc_warning("assignment from incompatible pointer type");
2758 /* check const and volatile */
2759 if ((!(type1->t & VT_CONSTANT) && (type2->t & VT_CONSTANT)) ||
2760 (!(type1->t & VT_VOLATILE) && (type2->t & VT_VOLATILE)))
2761 tcc_warning("assignment discards qualifiers from pointer target type");
2762 break;
2763 case VT_BYTE:
2764 case VT_SHORT:
2765 case VT_INT:
2766 case VT_LLONG:
2767 if (sbt == VT_PTR || sbt == VT_FUNC) {
2768 tcc_warning("assignment makes integer from pointer without a cast");
2769 } else if (sbt == VT_STRUCT) {
2770 goto case_VT_STRUCT;
2772 /* XXX: more tests */
2773 break;
2774 case VT_STRUCT:
2775 case_VT_STRUCT:
2776 tmp_type1 = *dt;
2777 tmp_type2 = *st;
2778 tmp_type1.t &= ~(VT_CONSTANT | VT_VOLATILE);
2779 tmp_type2.t &= ~(VT_CONSTANT | VT_VOLATILE);
2780 if (!is_compatible_types(&tmp_type1, &tmp_type2)) {
2781 error:
2782 type_to_str(buf1, sizeof(buf1), st, NULL);
2783 type_to_str(buf2, sizeof(buf2), dt, NULL);
2784 tcc_error("cannot cast '%s' to '%s'", buf1, buf2);
2786 break;
2788 type_ok:
2789 gen_cast(dt);
2792 /* store vtop in lvalue pushed on stack */
2793 ST_FUNC void vstore(void)
2795 int sbt, dbt, ft, r, t, size, align, bit_size, bit_pos, rc, delayed_cast;
2797 ft = vtop[-1].type.t;
2798 sbt = vtop->type.t & VT_BTYPE;
2799 dbt = ft & VT_BTYPE;
2800 if ((((sbt == VT_INT || sbt == VT_SHORT) && dbt == VT_BYTE) ||
2801 (sbt == VT_INT && dbt == VT_SHORT))
2802 && !(vtop->type.t & VT_BITFIELD)) {
2803 /* optimize char/short casts */
2804 delayed_cast = VT_MUSTCAST;
2805 vtop->type.t = (ft & VT_TYPE & ~VT_BITFIELD &
2806 ((1 << VT_STRUCT_SHIFT) - 1));
2807 /* XXX: factorize */
2808 if (ft & VT_CONSTANT)
2809 tcc_warning("assignment of read-only location");
2810 } else {
2811 delayed_cast = 0;
2812 if (!(ft & VT_BITFIELD))
2813 gen_assign_cast(&vtop[-1].type);
2816 if (sbt == VT_STRUCT) {
2817 /* if structure, only generate pointer */
2818 /* structure assignment : generate memcpy */
2819 /* XXX: optimize if small size */
2820 if (!nocode_wanted) {
2821 size = type_size(&vtop->type, &align);
2823 /* destination */
2824 vswap();
2825 vtop->type.t = VT_PTR;
2826 gaddrof();
2828 /* address of memcpy() */
2829 #ifdef TCC_ARM_EABI
2830 if(!(align & 7))
2831 vpush_global_sym(&func_old_type, TOK_memcpy8);
2832 else if(!(align & 3))
2833 vpush_global_sym(&func_old_type, TOK_memcpy4);
2834 else
2835 #endif
2836 /* Use memmove, rather than memcpy, as dest and src may be same: */
2837 vpush_global_sym(&func_old_type, TOK_memmove);
2839 vswap();
2840 /* source */
2841 vpushv(vtop - 2);
2842 vtop->type.t = VT_PTR;
2843 gaddrof();
2844 /* type size */
2845 vpushi(size);
2846 gfunc_call(3);
2847 } else {
2848 vswap();
2849 vpop();
2851 /* leave source on stack */
2852 } else if (ft & VT_BITFIELD) {
2853 /* bitfield store handling */
2855 /* save lvalue as expression result (example: s.b = s.a = n;) */
2856 vdup(), vtop[-1] = vtop[-2];
2858 bit_pos = (ft >> VT_STRUCT_SHIFT) & 0x3f;
2859 bit_size = (ft >> (VT_STRUCT_SHIFT + 6)) & 0x3f;
2860 /* remove bit field info to avoid loops */
2861 vtop[-1].type.t = ft & ~VT_BITFIELD & ((1 << VT_STRUCT_SHIFT) - 1);
2863 if((ft & VT_BTYPE) == VT_BOOL) {
2864 gen_cast(&vtop[-1].type);
2865 vtop[-1].type.t = (vtop[-1].type.t & ~VT_BTYPE) | (VT_BYTE | VT_UNSIGNED);
2868 /* duplicate destination */
2869 vdup();
2870 vtop[-1] = vtop[-2];
2872 /* mask and shift source */
2873 if((ft & VT_BTYPE) != VT_BOOL) {
2874 if((ft & VT_BTYPE) == VT_LLONG) {
2875 vpushll((1ULL << bit_size) - 1ULL);
2876 } else {
2877 vpushi((1 << bit_size) - 1);
2879 gen_op('&');
2881 vpushi(bit_pos);
2882 gen_op(TOK_SHL);
2883 /* load destination, mask and or with source */
2884 vswap();
2885 if((ft & VT_BTYPE) == VT_LLONG) {
2886 vpushll(~(((1ULL << bit_size) - 1ULL) << bit_pos));
2887 } else {
2888 vpushi(~(((1 << bit_size) - 1) << bit_pos));
2890 gen_op('&');
2891 gen_op('|');
2892 /* store result */
2893 vstore();
2894 /* ... and discard */
2895 vpop();
2897 } else {
2898 if (!nocode_wanted) {
2899 #ifdef CONFIG_TCC_BCHECK
2900 /* bound check case */
2901 if (vtop[-1].r & VT_MUSTBOUND) {
2902 vswap();
2903 gbound();
2904 vswap();
2906 #endif
2907 rc = RC_INT;
2908 if (is_float(ft)) {
2909 rc = RC_FLOAT;
2910 #ifdef TCC_TARGET_X86_64
2911 if ((ft & VT_BTYPE) == VT_LDOUBLE) {
2912 rc = RC_ST0;
2913 } else if ((ft & VT_BTYPE) == VT_QFLOAT) {
2914 rc = RC_FRET;
2916 #endif
2918 r = gv(rc); /* generate value */
2919 /* if lvalue was saved on stack, must read it */
2920 if ((vtop[-1].r & VT_VALMASK) == VT_LLOCAL) {
2921 SValue sv;
2922 t = get_reg(RC_INT);
2923 #if defined(TCC_TARGET_ARM64) || defined(TCC_TARGET_X86_64)
2924 sv.type.t = VT_PTR;
2925 #else
2926 sv.type.t = VT_INT;
2927 #endif
2928 sv.r = VT_LOCAL | VT_LVAL;
2929 sv.c.i = vtop[-1].c.i;
2930 load(t, &sv);
2931 vtop[-1].r = t | VT_LVAL;
2933 /* two word case handling : store second register at word + 4 (or +8 for x86-64) */
2934 #if defined(TCC_TARGET_ARM64) || defined(TCC_TARGET_X86_64)
2935 if (((ft & VT_BTYPE) == VT_QLONG) || ((ft & VT_BTYPE) == VT_QFLOAT)) {
2936 int addr_type = VT_LLONG, load_size = 8, load_type = ((vtop->type.t & VT_BTYPE) == VT_QLONG) ? VT_LLONG : VT_DOUBLE;
2937 #else
2938 if ((ft & VT_BTYPE) == VT_LLONG) {
2939 int addr_type = VT_INT, load_size = 4, load_type = VT_INT;
2940 #endif
2941 vtop[-1].type.t = load_type;
2942 store(r, vtop - 1);
2943 vswap();
2944 /* convert to int to increment easily */
2945 vtop->type.t = addr_type;
2946 gaddrof();
2947 vpushi(load_size);
2948 gen_op('+');
2949 vtop->r |= VT_LVAL;
2950 vswap();
2951 vtop[-1].type.t = load_type;
2952 /* XXX: it works because r2 is spilled last ! */
2953 store(vtop->r2, vtop - 1);
2954 } else {
2955 store(r, vtop - 1);
2958 vswap();
2959 vtop--; /* NOT vpop() because on x86 it would flush the fp stack */
2960 vtop->r |= delayed_cast;
2964 /* post defines POST/PRE add. c is the token ++ or -- */
2965 ST_FUNC void inc(int post, int c)
2967 test_lvalue();
2968 vdup(); /* save lvalue */
2969 if (post) {
2970 if (!nocode_wanted)
2971 gv_dup(); /* duplicate value */
2972 else
2973 vdup(); /* duplicate value */
2974 vrotb(3);
2975 vrotb(3);
2977 /* add constant */
2978 vpushi(c - TOK_MID);
2979 gen_op('+');
2980 vstore(); /* store value */
2981 if (post)
2982 vpop(); /* if post op, return saved value */
2985 ST_FUNC void parse_mult_str (CString *astr, const char *msg)
2987 /* read the string */
2988 if (tok != TOK_STR)
2989 expect(msg);
2990 cstr_new(astr);
2991 while (tok == TOK_STR) {
2992 /* XXX: add \0 handling too ? */
2993 cstr_cat(astr, tokc.str.data, -1);
2994 next();
2996 cstr_ccat(astr, '\0');
2999 /* Parse GNUC __attribute__ extension. Currently, the following
3000 extensions are recognized:
3001 - aligned(n) : set data/function alignment.
3002 - packed : force data alignment to 1
3003 - section(x) : generate data/code in this section.
3004 - unused : currently ignored, but may be used someday.
3005 - regparm(n) : pass function parameters in registers (i386 only)
3007 static void parse_attribute(AttributeDef *ad)
3009 int t, n;
3010 CString astr;
3012 while (tok == TOK_ATTRIBUTE1 || tok == TOK_ATTRIBUTE2) {
3013 next();
3014 skip('(');
3015 skip('(');
3016 while (tok != ')') {
3017 if (tok < TOK_IDENT)
3018 expect("attribute name");
3019 t = tok;
3020 next();
3021 switch(t) {
3022 case TOK_SECTION1:
3023 case TOK_SECTION2:
3024 skip('(');
3025 parse_mult_str(&astr, "section name");
3026 ad->section = find_section(tcc_state, (char *)astr.data);
3027 skip(')');
3028 cstr_free(&astr);
3029 break;
3030 case TOK_ALIAS1:
3031 case TOK_ALIAS2:
3032 skip('(');
3033 parse_mult_str(&astr, "alias(\"target\")");
3034 ad->alias_target = /* save string as token, for later */
3035 tok_alloc((char*)astr.data, astr.size-1)->tok;
3036 skip(')');
3037 cstr_free(&astr);
3038 break;
3039 case TOK_VISIBILITY1:
3040 case TOK_VISIBILITY2:
3041 skip('(');
3042 parse_mult_str(&astr,
3043 "visibility(\"default|hidden|internal|protected\")");
3044 if (!strcmp (astr.data, "default"))
3045 ad->a.visibility = STV_DEFAULT;
3046 else if (!strcmp (astr.data, "hidden"))
3047 ad->a.visibility = STV_HIDDEN;
3048 else if (!strcmp (astr.data, "internal"))
3049 ad->a.visibility = STV_INTERNAL;
3050 else if (!strcmp (astr.data, "protected"))
3051 ad->a.visibility = STV_PROTECTED;
3052 else
3053 expect("visibility(\"default|hidden|internal|protected\")");
3054 skip(')');
3055 cstr_free(&astr);
3056 break;
3057 case TOK_ALIGNED1:
3058 case TOK_ALIGNED2:
3059 if (tok == '(') {
3060 next();
3061 n = expr_const();
3062 if (n <= 0 || (n & (n - 1)) != 0)
3063 tcc_error("alignment must be a positive power of two");
3064 skip(')');
3065 } else {
3066 n = MAX_ALIGN;
3068 ad->a.aligned = n;
3069 break;
3070 case TOK_PACKED1:
3071 case TOK_PACKED2:
3072 ad->a.packed = 1;
3073 break;
3074 case TOK_WEAK1:
3075 case TOK_WEAK2:
3076 ad->a.weak = 1;
3077 break;
3078 case TOK_UNUSED1:
3079 case TOK_UNUSED2:
3080 /* currently, no need to handle it because tcc does not
3081 track unused objects */
3082 break;
3083 case TOK_NORETURN1:
3084 case TOK_NORETURN2:
3085 /* currently, no need to handle it because tcc does not
3086 track unused objects */
3087 break;
3088 case TOK_CDECL1:
3089 case TOK_CDECL2:
3090 case TOK_CDECL3:
3091 ad->a.func_call = FUNC_CDECL;
3092 break;
3093 case TOK_STDCALL1:
3094 case TOK_STDCALL2:
3095 case TOK_STDCALL3:
3096 ad->a.func_call = FUNC_STDCALL;
3097 break;
3098 #ifdef TCC_TARGET_I386
3099 case TOK_REGPARM1:
3100 case TOK_REGPARM2:
3101 skip('(');
3102 n = expr_const();
3103 if (n > 3)
3104 n = 3;
3105 else if (n < 0)
3106 n = 0;
3107 if (n > 0)
3108 ad->a.func_call = FUNC_FASTCALL1 + n - 1;
3109 skip(')');
3110 break;
3111 case TOK_FASTCALL1:
3112 case TOK_FASTCALL2:
3113 case TOK_FASTCALL3:
3114 ad->a.func_call = FUNC_FASTCALLW;
3115 break;
3116 #endif
3117 case TOK_MODE:
3118 skip('(');
3119 switch(tok) {
3120 case TOK_MODE_DI:
3121 ad->a.mode = VT_LLONG + 1;
3122 break;
3123 case TOK_MODE_QI:
3124 ad->a.mode = VT_BYTE + 1;
3125 break;
3126 case TOK_MODE_HI:
3127 ad->a.mode = VT_SHORT + 1;
3128 break;
3129 case TOK_MODE_SI:
3130 case TOK_MODE_word:
3131 ad->a.mode = VT_INT + 1;
3132 break;
3133 default:
3134 tcc_warning("__mode__(%s) not supported\n", get_tok_str(tok, NULL));
3135 break;
3137 next();
3138 skip(')');
3139 break;
3140 case TOK_DLLEXPORT:
3141 ad->a.func_export = 1;
3142 break;
3143 case TOK_DLLIMPORT:
3144 ad->a.func_import = 1;
3145 break;
3146 default:
3147 if (tcc_state->warn_unsupported)
3148 tcc_warning("'%s' attribute ignored", get_tok_str(t, NULL));
3149 /* skip parameters */
3150 if (tok == '(') {
3151 int parenthesis = 0;
3152 do {
3153 if (tok == '(')
3154 parenthesis++;
3155 else if (tok == ')')
3156 parenthesis--;
3157 next();
3158 } while (parenthesis && tok != -1);
3160 break;
3162 if (tok != ',')
3163 break;
3164 next();
3166 skip(')');
3167 skip(')');
3171 /* enum/struct/union declaration. u is either VT_ENUM or VT_STRUCT */
3172 static void struct_decl(CType *type, AttributeDef *ad, int u)
3174 int a, v, size, align, maxalign, c, offset, flexible, extra_bytes;
3175 int bit_size, bit_pos, bsize, bt, lbit_pos, prevbt;
3176 Sym *s, *ss, *ass, **ps;
3177 AttributeDef ad1;
3178 CType type1, btype;
3180 a = tok; /* save decl type */
3181 next();
3182 if (tok == TOK_ATTRIBUTE1 || tok == TOK_ATTRIBUTE2) {
3183 parse_attribute(ad);
3184 next();
3186 if (tok != '{') {
3187 v = tok;
3188 next();
3189 /* struct already defined ? return it */
3190 if (v < TOK_IDENT)
3191 expect("struct/union/enum name");
3192 s = struct_find(v);
3193 if (s && (s->scope == local_scope || (tok != '{' && tok != ';'))) {
3194 if (s->type.t != a)
3195 tcc_error("redefinition of '%s'", get_tok_str(v, NULL));
3196 goto do_decl;
3198 } else {
3199 v = anon_sym++;
3201 type1.t = a;
3202 type1.ref = NULL;
3203 /* we put an undefined size for struct/union */
3204 s = sym_push(v | SYM_STRUCT, &type1, 0, -1);
3205 s->r = 0; /* default alignment is zero as gcc */
3206 /* put struct/union/enum name in type */
3207 do_decl:
3208 type->t = u;
3209 type->ref = s;
3211 if (tok == '{') {
3212 next();
3213 if (s->c != -1)
3214 tcc_error("struct/union/enum already defined");
3215 /* cannot be empty */
3216 c = 0;
3217 /* non empty enums are not allowed */
3218 if (a == TOK_ENUM) {
3219 for(;;) {
3220 v = tok;
3221 if (v < TOK_UIDENT)
3222 expect("identifier");
3223 ss = sym_find(v);
3224 if (ss && !local_stack)
3225 tcc_error("redefinition of enumerator '%s'",
3226 get_tok_str(v, NULL));
3227 next();
3228 if (tok == '=') {
3229 next();
3230 c = expr_const();
3232 /* enum symbols have static storage */
3233 ss = sym_push(v, &int_type, VT_CONST, c);
3234 ss->type.t |= VT_STATIC;
3235 if (tok != ',')
3236 break;
3237 next();
3238 c++;
3239 /* NOTE: we accept a trailing comma */
3240 if (tok == '}')
3241 break;
3243 s->c = type_size(&int_type, &align);
3244 skip('}');
3245 } else {
3246 maxalign = 1;
3247 ps = &s->next;
3248 prevbt = VT_INT;
3249 bit_pos = 0;
3250 offset = 0;
3251 flexible = 0;
3252 while (tok != '}') {
3253 if (!parse_btype(&btype, &ad1)) {
3254 skip(';');
3255 continue;
3257 while (1) {
3258 extra_bytes = 0;
3259 if (flexible)
3260 tcc_error("flexible array member '%s' not at the end of struct",
3261 get_tok_str(v, NULL));
3262 bit_size = -1;
3263 v = 0;
3264 type1 = btype;
3265 if (tok != ':') {
3266 type_decl(&type1, &ad1, &v, TYPE_DIRECT | TYPE_ABSTRACT);
3267 if (v == 0) {
3268 if ((type1.t & VT_BTYPE) != VT_STRUCT)
3269 expect("identifier");
3270 else {
3271 int v = btype.ref->v;
3272 if (!(v & SYM_FIELD) && (v & ~SYM_STRUCT) < SYM_FIRST_ANOM) {
3273 if (tcc_state->ms_extensions == 0)
3274 expect("identifier");
3278 if (type_size(&type1, &align) < 0) {
3279 if ((a == TOK_STRUCT) && (type1.t & VT_ARRAY) && c)
3280 flexible = 1;
3281 else
3282 tcc_error("field '%s' has incomplete type",
3283 get_tok_str(v, NULL));
3285 if ((type1.t & VT_BTYPE) == VT_FUNC ||
3286 (type1.t & (VT_TYPEDEF | VT_STATIC | VT_EXTERN | VT_INLINE)))
3287 tcc_error("invalid type for '%s'",
3288 get_tok_str(v, NULL));
3290 if (tok == ':') {
3291 next();
3292 bit_size = expr_const();
3293 /* XXX: handle v = 0 case for messages */
3294 if (bit_size < 0)
3295 tcc_error("negative width in bit-field '%s'",
3296 get_tok_str(v, NULL));
3297 if (v && bit_size == 0)
3298 tcc_error("zero width for bit-field '%s'",
3299 get_tok_str(v, NULL));
3301 size = type_size(&type1, &align);
3302 if (ad1.a.aligned) {
3303 if (align < ad1.a.aligned)
3304 align = ad1.a.aligned;
3305 } else if (ad1.a.packed) {
3306 align = 1;
3307 } else if (*tcc_state->pack_stack_ptr) {
3308 if (align > *tcc_state->pack_stack_ptr)
3309 align = *tcc_state->pack_stack_ptr;
3311 lbit_pos = 0;
3312 if (bit_size >= 0) {
3313 bt = type1.t & VT_BTYPE;
3314 if (bt != VT_INT &&
3315 bt != VT_BYTE &&
3316 bt != VT_SHORT &&
3317 bt != VT_BOOL &&
3318 bt != VT_ENUM &&
3319 bt != VT_LLONG)
3320 tcc_error("bitfields must have scalar type");
3321 bsize = size * 8;
3322 if (bit_size > bsize) {
3323 tcc_error("width of '%s' exceeds its type",
3324 get_tok_str(v, NULL));
3325 } else if (bit_size == bsize) {
3326 /* no need for bit fields */
3327 bit_pos = 0;
3328 } else if (bit_size == 0) {
3329 /* XXX: what to do if only padding in a
3330 structure ? */
3331 /* zero size: means to pad */
3332 bit_pos = 0;
3333 } else {
3334 /* if type change, union, or will overrun
3335 * allignment slot, start at a newly
3336 * alligned slot */
3337 if ((bit_pos + bit_size) > bsize ||
3338 bt != prevbt || a == TOK_UNION)
3339 bit_pos = 0;
3340 lbit_pos = bit_pos;
3341 /* XXX: handle LSB first */
3342 type1.t |= VT_BITFIELD |
3343 (bit_pos << VT_STRUCT_SHIFT) |
3344 (bit_size << (VT_STRUCT_SHIFT + 6));
3345 bit_pos += bit_size;
3346 /* without ms-bitfields, allocate the
3347 * minimum number of bytes necessary,
3348 * adding single bytes as needed */
3349 if (!tcc_state->ms_bitfields) {
3350 if (lbit_pos == 0)
3351 /* minimum bytes for new bitfield */
3352 size = (bit_size + 7) / 8;
3353 else {
3354 /* enough spare bits already allocated? */
3355 bit_size = (lbit_pos - 1) % 8 + 1 + bit_size;
3356 if (bit_size > 8) /* doesn't fit */
3357 extra_bytes = (bit_size - 1) / 8;
3361 prevbt = bt;
3362 } else {
3363 bit_pos = 0;
3365 if (v != 0 || (type1.t & VT_BTYPE) == VT_STRUCT) {
3366 /* add new memory data only if starting bit
3367 field or adding bytes to existing bit field */
3368 if (extra_bytes) c += extra_bytes;
3369 else if (lbit_pos == 0) {
3370 if (a == TOK_STRUCT) {
3371 c = (c + align - 1) & -align;
3372 offset = c;
3373 if (size > 0)
3374 c += size;
3375 } else {
3376 offset = 0;
3377 if (size > c)
3378 c = size;
3380 if (align > maxalign)
3381 maxalign = align;
3383 #if 0
3384 printf("add field %s offset=%d",
3385 get_tok_str(v, NULL), offset);
3386 if (type1.t & VT_BITFIELD) {
3387 printf(" pos=%d size=%d",
3388 (type1.t >> VT_STRUCT_SHIFT) & 0x3f,
3389 (type1.t >> (VT_STRUCT_SHIFT + 6)) & 0x3f);
3391 printf("\n");
3392 #endif
3394 if (v == 0 && (type1.t & VT_BTYPE) == VT_STRUCT) {
3395 ass = type1.ref;
3396 while ((ass = ass->next) != NULL) {
3397 ss = sym_push(ass->v, &ass->type, 0, offset + ass->c);
3398 *ps = ss;
3399 ps = &ss->next;
3401 } else if (v) {
3402 ss = sym_push(v | SYM_FIELD, &type1, 0, offset);
3403 *ps = ss;
3404 ps = &ss->next;
3406 if (tok == ';' || tok == TOK_EOF)
3407 break;
3408 skip(',');
3410 skip(';');
3412 skip('}');
3413 /* store size and alignment */
3414 s->c = (c + maxalign - 1) & -maxalign;
3415 s->r = maxalign;
3420 /* return 1 if basic type is a type size (short, long, long long) */
3421 ST_FUNC int is_btype_size(int bt)
3423 return bt == VT_SHORT || bt == VT_LONG || bt == VT_LLONG;
3426 /* Add type qualifiers to a type. If the type is an array then the qualifiers
3427 are added to the element type, copied because it could be a typedef. */
3428 static void parse_btype_qualify(CType *type, int qualifiers)
3430 while (type->t & VT_ARRAY) {
3431 type->ref = sym_push(SYM_FIELD, &type->ref->type, 0, type->ref->c);
3432 type = &type->ref->type;
3434 type->t |= qualifiers;
3437 /* return 0 if no type declaration. otherwise, return the basic type
3438 and skip it.
3440 static int parse_btype(CType *type, AttributeDef *ad)
3442 int t, u, bt_size, complete, type_found, typespec_found;
3443 Sym *s;
3444 CType type1;
3446 memset(ad, 0, sizeof(AttributeDef));
3447 complete = 0;
3448 type_found = 0;
3449 typespec_found = 0;
3450 t = 0;
3451 while(1) {
3452 switch(tok) {
3453 case TOK_EXTENSION:
3454 /* currently, we really ignore extension */
3455 next();
3456 continue;
3458 /* basic types */
3459 case TOK_CHAR:
3460 u = VT_BYTE;
3461 basic_type:
3462 next();
3463 basic_type1:
3464 if (complete)
3465 tcc_error("too many basic types");
3466 t |= u;
3467 bt_size = is_btype_size (u & VT_BTYPE);
3468 if (u == VT_INT || (!bt_size && !(t & VT_TYPEDEF)))
3469 complete = 1;
3470 typespec_found = 1;
3471 break;
3472 case TOK_VOID:
3473 u = VT_VOID;
3474 goto basic_type;
3475 case TOK_SHORT:
3476 u = VT_SHORT;
3477 goto basic_type;
3478 case TOK_INT:
3479 u = VT_INT;
3480 goto basic_type;
3481 case TOK_LONG:
3482 next();
3483 if ((t & VT_BTYPE) == VT_DOUBLE) {
3484 #ifndef TCC_TARGET_PE
3485 t = (t & ~VT_BTYPE) | VT_LDOUBLE;
3486 #endif
3487 } else if ((t & VT_BTYPE) == VT_LONG) {
3488 t = (t & ~VT_BTYPE) | VT_LLONG;
3489 } else {
3490 u = VT_LONG;
3491 goto basic_type1;
3493 break;
3494 #ifdef TCC_TARGET_ARM64
3495 case TOK_UINT128:
3496 /* GCC's __uint128_t appears in some Linux header files. Make it a
3497 synonym for long double to get the size and alignment right. */
3498 u = VT_LDOUBLE;
3499 goto basic_type;
3500 #endif
3501 case TOK_BOOL:
3502 u = VT_BOOL;
3503 goto basic_type;
3504 case TOK_FLOAT:
3505 u = VT_FLOAT;
3506 goto basic_type;
3507 case TOK_DOUBLE:
3508 next();
3509 if ((t & VT_BTYPE) == VT_LONG) {
3510 #ifdef TCC_TARGET_PE
3511 t = (t & ~VT_BTYPE) | VT_DOUBLE;
3512 #else
3513 t = (t & ~VT_BTYPE) | VT_LDOUBLE;
3514 #endif
3515 } else {
3516 u = VT_DOUBLE;
3517 goto basic_type1;
3519 break;
3520 case TOK_ENUM:
3521 struct_decl(&type1, ad, VT_ENUM);
3522 basic_type2:
3523 u = type1.t;
3524 type->ref = type1.ref;
3525 goto basic_type1;
3526 case TOK_STRUCT:
3527 case TOK_UNION:
3528 struct_decl(&type1, ad, VT_STRUCT);
3529 goto basic_type2;
3531 /* type modifiers */
3532 case TOK_CONST1:
3533 case TOK_CONST2:
3534 case TOK_CONST3:
3535 type->t = t;
3536 parse_btype_qualify(type, VT_CONSTANT);
3537 t = type->t;
3538 next();
3539 break;
3540 case TOK_VOLATILE1:
3541 case TOK_VOLATILE2:
3542 case TOK_VOLATILE3:
3543 type->t = t;
3544 parse_btype_qualify(type, VT_VOLATILE);
3545 t = type->t;
3546 next();
3547 break;
3548 case TOK_SIGNED1:
3549 case TOK_SIGNED2:
3550 case TOK_SIGNED3:
3551 if ((t & (VT_DEFSIGN|VT_UNSIGNED)) == (VT_DEFSIGN|VT_UNSIGNED))
3552 tcc_error("signed and unsigned modifier");
3553 typespec_found = 1;
3554 t |= VT_DEFSIGN;
3555 next();
3556 break;
3557 case TOK_REGISTER:
3558 case TOK_AUTO:
3559 case TOK_RESTRICT1:
3560 case TOK_RESTRICT2:
3561 case TOK_RESTRICT3:
3562 next();
3563 break;
3564 case TOK_UNSIGNED:
3565 if ((t & (VT_DEFSIGN|VT_UNSIGNED)) == VT_DEFSIGN)
3566 tcc_error("signed and unsigned modifier");
3567 t |= VT_DEFSIGN | VT_UNSIGNED;
3568 next();
3569 typespec_found = 1;
3570 break;
3572 /* storage */
3573 case TOK_EXTERN:
3574 t |= VT_EXTERN;
3575 next();
3576 break;
3577 case TOK_STATIC:
3578 t |= VT_STATIC;
3579 next();
3580 break;
3581 case TOK_TYPEDEF:
3582 t |= VT_TYPEDEF;
3583 next();
3584 break;
3585 case TOK_INLINE1:
3586 case TOK_INLINE2:
3587 case TOK_INLINE3:
3588 t |= VT_INLINE;
3589 next();
3590 break;
3592 /* GNUC attribute */
3593 case TOK_ATTRIBUTE1:
3594 case TOK_ATTRIBUTE2:
3595 parse_attribute(ad);
3596 if (ad->a.mode) {
3597 u = ad->a.mode -1;
3598 t = (t & ~VT_BTYPE) | u;
3600 break;
3601 /* GNUC typeof */
3602 case TOK_TYPEOF1:
3603 case TOK_TYPEOF2:
3604 case TOK_TYPEOF3:
3605 next();
3606 parse_expr_type(&type1);
3607 /* remove all storage modifiers except typedef */
3608 type1.t &= ~(VT_STORAGE&~VT_TYPEDEF);
3609 goto basic_type2;
3610 default:
3611 if (typespec_found)
3612 goto the_end;
3613 s = sym_find(tok);
3614 if (!s || !(s->type.t & VT_TYPEDEF))
3615 goto the_end;
3617 type->t = ((s->type.t & ~VT_TYPEDEF) |
3618 (t & ~(VT_CONSTANT | VT_VOLATILE)));
3619 type->ref = s->type.ref;
3620 if (t & (VT_CONSTANT | VT_VOLATILE))
3621 parse_btype_qualify(type, t & (VT_CONSTANT | VT_VOLATILE));
3622 t = type->t;
3624 if (s->r) {
3625 /* get attributes from typedef */
3626 if (0 == ad->a.aligned)
3627 ad->a.aligned = s->a.aligned;
3628 if (0 == ad->a.func_call)
3629 ad->a.func_call = s->a.func_call;
3630 ad->a.packed |= s->a.packed;
3632 next();
3633 typespec_found = 1;
3634 break;
3636 type_found = 1;
3638 the_end:
3639 if (tcc_state->char_is_unsigned) {
3640 if ((t & (VT_DEFSIGN|VT_BTYPE)) == VT_BYTE)
3641 t |= VT_UNSIGNED;
3644 /* long is never used as type */
3645 if ((t & VT_BTYPE) == VT_LONG)
3646 #if (!defined TCC_TARGET_X86_64 && !defined TCC_TARGET_ARM64) || \
3647 defined TCC_TARGET_PE
3648 t = (t & ~VT_BTYPE) | VT_INT;
3649 #else
3650 t = (t & ~VT_BTYPE) | VT_LLONG;
3651 #endif
3652 type->t = t;
3653 return type_found;
3656 /* convert a function parameter type (array to pointer and function to
3657 function pointer) */
3658 static inline void convert_parameter_type(CType *pt)
3660 /* remove const and volatile qualifiers (XXX: const could be used
3661 to indicate a const function parameter */
3662 pt->t &= ~(VT_CONSTANT | VT_VOLATILE);
3663 /* array must be transformed to pointer according to ANSI C */
3664 pt->t &= ~VT_ARRAY;
3665 if ((pt->t & VT_BTYPE) == VT_FUNC) {
3666 mk_pointer(pt);
3670 ST_FUNC void parse_asm_str(CString *astr)
3672 skip('(');
3673 parse_mult_str(astr, "string constant");
3676 /* Parse an asm label and return the token */
3677 static int asm_label_instr(void)
3679 int v;
3680 CString astr;
3682 next();
3683 parse_asm_str(&astr);
3684 skip(')');
3685 #ifdef ASM_DEBUG
3686 printf("asm_alias: \"%s\"\n", (char *)astr.data);
3687 #endif
3688 v = tok_alloc(astr.data, astr.size - 1)->tok;
3689 cstr_free(&astr);
3690 return v;
3693 static void post_type(CType *type, AttributeDef *ad)
3695 int n, l, t1, arg_size, align;
3696 Sym **plast, *s, *first;
3697 AttributeDef ad1;
3698 CType pt;
3700 if (tok == '(') {
3701 /* function declaration */
3702 next();
3703 l = 0;
3704 first = NULL;
3705 plast = &first;
3706 arg_size = 0;
3707 if (tok != ')') {
3708 for(;;) {
3709 /* read param name and compute offset */
3710 if (l != FUNC_OLD) {
3711 if (!parse_btype(&pt, &ad1)) {
3712 if (l) {
3713 tcc_error("invalid type");
3714 } else {
3715 l = FUNC_OLD;
3716 goto old_proto;
3719 l = FUNC_NEW;
3720 if ((pt.t & VT_BTYPE) == VT_VOID && tok == ')')
3721 break;
3722 type_decl(&pt, &ad1, &n, TYPE_DIRECT | TYPE_ABSTRACT);
3723 if ((pt.t & VT_BTYPE) == VT_VOID)
3724 tcc_error("parameter declared as void");
3725 arg_size += (type_size(&pt, &align) + PTR_SIZE - 1) / PTR_SIZE;
3726 } else {
3727 old_proto:
3728 n = tok;
3729 if (n < TOK_UIDENT)
3730 expect("identifier");
3731 pt.t = VT_INT;
3732 next();
3734 convert_parameter_type(&pt);
3735 s = sym_push(n | SYM_FIELD, &pt, 0, 0);
3736 *plast = s;
3737 plast = &s->next;
3738 if (tok == ')')
3739 break;
3740 skip(',');
3741 if (l == FUNC_NEW && tok == TOK_DOTS) {
3742 l = FUNC_ELLIPSIS;
3743 next();
3744 break;
3748 /* if no parameters, then old type prototype */
3749 if (l == 0)
3750 l = FUNC_OLD;
3751 skip(')');
3752 /* NOTE: const is ignored in returned type as it has a special
3753 meaning in gcc / C++ */
3754 type->t &= ~VT_CONSTANT;
3755 /* some ancient pre-K&R C allows a function to return an array
3756 and the array brackets to be put after the arguments, such
3757 that "int c()[]" means something like "int[] c()" */
3758 if (tok == '[') {
3759 next();
3760 skip(']'); /* only handle simple "[]" */
3761 type->t |= VT_PTR;
3763 /* we push a anonymous symbol which will contain the function prototype */
3764 ad->a.func_args = arg_size;
3765 s = sym_push(SYM_FIELD, type, 0, l);
3766 s->a = ad->a;
3767 s->next = first;
3768 type->t = VT_FUNC;
3769 type->ref = s;
3770 } else if (tok == '[') {
3771 /* array definition */
3772 next();
3773 if (tok == TOK_RESTRICT1)
3774 next();
3775 n = -1;
3776 t1 = 0;
3777 if (tok != ']') {
3778 if (!local_stack || nocode_wanted)
3779 vpushi(expr_const());
3780 else gexpr();
3781 if ((vtop->r & (VT_VALMASK | VT_LVAL | VT_SYM)) == VT_CONST) {
3782 n = vtop->c.i;
3783 if (n < 0)
3784 tcc_error("invalid array size");
3785 } else {
3786 if (!is_integer_btype(vtop->type.t & VT_BTYPE))
3787 tcc_error("size of variable length array should be an integer");
3788 t1 = VT_VLA;
3791 skip(']');
3792 /* parse next post type */
3793 post_type(type, ad);
3794 if (type->t == VT_FUNC)
3795 tcc_error("declaration of an array of functions");
3796 t1 |= type->t & VT_VLA;
3798 if (t1 & VT_VLA) {
3799 loc -= type_size(&int_type, &align);
3800 loc &= -align;
3801 n = loc;
3803 vla_runtime_type_size(type, &align);
3804 gen_op('*');
3805 vset(&int_type, VT_LOCAL|VT_LVAL, n);
3806 vswap();
3807 vstore();
3809 if (n != -1)
3810 vpop();
3812 /* we push an anonymous symbol which will contain the array
3813 element type */
3814 s = sym_push(SYM_FIELD, type, 0, n);
3815 type->t = (t1 ? VT_VLA : VT_ARRAY) | VT_PTR;
3816 type->ref = s;
3820 /* Parse a type declaration (except basic type), and return the type
3821 in 'type'. 'td' is a bitmask indicating which kind of type decl is
3822 expected. 'type' should contain the basic type. 'ad' is the
3823 attribute definition of the basic type. It can be modified by
3824 type_decl().
3826 static void type_decl(CType *type, AttributeDef *ad, int *v, int td)
3828 Sym *s;
3829 CType type1, *type2;
3830 int qualifiers, storage;
3832 while (tok == '*') {
3833 qualifiers = 0;
3834 redo:
3835 next();
3836 switch(tok) {
3837 case TOK_CONST1:
3838 case TOK_CONST2:
3839 case TOK_CONST3:
3840 qualifiers |= VT_CONSTANT;
3841 goto redo;
3842 case TOK_VOLATILE1:
3843 case TOK_VOLATILE2:
3844 case TOK_VOLATILE3:
3845 qualifiers |= VT_VOLATILE;
3846 goto redo;
3847 case TOK_RESTRICT1:
3848 case TOK_RESTRICT2:
3849 case TOK_RESTRICT3:
3850 goto redo;
3852 mk_pointer(type);
3853 type->t |= qualifiers;
3856 /* XXX: clarify attribute handling */
3857 if (tok == TOK_ATTRIBUTE1 || tok == TOK_ATTRIBUTE2)
3858 parse_attribute(ad);
3860 /* recursive type */
3861 /* XXX: incorrect if abstract type for functions (e.g. 'int ()') */
3862 type1.t = 0; /* XXX: same as int */
3863 if (tok == '(') {
3864 next();
3865 /* XXX: this is not correct to modify 'ad' at this point, but
3866 the syntax is not clear */
3867 if (tok == TOK_ATTRIBUTE1 || tok == TOK_ATTRIBUTE2)
3868 parse_attribute(ad);
3869 type_decl(&type1, ad, v, td);
3870 skip(')');
3871 } else {
3872 /* type identifier */
3873 if (tok >= TOK_IDENT && (td & TYPE_DIRECT)) {
3874 *v = tok;
3875 next();
3876 } else {
3877 if (!(td & TYPE_ABSTRACT))
3878 expect("identifier");
3879 *v = 0;
3882 storage = type->t & VT_STORAGE;
3883 type->t &= ~VT_STORAGE;
3884 if (storage & VT_STATIC) {
3885 int saved_nocode_wanted = nocode_wanted;
3886 nocode_wanted = 1;
3887 post_type(type, ad);
3888 nocode_wanted = saved_nocode_wanted;
3889 } else
3890 post_type(type, ad);
3891 type->t |= storage;
3892 if (tok == TOK_ATTRIBUTE1 || tok == TOK_ATTRIBUTE2)
3893 parse_attribute(ad);
3895 if (!type1.t)
3896 return;
3897 /* append type at the end of type1 */
3898 type2 = &type1;
3899 for(;;) {
3900 s = type2->ref;
3901 type2 = &s->type;
3902 if (!type2->t) {
3903 *type2 = *type;
3904 break;
3907 *type = type1;
3910 /* compute the lvalue VT_LVAL_xxx needed to match type t. */
3911 ST_FUNC int lvalue_type(int t)
3913 int bt, r;
3914 r = VT_LVAL;
3915 bt = t & VT_BTYPE;
3916 if (bt == VT_BYTE || bt == VT_BOOL)
3917 r |= VT_LVAL_BYTE;
3918 else if (bt == VT_SHORT)
3919 r |= VT_LVAL_SHORT;
3920 else
3921 return r;
3922 if (t & VT_UNSIGNED)
3923 r |= VT_LVAL_UNSIGNED;
3924 return r;
3927 /* indirection with full error checking and bound check */
3928 ST_FUNC void indir(void)
3930 if ((vtop->type.t & VT_BTYPE) != VT_PTR) {
3931 if ((vtop->type.t & VT_BTYPE) == VT_FUNC)
3932 return;
3933 expect("pointer");
3935 if ((vtop->r & VT_LVAL) && !nocode_wanted)
3936 gv(RC_INT);
3937 vtop->type = *pointed_type(&vtop->type);
3938 /* Arrays and functions are never lvalues */
3939 if (!(vtop->type.t & VT_ARRAY) && !(vtop->type.t & VT_VLA)
3940 && (vtop->type.t & VT_BTYPE) != VT_FUNC) {
3941 vtop->r |= lvalue_type(vtop->type.t);
3942 /* if bound checking, the referenced pointer must be checked */
3943 #ifdef CONFIG_TCC_BCHECK
3944 if (tcc_state->do_bounds_check)
3945 vtop->r |= VT_MUSTBOUND;
3946 #endif
3950 /* pass a parameter to a function and do type checking and casting */
3951 static void gfunc_param_typed(Sym *func, Sym *arg)
3953 int func_type;
3954 CType type;
3956 func_type = func->c;
3957 if (func_type == FUNC_OLD ||
3958 (func_type == FUNC_ELLIPSIS && arg == NULL)) {
3959 /* default casting : only need to convert float to double */
3960 if ((vtop->type.t & VT_BTYPE) == VT_FLOAT) {
3961 type.t = VT_DOUBLE;
3962 gen_cast(&type);
3963 } else if (vtop->type.t & VT_BITFIELD) {
3964 type.t = vtop->type.t & (VT_BTYPE | VT_UNSIGNED);
3965 gen_cast(&type);
3967 } else if (arg == NULL) {
3968 tcc_error("too many arguments to function");
3969 } else {
3970 type = arg->type;
3971 type.t &= ~VT_CONSTANT; /* need to do that to avoid false warning */
3972 gen_assign_cast(&type);
3976 /* parse an expression of the form '(type)' or '(expr)' and return its
3977 type */
3978 static void parse_expr_type(CType *type)
3980 int n;
3981 AttributeDef ad;
3983 skip('(');
3984 if (parse_btype(type, &ad)) {
3985 type_decl(type, &ad, &n, TYPE_ABSTRACT);
3986 } else {
3987 expr_type(type);
3989 skip(')');
3992 static void parse_type(CType *type)
3994 AttributeDef ad;
3995 int n;
3997 if (!parse_btype(type, &ad)) {
3998 expect("type");
4000 type_decl(type, &ad, &n, TYPE_ABSTRACT);
4003 static void vpush_tokc(int t)
4005 CType type;
4006 type.t = t;
4007 type.ref = 0;
4008 vsetc(&type, VT_CONST, &tokc);
4011 ST_FUNC void unary(void)
4013 int n, t, align, size, r, sizeof_caller;
4014 CType type;
4015 Sym *s;
4016 AttributeDef ad;
4018 sizeof_caller = in_sizeof;
4019 in_sizeof = 0;
4020 /* XXX: GCC 2.95.3 does not generate a table although it should be
4021 better here */
4022 tok_next:
4023 switch(tok) {
4024 case TOK_EXTENSION:
4025 next();
4026 goto tok_next;
4027 case TOK_CINT:
4028 case TOK_CCHAR:
4029 case TOK_LCHAR:
4030 vpushi(tokc.i);
4031 next();
4032 break;
4033 case TOK_CUINT:
4034 vpush_tokc(VT_INT | VT_UNSIGNED);
4035 next();
4036 break;
4037 case TOK_CLLONG:
4038 vpush_tokc(VT_LLONG);
4039 next();
4040 break;
4041 case TOK_CULLONG:
4042 vpush_tokc(VT_LLONG | VT_UNSIGNED);
4043 next();
4044 break;
4045 case TOK_CFLOAT:
4046 vpush_tokc(VT_FLOAT);
4047 next();
4048 break;
4049 case TOK_CDOUBLE:
4050 vpush_tokc(VT_DOUBLE);
4051 next();
4052 break;
4053 case TOK_CLDOUBLE:
4054 vpush_tokc(VT_LDOUBLE);
4055 next();
4056 break;
4057 case TOK___FUNCTION__:
4058 if (!gnu_ext)
4059 goto tok_identifier;
4060 /* fall thru */
4061 case TOK___FUNC__:
4063 void *ptr;
4064 int len;
4065 /* special function name identifier */
4066 len = strlen(funcname) + 1;
4067 /* generate char[len] type */
4068 type.t = VT_BYTE;
4069 mk_pointer(&type);
4070 type.t |= VT_ARRAY;
4071 type.ref->c = len;
4072 vpush_ref(&type, data_section, data_section->data_offset, len);
4073 ptr = section_ptr_add(data_section, len);
4074 memcpy(ptr, funcname, len);
4075 next();
4077 break;
4078 case TOK_LSTR:
4079 #ifdef TCC_TARGET_PE
4080 t = VT_SHORT | VT_UNSIGNED;
4081 #else
4082 t = VT_INT;
4083 #endif
4084 goto str_init;
4085 case TOK_STR:
4086 /* string parsing */
4087 t = VT_BYTE;
4088 str_init:
4089 if (tcc_state->warn_write_strings)
4090 t |= VT_CONSTANT;
4091 type.t = t;
4092 mk_pointer(&type);
4093 type.t |= VT_ARRAY;
4094 memset(&ad, 0, sizeof(AttributeDef));
4095 decl_initializer_alloc(&type, &ad, VT_CONST, 2, 0, 0);
4096 break;
4097 case '(':
4098 next();
4099 /* cast ? */
4100 if (parse_btype(&type, &ad)) {
4101 type_decl(&type, &ad, &n, TYPE_ABSTRACT);
4102 skip(')');
4103 /* check ISOC99 compound literal */
4104 if (tok == '{') {
4105 /* data is allocated locally by default */
4106 if (global_expr)
4107 r = VT_CONST;
4108 else
4109 r = VT_LOCAL;
4110 /* all except arrays are lvalues */
4111 if (!(type.t & VT_ARRAY))
4112 r |= lvalue_type(type.t);
4113 memset(&ad, 0, sizeof(AttributeDef));
4114 decl_initializer_alloc(&type, &ad, r, 1, 0, 0);
4115 } else {
4116 if (sizeof_caller) {
4117 vpush(&type);
4118 return;
4120 unary();
4121 gen_cast(&type);
4123 } else if (tok == '{') {
4124 if (const_wanted)
4125 tcc_error("expected constant");
4126 /* save all registers */
4127 if (!nocode_wanted)
4128 save_regs(0);
4129 /* statement expression : we do not accept break/continue
4130 inside as GCC does */
4131 block(NULL, NULL, 1);
4132 skip(')');
4133 } else {
4134 gexpr();
4135 skip(')');
4137 break;
4138 case '*':
4139 next();
4140 unary();
4141 indir();
4142 break;
4143 case '&':
4144 next();
4145 unary();
4146 /* functions names must be treated as function pointers,
4147 except for unary '&' and sizeof. Since we consider that
4148 functions are not lvalues, we only have to handle it
4149 there and in function calls. */
4150 /* arrays can also be used although they are not lvalues */
4151 if ((vtop->type.t & VT_BTYPE) != VT_FUNC &&
4152 !(vtop->type.t & VT_ARRAY) && !(vtop->type.t & VT_LLOCAL))
4153 test_lvalue();
4154 mk_pointer(&vtop->type);
4155 gaddrof();
4156 break;
4157 case '!':
4158 next();
4159 unary();
4160 if ((vtop->r & (VT_VALMASK | VT_LVAL | VT_SYM)) == VT_CONST) {
4161 CType boolean;
4162 boolean.t = VT_BOOL;
4163 gen_cast(&boolean);
4164 vtop->c.i = !vtop->c.i;
4165 } else if ((vtop->r & VT_VALMASK) == VT_CMP)
4166 vtop->c.i ^= 1;
4167 else {
4168 save_regs(1);
4169 vseti(VT_JMP, gvtst(1, 0));
4171 break;
4172 case '~':
4173 next();
4174 unary();
4175 vpushi(-1);
4176 gen_op('^');
4177 break;
4178 case '+':
4179 next();
4180 unary();
4181 if ((vtop->type.t & VT_BTYPE) == VT_PTR)
4182 tcc_error("pointer not accepted for unary plus");
4183 /* In order to force cast, we add zero, except for floating point
4184 where we really need an noop (otherwise -0.0 will be transformed
4185 into +0.0). */
4186 if (!is_float(vtop->type.t)) {
4187 vpushi(0);
4188 gen_op('+');
4190 break;
4191 case TOK_SIZEOF:
4192 case TOK_ALIGNOF1:
4193 case TOK_ALIGNOF2:
4194 t = tok;
4195 next();
4196 in_sizeof++;
4197 unary_type(&type); // Perform a in_sizeof = 0;
4198 size = type_size(&type, &align);
4199 if (t == TOK_SIZEOF) {
4200 if (!(type.t & VT_VLA)) {
4201 if (size < 0)
4202 tcc_error("sizeof applied to an incomplete type");
4203 vpushs(size);
4204 } else {
4205 vla_runtime_type_size(&type, &align);
4207 } else {
4208 vpushs(align);
4210 vtop->type.t |= VT_UNSIGNED;
4211 break;
4213 case TOK_builtin_expect:
4215 /* __builtin_expect is a no-op for now */
4216 int saved_nocode_wanted;
4217 next();
4218 skip('(');
4219 expr_eq();
4220 skip(',');
4221 saved_nocode_wanted = nocode_wanted;
4222 nocode_wanted = 1;
4223 expr_lor_const();
4224 vpop();
4225 nocode_wanted = saved_nocode_wanted;
4226 skip(')');
4228 break;
4229 case TOK_builtin_types_compatible_p:
4231 CType type1, type2;
4232 next();
4233 skip('(');
4234 parse_type(&type1);
4235 skip(',');
4236 parse_type(&type2);
4237 skip(')');
4238 type1.t &= ~(VT_CONSTANT | VT_VOLATILE);
4239 type2.t &= ~(VT_CONSTANT | VT_VOLATILE);
4240 vpushi(is_compatible_types(&type1, &type2));
4242 break;
4243 case TOK_builtin_constant_p:
4245 int saved_nocode_wanted, res;
4246 next();
4247 skip('(');
4248 saved_nocode_wanted = nocode_wanted;
4249 nocode_wanted = 1;
4250 gexpr();
4251 res = (vtop->r & (VT_VALMASK | VT_LVAL | VT_SYM)) == VT_CONST;
4252 vpop();
4253 nocode_wanted = saved_nocode_wanted;
4254 skip(')');
4255 vpushi(res);
4257 break;
4258 case TOK_builtin_frame_address:
4259 case TOK_builtin_return_address:
4261 int tok1 = tok;
4262 int level;
4263 CType type;
4264 next();
4265 skip('(');
4266 if (tok != TOK_CINT) {
4267 tcc_error("%s only takes positive integers",
4268 tok1 == TOK_builtin_return_address ?
4269 "__builtin_return_address" :
4270 "__builtin_frame_address");
4272 level = (uint32_t)tokc.i;
4273 next();
4274 skip(')');
4275 type.t = VT_VOID;
4276 mk_pointer(&type);
4277 vset(&type, VT_LOCAL, 0); /* local frame */
4278 while (level--) {
4279 mk_pointer(&vtop->type);
4280 indir(); /* -> parent frame */
4282 if (tok1 == TOK_builtin_return_address) {
4283 // assume return address is just above frame pointer on stack
4284 vpushi(PTR_SIZE);
4285 gen_op('+');
4286 mk_pointer(&vtop->type);
4287 indir();
4290 break;
4291 #ifdef TCC_TARGET_X86_64
4292 #ifdef TCC_TARGET_PE
4293 case TOK_builtin_va_start:
4295 next();
4296 skip('(');
4297 expr_eq();
4298 skip(',');
4299 expr_eq();
4300 skip(')');
4301 if ((vtop->r & VT_VALMASK) != VT_LOCAL)
4302 tcc_error("__builtin_va_start expects a local variable");
4303 vtop->r &= ~(VT_LVAL | VT_REF);
4304 vtop->type = char_pointer_type;
4305 vtop->c.i += 8;
4306 vstore();
4308 break;
4309 #else
4310 case TOK_builtin_va_arg_types:
4312 CType type;
4313 next();
4314 skip('(');
4315 parse_type(&type);
4316 skip(')');
4317 vpushi(classify_x86_64_va_arg(&type));
4319 break;
4320 #endif
4321 #endif
4323 #ifdef TCC_TARGET_ARM64
4324 case TOK___va_start: {
4325 if (nocode_wanted)
4326 tcc_error("statement in global scope");
4327 next();
4328 skip('(');
4329 expr_eq();
4330 skip(',');
4331 expr_eq();
4332 skip(')');
4333 //xx check types
4334 gen_va_start();
4335 vpushi(0);
4336 vtop->type.t = VT_VOID;
4337 break;
4339 case TOK___va_arg: {
4340 CType type;
4341 if (nocode_wanted)
4342 tcc_error("statement in global scope");
4343 next();
4344 skip('(');
4345 expr_eq();
4346 skip(',');
4347 parse_type(&type);
4348 skip(')');
4349 //xx check types
4350 gen_va_arg(&type);
4351 vtop->type = type;
4352 break;
4354 case TOK___arm64_clear_cache: {
4355 next();
4356 skip('(');
4357 expr_eq();
4358 skip(',');
4359 expr_eq();
4360 skip(')');
4361 gen_clear_cache();
4362 vpushi(0);
4363 vtop->type.t = VT_VOID;
4364 break;
4366 #endif
4367 /* pre operations */
4368 case TOK_INC:
4369 case TOK_DEC:
4370 t = tok;
4371 next();
4372 unary();
4373 inc(0, t);
4374 break;
4375 case '-':
4376 next();
4377 unary();
4378 t = vtop->type.t & VT_BTYPE;
4379 if (is_float(t)) {
4380 /* In IEEE negate(x) isn't subtract(0,x), but rather
4381 subtract(-0, x). */
4382 vpush(&vtop->type);
4383 if (t == VT_FLOAT)
4384 vtop->c.f = -0.0f;
4385 else if (t == VT_DOUBLE)
4386 vtop->c.d = -0.0;
4387 else
4388 vtop->c.ld = -0.0;
4389 } else
4390 vpushi(0);
4391 vswap();
4392 gen_op('-');
4393 break;
4394 case TOK_LAND:
4395 if (!gnu_ext)
4396 goto tok_identifier;
4397 next();
4398 /* allow to take the address of a label */
4399 if (tok < TOK_UIDENT)
4400 expect("label identifier");
4401 s = label_find(tok);
4402 if (!s) {
4403 s = label_push(&global_label_stack, tok, LABEL_FORWARD);
4404 } else {
4405 if (s->r == LABEL_DECLARED)
4406 s->r = LABEL_FORWARD;
4408 if (!s->type.t) {
4409 s->type.t = VT_VOID;
4410 mk_pointer(&s->type);
4411 s->type.t |= VT_STATIC;
4413 vpushsym(&s->type, s);
4414 next();
4415 break;
4417 // special qnan , snan and infinity values
4418 case TOK___NAN__:
4419 vpush64(VT_DOUBLE, 0x7ff8000000000000ULL);
4420 next();
4421 break;
4422 case TOK___SNAN__:
4423 vpush64(VT_DOUBLE, 0x7ff0000000000001ULL);
4424 next();
4425 break;
4426 case TOK___INF__:
4427 vpush64(VT_DOUBLE, 0x7ff0000000000000ULL);
4428 next();
4429 break;
4431 default:
4432 tok_identifier:
4433 t = tok;
4434 next();
4435 if (t < TOK_UIDENT)
4436 expect("identifier");
4437 s = sym_find(t);
4438 if (!s) {
4439 const char *name = get_tok_str(t, NULL);
4440 if (tok != '(')
4441 tcc_error("'%s' undeclared", name);
4442 /* for simple function calls, we tolerate undeclared
4443 external reference to int() function */
4444 if (tcc_state->warn_implicit_function_declaration
4445 #ifdef TCC_TARGET_PE
4446 /* people must be warned about using undeclared WINAPI functions
4447 (which usually start with uppercase letter) */
4448 || (name[0] >= 'A' && name[0] <= 'Z')
4449 #endif
4451 tcc_warning("implicit declaration of function '%s'", name);
4452 s = external_global_sym(t, &func_old_type, 0);
4454 if ((s->type.t & (VT_STATIC | VT_INLINE | VT_BTYPE)) ==
4455 (VT_STATIC | VT_INLINE | VT_FUNC)) {
4456 /* if referencing an inline function, then we generate a
4457 symbol to it if not already done. It will have the
4458 effect to generate code for it at the end of the
4459 compilation unit. Inline function as always
4460 generated in the text section. */
4461 if (!s->c)
4462 put_extern_sym(s, text_section, 0, 0);
4463 r = VT_SYM | VT_CONST;
4464 } else {
4465 r = s->r;
4467 vset(&s->type, r, s->c);
4468 /* if forward reference, we must point to s */
4469 if (vtop->r & VT_SYM) {
4470 vtop->sym = s;
4471 vtop->c.i = 0;
4473 break;
4476 /* post operations */
4477 while (1) {
4478 if (tok == TOK_INC || tok == TOK_DEC) {
4479 inc(1, tok);
4480 next();
4481 } else if (tok == '.' || tok == TOK_ARROW || tok == TOK_CDOUBLE) {
4482 int qualifiers;
4483 /* field */
4484 if (tok == TOK_ARROW)
4485 indir();
4486 qualifiers = vtop->type.t & (VT_CONSTANT | VT_VOLATILE);
4487 test_lvalue();
4488 gaddrof();
4489 /* expect pointer on structure */
4490 if ((vtop->type.t & VT_BTYPE) != VT_STRUCT)
4491 expect("struct or union");
4492 if (tok == TOK_CDOUBLE)
4493 expect("field name");
4494 next();
4495 if (tok == TOK_CINT || tok == TOK_CUINT)
4496 expect("field name");
4497 s = vtop->type.ref;
4498 /* find field */
4499 tok |= SYM_FIELD;
4500 while ((s = s->next) != NULL) {
4501 if (s->v == tok)
4502 break;
4504 if (!s)
4505 tcc_error("field not found: %s", get_tok_str(tok & ~SYM_FIELD, &tokc));
4506 /* add field offset to pointer */
4507 vtop->type = char_pointer_type; /* change type to 'char *' */
4508 vpushi(s->c);
4509 gen_op('+');
4510 /* change type to field type, and set to lvalue */
4511 vtop->type = s->type;
4512 vtop->type.t |= qualifiers;
4513 /* an array is never an lvalue */
4514 if (!(vtop->type.t & VT_ARRAY)) {
4515 vtop->r |= lvalue_type(vtop->type.t);
4516 #ifdef CONFIG_TCC_BCHECK
4517 /* if bound checking, the referenced pointer must be checked */
4518 if (tcc_state->do_bounds_check && (vtop->r & VT_VALMASK) != VT_LOCAL)
4519 vtop->r |= VT_MUSTBOUND;
4520 #endif
4522 next();
4523 } else if (tok == '[') {
4524 next();
4525 gexpr();
4526 gen_op('+');
4527 indir();
4528 skip(']');
4529 } else if (tok == '(') {
4530 SValue ret;
4531 Sym *sa;
4532 int nb_args, ret_nregs, ret_align, regsize, variadic;
4534 /* function call */
4535 if ((vtop->type.t & VT_BTYPE) != VT_FUNC) {
4536 /* pointer test (no array accepted) */
4537 if ((vtop->type.t & (VT_BTYPE | VT_ARRAY)) == VT_PTR) {
4538 vtop->type = *pointed_type(&vtop->type);
4539 if ((vtop->type.t & VT_BTYPE) != VT_FUNC)
4540 goto error_func;
4541 } else {
4542 error_func:
4543 expect("function pointer");
4545 } else {
4546 vtop->r &= ~VT_LVAL; /* no lvalue */
4548 /* get return type */
4549 s = vtop->type.ref;
4550 next();
4551 sa = s->next; /* first parameter */
4552 nb_args = 0;
4553 ret.r2 = VT_CONST;
4554 /* compute first implicit argument if a structure is returned */
4555 if ((s->type.t & VT_BTYPE) == VT_STRUCT) {
4556 variadic = (s->c == FUNC_ELLIPSIS);
4557 ret_nregs = gfunc_sret(&s->type, variadic, &ret.type,
4558 &ret_align, &regsize);
4559 if (!ret_nregs) {
4560 /* get some space for the returned structure */
4561 size = type_size(&s->type, &align);
4562 #ifdef TCC_TARGET_ARM64
4563 /* On arm64, a small struct is return in registers.
4564 It is much easier to write it to memory if we know
4565 that we are allowed to write some extra bytes, so
4566 round the allocated space up to a power of 2: */
4567 if (size < 16)
4568 while (size & (size - 1))
4569 size = (size | (size - 1)) + 1;
4570 #endif
4571 loc = (loc - size) & -align;
4572 ret.type = s->type;
4573 ret.r = VT_LOCAL | VT_LVAL;
4574 /* pass it as 'int' to avoid structure arg passing
4575 problems */
4576 vseti(VT_LOCAL, loc);
4577 ret.c = vtop->c;
4578 nb_args++;
4580 } else {
4581 ret_nregs = 1;
4582 ret.type = s->type;
4585 if (ret_nregs) {
4586 /* return in register */
4587 if (is_float(ret.type.t)) {
4588 ret.r = reg_fret(ret.type.t);
4589 #ifdef TCC_TARGET_X86_64
4590 if ((ret.type.t & VT_BTYPE) == VT_QFLOAT)
4591 ret.r2 = REG_QRET;
4592 #endif
4593 } else {
4594 #ifndef TCC_TARGET_ARM64
4595 #ifdef TCC_TARGET_X86_64
4596 if ((ret.type.t & VT_BTYPE) == VT_QLONG)
4597 #else
4598 if ((ret.type.t & VT_BTYPE) == VT_LLONG)
4599 #endif
4600 ret.r2 = REG_LRET;
4601 #endif
4602 ret.r = REG_IRET;
4604 ret.c.i = 0;
4606 if (tok != ')') {
4607 for(;;) {
4608 expr_eq();
4609 gfunc_param_typed(s, sa);
4610 nb_args++;
4611 if (sa)
4612 sa = sa->next;
4613 if (tok == ')')
4614 break;
4615 skip(',');
4618 if (sa)
4619 tcc_error("too few arguments to function");
4620 skip(')');
4621 if (!nocode_wanted) {
4622 gfunc_call(nb_args);
4623 } else {
4624 vtop -= (nb_args + 1);
4627 /* return value */
4628 for (r = ret.r + ret_nregs + !ret_nregs; r-- > ret.r;) {
4629 vsetc(&ret.type, r, &ret.c);
4630 vtop->r2 = ret.r2; /* Loop only happens when r2 is VT_CONST */
4633 /* handle packed struct return */
4634 if (((s->type.t & VT_BTYPE) == VT_STRUCT) && ret_nregs) {
4635 int addr, offset;
4637 size = type_size(&s->type, &align);
4638 /* We're writing whole regs often, make sure there's enough
4639 space. Assume register size is power of 2. */
4640 if (regsize > align)
4641 align = regsize;
4642 loc = (loc - size) & -align;
4643 addr = loc;
4644 offset = 0;
4645 for (;;) {
4646 vset(&ret.type, VT_LOCAL | VT_LVAL, addr + offset);
4647 vswap();
4648 vstore();
4649 vtop--;
4650 if (--ret_nregs == 0)
4651 break;
4652 offset += regsize;
4654 vset(&s->type, VT_LOCAL | VT_LVAL, addr);
4656 } else {
4657 break;
4662 ST_FUNC void expr_prod(void)
4664 int t;
4666 unary();
4667 while (tok == '*' || tok == '/' || tok == '%') {
4668 t = tok;
4669 next();
4670 unary();
4671 gen_op(t);
4675 ST_FUNC void expr_sum(void)
4677 int t;
4679 expr_prod();
4680 while (tok == '+' || tok == '-') {
4681 t = tok;
4682 next();
4683 expr_prod();
4684 gen_op(t);
4688 static void expr_shift(void)
4690 int t;
4692 expr_sum();
4693 while (tok == TOK_SHL || tok == TOK_SAR) {
4694 t = tok;
4695 next();
4696 expr_sum();
4697 gen_op(t);
4701 static void expr_cmp(void)
4703 int t;
4705 expr_shift();
4706 while ((tok >= TOK_ULE && tok <= TOK_GT) ||
4707 tok == TOK_ULT || tok == TOK_UGE) {
4708 t = tok;
4709 next();
4710 expr_shift();
4711 gen_op(t);
4715 static void expr_cmpeq(void)
4717 int t;
4719 expr_cmp();
4720 while (tok == TOK_EQ || tok == TOK_NE) {
4721 t = tok;
4722 next();
4723 expr_cmp();
4724 gen_op(t);
4728 static void expr_and(void)
4730 expr_cmpeq();
4731 while (tok == '&') {
4732 next();
4733 expr_cmpeq();
4734 gen_op('&');
4738 static void expr_xor(void)
4740 expr_and();
4741 while (tok == '^') {
4742 next();
4743 expr_and();
4744 gen_op('^');
4748 static void expr_or(void)
4750 expr_xor();
4751 while (tok == '|') {
4752 next();
4753 expr_xor();
4754 gen_op('|');
4758 /* XXX: fix this mess */
4759 static void expr_land_const(void)
4761 expr_or();
4762 while (tok == TOK_LAND) {
4763 next();
4764 expr_or();
4765 gen_op(TOK_LAND);
4768 static void expr_lor_const(void)
4770 expr_land_const();
4771 while (tok == TOK_LOR) {
4772 next();
4773 expr_land_const();
4774 gen_op(TOK_LOR);
4778 static void expr_land(void)
4780 expr_or();
4781 if (tok == TOK_LAND) {
4782 if ((vtop->r & (VT_VALMASK | VT_LVAL | VT_SYM)) == VT_CONST) {
4783 CType ctb, cti;
4784 ctb.t = VT_BOOL;
4785 cti.t = VT_INT;
4786 next();
4787 gen_cast(&ctb);
4788 if (vtop->c.i) {
4789 vpop();
4790 expr_land();
4791 gen_cast(&ctb);
4792 } else {
4793 int saved_nocode_wanted = nocode_wanted;
4794 nocode_wanted = 1;
4795 expr_land();
4796 vpop();
4797 nocode_wanted = saved_nocode_wanted;
4799 gen_cast(&cti);
4800 } else {
4801 int t = 0;
4802 save_regs(1);
4803 for(;;) {
4804 t = gvtst(1, t);
4805 if (tok != TOK_LAND) {
4806 vseti(VT_JMPI, t);
4807 break;
4809 next();
4810 expr_or();
4816 static void expr_lor(void)
4818 expr_land();
4819 if (tok == TOK_LOR) {
4820 if ((vtop->r & (VT_VALMASK | VT_LVAL | VT_SYM)) == VT_CONST) {
4821 CType ctb, cti;
4822 ctb.t = VT_BOOL;
4823 cti.t = VT_INT;
4824 next();
4825 gen_cast(&ctb);
4826 if (vtop->c.i) {
4827 int saved_nocode_wanted = nocode_wanted;
4828 nocode_wanted = 1;
4829 expr_lor();
4830 vpop();
4831 nocode_wanted = saved_nocode_wanted;
4832 } else {
4833 vpop();
4834 expr_lor();
4835 gen_cast(&ctb);
4837 gen_cast(&cti);
4838 } else {
4839 int t = 0;
4840 save_regs(1);
4841 for(;;) {
4842 t = gvtst(0, t);
4843 if (tok != TOK_LOR) {
4844 vseti(VT_JMP, t);
4845 break;
4847 next();
4848 expr_land();
4854 static void expr_cond(void)
4856 int tt, u, r1, r2, rc, t1, t2, bt1, bt2, islv;
4857 SValue sv;
4858 CType type, type1, type2;
4860 expr_lor();
4861 if (tok == '?') {
4862 next();
4863 if ((vtop->r & (VT_VALMASK | VT_LVAL | VT_SYM)) == VT_CONST) {
4864 int saved_nocode_wanted = nocode_wanted;
4865 CType boolean;
4866 int c;
4867 boolean.t = VT_BOOL;
4868 vdup();
4869 gen_cast(&boolean);
4870 c = vtop->c.i;
4871 vpop();
4872 if (c) {
4873 if (tok != ':' || !gnu_ext) {
4874 vpop();
4875 gexpr();
4877 skip(':');
4878 nocode_wanted = 1;
4879 expr_cond();
4880 vpop();
4881 nocode_wanted = saved_nocode_wanted;
4882 } else {
4883 vpop();
4884 if (tok != ':' || !gnu_ext) {
4885 nocode_wanted = 1;
4886 gexpr();
4887 vpop();
4888 nocode_wanted = saved_nocode_wanted;
4890 skip(':');
4891 expr_cond();
4894 else {
4895 if (vtop != vstack) {
4896 /* needed to avoid having different registers saved in
4897 each branch */
4898 if (is_float(vtop->type.t)) {
4899 rc = RC_FLOAT;
4900 #ifdef TCC_TARGET_X86_64
4901 if ((vtop->type.t & VT_BTYPE) == VT_LDOUBLE) {
4902 rc = RC_ST0;
4904 #endif
4906 else
4907 rc = RC_INT;
4908 gv(rc);
4909 save_regs(1);
4911 if (tok == ':' && gnu_ext) {
4912 gv_dup();
4913 tt = gvtst(1, 0);
4914 } else {
4915 tt = gvtst(1, 0);
4916 gexpr();
4918 type1 = vtop->type;
4919 sv = *vtop; /* save value to handle it later */
4920 vtop--; /* no vpop so that FP stack is not flushed */
4921 skip(':');
4922 u = gjmp(0);
4923 gsym(tt);
4924 expr_cond();
4925 type2 = vtop->type;
4927 t1 = type1.t;
4928 bt1 = t1 & VT_BTYPE;
4929 t2 = type2.t;
4930 bt2 = t2 & VT_BTYPE;
4931 /* cast operands to correct type according to ISOC rules */
4932 if (is_float(bt1) || is_float(bt2)) {
4933 if (bt1 == VT_LDOUBLE || bt2 == VT_LDOUBLE) {
4934 type.t = VT_LDOUBLE;
4935 } else if (bt1 == VT_DOUBLE || bt2 == VT_DOUBLE) {
4936 type.t = VT_DOUBLE;
4937 } else {
4938 type.t = VT_FLOAT;
4940 } else if (bt1 == VT_LLONG || bt2 == VT_LLONG) {
4941 /* cast to biggest op */
4942 type.t = VT_LLONG;
4943 /* convert to unsigned if it does not fit in a long long */
4944 if ((t1 & (VT_BTYPE | VT_UNSIGNED)) == (VT_LLONG | VT_UNSIGNED) ||
4945 (t2 & (VT_BTYPE | VT_UNSIGNED)) == (VT_LLONG | VT_UNSIGNED))
4946 type.t |= VT_UNSIGNED;
4947 } else if (bt1 == VT_PTR || bt2 == VT_PTR) {
4948 /* If one is a null ptr constant the result type
4949 is the other. */
4950 if (is_null_pointer (vtop))
4951 type = type1;
4952 else if (is_null_pointer (&sv))
4953 type = type2;
4954 /* XXX: test pointer compatibility, C99 has more elaborate
4955 rules here. */
4956 else
4957 type = type1;
4958 } else if (bt1 == VT_FUNC || bt2 == VT_FUNC) {
4959 /* XXX: test function pointer compatibility */
4960 type = bt1 == VT_FUNC ? type1 : type2;
4961 } else if (bt1 == VT_STRUCT || bt2 == VT_STRUCT) {
4962 /* XXX: test structure compatibility */
4963 type = bt1 == VT_STRUCT ? type1 : type2;
4964 } else if (bt1 == VT_VOID || bt2 == VT_VOID) {
4965 /* NOTE: as an extension, we accept void on only one side */
4966 type.t = VT_VOID;
4967 } else {
4968 /* integer operations */
4969 type.t = VT_INT;
4970 /* convert to unsigned if it does not fit in an integer */
4971 if ((t1 & (VT_BTYPE | VT_UNSIGNED)) == (VT_INT | VT_UNSIGNED) ||
4972 (t2 & (VT_BTYPE | VT_UNSIGNED)) == (VT_INT | VT_UNSIGNED))
4973 type.t |= VT_UNSIGNED;
4975 /* keep structs lvalue by transforming `(expr ? a : b)` to `*(expr ? &a : &b)` so
4976 that `(expr ? a : b).mem` does not error with "lvalue expected" */
4977 islv = (vtop->r & VT_LVAL) && (sv.r & VT_LVAL) && VT_STRUCT == (type.t & VT_BTYPE);
4979 /* now we convert second operand */
4980 gen_cast(&type);
4981 if (islv) {
4982 mk_pointer(&vtop->type);
4983 gaddrof();
4985 else if (VT_STRUCT == (vtop->type.t & VT_BTYPE))
4986 gaddrof();
4987 rc = RC_INT;
4988 if (is_float(type.t)) {
4989 rc = RC_FLOAT;
4990 #ifdef TCC_TARGET_X86_64
4991 if ((type.t & VT_BTYPE) == VT_LDOUBLE) {
4992 rc = RC_ST0;
4994 #endif
4995 } else if ((type.t & VT_BTYPE) == VT_LLONG) {
4996 /* for long longs, we use fixed registers to avoid having
4997 to handle a complicated move */
4998 rc = RC_IRET;
5001 r2 = gv(rc);
5002 /* this is horrible, but we must also convert first
5003 operand */
5004 tt = gjmp(0);
5005 gsym(u);
5006 /* put again first value and cast it */
5007 *vtop = sv;
5008 gen_cast(&type);
5009 if (islv) {
5010 mk_pointer(&vtop->type);
5011 gaddrof();
5013 else if (VT_STRUCT == (vtop->type.t & VT_BTYPE))
5014 gaddrof();
5015 r1 = gv(rc);
5016 move_reg(r2, r1, type.t);
5017 vtop->r = r2;
5018 gsym(tt);
5019 if (islv)
5020 indir();
5025 static void expr_eq(void)
5027 int t;
5029 expr_cond();
5030 if (tok == '=' ||
5031 (tok >= TOK_A_MOD && tok <= TOK_A_DIV) ||
5032 tok == TOK_A_XOR || tok == TOK_A_OR ||
5033 tok == TOK_A_SHL || tok == TOK_A_SAR) {
5034 test_lvalue();
5035 t = tok;
5036 next();
5037 if (t == '=') {
5038 expr_eq();
5039 } else {
5040 vdup();
5041 expr_eq();
5042 gen_op(t & 0x7f);
5044 vstore();
5048 ST_FUNC void gexpr(void)
5050 while (1) {
5051 expr_eq();
5052 if (tok != ',')
5053 break;
5054 vpop();
5055 next();
5059 /* parse an expression and return its type without any side effect. */
5060 static void expr_type(CType *type)
5062 int saved_nocode_wanted;
5064 saved_nocode_wanted = nocode_wanted;
5065 nocode_wanted = 1;
5066 gexpr();
5067 *type = vtop->type;
5068 vpop();
5069 nocode_wanted = saved_nocode_wanted;
5072 /* parse a unary expression and return its type without any side
5073 effect. */
5074 static void unary_type(CType *type)
5076 int a;
5078 a = nocode_wanted;
5079 nocode_wanted = 1;
5080 unary();
5081 *type = vtop->type;
5082 vpop();
5083 nocode_wanted = a;
5086 /* parse a constant expression and return value in vtop. */
5087 static void expr_const1(void)
5089 int a;
5090 a = const_wanted;
5091 const_wanted = 1;
5092 expr_cond();
5093 const_wanted = a;
5096 /* parse an integer constant and return its value. */
5097 ST_FUNC int expr_const(void)
5099 int c;
5100 expr_const1();
5101 if ((vtop->r & (VT_VALMASK | VT_LVAL | VT_SYM)) != VT_CONST)
5102 expect("constant expression");
5103 c = vtop->c.i;
5104 vpop();
5105 return c;
5108 /* return the label token if current token is a label, otherwise
5109 return zero */
5110 static int is_label(void)
5112 int last_tok;
5114 /* fast test first */
5115 if (tok < TOK_UIDENT)
5116 return 0;
5117 /* no need to save tokc because tok is an identifier */
5118 last_tok = tok;
5119 next();
5120 if (tok == ':') {
5121 next();
5122 return last_tok;
5123 } else {
5124 unget_tok(last_tok);
5125 return 0;
5129 static void label_or_decl(int l)
5131 int last_tok;
5133 /* fast test first */
5134 if (tok >= TOK_UIDENT)
5136 /* no need to save tokc because tok is an identifier */
5137 last_tok = tok;
5138 next();
5139 if (tok == ':') {
5140 unget_tok(last_tok);
5141 return;
5143 unget_tok(last_tok);
5145 decl(l);
5148 static int case_cmp(const void *pa, const void *pb)
5150 int a = (*(struct case_t**) pa)->v1;
5151 int b = (*(struct case_t**) pb)->v1;
5152 return a < b ? -1 : a > b;
5155 static int gcase(struct case_t **base, int len, int case_reg, int *bsym)
5157 struct case_t *p;
5158 int e;
5159 while (len > 4) {
5160 /* binary search */
5161 p = base[len/2];
5162 vseti(case_reg, 0);
5163 vdup();
5164 vpushi(p->v2);
5165 gen_op(TOK_LE);
5166 e = gtst(1, 0);
5167 case_reg = gv(RC_INT);
5168 vpop();
5169 vseti(case_reg, 0);
5170 vdup();
5171 vpushi(p->v1);
5172 gen_op(TOK_GE);
5173 gtst_addr(0, p->sym); /* v1 <= x <= v2 */
5174 case_reg = gv(RC_INT);
5175 vpop();
5176 /* x < v1 */
5177 case_reg = gcase(base, len/2, case_reg, bsym);
5178 if (cur_switch->def_sym)
5179 gjmp_addr(cur_switch->def_sym);
5180 else
5181 *bsym = gjmp(*bsym);
5182 /* x > v2 */
5183 gsym(e);
5184 e = len/2 + 1;
5185 base += e; len -= e;
5187 /* linear scan */
5188 while (len--) {
5189 p = *base++;
5190 vseti(case_reg, 0);
5191 vdup();
5192 vpushi(p->v2);
5193 if (p->v1 == p->v2) {
5194 gen_op(TOK_EQ);
5195 gtst_addr(0, p->sym);
5196 } else {
5197 gen_op(TOK_LE);
5198 e = gtst(1, 0);
5199 case_reg = gv(RC_INT);
5200 vpop();
5201 vseti(case_reg, 0);
5202 vdup();
5203 vpushi(p->v1);
5204 gen_op(TOK_GE);
5205 gtst_addr(0, p->sym);
5206 gsym(e);
5208 case_reg = gv(RC_INT);
5209 vpop();
5211 return case_reg;
5214 static void block(int *bsym, int *csym, int is_expr)
5216 int a, b, c, d;
5217 Sym *s;
5219 /* generate line number info */
5220 if (tcc_state->do_debug &&
5221 (last_line_num != file->line_num || last_ind != ind)) {
5222 put_stabn(N_SLINE, 0, file->line_num, ind - func_ind);
5223 last_ind = ind;
5224 last_line_num = file->line_num;
5227 if (is_expr) {
5228 /* default return value is (void) */
5229 vpushi(0);
5230 vtop->type.t = VT_VOID;
5233 if (tok == TOK_IF) {
5234 /* if test */
5235 next();
5236 skip('(');
5237 gexpr();
5238 skip(')');
5239 a = gvtst(1, 0);
5240 block(bsym, csym, 0);
5241 c = tok;
5242 if (c == TOK_ELSE) {
5243 next();
5244 d = gjmp(0);
5245 gsym(a);
5246 block(bsym, csym, 0);
5247 gsym(d); /* patch else jmp */
5248 } else
5249 gsym(a);
5250 } else if (tok == TOK_WHILE) {
5251 next();
5252 d = ind;
5253 vla_sp_restore();
5254 skip('(');
5255 gexpr();
5256 skip(')');
5257 a = gvtst(1, 0);
5258 b = 0;
5259 ++local_scope;
5260 block(&a, &b, 0);
5261 --local_scope;
5262 if(!nocode_wanted)
5263 gjmp_addr(d);
5264 gsym(a);
5265 gsym_addr(b, d);
5266 } else if (tok == '{') {
5267 Sym *llabel;
5268 int block_vla_sp_loc = vla_sp_loc, saved_vlas_in_scope = vlas_in_scope;
5270 next();
5271 /* record local declaration stack position */
5272 s = local_stack;
5273 llabel = local_label_stack;
5274 ++local_scope;
5276 /* handle local labels declarations */
5277 if (tok == TOK_LABEL) {
5278 next();
5279 for(;;) {
5280 if (tok < TOK_UIDENT)
5281 expect("label identifier");
5282 label_push(&local_label_stack, tok, LABEL_DECLARED);
5283 next();
5284 if (tok == ',') {
5285 next();
5286 } else {
5287 skip(';');
5288 break;
5292 while (tok != '}') {
5293 label_or_decl(VT_LOCAL);
5294 if (tok != '}') {
5295 if (is_expr)
5296 vpop();
5297 block(bsym, csym, is_expr);
5300 /* pop locally defined labels */
5301 label_pop(&local_label_stack, llabel);
5302 if(is_expr) {
5303 /* XXX: this solution makes only valgrind happy...
5304 triggered by gcc.c-torture/execute/20000917-1.c */
5305 Sym *p;
5306 switch(vtop->type.t & VT_BTYPE) {
5307 /* case VT_PTR: */
5308 /* this breaks a compilation of the linux kernel v2.4.26 */
5309 /* pmd_t *new = ({ __asm__ __volatile__("ud2\n") ; ((pmd_t *)1); }); */
5310 /* Look a commit a80acab: Display error on statement expressions with complex return type */
5311 /* A pointer is not a complex return type */
5312 case VT_STRUCT:
5313 case VT_ENUM:
5314 case VT_FUNC:
5315 for(p=vtop->type.ref;p;p=p->prev)
5316 if(p->prev==s)
5317 tcc_error("unsupported expression type");
5320 /* pop locally defined symbols */
5321 --local_scope;
5322 sym_pop(&local_stack, s);
5324 /* Pop VLA frames and restore stack pointer if required */
5325 if (vlas_in_scope > saved_vlas_in_scope) {
5326 vla_sp_loc = saved_vlas_in_scope ? block_vla_sp_loc : vla_sp_root_loc;
5327 vla_sp_restore();
5329 vlas_in_scope = saved_vlas_in_scope;
5331 next();
5332 } else if (tok == TOK_RETURN) {
5333 next();
5334 if (tok != ';') {
5335 gexpr();
5336 gen_assign_cast(&func_vt);
5337 #ifdef TCC_TARGET_ARM64
5338 // Perhaps it would be better to use this for all backends:
5339 greturn();
5340 #else
5341 if ((func_vt.t & VT_BTYPE) == VT_STRUCT) {
5342 CType type, ret_type;
5343 int ret_align, ret_nregs, regsize;
5344 ret_nregs = gfunc_sret(&func_vt, func_var, &ret_type,
5345 &ret_align, &regsize);
5346 if (0 == ret_nregs) {
5347 /* if returning structure, must copy it to implicit
5348 first pointer arg location */
5349 type = func_vt;
5350 mk_pointer(&type);
5351 vset(&type, VT_LOCAL | VT_LVAL, func_vc);
5352 indir();
5353 vswap();
5354 /* copy structure value to pointer */
5355 vstore();
5356 } else {
5357 /* returning structure packed into registers */
5358 int r, size, addr, align;
5359 size = type_size(&func_vt,&align);
5360 if ((vtop->r != (VT_LOCAL | VT_LVAL) ||
5361 (vtop->c.i & (ret_align-1)))
5362 && (align & (ret_align-1))) {
5363 loc = (loc - size) & -ret_align;
5364 addr = loc;
5365 type = func_vt;
5366 vset(&type, VT_LOCAL | VT_LVAL, addr);
5367 vswap();
5368 vstore();
5369 vpop();
5370 vset(&ret_type, VT_LOCAL | VT_LVAL, addr);
5372 vtop->type = ret_type;
5373 if (is_float(ret_type.t))
5374 r = rc_fret(ret_type.t);
5375 else
5376 r = RC_IRET;
5378 if (ret_nregs == 1)
5379 gv(r);
5380 else {
5381 for (;;) {
5382 vdup();
5383 gv(r);
5384 vpop();
5385 if (--ret_nregs == 0)
5386 break;
5387 /* We assume that when a structure is returned in multiple
5388 registers, their classes are consecutive values of the
5389 suite s(n) = 2^n */
5390 r <<= 1;
5391 vtop->c.i += regsize;
5395 } else if (is_float(func_vt.t)) {
5396 gv(rc_fret(func_vt.t));
5397 } else {
5398 gv(RC_IRET);
5400 #endif
5401 vtop--; /* NOT vpop() because on x86 it would flush the fp stack */
5403 skip(';');
5404 /* jump unless last stmt in top-level block */
5405 if (tok != '}' || local_scope != 1)
5406 rsym = gjmp(rsym);
5407 } else if (tok == TOK_BREAK) {
5408 /* compute jump */
5409 if (!bsym)
5410 tcc_error("cannot break");
5411 *bsym = gjmp(*bsym);
5412 next();
5413 skip(';');
5414 } else if (tok == TOK_CONTINUE) {
5415 /* compute jump */
5416 if (!csym)
5417 tcc_error("cannot continue");
5418 vla_sp_restore_root();
5419 *csym = gjmp(*csym);
5420 next();
5421 skip(';');
5422 } else if (tok == TOK_FOR) {
5423 int e;
5424 next();
5425 skip('(');
5426 s = local_stack;
5427 ++local_scope;
5428 if (tok != ';') {
5429 /* c99 for-loop init decl? */
5430 if (!decl0(VT_LOCAL, 1)) {
5431 /* no, regular for-loop init expr */
5432 gexpr();
5433 vpop();
5436 skip(';');
5437 d = ind;
5438 c = ind;
5439 vla_sp_restore();
5440 a = 0;
5441 b = 0;
5442 if (tok != ';') {
5443 gexpr();
5444 a = gvtst(1, 0);
5446 skip(';');
5447 if (tok != ')') {
5448 e = gjmp(0);
5449 c = ind;
5450 vla_sp_restore();
5451 gexpr();
5452 vpop();
5453 gjmp_addr(d);
5454 gsym(e);
5456 skip(')');
5457 block(&a, &b, 0);
5458 if(!nocode_wanted)
5459 gjmp_addr(c);
5460 gsym(a);
5461 gsym_addr(b, c);
5462 --local_scope;
5463 sym_pop(&local_stack, s);
5465 } else
5466 if (tok == TOK_DO) {
5467 next();
5468 a = 0;
5469 b = 0;
5470 d = ind;
5471 vla_sp_restore();
5472 block(&a, &b, 0);
5473 skip(TOK_WHILE);
5474 skip('(');
5475 gsym(b);
5476 gexpr();
5477 c = gvtst(0, 0);
5478 gsym_addr(c, d);
5479 skip(')');
5480 gsym(a);
5481 skip(';');
5482 } else
5483 if (tok == TOK_SWITCH) {
5484 struct switch_t *saved, sw;
5485 next();
5486 skip('(');
5487 gexpr();
5488 /* XXX: other types than integer */
5489 c = gv(RC_INT);
5490 vpop();
5491 skip(')');
5492 a = 0;
5493 b = gjmp(0); /* jump to first case */
5494 sw.p = NULL; sw.n = 0; sw.def_sym = 0;
5495 saved = cur_switch;
5496 cur_switch = &sw;
5497 block(&a, csym, 0);
5498 a = gjmp(a); /* add implicit break */
5499 /* case lookup */
5500 gsym(b);
5501 qsort(sw.p, sw.n, sizeof(void*), case_cmp);
5502 for (b = 1; b < sw.n; b++)
5503 if (sw.p[b - 1]->v2 >= sw.p[b]->v1)
5504 tcc_error("duplicate case value");
5505 gcase(sw.p, sw.n, c, &a);
5506 if (sw.def_sym)
5507 gjmp_addr(sw.def_sym);
5508 dynarray_reset(&sw.p, &sw.n);
5509 cur_switch = saved;
5510 /* break label */
5511 gsym(a);
5512 } else
5513 if (tok == TOK_CASE) {
5514 struct case_t *cr = tcc_malloc(sizeof(struct case_t));
5515 if (!cur_switch)
5516 expect("switch");
5517 next();
5518 cr->v1 = cr->v2 = expr_const();
5519 if (gnu_ext && tok == TOK_DOTS) {
5520 next();
5521 cr->v2 = expr_const();
5522 if (cr->v2 < cr->v1)
5523 tcc_warning("empty case range");
5525 cr->sym = ind;
5526 dynarray_add((void***) &cur_switch->p, &cur_switch->n, cr);
5527 skip(':');
5528 is_expr = 0;
5529 goto block_after_label;
5530 } else
5531 if (tok == TOK_DEFAULT) {
5532 next();
5533 skip(':');
5534 if (!cur_switch)
5535 expect("switch");
5536 if (cur_switch->def_sym)
5537 tcc_error("too many 'default'");
5538 cur_switch->def_sym = ind;
5539 is_expr = 0;
5540 goto block_after_label;
5541 } else
5542 if (tok == TOK_GOTO) {
5543 next();
5544 if (tok == '*' && gnu_ext) {
5545 /* computed goto */
5546 next();
5547 gexpr();
5548 if ((vtop->type.t & VT_BTYPE) != VT_PTR)
5549 expect("pointer");
5550 ggoto();
5551 } else if (tok >= TOK_UIDENT) {
5552 s = label_find(tok);
5553 /* put forward definition if needed */
5554 if (!s) {
5555 s = label_push(&global_label_stack, tok, LABEL_FORWARD);
5556 } else {
5557 if (s->r == LABEL_DECLARED)
5558 s->r = LABEL_FORWARD;
5560 vla_sp_restore_root();
5561 if (s->r & LABEL_FORWARD)
5562 s->jnext = gjmp(s->jnext);
5563 else
5564 gjmp_addr(s->jnext);
5565 next();
5566 } else {
5567 expect("label identifier");
5569 skip(';');
5570 } else if (tok == TOK_ASM1 || tok == TOK_ASM2 || tok == TOK_ASM3) {
5571 asm_instr();
5572 } else {
5573 b = is_label();
5574 if (b) {
5575 /* label case */
5576 s = label_find(b);
5577 if (s) {
5578 if (s->r == LABEL_DEFINED)
5579 tcc_error("duplicate label '%s'", get_tok_str(s->v, NULL));
5580 gsym(s->jnext);
5581 s->r = LABEL_DEFINED;
5582 } else {
5583 s = label_push(&global_label_stack, b, LABEL_DEFINED);
5585 s->jnext = ind;
5586 vla_sp_restore();
5587 /* we accept this, but it is a mistake */
5588 block_after_label:
5589 if (tok == '}') {
5590 tcc_warning("deprecated use of label at end of compound statement");
5591 } else {
5592 if (is_expr)
5593 vpop();
5594 block(bsym, csym, is_expr);
5596 } else {
5597 /* expression case */
5598 if (tok != ';') {
5599 if (is_expr) {
5600 vpop();
5601 gexpr();
5602 } else {
5603 gexpr();
5604 vpop();
5607 skip(';');
5612 /* t is the array or struct type. c is the array or struct
5613 address. cur_index/cur_field is the pointer to the current
5614 value. 'size_only' is true if only size info is needed (only used
5615 in arrays) */
5616 static void decl_designator(CType *type, Section *sec, unsigned long c,
5617 int *cur_index, Sym **cur_field,
5618 int size_only)
5620 Sym *s, *f;
5621 int notfirst, index, index_last, align, l, nb_elems, elem_size;
5622 CType type1;
5624 notfirst = 0;
5625 elem_size = 0;
5626 nb_elems = 1;
5627 if (gnu_ext && (l = is_label()) != 0)
5628 goto struct_field;
5629 while (tok == '[' || tok == '.') {
5630 if (tok == '[') {
5631 if (!(type->t & VT_ARRAY))
5632 expect("array type");
5633 s = type->ref;
5634 next();
5635 index = expr_const();
5636 if (index < 0 || (s->c >= 0 && index >= s->c))
5637 expect("invalid index");
5638 if (tok == TOK_DOTS && gnu_ext) {
5639 next();
5640 index_last = expr_const();
5641 if (index_last < 0 ||
5642 (s->c >= 0 && index_last >= s->c) ||
5643 index_last < index)
5644 expect("invalid index");
5645 } else {
5646 index_last = index;
5648 skip(']');
5649 if (!notfirst)
5650 *cur_index = index_last;
5651 type = pointed_type(type);
5652 elem_size = type_size(type, &align);
5653 c += index * elem_size;
5654 /* NOTE: we only support ranges for last designator */
5655 nb_elems = index_last - index + 1;
5656 if (nb_elems != 1) {
5657 notfirst = 1;
5658 break;
5660 } else {
5661 next();
5662 l = tok;
5663 next();
5664 struct_field:
5665 if ((type->t & VT_BTYPE) != VT_STRUCT)
5666 expect("struct/union type");
5667 s = type->ref;
5668 l |= SYM_FIELD;
5669 f = s->next;
5670 while (f) {
5671 if (f->v == l)
5672 break;
5673 f = f->next;
5675 if (!f)
5676 expect("field");
5677 if (!notfirst)
5678 *cur_field = f;
5679 /* XXX: fix this mess by using explicit storage field */
5680 type1 = f->type;
5681 type1.t |= (type->t & ~VT_TYPE);
5682 type = &type1;
5683 c += f->c;
5685 notfirst = 1;
5687 if (notfirst) {
5688 if (tok == '=') {
5689 next();
5690 } else {
5691 if (!gnu_ext)
5692 expect("=");
5694 } else {
5695 if (type->t & VT_ARRAY) {
5696 index = *cur_index;
5697 type = pointed_type(type);
5698 c += index * type_size(type, &align);
5699 } else {
5700 f = *cur_field;
5701 if (!f)
5702 tcc_error("too many field init");
5703 /* XXX: fix this mess by using explicit storage field */
5704 type1 = f->type;
5705 type1.t |= (type->t & ~VT_TYPE);
5706 type = &type1;
5707 c += f->c;
5710 decl_initializer(type, sec, c, 0, size_only);
5712 /* XXX: make it more general */
5713 if (!size_only && nb_elems > 1) {
5714 unsigned long c_end;
5715 uint8_t *src, *dst;
5716 int i;
5718 if (!sec)
5719 tcc_error("range init not supported yet for dynamic storage");
5720 c_end = c + nb_elems * elem_size;
5721 if (c_end > sec->data_allocated)
5722 section_realloc(sec, c_end);
5723 src = sec->data + c;
5724 dst = src;
5725 for(i = 1; i < nb_elems; i++) {
5726 dst += elem_size;
5727 memcpy(dst, src, elem_size);
5732 #define EXPR_VAL 0
5733 #define EXPR_CONST 1
5734 #define EXPR_ANY 2
5736 /* store a value or an expression directly in global data or in local array */
5737 static void init_putv(CType *type, Section *sec, unsigned long c,
5738 int v, int expr_type)
5740 int saved_global_expr, bt, bit_pos, bit_size;
5741 void *ptr;
5742 unsigned long long bit_mask;
5743 CType dtype;
5745 switch(expr_type) {
5746 case EXPR_VAL:
5747 vpushi(v);
5748 break;
5749 case EXPR_CONST:
5750 /* compound literals must be allocated globally in this case */
5751 saved_global_expr = global_expr;
5752 global_expr = 1;
5753 expr_const1();
5754 global_expr = saved_global_expr;
5755 /* NOTE: symbols are accepted */
5756 if ((vtop->r & (VT_VALMASK | VT_LVAL)) != VT_CONST)
5757 tcc_error("initializer element is not constant");
5758 break;
5759 case EXPR_ANY:
5760 expr_eq();
5761 break;
5764 dtype = *type;
5765 dtype.t &= ~VT_CONSTANT; /* need to do that to avoid false warning */
5767 if (sec) {
5768 /* XXX: not portable */
5769 /* XXX: generate error if incorrect relocation */
5770 gen_assign_cast(&dtype);
5771 bt = type->t & VT_BTYPE;
5772 /* we'll write at most 16 bytes */
5773 if (c + 16 > sec->data_allocated) {
5774 section_realloc(sec, c + 16);
5776 ptr = sec->data + c;
5777 /* XXX: make code faster ? */
5778 if (!(type->t & VT_BITFIELD)) {
5779 bit_pos = 0;
5780 bit_size = PTR_SIZE * 8;
5781 bit_mask = -1LL;
5782 } else {
5783 bit_pos = (vtop->type.t >> VT_STRUCT_SHIFT) & 0x3f;
5784 bit_size = (vtop->type.t >> (VT_STRUCT_SHIFT + 6)) & 0x3f;
5785 bit_mask = (1LL << bit_size) - 1;
5787 if ((vtop->r & VT_SYM) &&
5788 (bt == VT_BYTE ||
5789 bt == VT_SHORT ||
5790 bt == VT_DOUBLE ||
5791 bt == VT_LDOUBLE ||
5792 #if PTR_SIZE == 8
5793 (bt == VT_LLONG && bit_size != 64) ||
5794 bt == VT_INT
5795 #else
5796 bt == VT_LLONG ||
5797 (bt == VT_INT && bit_size != 32)
5798 #endif
5800 tcc_error("initializer element is not computable at load time");
5801 switch(bt) {
5802 /* XXX: when cross-compiling we assume that each type has the
5803 same representation on host and target, which is likely to
5804 be wrong in the case of long double */
5805 case VT_BOOL:
5806 vtop->c.i = (vtop->c.i != 0);
5807 case VT_BYTE:
5808 *(char *)ptr |= (vtop->c.i & bit_mask) << bit_pos;
5809 break;
5810 case VT_SHORT:
5811 *(short *)ptr |= (vtop->c.i & bit_mask) << bit_pos;
5812 break;
5813 case VT_DOUBLE:
5814 *(double *)ptr = vtop->c.d;
5815 break;
5816 case VT_LDOUBLE:
5817 if (sizeof(long double) == LDOUBLE_SIZE)
5818 *(long double *)ptr = vtop->c.ld;
5819 else if (sizeof(double) == LDOUBLE_SIZE)
5820 *(double *)ptr = vtop->c.ld;
5821 else
5822 tcc_error("can't cross compile long double constants");
5823 break;
5824 #if PTR_SIZE != 8
5825 case VT_LLONG:
5826 *(long long *)ptr |= (vtop->c.i & bit_mask) << bit_pos;
5827 break;
5828 #else
5829 case VT_LLONG:
5830 #endif
5831 case VT_PTR: {
5832 addr_t val = (vtop->c.i & bit_mask) << bit_pos;
5833 #if defined(TCC_TARGET_ARM64) || defined(TCC_TARGET_X86_64)
5834 if (vtop->r & VT_SYM)
5835 greloca(sec, vtop->sym, c, R_DATA_PTR, val);
5836 else
5837 *(addr_t *)ptr |= val;
5838 #else
5839 if (vtop->r & VT_SYM)
5840 greloc(sec, vtop->sym, c, R_DATA_PTR);
5841 *(addr_t *)ptr |= val;
5842 #endif
5843 break;
5845 default: {
5846 int val = (vtop->c.i & bit_mask) << bit_pos;
5847 #if defined(TCC_TARGET_ARM64) || defined(TCC_TARGET_X86_64)
5848 if (vtop->r & VT_SYM)
5849 greloca(sec, vtop->sym, c, R_DATA_PTR, val);
5850 else
5851 *(int *)ptr |= val;
5852 #else
5853 if (vtop->r & VT_SYM)
5854 greloc(sec, vtop->sym, c, R_DATA_PTR);
5855 *(int *)ptr |= val;
5856 #endif
5857 break;
5860 vtop--;
5861 } else {
5862 vset(&dtype, VT_LOCAL|VT_LVAL, c);
5863 vswap();
5864 vstore();
5865 vpop();
5869 /* put zeros for variable based init */
5870 static void init_putz(CType *t, Section *sec, unsigned long c, int size)
5872 if (sec) {
5873 /* nothing to do because globals are already set to zero */
5874 } else {
5875 vpush_global_sym(&func_old_type, TOK_memset);
5876 vseti(VT_LOCAL, c);
5877 #ifdef TCC_TARGET_ARM
5878 vpushs(size);
5879 vpushi(0);
5880 #else
5881 vpushi(0);
5882 vpushs(size);
5883 #endif
5884 gfunc_call(3);
5888 /* 't' contains the type and storage info. 'c' is the offset of the
5889 object in section 'sec'. If 'sec' is NULL, it means stack based
5890 allocation. 'first' is true if array '{' must be read (multi
5891 dimension implicit array init handling). 'size_only' is true if
5892 size only evaluation is wanted (only for arrays). */
5893 static void decl_initializer(CType *type, Section *sec, unsigned long c,
5894 int first, int size_only)
5896 int index, array_length, n, no_oblock, nb, parlevel, parlevel1, i;
5897 int size1, align1, expr_type;
5898 Sym *s, *f;
5899 CType *t1;
5901 if (type->t & VT_VLA) {
5902 int a;
5904 /* save current stack pointer */
5905 if (vlas_in_scope == 0) {
5906 if (vla_sp_root_loc == -1)
5907 vla_sp_root_loc = (loc -= PTR_SIZE);
5908 gen_vla_sp_save(vla_sp_root_loc);
5911 vla_runtime_type_size(type, &a);
5912 gen_vla_alloc(type, a);
5913 gen_vla_sp_save(c);
5914 vla_sp_loc = c;
5915 vlas_in_scope++;
5916 } else if (type->t & VT_ARRAY) {
5917 s = type->ref;
5918 n = s->c;
5919 array_length = 0;
5920 t1 = pointed_type(type);
5921 size1 = type_size(t1, &align1);
5923 no_oblock = 1;
5924 if ((first && tok != TOK_LSTR && tok != TOK_STR) ||
5925 tok == '{') {
5926 if (tok != '{')
5927 tcc_error("character array initializer must be a literal,"
5928 " optionally enclosed in braces");
5929 skip('{');
5930 no_oblock = 0;
5933 /* only parse strings here if correct type (otherwise: handle
5934 them as ((w)char *) expressions */
5935 if ((tok == TOK_LSTR &&
5936 #ifdef TCC_TARGET_PE
5937 (t1->t & VT_BTYPE) == VT_SHORT && (t1->t & VT_UNSIGNED)
5938 #else
5939 (t1->t & VT_BTYPE) == VT_INT
5940 #endif
5941 ) || (tok == TOK_STR && (t1->t & VT_BTYPE) == VT_BYTE)) {
5942 while (tok == TOK_STR || tok == TOK_LSTR) {
5943 int cstr_len, ch;
5945 /* compute maximum number of chars wanted */
5946 if (tok == TOK_STR)
5947 cstr_len = tokc.str.size;
5948 else
5949 cstr_len = tokc.str.size / sizeof(nwchar_t);
5950 cstr_len--;
5951 nb = cstr_len;
5952 if (n >= 0 && nb > (n - array_length))
5953 nb = n - array_length;
5954 if (!size_only) {
5955 if (cstr_len > nb)
5956 tcc_warning("initializer-string for array is too long");
5957 /* in order to go faster for common case (char
5958 string in global variable, we handle it
5959 specifically */
5960 if (sec && tok == TOK_STR && size1 == 1) {
5961 memcpy(sec->data + c + array_length, tokc.str.data, nb);
5962 } else {
5963 for(i=0;i<nb;i++) {
5964 if (tok == TOK_STR)
5965 ch = ((unsigned char *)tokc.str.data)[i];
5966 else
5967 ch = ((nwchar_t *)tokc.str.data)[i];
5968 init_putv(t1, sec, c + (array_length + i) * size1,
5969 ch, EXPR_VAL);
5973 array_length += nb;
5974 next();
5976 /* only add trailing zero if enough storage (no
5977 warning in this case since it is standard) */
5978 if (n < 0 || array_length < n) {
5979 if (!size_only) {
5980 init_putv(t1, sec, c + (array_length * size1), 0, EXPR_VAL);
5982 array_length++;
5984 } else {
5985 index = 0;
5986 while (tok != '}') {
5987 decl_designator(type, sec, c, &index, NULL, size_only);
5988 if (n >= 0 && index >= n)
5989 tcc_error("index too large");
5990 /* must put zero in holes (note that doing it that way
5991 ensures that it even works with designators) */
5992 if (!size_only && array_length < index) {
5993 init_putz(t1, sec, c + array_length * size1,
5994 (index - array_length) * size1);
5996 index++;
5997 if (index > array_length)
5998 array_length = index;
5999 /* special test for multi dimensional arrays (may not
6000 be strictly correct if designators are used at the
6001 same time) */
6002 if (index >= n && no_oblock)
6003 break;
6004 if (tok == '}')
6005 break;
6006 skip(',');
6009 if (!no_oblock)
6010 skip('}');
6011 /* put zeros at the end */
6012 if (!size_only && n >= 0 && array_length < n) {
6013 init_putz(t1, sec, c + array_length * size1,
6014 (n - array_length) * size1);
6016 /* patch type size if needed */
6017 if (n < 0)
6018 s->c = array_length;
6019 } else if ((type->t & VT_BTYPE) == VT_STRUCT &&
6020 (sec || !first || tok == '{')) {
6022 /* NOTE: the previous test is a specific case for automatic
6023 struct/union init */
6024 /* XXX: union needs only one init */
6026 int par_count = 0;
6027 if (tok == '(') {
6028 AttributeDef ad1;
6029 CType type1;
6030 next();
6031 if (tcc_state->old_struct_init_code) {
6032 /* an old version of struct initialization.
6033 It have a problems. But with a new version
6034 linux 2.4.26 can't load ramdisk.
6036 while (tok == '(') {
6037 par_count++;
6038 next();
6040 if (!parse_btype(&type1, &ad1))
6041 expect("cast");
6042 type_decl(&type1, &ad1, &n, TYPE_ABSTRACT);
6043 #if 0
6044 if (!is_assignable_types(type, &type1))
6045 tcc_error("invalid type for cast");
6046 #endif
6047 skip(')');
6049 else
6051 if (tok != '(') {
6052 if (!parse_btype(&type1, &ad1))
6053 expect("cast");
6054 type_decl(&type1, &ad1, &n, TYPE_ABSTRACT);
6055 #if 0
6056 if (!is_assignable_types(type, &type1))
6057 tcc_error("invalid type for cast");
6058 #endif
6059 skip(')');
6060 } else
6061 unget_tok(tok);
6065 no_oblock = 1;
6066 if (first || tok == '{') {
6067 skip('{');
6068 no_oblock = 0;
6070 s = type->ref;
6071 f = s->next;
6072 array_length = 0;
6073 index = 0;
6074 n = s->c;
6075 while (tok != '}') {
6076 decl_designator(type, sec, c, NULL, &f, size_only);
6077 index = f->c;
6078 if (!size_only && array_length < index) {
6079 init_putz(type, sec, c + array_length,
6080 index - array_length);
6082 index = index + type_size(&f->type, &align1);
6083 if (index > array_length)
6084 array_length = index;
6086 /* gr: skip fields from same union - ugly. */
6087 while (f->next) {
6088 int align = 0;
6089 int f_size = type_size(&f->type, &align);
6090 int f_type = (f->type.t & VT_BTYPE);
6092 ///printf("index: %2d %08x -- %2d %08x\n", f->c, f->type.t, f->next->c, f->next->type.t);
6093 /* test for same offset */
6094 if (f->next->c != f->c)
6095 break;
6096 if ((f_type == VT_STRUCT) && (f_size == 0)) {
6098 Lets assume a structure of size 0 can't be a member of the union.
6099 This allow to compile the following code from a linux kernel v2.4.26
6100 typedef struct { } rwlock_t;
6101 struct fs_struct {
6102 int count;
6103 rwlock_t lock;
6104 int umask;
6106 struct fs_struct init_fs = { { (1) }, (rwlock_t) {}, 0022, };
6107 tcc-0.9.23 can succesfully compile this version of the kernel.
6108 gcc don't have problems with this code too.
6110 break;
6112 /* if yes, test for bitfield shift */
6113 if ((f->type.t & VT_BITFIELD) && (f->next->type.t & VT_BITFIELD)) {
6114 int bit_pos_1 = (f->type.t >> VT_STRUCT_SHIFT) & 0x3f;
6115 int bit_pos_2 = (f->next->type.t >> VT_STRUCT_SHIFT) & 0x3f;
6116 //printf("bitfield %d %d\n", bit_pos_1, bit_pos_2);
6117 if (bit_pos_1 != bit_pos_2)
6118 break;
6120 f = f->next;
6123 f = f->next;
6124 if (no_oblock && f == NULL)
6125 break;
6126 if (tok == '}')
6127 break;
6128 skip(',');
6130 /* put zeros at the end */
6131 if (!size_only && array_length < n) {
6132 init_putz(type, sec, c + array_length,
6133 n - array_length);
6135 if (!no_oblock)
6136 skip('}');
6137 while (par_count) {
6138 skip(')');
6139 par_count--;
6141 } else if (tok == '{') {
6142 next();
6143 decl_initializer(type, sec, c, first, size_only);
6144 skip('}');
6145 } else if (size_only) {
6146 /* just skip expression */
6147 parlevel = parlevel1 = 0;
6148 while ((parlevel > 0 || parlevel1 > 0 ||
6149 (tok != '}' && tok != ',')) && tok != -1) {
6150 if (tok == '(')
6151 parlevel++;
6152 else if (tok == ')') {
6153 if (parlevel == 0 && parlevel1 == 0)
6154 break;
6155 parlevel--;
6157 else if (tok == '{')
6158 parlevel1++;
6159 else if (tok == '}') {
6160 if (parlevel == 0 && parlevel1 == 0)
6161 break;
6162 parlevel1--;
6164 next();
6166 } else {
6167 /* currently, we always use constant expression for globals
6168 (may change for scripting case) */
6169 expr_type = EXPR_CONST;
6170 if (!sec)
6171 expr_type = EXPR_ANY;
6172 init_putv(type, sec, c, 0, expr_type);
6176 /* parse an initializer for type 't' if 'has_init' is non zero, and
6177 allocate space in local or global data space ('r' is either
6178 VT_LOCAL or VT_CONST). If 'v' is non zero, then an associated
6179 variable 'v' of scope 'scope' is declared before initializers
6180 are parsed. If 'v' is zero, then a reference to the new object
6181 is put in the value stack. If 'has_init' is 2, a special parsing
6182 is done to handle string constants. */
6183 static void decl_initializer_alloc(CType *type, AttributeDef *ad, int r,
6184 int has_init, int v, int scope)
6186 int size, align, addr, data_offset;
6187 int level;
6188 ParseState saved_parse_state = {0};
6189 TokenString *init_str = NULL;
6190 Section *sec;
6191 Sym *flexible_array;
6193 flexible_array = NULL;
6194 if ((type->t & VT_BTYPE) == VT_STRUCT) {
6195 Sym *field = type->ref->next;
6196 if (field) {
6197 while (field->next)
6198 field = field->next;
6199 if (field->type.t & VT_ARRAY && field->type.ref->c < 0)
6200 flexible_array = field;
6204 size = type_size(type, &align);
6205 /* If unknown size, we must evaluate it before
6206 evaluating initializers because
6207 initializers can generate global data too
6208 (e.g. string pointers or ISOC99 compound
6209 literals). It also simplifies local
6210 initializers handling */
6211 if (size < 0 || (flexible_array && has_init)) {
6212 if (!has_init)
6213 tcc_error("unknown type size");
6214 /* get all init string */
6215 init_str = tok_str_alloc();
6216 if (has_init == 2) {
6217 /* only get strings */
6218 while (tok == TOK_STR || tok == TOK_LSTR) {
6219 tok_str_add_tok(init_str);
6220 next();
6222 } else {
6223 level = 0;
6224 while (level > 0 || (tok != ',' && tok != ';')) {
6225 if (tok < 0)
6226 tcc_error("unexpected end of file in initializer");
6227 tok_str_add_tok(init_str);
6228 if (tok == '{')
6229 level++;
6230 else if (tok == '}') {
6231 level--;
6232 if (level <= 0) {
6233 next();
6234 break;
6237 next();
6240 tok_str_add(init_str, -1);
6241 tok_str_add(init_str, 0);
6243 /* compute size */
6244 save_parse_state(&saved_parse_state);
6246 begin_macro(init_str, 1);
6247 next();
6248 decl_initializer(type, NULL, 0, 1, 1);
6249 /* prepare second initializer parsing */
6250 macro_ptr = init_str->str;
6251 next();
6253 /* if still unknown size, error */
6254 size = type_size(type, &align);
6255 if (size < 0)
6256 tcc_error("unknown type size");
6258 /* If there's a flex member and it was used in the initializer
6259 adjust size. */
6260 if (flexible_array &&
6261 flexible_array->type.ref->c > 0)
6262 size += flexible_array->type.ref->c
6263 * pointed_size(&flexible_array->type);
6264 /* take into account specified alignment if bigger */
6265 if (ad->a.aligned) {
6266 if (ad->a.aligned > align)
6267 align = ad->a.aligned;
6268 } else if (ad->a.packed) {
6269 align = 1;
6271 if ((r & VT_VALMASK) == VT_LOCAL) {
6272 sec = NULL;
6273 #ifdef CONFIG_TCC_BCHECK
6274 if (tcc_state->do_bounds_check && (type->t & VT_ARRAY)) {
6275 loc--;
6277 #endif
6278 loc = (loc - size) & -align;
6279 addr = loc;
6280 #ifdef CONFIG_TCC_BCHECK
6281 /* handles bounds */
6282 /* XXX: currently, since we do only one pass, we cannot track
6283 '&' operators, so we add only arrays */
6284 if (tcc_state->do_bounds_check && (type->t & VT_ARRAY)) {
6285 addr_t *bounds_ptr;
6286 /* add padding between regions */
6287 loc--;
6288 /* then add local bound info */
6289 bounds_ptr = section_ptr_add(lbounds_section, 2 * sizeof(addr_t));
6290 bounds_ptr[0] = addr;
6291 bounds_ptr[1] = size;
6293 #endif
6294 if (v) {
6295 /* local variable */
6296 sym_push(v, type, r, addr);
6297 } else {
6298 /* push local reference */
6299 vset(type, r, addr);
6301 } else {
6302 Sym *sym;
6304 sym = NULL;
6305 if (v && scope == VT_CONST) {
6306 /* see if the symbol was already defined */
6307 sym = sym_find(v);
6308 if (sym) {
6309 if (!is_compatible_types(&sym->type, type))
6310 tcc_error("incompatible types for redefinition of '%s'",
6311 get_tok_str(v, NULL));
6312 if (sym->type.t & VT_EXTERN) {
6313 /* if the variable is extern, it was not allocated */
6314 sym->type.t &= ~VT_EXTERN;
6315 /* set array size if it was omitted in extern
6316 declaration */
6317 if ((sym->type.t & VT_ARRAY) &&
6318 sym->type.ref->c < 0 &&
6319 type->ref->c >= 0)
6320 sym->type.ref->c = type->ref->c;
6321 } else {
6322 /* we accept several definitions of the same
6323 global variable. this is tricky, because we
6324 must play with the SHN_COMMON type of the symbol */
6325 /* XXX: should check if the variable was already
6326 initialized. It is incorrect to initialized it
6327 twice */
6328 /* no init data, we won't add more to the symbol */
6329 if (!has_init)
6330 goto no_alloc;
6335 /* allocate symbol in corresponding section */
6336 sec = ad->section;
6337 if (!sec) {
6338 if (has_init)
6339 sec = data_section;
6340 else if (tcc_state->nocommon)
6341 sec = bss_section;
6343 if (sec) {
6344 data_offset = sec->data_offset;
6345 data_offset = (data_offset + align - 1) & -align;
6346 addr = data_offset;
6347 /* very important to increment global pointer at this time
6348 because initializers themselves can create new initializers */
6349 data_offset += size;
6350 #ifdef CONFIG_TCC_BCHECK
6351 /* add padding if bound check */
6352 if (tcc_state->do_bounds_check)
6353 data_offset++;
6354 #endif
6355 sec->data_offset = data_offset;
6356 /* allocate section space to put the data */
6357 if (sec->sh_type != SHT_NOBITS &&
6358 data_offset > sec->data_allocated)
6359 section_realloc(sec, data_offset);
6360 /* align section if needed */
6361 if (align > sec->sh_addralign)
6362 sec->sh_addralign = align;
6363 } else {
6364 addr = 0; /* avoid warning */
6367 if (v) {
6368 if (scope != VT_CONST || !sym) {
6369 sym = sym_push(v, type, r | VT_SYM, 0);
6370 sym->asm_label = ad->asm_label;
6372 /* update symbol definition */
6373 if (sec) {
6374 put_extern_sym(sym, sec, addr, size);
6375 } else {
6376 ElfW(Sym) *esym;
6377 /* put a common area */
6378 put_extern_sym(sym, NULL, align, size);
6379 /* XXX: find a nicer way */
6380 esym = &((ElfW(Sym) *)symtab_section->data)[sym->c];
6381 esym->st_shndx = SHN_COMMON;
6383 } else {
6384 /* push global reference */
6385 sym = get_sym_ref(type, sec, addr, size);
6386 vpushsym(type, sym);
6388 /* patch symbol weakness */
6389 if (type->t & VT_WEAK)
6390 weaken_symbol(sym);
6391 apply_visibility(sym, type);
6392 #ifdef CONFIG_TCC_BCHECK
6393 /* handles bounds now because the symbol must be defined
6394 before for the relocation */
6395 if (tcc_state->do_bounds_check) {
6396 addr_t *bounds_ptr;
6398 greloc(bounds_section, sym, bounds_section->data_offset, R_DATA_PTR);
6399 /* then add global bound info */
6400 bounds_ptr = section_ptr_add(bounds_section, 2 * sizeof(addr_t));
6401 bounds_ptr[0] = 0; /* relocated */
6402 bounds_ptr[1] = size;
6404 #endif
6406 if (has_init || (type->t & VT_VLA)) {
6407 decl_initializer(type, sec, addr, 1, 0);
6408 /* patch flexible array member size back to -1, */
6409 /* for possible subsequent similar declarations */
6410 if (flexible_array)
6411 flexible_array->type.ref->c = -1;
6413 no_alloc: ;
6414 /* restore parse state if needed */
6415 if (init_str) {
6416 end_macro();
6417 restore_parse_state(&saved_parse_state);
6421 static void put_func_debug(Sym *sym)
6423 char buf[512];
6425 /* stabs info */
6426 /* XXX: we put here a dummy type */
6427 snprintf(buf, sizeof(buf), "%s:%c1",
6428 funcname, sym->type.t & VT_STATIC ? 'f' : 'F');
6429 put_stabs_r(buf, N_FUN, 0, file->line_num, 0,
6430 cur_text_section, sym->c);
6431 /* //gr gdb wants a line at the function */
6432 put_stabn(N_SLINE, 0, file->line_num, 0);
6433 last_ind = 0;
6434 last_line_num = 0;
6437 /* parse an old style function declaration list */
6438 /* XXX: check multiple parameter */
6439 static void func_decl_list(Sym *func_sym)
6441 AttributeDef ad;
6442 int v;
6443 Sym *s;
6444 CType btype, type;
6446 /* parse each declaration */
6447 while (tok != '{' && tok != ';' && tok != ',' && tok != TOK_EOF &&
6448 tok != TOK_ASM1 && tok != TOK_ASM2 && tok != TOK_ASM3) {
6449 if (!parse_btype(&btype, &ad))
6450 expect("declaration list");
6451 if (((btype.t & VT_BTYPE) == VT_ENUM ||
6452 (btype.t & VT_BTYPE) == VT_STRUCT) &&
6453 tok == ';') {
6454 /* we accept no variable after */
6455 } else {
6456 for(;;) {
6457 type = btype;
6458 type_decl(&type, &ad, &v, TYPE_DIRECT);
6459 /* find parameter in function parameter list */
6460 s = func_sym->next;
6461 while (s != NULL) {
6462 if ((s->v & ~SYM_FIELD) == v)
6463 goto found;
6464 s = s->next;
6466 tcc_error("declaration for parameter '%s' but no such parameter",
6467 get_tok_str(v, NULL));
6468 found:
6469 /* check that no storage specifier except 'register' was given */
6470 if (type.t & VT_STORAGE)
6471 tcc_error("storage class specified for '%s'", get_tok_str(v, NULL));
6472 convert_parameter_type(&type);
6473 /* we can add the type (NOTE: it could be local to the function) */
6474 s->type = type;
6475 /* accept other parameters */
6476 if (tok == ',')
6477 next();
6478 else
6479 break;
6482 skip(';');
6486 /* parse a function defined by symbol 'sym' and generate its code in
6487 'cur_text_section' */
6488 static void gen_function(Sym *sym)
6490 int saved_nocode_wanted = nocode_wanted;
6492 nocode_wanted = 0;
6493 ind = cur_text_section->data_offset;
6494 /* NOTE: we patch the symbol size later */
6495 put_extern_sym(sym, cur_text_section, ind, 0);
6496 funcname = get_tok_str(sym->v, NULL);
6497 func_ind = ind;
6498 /* Initialize VLA state */
6499 vla_sp_loc = -1;
6500 vla_sp_root_loc = -1;
6501 /* put debug symbol */
6502 if (tcc_state->do_debug)
6503 put_func_debug(sym);
6505 /* push a dummy symbol to enable local sym storage */
6506 sym_push2(&local_stack, SYM_FIELD, 0, 0);
6507 local_scope = 1; /* for function parameters */
6508 gfunc_prolog(&sym->type);
6509 local_scope = 0;
6511 rsym = 0;
6512 block(NULL, NULL, 0);
6513 gsym(rsym);
6514 gfunc_epilog();
6515 cur_text_section->data_offset = ind;
6516 label_pop(&global_label_stack, NULL);
6517 /* reset local stack */
6518 local_scope = 0;
6519 sym_pop(&local_stack, NULL);
6520 /* end of function */
6521 /* patch symbol size */
6522 ((ElfW(Sym) *)symtab_section->data)[sym->c].st_size =
6523 ind - func_ind;
6524 /* patch symbol weakness (this definition overrules any prototype) */
6525 if (sym->type.t & VT_WEAK)
6526 weaken_symbol(sym);
6527 apply_visibility(sym, &sym->type);
6528 if (tcc_state->do_debug) {
6529 put_stabn(N_FUN, 0, 0, ind - func_ind);
6531 /* It's better to crash than to generate wrong code */
6532 cur_text_section = NULL;
6533 funcname = ""; /* for safety */
6534 func_vt.t = VT_VOID; /* for safety */
6535 func_var = 0; /* for safety */
6536 ind = 0; /* for safety */
6537 nocode_wanted = saved_nocode_wanted;
6538 check_vstack();
6541 static void gen_inline_functions(TCCState *s)
6543 Sym *sym;
6544 int inline_generated, i, ln;
6545 struct InlineFunc *fn;
6547 ln = file->line_num;
6548 /* iterate while inline function are referenced */
6549 for(;;) {
6550 inline_generated = 0;
6551 for (i = 0; i < s->nb_inline_fns; ++i) {
6552 fn = s->inline_fns[i];
6553 sym = fn->sym;
6554 if (sym && sym->c) {
6555 /* the function was used: generate its code and
6556 convert it to a normal function */
6557 fn->sym = NULL;
6558 if (file)
6559 pstrcpy(file->filename, sizeof file->filename, fn->filename);
6560 sym->r = VT_SYM | VT_CONST;
6561 sym->type.t &= ~VT_INLINE;
6563 begin_macro(fn->func_str, 1);
6564 next();
6565 cur_text_section = text_section;
6566 gen_function(sym);
6567 end_macro();
6569 inline_generated = 1;
6572 if (!inline_generated)
6573 break;
6575 file->line_num = ln;
6578 ST_FUNC void free_inline_functions(TCCState *s)
6580 int i;
6581 /* free tokens of unused inline functions */
6582 for (i = 0; i < s->nb_inline_fns; ++i) {
6583 struct InlineFunc *fn = s->inline_fns[i];
6584 if (fn->sym)
6585 tok_str_free(fn->func_str);
6587 dynarray_reset(&s->inline_fns, &s->nb_inline_fns);
6590 /* 'l' is VT_LOCAL or VT_CONST to define default storage type */
6591 static int decl0(int l, int is_for_loop_init)
6593 int v, has_init, r;
6594 CType type, btype;
6595 Sym *sym;
6596 AttributeDef ad;
6598 while (1) {
6599 if (!parse_btype(&btype, &ad)) {
6600 if (is_for_loop_init)
6601 return 0;
6602 /* skip redundant ';' */
6603 /* XXX: find more elegant solution */
6604 if (tok == ';') {
6605 next();
6606 continue;
6608 if (l == VT_CONST &&
6609 (tok == TOK_ASM1 || tok == TOK_ASM2 || tok == TOK_ASM3)) {
6610 /* global asm block */
6611 asm_global_instr();
6612 continue;
6614 /* special test for old K&R protos without explicit int
6615 type. Only accepted when defining global data */
6616 if (l == VT_LOCAL || tok < TOK_UIDENT)
6617 break;
6618 btype.t = VT_INT;
6620 if (((btype.t & VT_BTYPE) == VT_ENUM ||
6621 (btype.t & VT_BTYPE) == VT_STRUCT) &&
6622 tok == ';') {
6623 if ((btype.t & VT_BTYPE) == VT_STRUCT) {
6624 int v = btype.ref->v;
6625 if (!(v & SYM_FIELD) && (v & ~SYM_STRUCT) >= SYM_FIRST_ANOM)
6626 tcc_warning("unnamed struct/union that defines no instances");
6628 next();
6629 continue;
6631 while (1) { /* iterate thru each declaration */
6632 type = btype;
6633 type_decl(&type, &ad, &v, TYPE_DIRECT);
6634 #if 0
6636 char buf[500];
6637 type_to_str(buf, sizeof(buf), t, get_tok_str(v, NULL));
6638 printf("type = '%s'\n", buf);
6640 #endif
6641 if ((type.t & VT_BTYPE) == VT_FUNC) {
6642 if ((type.t & VT_STATIC) && (l == VT_LOCAL)) {
6643 tcc_error("function without file scope cannot be static");
6645 /* if old style function prototype, we accept a
6646 declaration list */
6647 sym = type.ref;
6648 if (sym->c == FUNC_OLD)
6649 func_decl_list(sym);
6652 if (gnu_ext && (tok == TOK_ASM1 || tok == TOK_ASM2 || tok == TOK_ASM3)) {
6653 ad.asm_label = asm_label_instr();
6654 /* parse one last attribute list, after asm label */
6655 parse_attribute(&ad);
6656 if (tok == '{')
6657 expect(";");
6660 if (ad.a.weak)
6661 type.t |= VT_WEAK;
6662 #ifdef TCC_TARGET_PE
6663 if (ad.a.func_import)
6664 type.t |= VT_IMPORT;
6665 if (ad.a.func_export)
6666 type.t |= VT_EXPORT;
6667 #endif
6668 type.t |= ad.a.visibility << VT_VIS_SHIFT;
6670 if (tok == '{') {
6671 if (l == VT_LOCAL)
6672 tcc_error("cannot use local functions");
6673 if ((type.t & VT_BTYPE) != VT_FUNC)
6674 expect("function definition");
6676 /* reject abstract declarators in function definition */
6677 sym = type.ref;
6678 while ((sym = sym->next) != NULL)
6679 if (!(sym->v & ~SYM_FIELD))
6680 expect("identifier");
6682 /* XXX: cannot do better now: convert extern line to static inline */
6683 if ((type.t & (VT_EXTERN | VT_INLINE)) == (VT_EXTERN | VT_INLINE))
6684 type.t = (type.t & ~VT_EXTERN) | VT_STATIC;
6686 sym = sym_find(v);
6687 if (sym) {
6688 Sym *ref;
6689 if ((sym->type.t & VT_BTYPE) != VT_FUNC)
6690 goto func_error1;
6692 ref = sym->type.ref;
6693 if (0 == ref->a.func_proto)
6694 tcc_error("redefinition of '%s'", get_tok_str(v, NULL));
6696 /* use func_call from prototype if not defined */
6697 if (ref->a.func_call != FUNC_CDECL
6698 && type.ref->a.func_call == FUNC_CDECL)
6699 type.ref->a.func_call = ref->a.func_call;
6701 /* use export from prototype */
6702 if (ref->a.func_export)
6703 type.ref->a.func_export = 1;
6705 /* use static from prototype */
6706 if (sym->type.t & VT_STATIC)
6707 type.t = (type.t & ~VT_EXTERN) | VT_STATIC;
6709 /* If the definition has no visibility use the
6710 one from prototype. */
6711 if (! (type.t & VT_VIS_MASK))
6712 type.t |= sym->type.t & VT_VIS_MASK;
6714 if (!is_compatible_types(&sym->type, &type)) {
6715 func_error1:
6716 tcc_error("incompatible types for redefinition of '%s'",
6717 get_tok_str(v, NULL));
6719 type.ref->a.func_proto = 0;
6720 /* if symbol is already defined, then put complete type */
6721 sym->type = type;
6722 } else {
6723 /* put function symbol */
6724 sym = global_identifier_push(v, type.t, 0);
6725 sym->type.ref = type.ref;
6728 /* static inline functions are just recorded as a kind
6729 of macro. Their code will be emitted at the end of
6730 the compilation unit only if they are used */
6731 if ((type.t & (VT_INLINE | VT_STATIC)) ==
6732 (VT_INLINE | VT_STATIC)) {
6733 int block_level;
6734 struct InlineFunc *fn;
6735 const char *filename;
6737 filename = file ? file->filename : "";
6738 fn = tcc_malloc(sizeof *fn + strlen(filename));
6739 strcpy(fn->filename, filename);
6740 fn->sym = sym;
6741 fn->func_str = tok_str_alloc();
6743 block_level = 0;
6744 for(;;) {
6745 int t;
6746 if (tok == TOK_EOF)
6747 tcc_error("unexpected end of file");
6748 tok_str_add_tok(fn->func_str);
6749 t = tok;
6750 next();
6751 if (t == '{') {
6752 block_level++;
6753 } else if (t == '}') {
6754 block_level--;
6755 if (block_level == 0)
6756 break;
6759 tok_str_add(fn->func_str, -1);
6760 tok_str_add(fn->func_str, 0);
6761 dynarray_add((void ***)&tcc_state->inline_fns, &tcc_state->nb_inline_fns, fn);
6763 } else {
6764 /* compute text section */
6765 cur_text_section = ad.section;
6766 if (!cur_text_section)
6767 cur_text_section = text_section;
6768 sym->r = VT_SYM | VT_CONST;
6769 gen_function(sym);
6771 break;
6772 } else {
6773 if (btype.t & VT_TYPEDEF) {
6774 /* save typedefed type */
6775 /* XXX: test storage specifiers ? */
6776 sym = sym_find(v);
6777 if (sym && sym->scope == local_scope) {
6778 if (!is_compatible_types(&sym->type, &type)
6779 || !(sym->type.t & VT_TYPEDEF))
6780 tcc_error("incompatible redefinition of '%s'",
6781 get_tok_str(v, NULL));
6782 sym->type = type;
6783 } else {
6784 sym = sym_push(v, &type, 0, 0);
6786 sym->a = ad.a;
6787 sym->type.t |= VT_TYPEDEF;
6788 } else {
6789 r = 0;
6790 if ((type.t & VT_BTYPE) == VT_FUNC) {
6791 /* external function definition */
6792 /* specific case for func_call attribute */
6793 ad.a.func_proto = 1;
6794 type.ref->a = ad.a;
6795 } else if (!(type.t & VT_ARRAY)) {
6796 /* not lvalue if array */
6797 r |= lvalue_type(type.t);
6799 has_init = (tok == '=');
6800 if (has_init && (type.t & VT_VLA))
6801 tcc_error("Variable length array cannot be initialized");
6802 if ((btype.t & VT_EXTERN) || ((type.t & VT_BTYPE) == VT_FUNC) ||
6803 ((type.t & VT_ARRAY) && (type.t & VT_STATIC) &&
6804 !has_init && l == VT_CONST && type.ref->c < 0)) {
6805 /* external variable or function */
6806 /* NOTE: as GCC, uninitialized global static
6807 arrays of null size are considered as
6808 extern */
6809 sym = external_sym(v, &type, r);
6810 sym->asm_label = ad.asm_label;
6812 if (ad.alias_target) {
6813 Section tsec;
6814 Elf32_Sym *esym;
6815 Sym *alias_target;
6817 alias_target = sym_find(ad.alias_target);
6818 if (!alias_target || !alias_target->c)
6819 tcc_error("unsupported forward __alias__ attribute");
6820 esym = &((Elf32_Sym *)symtab_section->data)[alias_target->c];
6821 tsec.sh_num = esym->st_shndx;
6822 put_extern_sym2(sym, &tsec, esym->st_value, esym->st_size, 0);
6824 } else {
6825 type.t |= (btype.t & VT_STATIC); /* Retain "static". */
6826 if (type.t & VT_STATIC)
6827 r |= VT_CONST;
6828 else
6829 r |= l;
6830 if (has_init)
6831 next();
6832 decl_initializer_alloc(&type, &ad, r, has_init, v, l);
6835 if (tok != ',') {
6836 if (is_for_loop_init)
6837 return 1;
6838 skip(';');
6839 break;
6841 next();
6843 ad.a.aligned = 0;
6846 return 0;
6849 ST_FUNC void decl(int l)
6851 decl0(l, 0);
6854 /* ------------------------------------------------------------------------- */