Fixes for issues I've just found/introduced to x86 TCC.
[tinycc.git] / tcc.c
blob00fd3a0774ea886bf013e0b6dadaa689f3f8d381
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
20 #define _GNU_SOURCE
21 #include "config.h"
23 #ifdef CONFIG_TCCBOOT
25 #include "tccboot.h"
26 #define CONFIG_TCC_STATIC
28 #else
30 #include <stdlib.h>
31 #include <stdio.h>
32 #include <stdarg.h>
33 #include <string.h>
34 #include <errno.h>
35 #include <math.h>
36 #include <signal.h>
37 #include <fcntl.h>
38 #include <setjmp.h>
39 #include <time.h>
41 #ifdef _WIN32
42 #include <windows.h>
43 #include <sys/timeb.h>
44 #ifdef _MSC_VER
45 #define inline __inline
46 #endif
47 #endif
49 #ifndef _WIN32
50 #include <unistd.h>
51 #include <sys/time.h>
52 #include <sys/ucontext.h>
53 #include <sys/mman.h>
54 #endif
56 #endif /* !CONFIG_TCCBOOT */
58 #ifndef PAGESIZE
59 #define PAGESIZE 4096
60 #endif
62 #include "elf.h"
63 #include "stab.h"
65 #ifndef O_BINARY
66 #define O_BINARY 0
67 #endif
69 #include "libtcc.h"
71 /* parser debug */
72 //#define PARSE_DEBUG
73 /* preprocessor debug */
74 //#define PP_DEBUG
75 /* include file debug */
76 //#define INC_DEBUG
78 //#define MEM_DEBUG
80 /* assembler debug */
81 //#define ASM_DEBUG
83 /* target selection */
84 //#define TCC_TARGET_I386 /* i386 code generator */
85 //#define TCC_TARGET_ARM /* ARMv4 code generator */
86 //#define TCC_TARGET_C67 /* TMS320C67xx code generator */
87 //#define TCC_TARGET_X86_64 /* x86-64 code generator */
89 /* default target is I386 */
90 #if !defined(TCC_TARGET_I386) && !defined(TCC_TARGET_ARM) && \
91 !defined(TCC_TARGET_C67) && !defined(TCC_TARGET_X86_64)
92 #define TCC_TARGET_I386
93 #endif
95 #if !defined(_WIN32) && !defined(TCC_UCLIBC) && !defined(TCC_TARGET_ARM) && \
96 !defined(TCC_TARGET_C67) && !defined(TCC_TARGET_X86_64)
97 #define CONFIG_TCC_BCHECK /* enable bound checking code */
98 #endif
100 #if defined(_WIN32) && !defined(TCC_TARGET_PE)
101 #define CONFIG_TCC_STATIC
102 #endif
104 /* define it to include assembler support */
105 #if !defined(TCC_TARGET_ARM) && !defined(TCC_TARGET_C67) && \
106 !defined(TCC_TARGET_X86_64)
107 #define CONFIG_TCC_ASM
108 #endif
110 /* object format selection */
111 #if defined(TCC_TARGET_C67)
112 #define TCC_TARGET_COFF
113 #endif
115 #define FALSE 0
116 #define false 0
117 #define TRUE 1
118 #define true 1
119 typedef int BOOL;
121 /* path to find crt1.o, crti.o and crtn.o. Only needed when generating
122 executables or dlls */
123 #define CONFIG_TCC_CRT_PREFIX CONFIG_SYSROOT "/usr/lib"
125 #define INCLUDE_STACK_SIZE 32
126 #define IFDEF_STACK_SIZE 64
127 #define VSTACK_SIZE 256
128 #define STRING_MAX_SIZE 1024
129 #define PACK_STACK_SIZE 8
131 #define TOK_HASH_SIZE 8192 /* must be a power of two */
132 #define TOK_ALLOC_INCR 512 /* must be a power of two */
133 #define TOK_MAX_SIZE 4 /* token max size in int unit when stored in string */
135 /* token symbol management */
136 typedef struct TokenSym {
137 struct TokenSym *hash_next;
138 struct Sym *sym_define; /* direct pointer to define */
139 struct Sym *sym_label; /* direct pointer to label */
140 struct Sym *sym_struct; /* direct pointer to structure */
141 struct Sym *sym_identifier; /* direct pointer to identifier */
142 int tok; /* token number */
143 int len;
144 char str[1];
145 } TokenSym;
147 #ifdef TCC_TARGET_PE
148 typedef unsigned short nwchar_t;
149 #else
150 typedef int nwchar_t;
151 #endif
153 typedef struct CString {
154 int size; /* size in bytes */
155 void *data; /* either 'char *' or 'nwchar_t *' */
156 int size_allocated;
157 void *data_allocated; /* if non NULL, data has been malloced */
158 } CString;
160 /* type definition */
161 typedef struct CType {
162 int t;
163 struct Sym *ref;
164 } CType;
166 /* constant value */
167 typedef union CValue {
168 long double ld;
169 double d;
170 float f;
171 int i;
172 unsigned int ui;
173 unsigned int ul; /* address (should be unsigned long on 64 bit cpu) */
174 long long ll;
175 unsigned long long ull;
176 struct CString *cstr;
177 void *ptr;
178 int tab[1];
179 } CValue;
181 /* value on stack */
182 typedef struct SValue {
183 CType type; /* type */
184 unsigned short r; /* register + flags */
185 unsigned short r2; /* second register, used for 'long long'
186 type. If not used, set to VT_CONST */
187 CValue c; /* constant, if VT_CONST */
188 struct Sym *sym; /* symbol, if (VT_SYM | VT_CONST) */
189 } SValue;
191 /* symbol management */
192 typedef struct Sym {
193 int v; /* symbol token */
194 long r; /* associated register */
195 long c; /* associated number */
196 CType type; /* associated type */
197 struct Sym *next; /* next related symbol */
198 struct Sym *prev; /* prev symbol in stack */
199 struct Sym *prev_tok; /* previous symbol for this token */
200 } Sym;
202 /* section definition */
203 /* XXX: use directly ELF structure for parameters ? */
204 /* special flag to indicate that the section should not be linked to
205 the other ones */
206 #define SHF_PRIVATE 0x80000000
208 typedef struct Section {
209 unsigned long data_offset; /* current data offset */
210 unsigned char *data; /* section data */
211 unsigned long data_allocated; /* used for realloc() handling */
212 int sh_name; /* elf section name (only used during output) */
213 int sh_num; /* elf section number */
214 int sh_type; /* elf section type */
215 int sh_flags; /* elf section flags */
216 int sh_info; /* elf section info */
217 int sh_addralign; /* elf section alignment */
218 int sh_entsize; /* elf entry size */
219 unsigned long sh_size; /* section size (only used during output) */
220 unsigned long sh_addr; /* address at which the section is relocated */
221 unsigned long sh_offset; /* file offset */
222 int nb_hashed_syms; /* used to resize the hash table */
223 struct Section *link; /* link to another section */
224 struct Section *reloc; /* corresponding section for relocation, if any */
225 struct Section *hash; /* hash table for symbols */
226 struct Section *next;
227 char name[1]; /* section name */
228 } Section;
230 typedef struct DLLReference {
231 int level;
232 void *handle;
233 char name[1];
234 } DLLReference;
236 /* GNUC attribute definition */
237 typedef struct AttributeDef {
238 int aligned;
239 int packed;
240 Section *section;
241 int func_attr; /* calling convention, exports, ... */
242 } AttributeDef;
244 /* -------------------------------------------------- */
245 /* gr: wrappers for casting sym->r for other purposes */
246 typedef struct {
247 unsigned
248 func_call : 8,
249 func_args : 8,
250 func_export : 1;
251 } func_attr_t;
253 #define FUNC_CALL(r) (((func_attr_t*)&(r))->func_call)
254 #define FUNC_EXPORT(r) (((func_attr_t*)&(r))->func_export)
255 #define FUNC_ARGS(r) (((func_attr_t*)&(r))->func_args)
256 #define INLINE_DEF(r) (*(int **)&(r))
257 /* -------------------------------------------------- */
259 #define SYM_STRUCT 0x40000000 /* struct/union/enum symbol space */
260 #define SYM_FIELD 0x20000000 /* struct/union field symbol space */
261 #define SYM_FIRST_ANOM 0x10000000 /* first anonymous sym */
263 /* stored in 'Sym.c' field */
264 #define FUNC_NEW 1 /* ansi function prototype */
265 #define FUNC_OLD 2 /* old function prototype */
266 #define FUNC_ELLIPSIS 3 /* ansi function prototype with ... */
268 /* stored in 'Sym.r' field */
269 #define FUNC_CDECL 0 /* standard c call */
270 #define FUNC_STDCALL 1 /* pascal c call */
271 #define FUNC_FASTCALL1 2 /* first param in %eax */
272 #define FUNC_FASTCALL2 3 /* first parameters in %eax, %edx */
273 #define FUNC_FASTCALL3 4 /* first parameter in %eax, %edx, %ecx */
274 #define FUNC_FASTCALLW 5 /* first parameter in %ecx, %edx */
276 /* field 'Sym.t' for macros */
277 #define MACRO_OBJ 0 /* object like macro */
278 #define MACRO_FUNC 1 /* function like macro */
280 /* field 'Sym.r' for C labels */
281 #define LABEL_DEFINED 0 /* label is defined */
282 #define LABEL_FORWARD 1 /* label is forward defined */
283 #define LABEL_DECLARED 2 /* label is declared but never used */
285 /* type_decl() types */
286 #define TYPE_ABSTRACT 1 /* type without variable */
287 #define TYPE_DIRECT 2 /* type with variable */
289 #define IO_BUF_SIZE 8192
291 typedef struct BufferedFile {
292 uint8_t *buf_ptr;
293 uint8_t *buf_end;
294 int fd;
295 int line_num; /* current line number - here to simplify code */
296 int ifndef_macro; /* #ifndef macro / #endif search */
297 int ifndef_macro_saved; /* saved ifndef_macro */
298 int *ifdef_stack_ptr; /* ifdef_stack value at the start of the file */
299 char inc_type; /* type of include */
300 char inc_filename[512]; /* filename specified by the user */
301 char filename[1024]; /* current filename - here to simplify code */
302 unsigned char buffer[IO_BUF_SIZE + 1]; /* extra size for CH_EOB char */
303 } BufferedFile;
305 #define CH_EOB '\\' /* end of buffer or '\0' char in file */
306 #define CH_EOF (-1) /* end of file */
308 /* parsing state (used to save parser state to reparse part of the
309 source several times) */
310 typedef struct ParseState {
311 int *macro_ptr;
312 int line_num;
313 int tok;
314 CValue tokc;
315 } ParseState;
317 /* used to record tokens */
318 typedef struct TokenString {
319 int *str;
320 int len;
321 int allocated_len;
322 int last_line_num;
323 } TokenString;
325 /* include file cache, used to find files faster and also to eliminate
326 inclusion if the include file is protected by #ifndef ... #endif */
327 typedef struct CachedInclude {
328 int ifndef_macro;
329 int hash_next; /* -1 if none */
330 char type; /* '"' or '>' to give include type */
331 char filename[1]; /* path specified in #include */
332 } CachedInclude;
334 #define CACHED_INCLUDES_HASH_SIZE 512
336 /* parser */
337 static struct BufferedFile *file;
338 static int ch, tok;
339 static CString tok_spaces; /* spaces before current token */
340 static CValue tokc;
341 static CString tokcstr; /* current parsed string, if any */
342 /* additional informations about token */
343 static int tok_flags;
344 #define TOK_FLAG_BOL 0x0001 /* beginning of line before */
345 #define TOK_FLAG_BOF 0x0002 /* beginning of file before */
346 #define TOK_FLAG_ENDIF 0x0004 /* a endif was found matching starting #ifdef */
347 #define TOK_FLAG_EOF 0x0008 /* end of file */
349 static int *macro_ptr, *macro_ptr_allocated;
350 static int *unget_saved_macro_ptr;
351 static int unget_saved_buffer[TOK_MAX_SIZE + 1];
352 static int unget_buffer_enabled;
353 static int parse_flags;
354 #define PARSE_FLAG_PREPROCESS 0x0001 /* activate preprocessing */
355 #define PARSE_FLAG_TOK_NUM 0x0002 /* return numbers instead of TOK_PPNUM */
356 #define PARSE_FLAG_LINEFEED 0x0004 /* line feed is returned as a
357 token. line feed is also
358 returned at eof */
359 #define PARSE_FLAG_ASM_COMMENTS 0x0008 /* '#' can be used for line comment */
361 static Section *text_section, *data_section, *bss_section; /* predefined sections */
362 static Section *cur_text_section; /* current section where function code is
363 generated */
364 #ifdef CONFIG_TCC_ASM
365 static Section *last_text_section; /* to handle .previous asm directive */
366 #endif
367 /* bound check related sections */
368 static Section *bounds_section; /* contains global data bound description */
369 static Section *lbounds_section; /* contains local data bound description */
370 /* symbol sections */
371 static Section *symtab_section, *strtab_section;
373 /* debug sections */
374 static Section *stab_section, *stabstr_section;
376 /* loc : local variable index
377 ind : output code index
378 rsym: return symbol
379 anon_sym: anonymous symbol index
381 static int rsym, anon_sym, ind, loc;
382 /* expression generation modifiers */
383 static int const_wanted; /* true if constant wanted */
384 static int nocode_wanted; /* true if no code generation wanted for an expression */
385 static int global_expr; /* true if compound literals must be allocated
386 globally (used during initializers parsing */
387 static CType func_vt; /* current function return type (used by return
388 instruction) */
389 static int func_vc;
390 static int last_line_num, last_ind, func_ind; /* debug last line number and pc */
391 static int tok_ident;
392 static TokenSym **table_ident;
393 static TokenSym *hash_ident[TOK_HASH_SIZE];
394 static char token_buf[STRING_MAX_SIZE + 1];
395 static char *funcname;
396 static Sym *global_stack, *local_stack;
397 static Sym *define_stack;
398 static Sym *global_label_stack, *local_label_stack;
399 /* symbol allocator */
400 #define SYM_POOL_NB (8192 / sizeof(Sym))
401 static Sym *sym_free_first;
402 static void **sym_pools;
403 static int nb_sym_pools;
405 static SValue vstack[VSTACK_SIZE], *vtop;
406 /* some predefined types */
407 static CType char_pointer_type, func_old_type, int_type;
408 /* true if isid(c) || isnum(c) */
409 static unsigned char isidnum_table[256-CH_EOF];
411 /* display some information during compilation */
412 static int verbose = 0;
414 /* compile with debug symbol (and use them if error during execution) */
415 static int do_debug = 0;
417 /* compile with built-in memory and bounds checker */
418 static int do_bounds_check = 0;
420 /* display benchmark infos */
421 #if !defined(LIBTCC)
422 static int do_bench = 0;
423 #endif
424 static int total_lines;
425 static int total_bytes;
427 /* use GNU C extensions */
428 static int gnu_ext = 1;
430 /* use Tiny C extensions */
431 static int tcc_ext = 1;
433 /* max number of callers shown if error */
434 static int num_callers = 6;
435 static const char **rt_bound_error_msg;
437 /* XXX: get rid of this ASAP */
438 static struct TCCState *tcc_state;
440 /* give the path of the tcc libraries */
441 static const char *tcc_lib_path = CONFIG_TCCDIR;
443 struct TCCState {
444 int output_type;
446 BufferedFile **include_stack_ptr;
447 int *ifdef_stack_ptr;
449 /* include file handling */
450 char **include_paths;
451 int nb_include_paths;
452 char **sysinclude_paths;
453 int nb_sysinclude_paths;
454 CachedInclude **cached_includes;
455 int nb_cached_includes;
457 char **library_paths;
458 int nb_library_paths;
460 /* array of all loaded dlls (including those referenced by loaded
461 dlls) */
462 DLLReference **loaded_dlls;
463 int nb_loaded_dlls;
465 /* sections */
466 Section **sections;
467 int nb_sections; /* number of sections, including first dummy section */
469 Section **priv_sections;
470 int nb_priv_sections; /* number of private sections */
472 /* got handling */
473 Section *got;
474 Section *plt;
475 unsigned long *got_offsets;
476 int nb_got_offsets;
477 /* give the correspondance from symtab indexes to dynsym indexes */
478 int *symtab_to_dynsym;
480 /* temporary dynamic symbol sections (for dll loading) */
481 Section *dynsymtab_section;
482 /* exported dynamic symbol section */
483 Section *dynsym;
485 int nostdinc; /* if true, no standard headers are added */
486 int nostdlib; /* if true, no standard libraries are added */
488 int nocommon; /* if true, do not use common symbols for .bss data */
490 /* if true, static linking is performed */
491 int static_link;
493 /* soname as specified on the command line (-soname) */
494 const char *soname;
496 /* if true, all symbols are exported */
497 int rdynamic;
499 /* if true, only link in referenced objects from archive */
500 int alacarte_link;
502 /* address of text section */
503 unsigned long text_addr;
504 int has_text_addr;
506 /* output format, see TCC_OUTPUT_FORMAT_xxx */
507 int output_format;
509 /* C language options */
510 int char_is_unsigned;
511 int leading_underscore;
513 /* warning switches */
514 int warn_write_strings;
515 int warn_unsupported;
516 int warn_error;
517 int warn_none;
518 int warn_implicit_function_declaration;
520 /* error handling */
521 void *error_opaque;
522 void (*error_func)(void *opaque, const char *msg);
523 int error_set_jmp_enabled;
524 jmp_buf error_jmp_buf;
525 int nb_errors;
527 /* tiny assembler state */
528 Sym *asm_labels;
530 /* see include_stack_ptr */
531 BufferedFile *include_stack[INCLUDE_STACK_SIZE];
533 /* see ifdef_stack_ptr */
534 int ifdef_stack[IFDEF_STACK_SIZE];
536 /* see cached_includes */
537 int cached_includes_hash[CACHED_INCLUDES_HASH_SIZE];
539 /* pack stack */
540 int pack_stack[PACK_STACK_SIZE];
541 int *pack_stack_ptr;
543 /* output file for preprocessing */
544 FILE *outfile;
547 /* The current value can be: */
548 #define VT_VALMASK 0x00ff
549 #define VT_CONST 0x00f0 /* constant in vc
550 (must be first non register value) */
551 #define VT_LLOCAL 0x00f1 /* lvalue, offset on stack */
552 #define VT_LOCAL 0x00f2 /* offset on stack */
553 #define VT_CMP 0x00f3 /* the value is stored in processor flags (in vc) */
554 #define VT_JMP 0x00f4 /* value is the consequence of jmp true (even) */
555 #define VT_JMPI 0x00f5 /* value is the consequence of jmp false (odd) */
556 #define VT_LVAL 0x0100 /* var is an lvalue */
557 #define VT_SYM 0x0200 /* a symbol value is added */
558 #define VT_MUSTCAST 0x0400 /* value must be casted to be correct (used for
559 char/short stored in integer registers) */
560 #define VT_MUSTBOUND 0x0800 /* bound checking must be done before
561 dereferencing value */
562 #define VT_BOUNDED 0x8000 /* value is bounded. The address of the
563 bounding function call point is in vc */
564 #define VT_LVAL_BYTE 0x1000 /* lvalue is a byte */
565 #define VT_LVAL_SHORT 0x2000 /* lvalue is a short */
566 #define VT_LVAL_UNSIGNED 0x4000 /* lvalue is unsigned */
567 #define VT_LVAL_TYPE (VT_LVAL_BYTE | VT_LVAL_SHORT | VT_LVAL_UNSIGNED)
569 /* types */
570 #define VT_INT 0 /* integer type */
571 #define VT_BYTE 1 /* signed byte type */
572 #define VT_SHORT 2 /* short type */
573 #define VT_VOID 3 /* void type */
574 #define VT_PTR 4 /* pointer */
575 #define VT_ENUM 5 /* enum definition */
576 #define VT_FUNC 6 /* function type */
577 #define VT_STRUCT 7 /* struct/union definition */
578 #define VT_FLOAT 8 /* IEEE float */
579 #define VT_DOUBLE 9 /* IEEE double */
580 #define VT_LDOUBLE 10 /* IEEE long double */
581 #define VT_BOOL 11 /* ISOC99 boolean type */
582 #define VT_LLONG 12 /* 64 bit integer */
583 #define VT_LONG 13 /* long integer (NEVER USED as type, only
584 during parsing) */
585 #define VT_BTYPE 0x000f /* mask for basic type */
586 #define VT_UNSIGNED 0x0010 /* unsigned type */
587 #define VT_ARRAY 0x0020 /* array type (also has VT_PTR) */
588 #define VT_BITFIELD 0x0040 /* bitfield modifier */
589 #define VT_CONSTANT 0x0800 /* const modifier */
590 #define VT_VOLATILE 0x1000 /* volatile modifier */
591 #define VT_SIGNED 0x2000 /* signed type */
593 /* storage */
594 #define VT_EXTERN 0x00000080 /* extern definition */
595 #define VT_STATIC 0x00000100 /* static variable */
596 #define VT_TYPEDEF 0x00000200 /* typedef definition */
597 #define VT_INLINE 0x00000400 /* inline definition */
599 #define VT_STRUCT_SHIFT 16 /* shift for bitfield shift values */
601 /* type mask (except storage) */
602 #define VT_STORAGE (VT_EXTERN | VT_STATIC | VT_TYPEDEF | VT_INLINE)
603 #define VT_TYPE (~(VT_STORAGE))
605 /* token values */
607 /* warning: the following compare tokens depend on i386 asm code */
608 #define TOK_ULT 0x92
609 #define TOK_UGE 0x93
610 #define TOK_EQ 0x94
611 #define TOK_NE 0x95
612 #define TOK_ULE 0x96
613 #define TOK_UGT 0x97
614 #define TOK_Nset 0x98
615 #define TOK_Nclear 0x99
616 #define TOK_LT 0x9c
617 #define TOK_GE 0x9d
618 #define TOK_LE 0x9e
619 #define TOK_GT 0x9f
621 #define TOK_LAND 0xa0
622 #define TOK_LOR 0xa1
624 #define TOK_DEC 0xa2
625 #define TOK_MID 0xa3 /* inc/dec, to void constant */
626 #define TOK_INC 0xa4
627 #define TOK_UDIV 0xb0 /* unsigned division */
628 #define TOK_UMOD 0xb1 /* unsigned modulo */
629 #define TOK_PDIV 0xb2 /* fast division with undefined rounding for pointers */
630 #define TOK_CINT 0xb3 /* number in tokc */
631 #define TOK_CCHAR 0xb4 /* char constant in tokc */
632 #define TOK_STR 0xb5 /* pointer to string in tokc */
633 #define TOK_TWOSHARPS 0xb6 /* ## preprocessing token */
634 #define TOK_LCHAR 0xb7
635 #define TOK_LSTR 0xb8
636 #define TOK_CFLOAT 0xb9 /* float constant */
637 #define TOK_LINENUM 0xba /* line number info */
638 #define TOK_CDOUBLE 0xc0 /* double constant */
639 #define TOK_CLDOUBLE 0xc1 /* long double constant */
640 #define TOK_UMULL 0xc2 /* unsigned 32x32 -> 64 mul */
641 #define TOK_ADDC1 0xc3 /* add with carry generation */
642 #define TOK_ADDC2 0xc4 /* add with carry use */
643 #define TOK_SUBC1 0xc5 /* add with carry generation */
644 #define TOK_SUBC2 0xc6 /* add with carry use */
645 #define TOK_CUINT 0xc8 /* unsigned int constant */
646 #define TOK_CLLONG 0xc9 /* long long constant */
647 #define TOK_CULLONG 0xca /* unsigned long long constant */
648 #define TOK_ARROW 0xcb
649 #define TOK_DOTS 0xcc /* three dots */
650 #define TOK_SHR 0xcd /* unsigned shift right */
651 #define TOK_PPNUM 0xce /* preprocessor number */
653 #define TOK_SHL 0x01 /* shift left */
654 #define TOK_SAR 0x02 /* signed shift right */
656 /* assignement operators : normal operator or 0x80 */
657 #define TOK_A_MOD 0xa5
658 #define TOK_A_AND 0xa6
659 #define TOK_A_MUL 0xaa
660 #define TOK_A_ADD 0xab
661 #define TOK_A_SUB 0xad
662 #define TOK_A_DIV 0xaf
663 #define TOK_A_XOR 0xde
664 #define TOK_A_OR 0xfc
665 #define TOK_A_SHL 0x81
666 #define TOK_A_SAR 0x82
668 #ifndef offsetof
669 #define offsetof(type, field) ((size_t) &((type *)0)->field)
670 #endif
672 #ifndef countof
673 #define countof(tab) (sizeof(tab) / sizeof((tab)[0]))
674 #endif
676 /* WARNING: the content of this string encodes token numbers */
677 static char tok_two_chars[] = "<=\236>=\235!=\225&&\240||\241++\244--\242==\224<<\1>>\2+=\253-=\255*=\252/=\257%=\245&=\246^=\336|=\374->\313..\250##\266";
679 #define TOK_EOF (-1) /* end of file */
680 #define TOK_LINEFEED 10 /* line feed */
682 /* all identificators and strings have token above that */
683 #define TOK_IDENT 256
685 /* only used for i386 asm opcodes definitions */
686 #define DEF_ASM(x) DEF(TOK_ASM_ ## x, #x)
688 #define DEF_BWL(x) \
689 DEF(TOK_ASM_ ## x ## b, #x "b") \
690 DEF(TOK_ASM_ ## x ## w, #x "w") \
691 DEF(TOK_ASM_ ## x ## l, #x "l") \
692 DEF(TOK_ASM_ ## x, #x)
694 #define DEF_WL(x) \
695 DEF(TOK_ASM_ ## x ## w, #x "w") \
696 DEF(TOK_ASM_ ## x ## l, #x "l") \
697 DEF(TOK_ASM_ ## x, #x)
699 #define DEF_FP1(x) \
700 DEF(TOK_ASM_ ## f ## x ## s, "f" #x "s") \
701 DEF(TOK_ASM_ ## fi ## x ## l, "fi" #x "l") \
702 DEF(TOK_ASM_ ## f ## x ## l, "f" #x "l") \
703 DEF(TOK_ASM_ ## fi ## x ## s, "fi" #x "s")
705 #define DEF_FP(x) \
706 DEF(TOK_ASM_ ## f ## x, "f" #x ) \
707 DEF(TOK_ASM_ ## f ## x ## p, "f" #x "p") \
708 DEF_FP1(x)
710 #define DEF_ASMTEST(x) \
711 DEF_ASM(x ## o) \
712 DEF_ASM(x ## no) \
713 DEF_ASM(x ## b) \
714 DEF_ASM(x ## c) \
715 DEF_ASM(x ## nae) \
716 DEF_ASM(x ## nb) \
717 DEF_ASM(x ## nc) \
718 DEF_ASM(x ## ae) \
719 DEF_ASM(x ## e) \
720 DEF_ASM(x ## z) \
721 DEF_ASM(x ## ne) \
722 DEF_ASM(x ## nz) \
723 DEF_ASM(x ## be) \
724 DEF_ASM(x ## na) \
725 DEF_ASM(x ## nbe) \
726 DEF_ASM(x ## a) \
727 DEF_ASM(x ## s) \
728 DEF_ASM(x ## ns) \
729 DEF_ASM(x ## p) \
730 DEF_ASM(x ## pe) \
731 DEF_ASM(x ## np) \
732 DEF_ASM(x ## po) \
733 DEF_ASM(x ## l) \
734 DEF_ASM(x ## nge) \
735 DEF_ASM(x ## nl) \
736 DEF_ASM(x ## ge) \
737 DEF_ASM(x ## le) \
738 DEF_ASM(x ## ng) \
739 DEF_ASM(x ## nle) \
740 DEF_ASM(x ## g)
742 #define TOK_ASM_int TOK_INT
744 enum tcc_token {
745 TOK_LAST = TOK_IDENT - 1,
746 #define DEF(id, str) id,
747 #include "tcctok.h"
748 #undef DEF
751 static const char tcc_keywords[] =
752 #define DEF(id, str) str "\0"
753 #include "tcctok.h"
754 #undef DEF
757 #define TOK_UIDENT TOK_DEFINE
759 #ifdef _WIN32
760 #define snprintf _snprintf
761 #define vsnprintf _vsnprintf
762 #ifndef __GNUC__
763 #define strtold (long double)strtod
764 #define strtof (float)strtod
765 #define strtoll (long long)strtol
766 #endif
767 #elif defined(TCC_UCLIBC) || defined(__FreeBSD__) || defined(__DragonFly__) \
768 || defined(__OpenBSD__)
769 /* currently incorrect */
770 long double strtold(const char *nptr, char **endptr)
772 return (long double)strtod(nptr, endptr);
774 float strtof(const char *nptr, char **endptr)
776 return (float)strtod(nptr, endptr);
778 #else
779 /* XXX: need to define this to use them in non ISOC99 context */
780 extern float strtof (const char *__nptr, char **__endptr);
781 extern long double strtold (const char *__nptr, char **__endptr);
782 #endif
784 static char *pstrcpy(char *buf, int buf_size, const char *s);
785 static char *pstrcat(char *buf, int buf_size, const char *s);
786 static char *tcc_basename(const char *name);
787 static char *tcc_fileextension (const char *p);
789 static void next(void);
790 static void next_nomacro(void);
791 static void parse_expr_type(CType *type);
792 static void expr_type(CType *type);
793 static void unary_type(CType *type);
794 static void block(int *bsym, int *csym, int *case_sym, int *def_sym,
795 int case_reg, int is_expr);
796 static int expr_const(void);
797 static void expr_eq(void);
798 static void gexpr(void);
799 static void gen_inline_functions(void);
800 static void decl(int l);
801 static void decl_initializer(CType *type, Section *sec, unsigned long c,
802 int first, int size_only);
803 static void decl_initializer_alloc(CType *type, AttributeDef *ad, int r,
804 int has_init, int v, int scope);
805 int gv(int rc);
806 void gv2(int rc1, int rc2);
807 void move_reg(int r, int s);
808 void save_regs(int n);
809 void save_reg(int r);
810 void vpop(void);
811 void vswap(void);
812 void vdup(void);
813 int get_reg(int rc);
814 int get_reg_ex(int rc,int rc2);
816 struct macro_level {
817 struct macro_level *prev;
818 int *p;
821 static void macro_subst(TokenString *tok_str, Sym **nested_list,
822 const int *macro_str, struct macro_level **can_read_stream);
823 void gen_op(int op);
824 void force_charshort_cast(int t);
825 static void gen_cast(CType *type);
826 void vstore(void);
827 static Sym *sym_find(int v);
828 static Sym *sym_push(int v, CType *type, int r, int c);
830 /* type handling */
831 static int type_size(CType *type, int *a);
832 static inline CType *pointed_type(CType *type);
833 static int pointed_size(CType *type);
834 static int lvalue_type(int t);
835 static int parse_btype(CType *type, AttributeDef *ad);
836 static void type_decl(CType *type, AttributeDef *ad, int *v, int td);
837 static int compare_types(CType *type1, CType *type2, int unqualified);
838 static int is_compatible_types(CType *type1, CType *type2);
839 static int is_compatible_parameter_types(CType *type1, CType *type2);
841 int ieee_finite(double d);
842 void error(const char *fmt, ...);
843 void vpushi(int v);
844 void vpushll(long long v);
845 void vrott(int n);
846 void vnrott(int n);
847 void lexpand_nr(void);
848 static void vpush_global_sym(CType *type, int v);
849 void vset(CType *type, int r, int v);
850 void type_to_str(char *buf, int buf_size,
851 CType *type, const char *varstr);
852 char *get_tok_str(int v, CValue *cv);
853 static Sym *get_sym_ref(CType *type, Section *sec,
854 unsigned long offset, unsigned long size);
855 static Sym *external_global_sym(int v, CType *type, int r);
857 /* section generation */
858 static void section_realloc(Section *sec, unsigned long new_size);
859 static void *section_ptr_add(Section *sec, unsigned long size);
860 static void put_extern_sym(Sym *sym, Section *section,
861 unsigned long value, unsigned long size);
862 static void greloc(Section *s, Sym *sym, unsigned long addr, int type);
863 static int put_elf_str(Section *s, const char *sym);
864 static int put_elf_sym(Section *s,
865 unsigned long value, unsigned long size,
866 int info, int other, int shndx, const char *name);
867 static int add_elf_sym(Section *s, unsigned long value, unsigned long size,
868 int info, int other, int sh_num, const char *name);
869 static void put_elf_reloc(Section *symtab, Section *s, unsigned long offset,
870 int type, int symbol);
871 static void put_stabs(const char *str, int type, int other, int desc,
872 unsigned long value);
873 static void put_stabs_r(const char *str, int type, int other, int desc,
874 unsigned long value, Section *sec, int sym_index);
875 static void put_stabn(int type, int other, int desc, int value);
876 static void put_stabd(int type, int other, int desc);
877 static int tcc_add_dll(TCCState *s, const char *filename, int flags);
879 #define AFF_PRINT_ERROR 0x0001 /* print error if file not found */
880 #define AFF_REFERENCED_DLL 0x0002 /* load a referenced dll from another dll */
881 #define AFF_PREPROCESS 0x0004 /* preprocess file */
882 static int tcc_add_file_internal(TCCState *s, const char *filename, int flags);
884 /* tcccoff.c */
885 int tcc_output_coff(TCCState *s1, FILE *f);
887 /* tccpe.c */
888 void *resolve_sym(TCCState *s1, const char *sym, int type);
889 int pe_load_def_file(struct TCCState *s1, int fd);
890 int pe_test_res_file(void *v, int size);
891 int pe_load_res_file(struct TCCState *s1, int fd);
892 void pe_add_runtime(struct TCCState *s1);
893 void pe_guess_outfile(char *objfilename, int output_type);
894 int pe_output_file(struct TCCState *s1, const char *filename);
896 /* tccasm.c */
898 #ifdef CONFIG_TCC_ASM
900 typedef struct ExprValue {
901 uint32_t v;
902 Sym *sym;
903 } ExprValue;
905 #define MAX_ASM_OPERANDS 30
907 typedef struct ASMOperand {
908 int id; /* GCC 3 optionnal identifier (0 if number only supported */
909 char *constraint;
910 char asm_str[16]; /* computed asm string for operand */
911 SValue *vt; /* C value of the expression */
912 int ref_index; /* if >= 0, gives reference to a output constraint */
913 int input_index; /* if >= 0, gives reference to an input constraint */
914 int priority; /* priority, used to assign registers */
915 int reg; /* if >= 0, register number used for this operand */
916 int is_llong; /* true if double register value */
917 int is_memory; /* true if memory operand */
918 int is_rw; /* for '+' modifier */
919 } ASMOperand;
921 static void asm_expr(TCCState *s1, ExprValue *pe);
922 static int asm_int_expr(TCCState *s1);
923 static int find_constraint(ASMOperand *operands, int nb_operands,
924 const char *name, const char **pp);
926 static int tcc_assemble(TCCState *s1, int do_preprocess);
928 #endif
930 static void asm_instr(void);
931 static void asm_global_instr(void);
933 /* true if float/double/long double type */
934 static inline int is_float(int t)
936 int bt;
937 bt = t & VT_BTYPE;
938 return bt == VT_LDOUBLE || bt == VT_DOUBLE || bt == VT_FLOAT;
941 #ifdef TCC_TARGET_I386
942 #include "i386-gen.c"
943 #endif
945 #ifdef TCC_TARGET_ARM
946 #include "arm-gen.c"
947 #endif
949 #ifdef TCC_TARGET_C67
950 #include "c67-gen.c"
951 #endif
953 #ifdef TCC_TARGET_X86_64
954 #include "x86_64-gen.c"
955 #endif
957 #ifdef CONFIG_TCC_STATIC
959 #define RTLD_LAZY 0x001
960 #define RTLD_NOW 0x002
961 #define RTLD_GLOBAL 0x100
962 #define RTLD_DEFAULT NULL
964 /* dummy function for profiling */
965 void *dlopen(const char *filename, int flag)
967 return NULL;
970 const char *dlerror(void)
972 return "error";
975 typedef struct TCCSyms {
976 char *str;
977 void *ptr;
978 } TCCSyms;
980 #define TCCSYM(a) { #a, &a, },
982 /* add the symbol you want here if no dynamic linking is done */
983 static TCCSyms tcc_syms[] = {
984 #if !defined(CONFIG_TCCBOOT)
985 TCCSYM(printf)
986 TCCSYM(fprintf)
987 TCCSYM(fopen)
988 TCCSYM(fclose)
989 #endif
990 { NULL, NULL },
993 void *resolve_sym(TCCState *s1, const char *symbol, int type)
995 TCCSyms *p;
996 p = tcc_syms;
997 while (p->str != NULL) {
998 if (!strcmp(p->str, symbol))
999 return p->ptr;
1000 p++;
1002 return NULL;
1005 #elif !defined(_WIN32)
1007 #include <dlfcn.h>
1009 void *resolve_sym(TCCState *s1, const char *sym, int type)
1011 return dlsym(RTLD_DEFAULT, sym);
1014 #endif
1016 /********************************************************/
1018 /* we use our own 'finite' function to avoid potential problems with
1019 non standard math libs */
1020 /* XXX: endianness dependent */
1021 int ieee_finite(double d)
1023 int *p = (int *)&d;
1024 return ((unsigned)((p[1] | 0x800fffff) + 1)) >> 31;
1027 /* copy a string and truncate it. */
1028 static char *pstrcpy(char *buf, int buf_size, const char *s)
1030 char *q, *q_end;
1031 int c;
1033 if (buf_size > 0) {
1034 q = buf;
1035 q_end = buf + buf_size - 1;
1036 while (q < q_end) {
1037 c = *s++;
1038 if (c == '\0')
1039 break;
1040 *q++ = c;
1042 *q = '\0';
1044 return buf;
1047 /* strcat and truncate. */
1048 static char *pstrcat(char *buf, int buf_size, const char *s)
1050 int len;
1051 len = strlen(buf);
1052 if (len < buf_size)
1053 pstrcpy(buf + len, buf_size - len, s);
1054 return buf;
1057 #ifndef LIBTCC
1058 static int strstart(const char *str, const char *val, const char **ptr)
1060 const char *p, *q;
1061 p = str;
1062 q = val;
1063 while (*q != '\0') {
1064 if (*p != *q)
1065 return 0;
1066 p++;
1067 q++;
1069 if (ptr)
1070 *ptr = p;
1071 return 1;
1073 #endif
1075 #ifdef _WIN32
1076 #define IS_PATHSEP(c) (c == '/' || c == '\\')
1077 #define IS_ABSPATH(p) (IS_PATHSEP(p[0]) || (p[0] && p[1] == ':' && IS_PATHSEP(p[2])))
1078 #define PATHCMP stricmp
1079 #else
1080 #define IS_PATHSEP(c) (c == '/')
1081 #define IS_ABSPATH(p) IS_PATHSEP(p[0])
1082 #define PATHCMP strcmp
1083 #endif
1085 /* extract the basename of a file */
1086 static char *tcc_basename(const char *name)
1088 char *p = strchr(name, 0);
1089 while (p > name && !IS_PATHSEP(p[-1]))
1090 --p;
1091 return p;
1094 static char *tcc_fileextension (const char *name)
1096 char *b = tcc_basename(name);
1097 char *e = strrchr(b, '.');
1098 return e ? e : strchr(b, 0);
1101 #ifdef _WIN32
1102 char *normalize_slashes(char *path)
1104 char *p;
1105 for (p = path; *p; ++p)
1106 if (*p == '\\')
1107 *p = '/';
1108 return path;
1111 char *w32_tcc_lib_path(void)
1113 /* on win32, we suppose the lib and includes are at the location
1114 of 'tcc.exe' */
1115 char path[1024], *p;
1116 GetModuleFileNameA(NULL, path, sizeof path);
1117 p = tcc_basename(normalize_slashes(strlwr(path)));
1118 if (p - 5 > path && 0 == strncmp(p - 5, "/bin/", 5))
1119 p -= 5;
1120 else if (p > path)
1121 p--;
1122 *p = 0;
1123 return strdup(path);
1125 #endif
1127 void set_pages_executable(void *ptr, unsigned long length)
1129 #ifdef _WIN32
1130 unsigned long old_protect;
1131 VirtualProtect(ptr, length, PAGE_EXECUTE_READWRITE, &old_protect);
1132 #else
1133 unsigned long start, end;
1134 start = (unsigned long)ptr & ~(PAGESIZE - 1);
1135 end = (unsigned long)ptr + length;
1136 end = (end + PAGESIZE - 1) & ~(PAGESIZE - 1);
1137 mprotect((void *)start, end - start, PROT_READ | PROT_WRITE | PROT_EXEC);
1138 #endif
1141 /* memory management */
1142 #ifdef MEM_DEBUG
1143 int mem_cur_size;
1144 int mem_max_size;
1145 unsigned malloc_usable_size(void*);
1146 #endif
1148 static inline void tcc_free(void *ptr)
1150 #ifdef MEM_DEBUG
1151 mem_cur_size -= malloc_usable_size(ptr);
1152 #endif
1153 free(ptr);
1156 static void *tcc_malloc(unsigned long size)
1158 void *ptr;
1159 ptr = malloc(size);
1160 if (!ptr && size)
1161 error("memory full");
1162 #ifdef MEM_DEBUG
1163 mem_cur_size += malloc_usable_size(ptr);
1164 if (mem_cur_size > mem_max_size)
1165 mem_max_size = mem_cur_size;
1166 #endif
1167 return ptr;
1170 static void *tcc_mallocz(unsigned long size)
1172 void *ptr;
1173 ptr = tcc_malloc(size);
1174 memset(ptr, 0, size);
1175 return ptr;
1178 static inline void *tcc_realloc(void *ptr, unsigned long size)
1180 void *ptr1;
1181 #ifdef MEM_DEBUG
1182 mem_cur_size -= malloc_usable_size(ptr);
1183 #endif
1184 ptr1 = realloc(ptr, size);
1185 #ifdef MEM_DEBUG
1186 /* NOTE: count not correct if alloc error, but not critical */
1187 mem_cur_size += malloc_usable_size(ptr1);
1188 if (mem_cur_size > mem_max_size)
1189 mem_max_size = mem_cur_size;
1190 #endif
1191 return ptr1;
1194 static char *tcc_strdup(const char *str)
1196 char *ptr;
1197 ptr = tcc_malloc(strlen(str) + 1);
1198 strcpy(ptr, str);
1199 return ptr;
1202 #define free(p) use_tcc_free(p)
1203 #define malloc(s) use_tcc_malloc(s)
1204 #define realloc(p, s) use_tcc_realloc(p, s)
1206 static void dynarray_add(void ***ptab, int *nb_ptr, void *data)
1208 int nb, nb_alloc;
1209 void **pp;
1211 nb = *nb_ptr;
1212 pp = *ptab;
1213 /* every power of two we double array size */
1214 if ((nb & (nb - 1)) == 0) {
1215 if (!nb)
1216 nb_alloc = 1;
1217 else
1218 nb_alloc = nb * 2;
1219 pp = tcc_realloc(pp, nb_alloc * sizeof(void *));
1220 if (!pp)
1221 error("memory full");
1222 *ptab = pp;
1224 pp[nb++] = data;
1225 *nb_ptr = nb;
1228 static void dynarray_reset(void *pp, int *n)
1230 void **p;
1231 for (p = *(void***)pp; *n; ++p, --*n)
1232 if (*p)
1233 tcc_free(*p);
1234 tcc_free(*(void**)pp);
1235 *(void**)pp = NULL;
1238 /* symbol allocator */
1239 static Sym *__sym_malloc(void)
1241 Sym *sym_pool, *sym, *last_sym;
1242 int i;
1244 sym_pool = tcc_malloc(SYM_POOL_NB * sizeof(Sym));
1245 dynarray_add(&sym_pools, &nb_sym_pools, sym_pool);
1247 last_sym = sym_free_first;
1248 sym = sym_pool;
1249 for(i = 0; i < SYM_POOL_NB; i++) {
1250 sym->next = last_sym;
1251 last_sym = sym;
1252 sym++;
1254 sym_free_first = last_sym;
1255 return last_sym;
1258 static inline Sym *sym_malloc(void)
1260 Sym *sym;
1261 sym = sym_free_first;
1262 if (!sym)
1263 sym = __sym_malloc();
1264 sym_free_first = sym->next;
1265 return sym;
1268 static inline void sym_free(Sym *sym)
1270 sym->next = sym_free_first;
1271 sym_free_first = sym;
1274 Section *new_section(TCCState *s1, const char *name, int sh_type, int sh_flags)
1276 Section *sec;
1278 sec = tcc_mallocz(sizeof(Section) + strlen(name));
1279 strcpy(sec->name, name);
1280 sec->sh_type = sh_type;
1281 sec->sh_flags = sh_flags;
1282 switch(sh_type) {
1283 case SHT_HASH:
1284 case SHT_REL:
1285 case SHT_RELA:
1286 case SHT_DYNSYM:
1287 case SHT_SYMTAB:
1288 case SHT_DYNAMIC:
1289 sec->sh_addralign = 4;
1290 break;
1291 case SHT_STRTAB:
1292 sec->sh_addralign = 1;
1293 break;
1294 default:
1295 sec->sh_addralign = 32; /* default conservative alignment */
1296 break;
1299 if (sh_flags & SHF_PRIVATE) {
1300 dynarray_add((void ***)&s1->priv_sections, &s1->nb_priv_sections, sec);
1301 } else {
1302 sec->sh_num = s1->nb_sections;
1303 dynarray_add((void ***)&s1->sections, &s1->nb_sections, sec);
1306 return sec;
1309 static void free_section(Section *s)
1311 #ifdef TCC_TARGET_X86_64
1312 /* after tcc_relocate(), some sections share the data buffer.
1313 let's check if the data is allocated not to free the shared buffers */
1314 if (s->data_allocated)
1315 #endif
1316 tcc_free(s->data);
1319 /* realloc section and set its content to zero */
1320 static void section_realloc(Section *sec, unsigned long new_size)
1322 unsigned long size;
1323 unsigned char *data;
1325 size = sec->data_allocated;
1326 if (size == 0)
1327 size = 1;
1328 while (size < new_size)
1329 size = size * 2;
1330 data = tcc_realloc(sec->data, size);
1331 if (!data)
1332 error("memory full");
1333 memset(data + sec->data_allocated, 0, size - sec->data_allocated);
1334 sec->data = data;
1335 sec->data_allocated = size;
1338 /* reserve at least 'size' bytes in section 'sec' from
1339 sec->data_offset. */
1340 static void *section_ptr_add(Section *sec, unsigned long size)
1342 unsigned long offset, offset1;
1344 offset = sec->data_offset;
1345 offset1 = offset + size;
1346 if (offset1 > sec->data_allocated)
1347 section_realloc(sec, offset1);
1348 sec->data_offset = offset1;
1349 return sec->data + offset;
1352 /* return a reference to a section, and create it if it does not
1353 exists */
1354 Section *find_section(TCCState *s1, const char *name)
1356 Section *sec;
1357 int i;
1358 for(i = 1; i < s1->nb_sections; i++) {
1359 sec = s1->sections[i];
1360 if (!strcmp(name, sec->name))
1361 return sec;
1363 /* sections are created as PROGBITS */
1364 return new_section(s1, name, SHT_PROGBITS, SHF_ALLOC);
1367 #define SECTION_ABS ((void *)1)
1369 /* update sym->c so that it points to an external symbol in section
1370 'section' with value 'value' */
1371 static void put_extern_sym2(Sym *sym, Section *section,
1372 unsigned long value, unsigned long size,
1373 int can_add_underscore)
1375 int sym_type, sym_bind, sh_num, info, other, attr;
1376 ElfW(Sym) *esym;
1377 const char *name;
1378 char buf1[256];
1380 if (section == NULL)
1381 sh_num = SHN_UNDEF;
1382 else if (section == SECTION_ABS)
1383 sh_num = SHN_ABS;
1384 else
1385 sh_num = section->sh_num;
1387 other = attr = 0;
1389 if ((sym->type.t & VT_BTYPE) == VT_FUNC) {
1390 sym_type = STT_FUNC;
1391 #ifdef TCC_TARGET_PE
1392 if (sym->type.ref)
1393 attr = sym->type.ref->r;
1394 if (FUNC_EXPORT(attr))
1395 other |= 1;
1396 if (FUNC_CALL(attr) == FUNC_STDCALL)
1397 other |= 2;
1398 #endif
1399 } else {
1400 sym_type = STT_OBJECT;
1403 if (sym->type.t & VT_STATIC)
1404 sym_bind = STB_LOCAL;
1405 else
1406 sym_bind = STB_GLOBAL;
1408 if (!sym->c) {
1409 name = get_tok_str(sym->v, NULL);
1410 #ifdef CONFIG_TCC_BCHECK
1411 if (do_bounds_check) {
1412 char buf[32];
1414 /* XXX: avoid doing that for statics ? */
1415 /* if bound checking is activated, we change some function
1416 names by adding the "__bound" prefix */
1417 switch(sym->v) {
1418 #if 0
1419 /* XXX: we rely only on malloc hooks */
1420 case TOK_malloc:
1421 case TOK_free:
1422 case TOK_realloc:
1423 case TOK_memalign:
1424 case TOK_calloc:
1425 #endif
1426 case TOK_memcpy:
1427 case TOK_memmove:
1428 case TOK_memset:
1429 case TOK_strlen:
1430 case TOK_strcpy:
1431 case TOK__alloca:
1432 strcpy(buf, "__bound_");
1433 strcat(buf, name);
1434 name = buf;
1435 break;
1438 #endif
1440 #ifdef TCC_TARGET_PE
1441 if ((other & 2) && can_add_underscore) {
1442 sprintf(buf1, "_%s@%d", name, FUNC_ARGS(attr));
1443 name = buf1;
1444 } else
1445 #endif
1446 if (tcc_state->leading_underscore && can_add_underscore) {
1447 buf1[0] = '_';
1448 pstrcpy(buf1 + 1, sizeof(buf1) - 1, name);
1449 name = buf1;
1451 info = ELFW(ST_INFO)(sym_bind, sym_type);
1452 sym->c = add_elf_sym(symtab_section, value, size, info, other, sh_num, name);
1453 } else {
1454 esym = &((ElfW(Sym) *)symtab_section->data)[sym->c];
1455 esym->st_value = value;
1456 esym->st_size = size;
1457 esym->st_shndx = sh_num;
1458 esym->st_other |= other;
1462 static void put_extern_sym(Sym *sym, Section *section,
1463 unsigned long value, unsigned long size)
1465 put_extern_sym2(sym, section, value, size, 1);
1468 /* add a new relocation entry to symbol 'sym' in section 's' */
1469 static void greloc(Section *s, Sym *sym, unsigned long offset, int type)
1471 if (!sym->c)
1472 put_extern_sym(sym, NULL, 0, 0);
1473 /* now we can add ELF relocation info */
1474 put_elf_reloc(symtab_section, s, offset, type, sym->c);
1477 static inline int isid(int c)
1479 return (c >= 'a' && c <= 'z') ||
1480 (c >= 'A' && c <= 'Z') ||
1481 c == '_';
1484 static inline int isnum(int c)
1486 return c >= '0' && c <= '9';
1489 static inline int isoct(int c)
1491 return c >= '0' && c <= '7';
1494 static inline int toup(int c)
1496 if (c >= 'a' && c <= 'z')
1497 return c - 'a' + 'A';
1498 else
1499 return c;
1502 static void strcat_vprintf(char *buf, int buf_size, const char *fmt, va_list ap)
1504 int len;
1505 len = strlen(buf);
1506 vsnprintf(buf + len, buf_size - len, fmt, ap);
1509 static void strcat_printf(char *buf, int buf_size, const char *fmt, ...)
1511 va_list ap;
1512 va_start(ap, fmt);
1513 strcat_vprintf(buf, buf_size, fmt, ap);
1514 va_end(ap);
1517 void error1(TCCState *s1, int is_warning, const char *fmt, va_list ap)
1519 char buf[2048];
1520 BufferedFile **f;
1522 buf[0] = '\0';
1523 if (file) {
1524 for(f = s1->include_stack; f < s1->include_stack_ptr; f++)
1525 strcat_printf(buf, sizeof(buf), "In file included from %s:%d:\n",
1526 (*f)->filename, (*f)->line_num);
1527 if (file->line_num > 0) {
1528 strcat_printf(buf, sizeof(buf),
1529 "%s:%d: ", file->filename, file->line_num);
1530 } else {
1531 strcat_printf(buf, sizeof(buf),
1532 "%s: ", file->filename);
1534 } else {
1535 strcat_printf(buf, sizeof(buf),
1536 "tcc: ");
1538 if (is_warning)
1539 strcat_printf(buf, sizeof(buf), "warning: ");
1540 strcat_vprintf(buf, sizeof(buf), fmt, ap);
1542 if (!s1->error_func) {
1543 /* default case: stderr */
1544 fprintf(stderr, "%s\n", buf);
1545 } else {
1546 s1->error_func(s1->error_opaque, buf);
1548 if (!is_warning || s1->warn_error)
1549 s1->nb_errors++;
1552 #ifdef LIBTCC
1553 void tcc_set_error_func(TCCState *s, void *error_opaque,
1554 void (*error_func)(void *opaque, const char *msg))
1556 s->error_opaque = error_opaque;
1557 s->error_func = error_func;
1559 #endif
1561 /* error without aborting current compilation */
1562 void error_noabort(const char *fmt, ...)
1564 TCCState *s1 = tcc_state;
1565 va_list ap;
1567 va_start(ap, fmt);
1568 error1(s1, 0, fmt, ap);
1569 va_end(ap);
1572 void error(const char *fmt, ...)
1574 TCCState *s1 = tcc_state;
1575 va_list ap;
1577 va_start(ap, fmt);
1578 error1(s1, 0, fmt, ap);
1579 va_end(ap);
1580 /* better than nothing: in some cases, we accept to handle errors */
1581 if (s1->error_set_jmp_enabled) {
1582 longjmp(s1->error_jmp_buf, 1);
1583 } else {
1584 /* XXX: eliminate this someday */
1585 exit(1);
1589 void expect(const char *msg)
1591 error("%s expected", msg);
1594 void warning(const char *fmt, ...)
1596 TCCState *s1 = tcc_state;
1597 va_list ap;
1599 if (s1->warn_none)
1600 return;
1602 va_start(ap, fmt);
1603 error1(s1, 1, fmt, ap);
1604 va_end(ap);
1607 void skip(int c)
1609 if (tok != c)
1610 error("'%c' expected", c);
1611 next();
1614 static void test_lvalue(void)
1616 if (!(vtop->r & VT_LVAL))
1617 expect("lvalue");
1620 /* allocate a new token */
1621 static TokenSym *tok_alloc_new(TokenSym **pts, const char *str, int len)
1623 TokenSym *ts, **ptable;
1624 int i;
1626 if (tok_ident >= SYM_FIRST_ANOM)
1627 error("memory full");
1629 /* expand token table if needed */
1630 i = tok_ident - TOK_IDENT;
1631 if ((i % TOK_ALLOC_INCR) == 0) {
1632 ptable = tcc_realloc(table_ident, (i + TOK_ALLOC_INCR) * sizeof(TokenSym *));
1633 if (!ptable)
1634 error("memory full");
1635 table_ident = ptable;
1638 ts = tcc_malloc(sizeof(TokenSym) + len);
1639 table_ident[i] = ts;
1640 ts->tok = tok_ident++;
1641 ts->sym_define = NULL;
1642 ts->sym_label = NULL;
1643 ts->sym_struct = NULL;
1644 ts->sym_identifier = NULL;
1645 ts->len = len;
1646 ts->hash_next = NULL;
1647 memcpy(ts->str, str, len);
1648 ts->str[len] = '\0';
1649 *pts = ts;
1650 return ts;
1653 #define TOK_HASH_INIT 1
1654 #define TOK_HASH_FUNC(h, c) ((h) * 263 + (c))
1656 /* find a token and add it if not found */
1657 static TokenSym *tok_alloc(const char *str, int len)
1659 TokenSym *ts, **pts;
1660 int i;
1661 unsigned int h;
1663 h = TOK_HASH_INIT;
1664 for(i=0;i<len;i++)
1665 h = TOK_HASH_FUNC(h, ((unsigned char *)str)[i]);
1666 h &= (TOK_HASH_SIZE - 1);
1668 pts = &hash_ident[h];
1669 for(;;) {
1670 ts = *pts;
1671 if (!ts)
1672 break;
1673 if (ts->len == len && !memcmp(ts->str, str, len))
1674 return ts;
1675 pts = &(ts->hash_next);
1677 return tok_alloc_new(pts, str, len);
1680 /* CString handling */
1682 static void cstr_realloc(CString *cstr, int new_size)
1684 int size;
1685 void *data;
1687 size = cstr->size_allocated;
1688 if (size == 0)
1689 size = 8; /* no need to allocate a too small first string */
1690 while (size < new_size)
1691 size = size * 2;
1692 data = tcc_realloc(cstr->data_allocated, size);
1693 if (!data)
1694 error("memory full");
1695 cstr->data_allocated = data;
1696 cstr->size_allocated = size;
1697 cstr->data = data;
1700 /* add a byte */
1701 static inline void cstr_ccat(CString *cstr, int ch)
1703 int size;
1704 size = cstr->size + 1;
1705 if (size > cstr->size_allocated)
1706 cstr_realloc(cstr, size);
1707 ((unsigned char *)cstr->data)[size - 1] = ch;
1708 cstr->size = size;
1711 static void cstr_cat(CString *cstr, const char *str)
1713 int c;
1714 for(;;) {
1715 c = *str;
1716 if (c == '\0')
1717 break;
1718 cstr_ccat(cstr, c);
1719 str++;
1723 /* add a wide char */
1724 static void cstr_wccat(CString *cstr, int ch)
1726 int size;
1727 size = cstr->size + sizeof(nwchar_t);
1728 if (size > cstr->size_allocated)
1729 cstr_realloc(cstr, size);
1730 *(nwchar_t *)(((unsigned char *)cstr->data) + size - sizeof(nwchar_t)) = ch;
1731 cstr->size = size;
1734 static void cstr_new(CString *cstr)
1736 memset(cstr, 0, sizeof(CString));
1739 /* free string and reset it to NULL */
1740 static void cstr_free(CString *cstr)
1742 tcc_free(cstr->data_allocated);
1743 cstr_new(cstr);
1746 #define cstr_reset(cstr) cstr_free(cstr)
1748 /* XXX: unicode ? */
1749 static void add_char(CString *cstr, int c)
1751 if (c == '\'' || c == '\"' || c == '\\') {
1752 /* XXX: could be more precise if char or string */
1753 cstr_ccat(cstr, '\\');
1755 if (c >= 32 && c <= 126) {
1756 cstr_ccat(cstr, c);
1757 } else {
1758 cstr_ccat(cstr, '\\');
1759 if (c == '\n') {
1760 cstr_ccat(cstr, 'n');
1761 } else {
1762 cstr_ccat(cstr, '0' + ((c >> 6) & 7));
1763 cstr_ccat(cstr, '0' + ((c >> 3) & 7));
1764 cstr_ccat(cstr, '0' + (c & 7));
1769 /* XXX: buffer overflow */
1770 /* XXX: float tokens */
1771 char *get_tok_str(int v, CValue *cv)
1773 static char buf[STRING_MAX_SIZE + 1];
1774 static CString cstr_buf;
1775 CString *cstr;
1776 unsigned char *q;
1777 char *p;
1778 int i, len;
1780 /* NOTE: to go faster, we give a fixed buffer for small strings */
1781 cstr_reset(&cstr_buf);
1782 cstr_buf.data = buf;
1783 cstr_buf.size_allocated = sizeof(buf);
1784 p = buf;
1786 switch(v) {
1787 case TOK_CINT:
1788 case TOK_CUINT:
1789 /* XXX: not quite exact, but only useful for testing */
1790 sprintf(p, "%u", cv->ui);
1791 break;
1792 case TOK_CLLONG:
1793 case TOK_CULLONG:
1794 /* XXX: not quite exact, but only useful for testing */
1795 sprintf(p, "%Lu", cv->ull);
1796 break;
1797 case TOK_LCHAR:
1798 cstr_ccat(&cstr_buf, 'L');
1799 case TOK_CCHAR:
1800 cstr_ccat(&cstr_buf, '\'');
1801 add_char(&cstr_buf, cv->i);
1802 cstr_ccat(&cstr_buf, '\'');
1803 cstr_ccat(&cstr_buf, '\0');
1804 break;
1805 case TOK_PPNUM:
1806 cstr = cv->cstr;
1807 len = cstr->size - 1;
1808 for(i=0;i<len;i++)
1809 add_char(&cstr_buf, ((unsigned char *)cstr->data)[i]);
1810 cstr_ccat(&cstr_buf, '\0');
1811 break;
1812 case TOK_LSTR:
1813 cstr_ccat(&cstr_buf, 'L');
1814 case TOK_STR:
1815 cstr = cv->cstr;
1816 cstr_ccat(&cstr_buf, '\"');
1817 if (v == TOK_STR) {
1818 len = cstr->size - 1;
1819 for(i=0;i<len;i++)
1820 add_char(&cstr_buf, ((unsigned char *)cstr->data)[i]);
1821 } else {
1822 len = (cstr->size / sizeof(nwchar_t)) - 1;
1823 for(i=0;i<len;i++)
1824 add_char(&cstr_buf, ((nwchar_t *)cstr->data)[i]);
1826 cstr_ccat(&cstr_buf, '\"');
1827 cstr_ccat(&cstr_buf, '\0');
1828 break;
1829 case TOK_LT:
1830 v = '<';
1831 goto addv;
1832 case TOK_GT:
1833 v = '>';
1834 goto addv;
1835 case TOK_DOTS:
1836 return strcpy(p, "...");
1837 case TOK_A_SHL:
1838 return strcpy(p, "<<=");
1839 case TOK_A_SAR:
1840 return strcpy(p, ">>=");
1841 default:
1842 if (v < TOK_IDENT) {
1843 /* search in two bytes table */
1844 q = tok_two_chars;
1845 while (*q) {
1846 if (q[2] == v) {
1847 *p++ = q[0];
1848 *p++ = q[1];
1849 *p = '\0';
1850 return buf;
1852 q += 3;
1854 addv:
1855 *p++ = v;
1856 *p = '\0';
1857 } else if (v < tok_ident) {
1858 return table_ident[v - TOK_IDENT]->str;
1859 } else if (v >= SYM_FIRST_ANOM) {
1860 /* special name for anonymous symbol */
1861 sprintf(p, "L.%u", v - SYM_FIRST_ANOM);
1862 } else {
1863 /* should never happen */
1864 return NULL;
1866 break;
1868 return cstr_buf.data;
1871 /* push, without hashing */
1872 static Sym *sym_push2(Sym **ps, int v, int t, long c)
1874 Sym *s;
1875 s = sym_malloc();
1876 s->v = v;
1877 s->type.t = t;
1878 s->c = c;
1879 s->next = NULL;
1880 /* add in stack */
1881 s->prev = *ps;
1882 *ps = s;
1883 return s;
1886 /* find a symbol and return its associated structure. 's' is the top
1887 of the symbol stack */
1888 static Sym *sym_find2(Sym *s, int v)
1890 while (s) {
1891 if (s->v == v)
1892 return s;
1893 s = s->prev;
1895 return NULL;
1898 /* structure lookup */
1899 static inline Sym *struct_find(int v)
1901 v -= TOK_IDENT;
1902 if ((unsigned)v >= (unsigned)(tok_ident - TOK_IDENT))
1903 return NULL;
1904 return table_ident[v]->sym_struct;
1907 /* find an identifier */
1908 static inline Sym *sym_find(int v)
1910 v -= TOK_IDENT;
1911 if ((unsigned)v >= (unsigned)(tok_ident - TOK_IDENT))
1912 return NULL;
1913 return table_ident[v]->sym_identifier;
1916 /* push a given symbol on the symbol stack */
1917 static Sym *sym_push(int v, CType *type, int r, int c)
1919 Sym *s, **ps;
1920 TokenSym *ts;
1922 if (local_stack)
1923 ps = &local_stack;
1924 else
1925 ps = &global_stack;
1926 s = sym_push2(ps, v, type->t, c);
1927 s->type.ref = type->ref;
1928 s->r = r;
1929 /* don't record fields or anonymous symbols */
1930 /* XXX: simplify */
1931 if (!(v & SYM_FIELD) && (v & ~SYM_STRUCT) < SYM_FIRST_ANOM) {
1932 /* record symbol in token array */
1933 ts = table_ident[(v & ~SYM_STRUCT) - TOK_IDENT];
1934 if (v & SYM_STRUCT)
1935 ps = &ts->sym_struct;
1936 else
1937 ps = &ts->sym_identifier;
1938 s->prev_tok = *ps;
1939 *ps = s;
1941 return s;
1944 /* push a global identifier */
1945 static Sym *global_identifier_push(int v, int t, int c)
1947 Sym *s, **ps;
1948 s = sym_push2(&global_stack, v, t, c);
1949 /* don't record anonymous symbol */
1950 if (v < SYM_FIRST_ANOM) {
1951 ps = &table_ident[v - TOK_IDENT]->sym_identifier;
1952 /* modify the top most local identifier, so that
1953 sym_identifier will point to 's' when popped */
1954 while (*ps != NULL)
1955 ps = &(*ps)->prev_tok;
1956 s->prev_tok = NULL;
1957 *ps = s;
1959 return s;
1962 /* pop symbols until top reaches 'b' */
1963 static void sym_pop(Sym **ptop, Sym *b)
1965 Sym *s, *ss, **ps;
1966 TokenSym *ts;
1967 int v;
1969 s = *ptop;
1970 while(s != b) {
1971 ss = s->prev;
1972 v = s->v;
1973 /* remove symbol in token array */
1974 /* XXX: simplify */
1975 if (!(v & SYM_FIELD) && (v & ~SYM_STRUCT) < SYM_FIRST_ANOM) {
1976 ts = table_ident[(v & ~SYM_STRUCT) - TOK_IDENT];
1977 if (v & SYM_STRUCT)
1978 ps = &ts->sym_struct;
1979 else
1980 ps = &ts->sym_identifier;
1981 *ps = s->prev_tok;
1983 sym_free(s);
1984 s = ss;
1986 *ptop = b;
1989 /* I/O layer */
1991 BufferedFile *tcc_open(TCCState *s1, const char *filename)
1993 int fd;
1994 BufferedFile *bf;
1996 if (strcmp(filename, "-") == 0)
1997 fd = 0, filename = "stdin";
1998 else
1999 fd = open(filename, O_RDONLY | O_BINARY);
2000 if ((verbose == 2 && fd >= 0) || verbose == 3)
2001 printf("%s %*s%s\n", fd < 0 ? "nf":"->",
2002 (s1->include_stack_ptr - s1->include_stack), "", filename);
2003 if (fd < 0)
2004 return NULL;
2005 bf = tcc_malloc(sizeof(BufferedFile));
2006 bf->fd = fd;
2007 bf->buf_ptr = bf->buffer;
2008 bf->buf_end = bf->buffer;
2009 bf->buffer[0] = CH_EOB; /* put eob symbol */
2010 pstrcpy(bf->filename, sizeof(bf->filename), filename);
2011 #ifdef _WIN32
2012 normalize_slashes(bf->filename);
2013 #endif
2014 bf->line_num = 1;
2015 bf->ifndef_macro = 0;
2016 bf->ifdef_stack_ptr = s1->ifdef_stack_ptr;
2017 // printf("opening '%s'\n", filename);
2018 return bf;
2021 void tcc_close(BufferedFile *bf)
2023 total_lines += bf->line_num;
2024 close(bf->fd);
2025 tcc_free(bf);
2028 /* fill input buffer and peek next char */
2029 static int tcc_peekc_slow(BufferedFile *bf)
2031 int len;
2032 /* only tries to read if really end of buffer */
2033 if (bf->buf_ptr >= bf->buf_end) {
2034 if (bf->fd != -1) {
2035 #if defined(PARSE_DEBUG)
2036 len = 8;
2037 #else
2038 len = IO_BUF_SIZE;
2039 #endif
2040 len = read(bf->fd, bf->buffer, len);
2041 if (len < 0)
2042 len = 0;
2043 } else {
2044 len = 0;
2046 total_bytes += len;
2047 bf->buf_ptr = bf->buffer;
2048 bf->buf_end = bf->buffer + len;
2049 *bf->buf_end = CH_EOB;
2051 if (bf->buf_ptr < bf->buf_end) {
2052 return bf->buf_ptr[0];
2053 } else {
2054 bf->buf_ptr = bf->buf_end;
2055 return CH_EOF;
2059 /* return the current character, handling end of block if necessary
2060 (but not stray) */
2061 static int handle_eob(void)
2063 return tcc_peekc_slow(file);
2066 /* read next char from current input file and handle end of input buffer */
2067 static inline void inp(void)
2069 ch = *(++(file->buf_ptr));
2070 /* end of buffer/file handling */
2071 if (ch == CH_EOB)
2072 ch = handle_eob();
2075 /* handle '\[\r]\n' */
2076 static int handle_stray_noerror(void)
2078 while (ch == '\\') {
2079 inp();
2080 if (ch == '\n') {
2081 file->line_num++;
2082 inp();
2083 } else if (ch == '\r') {
2084 inp();
2085 if (ch != '\n')
2086 goto fail;
2087 file->line_num++;
2088 inp();
2089 } else {
2090 fail:
2091 return 1;
2094 return 0;
2097 static void handle_stray(void)
2099 if (handle_stray_noerror())
2100 error("stray '\\' in program");
2103 /* skip the stray and handle the \\n case. Output an error if
2104 incorrect char after the stray */
2105 static int handle_stray1(uint8_t *p)
2107 int c;
2109 if (p >= file->buf_end) {
2110 file->buf_ptr = p;
2111 c = handle_eob();
2112 p = file->buf_ptr;
2113 if (c == '\\')
2114 goto parse_stray;
2115 } else {
2116 parse_stray:
2117 file->buf_ptr = p;
2118 ch = *p;
2119 handle_stray();
2120 p = file->buf_ptr;
2121 c = *p;
2123 return c;
2126 /* handle just the EOB case, but not stray */
2127 #define PEEKC_EOB(c, p)\
2129 p++;\
2130 c = *p;\
2131 if (c == '\\') {\
2132 file->buf_ptr = p;\
2133 c = handle_eob();\
2134 p = file->buf_ptr;\
2138 /* handle the complicated stray case */
2139 #define PEEKC(c, p)\
2141 p++;\
2142 c = *p;\
2143 if (c == '\\') {\
2144 c = handle_stray1(p);\
2145 p = file->buf_ptr;\
2149 /* input with '\[\r]\n' handling. Note that this function cannot
2150 handle other characters after '\', so you cannot call it inside
2151 strings or comments */
2152 static void minp(void)
2154 inp();
2155 if (ch == '\\')
2156 handle_stray();
2160 /* single line C++ comments */
2161 static uint8_t *parse_line_comment(uint8_t *p)
2163 int c;
2165 p++;
2166 for(;;) {
2167 c = *p;
2168 redo:
2169 if (c == '\n' || c == CH_EOF) {
2170 break;
2171 } else if (c == '\\') {
2172 file->buf_ptr = p;
2173 c = handle_eob();
2174 p = file->buf_ptr;
2175 if (c == '\\') {
2176 PEEKC_EOB(c, p);
2177 if (c == '\n') {
2178 file->line_num++;
2179 PEEKC_EOB(c, p);
2180 } else if (c == '\r') {
2181 PEEKC_EOB(c, p);
2182 if (c == '\n') {
2183 file->line_num++;
2184 PEEKC_EOB(c, p);
2187 } else {
2188 goto redo;
2190 } else {
2191 p++;
2194 return p;
2197 /* C comments */
2198 static uint8_t *parse_comment(uint8_t *p)
2200 int c;
2202 p++;
2203 for(;;) {
2204 /* fast skip loop */
2205 for(;;) {
2206 c = *p;
2207 if (c == '\n' || c == '*' || c == '\\')
2208 break;
2209 p++;
2210 c = *p;
2211 if (c == '\n' || c == '*' || c == '\\')
2212 break;
2213 p++;
2215 /* now we can handle all the cases */
2216 if (c == '\n') {
2217 file->line_num++;
2218 p++;
2219 } else if (c == '*') {
2220 p++;
2221 for(;;) {
2222 c = *p;
2223 if (c == '*') {
2224 p++;
2225 } else if (c == '/') {
2226 goto end_of_comment;
2227 } else if (c == '\\') {
2228 file->buf_ptr = p;
2229 c = handle_eob();
2230 p = file->buf_ptr;
2231 if (c == '\\') {
2232 /* skip '\[\r]\n', otherwise just skip the stray */
2233 while (c == '\\') {
2234 PEEKC_EOB(c, p);
2235 if (c == '\n') {
2236 file->line_num++;
2237 PEEKC_EOB(c, p);
2238 } else if (c == '\r') {
2239 PEEKC_EOB(c, p);
2240 if (c == '\n') {
2241 file->line_num++;
2242 PEEKC_EOB(c, p);
2244 } else {
2245 goto after_star;
2249 } else {
2250 break;
2253 after_star: ;
2254 } else {
2255 /* stray, eob or eof */
2256 file->buf_ptr = p;
2257 c = handle_eob();
2258 p = file->buf_ptr;
2259 if (c == CH_EOF) {
2260 error("unexpected end of file in comment");
2261 } else if (c == '\\') {
2262 p++;
2266 end_of_comment:
2267 p++;
2268 return p;
2271 #define cinp minp
2273 /* space exlcuding newline */
2274 static inline int is_space(int ch)
2276 return ch == ' ' || ch == '\t' || ch == '\v' || ch == '\f' || ch == '\r';
2279 static inline void skip_spaces(void)
2281 while (is_space(ch))
2282 cinp();
2285 /* parse a string without interpreting escapes */
2286 static uint8_t *parse_pp_string(uint8_t *p,
2287 int sep, CString *str)
2289 int c;
2290 p++;
2291 for(;;) {
2292 c = *p;
2293 if (c == sep) {
2294 break;
2295 } else if (c == '\\') {
2296 file->buf_ptr = p;
2297 c = handle_eob();
2298 p = file->buf_ptr;
2299 if (c == CH_EOF) {
2300 unterminated_string:
2301 /* XXX: indicate line number of start of string */
2302 error("missing terminating %c character", sep);
2303 } else if (c == '\\') {
2304 /* escape : just skip \[\r]\n */
2305 PEEKC_EOB(c, p);
2306 if (c == '\n') {
2307 file->line_num++;
2308 p++;
2309 } else if (c == '\r') {
2310 PEEKC_EOB(c, p);
2311 if (c != '\n')
2312 expect("'\n' after '\r'");
2313 file->line_num++;
2314 p++;
2315 } else if (c == CH_EOF) {
2316 goto unterminated_string;
2317 } else {
2318 if (str) {
2319 cstr_ccat(str, '\\');
2320 cstr_ccat(str, c);
2322 p++;
2325 } else if (c == '\n') {
2326 file->line_num++;
2327 goto add_char;
2328 } else if (c == '\r') {
2329 PEEKC_EOB(c, p);
2330 if (c != '\n') {
2331 if (str)
2332 cstr_ccat(str, '\r');
2333 } else {
2334 file->line_num++;
2335 goto add_char;
2337 } else {
2338 add_char:
2339 if (str)
2340 cstr_ccat(str, c);
2341 p++;
2344 p++;
2345 return p;
2348 /* skip block of text until #else, #elif or #endif. skip also pairs of
2349 #if/#endif */
2350 void preprocess_skip(void)
2352 int a, start_of_line, c, in_warn_or_error;
2353 uint8_t *p;
2355 p = file->buf_ptr;
2356 a = 0;
2357 redo_start:
2358 start_of_line = 1;
2359 in_warn_or_error = 0;
2360 for(;;) {
2361 redo_no_start:
2362 c = *p;
2363 switch(c) {
2364 case ' ':
2365 case '\t':
2366 case '\f':
2367 case '\v':
2368 case '\r':
2369 p++;
2370 goto redo_no_start;
2371 case '\n':
2372 file->line_num++;
2373 p++;
2374 goto redo_start;
2375 case '\\':
2376 file->buf_ptr = p;
2377 c = handle_eob();
2378 if (c == CH_EOF) {
2379 expect("#endif");
2380 } else if (c == '\\') {
2381 ch = file->buf_ptr[0];
2382 handle_stray_noerror();
2384 p = file->buf_ptr;
2385 goto redo_no_start;
2386 /* skip strings */
2387 case '\"':
2388 case '\'':
2389 if (in_warn_or_error)
2390 goto _default;
2391 p = parse_pp_string(p, c, NULL);
2392 break;
2393 /* skip comments */
2394 case '/':
2395 if (in_warn_or_error)
2396 goto _default;
2397 file->buf_ptr = p;
2398 ch = *p;
2399 minp();
2400 p = file->buf_ptr;
2401 if (ch == '*') {
2402 p = parse_comment(p);
2403 } else if (ch == '/') {
2404 p = parse_line_comment(p);
2406 break;
2407 case '#':
2408 p++;
2409 if (start_of_line) {
2410 file->buf_ptr = p;
2411 next_nomacro();
2412 p = file->buf_ptr;
2413 if (a == 0 &&
2414 (tok == TOK_ELSE || tok == TOK_ELIF || tok == TOK_ENDIF))
2415 goto the_end;
2416 if (tok == TOK_IF || tok == TOK_IFDEF || tok == TOK_IFNDEF)
2417 a++;
2418 else if (tok == TOK_ENDIF)
2419 a--;
2420 else if( tok == TOK_ERROR || tok == TOK_WARNING)
2421 in_warn_or_error = 1;
2423 break;
2424 _default:
2425 default:
2426 p++;
2427 break;
2429 start_of_line = 0;
2431 the_end: ;
2432 file->buf_ptr = p;
2435 /* ParseState handling */
2437 /* XXX: currently, no include file info is stored. Thus, we cannot display
2438 accurate messages if the function or data definition spans multiple
2439 files */
2441 /* save current parse state in 's' */
2442 void save_parse_state(ParseState *s)
2444 s->line_num = file->line_num;
2445 s->macro_ptr = macro_ptr;
2446 s->tok = tok;
2447 s->tokc = tokc;
2450 /* restore parse state from 's' */
2451 void restore_parse_state(ParseState *s)
2453 file->line_num = s->line_num;
2454 macro_ptr = s->macro_ptr;
2455 tok = s->tok;
2456 tokc = s->tokc;
2459 /* return the number of additional 'ints' necessary to store the
2460 token */
2461 static inline int tok_ext_size(int t)
2463 switch(t) {
2464 /* 4 bytes */
2465 case TOK_CINT:
2466 case TOK_CUINT:
2467 case TOK_CCHAR:
2468 case TOK_LCHAR:
2469 case TOK_CFLOAT:
2470 case TOK_LINENUM:
2471 return 1;
2472 case TOK_STR:
2473 case TOK_LSTR:
2474 case TOK_PPNUM:
2475 error("unsupported token");
2476 return 1;
2477 case TOK_CDOUBLE:
2478 case TOK_CLLONG:
2479 case TOK_CULLONG:
2480 return 2;
2481 case TOK_CLDOUBLE:
2482 return LDOUBLE_SIZE / 4;
2483 default:
2484 return 0;
2488 /* token string handling */
2490 static inline void tok_str_new(TokenString *s)
2492 s->str = NULL;
2493 s->len = 0;
2494 s->allocated_len = 0;
2495 s->last_line_num = -1;
2498 static void tok_str_free(int *str)
2500 tcc_free(str);
2503 static int *tok_str_realloc(TokenString *s)
2505 int *str, len;
2507 if (s->allocated_len == 0) {
2508 len = 8;
2509 } else {
2510 len = s->allocated_len * 2;
2512 str = tcc_realloc(s->str, len * sizeof(int));
2513 if (!str)
2514 error("memory full");
2515 s->allocated_len = len;
2516 s->str = str;
2517 return str;
2520 static void tok_str_add(TokenString *s, int t)
2522 int len, *str;
2524 len = s->len;
2525 str = s->str;
2526 if (len >= s->allocated_len)
2527 str = tok_str_realloc(s);
2528 str[len++] = t;
2529 s->len = len;
2532 static void tok_str_add2(TokenString *s, int t, CValue *cv)
2534 int len, *str;
2536 len = s->len;
2537 str = s->str;
2539 /* allocate space for worst case */
2540 if (len + TOK_MAX_SIZE > s->allocated_len)
2541 str = tok_str_realloc(s);
2542 str[len++] = t;
2543 switch(t) {
2544 case TOK_CINT:
2545 case TOK_CUINT:
2546 case TOK_CCHAR:
2547 case TOK_LCHAR:
2548 case TOK_CFLOAT:
2549 case TOK_LINENUM:
2550 str[len++] = cv->tab[0];
2551 break;
2552 case TOK_PPNUM:
2553 case TOK_STR:
2554 case TOK_LSTR:
2556 int nb_words;
2557 CString *cstr;
2559 nb_words = (sizeof(CString) + cv->cstr->size + 3) >> 2;
2560 while ((len + nb_words) > s->allocated_len)
2561 str = tok_str_realloc(s);
2562 cstr = (CString *)(str + len);
2563 cstr->data = NULL;
2564 cstr->size = cv->cstr->size;
2565 cstr->data_allocated = NULL;
2566 cstr->size_allocated = cstr->size;
2567 memcpy((char *)cstr + sizeof(CString),
2568 cv->cstr->data, cstr->size);
2569 len += nb_words;
2571 break;
2572 case TOK_CDOUBLE:
2573 case TOK_CLLONG:
2574 case TOK_CULLONG:
2575 #if LDOUBLE_SIZE == 8
2576 case TOK_CLDOUBLE:
2577 #endif
2578 str[len++] = cv->tab[0];
2579 str[len++] = cv->tab[1];
2580 break;
2581 #if LDOUBLE_SIZE == 12
2582 case TOK_CLDOUBLE:
2583 str[len++] = cv->tab[0];
2584 str[len++] = cv->tab[1];
2585 str[len++] = cv->tab[2];
2586 #elif LDOUBLE_SIZE == 16
2587 case TOK_CLDOUBLE:
2588 str[len++] = cv->tab[0];
2589 str[len++] = cv->tab[1];
2590 str[len++] = cv->tab[2];
2591 str[len++] = cv->tab[3];
2592 #elif LDOUBLE_SIZE != 8
2593 #error add long double size support
2594 #endif
2595 break;
2596 default:
2597 break;
2599 s->len = len;
2602 /* add the current parse token in token string 's' */
2603 static void tok_str_add_tok(TokenString *s)
2605 CValue cval;
2607 /* save line number info */
2608 if (file->line_num != s->last_line_num) {
2609 s->last_line_num = file->line_num;
2610 cval.i = s->last_line_num;
2611 tok_str_add2(s, TOK_LINENUM, &cval);
2613 tok_str_add2(s, tok, &tokc);
2616 #if LDOUBLE_SIZE == 16
2617 #define LDOUBLE_GET(p, cv) \
2618 cv.tab[0] = p[0]; \
2619 cv.tab[1] = p[1]; \
2620 cv.tab[2] = p[2]; \
2621 cv.tab[3] = p[3];
2622 #elif LDOUBLE_SIZE == 12
2623 #define LDOUBLE_GET(p, cv) \
2624 cv.tab[0] = p[0]; \
2625 cv.tab[1] = p[1]; \
2626 cv.tab[2] = p[2];
2627 #elif LDOUBLE_SIZE == 8
2628 #define LDOUBLE_GET(p, cv) \
2629 cv.tab[0] = p[0]; \
2630 cv.tab[1] = p[1];
2631 #else
2632 #error add long double size support
2633 #endif
2636 /* get a token from an integer array and increment pointer
2637 accordingly. we code it as a macro to avoid pointer aliasing. */
2638 #define TOK_GET(t, p, cv) \
2640 t = *p++; \
2641 switch(t) { \
2642 case TOK_CINT: \
2643 case TOK_CUINT: \
2644 case TOK_CCHAR: \
2645 case TOK_LCHAR: \
2646 case TOK_CFLOAT: \
2647 case TOK_LINENUM: \
2648 cv.tab[0] = *p++; \
2649 break; \
2650 case TOK_STR: \
2651 case TOK_LSTR: \
2652 case TOK_PPNUM: \
2653 cv.cstr = (CString *)p; \
2654 cv.cstr->data = (char *)p + sizeof(CString);\
2655 p += (sizeof(CString) + cv.cstr->size + 3) >> 2;\
2656 break; \
2657 case TOK_CDOUBLE: \
2658 case TOK_CLLONG: \
2659 case TOK_CULLONG: \
2660 cv.tab[0] = p[0]; \
2661 cv.tab[1] = p[1]; \
2662 p += 2; \
2663 break; \
2664 case TOK_CLDOUBLE: \
2665 LDOUBLE_GET(p, cv); \
2666 p += LDOUBLE_SIZE / 4; \
2667 break; \
2668 default: \
2669 break; \
2673 /* defines handling */
2674 static inline void define_push(int v, int macro_type, int *str, Sym *first_arg)
2676 Sym *s;
2678 s = sym_push2(&define_stack, v, macro_type, (long)str);
2679 s->next = first_arg;
2680 table_ident[v - TOK_IDENT]->sym_define = s;
2683 /* undefined a define symbol. Its name is just set to zero */
2684 static void define_undef(Sym *s)
2686 int v;
2687 v = s->v;
2688 if (v >= TOK_IDENT && v < tok_ident)
2689 table_ident[v - TOK_IDENT]->sym_define = NULL;
2690 s->v = 0;
2693 static inline Sym *define_find(int v)
2695 v -= TOK_IDENT;
2696 if ((unsigned)v >= (unsigned)(tok_ident - TOK_IDENT))
2697 return NULL;
2698 return table_ident[v]->sym_define;
2701 /* free define stack until top reaches 'b' */
2702 static void free_defines(Sym *b)
2704 Sym *top, *top1;
2705 int v;
2707 top = define_stack;
2708 while (top != b) {
2709 top1 = top->prev;
2710 /* do not free args or predefined defines */
2711 if (top->c)
2712 tok_str_free((int *)top->c);
2713 v = top->v;
2714 if (v >= TOK_IDENT && v < tok_ident)
2715 table_ident[v - TOK_IDENT]->sym_define = NULL;
2716 sym_free(top);
2717 top = top1;
2719 define_stack = b;
2722 /* label lookup */
2723 static Sym *label_find(int v)
2725 v -= TOK_IDENT;
2726 if ((unsigned)v >= (unsigned)(tok_ident - TOK_IDENT))
2727 return NULL;
2728 return table_ident[v]->sym_label;
2731 static Sym *label_push(Sym **ptop, int v, int flags)
2733 Sym *s, **ps;
2734 s = sym_push2(ptop, v, 0, 0);
2735 s->r = flags;
2736 ps = &table_ident[v - TOK_IDENT]->sym_label;
2737 if (ptop == &global_label_stack) {
2738 /* modify the top most local identifier, so that
2739 sym_identifier will point to 's' when popped */
2740 while (*ps != NULL)
2741 ps = &(*ps)->prev_tok;
2743 s->prev_tok = *ps;
2744 *ps = s;
2745 return s;
2748 /* pop labels until element last is reached. Look if any labels are
2749 undefined. Define symbols if '&&label' was used. */
2750 static void label_pop(Sym **ptop, Sym *slast)
2752 Sym *s, *s1;
2753 for(s = *ptop; s != slast; s = s1) {
2754 s1 = s->prev;
2755 if (s->r == LABEL_DECLARED) {
2756 warning("label '%s' declared but not used", get_tok_str(s->v, NULL));
2757 } else if (s->r == LABEL_FORWARD) {
2758 error("label '%s' used but not defined",
2759 get_tok_str(s->v, NULL));
2760 } else {
2761 if (s->c) {
2762 /* define corresponding symbol. A size of
2763 1 is put. */
2764 put_extern_sym(s, cur_text_section, (long)s->next, 1);
2767 /* remove label */
2768 table_ident[s->v - TOK_IDENT]->sym_label = s->prev_tok;
2769 sym_free(s);
2771 *ptop = slast;
2774 /* eval an expression for #if/#elif */
2775 static int expr_preprocess(void)
2777 int c, t;
2778 TokenString str;
2780 tok_str_new(&str);
2781 while (tok != TOK_LINEFEED && tok != TOK_EOF) {
2782 next(); /* do macro subst */
2783 if (tok == TOK_DEFINED) {
2784 next_nomacro();
2785 t = tok;
2786 if (t == '(')
2787 next_nomacro();
2788 c = define_find(tok) != 0;
2789 if (t == '(')
2790 next_nomacro();
2791 tok = TOK_CINT;
2792 tokc.i = c;
2793 } else if (tok >= TOK_IDENT) {
2794 /* if undefined macro */
2795 tok = TOK_CINT;
2796 tokc.i = 0;
2798 tok_str_add_tok(&str);
2800 tok_str_add(&str, -1); /* simulate end of file */
2801 tok_str_add(&str, 0);
2802 /* now evaluate C constant expression */
2803 macro_ptr = str.str;
2804 next();
2805 c = expr_const();
2806 macro_ptr = NULL;
2807 tok_str_free(str.str);
2808 return c != 0;
2811 #if defined(PARSE_DEBUG) || defined(PP_DEBUG)
2812 static void tok_print(int *str)
2814 int t;
2815 CValue cval;
2817 while (1) {
2818 TOK_GET(t, str, cval);
2819 if (!t)
2820 break;
2821 printf(" %s", get_tok_str(t, &cval));
2823 printf("\n");
2825 #endif
2827 /* parse after #define */
2828 static void parse_define(void)
2830 Sym *s, *first, **ps;
2831 int v, t, varg, is_vaargs, c;
2832 TokenString str;
2834 v = tok;
2835 if (v < TOK_IDENT)
2836 error("invalid macro name '%s'", get_tok_str(tok, &tokc));
2837 /* XXX: should check if same macro (ANSI) */
2838 first = NULL;
2839 t = MACRO_OBJ;
2840 /* '(' must be just after macro definition for MACRO_FUNC */
2841 c = file->buf_ptr[0];
2842 if (c == '\\')
2843 c = handle_stray1(file->buf_ptr);
2844 if (c == '(') {
2845 next_nomacro();
2846 next_nomacro();
2847 ps = &first;
2848 while (tok != ')') {
2849 varg = tok;
2850 next_nomacro();
2851 is_vaargs = 0;
2852 if (varg == TOK_DOTS) {
2853 varg = TOK___VA_ARGS__;
2854 is_vaargs = 1;
2855 } else if (tok == TOK_DOTS && gnu_ext) {
2856 is_vaargs = 1;
2857 next_nomacro();
2859 if (varg < TOK_IDENT)
2860 error("badly punctuated parameter list");
2861 s = sym_push2(&define_stack, varg | SYM_FIELD, is_vaargs, 0);
2862 *ps = s;
2863 ps = &s->next;
2864 if (tok != ',')
2865 break;
2866 next_nomacro();
2868 t = MACRO_FUNC;
2870 tok_str_new(&str);
2871 next_nomacro();
2872 /* EOF testing necessary for '-D' handling */
2873 while (tok != TOK_LINEFEED && tok != TOK_EOF) {
2874 tok_str_add2(&str, tok, &tokc);
2875 next_nomacro();
2877 tok_str_add(&str, 0);
2878 #ifdef PP_DEBUG
2879 printf("define %s %d: ", get_tok_str(v, NULL), t);
2880 tok_print(str.str);
2881 #endif
2882 define_push(v, t, str.str, first);
2885 static inline int hash_cached_include(int type, const char *filename)
2887 const unsigned char *s;
2888 unsigned int h;
2890 h = TOK_HASH_INIT;
2891 h = TOK_HASH_FUNC(h, type);
2892 s = filename;
2893 while (*s) {
2894 h = TOK_HASH_FUNC(h, *s);
2895 s++;
2897 h &= (CACHED_INCLUDES_HASH_SIZE - 1);
2898 return h;
2901 /* XXX: use a token or a hash table to accelerate matching ? */
2902 static CachedInclude *search_cached_include(TCCState *s1,
2903 int type, const char *filename)
2905 CachedInclude *e;
2906 int i, h;
2907 h = hash_cached_include(type, filename);
2908 i = s1->cached_includes_hash[h];
2909 for(;;) {
2910 if (i == 0)
2911 break;
2912 e = s1->cached_includes[i - 1];
2913 if (e->type == type && !PATHCMP(e->filename, filename))
2914 return e;
2915 i = e->hash_next;
2917 return NULL;
2920 static inline void add_cached_include(TCCState *s1, int type,
2921 const char *filename, int ifndef_macro)
2923 CachedInclude *e;
2924 int h;
2926 if (search_cached_include(s1, type, filename))
2927 return;
2928 #ifdef INC_DEBUG
2929 printf("adding cached '%s' %s\n", filename, get_tok_str(ifndef_macro, NULL));
2930 #endif
2931 e = tcc_malloc(sizeof(CachedInclude) + strlen(filename));
2932 if (!e)
2933 return;
2934 e->type = type;
2935 strcpy(e->filename, filename);
2936 e->ifndef_macro = ifndef_macro;
2937 dynarray_add((void ***)&s1->cached_includes, &s1->nb_cached_includes, e);
2938 /* add in hash table */
2939 h = hash_cached_include(type, filename);
2940 e->hash_next = s1->cached_includes_hash[h];
2941 s1->cached_includes_hash[h] = s1->nb_cached_includes;
2944 static void pragma_parse(TCCState *s1)
2946 int val;
2948 next();
2949 if (tok == TOK_pack) {
2951 This may be:
2952 #pragma pack(1) // set
2953 #pragma pack() // reset to default
2954 #pragma pack(push,1) // push & set
2955 #pragma pack(pop) // restore previous
2957 next();
2958 skip('(');
2959 if (tok == TOK_ASM_pop) {
2960 next();
2961 if (s1->pack_stack_ptr <= s1->pack_stack) {
2962 stk_error:
2963 error("out of pack stack");
2965 s1->pack_stack_ptr--;
2966 } else {
2967 val = 0;
2968 if (tok != ')') {
2969 if (tok == TOK_ASM_push) {
2970 next();
2971 if (s1->pack_stack_ptr >= s1->pack_stack + PACK_STACK_SIZE - 1)
2972 goto stk_error;
2973 s1->pack_stack_ptr++;
2974 skip(',');
2976 if (tok != TOK_CINT) {
2977 pack_error:
2978 error("invalid pack pragma");
2980 val = tokc.i;
2981 if (val < 1 || val > 16 || (val & (val - 1)) != 0)
2982 goto pack_error;
2983 next();
2985 *s1->pack_stack_ptr = val;
2986 skip(')');
2991 /* is_bof is true if first non space token at beginning of file */
2992 static void preprocess(int is_bof)
2994 TCCState *s1 = tcc_state;
2995 int size, i, c, n, saved_parse_flags;
2996 char buf[1024], *q;
2997 char buf1[1024];
2998 BufferedFile *f;
2999 Sym *s;
3000 CachedInclude *e;
3002 saved_parse_flags = parse_flags;
3003 parse_flags = PARSE_FLAG_PREPROCESS | PARSE_FLAG_TOK_NUM |
3004 PARSE_FLAG_LINEFEED;
3005 next_nomacro();
3006 redo:
3007 switch(tok) {
3008 case TOK_DEFINE:
3009 next_nomacro();
3010 parse_define();
3011 break;
3012 case TOK_UNDEF:
3013 next_nomacro();
3014 s = define_find(tok);
3015 /* undefine symbol by putting an invalid name */
3016 if (s)
3017 define_undef(s);
3018 break;
3019 case TOK_INCLUDE:
3020 case TOK_INCLUDE_NEXT:
3021 ch = file->buf_ptr[0];
3022 /* XXX: incorrect if comments : use next_nomacro with a special mode */
3023 skip_spaces();
3024 if (ch == '<') {
3025 c = '>';
3026 goto read_name;
3027 } else if (ch == '\"') {
3028 c = ch;
3029 read_name:
3030 inp();
3031 q = buf;
3032 while (ch != c && ch != '\n' && ch != CH_EOF) {
3033 if ((q - buf) < sizeof(buf) - 1)
3034 *q++ = ch;
3035 if (ch == '\\') {
3036 if (handle_stray_noerror() == 0)
3037 --q;
3038 } else
3039 inp();
3041 *q = '\0';
3042 minp();
3043 #if 0
3044 /* eat all spaces and comments after include */
3045 /* XXX: slightly incorrect */
3046 while (ch1 != '\n' && ch1 != CH_EOF)
3047 inp();
3048 #endif
3049 } else {
3050 /* computed #include : either we have only strings or
3051 we have anything enclosed in '<>' */
3052 next();
3053 buf[0] = '\0';
3054 if (tok == TOK_STR) {
3055 while (tok != TOK_LINEFEED) {
3056 if (tok != TOK_STR) {
3057 include_syntax:
3058 error("'#include' expects \"FILENAME\" or <FILENAME>");
3060 pstrcat(buf, sizeof(buf), (char *)tokc.cstr->data);
3061 next();
3063 c = '\"';
3064 } else {
3065 int len;
3066 while (tok != TOK_LINEFEED) {
3067 pstrcat(buf, sizeof(buf), get_tok_str(tok, &tokc));
3068 next();
3070 len = strlen(buf);
3071 /* check syntax and remove '<>' */
3072 if (len < 2 || buf[0] != '<' || buf[len - 1] != '>')
3073 goto include_syntax;
3074 memmove(buf, buf + 1, len - 2);
3075 buf[len - 2] = '\0';
3076 c = '>';
3080 e = search_cached_include(s1, c, buf);
3081 if (e && define_find(e->ifndef_macro)) {
3082 /* no need to parse the include because the 'ifndef macro'
3083 is defined */
3084 #ifdef INC_DEBUG
3085 printf("%s: skipping %s\n", file->filename, buf);
3086 #endif
3087 } else {
3088 if (s1->include_stack_ptr >= s1->include_stack + INCLUDE_STACK_SIZE)
3089 error("#include recursion too deep");
3090 /* push current file in stack */
3091 /* XXX: fix current line init */
3092 *s1->include_stack_ptr++ = file;
3094 /* check absolute include path */
3095 if (IS_ABSPATH(buf)) {
3096 f = tcc_open(s1, buf);
3097 if (f)
3098 goto found;
3100 if (c == '\"') {
3101 /* first search in current dir if "header.h" */
3102 size = tcc_basename(file->filename) - file->filename;
3103 if (size > sizeof(buf1) - 1)
3104 size = sizeof(buf1) - 1;
3105 memcpy(buf1, file->filename, size);
3106 buf1[size] = '\0';
3107 pstrcat(buf1, sizeof(buf1), buf);
3108 f = tcc_open(s1, buf1);
3109 if (f) {
3110 if (tok == TOK_INCLUDE_NEXT)
3111 tok = TOK_INCLUDE;
3112 else
3113 goto found;
3116 /* now search in all the include paths */
3117 n = s1->nb_include_paths + s1->nb_sysinclude_paths;
3118 for(i = 0; i < n; i++) {
3119 const char *path;
3120 if (i < s1->nb_include_paths)
3121 path = s1->include_paths[i];
3122 else
3123 path = s1->sysinclude_paths[i - s1->nb_include_paths];
3124 pstrcpy(buf1, sizeof(buf1), path);
3125 pstrcat(buf1, sizeof(buf1), "/");
3126 pstrcat(buf1, sizeof(buf1), buf);
3127 f = tcc_open(s1, buf1);
3128 if (f) {
3129 if (tok == TOK_INCLUDE_NEXT)
3130 tok = TOK_INCLUDE;
3131 else
3132 goto found;
3135 --s1->include_stack_ptr;
3136 error("include file '%s' not found", buf);
3137 break;
3138 found:
3139 #ifdef INC_DEBUG
3140 printf("%s: including %s\n", file->filename, buf1);
3141 #endif
3142 f->inc_type = c;
3143 pstrcpy(f->inc_filename, sizeof(f->inc_filename), buf);
3144 file = f;
3145 /* add include file debug info */
3146 if (do_debug) {
3147 put_stabs(file->filename, N_BINCL, 0, 0, 0);
3149 tok_flags |= TOK_FLAG_BOF | TOK_FLAG_BOL;
3150 ch = file->buf_ptr[0];
3151 goto the_end;
3153 break;
3154 case TOK_IFNDEF:
3155 c = 1;
3156 goto do_ifdef;
3157 case TOK_IF:
3158 c = expr_preprocess();
3159 goto do_if;
3160 case TOK_IFDEF:
3161 c = 0;
3162 do_ifdef:
3163 next_nomacro();
3164 if (tok < TOK_IDENT)
3165 error("invalid argument for '#if%sdef'", c ? "n" : "");
3166 if (is_bof) {
3167 if (c) {
3168 #ifdef INC_DEBUG
3169 printf("#ifndef %s\n", get_tok_str(tok, NULL));
3170 #endif
3171 file->ifndef_macro = tok;
3174 c = (define_find(tok) != 0) ^ c;
3175 do_if:
3176 if (s1->ifdef_stack_ptr >= s1->ifdef_stack + IFDEF_STACK_SIZE)
3177 error("memory full");
3178 *s1->ifdef_stack_ptr++ = c;
3179 goto test_skip;
3180 case TOK_ELSE:
3181 if (s1->ifdef_stack_ptr == s1->ifdef_stack)
3182 error("#else without matching #if");
3183 if (s1->ifdef_stack_ptr[-1] & 2)
3184 error("#else after #else");
3185 c = (s1->ifdef_stack_ptr[-1] ^= 3);
3186 goto test_skip;
3187 case TOK_ELIF:
3188 if (s1->ifdef_stack_ptr == s1->ifdef_stack)
3189 error("#elif without matching #if");
3190 c = s1->ifdef_stack_ptr[-1];
3191 if (c > 1)
3192 error("#elif after #else");
3193 /* last #if/#elif expression was true: we skip */
3194 if (c == 1)
3195 goto skip;
3196 c = expr_preprocess();
3197 s1->ifdef_stack_ptr[-1] = c;
3198 test_skip:
3199 if (!(c & 1)) {
3200 skip:
3201 preprocess_skip();
3202 is_bof = 0;
3203 goto redo;
3205 break;
3206 case TOK_ENDIF:
3207 if (s1->ifdef_stack_ptr <= file->ifdef_stack_ptr)
3208 error("#endif without matching #if");
3209 s1->ifdef_stack_ptr--;
3210 /* '#ifndef macro' was at the start of file. Now we check if
3211 an '#endif' is exactly at the end of file */
3212 if (file->ifndef_macro &&
3213 s1->ifdef_stack_ptr == file->ifdef_stack_ptr) {
3214 file->ifndef_macro_saved = file->ifndef_macro;
3215 /* need to set to zero to avoid false matches if another
3216 #ifndef at middle of file */
3217 file->ifndef_macro = 0;
3218 while (tok != TOK_LINEFEED)
3219 next_nomacro();
3220 tok_flags |= TOK_FLAG_ENDIF;
3221 goto the_end;
3223 break;
3224 case TOK_LINE:
3225 next();
3226 if (tok != TOK_CINT)
3227 error("#line");
3228 file->line_num = tokc.i - 1; /* the line number will be incremented after */
3229 next();
3230 if (tok != TOK_LINEFEED) {
3231 if (tok != TOK_STR)
3232 error("#line");
3233 pstrcpy(file->filename, sizeof(file->filename),
3234 (char *)tokc.cstr->data);
3236 break;
3237 case TOK_ERROR:
3238 case TOK_WARNING:
3239 c = tok;
3240 ch = file->buf_ptr[0];
3241 skip_spaces();
3242 q = buf;
3243 while (ch != '\n' && ch != CH_EOF) {
3244 if ((q - buf) < sizeof(buf) - 1)
3245 *q++ = ch;
3246 if (ch == '\\') {
3247 if (handle_stray_noerror() == 0)
3248 --q;
3249 } else
3250 inp();
3252 *q = '\0';
3253 if (c == TOK_ERROR)
3254 error("#error %s", buf);
3255 else
3256 warning("#warning %s", buf);
3257 break;
3258 case TOK_PRAGMA:
3259 pragma_parse(s1);
3260 break;
3261 default:
3262 if (tok == TOK_LINEFEED || tok == '!' || tok == TOK_CINT) {
3263 /* '!' is ignored to allow C scripts. numbers are ignored
3264 to emulate cpp behaviour */
3265 } else {
3266 if (!(saved_parse_flags & PARSE_FLAG_ASM_COMMENTS))
3267 warning("Ignoring unknown preprocessing directive #%s", get_tok_str(tok, &tokc));
3269 break;
3271 /* ignore other preprocess commands or #! for C scripts */
3272 while (tok != TOK_LINEFEED)
3273 next_nomacro();
3274 the_end:
3275 parse_flags = saved_parse_flags;
3278 /* evaluate escape codes in a string. */
3279 static void parse_escape_string(CString *outstr, const uint8_t *buf, int is_long)
3281 int c, n;
3282 const uint8_t *p;
3284 p = buf;
3285 for(;;) {
3286 c = *p;
3287 if (c == '\0')
3288 break;
3289 if (c == '\\') {
3290 p++;
3291 /* escape */
3292 c = *p;
3293 switch(c) {
3294 case '0': case '1': case '2': case '3':
3295 case '4': case '5': case '6': case '7':
3296 /* at most three octal digits */
3297 n = c - '0';
3298 p++;
3299 c = *p;
3300 if (isoct(c)) {
3301 n = n * 8 + c - '0';
3302 p++;
3303 c = *p;
3304 if (isoct(c)) {
3305 n = n * 8 + c - '0';
3306 p++;
3309 c = n;
3310 goto add_char_nonext;
3311 case 'x':
3312 case 'u':
3313 case 'U':
3314 p++;
3315 n = 0;
3316 for(;;) {
3317 c = *p;
3318 if (c >= 'a' && c <= 'f')
3319 c = c - 'a' + 10;
3320 else if (c >= 'A' && c <= 'F')
3321 c = c - 'A' + 10;
3322 else if (isnum(c))
3323 c = c - '0';
3324 else
3325 break;
3326 n = n * 16 + c;
3327 p++;
3329 c = n;
3330 goto add_char_nonext;
3331 case 'a':
3332 c = '\a';
3333 break;
3334 case 'b':
3335 c = '\b';
3336 break;
3337 case 'f':
3338 c = '\f';
3339 break;
3340 case 'n':
3341 c = '\n';
3342 break;
3343 case 'r':
3344 c = '\r';
3345 break;
3346 case 't':
3347 c = '\t';
3348 break;
3349 case 'v':
3350 c = '\v';
3351 break;
3352 case 'e':
3353 if (!gnu_ext)
3354 goto invalid_escape;
3355 c = 27;
3356 break;
3357 case '\'':
3358 case '\"':
3359 case '\\':
3360 case '?':
3361 break;
3362 default:
3363 invalid_escape:
3364 if (c >= '!' && c <= '~')
3365 warning("unknown escape sequence: \'\\%c\'", c);
3366 else
3367 warning("unknown escape sequence: \'\\x%x\'", c);
3368 break;
3371 p++;
3372 add_char_nonext:
3373 if (!is_long)
3374 cstr_ccat(outstr, c);
3375 else
3376 cstr_wccat(outstr, c);
3378 /* add a trailing '\0' */
3379 if (!is_long)
3380 cstr_ccat(outstr, '\0');
3381 else
3382 cstr_wccat(outstr, '\0');
3385 /* we use 64 bit numbers */
3386 #define BN_SIZE 2
3388 /* bn = (bn << shift) | or_val */
3389 void bn_lshift(unsigned int *bn, int shift, int or_val)
3391 int i;
3392 unsigned int v;
3393 for(i=0;i<BN_SIZE;i++) {
3394 v = bn[i];
3395 bn[i] = (v << shift) | or_val;
3396 or_val = v >> (32 - shift);
3400 void bn_zero(unsigned int *bn)
3402 int i;
3403 for(i=0;i<BN_SIZE;i++) {
3404 bn[i] = 0;
3408 /* parse number in null terminated string 'p' and return it in the
3409 current token */
3410 void parse_number(const char *p)
3412 int b, t, shift, frac_bits, s, exp_val, ch;
3413 char *q;
3414 unsigned int bn[BN_SIZE];
3415 double d;
3417 /* number */
3418 q = token_buf;
3419 ch = *p++;
3420 t = ch;
3421 ch = *p++;
3422 *q++ = t;
3423 b = 10;
3424 if (t == '.') {
3425 goto float_frac_parse;
3426 } else if (t == '0') {
3427 if (ch == 'x' || ch == 'X') {
3428 q--;
3429 ch = *p++;
3430 b = 16;
3431 } else if (tcc_ext && (ch == 'b' || ch == 'B')) {
3432 q--;
3433 ch = *p++;
3434 b = 2;
3437 /* parse all digits. cannot check octal numbers at this stage
3438 because of floating point constants */
3439 while (1) {
3440 if (ch >= 'a' && ch <= 'f')
3441 t = ch - 'a' + 10;
3442 else if (ch >= 'A' && ch <= 'F')
3443 t = ch - 'A' + 10;
3444 else if (isnum(ch))
3445 t = ch - '0';
3446 else
3447 break;
3448 if (t >= b)
3449 break;
3450 if (q >= token_buf + STRING_MAX_SIZE) {
3451 num_too_long:
3452 error("number too long");
3454 *q++ = ch;
3455 ch = *p++;
3457 if (ch == '.' ||
3458 ((ch == 'e' || ch == 'E') && b == 10) ||
3459 ((ch == 'p' || ch == 'P') && (b == 16 || b == 2))) {
3460 if (b != 10) {
3461 /* NOTE: strtox should support that for hexa numbers, but
3462 non ISOC99 libcs do not support it, so we prefer to do
3463 it by hand */
3464 /* hexadecimal or binary floats */
3465 /* XXX: handle overflows */
3466 *q = '\0';
3467 if (b == 16)
3468 shift = 4;
3469 else
3470 shift = 2;
3471 bn_zero(bn);
3472 q = token_buf;
3473 while (1) {
3474 t = *q++;
3475 if (t == '\0') {
3476 break;
3477 } else if (t >= 'a') {
3478 t = t - 'a' + 10;
3479 } else if (t >= 'A') {
3480 t = t - 'A' + 10;
3481 } else {
3482 t = t - '0';
3484 bn_lshift(bn, shift, t);
3486 frac_bits = 0;
3487 if (ch == '.') {
3488 ch = *p++;
3489 while (1) {
3490 t = ch;
3491 if (t >= 'a' && t <= 'f') {
3492 t = t - 'a' + 10;
3493 } else if (t >= 'A' && t <= 'F') {
3494 t = t - 'A' + 10;
3495 } else if (t >= '0' && t <= '9') {
3496 t = t - '0';
3497 } else {
3498 break;
3500 if (t >= b)
3501 error("invalid digit");
3502 bn_lshift(bn, shift, t);
3503 frac_bits += shift;
3504 ch = *p++;
3507 if (ch != 'p' && ch != 'P')
3508 expect("exponent");
3509 ch = *p++;
3510 s = 1;
3511 exp_val = 0;
3512 if (ch == '+') {
3513 ch = *p++;
3514 } else if (ch == '-') {
3515 s = -1;
3516 ch = *p++;
3518 if (ch < '0' || ch > '9')
3519 expect("exponent digits");
3520 while (ch >= '0' && ch <= '9') {
3521 exp_val = exp_val * 10 + ch - '0';
3522 ch = *p++;
3524 exp_val = exp_val * s;
3526 /* now we can generate the number */
3527 /* XXX: should patch directly float number */
3528 d = (double)bn[1] * 4294967296.0 + (double)bn[0];
3529 d = ldexp(d, exp_val - frac_bits);
3530 t = toup(ch);
3531 if (t == 'F') {
3532 ch = *p++;
3533 tok = TOK_CFLOAT;
3534 /* float : should handle overflow */
3535 tokc.f = (float)d;
3536 } else if (t == 'L') {
3537 ch = *p++;
3538 tok = TOK_CLDOUBLE;
3539 /* XXX: not large enough */
3540 tokc.ld = (long double)d;
3541 } else {
3542 tok = TOK_CDOUBLE;
3543 tokc.d = d;
3545 } else {
3546 /* decimal floats */
3547 if (ch == '.') {
3548 if (q >= token_buf + STRING_MAX_SIZE)
3549 goto num_too_long;
3550 *q++ = ch;
3551 ch = *p++;
3552 float_frac_parse:
3553 while (ch >= '0' && ch <= '9') {
3554 if (q >= token_buf + STRING_MAX_SIZE)
3555 goto num_too_long;
3556 *q++ = ch;
3557 ch = *p++;
3560 if (ch == 'e' || ch == 'E') {
3561 if (q >= token_buf + STRING_MAX_SIZE)
3562 goto num_too_long;
3563 *q++ = ch;
3564 ch = *p++;
3565 if (ch == '-' || ch == '+') {
3566 if (q >= token_buf + STRING_MAX_SIZE)
3567 goto num_too_long;
3568 *q++ = ch;
3569 ch = *p++;
3571 if (ch < '0' || ch > '9')
3572 expect("exponent digits");
3573 while (ch >= '0' && ch <= '9') {
3574 if (q >= token_buf + STRING_MAX_SIZE)
3575 goto num_too_long;
3576 *q++ = ch;
3577 ch = *p++;
3580 *q = '\0';
3581 t = toup(ch);
3582 errno = 0;
3583 if (t == 'F') {
3584 ch = *p++;
3585 tok = TOK_CFLOAT;
3586 tokc.f = strtof(token_buf, NULL);
3587 } else if (t == 'L') {
3588 ch = *p++;
3589 tok = TOK_CLDOUBLE;
3590 tokc.ld = strtold(token_buf, NULL);
3591 } else {
3592 tok = TOK_CDOUBLE;
3593 tokc.d = strtod(token_buf, NULL);
3596 } else {
3597 unsigned long long n, n1;
3598 int lcount, ucount;
3600 /* integer number */
3601 *q = '\0';
3602 q = token_buf;
3603 if (b == 10 && *q == '0') {
3604 b = 8;
3605 q++;
3607 n = 0;
3608 while(1) {
3609 t = *q++;
3610 /* no need for checks except for base 10 / 8 errors */
3611 if (t == '\0') {
3612 break;
3613 } else if (t >= 'a') {
3614 t = t - 'a' + 10;
3615 } else if (t >= 'A') {
3616 t = t - 'A' + 10;
3617 } else {
3618 t = t - '0';
3619 if (t >= b)
3620 error("invalid digit");
3622 n1 = n;
3623 n = n * b + t;
3624 /* detect overflow */
3625 /* XXX: this test is not reliable */
3626 if (n < n1)
3627 error("integer constant overflow");
3630 /* XXX: not exactly ANSI compliant */
3631 if ((n & 0xffffffff00000000LL) != 0) {
3632 if ((n >> 63) != 0)
3633 tok = TOK_CULLONG;
3634 else
3635 tok = TOK_CLLONG;
3636 } else if (n > 0x7fffffff) {
3637 tok = TOK_CUINT;
3638 } else {
3639 tok = TOK_CINT;
3641 lcount = 0;
3642 ucount = 0;
3643 for(;;) {
3644 t = toup(ch);
3645 if (t == 'L') {
3646 if (lcount >= 2)
3647 error("three 'l's in integer constant");
3648 lcount++;
3649 if (lcount == 2) {
3650 if (tok == TOK_CINT)
3651 tok = TOK_CLLONG;
3652 else if (tok == TOK_CUINT)
3653 tok = TOK_CULLONG;
3655 ch = *p++;
3656 } else if (t == 'U') {
3657 if (ucount >= 1)
3658 error("two 'u's in integer constant");
3659 ucount++;
3660 if (tok == TOK_CINT)
3661 tok = TOK_CUINT;
3662 else if (tok == TOK_CLLONG)
3663 tok = TOK_CULLONG;
3664 ch = *p++;
3665 } else {
3666 break;
3669 if (tok == TOK_CINT || tok == TOK_CUINT)
3670 tokc.ui = n;
3671 else
3672 tokc.ull = n;
3674 if (ch)
3675 error("invalid number\n");
3679 #define PARSE2(c1, tok1, c2, tok2) \
3680 case c1: \
3681 PEEKC(c, p); \
3682 if (c == c2) { \
3683 p++; \
3684 tok = tok2; \
3685 } else { \
3686 tok = tok1; \
3688 break;
3690 /* return next token without macro substitution */
3691 static inline void next_nomacro1(void)
3693 int t, c, is_long;
3694 TokenSym *ts;
3695 uint8_t *p, *p1;
3696 unsigned int h;
3698 cstr_reset(&tok_spaces);
3699 p = file->buf_ptr;
3700 redo_no_start:
3701 c = *p;
3702 switch(c) {
3703 case ' ':
3704 case '\t':
3705 case '\f':
3706 case '\v':
3707 case '\r':
3708 cstr_ccat(&tok_spaces, c);
3709 p++;
3710 goto redo_no_start;
3712 case '\\':
3713 /* first look if it is in fact an end of buffer */
3714 if (p >= file->buf_end) {
3715 file->buf_ptr = p;
3716 handle_eob();
3717 p = file->buf_ptr;
3718 if (p >= file->buf_end)
3719 goto parse_eof;
3720 else
3721 goto redo_no_start;
3722 } else {
3723 file->buf_ptr = p;
3724 ch = *p;
3725 handle_stray();
3726 p = file->buf_ptr;
3727 goto redo_no_start;
3729 parse_eof:
3731 TCCState *s1 = tcc_state;
3732 if ((parse_flags & PARSE_FLAG_LINEFEED)
3733 && !(tok_flags & TOK_FLAG_EOF)) {
3734 tok_flags |= TOK_FLAG_EOF;
3735 tok = TOK_LINEFEED;
3736 goto keep_tok_flags;
3737 } else if (s1->include_stack_ptr == s1->include_stack ||
3738 !(parse_flags & PARSE_FLAG_PREPROCESS)) {
3739 /* no include left : end of file. */
3740 tok = TOK_EOF;
3741 } else {
3742 tok_flags &= ~TOK_FLAG_EOF;
3743 /* pop include file */
3745 /* test if previous '#endif' was after a #ifdef at
3746 start of file */
3747 if (tok_flags & TOK_FLAG_ENDIF) {
3748 #ifdef INC_DEBUG
3749 printf("#endif %s\n", get_tok_str(file->ifndef_macro_saved, NULL));
3750 #endif
3751 add_cached_include(s1, file->inc_type, file->inc_filename,
3752 file->ifndef_macro_saved);
3755 /* add end of include file debug info */
3756 if (do_debug) {
3757 put_stabd(N_EINCL, 0, 0);
3759 /* pop include stack */
3760 tcc_close(file);
3761 s1->include_stack_ptr--;
3762 file = *s1->include_stack_ptr;
3763 p = file->buf_ptr;
3764 goto redo_no_start;
3767 break;
3769 case '\n':
3770 file->line_num++;
3771 tok_flags |= TOK_FLAG_BOL;
3772 p++;
3773 if (0 == (parse_flags & PARSE_FLAG_LINEFEED))
3774 goto redo_no_start;
3775 tok = TOK_LINEFEED;
3776 goto keep_tok_flags;
3778 case '#':
3779 /* XXX: simplify */
3780 PEEKC(c, p);
3781 if ((tok_flags & TOK_FLAG_BOL) &&
3782 (parse_flags & PARSE_FLAG_PREPROCESS)) {
3783 file->buf_ptr = p;
3784 preprocess(tok_flags & TOK_FLAG_BOF);
3785 p = file->buf_ptr;
3786 goto redo_no_start;
3787 } else {
3788 if (c == '#') {
3789 p++;
3790 tok = TOK_TWOSHARPS;
3791 } else {
3792 if (parse_flags & PARSE_FLAG_ASM_COMMENTS) {
3793 p = parse_line_comment(p - 1);
3794 goto redo_no_start;
3795 } else {
3796 tok = '#';
3800 break;
3802 case 'a': case 'b': case 'c': case 'd':
3803 case 'e': case 'f': case 'g': case 'h':
3804 case 'i': case 'j': case 'k': case 'l':
3805 case 'm': case 'n': case 'o': case 'p':
3806 case 'q': case 'r': case 's': case 't':
3807 case 'u': case 'v': case 'w': case 'x':
3808 case 'y': case 'z':
3809 case 'A': case 'B': case 'C': case 'D':
3810 case 'E': case 'F': case 'G': case 'H':
3811 case 'I': case 'J': case 'K':
3812 case 'M': case 'N': case 'O': case 'P':
3813 case 'Q': case 'R': case 'S': case 'T':
3814 case 'U': case 'V': case 'W': case 'X':
3815 case 'Y': case 'Z':
3816 case '_':
3817 parse_ident_fast:
3818 p1 = p;
3819 h = TOK_HASH_INIT;
3820 h = TOK_HASH_FUNC(h, c);
3821 p++;
3822 for(;;) {
3823 c = *p;
3824 if (!isidnum_table[c-CH_EOF])
3825 break;
3826 h = TOK_HASH_FUNC(h, c);
3827 p++;
3829 if (c != '\\') {
3830 TokenSym **pts;
3831 int len;
3833 /* fast case : no stray found, so we have the full token
3834 and we have already hashed it */
3835 len = p - p1;
3836 h &= (TOK_HASH_SIZE - 1);
3837 pts = &hash_ident[h];
3838 for(;;) {
3839 ts = *pts;
3840 if (!ts)
3841 break;
3842 if (ts->len == len && !memcmp(ts->str, p1, len))
3843 goto token_found;
3844 pts = &(ts->hash_next);
3846 ts = tok_alloc_new(pts, p1, len);
3847 token_found: ;
3848 } else {
3849 /* slower case */
3850 cstr_reset(&tokcstr);
3852 while (p1 < p) {
3853 cstr_ccat(&tokcstr, *p1);
3854 p1++;
3856 p--;
3857 PEEKC(c, p);
3858 parse_ident_slow:
3859 while (isidnum_table[c-CH_EOF]) {
3860 cstr_ccat(&tokcstr, c);
3861 PEEKC(c, p);
3863 ts = tok_alloc(tokcstr.data, tokcstr.size);
3865 tok = ts->tok;
3866 break;
3867 case 'L':
3868 t = p[1];
3869 if (t != '\\' && t != '\'' && t != '\"') {
3870 /* fast case */
3871 goto parse_ident_fast;
3872 } else {
3873 PEEKC(c, p);
3874 if (c == '\'' || c == '\"') {
3875 is_long = 1;
3876 goto str_const;
3877 } else {
3878 cstr_reset(&tokcstr);
3879 cstr_ccat(&tokcstr, 'L');
3880 goto parse_ident_slow;
3883 break;
3884 case '0': case '1': case '2': case '3':
3885 case '4': case '5': case '6': case '7':
3886 case '8': case '9':
3888 cstr_reset(&tokcstr);
3889 /* after the first digit, accept digits, alpha, '.' or sign if
3890 prefixed by 'eEpP' */
3891 parse_num:
3892 for(;;) {
3893 t = c;
3894 cstr_ccat(&tokcstr, c);
3895 PEEKC(c, p);
3896 if (!(isnum(c) || isid(c) || c == '.' ||
3897 ((c == '+' || c == '-') &&
3898 (t == 'e' || t == 'E' || t == 'p' || t == 'P'))))
3899 break;
3901 /* We add a trailing '\0' to ease parsing */
3902 cstr_ccat(&tokcstr, '\0');
3903 tokc.cstr = &tokcstr;
3904 tok = TOK_PPNUM;
3905 break;
3906 case '.':
3907 /* special dot handling because it can also start a number */
3908 PEEKC(c, p);
3909 if (isnum(c)) {
3910 cstr_reset(&tokcstr);
3911 cstr_ccat(&tokcstr, '.');
3912 goto parse_num;
3913 } else if (c == '.') {
3914 PEEKC(c, p);
3915 if (c != '.')
3916 expect("'.'");
3917 PEEKC(c, p);
3918 tok = TOK_DOTS;
3919 } else {
3920 tok = '.';
3922 break;
3923 case '\'':
3924 case '\"':
3925 is_long = 0;
3926 str_const:
3928 CString str;
3929 int sep;
3931 sep = c;
3933 /* parse the string */
3934 cstr_new(&str);
3935 p = parse_pp_string(p, sep, &str);
3936 cstr_ccat(&str, '\0');
3938 /* eval the escape (should be done as TOK_PPNUM) */
3939 cstr_reset(&tokcstr);
3940 parse_escape_string(&tokcstr, str.data, is_long);
3941 cstr_free(&str);
3943 if (sep == '\'') {
3944 int char_size;
3945 /* XXX: make it portable */
3946 if (!is_long)
3947 char_size = 1;
3948 else
3949 char_size = sizeof(nwchar_t);
3950 if (tokcstr.size <= char_size)
3951 error("empty character constant");
3952 if (tokcstr.size > 2 * char_size)
3953 warning("multi-character character constant");
3954 if (!is_long) {
3955 tokc.i = *(int8_t *)tokcstr.data;
3956 tok = TOK_CCHAR;
3957 } else {
3958 tokc.i = *(nwchar_t *)tokcstr.data;
3959 tok = TOK_LCHAR;
3961 } else {
3962 tokc.cstr = &tokcstr;
3963 if (!is_long)
3964 tok = TOK_STR;
3965 else
3966 tok = TOK_LSTR;
3969 break;
3971 case '<':
3972 PEEKC(c, p);
3973 if (c == '=') {
3974 p++;
3975 tok = TOK_LE;
3976 } else if (c == '<') {
3977 PEEKC(c, p);
3978 if (c == '=') {
3979 p++;
3980 tok = TOK_A_SHL;
3981 } else {
3982 tok = TOK_SHL;
3984 } else {
3985 tok = TOK_LT;
3987 break;
3989 case '>':
3990 PEEKC(c, p);
3991 if (c == '=') {
3992 p++;
3993 tok = TOK_GE;
3994 } else if (c == '>') {
3995 PEEKC(c, p);
3996 if (c == '=') {
3997 p++;
3998 tok = TOK_A_SAR;
3999 } else {
4000 tok = TOK_SAR;
4002 } else {
4003 tok = TOK_GT;
4005 break;
4007 case '&':
4008 PEEKC(c, p);
4009 if (c == '&') {
4010 p++;
4011 tok = TOK_LAND;
4012 } else if (c == '=') {
4013 p++;
4014 tok = TOK_A_AND;
4015 } else {
4016 tok = '&';
4018 break;
4020 case '|':
4021 PEEKC(c, p);
4022 if (c == '|') {
4023 p++;
4024 tok = TOK_LOR;
4025 } else if (c == '=') {
4026 p++;
4027 tok = TOK_A_OR;
4028 } else {
4029 tok = '|';
4031 break;
4033 case '+':
4034 PEEKC(c, p);
4035 if (c == '+') {
4036 p++;
4037 tok = TOK_INC;
4038 } else if (c == '=') {
4039 p++;
4040 tok = TOK_A_ADD;
4041 } else {
4042 tok = '+';
4044 break;
4046 case '-':
4047 PEEKC(c, p);
4048 if (c == '-') {
4049 p++;
4050 tok = TOK_DEC;
4051 } else if (c == '=') {
4052 p++;
4053 tok = TOK_A_SUB;
4054 } else if (c == '>') {
4055 p++;
4056 tok = TOK_ARROW;
4057 } else {
4058 tok = '-';
4060 break;
4062 PARSE2('!', '!', '=', TOK_NE)
4063 PARSE2('=', '=', '=', TOK_EQ)
4064 PARSE2('*', '*', '=', TOK_A_MUL)
4065 PARSE2('%', '%', '=', TOK_A_MOD)
4066 PARSE2('^', '^', '=', TOK_A_XOR)
4068 /* comments or operator */
4069 case '/':
4070 PEEKC(c, p);
4071 if (c == '*') {
4072 p = parse_comment(p);
4073 goto redo_no_start;
4074 } else if (c == '/') {
4075 p = parse_line_comment(p);
4076 goto redo_no_start;
4077 } else if (c == '=') {
4078 p++;
4079 tok = TOK_A_DIV;
4080 } else {
4081 tok = '/';
4083 break;
4085 /* simple tokens */
4086 case '(':
4087 case ')':
4088 case '[':
4089 case ']':
4090 case '{':
4091 case '}':
4092 case ',':
4093 case ';':
4094 case ':':
4095 case '?':
4096 case '~':
4097 case '$': /* only used in assembler */
4098 case '@': /* dito */
4099 tok = c;
4100 p++;
4101 break;
4102 default:
4103 error("unrecognized character \\x%02x", c);
4104 break;
4106 tok_flags = 0;
4107 keep_tok_flags:
4108 file->buf_ptr = p;
4109 #if defined(PARSE_DEBUG)
4110 printf("token = %s\n", get_tok_str(tok, &tokc));
4111 #endif
4114 /* return next token without macro substitution. Can read input from
4115 macro_ptr buffer */
4116 static void next_nomacro(void)
4118 if (macro_ptr) {
4119 redo:
4120 tok = *macro_ptr;
4121 if (tok) {
4122 TOK_GET(tok, macro_ptr, tokc);
4123 if (tok == TOK_LINENUM) {
4124 file->line_num = tokc.i;
4125 goto redo;
4128 } else {
4129 next_nomacro1();
4133 /* substitute args in macro_str and return allocated string */
4134 static int *macro_arg_subst(Sym **nested_list, int *macro_str, Sym *args)
4136 int *st, last_tok, t, notfirst;
4137 Sym *s;
4138 CValue cval;
4139 TokenString str;
4140 CString cstr;
4142 tok_str_new(&str);
4143 last_tok = 0;
4144 while(1) {
4145 TOK_GET(t, macro_str, cval);
4146 if (!t)
4147 break;
4148 if (t == '#') {
4149 /* stringize */
4150 TOK_GET(t, macro_str, cval);
4151 if (!t)
4152 break;
4153 s = sym_find2(args, t);
4154 if (s) {
4155 cstr_new(&cstr);
4156 st = (int *)s->c;
4157 notfirst = 0;
4158 while (*st) {
4159 if (notfirst)
4160 cstr_ccat(&cstr, ' ');
4161 TOK_GET(t, st, cval);
4162 cstr_cat(&cstr, get_tok_str(t, &cval));
4163 #ifndef PP_NOSPACES
4164 notfirst = 1;
4165 #endif
4167 cstr_ccat(&cstr, '\0');
4168 #ifdef PP_DEBUG
4169 printf("stringize: %s\n", (char *)cstr.data);
4170 #endif
4171 /* add string */
4172 cval.cstr = &cstr;
4173 tok_str_add2(&str, TOK_STR, &cval);
4174 cstr_free(&cstr);
4175 } else {
4176 tok_str_add2(&str, t, &cval);
4178 } else if (t >= TOK_IDENT) {
4179 s = sym_find2(args, t);
4180 if (s) {
4181 st = (int *)s->c;
4182 /* if '##' is present before or after, no arg substitution */
4183 if (*macro_str == TOK_TWOSHARPS || last_tok == TOK_TWOSHARPS) {
4184 /* special case for var arg macros : ## eats the
4185 ',' if empty VA_ARGS variable. */
4186 /* XXX: test of the ',' is not 100%
4187 reliable. should fix it to avoid security
4188 problems */
4189 if (gnu_ext && s->type.t &&
4190 last_tok == TOK_TWOSHARPS &&
4191 str.len >= 2 && str.str[str.len - 2] == ',') {
4192 if (*st == 0) {
4193 /* suppress ',' '##' */
4194 str.len -= 2;
4195 } else {
4196 /* suppress '##' and add variable */
4197 str.len--;
4198 goto add_var;
4200 } else {
4201 int t1;
4202 add_var:
4203 for(;;) {
4204 TOK_GET(t1, st, cval);
4205 if (!t1)
4206 break;
4207 tok_str_add2(&str, t1, &cval);
4210 } else {
4211 /* NOTE: the stream cannot be read when macro
4212 substituing an argument */
4213 macro_subst(&str, nested_list, st, NULL);
4215 } else {
4216 tok_str_add(&str, t);
4218 } else {
4219 tok_str_add2(&str, t, &cval);
4221 last_tok = t;
4223 tok_str_add(&str, 0);
4224 return str.str;
4227 static char const ab_month_name[12][4] =
4229 "Jan", "Feb", "Mar", "Apr", "May", "Jun",
4230 "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"
4233 /* do macro substitution of current token with macro 's' and add
4234 result to (tok_str,tok_len). 'nested_list' is the list of all
4235 macros we got inside to avoid recursing. Return non zero if no
4236 substitution needs to be done */
4237 static int macro_subst_tok(TokenString *tok_str,
4238 Sym **nested_list, Sym *s, struct macro_level **can_read_stream)
4240 Sym *args, *sa, *sa1;
4241 int mstr_allocated, parlevel, *mstr, t, t1;
4242 TokenString str;
4243 char *cstrval;
4244 CValue cval;
4245 CString cstr;
4246 char buf[32];
4248 /* if symbol is a macro, prepare substitution */
4249 /* special macros */
4250 if (tok == TOK___LINE__) {
4251 snprintf(buf, sizeof(buf), "%d", file->line_num);
4252 cstrval = buf;
4253 t1 = TOK_PPNUM;
4254 goto add_cstr1;
4255 } else if (tok == TOK___FILE__) {
4256 cstrval = file->filename;
4257 goto add_cstr;
4258 } else if (tok == TOK___DATE__ || tok == TOK___TIME__) {
4259 time_t ti;
4260 struct tm *tm;
4262 time(&ti);
4263 tm = localtime(&ti);
4264 if (tok == TOK___DATE__) {
4265 snprintf(buf, sizeof(buf), "%s %2d %d",
4266 ab_month_name[tm->tm_mon], tm->tm_mday, tm->tm_year + 1900);
4267 } else {
4268 snprintf(buf, sizeof(buf), "%02d:%02d:%02d",
4269 tm->tm_hour, tm->tm_min, tm->tm_sec);
4271 cstrval = buf;
4272 add_cstr:
4273 t1 = TOK_STR;
4274 add_cstr1:
4275 cstr_new(&cstr);
4276 cstr_cat(&cstr, cstrval);
4277 cstr_ccat(&cstr, '\0');
4278 cval.cstr = &cstr;
4279 tok_str_add2(tok_str, t1, &cval);
4280 cstr_free(&cstr);
4281 } else {
4282 mstr = (int *)s->c;
4283 mstr_allocated = 0;
4284 if (s->type.t == MACRO_FUNC) {
4285 /* NOTE: we do not use next_nomacro to avoid eating the
4286 next token. XXX: find better solution */
4287 redo:
4288 if (macro_ptr) {
4289 t = *macro_ptr;
4290 if (t == 0 && can_read_stream) {
4291 /* end of macro stream: we must look at the token
4292 after in the file */
4293 struct macro_level *ml = *can_read_stream;
4294 macro_ptr = NULL;
4295 if (ml)
4297 macro_ptr = ml->p;
4298 ml->p = NULL;
4299 *can_read_stream = ml -> prev;
4301 goto redo;
4303 } else {
4304 /* XXX: incorrect with comments */
4305 ch = file->buf_ptr[0];
4306 while (is_space(ch) || ch == '\n')
4307 cinp();
4308 t = ch;
4310 if (t != '(') /* no macro subst */
4311 return -1;
4313 /* argument macro */
4314 next_nomacro();
4315 next_nomacro();
4316 args = NULL;
4317 sa = s->next;
4318 /* NOTE: empty args are allowed, except if no args */
4319 for(;;) {
4320 /* handle '()' case */
4321 if (!args && !sa && tok == ')')
4322 break;
4323 if (!sa)
4324 error("macro '%s' used with too many args",
4325 get_tok_str(s->v, 0));
4326 tok_str_new(&str);
4327 parlevel = 0;
4328 /* NOTE: non zero sa->t indicates VA_ARGS */
4329 while ((parlevel > 0 ||
4330 (tok != ')' &&
4331 (tok != ',' || sa->type.t))) &&
4332 tok != -1) {
4333 if (tok == '(')
4334 parlevel++;
4335 else if (tok == ')')
4336 parlevel--;
4337 if (tok != TOK_LINEFEED)
4338 tok_str_add2(&str, tok, &tokc);
4339 next_nomacro();
4341 tok_str_add(&str, 0);
4342 sym_push2(&args, sa->v & ~SYM_FIELD, sa->type.t, (long)str.str);
4343 sa = sa->next;
4344 if (tok == ')') {
4345 /* special case for gcc var args: add an empty
4346 var arg argument if it is omitted */
4347 if (sa && sa->type.t && gnu_ext)
4348 continue;
4349 else
4350 break;
4352 if (tok != ',')
4353 expect(",");
4354 next_nomacro();
4356 if (sa) {
4357 error("macro '%s' used with too few args",
4358 get_tok_str(s->v, 0));
4361 /* now subst each arg */
4362 mstr = macro_arg_subst(nested_list, mstr, args);
4363 /* free memory */
4364 sa = args;
4365 while (sa) {
4366 sa1 = sa->prev;
4367 tok_str_free((int *)sa->c);
4368 sym_free(sa);
4369 sa = sa1;
4371 mstr_allocated = 1;
4373 sym_push2(nested_list, s->v, 0, 0);
4374 macro_subst(tok_str, nested_list, mstr, can_read_stream);
4375 /* pop nested defined symbol */
4376 sa1 = *nested_list;
4377 *nested_list = sa1->prev;
4378 sym_free(sa1);
4379 if (mstr_allocated)
4380 tok_str_free(mstr);
4382 return 0;
4385 /* handle the '##' operator. Return NULL if no '##' seen. Otherwise
4386 return the resulting string (which must be freed). */
4387 static inline int *macro_twosharps(const int *macro_str)
4389 TokenSym *ts;
4390 const int *macro_ptr1, *start_macro_ptr, *ptr, *saved_macro_ptr;
4391 int t;
4392 const char *p1, *p2;
4393 CValue cval;
4394 TokenString macro_str1;
4395 CString cstr;
4397 start_macro_ptr = macro_str;
4398 /* we search the first '##' */
4399 for(;;) {
4400 macro_ptr1 = macro_str;
4401 TOK_GET(t, macro_str, cval);
4402 /* nothing more to do if end of string */
4403 if (t == 0)
4404 return NULL;
4405 if (*macro_str == TOK_TWOSHARPS)
4406 break;
4409 /* we saw '##', so we need more processing to handle it */
4410 cstr_new(&cstr);
4411 tok_str_new(&macro_str1);
4412 tok = t;
4413 tokc = cval;
4415 /* add all tokens seen so far */
4416 for(ptr = start_macro_ptr; ptr < macro_ptr1;) {
4417 TOK_GET(t, ptr, cval);
4418 tok_str_add2(&macro_str1, t, &cval);
4420 saved_macro_ptr = macro_ptr;
4421 /* XXX: get rid of the use of macro_ptr here */
4422 macro_ptr = (int *)macro_str;
4423 for(;;) {
4424 while (*macro_ptr == TOK_TWOSHARPS) {
4425 macro_ptr++;
4426 macro_ptr1 = macro_ptr;
4427 t = *macro_ptr;
4428 if (t) {
4429 TOK_GET(t, macro_ptr, cval);
4430 /* We concatenate the two tokens if we have an
4431 identifier or a preprocessing number */
4432 cstr_reset(&cstr);
4433 p1 = get_tok_str(tok, &tokc);
4434 cstr_cat(&cstr, p1);
4435 p2 = get_tok_str(t, &cval);
4436 cstr_cat(&cstr, p2);
4437 cstr_ccat(&cstr, '\0');
4439 if ((tok >= TOK_IDENT || tok == TOK_PPNUM) &&
4440 (t >= TOK_IDENT || t == TOK_PPNUM)) {
4441 if (tok == TOK_PPNUM) {
4442 /* if number, then create a number token */
4443 /* NOTE: no need to allocate because
4444 tok_str_add2() does it */
4445 cstr_reset(&tokcstr);
4446 tokcstr = cstr;
4447 cstr_new(&cstr);
4448 tokc.cstr = &tokcstr;
4449 } else {
4450 /* if identifier, we must do a test to
4451 validate we have a correct identifier */
4452 if (t == TOK_PPNUM) {
4453 const char *p;
4454 int c;
4456 p = p2;
4457 for(;;) {
4458 c = *p;
4459 if (c == '\0')
4460 break;
4461 p++;
4462 if (!isnum(c) && !isid(c))
4463 goto error_pasting;
4466 ts = tok_alloc(cstr.data, strlen(cstr.data));
4467 tok = ts->tok; /* modify current token */
4469 } else {
4470 const char *str = cstr.data;
4471 const unsigned char *q;
4473 /* we look for a valid token */
4474 /* XXX: do more extensive checks */
4475 if (!strcmp(str, ">>=")) {
4476 tok = TOK_A_SAR;
4477 } else if (!strcmp(str, "<<=")) {
4478 tok = TOK_A_SHL;
4479 } else if (strlen(str) == 2) {
4480 /* search in two bytes table */
4481 q = tok_two_chars;
4482 for(;;) {
4483 if (!*q)
4484 goto error_pasting;
4485 if (q[0] == str[0] && q[1] == str[1])
4486 break;
4487 q += 3;
4489 tok = q[2];
4490 } else {
4491 error_pasting:
4492 /* NOTE: because get_tok_str use a static buffer,
4493 we must save it */
4494 cstr_reset(&cstr);
4495 p1 = get_tok_str(tok, &tokc);
4496 cstr_cat(&cstr, p1);
4497 cstr_ccat(&cstr, '\0');
4498 p2 = get_tok_str(t, &cval);
4499 warning("pasting \"%s\" and \"%s\" does not give a valid preprocessing token", cstr.data, p2);
4500 /* cannot merge tokens: just add them separately */
4501 tok_str_add2(&macro_str1, tok, &tokc);
4502 /* XXX: free associated memory ? */
4503 tok = t;
4504 tokc = cval;
4509 tok_str_add2(&macro_str1, tok, &tokc);
4510 next_nomacro();
4511 if (tok == 0)
4512 break;
4514 macro_ptr = (int *)saved_macro_ptr;
4515 cstr_free(&cstr);
4516 tok_str_add(&macro_str1, 0);
4517 return macro_str1.str;
4521 /* do macro substitution of macro_str and add result to
4522 (tok_str,tok_len). 'nested_list' is the list of all macros we got
4523 inside to avoid recursing. */
4524 static void macro_subst(TokenString *tok_str, Sym **nested_list,
4525 const int *macro_str, struct macro_level ** can_read_stream)
4527 Sym *s;
4528 int *macro_str1;
4529 const int *ptr;
4530 int t, ret;
4531 CValue cval;
4532 struct macro_level ml;
4534 /* first scan for '##' operator handling */
4535 ptr = macro_str;
4536 macro_str1 = macro_twosharps(ptr);
4537 if (macro_str1)
4538 ptr = macro_str1;
4539 while (1) {
4540 /* NOTE: ptr == NULL can only happen if tokens are read from
4541 file stream due to a macro function call */
4542 if (ptr == NULL)
4543 break;
4544 TOK_GET(t, ptr, cval);
4545 if (t == 0)
4546 break;
4547 s = define_find(t);
4548 if (s != NULL) {
4549 /* if nested substitution, do nothing */
4550 if (sym_find2(*nested_list, t))
4551 goto no_subst;
4552 ml.p = macro_ptr;
4553 if (can_read_stream)
4554 ml.prev = *can_read_stream, *can_read_stream = &ml;
4555 macro_ptr = (int *)ptr;
4556 tok = t;
4557 ret = macro_subst_tok(tok_str, nested_list, s, can_read_stream);
4558 ptr = (int *)macro_ptr;
4559 macro_ptr = ml.p;
4560 if (can_read_stream && *can_read_stream == &ml)
4561 *can_read_stream = ml.prev;
4562 if (ret != 0)
4563 goto no_subst;
4564 } else {
4565 no_subst:
4566 tok_str_add2(tok_str, t, &cval);
4569 if (macro_str1)
4570 tok_str_free(macro_str1);
4573 /* return next token with macro substitution */
4574 static void next(void)
4576 Sym *nested_list, *s;
4577 TokenString str;
4578 struct macro_level *ml;
4580 redo:
4581 next_nomacro();
4582 if (!macro_ptr) {
4583 /* if not reading from macro substituted string, then try
4584 to substitute macros */
4585 if (tok >= TOK_IDENT &&
4586 (parse_flags & PARSE_FLAG_PREPROCESS)) {
4587 s = define_find(tok);
4588 if (s) {
4589 /* we have a macro: we try to substitute */
4590 tok_str_new(&str);
4591 nested_list = NULL;
4592 ml = NULL;
4593 if (macro_subst_tok(&str, &nested_list, s, &ml) == 0) {
4594 /* substitution done, NOTE: maybe empty */
4595 tok_str_add(&str, 0);
4596 macro_ptr = str.str;
4597 macro_ptr_allocated = str.str;
4598 goto redo;
4602 } else {
4603 if (tok == 0) {
4604 /* end of macro or end of unget buffer */
4605 if (unget_buffer_enabled) {
4606 macro_ptr = unget_saved_macro_ptr;
4607 unget_buffer_enabled = 0;
4608 } else {
4609 /* end of macro string: free it */
4610 tok_str_free(macro_ptr_allocated);
4611 macro_ptr = NULL;
4613 goto redo;
4617 /* convert preprocessor tokens into C tokens */
4618 if (tok == TOK_PPNUM &&
4619 (parse_flags & PARSE_FLAG_TOK_NUM)) {
4620 parse_number((char *)tokc.cstr->data);
4624 /* push back current token and set current token to 'last_tok'. Only
4625 identifier case handled for labels. */
4626 static inline void unget_tok(int last_tok)
4628 int i, n;
4629 int *q;
4630 unget_saved_macro_ptr = macro_ptr;
4631 unget_buffer_enabled = 1;
4632 q = unget_saved_buffer;
4633 macro_ptr = q;
4634 *q++ = tok;
4635 n = tok_ext_size(tok) - 1;
4636 for(i=0;i<n;i++)
4637 *q++ = tokc.tab[i];
4638 *q = 0; /* end of token string */
4639 tok = last_tok;
4643 void swap(int *p, int *q)
4645 int t;
4646 t = *p;
4647 *p = *q;
4648 *q = t;
4651 void vsetc(CType *type, int r, CValue *vc)
4653 int v;
4655 if (vtop >= vstack + (VSTACK_SIZE - 1))
4656 error("memory full");
4657 /* cannot let cpu flags if other instruction are generated. Also
4658 avoid leaving VT_JMP anywhere except on the top of the stack
4659 because it would complicate the code generator. */
4660 if (vtop >= vstack) {
4661 v = vtop->r & VT_VALMASK;
4662 if (v == VT_CMP || (v & ~1) == VT_JMP)
4663 gv(RC_INT);
4665 vtop++;
4666 vtop->type = *type;
4667 vtop->r = r;
4668 vtop->r2 = VT_CONST;
4669 vtop->c = *vc;
4672 /* push integer constant */
4673 void vpushi(int v)
4675 CValue cval;
4676 cval.i = v;
4677 vsetc(&int_type, VT_CONST, &cval);
4680 /* push long long constant */
4681 void vpushll(long long v)
4683 CValue cval;
4684 CType ctype;
4685 ctype.t = VT_LLONG;
4686 cval.ull = v;
4687 vsetc(&ctype, VT_CONST, &cval);
4690 /* Return a static symbol pointing to a section */
4691 static Sym *get_sym_ref(CType *type, Section *sec,
4692 unsigned long offset, unsigned long size)
4694 int v;
4695 Sym *sym;
4697 v = anon_sym++;
4698 sym = global_identifier_push(v, type->t | VT_STATIC, 0);
4699 sym->type.ref = type->ref;
4700 sym->r = VT_CONST | VT_SYM;
4701 put_extern_sym(sym, sec, offset, size);
4702 return sym;
4705 /* push a reference to a section offset by adding a dummy symbol */
4706 static void vpush_ref(CType *type, Section *sec, unsigned long offset, unsigned long size)
4708 CValue cval;
4710 cval.ul = 0;
4711 vsetc(type, VT_CONST | VT_SYM, &cval);
4712 vtop->sym = get_sym_ref(type, sec, offset, size);
4715 /* define a new external reference to a symbol 'v' of type 'u' */
4716 static Sym *external_global_sym(int v, CType *type, int r)
4718 Sym *s;
4720 s = sym_find(v);
4721 if (!s) {
4722 /* push forward reference */
4723 s = global_identifier_push(v, type->t | VT_EXTERN, 0);
4724 s->type.ref = type->ref;
4725 s->r = r | VT_CONST | VT_SYM;
4727 return s;
4730 /* define a new external reference to a symbol 'v' of type 'u' */
4731 static Sym *external_sym(int v, CType *type, int r)
4733 Sym *s;
4735 s = sym_find(v);
4736 if (!s) {
4737 /* push forward reference */
4738 s = sym_push(v, type, r | VT_CONST | VT_SYM, 0);
4739 s->type.t |= VT_EXTERN;
4740 } else {
4741 if (!is_compatible_types(&s->type, type))
4742 error("incompatible types for redefinition of '%s'",
4743 get_tok_str(v, NULL));
4745 return s;
4748 /* push a reference to global symbol v */
4749 static void vpush_global_sym(CType *type, int v)
4751 Sym *sym;
4752 CValue cval;
4754 sym = external_global_sym(v, type, 0);
4755 cval.ul = 0;
4756 vsetc(type, VT_CONST | VT_SYM, &cval);
4757 vtop->sym = sym;
4760 void vset(CType *type, int r, int v)
4762 CValue cval;
4764 cval.i = v;
4765 vsetc(type, r, &cval);
4768 void vseti(int r, int v)
4770 CType type;
4771 type.t = VT_INT;
4772 vset(&type, r, v);
4775 void vswap(void)
4777 SValue tmp;
4779 tmp = vtop[0];
4780 vtop[0] = vtop[-1];
4781 vtop[-1] = tmp;
4784 void vpushv(SValue *v)
4786 if (vtop >= vstack + (VSTACK_SIZE - 1))
4787 error("memory full");
4788 vtop++;
4789 *vtop = *v;
4792 void vdup(void)
4794 vpushv(vtop);
4797 /* save r to the memory stack, and mark it as being free */
4798 void save_reg(int r)
4800 int l, saved, size, align;
4801 SValue *p, sv;
4802 CType *type;
4804 /* modify all stack values */
4805 saved = 0;
4806 l = 0;
4807 for(p=vstack;p<=vtop;p++) {
4808 if ((p->r & VT_VALMASK) == r ||
4809 ((p->type.t & VT_BTYPE) == VT_LLONG && (p->r2 & VT_VALMASK) == r)) {
4810 /* must save value on stack if not already done */
4811 if (!saved) {
4812 /* NOTE: must reload 'r' because r might be equal to r2 */
4813 r = p->r & VT_VALMASK;
4814 /* store register in the stack */
4815 type = &p->type;
4816 if ((p->r & VT_LVAL) ||
4817 (!is_float(type->t) && (type->t & VT_BTYPE) != VT_LLONG))
4818 #ifdef TCC_TARGET_X86_64
4819 type = &char_pointer_type;
4820 #else
4821 type = &int_type;
4822 #endif
4823 size = type_size(type, &align);
4824 loc = (loc - size) & -align;
4825 sv.type.t = type->t;
4826 sv.r = VT_LOCAL | VT_LVAL;
4827 sv.c.ul = loc;
4828 store(r, &sv);
4829 #if defined(TCC_TARGET_I386) || defined(TCC_TARGET_X86_64)
4830 /* x86 specific: need to pop fp register ST0 if saved */
4831 if (r == TREG_ST0) {
4832 o(0xd9dd); /* fstp %st(1) */
4834 #endif
4835 #ifndef TCC_TARGET_X86_64
4836 /* special long long case */
4837 if ((type->t & VT_BTYPE) == VT_LLONG) {
4838 sv.c.ul += 4;
4839 store(p->r2, &sv);
4841 #endif
4842 l = loc;
4843 saved = 1;
4845 /* mark that stack entry as being saved on the stack */
4846 if (p->r & VT_LVAL) {
4847 /* also clear the bounded flag because the
4848 relocation address of the function was stored in
4849 p->c.ul */
4850 p->r = (p->r & ~(VT_VALMASK | VT_BOUNDED)) | VT_LLOCAL;
4851 } else {
4852 p->r = lvalue_type(p->type.t) | VT_LOCAL;
4854 p->r2 = VT_CONST;
4855 p->c.ul = l;
4860 /* find a register of class 'rc2' with at most one reference on stack.
4861 * If none, call get_reg(rc) */
4862 int get_reg_ex(int rc, int rc2)
4864 int r;
4865 SValue *p;
4867 for(r=0;r<NB_REGS;r++) {
4868 if (reg_classes[r] & rc2) {
4869 int n;
4870 n=0;
4871 for(p = vstack; p <= vtop; p++) {
4872 if ((p->r & VT_VALMASK) == r ||
4873 (p->r2 & VT_VALMASK) == r)
4874 n++;
4876 if (n <= 1)
4877 return r;
4880 return get_reg(rc);
4883 /* find a free register of class 'rc'. If none, save one register */
4884 int get_reg(int rc)
4886 int r;
4887 SValue *p;
4889 /* find a free register */
4890 for(r=0;r<NB_REGS;r++) {
4891 if (reg_classes[r] & rc) {
4892 for(p=vstack;p<=vtop;p++) {
4893 if ((p->r & VT_VALMASK) == r ||
4894 (p->r2 & VT_VALMASK) == r)
4895 goto notfound;
4897 return r;
4899 notfound: ;
4902 /* no register left : free the first one on the stack (VERY
4903 IMPORTANT to start from the bottom to ensure that we don't
4904 spill registers used in gen_opi()) */
4905 for(p=vstack;p<=vtop;p++) {
4906 r = p->r & VT_VALMASK;
4907 if (r < VT_CONST && (reg_classes[r] & rc))
4908 goto save_found;
4909 /* also look at second register (if long long) */
4910 r = p->r2 & VT_VALMASK;
4911 if (r < VT_CONST && (reg_classes[r] & rc)) {
4912 save_found:
4913 save_reg(r);
4914 return r;
4917 /* Should never comes here */
4918 return -1;
4921 /* save registers up to (vtop - n) stack entry */
4922 void save_regs(int n)
4924 int r;
4925 SValue *p, *p1;
4926 p1 = vtop - n;
4927 for(p = vstack;p <= p1; p++) {
4928 r = p->r & VT_VALMASK;
4929 if (r < VT_CONST) {
4930 save_reg(r);
4935 /* move register 's' to 'r', and flush previous value of r to memory
4936 if needed */
4937 void move_reg(int r, int s)
4939 SValue sv;
4941 if (r != s) {
4942 save_reg(r);
4943 sv.type.t = VT_INT;
4944 sv.r = s;
4945 sv.c.ul = 0;
4946 load(r, &sv);
4950 /* get address of vtop (vtop MUST BE an lvalue) */
4951 void gaddrof(void)
4953 vtop->r &= ~VT_LVAL;
4954 /* tricky: if saved lvalue, then we can go back to lvalue */
4955 if ((vtop->r & VT_VALMASK) == VT_LLOCAL)
4956 vtop->r = (vtop->r & ~(VT_VALMASK | VT_LVAL_TYPE)) | VT_LOCAL | VT_LVAL;
4959 #ifdef CONFIG_TCC_BCHECK
4960 /* generate lvalue bound code */
4961 void gbound(void)
4963 int lval_type;
4964 CType type1;
4966 vtop->r &= ~VT_MUSTBOUND;
4967 /* if lvalue, then use checking code before dereferencing */
4968 if (vtop->r & VT_LVAL) {
4969 /* if not VT_BOUNDED value, then make one */
4970 if (!(vtop->r & VT_BOUNDED)) {
4971 lval_type = vtop->r & (VT_LVAL_TYPE | VT_LVAL);
4972 /* must save type because we must set it to int to get pointer */
4973 type1 = vtop->type;
4974 vtop->type.t = VT_INT;
4975 gaddrof();
4976 vpushi(0);
4977 gen_bounded_ptr_add();
4978 vtop->r |= lval_type;
4979 vtop->type = type1;
4981 /* then check for dereferencing */
4982 gen_bounded_ptr_deref();
4985 #endif
4987 /* store vtop a register belonging to class 'rc'. lvalues are
4988 converted to values. Cannot be used if cannot be converted to
4989 register value (such as structures). */
4990 int gv(int rc)
4992 int r, rc2, bit_pos, bit_size, size, align, i;
4994 /* NOTE: get_reg can modify vstack[] */
4995 if (vtop->type.t & VT_BITFIELD) {
4996 CType type;
4997 int bits = 32;
4998 bit_pos = (vtop->type.t >> VT_STRUCT_SHIFT) & 0x3f;
4999 bit_size = (vtop->type.t >> (VT_STRUCT_SHIFT + 6)) & 0x3f;
5000 /* remove bit field info to avoid loops */
5001 vtop->type.t &= ~(VT_BITFIELD | (-1 << VT_STRUCT_SHIFT));
5002 /* cast to int to propagate signedness in following ops */
5003 if ((vtop->type.t & VT_BTYPE) == VT_LLONG) {
5004 type.t = VT_LLONG;
5005 bits = 64;
5006 } else
5007 type.t = VT_INT;
5008 if((vtop->type.t & VT_UNSIGNED) ||
5009 (vtop->type.t & VT_BTYPE) == VT_BOOL)
5010 type.t |= VT_UNSIGNED;
5011 gen_cast(&type);
5012 /* generate shifts */
5013 vpushi(bits - (bit_pos + bit_size));
5014 gen_op(TOK_SHL);
5015 vpushi(bits - bit_size);
5016 /* NOTE: transformed to SHR if unsigned */
5017 gen_op(TOK_SAR);
5018 r = gv(rc);
5019 } else {
5020 if (is_float(vtop->type.t) &&
5021 (vtop->r & (VT_VALMASK | VT_LVAL)) == VT_CONST) {
5022 Sym *sym;
5023 int *ptr;
5024 unsigned long offset;
5025 #if defined(TCC_TARGET_ARM) && !defined(TCC_ARM_VFP)
5026 CValue check;
5027 #endif
5029 /* XXX: unify with initializers handling ? */
5030 /* CPUs usually cannot use float constants, so we store them
5031 generically in data segment */
5032 size = type_size(&vtop->type, &align);
5033 offset = (data_section->data_offset + align - 1) & -align;
5034 data_section->data_offset = offset;
5035 /* XXX: not portable yet */
5036 #if defined(__i386__) || defined(__x86_64__)
5037 /* Zero pad x87 tenbyte long doubles */
5038 if (size == LDOUBLE_SIZE)
5039 vtop->c.tab[2] &= 0xffff;
5040 #endif
5041 ptr = section_ptr_add(data_section, size);
5042 size = size >> 2;
5043 #if defined(TCC_TARGET_ARM) && !defined(TCC_ARM_VFP)
5044 check.d = 1;
5045 if(check.tab[0])
5046 for(i=0;i<size;i++)
5047 ptr[i] = vtop->c.tab[size-1-i];
5048 else
5049 #endif
5050 for(i=0;i<size;i++)
5051 ptr[i] = vtop->c.tab[i];
5052 sym = get_sym_ref(&vtop->type, data_section, offset, size << 2);
5053 vtop->r |= VT_LVAL | VT_SYM;
5054 vtop->sym = sym;
5055 vtop->c.ul = 0;
5057 #ifdef CONFIG_TCC_BCHECK
5058 if (vtop->r & VT_MUSTBOUND)
5059 gbound();
5060 #endif
5062 r = vtop->r & VT_VALMASK;
5063 rc2 = RC_INT;
5064 if (rc == RC_IRET)
5065 rc2 = RC_LRET;
5066 /* need to reload if:
5067 - constant
5068 - lvalue (need to dereference pointer)
5069 - already a register, but not in the right class */
5070 if (r >= VT_CONST ||
5071 (vtop->r & VT_LVAL) ||
5072 !(reg_classes[r] & rc) ||
5073 ((vtop->type.t & VT_BTYPE) == VT_LLONG &&
5074 !(reg_classes[vtop->r2] & rc2))) {
5075 r = get_reg(rc);
5076 #ifndef TCC_TARGET_X86_64
5077 if ((vtop->type.t & VT_BTYPE) == VT_LLONG) {
5078 int r2;
5079 unsigned long long ll;
5080 /* two register type load : expand to two words
5081 temporarily */
5082 if ((vtop->r & (VT_VALMASK | VT_LVAL)) == VT_CONST) {
5083 /* load constant */
5084 ll = vtop->c.ull;
5085 vtop->c.ui = ll; /* first word */
5086 load(r, vtop);
5087 vtop->r = r; /* save register value */
5088 vpushi(ll >> 32); /* second word */
5089 } else if (r >= VT_CONST || /* XXX: test to VT_CONST incorrect ? */
5090 (vtop->r & VT_LVAL)) {
5091 /* We do not want to modifier the long long
5092 pointer here, so the safest (and less
5093 efficient) is to save all the other registers
5094 in the stack. XXX: totally inefficient. */
5095 save_regs(1);
5096 /* load from memory */
5097 load(r, vtop);
5098 vdup();
5099 vtop[-1].r = r; /* save register value */
5100 /* increment pointer to get second word */
5101 vtop->type.t = VT_INT;
5102 gaddrof();
5103 vpushi(4);
5104 gen_op('+');
5105 vtop->r |= VT_LVAL;
5106 } else {
5107 /* move registers */
5108 load(r, vtop);
5109 vdup();
5110 vtop[-1].r = r; /* save register value */
5111 vtop->r = vtop[-1].r2;
5113 /* allocate second register */
5114 r2 = get_reg(rc2);
5115 load(r2, vtop);
5116 vpop();
5117 /* write second register */
5118 vtop->r2 = r2;
5119 } else
5120 #endif
5121 if ((vtop->r & VT_LVAL) && !is_float(vtop->type.t)) {
5122 int t1, t;
5123 /* lvalue of scalar type : need to use lvalue type
5124 because of possible cast */
5125 t = vtop->type.t;
5126 t1 = t;
5127 /* compute memory access type */
5128 if (vtop->r & VT_LVAL_BYTE)
5129 t = VT_BYTE;
5130 else if (vtop->r & VT_LVAL_SHORT)
5131 t = VT_SHORT;
5132 if (vtop->r & VT_LVAL_UNSIGNED)
5133 t |= VT_UNSIGNED;
5134 vtop->type.t = t;
5135 load(r, vtop);
5136 /* restore wanted type */
5137 vtop->type.t = t1;
5138 } else {
5139 /* one register type load */
5140 load(r, vtop);
5143 vtop->r = r;
5144 #ifdef TCC_TARGET_C67
5145 /* uses register pairs for doubles */
5146 if ((vtop->type.t & VT_BTYPE) == VT_DOUBLE)
5147 vtop->r2 = r+1;
5148 #endif
5150 return r;
5153 /* generate vtop[-1] and vtop[0] in resp. classes rc1 and rc2 */
5154 void gv2(int rc1, int rc2)
5156 int v;
5158 /* generate more generic register first. But VT_JMP or VT_CMP
5159 values must be generated first in all cases to avoid possible
5160 reload errors */
5161 v = vtop[0].r & VT_VALMASK;
5162 if (v != VT_CMP && (v & ~1) != VT_JMP && rc1 <= rc2) {
5163 vswap();
5164 gv(rc1);
5165 vswap();
5166 gv(rc2);
5167 /* test if reload is needed for first register */
5168 if ((vtop[-1].r & VT_VALMASK) >= VT_CONST) {
5169 vswap();
5170 gv(rc1);
5171 vswap();
5173 } else {
5174 gv(rc2);
5175 vswap();
5176 gv(rc1);
5177 vswap();
5178 /* test if reload is needed for first register */
5179 if ((vtop[0].r & VT_VALMASK) >= VT_CONST) {
5180 gv(rc2);
5185 /* wrapper around RC_FRET to return a register by type */
5186 int rc_fret(int t)
5188 #ifdef TCC_TARGET_X86_64
5189 if (t == VT_LDOUBLE) {
5190 return RC_ST0;
5192 #endif
5193 return RC_FRET;
5196 /* wrapper around REG_FRET to return a register by type */
5197 int reg_fret(int t)
5199 #ifdef TCC_TARGET_X86_64
5200 if (t == VT_LDOUBLE) {
5201 return TREG_ST0;
5203 #endif
5204 return REG_FRET;
5207 /* expand long long on stack in two int registers */
5208 void lexpand(void)
5210 int u;
5212 u = vtop->type.t & VT_UNSIGNED;
5213 gv(RC_INT);
5214 vdup();
5215 vtop[0].r = vtop[-1].r2;
5216 vtop[0].r2 = VT_CONST;
5217 vtop[-1].r2 = VT_CONST;
5218 vtop[0].type.t = VT_INT | u;
5219 vtop[-1].type.t = VT_INT | u;
5222 #ifdef TCC_TARGET_ARM
5223 /* expand long long on stack */
5224 void lexpand_nr(void)
5226 int u,v;
5228 u = vtop->type.t & VT_UNSIGNED;
5229 vdup();
5230 vtop->r2 = VT_CONST;
5231 vtop->type.t = VT_INT | u;
5232 v=vtop[-1].r & (VT_VALMASK | VT_LVAL);
5233 if (v == VT_CONST) {
5234 vtop[-1].c.ui = vtop->c.ull;
5235 vtop->c.ui = vtop->c.ull >> 32;
5236 vtop->r = VT_CONST;
5237 } else if (v == (VT_LVAL|VT_CONST) || v == (VT_LVAL|VT_LOCAL)) {
5238 vtop->c.ui += 4;
5239 vtop->r = vtop[-1].r;
5240 } else if (v > VT_CONST) {
5241 vtop--;
5242 lexpand();
5243 } else
5244 vtop->r = vtop[-1].r2;
5245 vtop[-1].r2 = VT_CONST;
5246 vtop[-1].type.t = VT_INT | u;
5248 #endif
5250 /* build a long long from two ints */
5251 void lbuild(int t)
5253 gv2(RC_INT, RC_INT);
5254 vtop[-1].r2 = vtop[0].r;
5255 vtop[-1].type.t = t;
5256 vpop();
5259 /* rotate n first stack elements to the bottom
5260 I1 ... In -> I2 ... In I1 [top is right]
5262 void vrotb(int n)
5264 int i;
5265 SValue tmp;
5267 tmp = vtop[-n + 1];
5268 for(i=-n+1;i!=0;i++)
5269 vtop[i] = vtop[i+1];
5270 vtop[0] = tmp;
5273 /* rotate n first stack elements to the top
5274 I1 ... In -> In I1 ... I(n-1) [top is right]
5276 void vrott(int n)
5278 int i;
5279 SValue tmp;
5281 tmp = vtop[0];
5282 for(i = 0;i < n - 1; i++)
5283 vtop[-i] = vtop[-i - 1];
5284 vtop[-n + 1] = tmp;
5287 #ifdef TCC_TARGET_ARM
5288 /* like vrott but in other direction
5289 In ... I1 -> I(n-1) ... I1 In [top is right]
5291 void vnrott(int n)
5293 int i;
5294 SValue tmp;
5296 tmp = vtop[-n + 1];
5297 for(i = n - 1; i > 0; i--)
5298 vtop[-i] = vtop[-i + 1];
5299 vtop[0] = tmp;
5301 #endif
5303 /* pop stack value */
5304 void vpop(void)
5306 int v;
5307 v = vtop->r & VT_VALMASK;
5308 #if defined(TCC_TARGET_I386) || defined(TCC_TARGET_X86_64)
5309 /* for x86, we need to pop the FP stack */
5310 if (v == TREG_ST0 && !nocode_wanted) {
5311 o(0xd9dd); /* fstp %st(1) */
5312 } else
5313 #endif
5314 if (v == VT_JMP || v == VT_JMPI) {
5315 /* need to put correct jump if && or || without test */
5316 gsym(vtop->c.ul);
5318 vtop--;
5321 /* convert stack entry to register and duplicate its value in another
5322 register */
5323 void gv_dup(void)
5325 int rc, t, r, r1;
5326 SValue sv;
5328 t = vtop->type.t;
5329 if ((t & VT_BTYPE) == VT_LLONG) {
5330 lexpand();
5331 gv_dup();
5332 vswap();
5333 vrotb(3);
5334 gv_dup();
5335 vrotb(4);
5336 /* stack: H L L1 H1 */
5337 lbuild(t);
5338 vrotb(3);
5339 vrotb(3);
5340 vswap();
5341 lbuild(t);
5342 vswap();
5343 } else {
5344 /* duplicate value */
5345 rc = RC_INT;
5346 sv.type.t = VT_INT;
5347 if (is_float(t)) {
5348 rc = RC_FLOAT;
5349 #ifdef TCC_TARGET_X86_64
5350 if ((t & VT_BTYPE) == VT_LDOUBLE) {
5351 rc = RC_ST0;
5353 #endif
5354 sv.type.t = t;
5356 r = gv(rc);
5357 r1 = get_reg(rc);
5358 sv.r = r;
5359 sv.c.ul = 0;
5360 load(r1, &sv); /* move r to r1 */
5361 vdup();
5362 /* duplicates value */
5363 vtop->r = r1;
5367 #ifndef TCC_TARGET_X86_64
5368 /* generate CPU independent (unsigned) long long operations */
5369 void gen_opl(int op)
5371 int t, a, b, op1, c, i;
5372 int func;
5373 unsigned short reg_iret = REG_IRET;
5374 unsigned short reg_lret = REG_LRET;
5375 SValue tmp;
5377 switch(op) {
5378 case '/':
5379 case TOK_PDIV:
5380 func = TOK___divdi3;
5381 goto gen_func;
5382 case TOK_UDIV:
5383 func = TOK___udivdi3;
5384 goto gen_func;
5385 case '%':
5386 func = TOK___moddi3;
5387 goto gen_mod_func;
5388 case TOK_UMOD:
5389 func = TOK___umoddi3;
5390 gen_mod_func:
5391 #ifdef TCC_ARM_EABI
5392 reg_iret = TREG_R2;
5393 reg_lret = TREG_R3;
5394 #endif
5395 gen_func:
5396 /* call generic long long function */
5397 vpush_global_sym(&func_old_type, func);
5398 vrott(3);
5399 gfunc_call(2);
5400 vpushi(0);
5401 vtop->r = reg_iret;
5402 vtop->r2 = reg_lret;
5403 break;
5404 case '^':
5405 case '&':
5406 case '|':
5407 case '*':
5408 case '+':
5409 case '-':
5410 t = vtop->type.t;
5411 vswap();
5412 lexpand();
5413 vrotb(3);
5414 lexpand();
5415 /* stack: L1 H1 L2 H2 */
5416 tmp = vtop[0];
5417 vtop[0] = vtop[-3];
5418 vtop[-3] = tmp;
5419 tmp = vtop[-2];
5420 vtop[-2] = vtop[-3];
5421 vtop[-3] = tmp;
5422 vswap();
5423 /* stack: H1 H2 L1 L2 */
5424 if (op == '*') {
5425 vpushv(vtop - 1);
5426 vpushv(vtop - 1);
5427 gen_op(TOK_UMULL);
5428 lexpand();
5429 /* stack: H1 H2 L1 L2 ML MH */
5430 for(i=0;i<4;i++)
5431 vrotb(6);
5432 /* stack: ML MH H1 H2 L1 L2 */
5433 tmp = vtop[0];
5434 vtop[0] = vtop[-2];
5435 vtop[-2] = tmp;
5436 /* stack: ML MH H1 L2 H2 L1 */
5437 gen_op('*');
5438 vrotb(3);
5439 vrotb(3);
5440 gen_op('*');
5441 /* stack: ML MH M1 M2 */
5442 gen_op('+');
5443 gen_op('+');
5444 } else if (op == '+' || op == '-') {
5445 /* XXX: add non carry method too (for MIPS or alpha) */
5446 if (op == '+')
5447 op1 = TOK_ADDC1;
5448 else
5449 op1 = TOK_SUBC1;
5450 gen_op(op1);
5451 /* stack: H1 H2 (L1 op L2) */
5452 vrotb(3);
5453 vrotb(3);
5454 gen_op(op1 + 1); /* TOK_xxxC2 */
5455 } else {
5456 gen_op(op);
5457 /* stack: H1 H2 (L1 op L2) */
5458 vrotb(3);
5459 vrotb(3);
5460 /* stack: (L1 op L2) H1 H2 */
5461 gen_op(op);
5462 /* stack: (L1 op L2) (H1 op H2) */
5464 /* stack: L H */
5465 lbuild(t);
5466 break;
5467 case TOK_SAR:
5468 case TOK_SHR:
5469 case TOK_SHL:
5470 if ((vtop->r & (VT_VALMASK | VT_LVAL | VT_SYM)) == VT_CONST) {
5471 t = vtop[-1].type.t;
5472 vswap();
5473 lexpand();
5474 vrotb(3);
5475 /* stack: L H shift */
5476 c = (int)vtop->c.i;
5477 /* constant: simpler */
5478 /* NOTE: all comments are for SHL. the other cases are
5479 done by swaping words */
5480 vpop();
5481 if (op != TOK_SHL)
5482 vswap();
5483 if (c >= 32) {
5484 /* stack: L H */
5485 vpop();
5486 if (c > 32) {
5487 vpushi(c - 32);
5488 gen_op(op);
5490 if (op != TOK_SAR) {
5491 vpushi(0);
5492 } else {
5493 gv_dup();
5494 vpushi(31);
5495 gen_op(TOK_SAR);
5497 vswap();
5498 } else {
5499 vswap();
5500 gv_dup();
5501 /* stack: H L L */
5502 vpushi(c);
5503 gen_op(op);
5504 vswap();
5505 vpushi(32 - c);
5506 if (op == TOK_SHL)
5507 gen_op(TOK_SHR);
5508 else
5509 gen_op(TOK_SHL);
5510 vrotb(3);
5511 /* stack: L L H */
5512 vpushi(c);
5513 if (op == TOK_SHL)
5514 gen_op(TOK_SHL);
5515 else
5516 gen_op(TOK_SHR);
5517 gen_op('|');
5519 if (op != TOK_SHL)
5520 vswap();
5521 lbuild(t);
5522 } else {
5523 /* XXX: should provide a faster fallback on x86 ? */
5524 switch(op) {
5525 case TOK_SAR:
5526 func = TOK___ashrdi3;
5527 goto gen_func;
5528 case TOK_SHR:
5529 func = TOK___lshrdi3;
5530 goto gen_func;
5531 case TOK_SHL:
5532 func = TOK___ashldi3;
5533 goto gen_func;
5536 break;
5537 default:
5538 /* compare operations */
5539 t = vtop->type.t;
5540 vswap();
5541 lexpand();
5542 vrotb(3);
5543 lexpand();
5544 /* stack: L1 H1 L2 H2 */
5545 tmp = vtop[-1];
5546 vtop[-1] = vtop[-2];
5547 vtop[-2] = tmp;
5548 /* stack: L1 L2 H1 H2 */
5549 /* compare high */
5550 op1 = op;
5551 /* when values are equal, we need to compare low words. since
5552 the jump is inverted, we invert the test too. */
5553 if (op1 == TOK_LT)
5554 op1 = TOK_LE;
5555 else if (op1 == TOK_GT)
5556 op1 = TOK_GE;
5557 else if (op1 == TOK_ULT)
5558 op1 = TOK_ULE;
5559 else if (op1 == TOK_UGT)
5560 op1 = TOK_UGE;
5561 a = 0;
5562 b = 0;
5563 gen_op(op1);
5564 if (op1 != TOK_NE) {
5565 a = gtst(1, 0);
5567 if (op != TOK_EQ) {
5568 /* generate non equal test */
5569 /* XXX: NOT PORTABLE yet */
5570 if (a == 0) {
5571 b = gtst(0, 0);
5572 } else {
5573 #if defined(TCC_TARGET_I386)
5574 b = psym(0x850f, 0);
5575 #elif defined(TCC_TARGET_ARM)
5576 b = ind;
5577 o(0x1A000000 | encbranch(ind, 0, 1));
5578 #elif defined(TCC_TARGET_C67)
5579 error("not implemented");
5580 #else
5581 #error not supported
5582 #endif
5585 /* compare low. Always unsigned */
5586 op1 = op;
5587 if (op1 == TOK_LT)
5588 op1 = TOK_ULT;
5589 else if (op1 == TOK_LE)
5590 op1 = TOK_ULE;
5591 else if (op1 == TOK_GT)
5592 op1 = TOK_UGT;
5593 else if (op1 == TOK_GE)
5594 op1 = TOK_UGE;
5595 gen_op(op1);
5596 a = gtst(1, a);
5597 gsym(b);
5598 vseti(VT_JMPI, a);
5599 break;
5602 #endif
5604 /* handle integer constant optimizations and various machine
5605 independent opt */
5606 void gen_opic(int op)
5608 int c1, c2, t1, t2, n;
5609 SValue *v1, *v2;
5610 long long l1, l2;
5611 typedef unsigned long long U;
5613 v1 = vtop - 1;
5614 v2 = vtop;
5615 t1 = v1->type.t & VT_BTYPE;
5616 t2 = v2->type.t & VT_BTYPE;
5618 if (t1 == VT_LLONG)
5619 l1 = v1->c.ll;
5620 else if (v1->type.t & VT_UNSIGNED)
5621 l1 = v1->c.ui;
5622 else
5623 l1 = v1->c.i;
5625 if (t2 == VT_LLONG)
5626 l2 = v2->c.ll;
5627 else if (v2->type.t & VT_UNSIGNED)
5628 l2 = v2->c.ui;
5629 else
5630 l2 = v2->c.i;
5632 /* currently, we cannot do computations with forward symbols */
5633 c1 = (v1->r & (VT_VALMASK | VT_LVAL | VT_SYM)) == VT_CONST;
5634 c2 = (v2->r & (VT_VALMASK | VT_LVAL | VT_SYM)) == VT_CONST;
5635 if (c1 && c2) {
5636 switch(op) {
5637 case '+': l1 += l2; break;
5638 case '-': l1 -= l2; break;
5639 case '&': l1 &= l2; break;
5640 case '^': l1 ^= l2; break;
5641 case '|': l1 |= l2; break;
5642 case '*': l1 *= l2; break;
5644 case TOK_PDIV:
5645 case '/':
5646 case '%':
5647 case TOK_UDIV:
5648 case TOK_UMOD:
5649 /* if division by zero, generate explicit division */
5650 if (l2 == 0) {
5651 if (const_wanted)
5652 error("division by zero in constant");
5653 goto general_case;
5655 switch(op) {
5656 default: l1 /= l2; break;
5657 case '%': l1 %= l2; break;
5658 case TOK_UDIV: l1 = (U)l1 / l2; break;
5659 case TOK_UMOD: l1 = (U)l1 % l2; break;
5661 break;
5662 case TOK_SHL: l1 <<= l2; break;
5663 case TOK_SHR: l1 = (U)l1 >> l2; break;
5664 case TOK_SAR: l1 >>= l2; break;
5665 /* tests */
5666 case TOK_ULT: l1 = (U)l1 < (U)l2; break;
5667 case TOK_UGE: l1 = (U)l1 >= (U)l2; break;
5668 case TOK_EQ: l1 = l1 == l2; break;
5669 case TOK_NE: l1 = l1 != l2; break;
5670 case TOK_ULE: l1 = (U)l1 <= (U)l2; break;
5671 case TOK_UGT: l1 = (U)l1 > (U)l2; break;
5672 case TOK_LT: l1 = l1 < l2; break;
5673 case TOK_GE: l1 = l1 >= l2; break;
5674 case TOK_LE: l1 = l1 <= l2; break;
5675 case TOK_GT: l1 = l1 > l2; break;
5676 /* logical */
5677 case TOK_LAND: l1 = l1 && l2; break;
5678 case TOK_LOR: l1 = l1 || l2; break;
5679 default:
5680 goto general_case;
5682 v1->c.ll = l1;
5683 vtop--;
5684 } else {
5685 /* if commutative ops, put c2 as constant */
5686 if (c1 && (op == '+' || op == '&' || op == '^' ||
5687 op == '|' || op == '*')) {
5688 vswap();
5689 c2 = c1; //c = c1, c1 = c2, c2 = c;
5690 l2 = l1; //l = l1, l1 = l2, l2 = l;
5692 /* Filter out NOP operations like x*1, x-0, x&-1... */
5693 if (c2 && (((op == '*' || op == '/' || op == TOK_UDIV ||
5694 op == TOK_PDIV) &&
5695 l2 == 1) ||
5696 ((op == '+' || op == '-' || op == '|' || op == '^' ||
5697 op == TOK_SHL || op == TOK_SHR || op == TOK_SAR) &&
5698 l2 == 0) ||
5699 (op == '&' &&
5700 l2 == -1))) {
5701 /* nothing to do */
5702 vtop--;
5703 } else if (c2 && (op == '*' || op == TOK_PDIV || op == TOK_UDIV)) {
5704 /* try to use shifts instead of muls or divs */
5705 if (l2 > 0 && (l2 & (l2 - 1)) == 0) {
5706 n = -1;
5707 while (l2) {
5708 l2 >>= 1;
5709 n++;
5711 vtop->c.ll = n;
5712 if (op == '*')
5713 op = TOK_SHL;
5714 else if (op == TOK_PDIV)
5715 op = TOK_SAR;
5716 else
5717 op = TOK_SHR;
5719 goto general_case;
5720 } else if (c2 && (op == '+' || op == '-') &&
5721 ((vtop[-1].r & (VT_VALMASK | VT_LVAL | VT_SYM)) ==
5722 (VT_CONST | VT_SYM) ||
5723 (vtop[-1].r & (VT_VALMASK | VT_LVAL)) == VT_LOCAL)) {
5724 /* symbol + constant case */
5725 if (op == '-')
5726 l2 = -l2;
5727 vtop--;
5728 vtop->c.ll += l2;
5729 } else {
5730 general_case:
5731 if (!nocode_wanted) {
5732 /* call low level op generator */
5733 if (t1 == VT_LLONG || t2 == VT_LLONG)
5734 gen_opl(op);
5735 else
5736 gen_opi(op);
5737 } else {
5738 vtop--;
5744 /* generate a floating point operation with constant propagation */
5745 void gen_opif(int op)
5747 int c1, c2;
5748 SValue *v1, *v2;
5749 long double f1, f2;
5751 v1 = vtop - 1;
5752 v2 = vtop;
5753 /* currently, we cannot do computations with forward symbols */
5754 c1 = (v1->r & (VT_VALMASK | VT_LVAL | VT_SYM)) == VT_CONST;
5755 c2 = (v2->r & (VT_VALMASK | VT_LVAL | VT_SYM)) == VT_CONST;
5756 if (c1 && c2) {
5757 if (v1->type.t == VT_FLOAT) {
5758 f1 = v1->c.f;
5759 f2 = v2->c.f;
5760 } else if (v1->type.t == VT_DOUBLE) {
5761 f1 = v1->c.d;
5762 f2 = v2->c.d;
5763 } else {
5764 f1 = v1->c.ld;
5765 f2 = v2->c.ld;
5768 /* NOTE: we only do constant propagation if finite number (not
5769 NaN or infinity) (ANSI spec) */
5770 if (!ieee_finite(f1) || !ieee_finite(f2))
5771 goto general_case;
5773 switch(op) {
5774 case '+': f1 += f2; break;
5775 case '-': f1 -= f2; break;
5776 case '*': f1 *= f2; break;
5777 case '/':
5778 if (f2 == 0.0) {
5779 if (const_wanted)
5780 error("division by zero in constant");
5781 goto general_case;
5783 f1 /= f2;
5784 break;
5785 /* XXX: also handles tests ? */
5786 default:
5787 goto general_case;
5789 /* XXX: overflow test ? */
5790 if (v1->type.t == VT_FLOAT) {
5791 v1->c.f = f1;
5792 } else if (v1->type.t == VT_DOUBLE) {
5793 v1->c.d = f1;
5794 } else {
5795 v1->c.ld = f1;
5797 vtop--;
5798 } else {
5799 general_case:
5800 if (!nocode_wanted) {
5801 gen_opf(op);
5802 } else {
5803 vtop--;
5808 static int pointed_size(CType *type)
5810 int align;
5811 return type_size(pointed_type(type), &align);
5814 static inline int is_null_pointer(SValue *p)
5816 if ((p->r & (VT_VALMASK | VT_LVAL | VT_SYM)) != VT_CONST)
5817 return 0;
5818 return ((p->type.t & VT_BTYPE) == VT_INT && p->c.i == 0) ||
5819 ((p->type.t & VT_BTYPE) == VT_LLONG && p->c.ll == 0);
5822 static inline int is_integer_btype(int bt)
5824 return (bt == VT_BYTE || bt == VT_SHORT ||
5825 bt == VT_INT || bt == VT_LLONG);
5828 /* check types for comparison or substraction of pointers */
5829 static void check_comparison_pointer_types(SValue *p1, SValue *p2, int op)
5831 CType *type1, *type2, tmp_type1, tmp_type2;
5832 int bt1, bt2;
5834 /* null pointers are accepted for all comparisons as gcc */
5835 if (is_null_pointer(p1) || is_null_pointer(p2))
5836 return;
5837 type1 = &p1->type;
5838 type2 = &p2->type;
5839 bt1 = type1->t & VT_BTYPE;
5840 bt2 = type2->t & VT_BTYPE;
5841 /* accept comparison between pointer and integer with a warning */
5842 if ((is_integer_btype(bt1) || is_integer_btype(bt2)) && op != '-') {
5843 if (op != TOK_LOR && op != TOK_LAND )
5844 warning("comparison between pointer and integer");
5845 return;
5848 /* both must be pointers or implicit function pointers */
5849 if (bt1 == VT_PTR) {
5850 type1 = pointed_type(type1);
5851 } else if (bt1 != VT_FUNC)
5852 goto invalid_operands;
5854 if (bt2 == VT_PTR) {
5855 type2 = pointed_type(type2);
5856 } else if (bt2 != VT_FUNC) {
5857 invalid_operands:
5858 error("invalid operands to binary %s", get_tok_str(op, NULL));
5860 if ((type1->t & VT_BTYPE) == VT_VOID ||
5861 (type2->t & VT_BTYPE) == VT_VOID)
5862 return;
5863 tmp_type1 = *type1;
5864 tmp_type2 = *type2;
5865 tmp_type1.t &= ~(VT_UNSIGNED | VT_CONSTANT | VT_VOLATILE);
5866 tmp_type2.t &= ~(VT_UNSIGNED | VT_CONSTANT | VT_VOLATILE);
5867 if (!is_compatible_types(&tmp_type1, &tmp_type2)) {
5868 /* gcc-like error if '-' is used */
5869 if (op == '-')
5870 goto invalid_operands;
5871 else
5872 warning("comparison of distinct pointer types lacks a cast");
5876 /* generic gen_op: handles types problems */
5877 void gen_op(int op)
5879 int u, t1, t2, bt1, bt2, t;
5880 CType type1;
5882 t1 = vtop[-1].type.t;
5883 t2 = vtop[0].type.t;
5884 bt1 = t1 & VT_BTYPE;
5885 bt2 = t2 & VT_BTYPE;
5887 if (bt1 == VT_PTR || bt2 == VT_PTR) {
5888 /* at least one operand is a pointer */
5889 /* relationnal op: must be both pointers */
5890 if (op >= TOK_ULT && op <= TOK_LOR) {
5891 check_comparison_pointer_types(vtop - 1, vtop, op);
5892 /* pointers are handled are unsigned */
5893 #ifdef TCC_TARGET_X86_64
5894 t = VT_LLONG | VT_UNSIGNED;
5895 #else
5896 t = VT_INT | VT_UNSIGNED;
5897 #endif
5898 goto std_op;
5900 /* if both pointers, then it must be the '-' op */
5901 if (bt1 == VT_PTR && bt2 == VT_PTR) {
5902 if (op != '-')
5903 error("cannot use pointers here");
5904 check_comparison_pointer_types(vtop - 1, vtop, op);
5905 /* XXX: check that types are compatible */
5906 u = pointed_size(&vtop[-1].type);
5907 gen_opic(op);
5908 /* set to integer type */
5909 #ifdef TCC_TARGET_X86_64
5910 vtop->type.t = VT_LLONG;
5911 #else
5912 vtop->type.t = VT_INT;
5913 #endif
5914 vpushi(u);
5915 gen_op(TOK_PDIV);
5916 } else {
5917 /* exactly one pointer : must be '+' or '-'. */
5918 if (op != '-' && op != '+')
5919 error("cannot use pointers here");
5920 /* Put pointer as first operand */
5921 if (bt2 == VT_PTR) {
5922 vswap();
5923 swap(&t1, &t2);
5925 type1 = vtop[-1].type;
5926 #ifdef TCC_TARGET_X86_64
5927 vpushll(pointed_size(&vtop[-1].type));
5928 #else
5929 /* XXX: cast to int ? (long long case) */
5930 vpushi(pointed_size(&vtop[-1].type));
5931 #endif
5932 gen_op('*');
5933 #ifdef CONFIG_TCC_BCHECK
5934 /* if evaluating constant expression, no code should be
5935 generated, so no bound check */
5936 if (do_bounds_check && !const_wanted) {
5937 /* if bounded pointers, we generate a special code to
5938 test bounds */
5939 if (op == '-') {
5940 vpushi(0);
5941 vswap();
5942 gen_op('-');
5944 gen_bounded_ptr_add();
5945 } else
5946 #endif
5948 gen_opic(op);
5950 /* put again type if gen_opic() swaped operands */
5951 vtop->type = type1;
5953 } else if (is_float(bt1) || is_float(bt2)) {
5954 /* compute bigger type and do implicit casts */
5955 if (bt1 == VT_LDOUBLE || bt2 == VT_LDOUBLE) {
5956 t = VT_LDOUBLE;
5957 } else if (bt1 == VT_DOUBLE || bt2 == VT_DOUBLE) {
5958 t = VT_DOUBLE;
5959 } else {
5960 t = VT_FLOAT;
5962 /* floats can only be used for a few operations */
5963 if (op != '+' && op != '-' && op != '*' && op != '/' &&
5964 (op < TOK_ULT || op > TOK_GT))
5965 error("invalid operands for binary operation");
5966 goto std_op;
5967 } else if (bt1 == VT_LLONG || bt2 == VT_LLONG) {
5968 /* cast to biggest op */
5969 t = VT_LLONG;
5970 /* convert to unsigned if it does not fit in a long long */
5971 if ((t1 & (VT_BTYPE | VT_UNSIGNED)) == (VT_LLONG | VT_UNSIGNED) ||
5972 (t2 & (VT_BTYPE | VT_UNSIGNED)) == (VT_LLONG | VT_UNSIGNED))
5973 t |= VT_UNSIGNED;
5974 goto std_op;
5975 } else {
5976 /* integer operations */
5977 t = VT_INT;
5978 /* convert to unsigned if it does not fit in an integer */
5979 if ((t1 & (VT_BTYPE | VT_UNSIGNED)) == (VT_INT | VT_UNSIGNED) ||
5980 (t2 & (VT_BTYPE | VT_UNSIGNED)) == (VT_INT | VT_UNSIGNED))
5981 t |= VT_UNSIGNED;
5982 std_op:
5983 /* XXX: currently, some unsigned operations are explicit, so
5984 we modify them here */
5985 if (t & VT_UNSIGNED) {
5986 if (op == TOK_SAR)
5987 op = TOK_SHR;
5988 else if (op == '/')
5989 op = TOK_UDIV;
5990 else if (op == '%')
5991 op = TOK_UMOD;
5992 else if (op == TOK_LT)
5993 op = TOK_ULT;
5994 else if (op == TOK_GT)
5995 op = TOK_UGT;
5996 else if (op == TOK_LE)
5997 op = TOK_ULE;
5998 else if (op == TOK_GE)
5999 op = TOK_UGE;
6001 vswap();
6002 type1.t = t;
6003 gen_cast(&type1);
6004 vswap();
6005 /* special case for shifts and long long: we keep the shift as
6006 an integer */
6007 if (op == TOK_SHR || op == TOK_SAR || op == TOK_SHL)
6008 type1.t = VT_INT;
6009 gen_cast(&type1);
6010 if (is_float(t))
6011 gen_opif(op);
6012 else
6013 gen_opic(op);
6014 if (op >= TOK_ULT && op <= TOK_GT) {
6015 /* relationnal op: the result is an int */
6016 vtop->type.t = VT_INT;
6017 } else {
6018 vtop->type.t = t;
6023 #ifndef TCC_TARGET_ARM
6024 /* generic itof for unsigned long long case */
6025 void gen_cvt_itof1(int t)
6027 if ((vtop->type.t & (VT_BTYPE | VT_UNSIGNED)) ==
6028 (VT_LLONG | VT_UNSIGNED)) {
6030 if (t == VT_FLOAT)
6031 vpush_global_sym(&func_old_type, TOK___floatundisf);
6032 #if LDOUBLE_SIZE != 8
6033 else if (t == VT_LDOUBLE)
6034 vpush_global_sym(&func_old_type, TOK___floatundixf);
6035 #endif
6036 else
6037 vpush_global_sym(&func_old_type, TOK___floatundidf);
6038 vrott(2);
6039 gfunc_call(1);
6040 vpushi(0);
6041 vtop->r = reg_fret(t);
6042 } else {
6043 gen_cvt_itof(t);
6046 #endif
6048 /* generic ftoi for unsigned long long case */
6049 void gen_cvt_ftoi1(int t)
6051 int st;
6053 if (t == (VT_LLONG | VT_UNSIGNED)) {
6054 /* not handled natively */
6055 st = vtop->type.t & VT_BTYPE;
6056 if (st == VT_FLOAT)
6057 vpush_global_sym(&func_old_type, TOK___fixunssfdi);
6058 #if LDOUBLE_SIZE != 8
6059 else if (st == VT_LDOUBLE)
6060 vpush_global_sym(&func_old_type, TOK___fixunsxfdi);
6061 #endif
6062 else
6063 vpush_global_sym(&func_old_type, TOK___fixunsdfdi);
6064 vrott(2);
6065 gfunc_call(1);
6066 vpushi(0);
6067 vtop->r = REG_IRET;
6068 vtop->r2 = REG_LRET;
6069 } else {
6070 gen_cvt_ftoi(t);
6074 /* force char or short cast */
6075 void force_charshort_cast(int t)
6077 int bits, dbt;
6078 dbt = t & VT_BTYPE;
6079 /* XXX: add optimization if lvalue : just change type and offset */
6080 if (dbt == VT_BYTE)
6081 bits = 8;
6082 else
6083 bits = 16;
6084 if (t & VT_UNSIGNED) {
6085 vpushi((1 << bits) - 1);
6086 gen_op('&');
6087 } else {
6088 bits = 32 - bits;
6089 vpushi(bits);
6090 gen_op(TOK_SHL);
6091 /* result must be signed or the SAR is converted to an SHL
6092 This was not the case when "t" was a signed short
6093 and the last value on the stack was an unsigned int */
6094 vtop->type.t &= ~VT_UNSIGNED;
6095 vpushi(bits);
6096 gen_op(TOK_SAR);
6100 /* cast 'vtop' to 'type'. Casting to bitfields is forbidden. */
6101 static void gen_cast(CType *type)
6103 int sbt, dbt, sf, df, c, p;
6105 /* special delayed cast for char/short */
6106 /* XXX: in some cases (multiple cascaded casts), it may still
6107 be incorrect */
6108 if (vtop->r & VT_MUSTCAST) {
6109 vtop->r &= ~VT_MUSTCAST;
6110 force_charshort_cast(vtop->type.t);
6113 /* bitfields first get cast to ints */
6114 if (vtop->type.t & VT_BITFIELD) {
6115 gv(RC_INT);
6118 dbt = type->t & (VT_BTYPE | VT_UNSIGNED);
6119 sbt = vtop->type.t & (VT_BTYPE | VT_UNSIGNED);
6121 if (sbt != dbt) {
6122 sf = is_float(sbt);
6123 df = is_float(dbt);
6124 c = (vtop->r & (VT_VALMASK | VT_LVAL | VT_SYM)) == VT_CONST;
6125 p = (vtop->r & (VT_VALMASK | VT_LVAL | VT_SYM)) == (VT_CONST | VT_SYM);
6126 if (c) {
6127 /* constant case: we can do it now */
6128 /* XXX: in ISOC, cannot do it if error in convert */
6129 if (sbt == VT_FLOAT)
6130 vtop->c.ld = vtop->c.f;
6131 else if (sbt == VT_DOUBLE)
6132 vtop->c.ld = vtop->c.d;
6134 if (df) {
6135 if ((sbt & VT_BTYPE) == VT_LLONG) {
6136 if (sbt & VT_UNSIGNED)
6137 vtop->c.ld = vtop->c.ull;
6138 else
6139 vtop->c.ld = vtop->c.ll;
6140 } else if(!sf) {
6141 if (sbt & VT_UNSIGNED)
6142 vtop->c.ld = vtop->c.ui;
6143 else
6144 vtop->c.ld = vtop->c.i;
6147 if (dbt == VT_FLOAT)
6148 vtop->c.f = (float)vtop->c.ld;
6149 else if (dbt == VT_DOUBLE)
6150 vtop->c.d = (double)vtop->c.ld;
6151 } else if (sf && dbt == (VT_LLONG|VT_UNSIGNED)) {
6152 vtop->c.ull = (unsigned long long)vtop->c.ld;
6153 } else if (sf && dbt == VT_BOOL) {
6154 vtop->c.i = (vtop->c.ld != 0);
6155 } else {
6156 if(sf)
6157 vtop->c.ll = (long long)vtop->c.ld;
6158 else if (sbt == (VT_LLONG|VT_UNSIGNED))
6159 vtop->c.ll = vtop->c.ull;
6160 else if (sbt & VT_UNSIGNED)
6161 vtop->c.ll = vtop->c.ui;
6162 else if (sbt != VT_LLONG)
6163 vtop->c.ll = vtop->c.i;
6165 if (dbt == (VT_LLONG|VT_UNSIGNED))
6166 vtop->c.ull = vtop->c.ll;
6167 else if (dbt == VT_BOOL)
6168 vtop->c.i = (vtop->c.ll != 0);
6169 else if (dbt != VT_LLONG) {
6170 int s = 0;
6171 if ((dbt & VT_BTYPE) == VT_BYTE)
6172 s = 24;
6173 else if ((dbt & VT_BTYPE) == VT_SHORT)
6174 s = 16;
6176 if(dbt & VT_UNSIGNED)
6177 vtop->c.ui = ((unsigned int)vtop->c.ll << s) >> s;
6178 else
6179 vtop->c.i = ((int)vtop->c.ll << s) >> s;
6182 } else if (p && dbt == VT_BOOL) {
6183 vtop->r = VT_CONST;
6184 vtop->c.i = 1;
6185 } else if (!nocode_wanted) {
6186 /* non constant case: generate code */
6187 if (sf && df) {
6188 /* convert from fp to fp */
6189 gen_cvt_ftof(dbt);
6190 } else if (df) {
6191 /* convert int to fp */
6192 gen_cvt_itof1(dbt);
6193 } else if (sf) {
6194 /* convert fp to int */
6195 if (dbt == VT_BOOL) {
6196 vpushi(0);
6197 gen_op(TOK_NE);
6198 } else {
6199 /* we handle char/short/etc... with generic code */
6200 if (dbt != (VT_INT | VT_UNSIGNED) &&
6201 dbt != (VT_LLONG | VT_UNSIGNED) &&
6202 dbt != VT_LLONG)
6203 dbt = VT_INT;
6204 gen_cvt_ftoi1(dbt);
6205 if (dbt == VT_INT && (type->t & (VT_BTYPE | VT_UNSIGNED)) != dbt) {
6206 /* additional cast for char/short... */
6207 vtop->type.t = dbt;
6208 gen_cast(type);
6211 } else if ((dbt & VT_BTYPE) == VT_LLONG) {
6212 if ((sbt & VT_BTYPE) != VT_LLONG) {
6213 /* scalar to long long */
6214 #ifndef TCC_TARGET_X86_64
6215 /* machine independent conversion */
6216 gv(RC_INT);
6217 /* generate high word */
6218 if (sbt == (VT_INT | VT_UNSIGNED)) {
6219 vpushi(0);
6220 gv(RC_INT);
6221 } else {
6222 if (sbt == VT_PTR) {
6223 /* cast from pointer to int before we apply
6224 shift operation, which pointers don't support*/
6225 gen_cast(&int_type);
6227 gv_dup();
6228 vpushi(31);
6229 gen_op(TOK_SAR);
6231 /* patch second register */
6232 vtop[-1].r2 = vtop->r;
6233 vpop();
6234 #else
6235 int r = gv(RC_INT);
6236 if (sbt != (VT_INT | VT_UNSIGNED) && sbt != VT_PTR) {
6237 /* x86_64 specific: movslq */
6238 o(0x6348);
6239 o(0xc0 + (REG_VALUE(r) << 3) + REG_VALUE(r));
6241 #endif
6243 } else if (dbt == VT_BOOL) {
6244 /* scalar to bool */
6245 vpushi(0);
6246 gen_op(TOK_NE);
6247 } else if ((dbt & VT_BTYPE) == VT_BYTE ||
6248 (dbt & VT_BTYPE) == VT_SHORT) {
6249 if (sbt == VT_PTR) {
6250 vtop->type.t = VT_INT;
6251 warning("nonportable conversion from pointer to char/short");
6253 force_charshort_cast(dbt);
6254 } else if ((dbt & VT_BTYPE) == VT_INT) {
6255 /* scalar to int */
6256 if (sbt == VT_LLONG) {
6257 /* from long long: just take low order word */
6258 lexpand();
6259 vpop();
6261 /* if lvalue and single word type, nothing to do because
6262 the lvalue already contains the real type size (see
6263 VT_LVAL_xxx constants) */
6266 } else if ((dbt & VT_BTYPE) == VT_PTR && !(vtop->r & VT_LVAL)) {
6267 /* if we are casting between pointer types,
6268 we must update the VT_LVAL_xxx size */
6269 vtop->r = (vtop->r & ~VT_LVAL_TYPE)
6270 | (lvalue_type(type->ref->type.t) & VT_LVAL_TYPE);
6272 vtop->type = *type;
6275 /* return type size. Put alignment at 'a' */
6276 static int type_size(CType *type, int *a)
6278 Sym *s;
6279 int bt;
6281 bt = type->t & VT_BTYPE;
6282 if (bt == VT_STRUCT) {
6283 /* struct/union */
6284 s = type->ref;
6285 *a = s->r;
6286 return s->c;
6287 } else if (bt == VT_PTR) {
6288 if (type->t & VT_ARRAY) {
6289 int ts;
6291 s = type->ref;
6292 ts = type_size(&s->type, a);
6294 if (ts < 0 && s->c < 0)
6295 ts = -ts;
6297 return ts * s->c;
6298 } else {
6299 *a = PTR_SIZE;
6300 return PTR_SIZE;
6302 } else if (bt == VT_LDOUBLE) {
6303 *a = LDOUBLE_ALIGN;
6304 return LDOUBLE_SIZE;
6305 } else if (bt == VT_DOUBLE || bt == VT_LLONG) {
6306 #ifdef TCC_TARGET_I386
6307 #ifdef TCC_TARGET_PE
6308 *a = 8;
6309 #else
6310 *a = 4;
6311 #endif
6312 #elif defined(TCC_TARGET_ARM)
6313 #ifdef TCC_ARM_EABI
6314 *a = 8;
6315 #else
6316 *a = 4;
6317 #endif
6318 #else
6319 *a = 8;
6320 #endif
6321 return 8;
6322 } else if (bt == VT_INT || bt == VT_ENUM || bt == VT_FLOAT) {
6323 *a = 4;
6324 return 4;
6325 } else if (bt == VT_SHORT) {
6326 *a = 2;
6327 return 2;
6328 } else {
6329 /* char, void, function, _Bool */
6330 *a = 1;
6331 return 1;
6335 /* return the pointed type of t */
6336 static inline CType *pointed_type(CType *type)
6338 return &type->ref->type;
6341 /* modify type so that its it is a pointer to type. */
6342 static void mk_pointer(CType *type)
6344 Sym *s;
6345 s = sym_push(SYM_FIELD, type, 0, -1);
6346 type->t = VT_PTR | (type->t & ~VT_TYPE);
6347 type->ref = s;
6350 /* compare function types. OLD functions match any new functions */
6351 static int is_compatible_func(CType *type1, CType *type2)
6353 Sym *s1, *s2;
6355 s1 = type1->ref;
6356 s2 = type2->ref;
6357 if (!is_compatible_types(&s1->type, &s2->type))
6358 return 0;
6359 /* check func_call */
6360 if (FUNC_CALL(s1->r) != FUNC_CALL(s2->r))
6361 return 0;
6362 /* XXX: not complete */
6363 if (s1->c == FUNC_OLD || s2->c == FUNC_OLD)
6364 return 1;
6365 if (s1->c != s2->c)
6366 return 0;
6367 while (s1 != NULL) {
6368 if (s2 == NULL)
6369 return 0;
6370 if (!is_compatible_parameter_types(&s1->type, &s2->type))
6371 return 0;
6372 s1 = s1->next;
6373 s2 = s2->next;
6375 if (s2)
6376 return 0;
6377 return 1;
6380 /* return true if type1 and type2 are the same. If unqualified is
6381 true, qualifiers on the types are ignored.
6383 - enums are not checked as gcc __builtin_types_compatible_p ()
6385 static int compare_types(CType *type1, CType *type2, int unqualified)
6387 int bt1, t1, t2;
6389 t1 = type1->t & VT_TYPE;
6390 t2 = type2->t & VT_TYPE;
6391 if (unqualified) {
6392 /* strip qualifiers before comparing */
6393 t1 &= ~(VT_CONSTANT | VT_VOLATILE);
6394 t2 &= ~(VT_CONSTANT | VT_VOLATILE);
6396 /* XXX: bitfields ? */
6397 if (t1 != t2)
6398 return 0;
6399 /* test more complicated cases */
6400 bt1 = t1 & VT_BTYPE;
6401 if (bt1 == VT_PTR) {
6402 type1 = pointed_type(type1);
6403 type2 = pointed_type(type2);
6404 return is_compatible_types(type1, type2);
6405 } else if (bt1 == VT_STRUCT) {
6406 return (type1->ref == type2->ref);
6407 } else if (bt1 == VT_FUNC) {
6408 return is_compatible_func(type1, type2);
6409 } else {
6410 return 1;
6414 /* return true if type1 and type2 are exactly the same (including
6415 qualifiers).
6417 static int is_compatible_types(CType *type1, CType *type2)
6419 return compare_types(type1,type2,0);
6422 /* return true if type1 and type2 are the same (ignoring qualifiers).
6424 static int is_compatible_parameter_types(CType *type1, CType *type2)
6426 return compare_types(type1,type2,1);
6429 /* print a type. If 'varstr' is not NULL, then the variable is also
6430 printed in the type */
6431 /* XXX: union */
6432 /* XXX: add array and function pointers */
6433 void type_to_str(char *buf, int buf_size,
6434 CType *type, const char *varstr)
6436 int bt, v, t;
6437 Sym *s, *sa;
6438 char buf1[256];
6439 const char *tstr;
6441 t = type->t & VT_TYPE;
6442 bt = t & VT_BTYPE;
6443 buf[0] = '\0';
6444 if (t & VT_CONSTANT)
6445 pstrcat(buf, buf_size, "const ");
6446 if (t & VT_VOLATILE)
6447 pstrcat(buf, buf_size, "volatile ");
6448 if (t & VT_UNSIGNED)
6449 pstrcat(buf, buf_size, "unsigned ");
6450 switch(bt) {
6451 case VT_VOID:
6452 tstr = "void";
6453 goto add_tstr;
6454 case VT_BOOL:
6455 tstr = "_Bool";
6456 goto add_tstr;
6457 case VT_BYTE:
6458 tstr = "char";
6459 goto add_tstr;
6460 case VT_SHORT:
6461 tstr = "short";
6462 goto add_tstr;
6463 case VT_INT:
6464 tstr = "int";
6465 goto add_tstr;
6466 case VT_LONG:
6467 tstr = "long";
6468 goto add_tstr;
6469 case VT_LLONG:
6470 tstr = "long long";
6471 goto add_tstr;
6472 case VT_FLOAT:
6473 tstr = "float";
6474 goto add_tstr;
6475 case VT_DOUBLE:
6476 tstr = "double";
6477 goto add_tstr;
6478 case VT_LDOUBLE:
6479 tstr = "long double";
6480 add_tstr:
6481 pstrcat(buf, buf_size, tstr);
6482 break;
6483 case VT_ENUM:
6484 case VT_STRUCT:
6485 if (bt == VT_STRUCT)
6486 tstr = "struct ";
6487 else
6488 tstr = "enum ";
6489 pstrcat(buf, buf_size, tstr);
6490 v = type->ref->v & ~SYM_STRUCT;
6491 if (v >= SYM_FIRST_ANOM)
6492 pstrcat(buf, buf_size, "<anonymous>");
6493 else
6494 pstrcat(buf, buf_size, get_tok_str(v, NULL));
6495 break;
6496 case VT_FUNC:
6497 s = type->ref;
6498 type_to_str(buf, buf_size, &s->type, varstr);
6499 pstrcat(buf, buf_size, "(");
6500 sa = s->next;
6501 while (sa != NULL) {
6502 type_to_str(buf1, sizeof(buf1), &sa->type, NULL);
6503 pstrcat(buf, buf_size, buf1);
6504 sa = sa->next;
6505 if (sa)
6506 pstrcat(buf, buf_size, ", ");
6508 pstrcat(buf, buf_size, ")");
6509 goto no_var;
6510 case VT_PTR:
6511 s = type->ref;
6512 pstrcpy(buf1, sizeof(buf1), "*");
6513 if (varstr)
6514 pstrcat(buf1, sizeof(buf1), varstr);
6515 type_to_str(buf, buf_size, &s->type, buf1);
6516 goto no_var;
6518 if (varstr) {
6519 pstrcat(buf, buf_size, " ");
6520 pstrcat(buf, buf_size, varstr);
6522 no_var: ;
6525 /* verify type compatibility to store vtop in 'dt' type, and generate
6526 casts if needed. */
6527 static void gen_assign_cast(CType *dt)
6529 CType *st, *type1, *type2, tmp_type1, tmp_type2;
6530 char buf1[256], buf2[256];
6531 int dbt, sbt;
6533 st = &vtop->type; /* source type */
6534 dbt = dt->t & VT_BTYPE;
6535 sbt = st->t & VT_BTYPE;
6536 if (dt->t & VT_CONSTANT)
6537 warning("assignment of read-only location");
6538 switch(dbt) {
6539 case VT_PTR:
6540 /* special cases for pointers */
6541 /* '0' can also be a pointer */
6542 if (is_null_pointer(vtop))
6543 goto type_ok;
6544 /* accept implicit pointer to integer cast with warning */
6545 if (is_integer_btype(sbt)) {
6546 warning("assignment makes pointer from integer without a cast");
6547 goto type_ok;
6549 type1 = pointed_type(dt);
6550 /* a function is implicitely a function pointer */
6551 if (sbt == VT_FUNC) {
6552 if ((type1->t & VT_BTYPE) != VT_VOID &&
6553 !is_compatible_types(pointed_type(dt), st))
6554 goto error;
6555 else
6556 goto type_ok;
6558 if (sbt != VT_PTR)
6559 goto error;
6560 type2 = pointed_type(st);
6561 if ((type1->t & VT_BTYPE) == VT_VOID ||
6562 (type2->t & VT_BTYPE) == VT_VOID) {
6563 /* void * can match anything */
6564 } else {
6565 /* exact type match, except for unsigned */
6566 tmp_type1 = *type1;
6567 tmp_type2 = *type2;
6568 tmp_type1.t &= ~(VT_UNSIGNED | VT_CONSTANT | VT_VOLATILE);
6569 tmp_type2.t &= ~(VT_UNSIGNED | VT_CONSTANT | VT_VOLATILE);
6570 if (!is_compatible_types(&tmp_type1, &tmp_type2))
6571 warning("assignment from incompatible pointer type");
6573 /* check const and volatile */
6574 if ((!(type1->t & VT_CONSTANT) && (type2->t & VT_CONSTANT)) ||
6575 (!(type1->t & VT_VOLATILE) && (type2->t & VT_VOLATILE)))
6576 warning("assignment discards qualifiers from pointer target type");
6577 break;
6578 case VT_BYTE:
6579 case VT_SHORT:
6580 case VT_INT:
6581 case VT_LLONG:
6582 if (sbt == VT_PTR || sbt == VT_FUNC) {
6583 warning("assignment makes integer from pointer without a cast");
6585 /* XXX: more tests */
6586 break;
6587 case VT_STRUCT:
6588 tmp_type1 = *dt;
6589 tmp_type2 = *st;
6590 tmp_type1.t &= ~(VT_CONSTANT | VT_VOLATILE);
6591 tmp_type2.t &= ~(VT_CONSTANT | VT_VOLATILE);
6592 if (!is_compatible_types(&tmp_type1, &tmp_type2)) {
6593 error:
6594 type_to_str(buf1, sizeof(buf1), st, NULL);
6595 type_to_str(buf2, sizeof(buf2), dt, NULL);
6596 error("cannot cast '%s' to '%s'", buf1, buf2);
6598 break;
6600 type_ok:
6601 gen_cast(dt);
6604 /* store vtop in lvalue pushed on stack */
6605 void vstore(void)
6607 int sbt, dbt, ft, r, t, size, align, bit_size, bit_pos, rc, delayed_cast;
6609 ft = vtop[-1].type.t;
6610 sbt = vtop->type.t & VT_BTYPE;
6611 dbt = ft & VT_BTYPE;
6612 if (((sbt == VT_INT || sbt == VT_SHORT) && dbt == VT_BYTE) ||
6613 (sbt == VT_INT && dbt == VT_SHORT)) {
6614 /* optimize char/short casts */
6615 delayed_cast = VT_MUSTCAST;
6616 vtop->type.t = ft & (VT_TYPE & ~(VT_BITFIELD | (-1 << VT_STRUCT_SHIFT)));
6617 /* XXX: factorize */
6618 if (ft & VT_CONSTANT)
6619 warning("assignment of read-only location");
6620 } else {
6621 delayed_cast = 0;
6622 if (!(ft & VT_BITFIELD))
6623 gen_assign_cast(&vtop[-1].type);
6626 if (sbt == VT_STRUCT) {
6627 /* if structure, only generate pointer */
6628 /* structure assignment : generate memcpy */
6629 /* XXX: optimize if small size */
6630 if (!nocode_wanted) {
6631 size = type_size(&vtop->type, &align);
6633 #ifdef TCC_ARM_EABI
6634 if(!(align & 7))
6635 vpush_global_sym(&func_old_type, TOK_memcpy8);
6636 else if(!(align & 3))
6637 vpush_global_sym(&func_old_type, TOK_memcpy4);
6638 else
6639 #endif
6640 vpush_global_sym(&func_old_type, TOK_memcpy);
6642 /* destination */
6643 vpushv(vtop - 2);
6644 vtop->type.t = VT_PTR;
6645 gaddrof();
6646 /* source */
6647 vpushv(vtop - 2);
6648 vtop->type.t = VT_PTR;
6649 gaddrof();
6650 /* type size */
6651 vpushi(size);
6652 gfunc_call(3);
6654 vswap();
6655 vpop();
6656 } else {
6657 vswap();
6658 vpop();
6660 /* leave source on stack */
6661 } else if (ft & VT_BITFIELD) {
6662 /* bitfield store handling */
6663 bit_pos = (ft >> VT_STRUCT_SHIFT) & 0x3f;
6664 bit_size = (ft >> (VT_STRUCT_SHIFT + 6)) & 0x3f;
6665 /* remove bit field info to avoid loops */
6666 vtop[-1].type.t = ft & ~(VT_BITFIELD | (-1 << VT_STRUCT_SHIFT));
6668 /* duplicate source into other register */
6669 gv_dup();
6670 vswap();
6671 vrott(3);
6673 if((ft & VT_BTYPE) == VT_BOOL) {
6674 gen_cast(&vtop[-1].type);
6675 vtop[-1].type.t = (vtop[-1].type.t & ~VT_BTYPE) | (VT_BYTE | VT_UNSIGNED);
6678 /* duplicate destination */
6679 vdup();
6680 vtop[-1] = vtop[-2];
6682 /* mask and shift source */
6683 if((ft & VT_BTYPE) != VT_BOOL) {
6684 if((ft & VT_BTYPE) == VT_LLONG) {
6685 vpushll((1ULL << bit_size) - 1ULL);
6686 } else {
6687 vpushi((1 << bit_size) - 1);
6689 gen_op('&');
6691 vpushi(bit_pos);
6692 gen_op(TOK_SHL);
6693 /* load destination, mask and or with source */
6694 vswap();
6695 if((ft & VT_BTYPE) == VT_LLONG) {
6696 vpushll(~(((1ULL << bit_size) - 1ULL) << bit_pos));
6697 } else {
6698 vpushi(~(((1 << bit_size) - 1) << bit_pos));
6700 gen_op('&');
6701 gen_op('|');
6702 /* store result */
6703 vstore();
6705 /* pop off shifted source from "duplicate source..." above */
6706 vpop();
6708 } else {
6709 #ifdef CONFIG_TCC_BCHECK
6710 /* bound check case */
6711 if (vtop[-1].r & VT_MUSTBOUND) {
6712 vswap();
6713 gbound();
6714 vswap();
6716 #endif
6717 if (!nocode_wanted) {
6718 rc = RC_INT;
6719 if (is_float(ft)) {
6720 rc = RC_FLOAT;
6721 #ifdef TCC_TARGET_X86_64
6722 if ((ft & VT_BTYPE) == VT_LDOUBLE) {
6723 rc = RC_ST0;
6725 #endif
6727 r = gv(rc); /* generate value */
6728 /* if lvalue was saved on stack, must read it */
6729 if ((vtop[-1].r & VT_VALMASK) == VT_LLOCAL) {
6730 SValue sv;
6731 t = get_reg(RC_INT);
6732 #ifdef TCC_TARGET_X86_64
6733 sv.type.t = VT_PTR;
6734 #else
6735 sv.type.t = VT_INT;
6736 #endif
6737 sv.r = VT_LOCAL | VT_LVAL;
6738 sv.c.ul = vtop[-1].c.ul;
6739 load(t, &sv);
6740 vtop[-1].r = t | VT_LVAL;
6742 store(r, vtop - 1);
6743 #ifndef TCC_TARGET_X86_64
6744 /* two word case handling : store second register at word + 4 */
6745 if ((ft & VT_BTYPE) == VT_LLONG) {
6746 vswap();
6747 /* convert to int to increment easily */
6748 vtop->type.t = VT_INT;
6749 gaddrof();
6750 vpushi(4);
6751 gen_op('+');
6752 vtop->r |= VT_LVAL;
6753 vswap();
6754 /* XXX: it works because r2 is spilled last ! */
6755 store(vtop->r2, vtop - 1);
6757 #endif
6759 vswap();
6760 vtop--; /* NOT vpop() because on x86 it would flush the fp stack */
6761 vtop->r |= delayed_cast;
6765 /* post defines POST/PRE add. c is the token ++ or -- */
6766 void inc(int post, int c)
6768 test_lvalue();
6769 vdup(); /* save lvalue */
6770 if (post) {
6771 gv_dup(); /* duplicate value */
6772 vrotb(3);
6773 vrotb(3);
6775 /* add constant */
6776 vpushi(c - TOK_MID);
6777 gen_op('+');
6778 vstore(); /* store value */
6779 if (post)
6780 vpop(); /* if post op, return saved value */
6783 /* Parse GNUC __attribute__ extension. Currently, the following
6784 extensions are recognized:
6785 - aligned(n) : set data/function alignment.
6786 - packed : force data alignment to 1
6787 - section(x) : generate data/code in this section.
6788 - unused : currently ignored, but may be used someday.
6789 - regparm(n) : pass function parameters in registers (i386 only)
6791 static void parse_attribute(AttributeDef *ad)
6793 int t, n;
6795 while (tok == TOK_ATTRIBUTE1 || tok == TOK_ATTRIBUTE2) {
6796 next();
6797 skip('(');
6798 skip('(');
6799 while (tok != ')') {
6800 if (tok < TOK_IDENT)
6801 expect("attribute name");
6802 t = tok;
6803 next();
6804 switch(t) {
6805 case TOK_SECTION1:
6806 case TOK_SECTION2:
6807 skip('(');
6808 if (tok != TOK_STR)
6809 expect("section name");
6810 ad->section = find_section(tcc_state, (char *)tokc.cstr->data);
6811 next();
6812 skip(')');
6813 break;
6814 case TOK_ALIGNED1:
6815 case TOK_ALIGNED2:
6816 if (tok == '(') {
6817 next();
6818 n = expr_const();
6819 if (n <= 0 || (n & (n - 1)) != 0)
6820 error("alignment must be a positive power of two");
6821 skip(')');
6822 } else {
6823 n = MAX_ALIGN;
6825 ad->aligned = n;
6826 break;
6827 case TOK_PACKED1:
6828 case TOK_PACKED2:
6829 ad->packed = 1;
6830 break;
6831 case TOK_UNUSED1:
6832 case TOK_UNUSED2:
6833 /* currently, no need to handle it because tcc does not
6834 track unused objects */
6835 break;
6836 case TOK_NORETURN1:
6837 case TOK_NORETURN2:
6838 /* currently, no need to handle it because tcc does not
6839 track unused objects */
6840 break;
6841 case TOK_CDECL1:
6842 case TOK_CDECL2:
6843 case TOK_CDECL3:
6844 FUNC_CALL(ad->func_attr) = FUNC_CDECL;
6845 break;
6846 case TOK_STDCALL1:
6847 case TOK_STDCALL2:
6848 case TOK_STDCALL3:
6849 FUNC_CALL(ad->func_attr) = FUNC_STDCALL;
6850 break;
6851 #ifdef TCC_TARGET_I386
6852 case TOK_REGPARM1:
6853 case TOK_REGPARM2:
6854 skip('(');
6855 n = expr_const();
6856 if (n > 3)
6857 n = 3;
6858 else if (n < 0)
6859 n = 0;
6860 if (n > 0)
6861 FUNC_CALL(ad->func_attr) = FUNC_FASTCALL1 + n - 1;
6862 skip(')');
6863 break;
6864 case TOK_FASTCALL1:
6865 case TOK_FASTCALL2:
6866 case TOK_FASTCALL3:
6867 FUNC_CALL(ad->func_attr) = FUNC_FASTCALLW;
6868 break;
6869 #endif
6870 case TOK_DLLEXPORT:
6871 FUNC_EXPORT(ad->func_attr) = 1;
6872 break;
6873 default:
6874 if (tcc_state->warn_unsupported)
6875 warning("'%s' attribute ignored", get_tok_str(t, NULL));
6876 /* skip parameters */
6877 if (tok == '(') {
6878 int parenthesis = 0;
6879 do {
6880 if (tok == '(')
6881 parenthesis++;
6882 else if (tok == ')')
6883 parenthesis--;
6884 next();
6885 } while (parenthesis && tok != -1);
6887 break;
6889 if (tok != ',')
6890 break;
6891 next();
6893 skip(')');
6894 skip(')');
6898 /* enum/struct/union declaration. u is either VT_ENUM or VT_STRUCT */
6899 static void struct_decl(CType *type, int u)
6901 int a, v, size, align, maxalign, c, offset;
6902 int bit_size, bit_pos, bsize, bt, lbit_pos, prevbt;
6903 Sym *s, *ss, *ass, **ps;
6904 AttributeDef ad;
6905 CType type1, btype;
6907 a = tok; /* save decl type */
6908 next();
6909 if (tok != '{') {
6910 v = tok;
6911 next();
6912 /* struct already defined ? return it */
6913 if (v < TOK_IDENT)
6914 expect("struct/union/enum name");
6915 s = struct_find(v);
6916 if (s) {
6917 if (s->type.t != a)
6918 error("invalid type");
6919 goto do_decl;
6921 } else {
6922 v = anon_sym++;
6924 type1.t = a;
6925 /* we put an undefined size for struct/union */
6926 s = sym_push(v | SYM_STRUCT, &type1, 0, -1);
6927 s->r = 0; /* default alignment is zero as gcc */
6928 /* put struct/union/enum name in type */
6929 do_decl:
6930 type->t = u;
6931 type->ref = s;
6933 if (tok == '{') {
6934 next();
6935 if (s->c != -1)
6936 error("struct/union/enum already defined");
6937 /* cannot be empty */
6938 c = 0;
6939 /* non empty enums are not allowed */
6940 if (a == TOK_ENUM) {
6941 for(;;) {
6942 v = tok;
6943 if (v < TOK_UIDENT)
6944 expect("identifier");
6945 next();
6946 if (tok == '=') {
6947 next();
6948 c = expr_const();
6950 /* enum symbols have static storage */
6951 ss = sym_push(v, &int_type, VT_CONST, c);
6952 ss->type.t |= VT_STATIC;
6953 if (tok != ',')
6954 break;
6955 next();
6956 c++;
6957 /* NOTE: we accept a trailing comma */
6958 if (tok == '}')
6959 break;
6961 skip('}');
6962 } else {
6963 maxalign = 1;
6964 ps = &s->next;
6965 prevbt = VT_INT;
6966 bit_pos = 0;
6967 offset = 0;
6968 while (tok != '}') {
6969 parse_btype(&btype, &ad);
6970 while (1) {
6971 bit_size = -1;
6972 v = 0;
6973 type1 = btype;
6974 if (tok != ':') {
6975 type_decl(&type1, &ad, &v, TYPE_DIRECT | TYPE_ABSTRACT);
6976 if (v == 0 && (type1.t & VT_BTYPE) != VT_STRUCT)
6977 expect("identifier");
6978 if ((type1.t & VT_BTYPE) == VT_FUNC ||
6979 (type1.t & (VT_TYPEDEF | VT_STATIC | VT_EXTERN | VT_INLINE)))
6980 error("invalid type for '%s'",
6981 get_tok_str(v, NULL));
6983 if (tok == ':') {
6984 next();
6985 bit_size = expr_const();
6986 /* XXX: handle v = 0 case for messages */
6987 if (bit_size < 0)
6988 error("negative width in bit-field '%s'",
6989 get_tok_str(v, NULL));
6990 if (v && bit_size == 0)
6991 error("zero width for bit-field '%s'",
6992 get_tok_str(v, NULL));
6994 size = type_size(&type1, &align);
6995 if (ad.aligned) {
6996 if (align < ad.aligned)
6997 align = ad.aligned;
6998 } else if (ad.packed) {
6999 align = 1;
7000 } else if (*tcc_state->pack_stack_ptr) {
7001 if (align > *tcc_state->pack_stack_ptr)
7002 align = *tcc_state->pack_stack_ptr;
7004 lbit_pos = 0;
7005 if (bit_size >= 0) {
7006 bt = type1.t & VT_BTYPE;
7007 if (bt != VT_INT &&
7008 bt != VT_BYTE &&
7009 bt != VT_SHORT &&
7010 bt != VT_BOOL &&
7011 bt != VT_ENUM &&
7012 bt != VT_LLONG)
7013 error("bitfields must have scalar type");
7014 bsize = size * 8;
7015 if (bit_size > bsize) {
7016 error("width of '%s' exceeds its type",
7017 get_tok_str(v, NULL));
7018 } else if (bit_size == bsize) {
7019 /* no need for bit fields */
7020 bit_pos = 0;
7021 } else if (bit_size == 0) {
7022 /* XXX: what to do if only padding in a
7023 structure ? */
7024 /* zero size: means to pad */
7025 bit_pos = 0;
7026 } else {
7027 /* we do not have enough room ?
7028 did the type change?
7029 is it a union? */
7030 if ((bit_pos + bit_size) > bsize ||
7031 bt != prevbt || a == TOK_UNION)
7032 bit_pos = 0;
7033 lbit_pos = bit_pos;
7034 /* XXX: handle LSB first */
7035 type1.t |= VT_BITFIELD |
7036 (bit_pos << VT_STRUCT_SHIFT) |
7037 (bit_size << (VT_STRUCT_SHIFT + 6));
7038 bit_pos += bit_size;
7040 prevbt = bt;
7041 } else {
7042 bit_pos = 0;
7044 if (v != 0 || (type1.t & VT_BTYPE) == VT_STRUCT) {
7045 /* add new memory data only if starting
7046 bit field */
7047 if (lbit_pos == 0) {
7048 if (a == TOK_STRUCT) {
7049 c = (c + align - 1) & -align;
7050 offset = c;
7051 if (size > 0)
7052 c += size;
7053 } else {
7054 offset = 0;
7055 if (size > c)
7056 c = size;
7058 if (align > maxalign)
7059 maxalign = align;
7061 #if 0
7062 printf("add field %s offset=%d",
7063 get_tok_str(v, NULL), offset);
7064 if (type1.t & VT_BITFIELD) {
7065 printf(" pos=%d size=%d",
7066 (type1.t >> VT_STRUCT_SHIFT) & 0x3f,
7067 (type1.t >> (VT_STRUCT_SHIFT + 6)) & 0x3f);
7069 printf("\n");
7070 #endif
7072 if (v == 0 && (type1.t & VT_BTYPE) == VT_STRUCT) {
7073 ass = type1.ref;
7074 while ((ass = ass->next) != NULL) {
7075 ss = sym_push(ass->v, &ass->type, 0, offset + ass->c);
7076 *ps = ss;
7077 ps = &ss->next;
7079 } else if (v) {
7080 ss = sym_push(v | SYM_FIELD, &type1, 0, offset);
7081 *ps = ss;
7082 ps = &ss->next;
7084 if (tok == ';' || tok == TOK_EOF)
7085 break;
7086 skip(',');
7088 skip(';');
7090 skip('}');
7091 /* store size and alignment */
7092 s->c = (c + maxalign - 1) & -maxalign;
7093 s->r = maxalign;
7098 /* return 0 if no type declaration. otherwise, return the basic type
7099 and skip it.
7101 static int parse_btype(CType *type, AttributeDef *ad)
7103 int t, u, type_found, typespec_found, typedef_found;
7104 Sym *s;
7105 CType type1;
7107 memset(ad, 0, sizeof(AttributeDef));
7108 type_found = 0;
7109 typespec_found = 0;
7110 typedef_found = 0;
7111 t = 0;
7112 while(1) {
7113 switch(tok) {
7114 case TOK_EXTENSION:
7115 /* currently, we really ignore extension */
7116 next();
7117 continue;
7119 /* basic types */
7120 case TOK_CHAR:
7121 u = VT_BYTE;
7122 basic_type:
7123 next();
7124 basic_type1:
7125 if ((t & VT_BTYPE) != 0)
7126 error("too many basic types");
7127 t |= u;
7128 typespec_found = 1;
7129 break;
7130 case TOK_VOID:
7131 u = VT_VOID;
7132 goto basic_type;
7133 case TOK_SHORT:
7134 u = VT_SHORT;
7135 goto basic_type;
7136 case TOK_INT:
7137 next();
7138 typespec_found = 1;
7139 break;
7140 case TOK_LONG:
7141 next();
7142 if ((t & VT_BTYPE) == VT_DOUBLE) {
7143 t = (t & ~VT_BTYPE) | VT_LDOUBLE;
7144 } else if ((t & VT_BTYPE) == VT_LONG) {
7145 t = (t & ~VT_BTYPE) | VT_LLONG;
7146 } else {
7147 u = VT_LONG;
7148 goto basic_type1;
7150 break;
7151 case TOK_BOOL:
7152 u = VT_BOOL;
7153 goto basic_type;
7154 case TOK_FLOAT:
7155 u = VT_FLOAT;
7156 goto basic_type;
7157 case TOK_DOUBLE:
7158 next();
7159 if ((t & VT_BTYPE) == VT_LONG) {
7160 t = (t & ~VT_BTYPE) | VT_LDOUBLE;
7161 } else {
7162 u = VT_DOUBLE;
7163 goto basic_type1;
7165 break;
7166 case TOK_ENUM:
7167 struct_decl(&type1, VT_ENUM);
7168 basic_type2:
7169 u = type1.t;
7170 type->ref = type1.ref;
7171 goto basic_type1;
7172 case TOK_STRUCT:
7173 case TOK_UNION:
7174 struct_decl(&type1, VT_STRUCT);
7175 goto basic_type2;
7177 /* type modifiers */
7178 case TOK_CONST1:
7179 case TOK_CONST2:
7180 case TOK_CONST3:
7181 t |= VT_CONSTANT;
7182 next();
7183 break;
7184 case TOK_VOLATILE1:
7185 case TOK_VOLATILE2:
7186 case TOK_VOLATILE3:
7187 t |= VT_VOLATILE;
7188 next();
7189 break;
7190 case TOK_SIGNED1:
7191 case TOK_SIGNED2:
7192 case TOK_SIGNED3:
7193 typespec_found = 1;
7194 t |= VT_SIGNED;
7195 next();
7196 break;
7197 case TOK_REGISTER:
7198 case TOK_AUTO:
7199 case TOK_RESTRICT1:
7200 case TOK_RESTRICT2:
7201 case TOK_RESTRICT3:
7202 next();
7203 break;
7204 case TOK_UNSIGNED:
7205 t |= VT_UNSIGNED;
7206 next();
7207 typespec_found = 1;
7208 break;
7210 /* storage */
7211 case TOK_EXTERN:
7212 t |= VT_EXTERN;
7213 next();
7214 break;
7215 case TOK_STATIC:
7216 t |= VT_STATIC;
7217 next();
7218 break;
7219 case TOK_TYPEDEF:
7220 t |= VT_TYPEDEF;
7221 next();
7222 break;
7223 case TOK_INLINE1:
7224 case TOK_INLINE2:
7225 case TOK_INLINE3:
7226 t |= VT_INLINE;
7227 next();
7228 break;
7230 /* GNUC attribute */
7231 case TOK_ATTRIBUTE1:
7232 case TOK_ATTRIBUTE2:
7233 parse_attribute(ad);
7234 break;
7235 /* GNUC typeof */
7236 case TOK_TYPEOF1:
7237 case TOK_TYPEOF2:
7238 case TOK_TYPEOF3:
7239 next();
7240 parse_expr_type(&type1);
7241 goto basic_type2;
7242 default:
7243 if (typespec_found || typedef_found)
7244 goto the_end;
7245 s = sym_find(tok);
7246 if (!s || !(s->type.t & VT_TYPEDEF))
7247 goto the_end;
7248 typedef_found = 1;
7249 t |= (s->type.t & ~VT_TYPEDEF);
7250 type->ref = s->type.ref;
7251 next();
7252 typespec_found = 1;
7253 break;
7255 type_found = 1;
7257 the_end:
7258 if ((t & (VT_SIGNED|VT_UNSIGNED)) == (VT_SIGNED|VT_UNSIGNED))
7259 error("signed and unsigned modifier");
7260 if (tcc_state->char_is_unsigned) {
7261 if ((t & (VT_SIGNED|VT_UNSIGNED|VT_BTYPE)) == VT_BYTE)
7262 t |= VT_UNSIGNED;
7264 t &= ~VT_SIGNED;
7266 /* long is never used as type */
7267 if ((t & VT_BTYPE) == VT_LONG)
7268 #ifndef TCC_TARGET_X86_64
7269 t = (t & ~VT_BTYPE) | VT_INT;
7270 #else
7271 t = (t & ~VT_BTYPE) | VT_LLONG;
7272 #endif
7273 type->t = t;
7274 return type_found;
7277 /* convert a function parameter type (array to pointer and function to
7278 function pointer) */
7279 static inline void convert_parameter_type(CType *pt)
7281 /* remove const and volatile qualifiers (XXX: const could be used
7282 to indicate a const function parameter */
7283 pt->t &= ~(VT_CONSTANT | VT_VOLATILE);
7284 /* array must be transformed to pointer according to ANSI C */
7285 pt->t &= ~VT_ARRAY;
7286 if ((pt->t & VT_BTYPE) == VT_FUNC) {
7287 mk_pointer(pt);
7291 static void post_type(CType *type, AttributeDef *ad)
7293 int n, l, t1, arg_size, align;
7294 Sym **plast, *s, *first;
7295 AttributeDef ad1;
7296 CType pt;
7298 if (tok == '(') {
7299 /* function declaration */
7300 next();
7301 l = 0;
7302 first = NULL;
7303 plast = &first;
7304 arg_size = 0;
7305 if (tok != ')') {
7306 for(;;) {
7307 /* read param name and compute offset */
7308 if (l != FUNC_OLD) {
7309 if (!parse_btype(&pt, &ad1)) {
7310 if (l) {
7311 error("invalid type");
7312 } else {
7313 l = FUNC_OLD;
7314 goto old_proto;
7317 l = FUNC_NEW;
7318 if ((pt.t & VT_BTYPE) == VT_VOID && tok == ')')
7319 break;
7320 type_decl(&pt, &ad1, &n, TYPE_DIRECT | TYPE_ABSTRACT);
7321 if ((pt.t & VT_BTYPE) == VT_VOID)
7322 error("parameter declared as void");
7323 arg_size += (type_size(&pt, &align) + 3) & ~3;
7324 } else {
7325 old_proto:
7326 n = tok;
7327 if (n < TOK_UIDENT)
7328 expect("identifier");
7329 pt.t = VT_INT;
7330 next();
7332 convert_parameter_type(&pt);
7333 s = sym_push(n | SYM_FIELD, &pt, 0, 0);
7334 *plast = s;
7335 plast = &s->next;
7336 if (tok == ')')
7337 break;
7338 skip(',');
7339 if (l == FUNC_NEW && tok == TOK_DOTS) {
7340 l = FUNC_ELLIPSIS;
7341 next();
7342 break;
7346 /* if no parameters, then old type prototype */
7347 if (l == 0)
7348 l = FUNC_OLD;
7349 skip(')');
7350 t1 = type->t & VT_STORAGE;
7351 /* NOTE: const is ignored in returned type as it has a special
7352 meaning in gcc / C++ */
7353 type->t &= ~(VT_STORAGE | VT_CONSTANT);
7354 post_type(type, ad);
7355 /* we push a anonymous symbol which will contain the function prototype */
7356 FUNC_ARGS(ad->func_attr) = arg_size;
7357 s = sym_push(SYM_FIELD, type, ad->func_attr, l);
7358 s->next = first;
7359 type->t = t1 | VT_FUNC;
7360 type->ref = s;
7361 } else if (tok == '[') {
7362 /* array definition */
7363 next();
7364 if (tok == TOK_RESTRICT1)
7365 next();
7366 n = -1;
7367 if (tok != ']') {
7368 n = expr_const();
7369 if (n < 0)
7370 error("invalid array size");
7372 skip(']');
7373 /* parse next post type */
7374 t1 = type->t & VT_STORAGE;
7375 type->t &= ~VT_STORAGE;
7376 post_type(type, ad);
7378 /* we push a anonymous symbol which will contain the array
7379 element type */
7380 s = sym_push(SYM_FIELD, type, 0, n);
7381 type->t = t1 | VT_ARRAY | VT_PTR;
7382 type->ref = s;
7386 /* Parse a type declaration (except basic type), and return the type
7387 in 'type'. 'td' is a bitmask indicating which kind of type decl is
7388 expected. 'type' should contain the basic type. 'ad' is the
7389 attribute definition of the basic type. It can be modified by
7390 type_decl().
7392 static void type_decl(CType *type, AttributeDef *ad, int *v, int td)
7394 Sym *s;
7395 CType type1, *type2;
7396 int qualifiers;
7398 while (tok == '*') {
7399 qualifiers = 0;
7400 redo:
7401 next();
7402 switch(tok) {
7403 case TOK_CONST1:
7404 case TOK_CONST2:
7405 case TOK_CONST3:
7406 qualifiers |= VT_CONSTANT;
7407 goto redo;
7408 case TOK_VOLATILE1:
7409 case TOK_VOLATILE2:
7410 case TOK_VOLATILE3:
7411 qualifiers |= VT_VOLATILE;
7412 goto redo;
7413 case TOK_RESTRICT1:
7414 case TOK_RESTRICT2:
7415 case TOK_RESTRICT3:
7416 goto redo;
7418 mk_pointer(type);
7419 type->t |= qualifiers;
7422 /* XXX: clarify attribute handling */
7423 if (tok == TOK_ATTRIBUTE1 || tok == TOK_ATTRIBUTE2)
7424 parse_attribute(ad);
7426 /* recursive type */
7427 /* XXX: incorrect if abstract type for functions (e.g. 'int ()') */
7428 type1.t = 0; /* XXX: same as int */
7429 if (tok == '(') {
7430 next();
7431 /* XXX: this is not correct to modify 'ad' at this point, but
7432 the syntax is not clear */
7433 if (tok == TOK_ATTRIBUTE1 || tok == TOK_ATTRIBUTE2)
7434 parse_attribute(ad);
7435 type_decl(&type1, ad, v, td);
7436 skip(')');
7437 } else {
7438 /* type identifier */
7439 if (tok >= TOK_IDENT && (td & TYPE_DIRECT)) {
7440 *v = tok;
7441 next();
7442 } else {
7443 if (!(td & TYPE_ABSTRACT))
7444 expect("identifier");
7445 *v = 0;
7448 post_type(type, ad);
7449 if (tok == TOK_ATTRIBUTE1 || tok == TOK_ATTRIBUTE2)
7450 parse_attribute(ad);
7451 if (!type1.t)
7452 return;
7453 /* append type at the end of type1 */
7454 type2 = &type1;
7455 for(;;) {
7456 s = type2->ref;
7457 type2 = &s->type;
7458 if (!type2->t) {
7459 *type2 = *type;
7460 break;
7463 *type = type1;
7466 /* compute the lvalue VT_LVAL_xxx needed to match type t. */
7467 static int lvalue_type(int t)
7469 int bt, r;
7470 r = VT_LVAL;
7471 bt = t & VT_BTYPE;
7472 if (bt == VT_BYTE || bt == VT_BOOL)
7473 r |= VT_LVAL_BYTE;
7474 else if (bt == VT_SHORT)
7475 r |= VT_LVAL_SHORT;
7476 else
7477 return r;
7478 if (t & VT_UNSIGNED)
7479 r |= VT_LVAL_UNSIGNED;
7480 return r;
7483 /* indirection with full error checking and bound check */
7484 static void indir(void)
7486 if ((vtop->type.t & VT_BTYPE) != VT_PTR) {
7487 if ((vtop->type.t & VT_BTYPE) == VT_FUNC)
7488 return;
7489 expect("pointer");
7491 if ((vtop->r & VT_LVAL) && !nocode_wanted)
7492 gv(RC_INT);
7493 vtop->type = *pointed_type(&vtop->type);
7494 /* Arrays and functions are never lvalues */
7495 if (!(vtop->type.t & VT_ARRAY)
7496 && (vtop->type.t & VT_BTYPE) != VT_FUNC) {
7497 vtop->r |= lvalue_type(vtop->type.t);
7498 /* if bound checking, the referenced pointer must be checked */
7499 if (do_bounds_check)
7500 vtop->r |= VT_MUSTBOUND;
7504 /* pass a parameter to a function and do type checking and casting */
7505 static void gfunc_param_typed(Sym *func, Sym *arg)
7507 int func_type;
7508 CType type;
7510 func_type = func->c;
7511 if (func_type == FUNC_OLD ||
7512 (func_type == FUNC_ELLIPSIS && arg == NULL)) {
7513 /* default casting : only need to convert float to double */
7514 if ((vtop->type.t & VT_BTYPE) == VT_FLOAT) {
7515 type.t = VT_DOUBLE;
7516 gen_cast(&type);
7518 } else if (arg == NULL) {
7519 error("too many arguments to function");
7520 } else {
7521 type = arg->type;
7522 type.t &= ~VT_CONSTANT; /* need to do that to avoid false warning */
7523 gen_assign_cast(&type);
7527 /* parse an expression of the form '(type)' or '(expr)' and return its
7528 type */
7529 static void parse_expr_type(CType *type)
7531 int n;
7532 AttributeDef ad;
7534 skip('(');
7535 if (parse_btype(type, &ad)) {
7536 type_decl(type, &ad, &n, TYPE_ABSTRACT);
7537 } else {
7538 expr_type(type);
7540 skip(')');
7543 static void parse_type(CType *type)
7545 AttributeDef ad;
7546 int n;
7548 if (!parse_btype(type, &ad)) {
7549 expect("type");
7551 type_decl(type, &ad, &n, TYPE_ABSTRACT);
7554 static void vpush_tokc(int t)
7556 CType type;
7557 type.t = t;
7558 vsetc(&type, VT_CONST, &tokc);
7561 static void unary(void)
7563 int n, t, align, size, r;
7564 CType type;
7565 Sym *s;
7566 AttributeDef ad;
7568 /* XXX: GCC 2.95.3 does not generate a table although it should be
7569 better here */
7570 tok_next:
7571 switch(tok) {
7572 case TOK_EXTENSION:
7573 next();
7574 goto tok_next;
7575 case TOK_CINT:
7576 case TOK_CCHAR:
7577 case TOK_LCHAR:
7578 vpushi(tokc.i);
7579 next();
7580 break;
7581 case TOK_CUINT:
7582 vpush_tokc(VT_INT | VT_UNSIGNED);
7583 next();
7584 break;
7585 case TOK_CLLONG:
7586 vpush_tokc(VT_LLONG);
7587 next();
7588 break;
7589 case TOK_CULLONG:
7590 vpush_tokc(VT_LLONG | VT_UNSIGNED);
7591 next();
7592 break;
7593 case TOK_CFLOAT:
7594 vpush_tokc(VT_FLOAT);
7595 next();
7596 break;
7597 case TOK_CDOUBLE:
7598 vpush_tokc(VT_DOUBLE);
7599 next();
7600 break;
7601 case TOK_CLDOUBLE:
7602 vpush_tokc(VT_LDOUBLE);
7603 next();
7604 break;
7605 case TOK___FUNCTION__:
7606 if (!gnu_ext)
7607 goto tok_identifier;
7608 /* fall thru */
7609 case TOK___FUNC__:
7611 void *ptr;
7612 int len;
7613 /* special function name identifier */
7614 len = strlen(funcname) + 1;
7615 /* generate char[len] type */
7616 type.t = VT_BYTE;
7617 mk_pointer(&type);
7618 type.t |= VT_ARRAY;
7619 type.ref->c = len;
7620 vpush_ref(&type, data_section, data_section->data_offset, len);
7621 ptr = section_ptr_add(data_section, len);
7622 memcpy(ptr, funcname, len);
7623 next();
7625 break;
7626 case TOK_LSTR:
7627 #ifdef TCC_TARGET_PE
7628 t = VT_SHORT | VT_UNSIGNED;
7629 #else
7630 t = VT_INT;
7631 #endif
7632 goto str_init;
7633 case TOK_STR:
7634 /* string parsing */
7635 t = VT_BYTE;
7636 str_init:
7637 if (tcc_state->warn_write_strings)
7638 t |= VT_CONSTANT;
7639 type.t = t;
7640 mk_pointer(&type);
7641 type.t |= VT_ARRAY;
7642 memset(&ad, 0, sizeof(AttributeDef));
7643 decl_initializer_alloc(&type, &ad, VT_CONST, 2, 0, 0);
7644 break;
7645 case '(':
7646 next();
7647 /* cast ? */
7648 if (parse_btype(&type, &ad)) {
7649 type_decl(&type, &ad, &n, TYPE_ABSTRACT);
7650 skip(')');
7651 /* check ISOC99 compound literal */
7652 if (tok == '{') {
7653 /* data is allocated locally by default */
7654 if (global_expr)
7655 r = VT_CONST;
7656 else
7657 r = VT_LOCAL;
7658 /* all except arrays are lvalues */
7659 if (!(type.t & VT_ARRAY))
7660 r |= lvalue_type(type.t);
7661 memset(&ad, 0, sizeof(AttributeDef));
7662 decl_initializer_alloc(&type, &ad, r, 1, 0, 0);
7663 } else {
7664 unary();
7665 gen_cast(&type);
7667 } else if (tok == '{') {
7668 /* save all registers */
7669 save_regs(0);
7670 /* statement expression : we do not accept break/continue
7671 inside as GCC does */
7672 block(NULL, NULL, NULL, NULL, 0, 1);
7673 skip(')');
7674 } else {
7675 gexpr();
7676 skip(')');
7678 break;
7679 case '*':
7680 next();
7681 unary();
7682 indir();
7683 break;
7684 case '&':
7685 next();
7686 unary();
7687 /* functions names must be treated as function pointers,
7688 except for unary '&' and sizeof. Since we consider that
7689 functions are not lvalues, we only have to handle it
7690 there and in function calls. */
7691 /* arrays can also be used although they are not lvalues */
7692 if ((vtop->type.t & VT_BTYPE) != VT_FUNC &&
7693 !(vtop->type.t & VT_ARRAY) && !(vtop->type.t & VT_LLOCAL))
7694 test_lvalue();
7695 mk_pointer(&vtop->type);
7696 gaddrof();
7697 break;
7698 case '!':
7699 next();
7700 unary();
7701 if ((vtop->r & (VT_VALMASK | VT_LVAL | VT_SYM)) == VT_CONST) {
7702 CType boolean;
7703 boolean.t = VT_BOOL;
7704 gen_cast(&boolean);
7705 vtop->c.i = !vtop->c.i;
7706 } else if ((vtop->r & VT_VALMASK) == VT_CMP)
7707 vtop->c.i = vtop->c.i ^ 1;
7708 else {
7709 save_regs(1);
7710 vseti(VT_JMP, gtst(1, 0));
7712 break;
7713 case '~':
7714 next();
7715 unary();
7716 vpushi(-1);
7717 gen_op('^');
7718 break;
7719 case '+':
7720 next();
7721 /* in order to force cast, we add zero */
7722 unary();
7723 if ((vtop->type.t & VT_BTYPE) == VT_PTR)
7724 error("pointer not accepted for unary plus");
7725 vpushi(0);
7726 gen_op('+');
7727 break;
7728 case TOK_SIZEOF:
7729 case TOK_ALIGNOF1:
7730 case TOK_ALIGNOF2:
7731 t = tok;
7732 next();
7733 if (tok == '(') {
7734 parse_expr_type(&type);
7735 } else {
7736 unary_type(&type);
7738 size = type_size(&type, &align);
7739 if (t == TOK_SIZEOF) {
7740 if (size < 0)
7741 error("sizeof applied to an incomplete type");
7742 vpushi(size);
7743 } else {
7744 vpushi(align);
7746 vtop->type.t |= VT_UNSIGNED;
7747 break;
7749 case TOK_builtin_types_compatible_p:
7751 CType type1, type2;
7752 next();
7753 skip('(');
7754 parse_type(&type1);
7755 skip(',');
7756 parse_type(&type2);
7757 skip(')');
7758 type1.t &= ~(VT_CONSTANT | VT_VOLATILE);
7759 type2.t &= ~(VT_CONSTANT | VT_VOLATILE);
7760 vpushi(is_compatible_types(&type1, &type2));
7762 break;
7763 case TOK_builtin_constant_p:
7765 int saved_nocode_wanted, res;
7766 next();
7767 skip('(');
7768 saved_nocode_wanted = nocode_wanted;
7769 nocode_wanted = 1;
7770 gexpr();
7771 res = (vtop->r & (VT_VALMASK | VT_LVAL | VT_SYM)) == VT_CONST;
7772 vpop();
7773 nocode_wanted = saved_nocode_wanted;
7774 skip(')');
7775 vpushi(res);
7777 break;
7778 case TOK_builtin_frame_address:
7780 CType type;
7781 next();
7782 skip('(');
7783 if (tok != TOK_CINT) {
7784 error("__builtin_frame_address only takes integers");
7786 if (tokc.i != 0) {
7787 error("TCC only supports __builtin_frame_address(0)");
7789 next();
7790 skip(')');
7791 type.t = VT_VOID;
7792 mk_pointer(&type);
7793 vset(&type, VT_LOCAL, 0);
7795 break;
7796 #ifdef TCC_TARGET_X86_64
7797 case TOK_builtin_malloc:
7799 char *p = file->buf_ptr;
7800 file->buf_ptr = "malloc";
7801 next_nomacro1();
7802 file->buf_ptr = p;
7803 goto tok_identifier;
7805 case TOK_builtin_free:
7807 char *p = file->buf_ptr;
7808 file->buf_ptr = "free";
7809 next_nomacro1();
7810 file->buf_ptr = p;
7811 goto tok_identifier;
7813 #endif
7814 case TOK_INC:
7815 case TOK_DEC:
7816 t = tok;
7817 next();
7818 unary();
7819 inc(0, t);
7820 break;
7821 case '-':
7822 next();
7823 vpushi(0);
7824 unary();
7825 gen_op('-');
7826 break;
7827 case TOK_LAND:
7828 if (!gnu_ext)
7829 goto tok_identifier;
7830 next();
7831 /* allow to take the address of a label */
7832 if (tok < TOK_UIDENT)
7833 expect("label identifier");
7834 s = label_find(tok);
7835 if (!s) {
7836 s = label_push(&global_label_stack, tok, LABEL_FORWARD);
7837 } else {
7838 if (s->r == LABEL_DECLARED)
7839 s->r = LABEL_FORWARD;
7841 if (!s->type.t) {
7842 s->type.t = VT_VOID;
7843 mk_pointer(&s->type);
7844 s->type.t |= VT_STATIC;
7846 vset(&s->type, VT_CONST | VT_SYM, 0);
7847 vtop->sym = s;
7848 next();
7849 break;
7850 default:
7851 tok_identifier:
7852 t = tok;
7853 next();
7854 if (t < TOK_UIDENT)
7855 expect("identifier");
7856 s = sym_find(t);
7857 if (!s) {
7858 if (tok != '(')
7859 error("'%s' undeclared", get_tok_str(t, NULL));
7860 /* for simple function calls, we tolerate undeclared
7861 external reference to int() function */
7862 if (tcc_state->warn_implicit_function_declaration)
7863 warning("implicit declaration of function '%s'",
7864 get_tok_str(t, NULL));
7865 s = external_global_sym(t, &func_old_type, 0);
7867 if ((s->type.t & (VT_STATIC | VT_INLINE | VT_BTYPE)) ==
7868 (VT_STATIC | VT_INLINE | VT_FUNC)) {
7869 /* if referencing an inline function, then we generate a
7870 symbol to it if not already done. It will have the
7871 effect to generate code for it at the end of the
7872 compilation unit. Inline function as always
7873 generated in the text section. */
7874 if (!s->c)
7875 put_extern_sym(s, text_section, 0, 0);
7876 r = VT_SYM | VT_CONST;
7877 } else {
7878 r = s->r;
7880 vset(&s->type, r, s->c);
7881 /* if forward reference, we must point to s */
7882 if (vtop->r & VT_SYM) {
7883 vtop->sym = s;
7884 vtop->c.ul = 0;
7886 break;
7889 /* post operations */
7890 while (1) {
7891 if (tok == TOK_INC || tok == TOK_DEC) {
7892 inc(1, tok);
7893 next();
7894 } else if (tok == '.' || tok == TOK_ARROW) {
7895 /* field */
7896 if (tok == TOK_ARROW)
7897 indir();
7898 test_lvalue();
7899 gaddrof();
7900 next();
7901 /* expect pointer on structure */
7902 if ((vtop->type.t & VT_BTYPE) != VT_STRUCT)
7903 expect("struct or union");
7904 s = vtop->type.ref;
7905 /* find field */
7906 tok |= SYM_FIELD;
7907 while ((s = s->next) != NULL) {
7908 if (s->v == tok)
7909 break;
7911 if (!s)
7912 error("field not found: %s", get_tok_str(tok & ~SYM_FIELD, NULL));
7913 /* add field offset to pointer */
7914 vtop->type = char_pointer_type; /* change type to 'char *' */
7915 vpushi(s->c);
7916 gen_op('+');
7917 /* change type to field type, and set to lvalue */
7918 vtop->type = s->type;
7919 /* an array is never an lvalue */
7920 if (!(vtop->type.t & VT_ARRAY)) {
7921 vtop->r |= lvalue_type(vtop->type.t);
7922 /* if bound checking, the referenced pointer must be checked */
7923 if (do_bounds_check)
7924 vtop->r |= VT_MUSTBOUND;
7926 next();
7927 } else if (tok == '[') {
7928 next();
7929 gexpr();
7930 gen_op('+');
7931 indir();
7932 skip(']');
7933 } else if (tok == '(') {
7934 SValue ret;
7935 Sym *sa;
7936 int nb_args;
7938 /* function call */
7939 if ((vtop->type.t & VT_BTYPE) != VT_FUNC) {
7940 /* pointer test (no array accepted) */
7941 if ((vtop->type.t & (VT_BTYPE | VT_ARRAY)) == VT_PTR) {
7942 vtop->type = *pointed_type(&vtop->type);
7943 if ((vtop->type.t & VT_BTYPE) != VT_FUNC)
7944 goto error_func;
7945 } else {
7946 error_func:
7947 expect("function pointer");
7949 } else {
7950 vtop->r &= ~VT_LVAL; /* no lvalue */
7952 /* get return type */
7953 s = vtop->type.ref;
7954 next();
7955 sa = s->next; /* first parameter */
7956 nb_args = 0;
7957 ret.r2 = VT_CONST;
7958 /* compute first implicit argument if a structure is returned */
7959 if ((s->type.t & VT_BTYPE) == VT_STRUCT) {
7960 /* get some space for the returned structure */
7961 size = type_size(&s->type, &align);
7962 loc = (loc - size) & -align;
7963 ret.type = s->type;
7964 ret.r = VT_LOCAL | VT_LVAL;
7965 /* pass it as 'int' to avoid structure arg passing
7966 problems */
7967 vseti(VT_LOCAL, loc);
7968 ret.c = vtop->c;
7969 nb_args++;
7970 } else {
7971 ret.type = s->type;
7972 /* return in register */
7973 if (is_float(ret.type.t)) {
7974 ret.r = reg_fret(ret.type.t);
7975 } else {
7976 if ((ret.type.t & VT_BTYPE) == VT_LLONG)
7977 ret.r2 = REG_LRET;
7978 ret.r = REG_IRET;
7980 ret.c.i = 0;
7982 if (tok != ')') {
7983 for(;;) {
7984 expr_eq();
7985 gfunc_param_typed(s, sa);
7986 nb_args++;
7987 if (sa)
7988 sa = sa->next;
7989 if (tok == ')')
7990 break;
7991 skip(',');
7994 if (sa)
7995 error("too few arguments to function");
7996 skip(')');
7997 if (!nocode_wanted) {
7998 gfunc_call(nb_args);
7999 } else {
8000 vtop -= (nb_args + 1);
8002 /* return value */
8003 vsetc(&ret.type, ret.r, &ret.c);
8004 vtop->r2 = ret.r2;
8005 } else {
8006 break;
8011 static void uneq(void)
8013 int t;
8015 unary();
8016 if (tok == '=' ||
8017 (tok >= TOK_A_MOD && tok <= TOK_A_DIV) ||
8018 tok == TOK_A_XOR || tok == TOK_A_OR ||
8019 tok == TOK_A_SHL || tok == TOK_A_SAR) {
8020 test_lvalue();
8021 t = tok;
8022 next();
8023 if (t == '=') {
8024 expr_eq();
8025 } else {
8026 vdup();
8027 expr_eq();
8028 gen_op(t & 0x7f);
8030 vstore();
8034 static void expr_prod(void)
8036 int t;
8038 uneq();
8039 while (tok == '*' || tok == '/' || tok == '%') {
8040 t = tok;
8041 next();
8042 uneq();
8043 gen_op(t);
8047 static void expr_sum(void)
8049 int t;
8051 expr_prod();
8052 while (tok == '+' || tok == '-') {
8053 t = tok;
8054 next();
8055 expr_prod();
8056 gen_op(t);
8060 static void expr_shift(void)
8062 int t;
8064 expr_sum();
8065 while (tok == TOK_SHL || tok == TOK_SAR) {
8066 t = tok;
8067 next();
8068 expr_sum();
8069 gen_op(t);
8073 static void expr_cmp(void)
8075 int t;
8077 expr_shift();
8078 while ((tok >= TOK_ULE && tok <= TOK_GT) ||
8079 tok == TOK_ULT || tok == TOK_UGE) {
8080 t = tok;
8081 next();
8082 expr_shift();
8083 gen_op(t);
8087 static void expr_cmpeq(void)
8089 int t;
8091 expr_cmp();
8092 while (tok == TOK_EQ || tok == TOK_NE) {
8093 t = tok;
8094 next();
8095 expr_cmp();
8096 gen_op(t);
8100 static void expr_and(void)
8102 expr_cmpeq();
8103 while (tok == '&') {
8104 next();
8105 expr_cmpeq();
8106 gen_op('&');
8110 static void expr_xor(void)
8112 expr_and();
8113 while (tok == '^') {
8114 next();
8115 expr_and();
8116 gen_op('^');
8120 static void expr_or(void)
8122 expr_xor();
8123 while (tok == '|') {
8124 next();
8125 expr_xor();
8126 gen_op('|');
8130 /* XXX: fix this mess */
8131 static void expr_land_const(void)
8133 expr_or();
8134 while (tok == TOK_LAND) {
8135 next();
8136 expr_or();
8137 gen_op(TOK_LAND);
8141 /* XXX: fix this mess */
8142 static void expr_lor_const(void)
8144 expr_land_const();
8145 while (tok == TOK_LOR) {
8146 next();
8147 expr_land_const();
8148 gen_op(TOK_LOR);
8152 /* only used if non constant */
8153 static void expr_land(void)
8155 int t;
8157 expr_or();
8158 if (tok == TOK_LAND) {
8159 t = 0;
8160 save_regs(1);
8161 for(;;) {
8162 t = gtst(1, t);
8163 if (tok != TOK_LAND) {
8164 vseti(VT_JMPI, t);
8165 break;
8167 next();
8168 expr_or();
8173 static void expr_lor(void)
8175 int t;
8177 expr_land();
8178 if (tok == TOK_LOR) {
8179 t = 0;
8180 save_regs(1);
8181 for(;;) {
8182 t = gtst(0, t);
8183 if (tok != TOK_LOR) {
8184 vseti(VT_JMP, t);
8185 break;
8187 next();
8188 expr_land();
8193 /* XXX: better constant handling */
8194 static void expr_eq(void)
8196 int tt, u, r1, r2, rc, t1, t2, bt1, bt2;
8197 SValue sv;
8198 CType type, type1, type2;
8200 if (const_wanted) {
8201 expr_lor_const();
8202 if (tok == '?') {
8203 CType boolean;
8204 int c;
8205 boolean.t = VT_BOOL;
8206 vdup();
8207 gen_cast(&boolean);
8208 c = vtop->c.i;
8209 vpop();
8210 next();
8211 if (tok != ':' || !gnu_ext) {
8212 vpop();
8213 gexpr();
8215 if (!c)
8216 vpop();
8217 skip(':');
8218 expr_eq();
8219 if (c)
8220 vpop();
8222 } else {
8223 expr_lor();
8224 if (tok == '?') {
8225 next();
8226 if (vtop != vstack) {
8227 /* needed to avoid having different registers saved in
8228 each branch */
8229 if (is_float(vtop->type.t)) {
8230 rc = RC_FLOAT;
8231 #ifdef TCC_TARGET_X86_64
8232 if ((vtop->type.t & VT_BTYPE) == VT_LDOUBLE) {
8233 rc = RC_ST0;
8235 #endif
8237 else
8238 rc = RC_INT;
8239 gv(rc);
8240 save_regs(1);
8242 if (tok == ':' && gnu_ext) {
8243 gv_dup();
8244 tt = gtst(1, 0);
8245 } else {
8246 tt = gtst(1, 0);
8247 gexpr();
8249 type1 = vtop->type;
8250 sv = *vtop; /* save value to handle it later */
8251 vtop--; /* no vpop so that FP stack is not flushed */
8252 skip(':');
8253 u = gjmp(0);
8254 gsym(tt);
8255 expr_eq();
8256 type2 = vtop->type;
8258 t1 = type1.t;
8259 bt1 = t1 & VT_BTYPE;
8260 t2 = type2.t;
8261 bt2 = t2 & VT_BTYPE;
8262 /* cast operands to correct type according to ISOC rules */
8263 if (is_float(bt1) || is_float(bt2)) {
8264 if (bt1 == VT_LDOUBLE || bt2 == VT_LDOUBLE) {
8265 type.t = VT_LDOUBLE;
8266 } else if (bt1 == VT_DOUBLE || bt2 == VT_DOUBLE) {
8267 type.t = VT_DOUBLE;
8268 } else {
8269 type.t = VT_FLOAT;
8271 } else if (bt1 == VT_LLONG || bt2 == VT_LLONG) {
8272 /* cast to biggest op */
8273 type.t = VT_LLONG;
8274 /* convert to unsigned if it does not fit in a long long */
8275 if ((t1 & (VT_BTYPE | VT_UNSIGNED)) == (VT_LLONG | VT_UNSIGNED) ||
8276 (t2 & (VT_BTYPE | VT_UNSIGNED)) == (VT_LLONG | VT_UNSIGNED))
8277 type.t |= VT_UNSIGNED;
8278 } else if (bt1 == VT_PTR || bt2 == VT_PTR) {
8279 /* XXX: test pointer compatibility */
8280 type = type1;
8281 } else if (bt1 == VT_FUNC || bt2 == VT_FUNC) {
8282 /* XXX: test function pointer compatibility */
8283 type = type1;
8284 } else if (bt1 == VT_STRUCT || bt2 == VT_STRUCT) {
8285 /* XXX: test structure compatibility */
8286 type = type1;
8287 } else if (bt1 == VT_VOID || bt2 == VT_VOID) {
8288 /* NOTE: as an extension, we accept void on only one side */
8289 type.t = VT_VOID;
8290 } else {
8291 /* integer operations */
8292 type.t = VT_INT;
8293 /* convert to unsigned if it does not fit in an integer */
8294 if ((t1 & (VT_BTYPE | VT_UNSIGNED)) == (VT_INT | VT_UNSIGNED) ||
8295 (t2 & (VT_BTYPE | VT_UNSIGNED)) == (VT_INT | VT_UNSIGNED))
8296 type.t |= VT_UNSIGNED;
8299 /* now we convert second operand */
8300 gen_cast(&type);
8301 if (VT_STRUCT == (vtop->type.t & VT_BTYPE))
8302 gaddrof();
8303 rc = RC_INT;
8304 if (is_float(type.t)) {
8305 rc = RC_FLOAT;
8306 #ifdef TCC_TARGET_X86_64
8307 if ((type.t & VT_BTYPE) == VT_LDOUBLE) {
8308 rc = RC_ST0;
8310 #endif
8311 } else if ((type.t & VT_BTYPE) == VT_LLONG) {
8312 /* for long longs, we use fixed registers to avoid having
8313 to handle a complicated move */
8314 rc = RC_IRET;
8317 r2 = gv(rc);
8318 /* this is horrible, but we must also convert first
8319 operand */
8320 tt = gjmp(0);
8321 gsym(u);
8322 /* put again first value and cast it */
8323 *vtop = sv;
8324 gen_cast(&type);
8325 if (VT_STRUCT == (vtop->type.t & VT_BTYPE))
8326 gaddrof();
8327 r1 = gv(rc);
8328 move_reg(r2, r1);
8329 vtop->r = r2;
8330 gsym(tt);
8335 static void gexpr(void)
8337 while (1) {
8338 expr_eq();
8339 if (tok != ',')
8340 break;
8341 vpop();
8342 next();
8346 /* parse an expression and return its type without any side effect. */
8347 static void expr_type(CType *type)
8349 int saved_nocode_wanted;
8351 saved_nocode_wanted = nocode_wanted;
8352 nocode_wanted = 1;
8353 gexpr();
8354 *type = vtop->type;
8355 vpop();
8356 nocode_wanted = saved_nocode_wanted;
8359 /* parse a unary expression and return its type without any side
8360 effect. */
8361 static void unary_type(CType *type)
8363 int a;
8365 a = nocode_wanted;
8366 nocode_wanted = 1;
8367 unary();
8368 *type = vtop->type;
8369 vpop();
8370 nocode_wanted = a;
8373 /* parse a constant expression and return value in vtop. */
8374 static void expr_const1(void)
8376 int a;
8377 a = const_wanted;
8378 const_wanted = 1;
8379 expr_eq();
8380 const_wanted = a;
8383 /* parse an integer constant and return its value. */
8384 static int expr_const(void)
8386 int c;
8387 expr_const1();
8388 if ((vtop->r & (VT_VALMASK | VT_LVAL | VT_SYM)) != VT_CONST)
8389 expect("constant expression");
8390 c = vtop->c.i;
8391 vpop();
8392 return c;
8395 /* return the label token if current token is a label, otherwise
8396 return zero */
8397 static int is_label(void)
8399 int last_tok;
8401 /* fast test first */
8402 if (tok < TOK_UIDENT)
8403 return 0;
8404 /* no need to save tokc because tok is an identifier */
8405 last_tok = tok;
8406 next();
8407 if (tok == ':') {
8408 next();
8409 return last_tok;
8410 } else {
8411 unget_tok(last_tok);
8412 return 0;
8416 static void block(int *bsym, int *csym, int *case_sym, int *def_sym,
8417 int case_reg, int is_expr)
8419 int a, b, c, d;
8420 Sym *s;
8422 /* generate line number info */
8423 if (do_debug &&
8424 (last_line_num != file->line_num || last_ind != ind)) {
8425 put_stabn(N_SLINE, 0, file->line_num, ind - func_ind);
8426 last_ind = ind;
8427 last_line_num = file->line_num;
8430 if (is_expr) {
8431 /* default return value is (void) */
8432 vpushi(0);
8433 vtop->type.t = VT_VOID;
8436 if (tok == TOK_IF) {
8437 /* if test */
8438 next();
8439 skip('(');
8440 gexpr();
8441 skip(')');
8442 a = gtst(1, 0);
8443 block(bsym, csym, case_sym, def_sym, case_reg, 0);
8444 c = tok;
8445 if (c == TOK_ELSE) {
8446 next();
8447 d = gjmp(0);
8448 gsym(a);
8449 block(bsym, csym, case_sym, def_sym, case_reg, 0);
8450 gsym(d); /* patch else jmp */
8451 } else
8452 gsym(a);
8453 } else if (tok == TOK_WHILE) {
8454 next();
8455 d = ind;
8456 skip('(');
8457 gexpr();
8458 skip(')');
8459 a = gtst(1, 0);
8460 b = 0;
8461 block(&a, &b, case_sym, def_sym, case_reg, 0);
8462 gjmp_addr(d);
8463 gsym(a);
8464 gsym_addr(b, d);
8465 } else if (tok == '{') {
8466 Sym *llabel;
8468 next();
8469 /* record local declaration stack position */
8470 s = local_stack;
8471 llabel = local_label_stack;
8472 /* handle local labels declarations */
8473 if (tok == TOK_LABEL) {
8474 next();
8475 for(;;) {
8476 if (tok < TOK_UIDENT)
8477 expect("label identifier");
8478 label_push(&local_label_stack, tok, LABEL_DECLARED);
8479 next();
8480 if (tok == ',') {
8481 next();
8482 } else {
8483 skip(';');
8484 break;
8488 while (tok != '}') {
8489 decl(VT_LOCAL);
8490 if (tok != '}') {
8491 if (is_expr)
8492 vpop();
8493 block(bsym, csym, case_sym, def_sym, case_reg, is_expr);
8496 /* pop locally defined labels */
8497 label_pop(&local_label_stack, llabel);
8498 /* pop locally defined symbols */
8499 if(is_expr) {
8500 /* XXX: this solution makes only valgrind happy...
8501 triggered by gcc.c-torture/execute/20000917-1.c */
8502 Sym *p;
8503 switch(vtop->type.t & VT_BTYPE) {
8504 case VT_PTR:
8505 case VT_STRUCT:
8506 case VT_ENUM:
8507 case VT_FUNC:
8508 for(p=vtop->type.ref;p;p=p->prev)
8509 if(p->prev==s)
8510 error("unsupported expression type");
8513 sym_pop(&local_stack, s);
8514 next();
8515 } else if (tok == TOK_RETURN) {
8516 next();
8517 if (tok != ';') {
8518 gexpr();
8519 gen_assign_cast(&func_vt);
8520 if ((func_vt.t & VT_BTYPE) == VT_STRUCT) {
8521 CType type;
8522 /* if returning structure, must copy it to implicit
8523 first pointer arg location */
8524 #ifdef TCC_ARM_EABI
8525 int align, size;
8526 size = type_size(&func_vt,&align);
8527 if(size <= 4)
8529 if((vtop->r != (VT_LOCAL | VT_LVAL) || (vtop->c.i & 3))
8530 && (align & 3))
8532 int addr;
8533 loc = (loc - size) & -4;
8534 addr = loc;
8535 type = func_vt;
8536 vset(&type, VT_LOCAL | VT_LVAL, addr);
8537 vswap();
8538 vstore();
8539 vset(&int_type, VT_LOCAL | VT_LVAL, addr);
8541 vtop->type = int_type;
8542 gv(RC_IRET);
8543 } else {
8544 #endif
8545 type = func_vt;
8546 mk_pointer(&type);
8547 vset(&type, VT_LOCAL | VT_LVAL, func_vc);
8548 indir();
8549 vswap();
8550 /* copy structure value to pointer */
8551 vstore();
8552 #ifdef TCC_ARM_EABI
8554 #endif
8555 } else if (is_float(func_vt.t)) {
8556 gv(rc_fret(func_vt.t));
8557 } else {
8558 gv(RC_IRET);
8560 vtop--; /* NOT vpop() because on x86 it would flush the fp stack */
8562 skip(';');
8563 rsym = gjmp(rsym); /* jmp */
8564 } else if (tok == TOK_BREAK) {
8565 /* compute jump */
8566 if (!bsym)
8567 error("cannot break");
8568 *bsym = gjmp(*bsym);
8569 next();
8570 skip(';');
8571 } else if (tok == TOK_CONTINUE) {
8572 /* compute jump */
8573 if (!csym)
8574 error("cannot continue");
8575 *csym = gjmp(*csym);
8576 next();
8577 skip(';');
8578 } else if (tok == TOK_FOR) {
8579 int e;
8580 next();
8581 skip('(');
8582 if (tok != ';') {
8583 gexpr();
8584 vpop();
8586 skip(';');
8587 d = ind;
8588 c = ind;
8589 a = 0;
8590 b = 0;
8591 if (tok != ';') {
8592 gexpr();
8593 a = gtst(1, 0);
8595 skip(';');
8596 if (tok != ')') {
8597 e = gjmp(0);
8598 c = ind;
8599 gexpr();
8600 vpop();
8601 gjmp_addr(d);
8602 gsym(e);
8604 skip(')');
8605 block(&a, &b, case_sym, def_sym, case_reg, 0);
8606 gjmp_addr(c);
8607 gsym(a);
8608 gsym_addr(b, c);
8609 } else
8610 if (tok == TOK_DO) {
8611 next();
8612 a = 0;
8613 b = 0;
8614 d = ind;
8615 block(&a, &b, case_sym, def_sym, case_reg, 0);
8616 skip(TOK_WHILE);
8617 skip('(');
8618 gsym(b);
8619 gexpr();
8620 c = gtst(0, 0);
8621 gsym_addr(c, d);
8622 skip(')');
8623 gsym(a);
8624 skip(';');
8625 } else
8626 if (tok == TOK_SWITCH) {
8627 next();
8628 skip('(');
8629 gexpr();
8630 /* XXX: other types than integer */
8631 case_reg = gv(RC_INT);
8632 vpop();
8633 skip(')');
8634 a = 0;
8635 b = gjmp(0); /* jump to first case */
8636 c = 0;
8637 block(&a, csym, &b, &c, case_reg, 0);
8638 /* if no default, jmp after switch */
8639 if (c == 0)
8640 c = ind;
8641 /* default label */
8642 gsym_addr(b, c);
8643 /* break label */
8644 gsym(a);
8645 } else
8646 if (tok == TOK_CASE) {
8647 int v1, v2;
8648 if (!case_sym)
8649 expect("switch");
8650 next();
8651 v1 = expr_const();
8652 v2 = v1;
8653 if (gnu_ext && tok == TOK_DOTS) {
8654 next();
8655 v2 = expr_const();
8656 if (v2 < v1)
8657 warning("empty case range");
8659 /* since a case is like a label, we must skip it with a jmp */
8660 b = gjmp(0);
8661 gsym(*case_sym);
8662 vseti(case_reg, 0);
8663 vpushi(v1);
8664 if (v1 == v2) {
8665 gen_op(TOK_EQ);
8666 *case_sym = gtst(1, 0);
8667 } else {
8668 gen_op(TOK_GE);
8669 *case_sym = gtst(1, 0);
8670 vseti(case_reg, 0);
8671 vpushi(v2);
8672 gen_op(TOK_LE);
8673 *case_sym = gtst(1, *case_sym);
8675 gsym(b);
8676 skip(':');
8677 is_expr = 0;
8678 goto block_after_label;
8679 } else
8680 if (tok == TOK_DEFAULT) {
8681 next();
8682 skip(':');
8683 if (!def_sym)
8684 expect("switch");
8685 if (*def_sym)
8686 error("too many 'default'");
8687 *def_sym = ind;
8688 is_expr = 0;
8689 goto block_after_label;
8690 } else
8691 if (tok == TOK_GOTO) {
8692 next();
8693 if (tok == '*' && gnu_ext) {
8694 /* computed goto */
8695 next();
8696 gexpr();
8697 if ((vtop->type.t & VT_BTYPE) != VT_PTR)
8698 expect("pointer");
8699 ggoto();
8700 } else if (tok >= TOK_UIDENT) {
8701 s = label_find(tok);
8702 /* put forward definition if needed */
8703 if (!s) {
8704 s = label_push(&global_label_stack, tok, LABEL_FORWARD);
8705 } else {
8706 if (s->r == LABEL_DECLARED)
8707 s->r = LABEL_FORWARD;
8709 /* label already defined */
8710 if (s->r & LABEL_FORWARD)
8711 s->next = (void *)gjmp((long)s->next);
8712 else
8713 gjmp_addr((long)s->next);
8714 next();
8715 } else {
8716 expect("label identifier");
8718 skip(';');
8719 } else if (tok == TOK_ASM1 || tok == TOK_ASM2 || tok == TOK_ASM3) {
8720 asm_instr();
8721 } else {
8722 b = is_label();
8723 if (b) {
8724 /* label case */
8725 s = label_find(b);
8726 if (s) {
8727 if (s->r == LABEL_DEFINED)
8728 error("duplicate label '%s'", get_tok_str(s->v, NULL));
8729 gsym((long)s->next);
8730 s->r = LABEL_DEFINED;
8731 } else {
8732 s = label_push(&global_label_stack, b, LABEL_DEFINED);
8734 s->next = (void *)ind;
8735 /* we accept this, but it is a mistake */
8736 block_after_label:
8737 if (tok == '}') {
8738 warning("deprecated use of label at end of compound statement");
8739 } else {
8740 if (is_expr)
8741 vpop();
8742 block(bsym, csym, case_sym, def_sym, case_reg, is_expr);
8744 } else {
8745 /* expression case */
8746 if (tok != ';') {
8747 if (is_expr) {
8748 vpop();
8749 gexpr();
8750 } else {
8751 gexpr();
8752 vpop();
8755 skip(';');
8760 /* t is the array or struct type. c is the array or struct
8761 address. cur_index/cur_field is the pointer to the current
8762 value. 'size_only' is true if only size info is needed (only used
8763 in arrays) */
8764 static void decl_designator(CType *type, Section *sec, unsigned long c,
8765 int *cur_index, Sym **cur_field,
8766 int size_only)
8768 Sym *s, *f;
8769 int notfirst, index, index_last, align, l, nb_elems, elem_size;
8770 CType type1;
8772 notfirst = 0;
8773 elem_size = 0;
8774 nb_elems = 1;
8775 if (gnu_ext && (l = is_label()) != 0)
8776 goto struct_field;
8777 while (tok == '[' || tok == '.') {
8778 if (tok == '[') {
8779 if (!(type->t & VT_ARRAY))
8780 expect("array type");
8781 s = type->ref;
8782 next();
8783 index = expr_const();
8784 if (index < 0 || (s->c >= 0 && index >= s->c))
8785 expect("invalid index");
8786 if (tok == TOK_DOTS && gnu_ext) {
8787 next();
8788 index_last = expr_const();
8789 if (index_last < 0 ||
8790 (s->c >= 0 && index_last >= s->c) ||
8791 index_last < index)
8792 expect("invalid index");
8793 } else {
8794 index_last = index;
8796 skip(']');
8797 if (!notfirst)
8798 *cur_index = index_last;
8799 type = pointed_type(type);
8800 elem_size = type_size(type, &align);
8801 c += index * elem_size;
8802 /* NOTE: we only support ranges for last designator */
8803 nb_elems = index_last - index + 1;
8804 if (nb_elems != 1) {
8805 notfirst = 1;
8806 break;
8808 } else {
8809 next();
8810 l = tok;
8811 next();
8812 struct_field:
8813 if ((type->t & VT_BTYPE) != VT_STRUCT)
8814 expect("struct/union type");
8815 s = type->ref;
8816 l |= SYM_FIELD;
8817 f = s->next;
8818 while (f) {
8819 if (f->v == l)
8820 break;
8821 f = f->next;
8823 if (!f)
8824 expect("field");
8825 if (!notfirst)
8826 *cur_field = f;
8827 /* XXX: fix this mess by using explicit storage field */
8828 type1 = f->type;
8829 type1.t |= (type->t & ~VT_TYPE);
8830 type = &type1;
8831 c += f->c;
8833 notfirst = 1;
8835 if (notfirst) {
8836 if (tok == '=') {
8837 next();
8838 } else {
8839 if (!gnu_ext)
8840 expect("=");
8842 } else {
8843 if (type->t & VT_ARRAY) {
8844 index = *cur_index;
8845 type = pointed_type(type);
8846 c += index * type_size(type, &align);
8847 } else {
8848 f = *cur_field;
8849 if (!f)
8850 error("too many field init");
8851 /* XXX: fix this mess by using explicit storage field */
8852 type1 = f->type;
8853 type1.t |= (type->t & ~VT_TYPE);
8854 type = &type1;
8855 c += f->c;
8858 decl_initializer(type, sec, c, 0, size_only);
8860 /* XXX: make it more general */
8861 if (!size_only && nb_elems > 1) {
8862 unsigned long c_end;
8863 uint8_t *src, *dst;
8864 int i;
8866 if (!sec)
8867 error("range init not supported yet for dynamic storage");
8868 c_end = c + nb_elems * elem_size;
8869 if (c_end > sec->data_allocated)
8870 section_realloc(sec, c_end);
8871 src = sec->data + c;
8872 dst = src;
8873 for(i = 1; i < nb_elems; i++) {
8874 dst += elem_size;
8875 memcpy(dst, src, elem_size);
8880 #define EXPR_VAL 0
8881 #define EXPR_CONST 1
8882 #define EXPR_ANY 2
8884 /* store a value or an expression directly in global data or in local array */
8885 static void init_putv(CType *type, Section *sec, unsigned long c,
8886 int v, int expr_type)
8888 int saved_global_expr, bt, bit_pos, bit_size;
8889 void *ptr;
8890 unsigned long long bit_mask;
8891 CType dtype;
8893 switch(expr_type) {
8894 case EXPR_VAL:
8895 vpushi(v);
8896 break;
8897 case EXPR_CONST:
8898 /* compound literals must be allocated globally in this case */
8899 saved_global_expr = global_expr;
8900 global_expr = 1;
8901 expr_const1();
8902 global_expr = saved_global_expr;
8903 /* NOTE: symbols are accepted */
8904 if ((vtop->r & (VT_VALMASK | VT_LVAL)) != VT_CONST)
8905 error("initializer element is not constant");
8906 break;
8907 case EXPR_ANY:
8908 expr_eq();
8909 break;
8912 dtype = *type;
8913 dtype.t &= ~VT_CONSTANT; /* need to do that to avoid false warning */
8915 if (sec) {
8916 /* XXX: not portable */
8917 /* XXX: generate error if incorrect relocation */
8918 gen_assign_cast(&dtype);
8919 bt = type->t & VT_BTYPE;
8920 /* we'll write at most 12 bytes */
8921 if (c + 12 > sec->data_allocated) {
8922 section_realloc(sec, c + 12);
8924 ptr = sec->data + c;
8925 /* XXX: make code faster ? */
8926 if (!(type->t & VT_BITFIELD)) {
8927 bit_pos = 0;
8928 bit_size = 32;
8929 bit_mask = -1LL;
8930 } else {
8931 bit_pos = (vtop->type.t >> VT_STRUCT_SHIFT) & 0x3f;
8932 bit_size = (vtop->type.t >> (VT_STRUCT_SHIFT + 6)) & 0x3f;
8933 bit_mask = (1LL << bit_size) - 1;
8935 if ((vtop->r & VT_SYM) &&
8936 (bt == VT_BYTE ||
8937 bt == VT_SHORT ||
8938 bt == VT_DOUBLE ||
8939 bt == VT_LDOUBLE ||
8940 bt == VT_LLONG ||
8941 (bt == VT_INT && bit_size != 32)))
8942 error("initializer element is not computable at load time");
8943 switch(bt) {
8944 case VT_BOOL:
8945 vtop->c.i = (vtop->c.i != 0);
8946 case VT_BYTE:
8947 *(char *)ptr |= (vtop->c.i & bit_mask) << bit_pos;
8948 break;
8949 case VT_SHORT:
8950 *(short *)ptr |= (vtop->c.i & bit_mask) << bit_pos;
8951 break;
8952 case VT_DOUBLE:
8953 *(double *)ptr = vtop->c.d;
8954 break;
8955 case VT_LDOUBLE:
8956 *(long double *)ptr = vtop->c.ld;
8957 break;
8958 case VT_LLONG:
8959 *(long long *)ptr |= (vtop->c.ll & bit_mask) << bit_pos;
8960 break;
8961 default:
8962 if (vtop->r & VT_SYM) {
8963 greloc(sec, vtop->sym, c, R_DATA_32);
8965 *(int *)ptr |= (vtop->c.i & bit_mask) << bit_pos;
8966 break;
8968 vtop--;
8969 } else {
8970 vset(&dtype, VT_LOCAL|VT_LVAL, c);
8971 vswap();
8972 vstore();
8973 vpop();
8977 /* put zeros for variable based init */
8978 static void init_putz(CType *t, Section *sec, unsigned long c, int size)
8980 if (sec) {
8981 /* nothing to do because globals are already set to zero */
8982 } else {
8983 vpush_global_sym(&func_old_type, TOK_memset);
8984 vseti(VT_LOCAL, c);
8985 vpushi(0);
8986 vpushi(size);
8987 gfunc_call(3);
8991 /* 't' contains the type and storage info. 'c' is the offset of the
8992 object in section 'sec'. If 'sec' is NULL, it means stack based
8993 allocation. 'first' is true if array '{' must be read (multi
8994 dimension implicit array init handling). 'size_only' is true if
8995 size only evaluation is wanted (only for arrays). */
8996 static void decl_initializer(CType *type, Section *sec, unsigned long c,
8997 int first, int size_only)
8999 int index, array_length, n, no_oblock, nb, parlevel, i;
9000 int size1, align1, expr_type;
9001 Sym *s, *f;
9002 CType *t1;
9004 if (type->t & VT_ARRAY) {
9005 s = type->ref;
9006 n = s->c;
9007 array_length = 0;
9008 t1 = pointed_type(type);
9009 size1 = type_size(t1, &align1);
9011 no_oblock = 1;
9012 if ((first && tok != TOK_LSTR && tok != TOK_STR) ||
9013 tok == '{') {
9014 skip('{');
9015 no_oblock = 0;
9018 /* only parse strings here if correct type (otherwise: handle
9019 them as ((w)char *) expressions */
9020 if ((tok == TOK_LSTR &&
9021 #ifdef TCC_TARGET_PE
9022 (t1->t & VT_BTYPE) == VT_SHORT && (t1->t & VT_UNSIGNED)
9023 #else
9024 (t1->t & VT_BTYPE) == VT_INT
9025 #endif
9026 ) || (tok == TOK_STR && (t1->t & VT_BTYPE) == VT_BYTE)) {
9027 while (tok == TOK_STR || tok == TOK_LSTR) {
9028 int cstr_len, ch;
9029 CString *cstr;
9031 cstr = tokc.cstr;
9032 /* compute maximum number of chars wanted */
9033 if (tok == TOK_STR)
9034 cstr_len = cstr->size;
9035 else
9036 cstr_len = cstr->size / sizeof(nwchar_t);
9037 cstr_len--;
9038 nb = cstr_len;
9039 if (n >= 0 && nb > (n - array_length))
9040 nb = n - array_length;
9041 if (!size_only) {
9042 if (cstr_len > nb)
9043 warning("initializer-string for array is too long");
9044 /* in order to go faster for common case (char
9045 string in global variable, we handle it
9046 specifically */
9047 if (sec && tok == TOK_STR && size1 == 1) {
9048 memcpy(sec->data + c + array_length, cstr->data, nb);
9049 } else {
9050 for(i=0;i<nb;i++) {
9051 if (tok == TOK_STR)
9052 ch = ((unsigned char *)cstr->data)[i];
9053 else
9054 ch = ((nwchar_t *)cstr->data)[i];
9055 init_putv(t1, sec, c + (array_length + i) * size1,
9056 ch, EXPR_VAL);
9060 array_length += nb;
9061 next();
9063 /* only add trailing zero if enough storage (no
9064 warning in this case since it is standard) */
9065 if (n < 0 || array_length < n) {
9066 if (!size_only) {
9067 init_putv(t1, sec, c + (array_length * size1), 0, EXPR_VAL);
9069 array_length++;
9071 } else {
9072 index = 0;
9073 while (tok != '}') {
9074 decl_designator(type, sec, c, &index, NULL, size_only);
9075 if (n >= 0 && index >= n)
9076 error("index too large");
9077 /* must put zero in holes (note that doing it that way
9078 ensures that it even works with designators) */
9079 if (!size_only && array_length < index) {
9080 init_putz(t1, sec, c + array_length * size1,
9081 (index - array_length) * size1);
9083 index++;
9084 if (index > array_length)
9085 array_length = index;
9086 /* special test for multi dimensional arrays (may not
9087 be strictly correct if designators are used at the
9088 same time) */
9089 if (index >= n && no_oblock)
9090 break;
9091 if (tok == '}')
9092 break;
9093 skip(',');
9096 if (!no_oblock)
9097 skip('}');
9098 /* put zeros at the end */
9099 if (!size_only && n >= 0 && array_length < n) {
9100 init_putz(t1, sec, c + array_length * size1,
9101 (n - array_length) * size1);
9103 /* patch type size if needed */
9104 if (n < 0)
9105 s->c = array_length;
9106 } else if ((type->t & VT_BTYPE) == VT_STRUCT &&
9107 (sec || !first || tok == '{')) {
9108 int par_count;
9110 /* NOTE: the previous test is a specific case for automatic
9111 struct/union init */
9112 /* XXX: union needs only one init */
9114 /* XXX: this test is incorrect for local initializers
9115 beginning with ( without {. It would be much more difficult
9116 to do it correctly (ideally, the expression parser should
9117 be used in all cases) */
9118 par_count = 0;
9119 if (tok == '(') {
9120 AttributeDef ad1;
9121 CType type1;
9122 next();
9123 while (tok == '(') {
9124 par_count++;
9125 next();
9127 if (!parse_btype(&type1, &ad1))
9128 expect("cast");
9129 type_decl(&type1, &ad1, &n, TYPE_ABSTRACT);
9130 #if 0
9131 if (!is_assignable_types(type, &type1))
9132 error("invalid type for cast");
9133 #endif
9134 skip(')');
9136 no_oblock = 1;
9137 if (first || tok == '{') {
9138 skip('{');
9139 no_oblock = 0;
9141 s = type->ref;
9142 f = s->next;
9143 array_length = 0;
9144 index = 0;
9145 n = s->c;
9146 while (tok != '}') {
9147 decl_designator(type, sec, c, NULL, &f, size_only);
9148 index = f->c;
9149 if (!size_only && array_length < index) {
9150 init_putz(type, sec, c + array_length,
9151 index - array_length);
9153 index = index + type_size(&f->type, &align1);
9154 if (index > array_length)
9155 array_length = index;
9156 f = f->next;
9157 if (no_oblock && f == NULL)
9158 break;
9159 if (tok == '}')
9160 break;
9161 skip(',');
9163 /* put zeros at the end */
9164 if (!size_only && array_length < n) {
9165 init_putz(type, sec, c + array_length,
9166 n - array_length);
9168 if (!no_oblock)
9169 skip('}');
9170 while (par_count) {
9171 skip(')');
9172 par_count--;
9174 } else if (tok == '{') {
9175 next();
9176 decl_initializer(type, sec, c, first, size_only);
9177 skip('}');
9178 } else if (size_only) {
9179 /* just skip expression */
9180 parlevel = 0;
9181 while ((parlevel > 0 || (tok != '}' && tok != ',')) &&
9182 tok != -1) {
9183 if (tok == '(')
9184 parlevel++;
9185 else if (tok == ')')
9186 parlevel--;
9187 next();
9189 } else {
9190 /* currently, we always use constant expression for globals
9191 (may change for scripting case) */
9192 expr_type = EXPR_CONST;
9193 if (!sec)
9194 expr_type = EXPR_ANY;
9195 init_putv(type, sec, c, 0, expr_type);
9199 /* parse an initializer for type 't' if 'has_init' is non zero, and
9200 allocate space in local or global data space ('r' is either
9201 VT_LOCAL or VT_CONST). If 'v' is non zero, then an associated
9202 variable 'v' of scope 'scope' is declared before initializers are
9203 parsed. If 'v' is zero, then a reference to the new object is put
9204 in the value stack. If 'has_init' is 2, a special parsing is done
9205 to handle string constants. */
9206 static void decl_initializer_alloc(CType *type, AttributeDef *ad, int r,
9207 int has_init, int v, int scope)
9209 int size, align, addr, data_offset;
9210 int level;
9211 ParseState saved_parse_state;
9212 TokenString init_str;
9213 Section *sec;
9215 size = type_size(type, &align);
9216 /* If unknown size, we must evaluate it before
9217 evaluating initializers because
9218 initializers can generate global data too
9219 (e.g. string pointers or ISOC99 compound
9220 literals). It also simplifies local
9221 initializers handling */
9222 tok_str_new(&init_str);
9223 if (size < 0) {
9224 if (!has_init)
9225 error("unknown type size");
9226 /* get all init string */
9227 if (has_init == 2) {
9228 /* only get strings */
9229 while (tok == TOK_STR || tok == TOK_LSTR) {
9230 tok_str_add_tok(&init_str);
9231 next();
9233 } else {
9234 level = 0;
9235 while (level > 0 || (tok != ',' && tok != ';')) {
9236 if (tok < 0)
9237 error("unexpected end of file in initializer");
9238 tok_str_add_tok(&init_str);
9239 if (tok == '{')
9240 level++;
9241 else if (tok == '}') {
9242 level--;
9243 if (level <= 0) {
9244 next();
9245 break;
9248 next();
9251 tok_str_add(&init_str, -1);
9252 tok_str_add(&init_str, 0);
9254 /* compute size */
9255 save_parse_state(&saved_parse_state);
9257 macro_ptr = init_str.str;
9258 next();
9259 decl_initializer(type, NULL, 0, 1, 1);
9260 /* prepare second initializer parsing */
9261 macro_ptr = init_str.str;
9262 next();
9264 /* if still unknown size, error */
9265 size = type_size(type, &align);
9266 if (size < 0)
9267 error("unknown type size");
9269 /* take into account specified alignment if bigger */
9270 if (ad->aligned) {
9271 if (ad->aligned > align)
9272 align = ad->aligned;
9273 } else if (ad->packed) {
9274 align = 1;
9276 if ((r & VT_VALMASK) == VT_LOCAL) {
9277 sec = NULL;
9278 if (do_bounds_check && (type->t & VT_ARRAY))
9279 loc--;
9280 loc = (loc - size) & -align;
9281 addr = loc;
9282 /* handles bounds */
9283 /* XXX: currently, since we do only one pass, we cannot track
9284 '&' operators, so we add only arrays */
9285 if (do_bounds_check && (type->t & VT_ARRAY)) {
9286 unsigned long *bounds_ptr;
9287 /* add padding between regions */
9288 loc--;
9289 /* then add local bound info */
9290 bounds_ptr = section_ptr_add(lbounds_section, 2 * sizeof(unsigned long));
9291 bounds_ptr[0] = addr;
9292 bounds_ptr[1] = size;
9294 if (v) {
9295 /* local variable */
9296 sym_push(v, type, r, addr);
9297 } else {
9298 /* push local reference */
9299 vset(type, r, addr);
9301 } else {
9302 Sym *sym;
9304 sym = NULL;
9305 if (v && scope == VT_CONST) {
9306 /* see if the symbol was already defined */
9307 sym = sym_find(v);
9308 if (sym) {
9309 if (!is_compatible_types(&sym->type, type))
9310 error("incompatible types for redefinition of '%s'",
9311 get_tok_str(v, NULL));
9312 if (sym->type.t & VT_EXTERN) {
9313 /* if the variable is extern, it was not allocated */
9314 sym->type.t &= ~VT_EXTERN;
9315 /* set array size if it was ommited in extern
9316 declaration */
9317 if ((sym->type.t & VT_ARRAY) &&
9318 sym->type.ref->c < 0 &&
9319 type->ref->c >= 0)
9320 sym->type.ref->c = type->ref->c;
9321 } else {
9322 /* we accept several definitions of the same
9323 global variable. this is tricky, because we
9324 must play with the SHN_COMMON type of the symbol */
9325 /* XXX: should check if the variable was already
9326 initialized. It is incorrect to initialized it
9327 twice */
9328 /* no init data, we won't add more to the symbol */
9329 if (!has_init)
9330 goto no_alloc;
9335 /* allocate symbol in corresponding section */
9336 sec = ad->section;
9337 if (!sec) {
9338 if (has_init)
9339 sec = data_section;
9340 else if (tcc_state->nocommon)
9341 sec = bss_section;
9343 if (sec) {
9344 data_offset = sec->data_offset;
9345 data_offset = (data_offset + align - 1) & -align;
9346 addr = data_offset;
9347 /* very important to increment global pointer at this time
9348 because initializers themselves can create new initializers */
9349 data_offset += size;
9350 /* add padding if bound check */
9351 if (do_bounds_check)
9352 data_offset++;
9353 sec->data_offset = data_offset;
9354 /* allocate section space to put the data */
9355 if (sec->sh_type != SHT_NOBITS &&
9356 data_offset > sec->data_allocated)
9357 section_realloc(sec, data_offset);
9358 /* align section if needed */
9359 if (align > sec->sh_addralign)
9360 sec->sh_addralign = align;
9361 } else {
9362 addr = 0; /* avoid warning */
9365 if (v) {
9366 if (scope != VT_CONST || !sym) {
9367 sym = sym_push(v, type, r | VT_SYM, 0);
9369 /* update symbol definition */
9370 if (sec) {
9371 put_extern_sym(sym, sec, addr, size);
9372 } else {
9373 ElfW(Sym) *esym;
9374 /* put a common area */
9375 put_extern_sym(sym, NULL, align, size);
9376 /* XXX: find a nicer way */
9377 esym = &((ElfW(Sym) *)symtab_section->data)[sym->c];
9378 esym->st_shndx = SHN_COMMON;
9380 } else {
9381 CValue cval;
9383 /* push global reference */
9384 sym = get_sym_ref(type, sec, addr, size);
9385 cval.ul = 0;
9386 vsetc(type, VT_CONST | VT_SYM, &cval);
9387 vtop->sym = sym;
9390 /* handles bounds now because the symbol must be defined
9391 before for the relocation */
9392 if (do_bounds_check) {
9393 unsigned long *bounds_ptr;
9395 greloc(bounds_section, sym, bounds_section->data_offset, R_DATA_32);
9396 /* then add global bound info */
9397 bounds_ptr = section_ptr_add(bounds_section, 2 * sizeof(long));
9398 bounds_ptr[0] = 0; /* relocated */
9399 bounds_ptr[1] = size;
9402 if (has_init) {
9403 decl_initializer(type, sec, addr, 1, 0);
9404 /* restore parse state if needed */
9405 if (init_str.str) {
9406 tok_str_free(init_str.str);
9407 restore_parse_state(&saved_parse_state);
9410 no_alloc: ;
9413 void put_func_debug(Sym *sym)
9415 char buf[512];
9417 /* stabs info */
9418 /* XXX: we put here a dummy type */
9419 snprintf(buf, sizeof(buf), "%s:%c1",
9420 funcname, sym->type.t & VT_STATIC ? 'f' : 'F');
9421 put_stabs_r(buf, N_FUN, 0, file->line_num, 0,
9422 cur_text_section, sym->c);
9423 /* //gr gdb wants a line at the function */
9424 put_stabn(N_SLINE, 0, file->line_num, 0);
9425 last_ind = 0;
9426 last_line_num = 0;
9429 /* parse an old style function declaration list */
9430 /* XXX: check multiple parameter */
9431 static void func_decl_list(Sym *func_sym)
9433 AttributeDef ad;
9434 int v;
9435 Sym *s;
9436 CType btype, type;
9438 /* parse each declaration */
9439 while (tok != '{' && tok != ';' && tok != ',' && tok != TOK_EOF) {
9440 if (!parse_btype(&btype, &ad))
9441 expect("declaration list");
9442 if (((btype.t & VT_BTYPE) == VT_ENUM ||
9443 (btype.t & VT_BTYPE) == VT_STRUCT) &&
9444 tok == ';') {
9445 /* we accept no variable after */
9446 } else {
9447 for(;;) {
9448 type = btype;
9449 type_decl(&type, &ad, &v, TYPE_DIRECT);
9450 /* find parameter in function parameter list */
9451 s = func_sym->next;
9452 while (s != NULL) {
9453 if ((s->v & ~SYM_FIELD) == v)
9454 goto found;
9455 s = s->next;
9457 error("declaration for parameter '%s' but no such parameter",
9458 get_tok_str(v, NULL));
9459 found:
9460 /* check that no storage specifier except 'register' was given */
9461 if (type.t & VT_STORAGE)
9462 error("storage class specified for '%s'", get_tok_str(v, NULL));
9463 convert_parameter_type(&type);
9464 /* we can add the type (NOTE: it could be local to the function) */
9465 s->type = type;
9466 /* accept other parameters */
9467 if (tok == ',')
9468 next();
9469 else
9470 break;
9473 skip(';');
9477 /* parse a function defined by symbol 'sym' and generate its code in
9478 'cur_text_section' */
9479 static void gen_function(Sym *sym)
9481 int saved_nocode_wanted = nocode_wanted;
9482 nocode_wanted = 0;
9483 ind = cur_text_section->data_offset;
9484 /* NOTE: we patch the symbol size later */
9485 put_extern_sym(sym, cur_text_section, ind, 0);
9486 funcname = get_tok_str(sym->v, NULL);
9487 func_ind = ind;
9488 /* put debug symbol */
9489 if (do_debug)
9490 put_func_debug(sym);
9491 /* push a dummy symbol to enable local sym storage */
9492 sym_push2(&local_stack, SYM_FIELD, 0, 0);
9493 gfunc_prolog(&sym->type);
9494 rsym = 0;
9495 block(NULL, NULL, NULL, NULL, 0, 0);
9496 gsym(rsym);
9497 gfunc_epilog();
9498 cur_text_section->data_offset = ind;
9499 label_pop(&global_label_stack, NULL);
9500 sym_pop(&local_stack, NULL); /* reset local stack */
9501 /* end of function */
9502 /* patch symbol size */
9503 ((ElfW(Sym) *)symtab_section->data)[sym->c].st_size =
9504 ind - func_ind;
9505 if (do_debug) {
9506 put_stabn(N_FUN, 0, 0, ind - func_ind);
9508 /* It's better to crash than to generate wrong code */
9509 cur_text_section = NULL;
9510 funcname = ""; /* for safety */
9511 func_vt.t = VT_VOID; /* for safety */
9512 ind = 0; /* for safety */
9513 nocode_wanted = saved_nocode_wanted;
9516 static void gen_inline_functions(void)
9518 Sym *sym;
9519 CType *type;
9520 int *str, inline_generated;
9522 /* iterate while inline function are referenced */
9523 for(;;) {
9524 inline_generated = 0;
9525 for(sym = global_stack; sym != NULL; sym = sym->prev) {
9526 type = &sym->type;
9527 if (((type->t & VT_BTYPE) == VT_FUNC) &&
9528 (type->t & (VT_STATIC | VT_INLINE)) ==
9529 (VT_STATIC | VT_INLINE) &&
9530 sym->c != 0) {
9531 /* the function was used: generate its code and
9532 convert it to a normal function */
9533 str = INLINE_DEF(sym->r);
9534 sym->r = VT_SYM | VT_CONST;
9535 sym->type.t &= ~VT_INLINE;
9537 macro_ptr = str;
9538 next();
9539 cur_text_section = text_section;
9540 gen_function(sym);
9541 macro_ptr = NULL; /* fail safe */
9543 tok_str_free(str);
9544 inline_generated = 1;
9547 if (!inline_generated)
9548 break;
9551 /* free all remaining inline function tokens */
9552 for(sym = global_stack; sym != NULL; sym = sym->prev) {
9553 type = &sym->type;
9554 if (((type->t & VT_BTYPE) == VT_FUNC) &&
9555 (type->t & (VT_STATIC | VT_INLINE)) ==
9556 (VT_STATIC | VT_INLINE)) {
9557 //gr printf("sym %d %s\n", sym->r, get_tok_str(sym->v, NULL));
9558 if (sym->r == (VT_SYM | VT_CONST)) //gr beware!
9559 continue;
9560 str = INLINE_DEF(sym->r);
9561 tok_str_free(str);
9562 sym->r = 0; /* fail safe */
9567 /* 'l' is VT_LOCAL or VT_CONST to define default storage type */
9568 static void decl(int l)
9570 int v, has_init, r;
9571 CType type, btype;
9572 Sym *sym;
9573 AttributeDef ad;
9575 while (1) {
9576 if (!parse_btype(&btype, &ad)) {
9577 /* skip redundant ';' */
9578 /* XXX: find more elegant solution */
9579 if (tok == ';') {
9580 next();
9581 continue;
9583 if (l == VT_CONST &&
9584 (tok == TOK_ASM1 || tok == TOK_ASM2 || tok == TOK_ASM3)) {
9585 /* global asm block */
9586 asm_global_instr();
9587 continue;
9589 /* special test for old K&R protos without explicit int
9590 type. Only accepted when defining global data */
9591 if (l == VT_LOCAL || tok < TOK_DEFINE)
9592 break;
9593 btype.t = VT_INT;
9595 if (((btype.t & VT_BTYPE) == VT_ENUM ||
9596 (btype.t & VT_BTYPE) == VT_STRUCT) &&
9597 tok == ';') {
9598 /* we accept no variable after */
9599 next();
9600 continue;
9602 while (1) { /* iterate thru each declaration */
9603 type = btype;
9604 type_decl(&type, &ad, &v, TYPE_DIRECT);
9605 #if 0
9607 char buf[500];
9608 type_to_str(buf, sizeof(buf), t, get_tok_str(v, NULL));
9609 printf("type = '%s'\n", buf);
9611 #endif
9612 if ((type.t & VT_BTYPE) == VT_FUNC) {
9613 /* if old style function prototype, we accept a
9614 declaration list */
9615 sym = type.ref;
9616 if (sym->c == FUNC_OLD)
9617 func_decl_list(sym);
9620 if (tok == '{') {
9621 if (l == VT_LOCAL)
9622 error("cannot use local functions");
9623 if ((type.t & VT_BTYPE) != VT_FUNC)
9624 expect("function definition");
9626 /* reject abstract declarators in function definition */
9627 sym = type.ref;
9628 while ((sym = sym->next) != NULL)
9629 if (!(sym->v & ~SYM_FIELD))
9630 expect("identifier");
9632 /* XXX: cannot do better now: convert extern line to static inline */
9633 if ((type.t & (VT_EXTERN | VT_INLINE)) == (VT_EXTERN | VT_INLINE))
9634 type.t = (type.t & ~VT_EXTERN) | VT_STATIC;
9636 sym = sym_find(v);
9637 if (sym) {
9638 if ((sym->type.t & VT_BTYPE) != VT_FUNC)
9639 goto func_error1;
9640 /* specific case: if not func_call defined, we put
9641 the one of the prototype */
9642 /* XXX: should have default value */
9643 r = sym->type.ref->r;
9644 if (FUNC_CALL(r) != FUNC_CDECL
9645 && FUNC_CALL(type.ref->r) == FUNC_CDECL)
9646 FUNC_CALL(type.ref->r) = FUNC_CALL(r);
9647 if (FUNC_EXPORT(r))
9648 FUNC_EXPORT(type.ref->r) = 1;
9650 if (!is_compatible_types(&sym->type, &type)) {
9651 func_error1:
9652 error("incompatible types for redefinition of '%s'",
9653 get_tok_str(v, NULL));
9655 /* if symbol is already defined, then put complete type */
9656 sym->type = type;
9657 } else {
9658 /* put function symbol */
9659 sym = global_identifier_push(v, type.t, 0);
9660 sym->type.ref = type.ref;
9663 /* static inline functions are just recorded as a kind
9664 of macro. Their code will be emitted at the end of
9665 the compilation unit only if they are used */
9666 if ((type.t & (VT_INLINE | VT_STATIC)) ==
9667 (VT_INLINE | VT_STATIC)) {
9668 TokenString func_str;
9669 int block_level;
9671 tok_str_new(&func_str);
9673 block_level = 0;
9674 for(;;) {
9675 int t;
9676 if (tok == TOK_EOF)
9677 error("unexpected end of file");
9678 tok_str_add_tok(&func_str);
9679 t = tok;
9680 next();
9681 if (t == '{') {
9682 block_level++;
9683 } else if (t == '}') {
9684 block_level--;
9685 if (block_level == 0)
9686 break;
9689 tok_str_add(&func_str, -1);
9690 tok_str_add(&func_str, 0);
9691 INLINE_DEF(sym->r) = func_str.str;
9692 } else {
9693 /* compute text section */
9694 cur_text_section = ad.section;
9695 if (!cur_text_section)
9696 cur_text_section = text_section;
9697 sym->r = VT_SYM | VT_CONST;
9698 gen_function(sym);
9700 break;
9701 } else {
9702 if (btype.t & VT_TYPEDEF) {
9703 /* save typedefed type */
9704 /* XXX: test storage specifiers ? */
9705 sym = sym_push(v, &type, 0, 0);
9706 sym->type.t |= VT_TYPEDEF;
9707 } else if ((type.t & VT_BTYPE) == VT_FUNC) {
9708 /* external function definition */
9709 /* specific case for func_call attribute */
9710 if (ad.func_attr)
9711 type.ref->r = ad.func_attr;
9712 external_sym(v, &type, 0);
9713 } else {
9714 /* not lvalue if array */
9715 r = 0;
9716 if (!(type.t & VT_ARRAY))
9717 r |= lvalue_type(type.t);
9718 has_init = (tok == '=');
9719 if ((btype.t & VT_EXTERN) ||
9720 ((type.t & VT_ARRAY) && (type.t & VT_STATIC) &&
9721 !has_init && l == VT_CONST && type.ref->c < 0)) {
9722 /* external variable */
9723 /* NOTE: as GCC, uninitialized global static
9724 arrays of null size are considered as
9725 extern */
9726 external_sym(v, &type, r);
9727 } else {
9728 type.t |= (btype.t & VT_STATIC); /* Retain "static". */
9729 if (type.t & VT_STATIC)
9730 r |= VT_CONST;
9731 else
9732 r |= l;
9733 if (has_init)
9734 next();
9735 decl_initializer_alloc(&type, &ad, r,
9736 has_init, v, l);
9739 if (tok != ',') {
9740 skip(';');
9741 break;
9743 next();
9749 /* better than nothing, but needs extension to handle '-E' option
9750 correctly too */
9751 static void preprocess_init(TCCState *s1)
9753 s1->include_stack_ptr = s1->include_stack;
9754 /* XXX: move that before to avoid having to initialize
9755 file->ifdef_stack_ptr ? */
9756 s1->ifdef_stack_ptr = s1->ifdef_stack;
9757 file->ifdef_stack_ptr = s1->ifdef_stack_ptr;
9759 /* XXX: not ANSI compliant: bound checking says error */
9760 vtop = vstack - 1;
9761 s1->pack_stack[0] = 0;
9762 s1->pack_stack_ptr = s1->pack_stack;
9765 /* compile the C file opened in 'file'. Return non zero if errors. */
9766 static int tcc_compile(TCCState *s1)
9768 Sym *define_start;
9769 char buf[512];
9770 volatile int section_sym;
9772 #ifdef INC_DEBUG
9773 printf("%s: **** new file\n", file->filename);
9774 #endif
9775 preprocess_init(s1);
9777 cur_text_section = NULL;
9778 funcname = "";
9779 anon_sym = SYM_FIRST_ANOM;
9781 /* file info: full path + filename */
9782 section_sym = 0; /* avoid warning */
9783 if (do_debug) {
9784 section_sym = put_elf_sym(symtab_section, 0, 0,
9785 ELFW(ST_INFO)(STB_LOCAL, STT_SECTION), 0,
9786 text_section->sh_num, NULL);
9787 getcwd(buf, sizeof(buf));
9788 #ifdef _WIN32
9789 normalize_slashes(buf);
9790 #endif
9791 pstrcat(buf, sizeof(buf), "/");
9792 put_stabs_r(buf, N_SO, 0, 0,
9793 text_section->data_offset, text_section, section_sym);
9794 put_stabs_r(file->filename, N_SO, 0, 0,
9795 text_section->data_offset, text_section, section_sym);
9797 /* an elf symbol of type STT_FILE must be put so that STB_LOCAL
9798 symbols can be safely used */
9799 put_elf_sym(symtab_section, 0, 0,
9800 ELFW(ST_INFO)(STB_LOCAL, STT_FILE), 0,
9801 SHN_ABS, file->filename);
9803 /* define some often used types */
9804 int_type.t = VT_INT;
9806 char_pointer_type.t = VT_BYTE;
9807 mk_pointer(&char_pointer_type);
9809 func_old_type.t = VT_FUNC;
9810 func_old_type.ref = sym_push(SYM_FIELD, &int_type, FUNC_CDECL, FUNC_OLD);
9812 #if defined(TCC_ARM_EABI) && defined(TCC_ARM_VFP)
9813 float_type.t = VT_FLOAT;
9814 double_type.t = VT_DOUBLE;
9816 func_float_type.t = VT_FUNC;
9817 func_float_type.ref = sym_push(SYM_FIELD, &float_type, FUNC_CDECL, FUNC_OLD);
9818 func_double_type.t = VT_FUNC;
9819 func_double_type.ref = sym_push(SYM_FIELD, &double_type, FUNC_CDECL, FUNC_OLD);
9820 #endif
9822 #if 0
9823 /* define 'void *alloca(unsigned int)' builtin function */
9825 Sym *s1;
9827 p = anon_sym++;
9828 sym = sym_push(p, mk_pointer(VT_VOID), FUNC_CDECL, FUNC_NEW);
9829 s1 = sym_push(SYM_FIELD, VT_UNSIGNED | VT_INT, 0, 0);
9830 s1->next = NULL;
9831 sym->next = s1;
9832 sym_push(TOK_alloca, VT_FUNC | (p << VT_STRUCT_SHIFT), VT_CONST, 0);
9834 #endif
9836 define_start = define_stack;
9837 nocode_wanted = 1;
9839 if (setjmp(s1->error_jmp_buf) == 0) {
9840 s1->nb_errors = 0;
9841 s1->error_set_jmp_enabled = 1;
9843 ch = file->buf_ptr[0];
9844 tok_flags = TOK_FLAG_BOL | TOK_FLAG_BOF;
9845 parse_flags = PARSE_FLAG_PREPROCESS | PARSE_FLAG_TOK_NUM;
9846 next();
9847 decl(VT_CONST);
9848 if (tok != TOK_EOF)
9849 expect("declaration");
9851 /* end of translation unit info */
9852 if (do_debug) {
9853 put_stabs_r(NULL, N_SO, 0, 0,
9854 text_section->data_offset, text_section, section_sym);
9857 s1->error_set_jmp_enabled = 0;
9859 /* reset define stack, but leave -Dsymbols (may be incorrect if
9860 they are undefined) */
9861 free_defines(define_start);
9863 gen_inline_functions();
9865 sym_pop(&global_stack, NULL);
9866 sym_pop(&local_stack, NULL);
9868 return s1->nb_errors != 0 ? -1 : 0;
9871 /* Preprocess the current file */
9872 /* XXX: add line and file infos,
9873 * XXX: add options to preserve spaces (partly done, only spaces in macro are
9874 * not preserved)
9876 static int tcc_preprocess(TCCState *s1)
9878 Sym *define_start;
9879 BufferedFile *file_ref;
9880 int token_seen, line_ref;
9882 preprocess_init(s1);
9883 define_start = define_stack;
9884 ch = file->buf_ptr[0];
9886 tok_flags = TOK_FLAG_BOL | TOK_FLAG_BOF;
9887 parse_flags = PARSE_FLAG_ASM_COMMENTS | PARSE_FLAG_PREPROCESS |
9888 PARSE_FLAG_LINEFEED;
9890 token_seen = 0;
9891 line_ref = 0;
9892 file_ref = NULL;
9894 for (;;) {
9895 next();
9896 if (tok == TOK_EOF) {
9897 break;
9898 } else if (tok == TOK_LINEFEED) {
9899 if (!token_seen)
9900 continue;
9901 ++line_ref;
9902 token_seen = 0;
9903 } else if (token_seen) {
9904 fwrite(tok_spaces.data, tok_spaces.size, 1, s1->outfile);
9905 } else {
9906 int d = file->line_num - line_ref;
9907 if (file != file_ref || d < 0 || d >= 8)
9908 fprintf(s1->outfile, "# %d \"%s\"\n", file->line_num, file->filename);
9909 else
9910 while (d)
9911 fputs("\n", s1->outfile), --d;
9912 line_ref = (file_ref = file)->line_num;
9913 token_seen = 1;
9915 fputs(get_tok_str(tok, &tokc), s1->outfile);
9917 free_defines(define_start);
9918 return 0;
9921 #ifdef LIBTCC
9922 int tcc_compile_string(TCCState *s, const char *str)
9924 BufferedFile bf1, *bf = &bf1;
9925 int ret, len;
9926 char *buf;
9928 /* init file structure */
9929 bf->fd = -1;
9930 /* XXX: avoid copying */
9931 len = strlen(str);
9932 buf = tcc_malloc(len + 1);
9933 if (!buf)
9934 return -1;
9935 memcpy(buf, str, len);
9936 buf[len] = CH_EOB;
9937 bf->buf_ptr = buf;
9938 bf->buf_end = buf + len;
9939 pstrcpy(bf->filename, sizeof(bf->filename), "<string>");
9940 bf->line_num = 1;
9941 file = bf;
9942 ret = tcc_compile(s);
9943 file = NULL;
9944 tcc_free(buf);
9946 /* currently, no need to close */
9947 return ret;
9949 #endif
9951 /* define a preprocessor symbol. A value can also be provided with the '=' operator */
9952 void tcc_define_symbol(TCCState *s1, const char *sym, const char *value)
9954 BufferedFile bf1, *bf = &bf1;
9956 pstrcpy(bf->buffer, IO_BUF_SIZE, sym);
9957 pstrcat(bf->buffer, IO_BUF_SIZE, " ");
9958 /* default value */
9959 if (!value)
9960 value = "1";
9961 pstrcat(bf->buffer, IO_BUF_SIZE, value);
9963 /* init file structure */
9964 bf->fd = -1;
9965 bf->buf_ptr = bf->buffer;
9966 bf->buf_end = bf->buffer + strlen(bf->buffer);
9967 *bf->buf_end = CH_EOB;
9968 bf->filename[0] = '\0';
9969 bf->line_num = 1;
9970 file = bf;
9972 s1->include_stack_ptr = s1->include_stack;
9974 /* parse with define parser */
9975 ch = file->buf_ptr[0];
9976 next_nomacro();
9977 parse_define();
9978 file = NULL;
9981 /* undefine a preprocessor symbol */
9982 void tcc_undefine_symbol(TCCState *s1, const char *sym)
9984 TokenSym *ts;
9985 Sym *s;
9986 ts = tok_alloc(sym, strlen(sym));
9987 s = define_find(ts->tok);
9988 /* undefine symbol by putting an invalid name */
9989 if (s)
9990 define_undef(s);
9993 #ifdef CONFIG_TCC_ASM
9995 #ifdef TCC_TARGET_I386
9996 #include "i386-asm.c"
9997 #endif
9998 #include "tccasm.c"
10000 #else
10001 static void asm_instr(void)
10003 error("inline asm() not supported");
10005 static void asm_global_instr(void)
10007 error("inline asm() not supported");
10009 #endif
10011 #include "tccelf.c"
10013 #ifdef TCC_TARGET_COFF
10014 #include "tcccoff.c"
10015 #endif
10017 #ifdef TCC_TARGET_PE
10018 #include "tccpe.c"
10019 #endif
10021 /* print the position in the source file of PC value 'pc' by reading
10022 the stabs debug information */
10023 static void rt_printline(unsigned long wanted_pc)
10025 Stab_Sym *sym, *sym_end;
10026 char func_name[128], last_func_name[128];
10027 unsigned long func_addr, last_pc, pc;
10028 const char *incl_files[INCLUDE_STACK_SIZE];
10029 int incl_index, len, last_line_num, i;
10030 const char *str, *p;
10032 fprintf(stderr, "0x%08lx:", wanted_pc);
10034 func_name[0] = '\0';
10035 func_addr = 0;
10036 incl_index = 0;
10037 last_func_name[0] = '\0';
10038 last_pc = 0xffffffff;
10039 last_line_num = 1;
10040 sym = (Stab_Sym *)stab_section->data + 1;
10041 sym_end = (Stab_Sym *)(stab_section->data + stab_section->data_offset);
10042 while (sym < sym_end) {
10043 switch(sym->n_type) {
10044 /* function start or end */
10045 case N_FUN:
10046 if (sym->n_strx == 0) {
10047 /* we test if between last line and end of function */
10048 pc = sym->n_value + func_addr;
10049 if (wanted_pc >= last_pc && wanted_pc < pc)
10050 goto found;
10051 func_name[0] = '\0';
10052 func_addr = 0;
10053 } else {
10054 str = stabstr_section->data + sym->n_strx;
10055 p = strchr(str, ':');
10056 if (!p) {
10057 pstrcpy(func_name, sizeof(func_name), str);
10058 } else {
10059 len = p - str;
10060 if (len > sizeof(func_name) - 1)
10061 len = sizeof(func_name) - 1;
10062 memcpy(func_name, str, len);
10063 func_name[len] = '\0';
10065 func_addr = sym->n_value;
10067 break;
10068 /* line number info */
10069 case N_SLINE:
10070 pc = sym->n_value + func_addr;
10071 if (wanted_pc >= last_pc && wanted_pc < pc)
10072 goto found;
10073 last_pc = pc;
10074 last_line_num = sym->n_desc;
10075 /* XXX: slow! */
10076 strcpy(last_func_name, func_name);
10077 break;
10078 /* include files */
10079 case N_BINCL:
10080 str = stabstr_section->data + sym->n_strx;
10081 add_incl:
10082 if (incl_index < INCLUDE_STACK_SIZE) {
10083 incl_files[incl_index++] = str;
10085 break;
10086 case N_EINCL:
10087 if (incl_index > 1)
10088 incl_index--;
10089 break;
10090 case N_SO:
10091 if (sym->n_strx == 0) {
10092 incl_index = 0; /* end of translation unit */
10093 } else {
10094 str = stabstr_section->data + sym->n_strx;
10095 /* do not add path */
10096 len = strlen(str);
10097 if (len > 0 && str[len - 1] != '/')
10098 goto add_incl;
10100 break;
10102 sym++;
10105 /* second pass: we try symtab symbols (no line number info) */
10106 incl_index = 0;
10108 ElfW(Sym) *sym, *sym_end;
10109 int type;
10111 sym_end = (ElfW(Sym) *)(symtab_section->data + symtab_section->data_offset);
10112 for(sym = (ElfW(Sym) *)symtab_section->data + 1;
10113 sym < sym_end;
10114 sym++) {
10115 type = ELFW(ST_TYPE)(sym->st_info);
10116 if (type == STT_FUNC) {
10117 if (wanted_pc >= sym->st_value &&
10118 wanted_pc < sym->st_value + sym->st_size) {
10119 pstrcpy(last_func_name, sizeof(last_func_name),
10120 strtab_section->data + sym->st_name);
10121 goto found;
10126 /* did not find any info: */
10127 fprintf(stderr, " ???\n");
10128 return;
10129 found:
10130 if (last_func_name[0] != '\0') {
10131 fprintf(stderr, " %s()", last_func_name);
10133 if (incl_index > 0) {
10134 fprintf(stderr, " (%s:%d",
10135 incl_files[incl_index - 1], last_line_num);
10136 for(i = incl_index - 2; i >= 0; i--)
10137 fprintf(stderr, ", included from %s", incl_files[i]);
10138 fprintf(stderr, ")");
10140 fprintf(stderr, "\n");
10143 #if !defined(_WIN32) && !defined(CONFIG_TCCBOOT)
10145 #ifdef __i386__
10147 /* fix for glibc 2.1 */
10148 #ifndef REG_EIP
10149 #define REG_EIP EIP
10150 #define REG_EBP EBP
10151 #endif
10153 /* return the PC at frame level 'level'. Return non zero if not found */
10154 static int rt_get_caller_pc(unsigned long *paddr,
10155 ucontext_t *uc, int level)
10157 unsigned long fp;
10158 int i;
10160 if (level == 0) {
10161 #if defined(__FreeBSD__)
10162 *paddr = uc->uc_mcontext.mc_eip;
10163 #elif defined(__dietlibc__)
10164 *paddr = uc->uc_mcontext.eip;
10165 #else
10166 *paddr = uc->uc_mcontext.gregs[REG_EIP];
10167 #endif
10168 return 0;
10169 } else {
10170 #if defined(__FreeBSD__)
10171 fp = uc->uc_mcontext.mc_ebp;
10172 #elif defined(__dietlibc__)
10173 fp = uc->uc_mcontext.ebp;
10174 #else
10175 fp = uc->uc_mcontext.gregs[REG_EBP];
10176 #endif
10177 for(i=1;i<level;i++) {
10178 /* XXX: check address validity with program info */
10179 if (fp <= 0x1000 || fp >= 0xc0000000)
10180 return -1;
10181 fp = ((unsigned long *)fp)[0];
10183 *paddr = ((unsigned long *)fp)[1];
10184 return 0;
10187 #elif defined(__x86_64__)
10188 /* return the PC at frame level 'level'. Return non zero if not found */
10189 static int rt_get_caller_pc(unsigned long *paddr,
10190 ucontext_t *uc, int level)
10192 unsigned long fp;
10193 int i;
10195 if (level == 0) {
10196 /* XXX: only support linux */
10197 *paddr = uc->uc_mcontext.gregs[REG_RIP];
10198 return 0;
10199 } else {
10200 fp = uc->uc_mcontext.gregs[REG_RBP];
10201 for(i=1;i<level;i++) {
10202 /* XXX: check address validity with program info */
10203 if (fp <= 0x1000)
10204 return -1;
10205 fp = ((unsigned long *)fp)[0];
10207 *paddr = ((unsigned long *)fp)[1];
10208 return 0;
10211 #else
10213 #warning add arch specific rt_get_caller_pc()
10215 static int rt_get_caller_pc(unsigned long *paddr,
10216 ucontext_t *uc, int level)
10218 return -1;
10220 #endif
10222 /* emit a run time error at position 'pc' */
10223 void rt_error(ucontext_t *uc, const char *fmt, ...)
10225 va_list ap;
10226 unsigned long pc;
10227 int i;
10229 va_start(ap, fmt);
10230 fprintf(stderr, "Runtime error: ");
10231 vfprintf(stderr, fmt, ap);
10232 fprintf(stderr, "\n");
10233 for(i=0;i<num_callers;i++) {
10234 if (rt_get_caller_pc(&pc, uc, i) < 0)
10235 break;
10236 if (i == 0)
10237 fprintf(stderr, "at ");
10238 else
10239 fprintf(stderr, "by ");
10240 rt_printline(pc);
10242 exit(255);
10243 va_end(ap);
10246 /* signal handler for fatal errors */
10247 static void sig_error(int signum, siginfo_t *siginf, void *puc)
10249 ucontext_t *uc = puc;
10251 switch(signum) {
10252 case SIGFPE:
10253 switch(siginf->si_code) {
10254 case FPE_INTDIV:
10255 case FPE_FLTDIV:
10256 rt_error(uc, "division by zero");
10257 break;
10258 default:
10259 rt_error(uc, "floating point exception");
10260 break;
10262 break;
10263 case SIGBUS:
10264 case SIGSEGV:
10265 if (rt_bound_error_msg && *rt_bound_error_msg)
10266 rt_error(uc, *rt_bound_error_msg);
10267 else
10268 rt_error(uc, "dereferencing invalid pointer");
10269 break;
10270 case SIGILL:
10271 rt_error(uc, "illegal instruction");
10272 break;
10273 case SIGABRT:
10274 rt_error(uc, "abort() called");
10275 break;
10276 default:
10277 rt_error(uc, "caught signal %d", signum);
10278 break;
10280 exit(255);
10282 #endif
10284 /* do all relocations (needed before using tcc_get_symbol()) */
10285 int tcc_relocate(TCCState *s1)
10287 Section *s;
10288 int i;
10290 s1->nb_errors = 0;
10292 #ifdef TCC_TARGET_PE
10293 pe_add_runtime(s1);
10294 #else
10295 tcc_add_runtime(s1);
10296 #endif
10298 relocate_common_syms();
10300 tcc_add_linker_symbols(s1);
10301 #ifndef TCC_TARGET_PE
10302 build_got_entries(s1);
10303 #endif
10305 #ifdef TCC_TARGET_X86_64
10307 /* If the distance of two sections are longer than 32bit, our
10308 program will crash. Let's combine all sections which are
10309 necessary to run the program into a single buffer in the
10310 text section */
10311 unsigned char *p;
10312 int size;
10313 /* calculate the size of buffers we need */
10314 size = 0;
10315 for(i = 1; i < s1->nb_sections; i++) {
10316 s = s1->sections[i];
10317 if (s->sh_flags & SHF_ALLOC) {
10318 size += s->data_offset;
10321 /* double the size of the buffer for got and plt entries
10322 XXX: calculate exact size for them? */
10323 section_realloc(text_section, size * 2);
10324 p = text_section->data + text_section->data_offset;
10325 /* we will put got and plt after this offset */
10326 text_section->data_offset = size;
10328 for(i = 1; i < s1->nb_sections; i++) {
10329 s = s1->sections[i];
10330 if (s->sh_flags & SHF_ALLOC) {
10331 if (s != text_section && s->data_offset) {
10332 if (s->sh_type == SHT_NOBITS) {
10333 /* for bss section */
10334 memset(p, 0, s->data_offset);
10335 } else {
10336 memcpy(p, s->data, s->data_offset);
10337 tcc_free(s->data);
10339 s->data = p;
10340 /* we won't free s->data for this section */
10341 s->data_allocated = 0;
10342 p += s->data_offset;
10344 s->sh_addr = (unsigned long)s->data;
10348 #else
10349 /* compute relocation address : section are relocated in place. We
10350 also alloc the bss space */
10351 for(i = 1; i < s1->nb_sections; i++) {
10352 s = s1->sections[i];
10353 if (s->sh_flags & SHF_ALLOC) {
10354 if (s->sh_type == SHT_NOBITS)
10355 s->data = tcc_mallocz(s->data_offset);
10356 s->sh_addr = (unsigned long)s->data;
10359 #endif
10361 relocate_syms(s1, 1);
10363 if (s1->nb_errors != 0)
10364 return -1;
10366 /* relocate each section */
10367 for(i = 1; i < s1->nb_sections; i++) {
10368 s = s1->sections[i];
10369 if (s->reloc)
10370 relocate_section(s1, s);
10373 /* mark executable sections as executable in memory */
10374 for(i = 1; i < s1->nb_sections; i++) {
10375 s = s1->sections[i];
10376 if ((s->sh_flags & (SHF_ALLOC | SHF_EXECINSTR)) ==
10377 (SHF_ALLOC | SHF_EXECINSTR))
10378 set_pages_executable(s->data, s->data_offset);
10380 return 0;
10383 /* launch the compiled program with the given arguments */
10384 int tcc_run(TCCState *s1, int argc, char **argv)
10386 int (*prog_main)(int, char **);
10388 if (tcc_relocate(s1) < 0)
10389 return -1;
10391 prog_main = tcc_get_symbol_err(s1, "main");
10393 if (do_debug) {
10394 #if defined(_WIN32) || defined(CONFIG_TCCBOOT)
10395 error("debug mode currently not available for Windows");
10396 #else
10397 struct sigaction sigact;
10398 /* install TCC signal handlers to print debug info on fatal
10399 runtime errors */
10400 sigact.sa_flags = SA_SIGINFO | SA_RESETHAND;
10401 sigact.sa_sigaction = sig_error;
10402 sigemptyset(&sigact.sa_mask);
10403 sigaction(SIGFPE, &sigact, NULL);
10404 sigaction(SIGILL, &sigact, NULL);
10405 sigaction(SIGSEGV, &sigact, NULL);
10406 sigaction(SIGBUS, &sigact, NULL);
10407 sigaction(SIGABRT, &sigact, NULL);
10408 #endif
10411 #ifdef CONFIG_TCC_BCHECK
10412 if (do_bounds_check) {
10413 void (*bound_init)(void);
10415 /* set error function */
10416 rt_bound_error_msg = (void *)tcc_get_symbol_err(s1,
10417 "__bound_error_msg");
10419 /* XXX: use .init section so that it also work in binary ? */
10420 bound_init = (void *)tcc_get_symbol_err(s1, "__bound_init");
10421 bound_init();
10423 #endif
10424 return (*prog_main)(argc, argv);
10427 void tcc_memstats(void)
10429 #ifdef MEM_DEBUG
10430 printf("memory in use: %d\n", mem_cur_size);
10431 #endif
10434 static void tcc_cleanup(void)
10436 int i, n;
10438 if (NULL == tcc_state)
10439 return;
10440 tcc_state = NULL;
10442 /* free -D defines */
10443 free_defines(NULL);
10445 /* free tokens */
10446 n = tok_ident - TOK_IDENT;
10447 for(i = 0; i < n; i++)
10448 tcc_free(table_ident[i]);
10449 tcc_free(table_ident);
10451 /* free sym_pools */
10452 dynarray_reset(&sym_pools, &nb_sym_pools);
10453 /* string buffer */
10454 cstr_free(&tokcstr);
10455 /* reset symbol stack */
10456 sym_free_first = NULL;
10457 /* cleanup from error/setjmp */
10458 macro_ptr = NULL;
10461 TCCState *tcc_new(void)
10463 const char *p, *r;
10464 TCCState *s;
10465 TokenSym *ts;
10466 int i, c;
10468 tcc_cleanup();
10470 s = tcc_mallocz(sizeof(TCCState));
10471 if (!s)
10472 return NULL;
10473 tcc_state = s;
10474 s->output_type = TCC_OUTPUT_MEMORY;
10476 /* init isid table */
10477 for(i=CH_EOF;i<256;i++)
10478 isidnum_table[i-CH_EOF] = isid(i) || isnum(i);
10480 /* add all tokens */
10481 table_ident = NULL;
10482 memset(hash_ident, 0, TOK_HASH_SIZE * sizeof(TokenSym *));
10484 tok_ident = TOK_IDENT;
10485 p = tcc_keywords;
10486 while (*p) {
10487 r = p;
10488 for(;;) {
10489 c = *r++;
10490 if (c == '\0')
10491 break;
10493 ts = tok_alloc(p, r - p - 1);
10494 p = r;
10497 /* we add dummy defines for some special macros to speed up tests
10498 and to have working defined() */
10499 define_push(TOK___LINE__, MACRO_OBJ, NULL, NULL);
10500 define_push(TOK___FILE__, MACRO_OBJ, NULL, NULL);
10501 define_push(TOK___DATE__, MACRO_OBJ, NULL, NULL);
10502 define_push(TOK___TIME__, MACRO_OBJ, NULL, NULL);
10504 /* standard defines */
10505 tcc_define_symbol(s, "__STDC__", NULL);
10506 tcc_define_symbol(s, "__STDC_VERSION__", "199901L");
10507 #if defined(TCC_TARGET_I386)
10508 tcc_define_symbol(s, "__i386__", NULL);
10509 #endif
10510 #if defined(TCC_TARGET_X86_64)
10511 tcc_define_symbol(s, "__x86_64__", NULL);
10512 #endif
10513 #if defined(TCC_TARGET_ARM)
10514 tcc_define_symbol(s, "__ARM_ARCH_4__", NULL);
10515 tcc_define_symbol(s, "__arm_elf__", NULL);
10516 tcc_define_symbol(s, "__arm_elf", NULL);
10517 tcc_define_symbol(s, "arm_elf", NULL);
10518 tcc_define_symbol(s, "__arm__", NULL);
10519 tcc_define_symbol(s, "__arm", NULL);
10520 tcc_define_symbol(s, "arm", NULL);
10521 tcc_define_symbol(s, "__APCS_32__", NULL);
10522 #endif
10523 #ifdef TCC_TARGET_PE
10524 tcc_define_symbol(s, "_WIN32", NULL);
10525 #else
10526 tcc_define_symbol(s, "__unix__", NULL);
10527 tcc_define_symbol(s, "__unix", NULL);
10528 #if defined(__linux)
10529 tcc_define_symbol(s, "__linux__", NULL);
10530 tcc_define_symbol(s, "__linux", NULL);
10531 #endif
10532 #endif
10533 /* tiny C specific defines */
10534 tcc_define_symbol(s, "__TINYC__", NULL);
10536 /* tiny C & gcc defines */
10537 tcc_define_symbol(s, "__SIZE_TYPE__", "unsigned int");
10538 tcc_define_symbol(s, "__PTRDIFF_TYPE__", "int");
10539 #ifdef TCC_TARGET_PE
10540 tcc_define_symbol(s, "__WCHAR_TYPE__", "unsigned short");
10541 #else
10542 tcc_define_symbol(s, "__WCHAR_TYPE__", "int");
10543 #endif
10545 #ifndef TCC_TARGET_PE
10546 /* default library paths */
10547 tcc_add_library_path(s, CONFIG_SYSROOT "/usr/local/lib");
10548 tcc_add_library_path(s, CONFIG_SYSROOT "/usr/lib");
10549 tcc_add_library_path(s, CONFIG_SYSROOT "/lib");
10550 #endif
10552 /* no section zero */
10553 dynarray_add((void ***)&s->sections, &s->nb_sections, NULL);
10555 /* create standard sections */
10556 text_section = new_section(s, ".text", SHT_PROGBITS, SHF_ALLOC | SHF_EXECINSTR);
10557 data_section = new_section(s, ".data", SHT_PROGBITS, SHF_ALLOC | SHF_WRITE);
10558 bss_section = new_section(s, ".bss", SHT_NOBITS, SHF_ALLOC | SHF_WRITE);
10560 /* symbols are always generated for linking stage */
10561 symtab_section = new_symtab(s, ".symtab", SHT_SYMTAB, 0,
10562 ".strtab",
10563 ".hashtab", SHF_PRIVATE);
10564 strtab_section = symtab_section->link;
10566 /* private symbol table for dynamic symbols */
10567 s->dynsymtab_section = new_symtab(s, ".dynsymtab", SHT_SYMTAB, SHF_PRIVATE,
10568 ".dynstrtab",
10569 ".dynhashtab", SHF_PRIVATE);
10570 s->alacarte_link = 1;
10572 #ifdef CHAR_IS_UNSIGNED
10573 s->char_is_unsigned = 1;
10574 #endif
10575 #if defined(TCC_TARGET_PE) && 0
10576 /* XXX: currently the PE linker is not ready to support that */
10577 s->leading_underscore = 1;
10578 #endif
10579 return s;
10582 void tcc_delete(TCCState *s1)
10584 int i;
10586 tcc_cleanup();
10588 /* free all sections */
10589 for(i = 1; i < s1->nb_sections; i++)
10590 free_section(s1->sections[i]);
10591 dynarray_reset(&s1->sections, &s1->nb_sections);
10593 for(i = 0; i < s1->nb_priv_sections; i++)
10594 free_section(s1->priv_sections[i]);
10595 dynarray_reset(&s1->priv_sections, &s1->nb_priv_sections);
10597 /* free any loaded DLLs */
10598 for ( i = 0; i < s1->nb_loaded_dlls; i++) {
10599 DLLReference *ref = s1->loaded_dlls[i];
10600 if ( ref->handle )
10601 dlclose(ref->handle);
10604 /* free loaded dlls array */
10605 dynarray_reset(&s1->loaded_dlls, &s1->nb_loaded_dlls);
10607 /* free library paths */
10608 dynarray_reset(&s1->library_paths, &s1->nb_library_paths);
10610 /* free include paths */
10611 dynarray_reset(&s1->cached_includes, &s1->nb_cached_includes);
10612 dynarray_reset(&s1->include_paths, &s1->nb_include_paths);
10613 dynarray_reset(&s1->sysinclude_paths, &s1->nb_sysinclude_paths);
10615 tcc_free(s1);
10618 int tcc_add_include_path(TCCState *s1, const char *pathname)
10620 char *pathname1;
10622 pathname1 = tcc_strdup(pathname);
10623 dynarray_add((void ***)&s1->include_paths, &s1->nb_include_paths, pathname1);
10624 return 0;
10627 int tcc_add_sysinclude_path(TCCState *s1, const char *pathname)
10629 char *pathname1;
10631 pathname1 = tcc_strdup(pathname);
10632 dynarray_add((void ***)&s1->sysinclude_paths, &s1->nb_sysinclude_paths, pathname1);
10633 return 0;
10636 static int tcc_add_file_internal(TCCState *s1, const char *filename, int flags)
10638 const char *ext;
10639 ElfW(Ehdr) ehdr;
10640 int fd, ret;
10641 BufferedFile *saved_file;
10643 /* find source file type with extension */
10644 ext = tcc_fileextension(filename);
10645 if (ext[0])
10646 ext++;
10648 /* open the file */
10649 saved_file = file;
10650 file = tcc_open(s1, filename);
10651 if (!file) {
10652 if (flags & AFF_PRINT_ERROR) {
10653 error_noabort("file '%s' not found", filename);
10655 ret = -1;
10656 goto fail1;
10659 if (flags & AFF_PREPROCESS) {
10660 ret = tcc_preprocess(s1);
10661 } else if (!ext[0] || !PATHCMP(ext, "c")) {
10662 /* C file assumed */
10663 ret = tcc_compile(s1);
10664 } else
10665 #ifdef CONFIG_TCC_ASM
10666 if (!strcmp(ext, "S")) {
10667 /* preprocessed assembler */
10668 ret = tcc_assemble(s1, 1);
10669 } else if (!strcmp(ext, "s")) {
10670 /* non preprocessed assembler */
10671 ret = tcc_assemble(s1, 0);
10672 } else
10673 #endif
10674 #ifdef TCC_TARGET_PE
10675 if (!PATHCMP(ext, "def")) {
10676 ret = pe_load_def_file(s1, file->fd);
10677 } else
10678 #endif
10680 fd = file->fd;
10681 /* assume executable format: auto guess file type */
10682 ret = read(fd, &ehdr, sizeof(ehdr));
10683 lseek(fd, 0, SEEK_SET);
10684 if (ret <= 0) {
10685 error_noabort("could not read header");
10686 goto fail;
10687 } else if (ret != sizeof(ehdr)) {
10688 goto try_load_script;
10691 if (ehdr.e_ident[0] == ELFMAG0 &&
10692 ehdr.e_ident[1] == ELFMAG1 &&
10693 ehdr.e_ident[2] == ELFMAG2 &&
10694 ehdr.e_ident[3] == ELFMAG3) {
10695 file->line_num = 0; /* do not display line number if error */
10696 if (ehdr.e_type == ET_REL) {
10697 ret = tcc_load_object_file(s1, fd, 0);
10698 } else if (ehdr.e_type == ET_DYN) {
10699 if (s1->output_type == TCC_OUTPUT_MEMORY) {
10700 #ifdef TCC_TARGET_PE
10701 ret = -1;
10702 #else
10703 void *h;
10704 h = dlopen(filename, RTLD_GLOBAL | RTLD_LAZY);
10705 if (h)
10706 ret = 0;
10707 else
10708 ret = -1;
10709 #endif
10710 } else {
10711 ret = tcc_load_dll(s1, fd, filename,
10712 (flags & AFF_REFERENCED_DLL) != 0);
10714 } else {
10715 error_noabort("unrecognized ELF file");
10716 goto fail;
10718 } else if (memcmp((char *)&ehdr, ARMAG, 8) == 0) {
10719 file->line_num = 0; /* do not display line number if error */
10720 ret = tcc_load_archive(s1, fd);
10721 } else
10722 #ifdef TCC_TARGET_COFF
10723 if (*(uint16_t *)(&ehdr) == COFF_C67_MAGIC) {
10724 ret = tcc_load_coff(s1, fd);
10725 } else
10726 #endif
10727 #ifdef TCC_TARGET_PE
10728 if (pe_test_res_file(&ehdr, ret)) {
10729 ret = pe_load_res_file(s1, fd);
10730 } else
10731 #endif
10733 /* as GNU ld, consider it is an ld script if not recognized */
10734 try_load_script:
10735 ret = tcc_load_ldscript(s1);
10736 if (ret < 0) {
10737 error_noabort("unrecognized file type");
10738 goto fail;
10742 the_end:
10743 tcc_close(file);
10744 fail1:
10745 file = saved_file;
10746 return ret;
10747 fail:
10748 ret = -1;
10749 goto the_end;
10752 int tcc_add_file(TCCState *s, const char *filename)
10754 return tcc_add_file_internal(s, filename, AFF_PRINT_ERROR);
10757 int tcc_add_library_path(TCCState *s, const char *pathname)
10759 char *pathname1;
10761 pathname1 = tcc_strdup(pathname);
10762 dynarray_add((void ***)&s->library_paths, &s->nb_library_paths, pathname1);
10763 return 0;
10766 /* find and load a dll. Return non zero if not found */
10767 /* XXX: add '-rpath' option support ? */
10768 static int tcc_add_dll(TCCState *s, const char *filename, int flags)
10770 char buf[1024];
10771 int i;
10773 for(i = 0; i < s->nb_library_paths; i++) {
10774 snprintf(buf, sizeof(buf), "%s/%s",
10775 s->library_paths[i], filename);
10776 if (tcc_add_file_internal(s, buf, flags) == 0)
10777 return 0;
10779 return -1;
10782 /* the library name is the same as the argument of the '-l' option */
10783 int tcc_add_library(TCCState *s, const char *libraryname)
10785 char buf[1024];
10786 int i;
10788 /* first we look for the dynamic library if not static linking */
10789 if (!s->static_link) {
10790 #ifdef TCC_TARGET_PE
10791 snprintf(buf, sizeof(buf), "%s.def", libraryname);
10792 #else
10793 snprintf(buf, sizeof(buf), "lib%s.so", libraryname);
10794 #endif
10795 if (tcc_add_dll(s, buf, 0) == 0)
10796 return 0;
10799 /* then we look for the static library */
10800 for(i = 0; i < s->nb_library_paths; i++) {
10801 snprintf(buf, sizeof(buf), "%s/lib%s.a",
10802 s->library_paths[i], libraryname);
10803 if (tcc_add_file_internal(s, buf, 0) == 0)
10804 return 0;
10806 return -1;
10809 int tcc_add_symbol(TCCState *s, const char *name, unsigned long val)
10811 add_elf_sym(symtab_section, val, 0,
10812 ELFW(ST_INFO)(STB_GLOBAL, STT_NOTYPE), 0,
10813 SHN_ABS, name);
10814 return 0;
10817 int tcc_set_output_type(TCCState *s, int output_type)
10819 char buf[1024];
10821 s->output_type = output_type;
10823 if (!s->nostdinc) {
10824 /* default include paths */
10825 /* XXX: reverse order needed if -isystem support */
10826 #ifndef TCC_TARGET_PE
10827 tcc_add_sysinclude_path(s, CONFIG_SYSROOT "/usr/local/include");
10828 tcc_add_sysinclude_path(s, CONFIG_SYSROOT "/usr/include");
10829 #endif
10830 snprintf(buf, sizeof(buf), "%s/include", tcc_lib_path);
10831 tcc_add_sysinclude_path(s, buf);
10832 #ifdef TCC_TARGET_PE
10833 snprintf(buf, sizeof(buf), "%s/include/winapi", tcc_lib_path);
10834 tcc_add_sysinclude_path(s, buf);
10835 #endif
10838 /* if bound checking, then add corresponding sections */
10839 #ifdef CONFIG_TCC_BCHECK
10840 if (do_bounds_check) {
10841 /* define symbol */
10842 tcc_define_symbol(s, "__BOUNDS_CHECKING_ON", NULL);
10843 /* create bounds sections */
10844 bounds_section = new_section(s, ".bounds",
10845 SHT_PROGBITS, SHF_ALLOC);
10846 lbounds_section = new_section(s, ".lbounds",
10847 SHT_PROGBITS, SHF_ALLOC);
10849 #endif
10851 if (s->char_is_unsigned) {
10852 tcc_define_symbol(s, "__CHAR_UNSIGNED__", NULL);
10855 /* add debug sections */
10856 if (do_debug) {
10857 /* stab symbols */
10858 stab_section = new_section(s, ".stab", SHT_PROGBITS, 0);
10859 stab_section->sh_entsize = sizeof(Stab_Sym);
10860 stabstr_section = new_section(s, ".stabstr", SHT_STRTAB, 0);
10861 put_elf_str(stabstr_section, "");
10862 stab_section->link = stabstr_section;
10863 /* put first entry */
10864 put_stabs("", 0, 0, 0, 0);
10867 /* add libc crt1/crti objects */
10868 #ifndef TCC_TARGET_PE
10869 if ((output_type == TCC_OUTPUT_EXE || output_type == TCC_OUTPUT_DLL) &&
10870 !s->nostdlib) {
10871 if (output_type != TCC_OUTPUT_DLL)
10872 tcc_add_file(s, CONFIG_TCC_CRT_PREFIX "/crt1.o");
10873 tcc_add_file(s, CONFIG_TCC_CRT_PREFIX "/crti.o");
10875 #endif
10877 #ifdef TCC_TARGET_PE
10878 snprintf(buf, sizeof(buf), "%s/lib", tcc_lib_path);
10879 tcc_add_library_path(s, buf);
10880 #endif
10882 return 0;
10885 #define WD_ALL 0x0001 /* warning is activated when using -Wall */
10886 #define FD_INVERT 0x0002 /* invert value before storing */
10888 typedef struct FlagDef {
10889 uint16_t offset;
10890 uint16_t flags;
10891 const char *name;
10892 } FlagDef;
10894 static const FlagDef warning_defs[] = {
10895 { offsetof(TCCState, warn_unsupported), 0, "unsupported" },
10896 { offsetof(TCCState, warn_write_strings), 0, "write-strings" },
10897 { offsetof(TCCState, warn_error), 0, "error" },
10898 { offsetof(TCCState, warn_implicit_function_declaration), WD_ALL,
10899 "implicit-function-declaration" },
10902 static int set_flag(TCCState *s, const FlagDef *flags, int nb_flags,
10903 const char *name, int value)
10905 int i;
10906 const FlagDef *p;
10907 const char *r;
10909 r = name;
10910 if (r[0] == 'n' && r[1] == 'o' && r[2] == '-') {
10911 r += 3;
10912 value = !value;
10914 for(i = 0, p = flags; i < nb_flags; i++, p++) {
10915 if (!strcmp(r, p->name))
10916 goto found;
10918 return -1;
10919 found:
10920 if (p->flags & FD_INVERT)
10921 value = !value;
10922 *(int *)((uint8_t *)s + p->offset) = value;
10923 return 0;
10927 /* set/reset a warning */
10928 int tcc_set_warning(TCCState *s, const char *warning_name, int value)
10930 int i;
10931 const FlagDef *p;
10933 if (!strcmp(warning_name, "all")) {
10934 for(i = 0, p = warning_defs; i < countof(warning_defs); i++, p++) {
10935 if (p->flags & WD_ALL)
10936 *(int *)((uint8_t *)s + p->offset) = 1;
10938 return 0;
10939 } else {
10940 return set_flag(s, warning_defs, countof(warning_defs),
10941 warning_name, value);
10945 static const FlagDef flag_defs[] = {
10946 { offsetof(TCCState, char_is_unsigned), 0, "unsigned-char" },
10947 { offsetof(TCCState, char_is_unsigned), FD_INVERT, "signed-char" },
10948 { offsetof(TCCState, nocommon), FD_INVERT, "common" },
10949 { offsetof(TCCState, leading_underscore), 0, "leading-underscore" },
10952 /* set/reset a flag */
10953 int tcc_set_flag(TCCState *s, const char *flag_name, int value)
10955 return set_flag(s, flag_defs, countof(flag_defs),
10956 flag_name, value);
10959 #if !defined(LIBTCC)
10961 static int64_t getclock_us(void)
10963 #ifdef _WIN32
10964 struct _timeb tb;
10965 _ftime(&tb);
10966 return (tb.time * 1000LL + tb.millitm) * 1000LL;
10967 #else
10968 struct timeval tv;
10969 gettimeofday(&tv, NULL);
10970 return tv.tv_sec * 1000000LL + tv.tv_usec;
10971 #endif
10974 void help(void)
10976 printf("tcc version " TCC_VERSION " - Tiny C Compiler - Copyright (C) 2001-2006 Fabrice Bellard\n"
10977 "usage: tcc [-v] [-c] [-o outfile] [-Bdir] [-bench] [-Idir] [-Dsym[=val]] [-Usym]\n"
10978 " [-Wwarn] [-g] [-b] [-bt N] [-Ldir] [-llib] [-shared] [-soname name]\n"
10979 " [-static] [infile1 infile2...] [-run infile args...]\n"
10980 "\n"
10981 "General options:\n"
10982 " -v display current version, increase verbosity\n"
10983 " -c compile only - generate an object file\n"
10984 " -o outfile set output filename\n"
10985 " -Bdir set tcc internal library path\n"
10986 " -bench output compilation statistics\n"
10987 " -run run compiled source\n"
10988 " -fflag set or reset (with 'no-' prefix) 'flag' (see man page)\n"
10989 " -Wwarning set or reset (with 'no-' prefix) 'warning' (see man page)\n"
10990 " -w disable all warnings\n"
10991 "Preprocessor options:\n"
10992 " -E preprocess only\n"
10993 " -Idir add include path 'dir'\n"
10994 " -Dsym[=val] define 'sym' with value 'val'\n"
10995 " -Usym undefine 'sym'\n"
10996 "Linker options:\n"
10997 " -Ldir add library path 'dir'\n"
10998 " -llib link with dynamic or static library 'lib'\n"
10999 " -shared generate a shared library\n"
11000 " -soname set name for shared library to be used at runtime\n"
11001 " -static static linking\n"
11002 " -rdynamic export all global symbols to dynamic linker\n"
11003 " -r generate (relocatable) object file\n"
11004 "Debugger options:\n"
11005 " -g generate runtime debug info\n"
11006 #ifdef CONFIG_TCC_BCHECK
11007 " -b compile with built-in memory and bounds checker (implies -g)\n"
11008 #endif
11009 " -bt N show N callers in stack traces\n"
11013 #define TCC_OPTION_HAS_ARG 0x0001
11014 #define TCC_OPTION_NOSEP 0x0002 /* cannot have space before option and arg */
11016 typedef struct TCCOption {
11017 const char *name;
11018 uint16_t index;
11019 uint16_t flags;
11020 } TCCOption;
11022 enum {
11023 TCC_OPTION_HELP,
11024 TCC_OPTION_I,
11025 TCC_OPTION_D,
11026 TCC_OPTION_U,
11027 TCC_OPTION_L,
11028 TCC_OPTION_B,
11029 TCC_OPTION_l,
11030 TCC_OPTION_bench,
11031 TCC_OPTION_bt,
11032 TCC_OPTION_b,
11033 TCC_OPTION_g,
11034 TCC_OPTION_c,
11035 TCC_OPTION_static,
11036 TCC_OPTION_shared,
11037 TCC_OPTION_soname,
11038 TCC_OPTION_o,
11039 TCC_OPTION_r,
11040 TCC_OPTION_Wl,
11041 TCC_OPTION_W,
11042 TCC_OPTION_O,
11043 TCC_OPTION_m,
11044 TCC_OPTION_f,
11045 TCC_OPTION_nostdinc,
11046 TCC_OPTION_nostdlib,
11047 TCC_OPTION_print_search_dirs,
11048 TCC_OPTION_rdynamic,
11049 TCC_OPTION_run,
11050 TCC_OPTION_v,
11051 TCC_OPTION_w,
11052 TCC_OPTION_pipe,
11053 TCC_OPTION_E,
11056 static const TCCOption tcc_options[] = {
11057 { "h", TCC_OPTION_HELP, 0 },
11058 { "?", TCC_OPTION_HELP, 0 },
11059 { "I", TCC_OPTION_I, TCC_OPTION_HAS_ARG },
11060 { "D", TCC_OPTION_D, TCC_OPTION_HAS_ARG },
11061 { "U", TCC_OPTION_U, TCC_OPTION_HAS_ARG },
11062 { "L", TCC_OPTION_L, TCC_OPTION_HAS_ARG },
11063 { "B", TCC_OPTION_B, TCC_OPTION_HAS_ARG },
11064 { "l", TCC_OPTION_l, TCC_OPTION_HAS_ARG | TCC_OPTION_NOSEP },
11065 { "bench", TCC_OPTION_bench, 0 },
11066 { "bt", TCC_OPTION_bt, TCC_OPTION_HAS_ARG },
11067 #ifdef CONFIG_TCC_BCHECK
11068 { "b", TCC_OPTION_b, 0 },
11069 #endif
11070 { "g", TCC_OPTION_g, TCC_OPTION_HAS_ARG | TCC_OPTION_NOSEP },
11071 { "c", TCC_OPTION_c, 0 },
11072 { "static", TCC_OPTION_static, 0 },
11073 { "shared", TCC_OPTION_shared, 0 },
11074 { "soname", TCC_OPTION_soname, TCC_OPTION_HAS_ARG },
11075 { "o", TCC_OPTION_o, TCC_OPTION_HAS_ARG },
11076 { "run", TCC_OPTION_run, TCC_OPTION_HAS_ARG | TCC_OPTION_NOSEP },
11077 { "rdynamic", TCC_OPTION_rdynamic, 0 },
11078 { "r", TCC_OPTION_r, 0 },
11079 { "Wl,", TCC_OPTION_Wl, TCC_OPTION_HAS_ARG | TCC_OPTION_NOSEP },
11080 { "W", TCC_OPTION_W, TCC_OPTION_HAS_ARG | TCC_OPTION_NOSEP },
11081 { "O", TCC_OPTION_O, TCC_OPTION_HAS_ARG | TCC_OPTION_NOSEP },
11082 { "m", TCC_OPTION_m, TCC_OPTION_HAS_ARG },
11083 { "f", TCC_OPTION_f, TCC_OPTION_HAS_ARG | TCC_OPTION_NOSEP },
11084 { "nostdinc", TCC_OPTION_nostdinc, 0 },
11085 { "nostdlib", TCC_OPTION_nostdlib, 0 },
11086 { "print-search-dirs", TCC_OPTION_print_search_dirs, 0 },
11087 { "v", TCC_OPTION_v, TCC_OPTION_HAS_ARG | TCC_OPTION_NOSEP },
11088 { "w", TCC_OPTION_w, 0 },
11089 { "pipe", TCC_OPTION_pipe, 0},
11090 { "E", TCC_OPTION_E, 0},
11091 { NULL },
11094 /* convert 'str' into an array of space separated strings */
11095 static int expand_args(char ***pargv, const char *str)
11097 const char *s1;
11098 char **argv, *arg;
11099 int argc, len;
11101 argc = 0;
11102 argv = NULL;
11103 for(;;) {
11104 while (is_space(*str))
11105 str++;
11106 if (*str == '\0')
11107 break;
11108 s1 = str;
11109 while (*str != '\0' && !is_space(*str))
11110 str++;
11111 len = str - s1;
11112 arg = tcc_malloc(len + 1);
11113 memcpy(arg, s1, len);
11114 arg[len] = '\0';
11115 dynarray_add((void ***)&argv, &argc, arg);
11117 *pargv = argv;
11118 return argc;
11121 static char **files;
11122 static int nb_files, nb_libraries;
11123 static int multiple_files;
11124 static int print_search_dirs;
11125 static int output_type;
11126 static int reloc_output;
11127 static const char *outfile;
11129 int parse_args(TCCState *s, int argc, char **argv)
11131 int optind;
11132 const TCCOption *popt;
11133 const char *optarg, *p1, *r1;
11134 char *r;
11136 optind = 0;
11137 while (optind < argc) {
11139 r = argv[optind++];
11140 if (r[0] != '-' || r[1] == '\0') {
11141 /* add a new file */
11142 dynarray_add((void ***)&files, &nb_files, r);
11143 if (!multiple_files) {
11144 optind--;
11145 /* argv[0] will be this file */
11146 break;
11148 } else {
11149 /* find option in table (match only the first chars */
11150 popt = tcc_options;
11151 for(;;) {
11152 p1 = popt->name;
11153 if (p1 == NULL)
11154 error("invalid option -- '%s'", r);
11155 r1 = r + 1;
11156 for(;;) {
11157 if (*p1 == '\0')
11158 goto option_found;
11159 if (*r1 != *p1)
11160 break;
11161 p1++;
11162 r1++;
11164 popt++;
11166 option_found:
11167 if (popt->flags & TCC_OPTION_HAS_ARG) {
11168 if (*r1 != '\0' || (popt->flags & TCC_OPTION_NOSEP)) {
11169 optarg = r1;
11170 } else {
11171 if (optind >= argc)
11172 error("argument to '%s' is missing", r);
11173 optarg = argv[optind++];
11175 } else {
11176 if (*r1 != '\0')
11177 return 0;
11178 optarg = NULL;
11181 switch(popt->index) {
11182 case TCC_OPTION_HELP:
11183 return 0;
11185 case TCC_OPTION_I:
11186 if (tcc_add_include_path(s, optarg) < 0)
11187 error("too many include paths");
11188 break;
11189 case TCC_OPTION_D:
11191 char *sym, *value;
11192 sym = (char *)optarg;
11193 value = strchr(sym, '=');
11194 if (value) {
11195 *value = '\0';
11196 value++;
11198 tcc_define_symbol(s, sym, value);
11200 break;
11201 case TCC_OPTION_U:
11202 tcc_undefine_symbol(s, optarg);
11203 break;
11204 case TCC_OPTION_L:
11205 tcc_add_library_path(s, optarg);
11206 break;
11207 case TCC_OPTION_B:
11208 /* set tcc utilities path (mainly for tcc development) */
11209 tcc_lib_path = optarg;
11210 break;
11211 case TCC_OPTION_l:
11212 dynarray_add((void ***)&files, &nb_files, r);
11213 nb_libraries++;
11214 break;
11215 case TCC_OPTION_bench:
11216 do_bench = 1;
11217 break;
11218 case TCC_OPTION_bt:
11219 num_callers = atoi(optarg);
11220 break;
11221 #ifdef CONFIG_TCC_BCHECK
11222 case TCC_OPTION_b:
11223 do_bounds_check = 1;
11224 do_debug = 1;
11225 break;
11226 #endif
11227 case TCC_OPTION_g:
11228 do_debug = 1;
11229 break;
11230 case TCC_OPTION_c:
11231 multiple_files = 1;
11232 output_type = TCC_OUTPUT_OBJ;
11233 break;
11234 case TCC_OPTION_static:
11235 s->static_link = 1;
11236 break;
11237 case TCC_OPTION_shared:
11238 output_type = TCC_OUTPUT_DLL;
11239 break;
11240 case TCC_OPTION_soname:
11241 s->soname = optarg;
11242 break;
11243 case TCC_OPTION_o:
11244 multiple_files = 1;
11245 outfile = optarg;
11246 break;
11247 case TCC_OPTION_r:
11248 /* generate a .o merging several output files */
11249 reloc_output = 1;
11250 output_type = TCC_OUTPUT_OBJ;
11251 break;
11252 case TCC_OPTION_nostdinc:
11253 s->nostdinc = 1;
11254 break;
11255 case TCC_OPTION_nostdlib:
11256 s->nostdlib = 1;
11257 break;
11258 case TCC_OPTION_print_search_dirs:
11259 print_search_dirs = 1;
11260 break;
11261 case TCC_OPTION_run:
11263 int argc1;
11264 char **argv1;
11265 argc1 = expand_args(&argv1, optarg);
11266 if (argc1 > 0) {
11267 parse_args(s, argc1, argv1);
11269 multiple_files = 0;
11270 output_type = TCC_OUTPUT_MEMORY;
11272 break;
11273 case TCC_OPTION_v:
11274 do {
11275 if (0 == verbose++)
11276 printf("tcc version %s\n", TCC_VERSION);
11277 } while (*optarg++ == 'v');
11278 break;
11279 case TCC_OPTION_f:
11280 if (tcc_set_flag(s, optarg, 1) < 0 && s->warn_unsupported)
11281 goto unsupported_option;
11282 break;
11283 case TCC_OPTION_W:
11284 if (tcc_set_warning(s, optarg, 1) < 0 &&
11285 s->warn_unsupported)
11286 goto unsupported_option;
11287 break;
11288 case TCC_OPTION_w:
11289 s->warn_none = 1;
11290 break;
11291 case TCC_OPTION_rdynamic:
11292 s->rdynamic = 1;
11293 break;
11294 case TCC_OPTION_Wl:
11296 const char *p;
11297 if (strstart(optarg, "-Ttext,", &p)) {
11298 s->text_addr = strtoul(p, NULL, 16);
11299 s->has_text_addr = 1;
11300 } else if (strstart(optarg, "--oformat,", &p)) {
11301 if (strstart(p, "elf32-", NULL)) {
11302 s->output_format = TCC_OUTPUT_FORMAT_ELF;
11303 } else if (!strcmp(p, "binary")) {
11304 s->output_format = TCC_OUTPUT_FORMAT_BINARY;
11305 } else
11306 #ifdef TCC_TARGET_COFF
11307 if (!strcmp(p, "coff")) {
11308 s->output_format = TCC_OUTPUT_FORMAT_COFF;
11309 } else
11310 #endif
11312 error("target %s not found", p);
11314 } else {
11315 error("unsupported linker option '%s'", optarg);
11318 break;
11319 case TCC_OPTION_E:
11320 output_type = TCC_OUTPUT_PREPROCESS;
11321 break;
11322 default:
11323 if (s->warn_unsupported) {
11324 unsupported_option:
11325 warning("unsupported option '%s'", r);
11327 break;
11331 return optind + 1;
11334 int main(int argc, char **argv)
11336 int i;
11337 TCCState *s;
11338 int nb_objfiles, ret, optind;
11339 char objfilename[1024];
11340 int64_t start_time = 0;
11342 #ifdef _WIN32
11343 tcc_lib_path = w32_tcc_lib_path();
11344 #endif
11346 s = tcc_new();
11347 output_type = TCC_OUTPUT_EXE;
11348 outfile = NULL;
11349 multiple_files = 1;
11350 files = NULL;
11351 nb_files = 0;
11352 nb_libraries = 0;
11353 reloc_output = 0;
11354 print_search_dirs = 0;
11355 ret = 0;
11357 optind = parse_args(s, argc - 1, argv + 1);
11358 if (print_search_dirs) {
11359 /* enough for Linux kernel */
11360 printf("install: %s/\n", tcc_lib_path);
11361 return 0;
11363 if (optind == 0 || nb_files == 0) {
11364 if (optind && verbose)
11365 return 0;
11366 help();
11367 return 1;
11370 nb_objfiles = nb_files - nb_libraries;
11372 /* if outfile provided without other options, we output an
11373 executable */
11374 if (outfile && output_type == TCC_OUTPUT_MEMORY)
11375 output_type = TCC_OUTPUT_EXE;
11377 /* check -c consistency : only single file handled. XXX: checks file type */
11378 if (output_type == TCC_OUTPUT_OBJ && !reloc_output) {
11379 /* accepts only a single input file */
11380 if (nb_objfiles != 1)
11381 error("cannot specify multiple files with -c");
11382 if (nb_libraries != 0)
11383 error("cannot specify libraries with -c");
11387 if (output_type == TCC_OUTPUT_PREPROCESS) {
11388 if (!outfile) {
11389 s->outfile = stdout;
11390 } else {
11391 s->outfile = fopen(outfile, "w");
11392 if (!s->outfile)
11393 error("could not open '%s", outfile);
11395 } else if (output_type != TCC_OUTPUT_MEMORY) {
11396 if (!outfile) {
11397 /* compute default outfile name */
11398 char *ext;
11399 const char *name =
11400 strcmp(files[0], "-") == 0 ? "a" : tcc_basename(files[0]);
11401 pstrcpy(objfilename, sizeof(objfilename), name);
11402 ext = tcc_fileextension(objfilename);
11403 #ifdef TCC_TARGET_PE
11404 if (output_type == TCC_OUTPUT_DLL)
11405 strcpy(ext, ".dll");
11406 else
11407 if (output_type == TCC_OUTPUT_EXE)
11408 strcpy(ext, ".exe");
11409 else
11410 #endif
11411 if (output_type == TCC_OUTPUT_OBJ && !reloc_output && *ext)
11412 strcpy(ext, ".o");
11413 else
11414 pstrcpy(objfilename, sizeof(objfilename), "a.out");
11415 outfile = objfilename;
11419 if (do_bench) {
11420 start_time = getclock_us();
11423 tcc_set_output_type(s, output_type);
11425 /* compile or add each files or library */
11426 for(i = 0; i < nb_files && ret == 0; i++) {
11427 const char *filename;
11429 filename = files[i];
11430 if (output_type == TCC_OUTPUT_PREPROCESS) {
11431 if (tcc_add_file_internal(s, filename,
11432 AFF_PRINT_ERROR | AFF_PREPROCESS) < 0)
11433 ret = 1;
11434 } else if (filename[0] == '-' && filename[1]) {
11435 if (tcc_add_library(s, filename + 2) < 0)
11436 error("cannot find %s", filename);
11437 } else {
11438 if (1 == verbose)
11439 printf("-> %s\n", filename);
11440 if (tcc_add_file(s, filename) < 0)
11441 ret = 1;
11445 /* free all files */
11446 tcc_free(files);
11448 if (ret)
11449 goto the_end;
11451 if (do_bench) {
11452 double total_time;
11453 total_time = (double)(getclock_us() - start_time) / 1000000.0;
11454 if (total_time < 0.001)
11455 total_time = 0.001;
11456 if (total_bytes < 1)
11457 total_bytes = 1;
11458 printf("%d idents, %d lines, %d bytes, %0.3f s, %d lines/s, %0.1f MB/s\n",
11459 tok_ident - TOK_IDENT, total_lines, total_bytes,
11460 total_time, (int)(total_lines / total_time),
11461 total_bytes / total_time / 1000000.0);
11464 if (s->output_type == TCC_OUTPUT_PREPROCESS) {
11465 if (outfile)
11466 fclose(s->outfile);
11467 } else if (s->output_type == TCC_OUTPUT_MEMORY) {
11468 ret = tcc_run(s, argc - optind, argv + optind);
11469 } else
11470 ret = tcc_output_file(s, outfile) ? 1 : 0;
11471 the_end:
11472 /* XXX: cannot do it with bound checking because of the malloc hooks */
11473 if (!do_bounds_check)
11474 tcc_delete(s);
11476 #ifdef MEM_DEBUG
11477 if (do_bench) {
11478 printf("memory: %d bytes, max = %d bytes\n", mem_cur_size, mem_max_size);
11480 #endif
11481 return ret;
11484 #endif