2 * TCC - Tiny C Compiler
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
26 #define CONFIG_TCC_STATIC
43 #include <sys/timeb.h>
45 #define inline __inline
52 #include <sys/ucontext.h>
56 #endif /* !CONFIG_TCCBOOT */
73 /* preprocessor debug */
75 /* include file 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
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 */
100 #if defined(_WIN32) && !defined(TCC_TARGET_PE)
101 #define CONFIG_TCC_STATIC
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
110 /* object format selection */
111 #if defined(TCC_TARGET_C67)
112 #define TCC_TARGET_COFF
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 */
148 typedef unsigned short nwchar_t
;
150 typedef int nwchar_t
;
153 typedef struct CString
{
154 int size
; /* size in bytes */
155 void *data
; /* either 'char *' or 'nwchar_t *' */
157 void *data_allocated
; /* if non NULL, data has been malloced */
160 /* type definition */
161 typedef struct CType
{
167 typedef union CValue
{
173 unsigned int ul
; /* address (should be unsigned long on 64 bit cpu) */
175 unsigned long long ull
;
176 struct CString
*cstr
;
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) */
191 /* symbol management */
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 */
202 /* section definition */
203 /* XXX: use directly ELF structure for parameters ? */
204 /* special flag to indicate that the section should not be linked to
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 */
230 typedef struct DLLReference
{
236 /* GNUC attribute definition */
237 typedef struct AttributeDef
{
241 int func_attr
; /* calling convention, exports, ... */
244 /* -------------------------------------------------- */
245 /* gr: wrappers for casting sym->r for other purposes */
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
{
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 */
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
{
317 /* used to record tokens */
318 typedef struct 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
{
329 int hash_next
; /* -1 if none */
330 char type
; /* '"' or '>' to give include type */
331 char filename
[1]; /* path specified in #include */
334 #define CACHED_INCLUDES_HASH_SIZE 512
337 static struct BufferedFile
*file
;
339 static CString tok_spaces
; /* spaces before current token */
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
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
364 #ifdef CONFIG_TCC_ASM
365 static Section
*last_text_section
; /* to handle .previous asm directive */
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
;
374 static Section
*stab_section
, *stabstr_section
;
376 /* loc : local variable index
377 ind : output code index
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
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 */
422 static int do_bench
= 0;
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
;
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
462 DLLReference
**loaded_dlls
;
467 int nb_sections
; /* number of sections, including first dummy section */
469 Section
**priv_sections
;
470 int nb_priv_sections
; /* number of private sections */
475 unsigned long *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 */
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 */
493 /* soname as specified on the command line (-soname) */
496 /* if true, all symbols are exported */
499 /* if true, only link in referenced objects from archive */
502 /* address of text section */
503 unsigned long text_addr
;
506 /* output format, see TCC_OUTPUT_FORMAT_xxx */
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
;
518 int warn_implicit_function_declaration
;
522 void (*error_func
)(void *opaque
, const char *msg
);
523 int error_set_jmp_enabled
;
524 jmp_buf error_jmp_buf
;
527 /* tiny assembler state */
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
];
540 int pack_stack
[PACK_STACK_SIZE
];
543 /* output file for preprocessing */
546 /* for tcc_relocate */
549 #ifdef TCC_TARGET_X86_64
550 /* write PLT and GOT here */
551 char *runtime_plt_and_got
;
552 unsigned int runtime_plt_and_got_offset
;
556 /* The current value can be: */
557 #define VT_VALMASK 0x00ff
558 #define VT_CONST 0x00f0 /* constant in vc
559 (must be first non register value) */
560 #define VT_LLOCAL 0x00f1 /* lvalue, offset on stack */
561 #define VT_LOCAL 0x00f2 /* offset on stack */
562 #define VT_CMP 0x00f3 /* the value is stored in processor flags (in vc) */
563 #define VT_JMP 0x00f4 /* value is the consequence of jmp true (even) */
564 #define VT_JMPI 0x00f5 /* value is the consequence of jmp false (odd) */
565 #define VT_LVAL 0x0100 /* var is an lvalue */
566 #define VT_SYM 0x0200 /* a symbol value is added */
567 #define VT_MUSTCAST 0x0400 /* value must be casted to be correct (used for
568 char/short stored in integer registers) */
569 #define VT_MUSTBOUND 0x0800 /* bound checking must be done before
570 dereferencing value */
571 #define VT_BOUNDED 0x8000 /* value is bounded. The address of the
572 bounding function call point is in vc */
573 #define VT_LVAL_BYTE 0x1000 /* lvalue is a byte */
574 #define VT_LVAL_SHORT 0x2000 /* lvalue is a short */
575 #define VT_LVAL_UNSIGNED 0x4000 /* lvalue is unsigned */
576 #define VT_LVAL_TYPE (VT_LVAL_BYTE | VT_LVAL_SHORT | VT_LVAL_UNSIGNED)
579 #define VT_INT 0 /* integer type */
580 #define VT_BYTE 1 /* signed byte type */
581 #define VT_SHORT 2 /* short type */
582 #define VT_VOID 3 /* void type */
583 #define VT_PTR 4 /* pointer */
584 #define VT_ENUM 5 /* enum definition */
585 #define VT_FUNC 6 /* function type */
586 #define VT_STRUCT 7 /* struct/union definition */
587 #define VT_FLOAT 8 /* IEEE float */
588 #define VT_DOUBLE 9 /* IEEE double */
589 #define VT_LDOUBLE 10 /* IEEE long double */
590 #define VT_BOOL 11 /* ISOC99 boolean type */
591 #define VT_LLONG 12 /* 64 bit integer */
592 #define VT_LONG 13 /* long integer (NEVER USED as type, only
594 #define VT_BTYPE 0x000f /* mask for basic type */
595 #define VT_UNSIGNED 0x0010 /* unsigned type */
596 #define VT_ARRAY 0x0020 /* array type (also has VT_PTR) */
597 #define VT_BITFIELD 0x0040 /* bitfield modifier */
598 #define VT_CONSTANT 0x0800 /* const modifier */
599 #define VT_VOLATILE 0x1000 /* volatile modifier */
600 #define VT_SIGNED 0x2000 /* signed type */
603 #define VT_EXTERN 0x00000080 /* extern definition */
604 #define VT_STATIC 0x00000100 /* static variable */
605 #define VT_TYPEDEF 0x00000200 /* typedef definition */
606 #define VT_INLINE 0x00000400 /* inline definition */
608 #define VT_STRUCT_SHIFT 16 /* shift for bitfield shift values */
610 /* type mask (except storage) */
611 #define VT_STORAGE (VT_EXTERN | VT_STATIC | VT_TYPEDEF | VT_INLINE)
612 #define VT_TYPE (~(VT_STORAGE))
616 /* warning: the following compare tokens depend on i386 asm code */
623 #define TOK_Nset 0x98
624 #define TOK_Nclear 0x99
630 #define TOK_LAND 0xa0
634 #define TOK_MID 0xa3 /* inc/dec, to void constant */
636 #define TOK_UDIV 0xb0 /* unsigned division */
637 #define TOK_UMOD 0xb1 /* unsigned modulo */
638 #define TOK_PDIV 0xb2 /* fast division with undefined rounding for pointers */
639 #define TOK_CINT 0xb3 /* number in tokc */
640 #define TOK_CCHAR 0xb4 /* char constant in tokc */
641 #define TOK_STR 0xb5 /* pointer to string in tokc */
642 #define TOK_TWOSHARPS 0xb6 /* ## preprocessing token */
643 #define TOK_LCHAR 0xb7
644 #define TOK_LSTR 0xb8
645 #define TOK_CFLOAT 0xb9 /* float constant */
646 #define TOK_LINENUM 0xba /* line number info */
647 #define TOK_CDOUBLE 0xc0 /* double constant */
648 #define TOK_CLDOUBLE 0xc1 /* long double constant */
649 #define TOK_UMULL 0xc2 /* unsigned 32x32 -> 64 mul */
650 #define TOK_ADDC1 0xc3 /* add with carry generation */
651 #define TOK_ADDC2 0xc4 /* add with carry use */
652 #define TOK_SUBC1 0xc5 /* add with carry generation */
653 #define TOK_SUBC2 0xc6 /* add with carry use */
654 #define TOK_CUINT 0xc8 /* unsigned int constant */
655 #define TOK_CLLONG 0xc9 /* long long constant */
656 #define TOK_CULLONG 0xca /* unsigned long long constant */
657 #define TOK_ARROW 0xcb
658 #define TOK_DOTS 0xcc /* three dots */
659 #define TOK_SHR 0xcd /* unsigned shift right */
660 #define TOK_PPNUM 0xce /* preprocessor number */
662 #define TOK_SHL 0x01 /* shift left */
663 #define TOK_SAR 0x02 /* signed shift right */
665 /* assignement operators : normal operator or 0x80 */
666 #define TOK_A_MOD 0xa5
667 #define TOK_A_AND 0xa6
668 #define TOK_A_MUL 0xaa
669 #define TOK_A_ADD 0xab
670 #define TOK_A_SUB 0xad
671 #define TOK_A_DIV 0xaf
672 #define TOK_A_XOR 0xde
673 #define TOK_A_OR 0xfc
674 #define TOK_A_SHL 0x81
675 #define TOK_A_SAR 0x82
678 #define offsetof(type, field) ((size_t) &((type *)0)->field)
682 #define countof(tab) (sizeof(tab) / sizeof((tab)[0]))
685 /* WARNING: the content of this string encodes token numbers */
686 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";
688 #define TOK_EOF (-1) /* end of file */
689 #define TOK_LINEFEED 10 /* line feed */
691 /* all identificators and strings have token above that */
692 #define TOK_IDENT 256
694 /* only used for i386 asm opcodes definitions */
695 #define DEF_ASM(x) DEF(TOK_ASM_ ## x, #x)
698 DEF(TOK_ASM_ ## x ## b, #x "b") \
699 DEF(TOK_ASM_ ## x ## w, #x "w") \
700 DEF(TOK_ASM_ ## x ## l, #x "l") \
701 DEF(TOK_ASM_ ## x, #x)
704 DEF(TOK_ASM_ ## x ## w, #x "w") \
705 DEF(TOK_ASM_ ## x ## l, #x "l") \
706 DEF(TOK_ASM_ ## x, #x)
709 DEF(TOK_ASM_ ## f ## x ## s, "f" #x "s") \
710 DEF(TOK_ASM_ ## fi ## x ## l, "fi" #x "l") \
711 DEF(TOK_ASM_ ## f ## x ## l, "f" #x "l") \
712 DEF(TOK_ASM_ ## fi ## x ## s, "fi" #x "s")
715 DEF(TOK_ASM_ ## f ## x, "f" #x ) \
716 DEF(TOK_ASM_ ## f ## x ## p, "f" #x "p") \
719 #define DEF_ASMTEST(x) \
751 #define TOK_ASM_int TOK_INT
754 TOK_LAST
= TOK_IDENT
- 1,
755 #define DEF(id, str) id,
760 static const char tcc_keywords
[] =
761 #define DEF(id, str) str "\0"
766 #define TOK_UIDENT TOK_DEFINE
769 #define snprintf _snprintf
770 #define vsnprintf _vsnprintf
772 #define strtold (long double)strtod
773 #define strtof (float)strtod
774 #define strtoll (long long)strtol
776 #elif defined(TCC_UCLIBC) || defined(__FreeBSD__) || defined(__DragonFly__) \
777 || defined(__OpenBSD__)
778 /* currently incorrect */
779 long double strtold(const char *nptr
, char **endptr
)
781 return (long double)strtod(nptr
, endptr
);
783 float strtof(const char *nptr
, char **endptr
)
785 return (float)strtod(nptr
, endptr
);
788 /* XXX: need to define this to use them in non ISOC99 context */
789 extern float strtof (const char *__nptr
, char **__endptr
);
790 extern long double strtold (const char *__nptr
, char **__endptr
);
793 static char *pstrcpy(char *buf
, int buf_size
, const char *s
);
794 static char *pstrcat(char *buf
, int buf_size
, const char *s
);
795 static char *tcc_basename(const char *name
);
796 static char *tcc_fileextension (const char *p
);
798 static void next(void);
799 static void next_nomacro(void);
800 static void parse_expr_type(CType
*type
);
801 static void expr_type(CType
*type
);
802 static void unary_type(CType
*type
);
803 static void block(int *bsym
, int *csym
, int *case_sym
, int *def_sym
,
804 int case_reg
, int is_expr
);
805 static int expr_const(void);
806 static void expr_eq(void);
807 static void gexpr(void);
808 static void gen_inline_functions(void);
809 static void decl(int l
);
810 static void decl_initializer(CType
*type
, Section
*sec
, unsigned long c
,
811 int first
, int size_only
);
812 static void decl_initializer_alloc(CType
*type
, AttributeDef
*ad
, int r
,
813 int has_init
, int v
, int scope
);
815 void gv2(int rc1
, int rc2
);
816 void move_reg(int r
, int s
);
817 void save_regs(int n
);
818 void save_reg(int r
);
823 int get_reg_ex(int rc
,int rc2
);
826 struct macro_level
*prev
;
830 static void macro_subst(TokenString
*tok_str
, Sym
**nested_list
,
831 const int *macro_str
, struct macro_level
**can_read_stream
);
833 void force_charshort_cast(int t
);
834 static void gen_cast(CType
*type
);
836 static Sym
*sym_find(int v
);
837 static Sym
*sym_push(int v
, CType
*type
, int r
, int c
);
840 static int type_size(CType
*type
, int *a
);
841 static inline CType
*pointed_type(CType
*type
);
842 static int pointed_size(CType
*type
);
843 static int lvalue_type(int t
);
844 static int parse_btype(CType
*type
, AttributeDef
*ad
);
845 static void type_decl(CType
*type
, AttributeDef
*ad
, int *v
, int td
);
846 static int compare_types(CType
*type1
, CType
*type2
, int unqualified
);
847 static int is_compatible_types(CType
*type1
, CType
*type2
);
848 static int is_compatible_parameter_types(CType
*type1
, CType
*type2
);
850 int ieee_finite(double d
);
851 void error(const char *fmt
, ...);
853 void vpushll(long long v
);
856 void lexpand_nr(void);
857 static void vpush_global_sym(CType
*type
, int v
);
858 void vset(CType
*type
, int r
, int v
);
859 void type_to_str(char *buf
, int buf_size
,
860 CType
*type
, const char *varstr
);
861 char *get_tok_str(int v
, CValue
*cv
);
862 static Sym
*get_sym_ref(CType
*type
, Section
*sec
,
863 unsigned long offset
, unsigned long size
);
864 static Sym
*external_global_sym(int v
, CType
*type
, int r
);
866 /* section generation */
867 static void section_realloc(Section
*sec
, unsigned long new_size
);
868 static void *section_ptr_add(Section
*sec
, unsigned long size
);
869 static void put_extern_sym(Sym
*sym
, Section
*section
,
870 unsigned long value
, unsigned long size
);
871 static void greloc(Section
*s
, Sym
*sym
, unsigned long addr
, int type
);
872 static int put_elf_str(Section
*s
, const char *sym
);
873 static int put_elf_sym(Section
*s
,
874 unsigned long value
, unsigned long size
,
875 int info
, int other
, int shndx
, const char *name
);
876 static int add_elf_sym(Section
*s
, unsigned long value
, unsigned long size
,
877 int info
, int other
, int sh_num
, const char *name
);
878 static void put_elf_reloc(Section
*symtab
, Section
*s
, unsigned long offset
,
879 int type
, int symbol
);
880 static void put_stabs(const char *str
, int type
, int other
, int desc
,
881 unsigned long value
);
882 static void put_stabs_r(const char *str
, int type
, int other
, int desc
,
883 unsigned long value
, Section
*sec
, int sym_index
);
884 static void put_stabn(int type
, int other
, int desc
, int value
);
885 static void put_stabd(int type
, int other
, int desc
);
886 static int tcc_add_dll(TCCState
*s
, const char *filename
, int flags
);
888 #define AFF_PRINT_ERROR 0x0001 /* print error if file not found */
889 #define AFF_REFERENCED_DLL 0x0002 /* load a referenced dll from another dll */
890 #define AFF_PREPROCESS 0x0004 /* preprocess file */
891 static int tcc_add_file_internal(TCCState
*s
, const char *filename
, int flags
);
894 int tcc_output_coff(TCCState
*s1
, FILE *f
);
897 void *resolve_sym(TCCState
*s1
, const char *sym
, int type
);
898 int pe_load_def_file(struct TCCState
*s1
, int fd
);
899 int pe_test_res_file(void *v
, int size
);
900 int pe_load_res_file(struct TCCState
*s1
, int fd
);
901 void pe_add_runtime(struct TCCState
*s1
);
902 void pe_guess_outfile(char *objfilename
, int output_type
);
903 int pe_output_file(struct TCCState
*s1
, const char *filename
);
907 #ifdef CONFIG_TCC_ASM
909 typedef struct ExprValue
{
914 #define MAX_ASM_OPERANDS 30
916 typedef struct ASMOperand
{
917 int id
; /* GCC 3 optionnal identifier (0 if number only supported */
919 char asm_str
[16]; /* computed asm string for operand */
920 SValue
*vt
; /* C value of the expression */
921 int ref_index
; /* if >= 0, gives reference to a output constraint */
922 int input_index
; /* if >= 0, gives reference to an input constraint */
923 int priority
; /* priority, used to assign registers */
924 int reg
; /* if >= 0, register number used for this operand */
925 int is_llong
; /* true if double register value */
926 int is_memory
; /* true if memory operand */
927 int is_rw
; /* for '+' modifier */
930 static void asm_expr(TCCState
*s1
, ExprValue
*pe
);
931 static int asm_int_expr(TCCState
*s1
);
932 static int find_constraint(ASMOperand
*operands
, int nb_operands
,
933 const char *name
, const char **pp
);
935 static int tcc_assemble(TCCState
*s1
, int do_preprocess
);
939 static void asm_instr(void);
940 static void asm_global_instr(void);
942 /* true if float/double/long double type */
943 static inline int is_float(int t
)
947 return bt
== VT_LDOUBLE
|| bt
== VT_DOUBLE
|| bt
== VT_FLOAT
;
950 #ifdef TCC_TARGET_I386
951 #include "i386-gen.c"
954 #ifdef TCC_TARGET_ARM
958 #ifdef TCC_TARGET_C67
962 #ifdef TCC_TARGET_X86_64
963 #include "x86_64-gen.c"
966 #ifdef CONFIG_TCC_STATIC
968 #define RTLD_LAZY 0x001
969 #define RTLD_NOW 0x002
970 #define RTLD_GLOBAL 0x100
971 #define RTLD_DEFAULT NULL
973 /* dummy function for profiling */
974 void *dlopen(const char *filename
, int flag
)
979 const char *dlerror(void)
984 typedef struct TCCSyms
{
989 #define TCCSYM(a) { #a, &a, },
991 /* add the symbol you want here if no dynamic linking is done */
992 static TCCSyms tcc_syms
[] = {
993 #if !defined(CONFIG_TCCBOOT)
1002 void *resolve_sym(TCCState
*s1
, const char *symbol
, int type
)
1006 while (p
->str
!= NULL
) {
1007 if (!strcmp(p
->str
, symbol
))
1014 #elif !defined(_WIN32)
1018 void *resolve_sym(TCCState
*s1
, const char *sym
, int type
)
1020 return dlsym(RTLD_DEFAULT
, sym
);
1025 /********************************************************/
1027 /* we use our own 'finite' function to avoid potential problems with
1028 non standard math libs */
1029 /* XXX: endianness dependent */
1030 int ieee_finite(double d
)
1033 return ((unsigned)((p
[1] | 0x800fffff) + 1)) >> 31;
1036 /* copy a string and truncate it. */
1037 static char *pstrcpy(char *buf
, int buf_size
, const char *s
)
1044 q_end
= buf
+ buf_size
- 1;
1056 /* strcat and truncate. */
1057 static char *pstrcat(char *buf
, int buf_size
, const char *s
)
1062 pstrcpy(buf
+ len
, buf_size
- len
, s
);
1067 static int strstart(const char *str
, const char *val
, const char **ptr
)
1072 while (*q
!= '\0') {
1085 #define IS_PATHSEP(c) (c == '/' || c == '\\')
1086 #define IS_ABSPATH(p) (IS_PATHSEP(p[0]) || (p[0] && p[1] == ':' && IS_PATHSEP(p[2])))
1087 #define PATHCMP stricmp
1089 #define IS_PATHSEP(c) (c == '/')
1090 #define IS_ABSPATH(p) IS_PATHSEP(p[0])
1091 #define PATHCMP strcmp
1094 /* extract the basename of a file */
1095 static char *tcc_basename(const char *name
)
1097 char *p
= strchr(name
, 0);
1098 while (p
> name
&& !IS_PATHSEP(p
[-1]))
1103 static char *tcc_fileextension (const char *name
)
1105 char *b
= tcc_basename(name
);
1106 char *e
= strrchr(b
, '.');
1107 return e
? e
: strchr(b
, 0);
1111 char *normalize_slashes(char *path
)
1114 for (p
= path
; *p
; ++p
)
1120 char *w32_tcc_lib_path(void)
1122 /* on win32, we suppose the lib and includes are at the location
1124 char path
[1024], *p
;
1125 GetModuleFileNameA(NULL
, path
, sizeof path
);
1126 p
= tcc_basename(normalize_slashes(strlwr(path
)));
1127 if (p
- 5 > path
&& 0 == strncmp(p
- 5, "/bin/", 5))
1132 return strdup(path
);
1136 void set_pages_executable(void *ptr
, unsigned long length
)
1139 unsigned long old_protect
;
1140 VirtualProtect(ptr
, length
, PAGE_EXECUTE_READWRITE
, &old_protect
);
1142 unsigned long start
, end
;
1143 start
= (unsigned long)ptr
& ~(PAGESIZE
- 1);
1144 end
= (unsigned long)ptr
+ length
;
1145 end
= (end
+ PAGESIZE
- 1) & ~(PAGESIZE
- 1);
1146 mprotect((void *)start
, end
- start
, PROT_READ
| PROT_WRITE
| PROT_EXEC
);
1150 /* memory management */
1154 unsigned malloc_usable_size(void*);
1157 static inline void tcc_free(void *ptr
)
1160 mem_cur_size
-= malloc_usable_size(ptr
);
1165 static void *tcc_malloc(unsigned long size
)
1170 error("memory full");
1172 mem_cur_size
+= malloc_usable_size(ptr
);
1173 if (mem_cur_size
> mem_max_size
)
1174 mem_max_size
= mem_cur_size
;
1179 static void *tcc_mallocz(unsigned long size
)
1182 ptr
= tcc_malloc(size
);
1183 memset(ptr
, 0, size
);
1187 static inline void *tcc_realloc(void *ptr
, unsigned long size
)
1191 mem_cur_size
-= malloc_usable_size(ptr
);
1193 ptr1
= realloc(ptr
, size
);
1195 /* NOTE: count not correct if alloc error, but not critical */
1196 mem_cur_size
+= malloc_usable_size(ptr1
);
1197 if (mem_cur_size
> mem_max_size
)
1198 mem_max_size
= mem_cur_size
;
1203 static char *tcc_strdup(const char *str
)
1206 ptr
= tcc_malloc(strlen(str
) + 1);
1211 #define free(p) use_tcc_free(p)
1212 #define malloc(s) use_tcc_malloc(s)
1213 #define realloc(p, s) use_tcc_realloc(p, s)
1215 static void dynarray_add(void ***ptab
, int *nb_ptr
, void *data
)
1222 /* every power of two we double array size */
1223 if ((nb
& (nb
- 1)) == 0) {
1228 pp
= tcc_realloc(pp
, nb_alloc
* sizeof(void *));
1230 error("memory full");
1237 static void dynarray_reset(void *pp
, int *n
)
1240 for (p
= *(void***)pp
; *n
; ++p
, --*n
)
1243 tcc_free(*(void**)pp
);
1247 /* symbol allocator */
1248 static Sym
*__sym_malloc(void)
1250 Sym
*sym_pool
, *sym
, *last_sym
;
1253 sym_pool
= tcc_malloc(SYM_POOL_NB
* sizeof(Sym
));
1254 dynarray_add(&sym_pools
, &nb_sym_pools
, sym_pool
);
1256 last_sym
= sym_free_first
;
1258 for(i
= 0; i
< SYM_POOL_NB
; i
++) {
1259 sym
->next
= last_sym
;
1263 sym_free_first
= last_sym
;
1267 static inline Sym
*sym_malloc(void)
1270 sym
= sym_free_first
;
1272 sym
= __sym_malloc();
1273 sym_free_first
= sym
->next
;
1277 static inline void sym_free(Sym
*sym
)
1279 sym
->next
= sym_free_first
;
1280 sym_free_first
= sym
;
1283 Section
*new_section(TCCState
*s1
, const char *name
, int sh_type
, int sh_flags
)
1287 sec
= tcc_mallocz(sizeof(Section
) + strlen(name
));
1288 strcpy(sec
->name
, name
);
1289 sec
->sh_type
= sh_type
;
1290 sec
->sh_flags
= sh_flags
;
1298 sec
->sh_addralign
= 4;
1301 sec
->sh_addralign
= 1;
1304 sec
->sh_addralign
= 32; /* default conservative alignment */
1308 if (sh_flags
& SHF_PRIVATE
) {
1309 dynarray_add((void ***)&s1
->priv_sections
, &s1
->nb_priv_sections
, sec
);
1311 sec
->sh_num
= s1
->nb_sections
;
1312 dynarray_add((void ***)&s1
->sections
, &s1
->nb_sections
, sec
);
1318 static void free_section(Section
*s
)
1323 /* realloc section and set its content to zero */
1324 static void section_realloc(Section
*sec
, unsigned long new_size
)
1327 unsigned char *data
;
1329 size
= sec
->data_allocated
;
1332 while (size
< new_size
)
1334 data
= tcc_realloc(sec
->data
, size
);
1336 error("memory full");
1337 memset(data
+ sec
->data_allocated
, 0, size
- sec
->data_allocated
);
1339 sec
->data_allocated
= size
;
1342 /* reserve at least 'size' bytes in section 'sec' from
1343 sec->data_offset. */
1344 static void *section_ptr_add(Section
*sec
, unsigned long size
)
1346 unsigned long offset
, offset1
;
1348 offset
= sec
->data_offset
;
1349 offset1
= offset
+ size
;
1350 if (offset1
> sec
->data_allocated
)
1351 section_realloc(sec
, offset1
);
1352 sec
->data_offset
= offset1
;
1353 return sec
->data
+ offset
;
1356 /* return a reference to a section, and create it if it does not
1358 Section
*find_section(TCCState
*s1
, const char *name
)
1362 for(i
= 1; i
< s1
->nb_sections
; i
++) {
1363 sec
= s1
->sections
[i
];
1364 if (!strcmp(name
, sec
->name
))
1367 /* sections are created as PROGBITS */
1368 return new_section(s1
, name
, SHT_PROGBITS
, SHF_ALLOC
);
1371 #define SECTION_ABS ((void *)1)
1373 /* update sym->c so that it points to an external symbol in section
1374 'section' with value 'value' */
1375 static void put_extern_sym2(Sym
*sym
, Section
*section
,
1376 unsigned long value
, unsigned long size
,
1377 int can_add_underscore
)
1379 int sym_type
, sym_bind
, sh_num
, info
, other
, attr
;
1384 if (section
== NULL
)
1386 else if (section
== SECTION_ABS
)
1389 sh_num
= section
->sh_num
;
1393 if ((sym
->type
.t
& VT_BTYPE
) == VT_FUNC
) {
1394 sym_type
= STT_FUNC
;
1395 #ifdef TCC_TARGET_PE
1397 attr
= sym
->type
.ref
->r
;
1398 if (FUNC_EXPORT(attr
))
1400 if (FUNC_CALL(attr
) == FUNC_STDCALL
)
1404 sym_type
= STT_OBJECT
;
1407 if (sym
->type
.t
& VT_STATIC
)
1408 sym_bind
= STB_LOCAL
;
1410 sym_bind
= STB_GLOBAL
;
1413 name
= get_tok_str(sym
->v
, NULL
);
1414 #ifdef CONFIG_TCC_BCHECK
1415 if (do_bounds_check
) {
1418 /* XXX: avoid doing that for statics ? */
1419 /* if bound checking is activated, we change some function
1420 names by adding the "__bound" prefix */
1423 /* XXX: we rely only on malloc hooks */
1436 strcpy(buf
, "__bound_");
1444 #ifdef TCC_TARGET_PE
1445 if ((other
& 2) && can_add_underscore
) {
1446 sprintf(buf1
, "_%s@%d", name
, FUNC_ARGS(attr
));
1450 if (tcc_state
->leading_underscore
&& can_add_underscore
) {
1452 pstrcpy(buf1
+ 1, sizeof(buf1
) - 1, name
);
1455 info
= ELFW(ST_INFO
)(sym_bind
, sym_type
);
1456 sym
->c
= add_elf_sym(symtab_section
, value
, size
, info
, other
, sh_num
, name
);
1458 esym
= &((ElfW(Sym
) *)symtab_section
->data
)[sym
->c
];
1459 esym
->st_value
= value
;
1460 esym
->st_size
= size
;
1461 esym
->st_shndx
= sh_num
;
1462 esym
->st_other
|= other
;
1466 static void put_extern_sym(Sym
*sym
, Section
*section
,
1467 unsigned long value
, unsigned long size
)
1469 put_extern_sym2(sym
, section
, value
, size
, 1);
1472 /* add a new relocation entry to symbol 'sym' in section 's' */
1473 static void greloc(Section
*s
, Sym
*sym
, unsigned long offset
, int type
)
1476 put_extern_sym(sym
, NULL
, 0, 0);
1477 /* now we can add ELF relocation info */
1478 put_elf_reloc(symtab_section
, s
, offset
, type
, sym
->c
);
1481 static inline int isid(int c
)
1483 return (c
>= 'a' && c
<= 'z') ||
1484 (c
>= 'A' && c
<= 'Z') ||
1488 static inline int isnum(int c
)
1490 return c
>= '0' && c
<= '9';
1493 static inline int isoct(int c
)
1495 return c
>= '0' && c
<= '7';
1498 static inline int toup(int c
)
1500 if (c
>= 'a' && c
<= 'z')
1501 return c
- 'a' + 'A';
1506 static void strcat_vprintf(char *buf
, int buf_size
, const char *fmt
, va_list ap
)
1510 vsnprintf(buf
+ len
, buf_size
- len
, fmt
, ap
);
1513 static void strcat_printf(char *buf
, int buf_size
, const char *fmt
, ...)
1517 strcat_vprintf(buf
, buf_size
, fmt
, ap
);
1521 void error1(TCCState
*s1
, int is_warning
, const char *fmt
, va_list ap
)
1528 for(f
= s1
->include_stack
; f
< s1
->include_stack_ptr
; f
++)
1529 strcat_printf(buf
, sizeof(buf
), "In file included from %s:%d:\n",
1530 (*f
)->filename
, (*f
)->line_num
);
1531 if (file
->line_num
> 0) {
1532 strcat_printf(buf
, sizeof(buf
),
1533 "%s:%d: ", file
->filename
, file
->line_num
);
1535 strcat_printf(buf
, sizeof(buf
),
1536 "%s: ", file
->filename
);
1539 strcat_printf(buf
, sizeof(buf
),
1543 strcat_printf(buf
, sizeof(buf
), "warning: ");
1544 strcat_vprintf(buf
, sizeof(buf
), fmt
, ap
);
1546 if (!s1
->error_func
) {
1547 /* default case: stderr */
1548 fprintf(stderr
, "%s\n", buf
);
1550 s1
->error_func(s1
->error_opaque
, buf
);
1552 if (!is_warning
|| s1
->warn_error
)
1557 void tcc_set_error_func(TCCState
*s
, void *error_opaque
,
1558 void (*error_func
)(void *opaque
, const char *msg
))
1560 s
->error_opaque
= error_opaque
;
1561 s
->error_func
= error_func
;
1565 /* error without aborting current compilation */
1566 void error_noabort(const char *fmt
, ...)
1568 TCCState
*s1
= tcc_state
;
1572 error1(s1
, 0, fmt
, ap
);
1576 void error(const char *fmt
, ...)
1578 TCCState
*s1
= tcc_state
;
1582 error1(s1
, 0, fmt
, ap
);
1584 /* better than nothing: in some cases, we accept to handle errors */
1585 if (s1
->error_set_jmp_enabled
) {
1586 longjmp(s1
->error_jmp_buf
, 1);
1588 /* XXX: eliminate this someday */
1593 void expect(const char *msg
)
1595 error("%s expected", msg
);
1598 void warning(const char *fmt
, ...)
1600 TCCState
*s1
= tcc_state
;
1607 error1(s1
, 1, fmt
, ap
);
1614 error("'%c' expected", c
);
1618 static void test_lvalue(void)
1620 if (!(vtop
->r
& VT_LVAL
))
1624 /* allocate a new token */
1625 static TokenSym
*tok_alloc_new(TokenSym
**pts
, const char *str
, int len
)
1627 TokenSym
*ts
, **ptable
;
1630 if (tok_ident
>= SYM_FIRST_ANOM
)
1631 error("memory full");
1633 /* expand token table if needed */
1634 i
= tok_ident
- TOK_IDENT
;
1635 if ((i
% TOK_ALLOC_INCR
) == 0) {
1636 ptable
= tcc_realloc(table_ident
, (i
+ TOK_ALLOC_INCR
) * sizeof(TokenSym
*));
1638 error("memory full");
1639 table_ident
= ptable
;
1642 ts
= tcc_malloc(sizeof(TokenSym
) + len
);
1643 table_ident
[i
] = ts
;
1644 ts
->tok
= tok_ident
++;
1645 ts
->sym_define
= NULL
;
1646 ts
->sym_label
= NULL
;
1647 ts
->sym_struct
= NULL
;
1648 ts
->sym_identifier
= NULL
;
1650 ts
->hash_next
= NULL
;
1651 memcpy(ts
->str
, str
, len
);
1652 ts
->str
[len
] = '\0';
1657 #define TOK_HASH_INIT 1
1658 #define TOK_HASH_FUNC(h, c) ((h) * 263 + (c))
1660 /* find a token and add it if not found */
1661 static TokenSym
*tok_alloc(const char *str
, int len
)
1663 TokenSym
*ts
, **pts
;
1669 h
= TOK_HASH_FUNC(h
, ((unsigned char *)str
)[i
]);
1670 h
&= (TOK_HASH_SIZE
- 1);
1672 pts
= &hash_ident
[h
];
1677 if (ts
->len
== len
&& !memcmp(ts
->str
, str
, len
))
1679 pts
= &(ts
->hash_next
);
1681 return tok_alloc_new(pts
, str
, len
);
1684 /* CString handling */
1686 static void cstr_realloc(CString
*cstr
, int new_size
)
1691 size
= cstr
->size_allocated
;
1693 size
= 8; /* no need to allocate a too small first string */
1694 while (size
< new_size
)
1696 data
= tcc_realloc(cstr
->data_allocated
, size
);
1698 error("memory full");
1699 cstr
->data_allocated
= data
;
1700 cstr
->size_allocated
= size
;
1705 static inline void cstr_ccat(CString
*cstr
, int ch
)
1708 size
= cstr
->size
+ 1;
1709 if (size
> cstr
->size_allocated
)
1710 cstr_realloc(cstr
, size
);
1711 ((unsigned char *)cstr
->data
)[size
- 1] = ch
;
1715 static void cstr_cat(CString
*cstr
, const char *str
)
1727 /* add a wide char */
1728 static void cstr_wccat(CString
*cstr
, int ch
)
1731 size
= cstr
->size
+ sizeof(nwchar_t
);
1732 if (size
> cstr
->size_allocated
)
1733 cstr_realloc(cstr
, size
);
1734 *(nwchar_t
*)(((unsigned char *)cstr
->data
) + size
- sizeof(nwchar_t
)) = ch
;
1738 static void cstr_new(CString
*cstr
)
1740 memset(cstr
, 0, sizeof(CString
));
1743 /* free string and reset it to NULL */
1744 static void cstr_free(CString
*cstr
)
1746 tcc_free(cstr
->data_allocated
);
1750 #define cstr_reset(cstr) cstr_free(cstr)
1752 /* XXX: unicode ? */
1753 static void add_char(CString
*cstr
, int c
)
1755 if (c
== '\'' || c
== '\"' || c
== '\\') {
1756 /* XXX: could be more precise if char or string */
1757 cstr_ccat(cstr
, '\\');
1759 if (c
>= 32 && c
<= 126) {
1762 cstr_ccat(cstr
, '\\');
1764 cstr_ccat(cstr
, 'n');
1766 cstr_ccat(cstr
, '0' + ((c
>> 6) & 7));
1767 cstr_ccat(cstr
, '0' + ((c
>> 3) & 7));
1768 cstr_ccat(cstr
, '0' + (c
& 7));
1773 /* XXX: buffer overflow */
1774 /* XXX: float tokens */
1775 char *get_tok_str(int v
, CValue
*cv
)
1777 static char buf
[STRING_MAX_SIZE
+ 1];
1778 static CString cstr_buf
;
1784 /* NOTE: to go faster, we give a fixed buffer for small strings */
1785 cstr_reset(&cstr_buf
);
1786 cstr_buf
.data
= buf
;
1787 cstr_buf
.size_allocated
= sizeof(buf
);
1793 /* XXX: not quite exact, but only useful for testing */
1794 sprintf(p
, "%u", cv
->ui
);
1798 /* XXX: not quite exact, but only useful for testing */
1799 sprintf(p
, "%Lu", cv
->ull
);
1802 cstr_ccat(&cstr_buf
, 'L');
1804 cstr_ccat(&cstr_buf
, '\'');
1805 add_char(&cstr_buf
, cv
->i
);
1806 cstr_ccat(&cstr_buf
, '\'');
1807 cstr_ccat(&cstr_buf
, '\0');
1811 len
= cstr
->size
- 1;
1813 add_char(&cstr_buf
, ((unsigned char *)cstr
->data
)[i
]);
1814 cstr_ccat(&cstr_buf
, '\0');
1817 cstr_ccat(&cstr_buf
, 'L');
1820 cstr_ccat(&cstr_buf
, '\"');
1822 len
= cstr
->size
- 1;
1824 add_char(&cstr_buf
, ((unsigned char *)cstr
->data
)[i
]);
1826 len
= (cstr
->size
/ sizeof(nwchar_t
)) - 1;
1828 add_char(&cstr_buf
, ((nwchar_t
*)cstr
->data
)[i
]);
1830 cstr_ccat(&cstr_buf
, '\"');
1831 cstr_ccat(&cstr_buf
, '\0');
1840 return strcpy(p
, "...");
1842 return strcpy(p
, "<<=");
1844 return strcpy(p
, ">>=");
1846 if (v
< TOK_IDENT
) {
1847 /* search in two bytes table */
1861 } else if (v
< tok_ident
) {
1862 return table_ident
[v
- TOK_IDENT
]->str
;
1863 } else if (v
>= SYM_FIRST_ANOM
) {
1864 /* special name for anonymous symbol */
1865 sprintf(p
, "L.%u", v
- SYM_FIRST_ANOM
);
1867 /* should never happen */
1872 return cstr_buf
.data
;
1875 /* push, without hashing */
1876 static Sym
*sym_push2(Sym
**ps
, int v
, int t
, long c
)
1890 /* find a symbol and return its associated structure. 's' is the top
1891 of the symbol stack */
1892 static Sym
*sym_find2(Sym
*s
, int v
)
1902 /* structure lookup */
1903 static inline Sym
*struct_find(int v
)
1906 if ((unsigned)v
>= (unsigned)(tok_ident
- TOK_IDENT
))
1908 return table_ident
[v
]->sym_struct
;
1911 /* find an identifier */
1912 static inline Sym
*sym_find(int v
)
1915 if ((unsigned)v
>= (unsigned)(tok_ident
- TOK_IDENT
))
1917 return table_ident
[v
]->sym_identifier
;
1920 /* push a given symbol on the symbol stack */
1921 static Sym
*sym_push(int v
, CType
*type
, int r
, int c
)
1930 s
= sym_push2(ps
, v
, type
->t
, c
);
1931 s
->type
.ref
= type
->ref
;
1933 /* don't record fields or anonymous symbols */
1935 if (!(v
& SYM_FIELD
) && (v
& ~SYM_STRUCT
) < SYM_FIRST_ANOM
) {
1936 /* record symbol in token array */
1937 ts
= table_ident
[(v
& ~SYM_STRUCT
) - TOK_IDENT
];
1939 ps
= &ts
->sym_struct
;
1941 ps
= &ts
->sym_identifier
;
1948 /* push a global identifier */
1949 static Sym
*global_identifier_push(int v
, int t
, int c
)
1952 s
= sym_push2(&global_stack
, v
, t
, c
);
1953 /* don't record anonymous symbol */
1954 if (v
< SYM_FIRST_ANOM
) {
1955 ps
= &table_ident
[v
- TOK_IDENT
]->sym_identifier
;
1956 /* modify the top most local identifier, so that
1957 sym_identifier will point to 's' when popped */
1959 ps
= &(*ps
)->prev_tok
;
1966 /* pop symbols until top reaches 'b' */
1967 static void sym_pop(Sym
**ptop
, Sym
*b
)
1977 /* remove symbol in token array */
1979 if (!(v
& SYM_FIELD
) && (v
& ~SYM_STRUCT
) < SYM_FIRST_ANOM
) {
1980 ts
= table_ident
[(v
& ~SYM_STRUCT
) - TOK_IDENT
];
1982 ps
= &ts
->sym_struct
;
1984 ps
= &ts
->sym_identifier
;
1995 BufferedFile
*tcc_open(TCCState
*s1
, const char *filename
)
2000 if (strcmp(filename
, "-") == 0)
2001 fd
= 0, filename
= "stdin";
2003 fd
= open(filename
, O_RDONLY
| O_BINARY
);
2004 if ((verbose
== 2 && fd
>= 0) || verbose
== 3)
2005 printf("%s %*s%s\n", fd
< 0 ? "nf":"->",
2006 (s1
->include_stack_ptr
- s1
->include_stack
), "", filename
);
2009 bf
= tcc_malloc(sizeof(BufferedFile
));
2011 bf
->buf_ptr
= bf
->buffer
;
2012 bf
->buf_end
= bf
->buffer
;
2013 bf
->buffer
[0] = CH_EOB
; /* put eob symbol */
2014 pstrcpy(bf
->filename
, sizeof(bf
->filename
), filename
);
2016 normalize_slashes(bf
->filename
);
2019 bf
->ifndef_macro
= 0;
2020 bf
->ifdef_stack_ptr
= s1
->ifdef_stack_ptr
;
2021 // printf("opening '%s'\n", filename);
2025 void tcc_close(BufferedFile
*bf
)
2027 total_lines
+= bf
->line_num
;
2032 /* fill input buffer and peek next char */
2033 static int tcc_peekc_slow(BufferedFile
*bf
)
2036 /* only tries to read if really end of buffer */
2037 if (bf
->buf_ptr
>= bf
->buf_end
) {
2039 #if defined(PARSE_DEBUG)
2044 len
= read(bf
->fd
, bf
->buffer
, len
);
2051 bf
->buf_ptr
= bf
->buffer
;
2052 bf
->buf_end
= bf
->buffer
+ len
;
2053 *bf
->buf_end
= CH_EOB
;
2055 if (bf
->buf_ptr
< bf
->buf_end
) {
2056 return bf
->buf_ptr
[0];
2058 bf
->buf_ptr
= bf
->buf_end
;
2063 /* return the current character, handling end of block if necessary
2065 static int handle_eob(void)
2067 return tcc_peekc_slow(file
);
2070 /* read next char from current input file and handle end of input buffer */
2071 static inline void inp(void)
2073 ch
= *(++(file
->buf_ptr
));
2074 /* end of buffer/file handling */
2079 /* handle '\[\r]\n' */
2080 static int handle_stray_noerror(void)
2082 while (ch
== '\\') {
2087 } else if (ch
== '\r') {
2101 static void handle_stray(void)
2103 if (handle_stray_noerror())
2104 error("stray '\\' in program");
2107 /* skip the stray and handle the \\n case. Output an error if
2108 incorrect char after the stray */
2109 static int handle_stray1(uint8_t *p
)
2113 if (p
>= file
->buf_end
) {
2130 /* handle just the EOB case, but not stray */
2131 #define PEEKC_EOB(c, p)\
2142 /* handle the complicated stray case */
2143 #define PEEKC(c, p)\
2148 c = handle_stray1(p);\
2153 /* input with '\[\r]\n' handling. Note that this function cannot
2154 handle other characters after '\', so you cannot call it inside
2155 strings or comments */
2156 static void minp(void)
2164 /* single line C++ comments */
2165 static uint8_t *parse_line_comment(uint8_t *p
)
2173 if (c
== '\n' || c
== CH_EOF
) {
2175 } else if (c
== '\\') {
2184 } else if (c
== '\r') {
2202 static uint8_t *parse_comment(uint8_t *p
)
2208 /* fast skip loop */
2211 if (c
== '\n' || c
== '*' || c
== '\\')
2215 if (c
== '\n' || c
== '*' || c
== '\\')
2219 /* now we can handle all the cases */
2223 } else if (c
== '*') {
2229 } else if (c
== '/') {
2230 goto end_of_comment
;
2231 } else if (c
== '\\') {
2236 /* skip '\[\r]\n', otherwise just skip the stray */
2242 } else if (c
== '\r') {
2259 /* stray, eob or eof */
2264 error("unexpected end of file in comment");
2265 } else if (c
== '\\') {
2277 /* space exlcuding newline */
2278 static inline int is_space(int ch
)
2280 return ch
== ' ' || ch
== '\t' || ch
== '\v' || ch
== '\f' || ch
== '\r';
2283 static inline void skip_spaces(void)
2285 while (is_space(ch
))
2289 /* parse a string without interpreting escapes */
2290 static uint8_t *parse_pp_string(uint8_t *p
,
2291 int sep
, CString
*str
)
2299 } else if (c
== '\\') {
2304 unterminated_string
:
2305 /* XXX: indicate line number of start of string */
2306 error("missing terminating %c character", sep
);
2307 } else if (c
== '\\') {
2308 /* escape : just skip \[\r]\n */
2313 } else if (c
== '\r') {
2316 expect("'\n' after '\r'");
2319 } else if (c
== CH_EOF
) {
2320 goto unterminated_string
;
2323 cstr_ccat(str
, '\\');
2329 } else if (c
== '\n') {
2332 } else if (c
== '\r') {
2336 cstr_ccat(str
, '\r');
2352 /* skip block of text until #else, #elif or #endif. skip also pairs of
2354 void preprocess_skip(void)
2356 int a
, start_of_line
, c
, in_warn_or_error
;
2363 in_warn_or_error
= 0;
2384 } else if (c
== '\\') {
2385 ch
= file
->buf_ptr
[0];
2386 handle_stray_noerror();
2393 if (in_warn_or_error
)
2395 p
= parse_pp_string(p
, c
, NULL
);
2399 if (in_warn_or_error
)
2406 p
= parse_comment(p
);
2407 } else if (ch
== '/') {
2408 p
= parse_line_comment(p
);
2413 if (start_of_line
) {
2418 (tok
== TOK_ELSE
|| tok
== TOK_ELIF
|| tok
== TOK_ENDIF
))
2420 if (tok
== TOK_IF
|| tok
== TOK_IFDEF
|| tok
== TOK_IFNDEF
)
2422 else if (tok
== TOK_ENDIF
)
2424 else if( tok
== TOK_ERROR
|| tok
== TOK_WARNING
)
2425 in_warn_or_error
= 1;
2439 /* ParseState handling */
2441 /* XXX: currently, no include file info is stored. Thus, we cannot display
2442 accurate messages if the function or data definition spans multiple
2445 /* save current parse state in 's' */
2446 void save_parse_state(ParseState
*s
)
2448 s
->line_num
= file
->line_num
;
2449 s
->macro_ptr
= macro_ptr
;
2454 /* restore parse state from 's' */
2455 void restore_parse_state(ParseState
*s
)
2457 file
->line_num
= s
->line_num
;
2458 macro_ptr
= s
->macro_ptr
;
2463 /* return the number of additional 'ints' necessary to store the
2465 static inline int tok_ext_size(int t
)
2479 error("unsupported token");
2486 return LDOUBLE_SIZE
/ 4;
2492 /* token string handling */
2494 static inline void tok_str_new(TokenString
*s
)
2498 s
->allocated_len
= 0;
2499 s
->last_line_num
= -1;
2502 static void tok_str_free(int *str
)
2507 static int *tok_str_realloc(TokenString
*s
)
2511 if (s
->allocated_len
== 0) {
2514 len
= s
->allocated_len
* 2;
2516 str
= tcc_realloc(s
->str
, len
* sizeof(int));
2518 error("memory full");
2519 s
->allocated_len
= len
;
2524 static void tok_str_add(TokenString
*s
, int t
)
2530 if (len
>= s
->allocated_len
)
2531 str
= tok_str_realloc(s
);
2536 static void tok_str_add2(TokenString
*s
, int t
, CValue
*cv
)
2543 /* allocate space for worst case */
2544 if (len
+ TOK_MAX_SIZE
> s
->allocated_len
)
2545 str
= tok_str_realloc(s
);
2554 str
[len
++] = cv
->tab
[0];
2563 nb_words
= (sizeof(CString
) + cv
->cstr
->size
+ 3) >> 2;
2564 while ((len
+ nb_words
) > s
->allocated_len
)
2565 str
= tok_str_realloc(s
);
2566 cstr
= (CString
*)(str
+ len
);
2568 cstr
->size
= cv
->cstr
->size
;
2569 cstr
->data_allocated
= NULL
;
2570 cstr
->size_allocated
= cstr
->size
;
2571 memcpy((char *)cstr
+ sizeof(CString
),
2572 cv
->cstr
->data
, cstr
->size
);
2579 #if LDOUBLE_SIZE == 8
2582 str
[len
++] = cv
->tab
[0];
2583 str
[len
++] = cv
->tab
[1];
2585 #if LDOUBLE_SIZE == 12
2587 str
[len
++] = cv
->tab
[0];
2588 str
[len
++] = cv
->tab
[1];
2589 str
[len
++] = cv
->tab
[2];
2590 #elif LDOUBLE_SIZE == 16
2592 str
[len
++] = cv
->tab
[0];
2593 str
[len
++] = cv
->tab
[1];
2594 str
[len
++] = cv
->tab
[2];
2595 str
[len
++] = cv
->tab
[3];
2596 #elif LDOUBLE_SIZE != 8
2597 #error add long double size support
2606 /* add the current parse token in token string 's' */
2607 static void tok_str_add_tok(TokenString
*s
)
2611 /* save line number info */
2612 if (file
->line_num
!= s
->last_line_num
) {
2613 s
->last_line_num
= file
->line_num
;
2614 cval
.i
= s
->last_line_num
;
2615 tok_str_add2(s
, TOK_LINENUM
, &cval
);
2617 tok_str_add2(s
, tok
, &tokc
);
2620 #if LDOUBLE_SIZE == 16
2621 #define LDOUBLE_GET(p, cv) \
2626 #elif LDOUBLE_SIZE == 12
2627 #define LDOUBLE_GET(p, cv) \
2631 #elif LDOUBLE_SIZE == 8
2632 #define LDOUBLE_GET(p, cv) \
2636 #error add long double size support
2640 /* get a token from an integer array and increment pointer
2641 accordingly. we code it as a macro to avoid pointer aliasing. */
2642 #define TOK_GET(t, p, cv) \
2657 cv.cstr = (CString *)p; \
2658 cv.cstr->data = (char *)p + sizeof(CString);\
2659 p += (sizeof(CString) + cv.cstr->size + 3) >> 2;\
2668 case TOK_CLDOUBLE: \
2669 LDOUBLE_GET(p, cv); \
2670 p += LDOUBLE_SIZE / 4; \
2677 /* defines handling */
2678 static inline void define_push(int v
, int macro_type
, int *str
, Sym
*first_arg
)
2682 s
= sym_push2(&define_stack
, v
, macro_type
, (long)str
);
2683 s
->next
= first_arg
;
2684 table_ident
[v
- TOK_IDENT
]->sym_define
= s
;
2687 /* undefined a define symbol. Its name is just set to zero */
2688 static void define_undef(Sym
*s
)
2692 if (v
>= TOK_IDENT
&& v
< tok_ident
)
2693 table_ident
[v
- TOK_IDENT
]->sym_define
= NULL
;
2697 static inline Sym
*define_find(int v
)
2700 if ((unsigned)v
>= (unsigned)(tok_ident
- TOK_IDENT
))
2702 return table_ident
[v
]->sym_define
;
2705 /* free define stack until top reaches 'b' */
2706 static void free_defines(Sym
*b
)
2714 /* do not free args or predefined defines */
2716 tok_str_free((int *)top
->c
);
2718 if (v
>= TOK_IDENT
&& v
< tok_ident
)
2719 table_ident
[v
- TOK_IDENT
]->sym_define
= NULL
;
2727 static Sym
*label_find(int v
)
2730 if ((unsigned)v
>= (unsigned)(tok_ident
- TOK_IDENT
))
2732 return table_ident
[v
]->sym_label
;
2735 static Sym
*label_push(Sym
**ptop
, int v
, int flags
)
2738 s
= sym_push2(ptop
, v
, 0, 0);
2740 ps
= &table_ident
[v
- TOK_IDENT
]->sym_label
;
2741 if (ptop
== &global_label_stack
) {
2742 /* modify the top most local identifier, so that
2743 sym_identifier will point to 's' when popped */
2745 ps
= &(*ps
)->prev_tok
;
2752 /* pop labels until element last is reached. Look if any labels are
2753 undefined. Define symbols if '&&label' was used. */
2754 static void label_pop(Sym
**ptop
, Sym
*slast
)
2757 for(s
= *ptop
; s
!= slast
; s
= s1
) {
2759 if (s
->r
== LABEL_DECLARED
) {
2760 warning("label '%s' declared but not used", get_tok_str(s
->v
, NULL
));
2761 } else if (s
->r
== LABEL_FORWARD
) {
2762 error("label '%s' used but not defined",
2763 get_tok_str(s
->v
, NULL
));
2766 /* define corresponding symbol. A size of
2768 put_extern_sym(s
, cur_text_section
, (long)s
->next
, 1);
2772 table_ident
[s
->v
- TOK_IDENT
]->sym_label
= s
->prev_tok
;
2778 /* eval an expression for #if/#elif */
2779 static int expr_preprocess(void)
2785 while (tok
!= TOK_LINEFEED
&& tok
!= TOK_EOF
) {
2786 next(); /* do macro subst */
2787 if (tok
== TOK_DEFINED
) {
2792 c
= define_find(tok
) != 0;
2797 } else if (tok
>= TOK_IDENT
) {
2798 /* if undefined macro */
2802 tok_str_add_tok(&str
);
2804 tok_str_add(&str
, -1); /* simulate end of file */
2805 tok_str_add(&str
, 0);
2806 /* now evaluate C constant expression */
2807 macro_ptr
= str
.str
;
2811 tok_str_free(str
.str
);
2815 #if defined(PARSE_DEBUG) || defined(PP_DEBUG)
2816 static void tok_print(int *str
)
2822 TOK_GET(t
, str
, cval
);
2825 printf(" %s", get_tok_str(t
, &cval
));
2831 /* parse after #define */
2832 static void parse_define(void)
2834 Sym
*s
, *first
, **ps
;
2835 int v
, t
, varg
, is_vaargs
, c
;
2840 error("invalid macro name '%s'", get_tok_str(tok
, &tokc
));
2841 /* XXX: should check if same macro (ANSI) */
2844 /* '(' must be just after macro definition for MACRO_FUNC */
2845 c
= file
->buf_ptr
[0];
2847 c
= handle_stray1(file
->buf_ptr
);
2852 while (tok
!= ')') {
2856 if (varg
== TOK_DOTS
) {
2857 varg
= TOK___VA_ARGS__
;
2859 } else if (tok
== TOK_DOTS
&& gnu_ext
) {
2863 if (varg
< TOK_IDENT
)
2864 error("badly punctuated parameter list");
2865 s
= sym_push2(&define_stack
, varg
| SYM_FIELD
, is_vaargs
, 0);
2876 /* EOF testing necessary for '-D' handling */
2877 while (tok
!= TOK_LINEFEED
&& tok
!= TOK_EOF
) {
2878 tok_str_add2(&str
, tok
, &tokc
);
2881 tok_str_add(&str
, 0);
2883 printf("define %s %d: ", get_tok_str(v
, NULL
), t
);
2886 define_push(v
, t
, str
.str
, first
);
2889 static inline int hash_cached_include(int type
, const char *filename
)
2891 const unsigned char *s
;
2895 h
= TOK_HASH_FUNC(h
, type
);
2898 h
= TOK_HASH_FUNC(h
, *s
);
2901 h
&= (CACHED_INCLUDES_HASH_SIZE
- 1);
2905 /* XXX: use a token or a hash table to accelerate matching ? */
2906 static CachedInclude
*search_cached_include(TCCState
*s1
,
2907 int type
, const char *filename
)
2911 h
= hash_cached_include(type
, filename
);
2912 i
= s1
->cached_includes_hash
[h
];
2916 e
= s1
->cached_includes
[i
- 1];
2917 if (e
->type
== type
&& !PATHCMP(e
->filename
, filename
))
2924 static inline void add_cached_include(TCCState
*s1
, int type
,
2925 const char *filename
, int ifndef_macro
)
2930 if (search_cached_include(s1
, type
, filename
))
2933 printf("adding cached '%s' %s\n", filename
, get_tok_str(ifndef_macro
, NULL
));
2935 e
= tcc_malloc(sizeof(CachedInclude
) + strlen(filename
));
2939 strcpy(e
->filename
, filename
);
2940 e
->ifndef_macro
= ifndef_macro
;
2941 dynarray_add((void ***)&s1
->cached_includes
, &s1
->nb_cached_includes
, e
);
2942 /* add in hash table */
2943 h
= hash_cached_include(type
, filename
);
2944 e
->hash_next
= s1
->cached_includes_hash
[h
];
2945 s1
->cached_includes_hash
[h
] = s1
->nb_cached_includes
;
2948 static void pragma_parse(TCCState
*s1
)
2953 if (tok
== TOK_pack
) {
2956 #pragma pack(1) // set
2957 #pragma pack() // reset to default
2958 #pragma pack(push,1) // push & set
2959 #pragma pack(pop) // restore previous
2963 if (tok
== TOK_ASM_pop
) {
2965 if (s1
->pack_stack_ptr
<= s1
->pack_stack
) {
2967 error("out of pack stack");
2969 s1
->pack_stack_ptr
--;
2973 if (tok
== TOK_ASM_push
) {
2975 if (s1
->pack_stack_ptr
>= s1
->pack_stack
+ PACK_STACK_SIZE
- 1)
2977 s1
->pack_stack_ptr
++;
2980 if (tok
!= TOK_CINT
) {
2982 error("invalid pack pragma");
2985 if (val
< 1 || val
> 16 || (val
& (val
- 1)) != 0)
2989 *s1
->pack_stack_ptr
= val
;
2995 /* is_bof is true if first non space token at beginning of file */
2996 static void preprocess(int is_bof
)
2998 TCCState
*s1
= tcc_state
;
2999 int size
, i
, c
, n
, saved_parse_flags
;
3006 saved_parse_flags
= parse_flags
;
3007 parse_flags
= PARSE_FLAG_PREPROCESS
| PARSE_FLAG_TOK_NUM
|
3008 PARSE_FLAG_LINEFEED
;
3018 s
= define_find(tok
);
3019 /* undefine symbol by putting an invalid name */
3024 case TOK_INCLUDE_NEXT
:
3025 ch
= file
->buf_ptr
[0];
3026 /* XXX: incorrect if comments : use next_nomacro with a special mode */
3031 } else if (ch
== '\"') {
3036 while (ch
!= c
&& ch
!= '\n' && ch
!= CH_EOF
) {
3037 if ((q
- buf
) < sizeof(buf
) - 1)
3040 if (handle_stray_noerror() == 0)
3048 /* eat all spaces and comments after include */
3049 /* XXX: slightly incorrect */
3050 while (ch1
!= '\n' && ch1
!= CH_EOF
)
3054 /* computed #include : either we have only strings or
3055 we have anything enclosed in '<>' */
3058 if (tok
== TOK_STR
) {
3059 while (tok
!= TOK_LINEFEED
) {
3060 if (tok
!= TOK_STR
) {
3062 error("'#include' expects \"FILENAME\" or <FILENAME>");
3064 pstrcat(buf
, sizeof(buf
), (char *)tokc
.cstr
->data
);
3070 while (tok
!= TOK_LINEFEED
) {
3071 pstrcat(buf
, sizeof(buf
), get_tok_str(tok
, &tokc
));
3075 /* check syntax and remove '<>' */
3076 if (len
< 2 || buf
[0] != '<' || buf
[len
- 1] != '>')
3077 goto include_syntax
;
3078 memmove(buf
, buf
+ 1, len
- 2);
3079 buf
[len
- 2] = '\0';
3084 e
= search_cached_include(s1
, c
, buf
);
3085 if (e
&& define_find(e
->ifndef_macro
)) {
3086 /* no need to parse the include because the 'ifndef macro'
3089 printf("%s: skipping %s\n", file
->filename
, buf
);
3092 if (s1
->include_stack_ptr
>= s1
->include_stack
+ INCLUDE_STACK_SIZE
)
3093 error("#include recursion too deep");
3094 /* push current file in stack */
3095 /* XXX: fix current line init */
3096 *s1
->include_stack_ptr
++ = file
;
3098 /* check absolute include path */
3099 if (IS_ABSPATH(buf
)) {
3100 f
= tcc_open(s1
, buf
);
3105 /* first search in current dir if "header.h" */
3106 size
= tcc_basename(file
->filename
) - file
->filename
;
3107 if (size
> sizeof(buf1
) - 1)
3108 size
= sizeof(buf1
) - 1;
3109 memcpy(buf1
, file
->filename
, size
);
3111 pstrcat(buf1
, sizeof(buf1
), buf
);
3112 f
= tcc_open(s1
, buf1
);
3114 if (tok
== TOK_INCLUDE_NEXT
)
3120 /* now search in all the include paths */
3121 n
= s1
->nb_include_paths
+ s1
->nb_sysinclude_paths
;
3122 for(i
= 0; i
< n
; i
++) {
3124 if (i
< s1
->nb_include_paths
)
3125 path
= s1
->include_paths
[i
];
3127 path
= s1
->sysinclude_paths
[i
- s1
->nb_include_paths
];
3128 pstrcpy(buf1
, sizeof(buf1
), path
);
3129 pstrcat(buf1
, sizeof(buf1
), "/");
3130 pstrcat(buf1
, sizeof(buf1
), buf
);
3131 f
= tcc_open(s1
, buf1
);
3133 if (tok
== TOK_INCLUDE_NEXT
)
3139 --s1
->include_stack_ptr
;
3140 error("include file '%s' not found", buf
);
3144 printf("%s: including %s\n", file
->filename
, buf1
);
3147 pstrcpy(f
->inc_filename
, sizeof(f
->inc_filename
), buf
);
3149 /* add include file debug info */
3151 put_stabs(file
->filename
, N_BINCL
, 0, 0, 0);
3153 tok_flags
|= TOK_FLAG_BOF
| TOK_FLAG_BOL
;
3154 ch
= file
->buf_ptr
[0];
3162 c
= expr_preprocess();
3168 if (tok
< TOK_IDENT
)
3169 error("invalid argument for '#if%sdef'", c
? "n" : "");
3173 printf("#ifndef %s\n", get_tok_str(tok
, NULL
));
3175 file
->ifndef_macro
= tok
;
3178 c
= (define_find(tok
) != 0) ^ c
;
3180 if (s1
->ifdef_stack_ptr
>= s1
->ifdef_stack
+ IFDEF_STACK_SIZE
)
3181 error("memory full");
3182 *s1
->ifdef_stack_ptr
++ = c
;
3185 if (s1
->ifdef_stack_ptr
== s1
->ifdef_stack
)
3186 error("#else without matching #if");
3187 if (s1
->ifdef_stack_ptr
[-1] & 2)
3188 error("#else after #else");
3189 c
= (s1
->ifdef_stack_ptr
[-1] ^= 3);
3192 if (s1
->ifdef_stack_ptr
== s1
->ifdef_stack
)
3193 error("#elif without matching #if");
3194 c
= s1
->ifdef_stack_ptr
[-1];
3196 error("#elif after #else");
3197 /* last #if/#elif expression was true: we skip */
3200 c
= expr_preprocess();
3201 s1
->ifdef_stack_ptr
[-1] = c
;
3211 if (s1
->ifdef_stack_ptr
<= file
->ifdef_stack_ptr
)
3212 error("#endif without matching #if");
3213 s1
->ifdef_stack_ptr
--;
3214 /* '#ifndef macro' was at the start of file. Now we check if
3215 an '#endif' is exactly at the end of file */
3216 if (file
->ifndef_macro
&&
3217 s1
->ifdef_stack_ptr
== file
->ifdef_stack_ptr
) {
3218 file
->ifndef_macro_saved
= file
->ifndef_macro
;
3219 /* need to set to zero to avoid false matches if another
3220 #ifndef at middle of file */
3221 file
->ifndef_macro
= 0;
3222 while (tok
!= TOK_LINEFEED
)
3224 tok_flags
|= TOK_FLAG_ENDIF
;
3230 if (tok
!= TOK_CINT
)
3232 file
->line_num
= tokc
.i
- 1; /* the line number will be incremented after */
3234 if (tok
!= TOK_LINEFEED
) {
3237 pstrcpy(file
->filename
, sizeof(file
->filename
),
3238 (char *)tokc
.cstr
->data
);
3244 ch
= file
->buf_ptr
[0];
3247 while (ch
!= '\n' && ch
!= CH_EOF
) {
3248 if ((q
- buf
) < sizeof(buf
) - 1)
3251 if (handle_stray_noerror() == 0)
3258 error("#error %s", buf
);
3260 warning("#warning %s", buf
);
3266 if (tok
== TOK_LINEFEED
|| tok
== '!' || tok
== TOK_CINT
) {
3267 /* '!' is ignored to allow C scripts. numbers are ignored
3268 to emulate cpp behaviour */
3270 if (!(saved_parse_flags
& PARSE_FLAG_ASM_COMMENTS
))
3271 warning("Ignoring unknown preprocessing directive #%s", get_tok_str(tok
, &tokc
));
3275 /* ignore other preprocess commands or #! for C scripts */
3276 while (tok
!= TOK_LINEFEED
)
3279 parse_flags
= saved_parse_flags
;
3282 /* evaluate escape codes in a string. */
3283 static void parse_escape_string(CString
*outstr
, const uint8_t *buf
, int is_long
)
3298 case '0': case '1': case '2': case '3':
3299 case '4': case '5': case '6': case '7':
3300 /* at most three octal digits */
3305 n
= n
* 8 + c
- '0';
3309 n
= n
* 8 + c
- '0';
3314 goto add_char_nonext
;
3322 if (c
>= 'a' && c
<= 'f')
3324 else if (c
>= 'A' && c
<= 'F')
3334 goto add_char_nonext
;
3358 goto invalid_escape
;
3368 if (c
>= '!' && c
<= '~')
3369 warning("unknown escape sequence: \'\\%c\'", c
);
3371 warning("unknown escape sequence: \'\\x%x\'", c
);
3378 cstr_ccat(outstr
, c
);
3380 cstr_wccat(outstr
, c
);
3382 /* add a trailing '\0' */
3384 cstr_ccat(outstr
, '\0');
3386 cstr_wccat(outstr
, '\0');
3389 /* we use 64 bit numbers */
3392 /* bn = (bn << shift) | or_val */
3393 void bn_lshift(unsigned int *bn
, int shift
, int or_val
)
3397 for(i
=0;i
<BN_SIZE
;i
++) {
3399 bn
[i
] = (v
<< shift
) | or_val
;
3400 or_val
= v
>> (32 - shift
);
3404 void bn_zero(unsigned int *bn
)
3407 for(i
=0;i
<BN_SIZE
;i
++) {
3412 /* parse number in null terminated string 'p' and return it in the
3414 void parse_number(const char *p
)
3416 int b
, t
, shift
, frac_bits
, s
, exp_val
, ch
;
3418 unsigned int bn
[BN_SIZE
];
3429 goto float_frac_parse
;
3430 } else if (t
== '0') {
3431 if (ch
== 'x' || ch
== 'X') {
3435 } else if (tcc_ext
&& (ch
== 'b' || ch
== 'B')) {
3441 /* parse all digits. cannot check octal numbers at this stage
3442 because of floating point constants */
3444 if (ch
>= 'a' && ch
<= 'f')
3446 else if (ch
>= 'A' && ch
<= 'F')
3454 if (q
>= token_buf
+ STRING_MAX_SIZE
) {
3456 error("number too long");
3462 ((ch
== 'e' || ch
== 'E') && b
== 10) ||
3463 ((ch
== 'p' || ch
== 'P') && (b
== 16 || b
== 2))) {
3465 /* NOTE: strtox should support that for hexa numbers, but
3466 non ISOC99 libcs do not support it, so we prefer to do
3468 /* hexadecimal or binary floats */
3469 /* XXX: handle overflows */
3481 } else if (t
>= 'a') {
3483 } else if (t
>= 'A') {
3488 bn_lshift(bn
, shift
, t
);
3495 if (t
>= 'a' && t
<= 'f') {
3497 } else if (t
>= 'A' && t
<= 'F') {
3499 } else if (t
>= '0' && t
<= '9') {
3505 error("invalid digit");
3506 bn_lshift(bn
, shift
, t
);
3511 if (ch
!= 'p' && ch
!= 'P')
3518 } else if (ch
== '-') {
3522 if (ch
< '0' || ch
> '9')
3523 expect("exponent digits");
3524 while (ch
>= '0' && ch
<= '9') {
3525 exp_val
= exp_val
* 10 + ch
- '0';
3528 exp_val
= exp_val
* s
;
3530 /* now we can generate the number */
3531 /* XXX: should patch directly float number */
3532 d
= (double)bn
[1] * 4294967296.0 + (double)bn
[0];
3533 d
= ldexp(d
, exp_val
- frac_bits
);
3538 /* float : should handle overflow */
3540 } else if (t
== 'L') {
3543 /* XXX: not large enough */
3544 tokc
.ld
= (long double)d
;
3550 /* decimal floats */
3552 if (q
>= token_buf
+ STRING_MAX_SIZE
)
3557 while (ch
>= '0' && ch
<= '9') {
3558 if (q
>= token_buf
+ STRING_MAX_SIZE
)
3564 if (ch
== 'e' || ch
== 'E') {
3565 if (q
>= token_buf
+ STRING_MAX_SIZE
)
3569 if (ch
== '-' || ch
== '+') {
3570 if (q
>= token_buf
+ STRING_MAX_SIZE
)
3575 if (ch
< '0' || ch
> '9')
3576 expect("exponent digits");
3577 while (ch
>= '0' && ch
<= '9') {
3578 if (q
>= token_buf
+ STRING_MAX_SIZE
)
3590 tokc
.f
= strtof(token_buf
, NULL
);
3591 } else if (t
== 'L') {
3594 tokc
.ld
= strtold(token_buf
, NULL
);
3597 tokc
.d
= strtod(token_buf
, NULL
);
3601 unsigned long long n
, n1
;
3604 /* integer number */
3607 if (b
== 10 && *q
== '0') {
3614 /* no need for checks except for base 10 / 8 errors */
3617 } else if (t
>= 'a') {
3619 } else if (t
>= 'A') {
3624 error("invalid digit");
3628 /* detect overflow */
3629 /* XXX: this test is not reliable */
3631 error("integer constant overflow");
3634 /* XXX: not exactly ANSI compliant */
3635 if ((n
& 0xffffffff00000000LL
) != 0) {
3640 } else if (n
> 0x7fffffff) {
3651 error("three 'l's in integer constant");
3654 if (tok
== TOK_CINT
)
3656 else if (tok
== TOK_CUINT
)
3660 } else if (t
== 'U') {
3662 error("two 'u's in integer constant");
3664 if (tok
== TOK_CINT
)
3666 else if (tok
== TOK_CLLONG
)
3673 if (tok
== TOK_CINT
|| tok
== TOK_CUINT
)
3679 error("invalid number\n");
3683 #define PARSE2(c1, tok1, c2, tok2) \
3694 /* return next token without macro substitution */
3695 static inline void next_nomacro1(void)
3702 cstr_reset(&tok_spaces
);
3712 cstr_ccat(&tok_spaces
, c
);
3717 /* first look if it is in fact an end of buffer */
3718 if (p
>= file
->buf_end
) {
3722 if (p
>= file
->buf_end
)
3735 TCCState
*s1
= tcc_state
;
3736 if ((parse_flags
& PARSE_FLAG_LINEFEED
)
3737 && !(tok_flags
& TOK_FLAG_EOF
)) {
3738 tok_flags
|= TOK_FLAG_EOF
;
3740 goto keep_tok_flags
;
3741 } else if (s1
->include_stack_ptr
== s1
->include_stack
||
3742 !(parse_flags
& PARSE_FLAG_PREPROCESS
)) {
3743 /* no include left : end of file. */
3746 tok_flags
&= ~TOK_FLAG_EOF
;
3747 /* pop include file */
3749 /* test if previous '#endif' was after a #ifdef at
3751 if (tok_flags
& TOK_FLAG_ENDIF
) {
3753 printf("#endif %s\n", get_tok_str(file
->ifndef_macro_saved
, NULL
));
3755 add_cached_include(s1
, file
->inc_type
, file
->inc_filename
,
3756 file
->ifndef_macro_saved
);
3759 /* add end of include file debug info */
3761 put_stabd(N_EINCL
, 0, 0);
3763 /* pop include stack */
3765 s1
->include_stack_ptr
--;
3766 file
= *s1
->include_stack_ptr
;
3775 tok_flags
|= TOK_FLAG_BOL
;
3777 if (0 == (parse_flags
& PARSE_FLAG_LINEFEED
))
3780 goto keep_tok_flags
;
3785 if ((tok_flags
& TOK_FLAG_BOL
) &&
3786 (parse_flags
& PARSE_FLAG_PREPROCESS
)) {
3788 preprocess(tok_flags
& TOK_FLAG_BOF
);
3794 tok
= TOK_TWOSHARPS
;
3796 if (parse_flags
& PARSE_FLAG_ASM_COMMENTS
) {
3797 p
= parse_line_comment(p
- 1);
3806 case 'a': case 'b': case 'c': case 'd':
3807 case 'e': case 'f': case 'g': case 'h':
3808 case 'i': case 'j': case 'k': case 'l':
3809 case 'm': case 'n': case 'o': case 'p':
3810 case 'q': case 'r': case 's': case 't':
3811 case 'u': case 'v': case 'w': case 'x':
3813 case 'A': case 'B': case 'C': case 'D':
3814 case 'E': case 'F': case 'G': case 'H':
3815 case 'I': case 'J': case 'K':
3816 case 'M': case 'N': case 'O': case 'P':
3817 case 'Q': case 'R': case 'S': case 'T':
3818 case 'U': case 'V': case 'W': case 'X':
3824 h
= TOK_HASH_FUNC(h
, c
);
3828 if (!isidnum_table
[c
-CH_EOF
])
3830 h
= TOK_HASH_FUNC(h
, c
);
3837 /* fast case : no stray found, so we have the full token
3838 and we have already hashed it */
3840 h
&= (TOK_HASH_SIZE
- 1);
3841 pts
= &hash_ident
[h
];
3846 if (ts
->len
== len
&& !memcmp(ts
->str
, p1
, len
))
3848 pts
= &(ts
->hash_next
);
3850 ts
= tok_alloc_new(pts
, p1
, len
);
3854 cstr_reset(&tokcstr
);
3857 cstr_ccat(&tokcstr
, *p1
);
3863 while (isidnum_table
[c
-CH_EOF
]) {
3864 cstr_ccat(&tokcstr
, c
);
3867 ts
= tok_alloc(tokcstr
.data
, tokcstr
.size
);
3873 if (t
!= '\\' && t
!= '\'' && t
!= '\"') {
3875 goto parse_ident_fast
;
3878 if (c
== '\'' || c
== '\"') {
3882 cstr_reset(&tokcstr
);
3883 cstr_ccat(&tokcstr
, 'L');
3884 goto parse_ident_slow
;
3888 case '0': case '1': case '2': case '3':
3889 case '4': case '5': case '6': case '7':
3892 cstr_reset(&tokcstr
);
3893 /* after the first digit, accept digits, alpha, '.' or sign if
3894 prefixed by 'eEpP' */
3898 cstr_ccat(&tokcstr
, c
);
3900 if (!(isnum(c
) || isid(c
) || c
== '.' ||
3901 ((c
== '+' || c
== '-') &&
3902 (t
== 'e' || t
== 'E' || t
== 'p' || t
== 'P'))))
3905 /* We add a trailing '\0' to ease parsing */
3906 cstr_ccat(&tokcstr
, '\0');
3907 tokc
.cstr
= &tokcstr
;
3911 /* special dot handling because it can also start a number */
3914 cstr_reset(&tokcstr
);
3915 cstr_ccat(&tokcstr
, '.');
3917 } else if (c
== '.') {
3937 /* parse the string */
3939 p
= parse_pp_string(p
, sep
, &str
);
3940 cstr_ccat(&str
, '\0');
3942 /* eval the escape (should be done as TOK_PPNUM) */
3943 cstr_reset(&tokcstr
);
3944 parse_escape_string(&tokcstr
, str
.data
, is_long
);
3949 /* XXX: make it portable */
3953 char_size
= sizeof(nwchar_t
);
3954 if (tokcstr
.size
<= char_size
)
3955 error("empty character constant");
3956 if (tokcstr
.size
> 2 * char_size
)
3957 warning("multi-character character constant");
3959 tokc
.i
= *(int8_t *)tokcstr
.data
;
3962 tokc
.i
= *(nwchar_t
*)tokcstr
.data
;
3966 tokc
.cstr
= &tokcstr
;
3980 } else if (c
== '<') {
3998 } else if (c
== '>') {
4016 } else if (c
== '=') {
4029 } else if (c
== '=') {
4042 } else if (c
== '=') {
4055 } else if (c
== '=') {
4058 } else if (c
== '>') {
4066 PARSE2('!', '!', '=', TOK_NE
)
4067 PARSE2('=', '=', '=', TOK_EQ
)
4068 PARSE2('*', '*', '=', TOK_A_MUL
)
4069 PARSE2('%', '%', '=', TOK_A_MOD
)
4070 PARSE2('^', '^', '=', TOK_A_XOR
)
4072 /* comments or operator */
4076 p
= parse_comment(p
);
4078 } else if (c
== '/') {
4079 p
= parse_line_comment(p
);
4081 } else if (c
== '=') {
4101 case '$': /* only used in assembler */
4102 case '@': /* dito */
4107 error("unrecognized character \\x%02x", c
);
4113 #if defined(PARSE_DEBUG)
4114 printf("token = %s\n", get_tok_str(tok
, &tokc
));
4118 /* return next token without macro substitution. Can read input from
4120 static void next_nomacro(void)
4126 TOK_GET(tok
, macro_ptr
, tokc
);
4127 if (tok
== TOK_LINENUM
) {
4128 file
->line_num
= tokc
.i
;
4137 /* substitute args in macro_str and return allocated string */
4138 static int *macro_arg_subst(Sym
**nested_list
, int *macro_str
, Sym
*args
)
4140 int *st
, last_tok
, t
, notfirst
;
4149 TOK_GET(t
, macro_str
, cval
);
4154 TOK_GET(t
, macro_str
, cval
);
4157 s
= sym_find2(args
, t
);
4164 cstr_ccat(&cstr
, ' ');
4165 TOK_GET(t
, st
, cval
);
4166 cstr_cat(&cstr
, get_tok_str(t
, &cval
));
4171 cstr_ccat(&cstr
, '\0');
4173 printf("stringize: %s\n", (char *)cstr
.data
);
4177 tok_str_add2(&str
, TOK_STR
, &cval
);
4180 tok_str_add2(&str
, t
, &cval
);
4182 } else if (t
>= TOK_IDENT
) {
4183 s
= sym_find2(args
, t
);
4186 /* if '##' is present before or after, no arg substitution */
4187 if (*macro_str
== TOK_TWOSHARPS
|| last_tok
== TOK_TWOSHARPS
) {
4188 /* special case for var arg macros : ## eats the
4189 ',' if empty VA_ARGS variable. */
4190 /* XXX: test of the ',' is not 100%
4191 reliable. should fix it to avoid security
4193 if (gnu_ext
&& s
->type
.t
&&
4194 last_tok
== TOK_TWOSHARPS
&&
4195 str
.len
>= 2 && str
.str
[str
.len
- 2] == ',') {
4197 /* suppress ',' '##' */
4200 /* suppress '##' and add variable */
4208 TOK_GET(t1
, st
, cval
);
4211 tok_str_add2(&str
, t1
, &cval
);
4215 /* NOTE: the stream cannot be read when macro
4216 substituing an argument */
4217 macro_subst(&str
, nested_list
, st
, NULL
);
4220 tok_str_add(&str
, t
);
4223 tok_str_add2(&str
, t
, &cval
);
4227 tok_str_add(&str
, 0);
4231 static char const ab_month_name
[12][4] =
4233 "Jan", "Feb", "Mar", "Apr", "May", "Jun",
4234 "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"
4237 /* do macro substitution of current token with macro 's' and add
4238 result to (tok_str,tok_len). 'nested_list' is the list of all
4239 macros we got inside to avoid recursing. Return non zero if no
4240 substitution needs to be done */
4241 static int macro_subst_tok(TokenString
*tok_str
,
4242 Sym
**nested_list
, Sym
*s
, struct macro_level
**can_read_stream
)
4244 Sym
*args
, *sa
, *sa1
;
4245 int mstr_allocated
, parlevel
, *mstr
, t
, t1
;
4252 /* if symbol is a macro, prepare substitution */
4253 /* special macros */
4254 if (tok
== TOK___LINE__
) {
4255 snprintf(buf
, sizeof(buf
), "%d", file
->line_num
);
4259 } else if (tok
== TOK___FILE__
) {
4260 cstrval
= file
->filename
;
4262 } else if (tok
== TOK___DATE__
|| tok
== TOK___TIME__
) {
4267 tm
= localtime(&ti
);
4268 if (tok
== TOK___DATE__
) {
4269 snprintf(buf
, sizeof(buf
), "%s %2d %d",
4270 ab_month_name
[tm
->tm_mon
], tm
->tm_mday
, tm
->tm_year
+ 1900);
4272 snprintf(buf
, sizeof(buf
), "%02d:%02d:%02d",
4273 tm
->tm_hour
, tm
->tm_min
, tm
->tm_sec
);
4280 cstr_cat(&cstr
, cstrval
);
4281 cstr_ccat(&cstr
, '\0');
4283 tok_str_add2(tok_str
, t1
, &cval
);
4288 if (s
->type
.t
== MACRO_FUNC
) {
4289 /* NOTE: we do not use next_nomacro to avoid eating the
4290 next token. XXX: find better solution */
4294 if (t
== 0 && can_read_stream
) {
4295 /* end of macro stream: we must look at the token
4296 after in the file */
4297 struct macro_level
*ml
= *can_read_stream
;
4303 *can_read_stream
= ml
-> prev
;
4308 /* XXX: incorrect with comments */
4309 ch
= file
->buf_ptr
[0];
4310 while (is_space(ch
) || ch
== '\n')
4314 if (t
!= '(') /* no macro subst */
4317 /* argument macro */
4322 /* NOTE: empty args are allowed, except if no args */
4324 /* handle '()' case */
4325 if (!args
&& !sa
&& tok
== ')')
4328 error("macro '%s' used with too many args",
4329 get_tok_str(s
->v
, 0));
4332 /* NOTE: non zero sa->t indicates VA_ARGS */
4333 while ((parlevel
> 0 ||
4335 (tok
!= ',' || sa
->type
.t
))) &&
4339 else if (tok
== ')')
4341 if (tok
!= TOK_LINEFEED
)
4342 tok_str_add2(&str
, tok
, &tokc
);
4345 tok_str_add(&str
, 0);
4346 sym_push2(&args
, sa
->v
& ~SYM_FIELD
, sa
->type
.t
, (long)str
.str
);
4349 /* special case for gcc var args: add an empty
4350 var arg argument if it is omitted */
4351 if (sa
&& sa
->type
.t
&& gnu_ext
)
4361 error("macro '%s' used with too few args",
4362 get_tok_str(s
->v
, 0));
4365 /* now subst each arg */
4366 mstr
= macro_arg_subst(nested_list
, mstr
, args
);
4371 tok_str_free((int *)sa
->c
);
4377 sym_push2(nested_list
, s
->v
, 0, 0);
4378 macro_subst(tok_str
, nested_list
, mstr
, can_read_stream
);
4379 /* pop nested defined symbol */
4381 *nested_list
= sa1
->prev
;
4389 /* handle the '##' operator. Return NULL if no '##' seen. Otherwise
4390 return the resulting string (which must be freed). */
4391 static inline int *macro_twosharps(const int *macro_str
)
4394 const int *macro_ptr1
, *start_macro_ptr
, *ptr
, *saved_macro_ptr
;
4396 const char *p1
, *p2
;
4398 TokenString macro_str1
;
4401 start_macro_ptr
= macro_str
;
4402 /* we search the first '##' */
4404 macro_ptr1
= macro_str
;
4405 TOK_GET(t
, macro_str
, cval
);
4406 /* nothing more to do if end of string */
4409 if (*macro_str
== TOK_TWOSHARPS
)
4413 /* we saw '##', so we need more processing to handle it */
4415 tok_str_new(¯o_str1
);
4419 /* add all tokens seen so far */
4420 for(ptr
= start_macro_ptr
; ptr
< macro_ptr1
;) {
4421 TOK_GET(t
, ptr
, cval
);
4422 tok_str_add2(¯o_str1
, t
, &cval
);
4424 saved_macro_ptr
= macro_ptr
;
4425 /* XXX: get rid of the use of macro_ptr here */
4426 macro_ptr
= (int *)macro_str
;
4428 while (*macro_ptr
== TOK_TWOSHARPS
) {
4430 macro_ptr1
= macro_ptr
;
4433 TOK_GET(t
, macro_ptr
, cval
);
4434 /* We concatenate the two tokens if we have an
4435 identifier or a preprocessing number */
4437 p1
= get_tok_str(tok
, &tokc
);
4438 cstr_cat(&cstr
, p1
);
4439 p2
= get_tok_str(t
, &cval
);
4440 cstr_cat(&cstr
, p2
);
4441 cstr_ccat(&cstr
, '\0');
4443 if ((tok
>= TOK_IDENT
|| tok
== TOK_PPNUM
) &&
4444 (t
>= TOK_IDENT
|| t
== TOK_PPNUM
)) {
4445 if (tok
== TOK_PPNUM
) {
4446 /* if number, then create a number token */
4447 /* NOTE: no need to allocate because
4448 tok_str_add2() does it */
4449 cstr_reset(&tokcstr
);
4452 tokc
.cstr
= &tokcstr
;
4454 /* if identifier, we must do a test to
4455 validate we have a correct identifier */
4456 if (t
== TOK_PPNUM
) {
4466 if (!isnum(c
) && !isid(c
))
4470 ts
= tok_alloc(cstr
.data
, strlen(cstr
.data
));
4471 tok
= ts
->tok
; /* modify current token */
4474 const char *str
= cstr
.data
;
4475 const unsigned char *q
;
4477 /* we look for a valid token */
4478 /* XXX: do more extensive checks */
4479 if (!strcmp(str
, ">>=")) {
4481 } else if (!strcmp(str
, "<<=")) {
4483 } else if (strlen(str
) == 2) {
4484 /* search in two bytes table */
4489 if (q
[0] == str
[0] && q
[1] == str
[1])
4496 /* NOTE: because get_tok_str use a static buffer,
4499 p1
= get_tok_str(tok
, &tokc
);
4500 cstr_cat(&cstr
, p1
);
4501 cstr_ccat(&cstr
, '\0');
4502 p2
= get_tok_str(t
, &cval
);
4503 warning("pasting \"%s\" and \"%s\" does not give a valid preprocessing token", cstr
.data
, p2
);
4504 /* cannot merge tokens: just add them separately */
4505 tok_str_add2(¯o_str1
, tok
, &tokc
);
4506 /* XXX: free associated memory ? */
4513 tok_str_add2(¯o_str1
, tok
, &tokc
);
4518 macro_ptr
= (int *)saved_macro_ptr
;
4520 tok_str_add(¯o_str1
, 0);
4521 return macro_str1
.str
;
4525 /* do macro substitution of macro_str and add result to
4526 (tok_str,tok_len). 'nested_list' is the list of all macros we got
4527 inside to avoid recursing. */
4528 static void macro_subst(TokenString
*tok_str
, Sym
**nested_list
,
4529 const int *macro_str
, struct macro_level
** can_read_stream
)
4536 struct macro_level ml
;
4538 /* first scan for '##' operator handling */
4540 macro_str1
= macro_twosharps(ptr
);
4544 /* NOTE: ptr == NULL can only happen if tokens are read from
4545 file stream due to a macro function call */
4548 TOK_GET(t
, ptr
, cval
);
4553 /* if nested substitution, do nothing */
4554 if (sym_find2(*nested_list
, t
))
4557 if (can_read_stream
)
4558 ml
.prev
= *can_read_stream
, *can_read_stream
= &ml
;
4559 macro_ptr
= (int *)ptr
;
4561 ret
= macro_subst_tok(tok_str
, nested_list
, s
, can_read_stream
);
4562 ptr
= (int *)macro_ptr
;
4564 if (can_read_stream
&& *can_read_stream
== &ml
)
4565 *can_read_stream
= ml
.prev
;
4570 tok_str_add2(tok_str
, t
, &cval
);
4574 tok_str_free(macro_str1
);
4577 /* return next token with macro substitution */
4578 static void next(void)
4580 Sym
*nested_list
, *s
;
4582 struct macro_level
*ml
;
4587 /* if not reading from macro substituted string, then try
4588 to substitute macros */
4589 if (tok
>= TOK_IDENT
&&
4590 (parse_flags
& PARSE_FLAG_PREPROCESS
)) {
4591 s
= define_find(tok
);
4593 /* we have a macro: we try to substitute */
4597 if (macro_subst_tok(&str
, &nested_list
, s
, &ml
) == 0) {
4598 /* substitution done, NOTE: maybe empty */
4599 tok_str_add(&str
, 0);
4600 macro_ptr
= str
.str
;
4601 macro_ptr_allocated
= str
.str
;
4608 /* end of macro or end of unget buffer */
4609 if (unget_buffer_enabled
) {
4610 macro_ptr
= unget_saved_macro_ptr
;
4611 unget_buffer_enabled
= 0;
4613 /* end of macro string: free it */
4614 tok_str_free(macro_ptr_allocated
);
4621 /* convert preprocessor tokens into C tokens */
4622 if (tok
== TOK_PPNUM
&&
4623 (parse_flags
& PARSE_FLAG_TOK_NUM
)) {
4624 parse_number((char *)tokc
.cstr
->data
);
4628 /* push back current token and set current token to 'last_tok'. Only
4629 identifier case handled for labels. */
4630 static inline void unget_tok(int last_tok
)
4634 unget_saved_macro_ptr
= macro_ptr
;
4635 unget_buffer_enabled
= 1;
4636 q
= unget_saved_buffer
;
4639 n
= tok_ext_size(tok
) - 1;
4642 *q
= 0; /* end of token string */
4647 void swap(int *p
, int *q
)
4655 void vsetc(CType
*type
, int r
, CValue
*vc
)
4659 if (vtop
>= vstack
+ (VSTACK_SIZE
- 1))
4660 error("memory full");
4661 /* cannot let cpu flags if other instruction are generated. Also
4662 avoid leaving VT_JMP anywhere except on the top of the stack
4663 because it would complicate the code generator. */
4664 if (vtop
>= vstack
) {
4665 v
= vtop
->r
& VT_VALMASK
;
4666 if (v
== VT_CMP
|| (v
& ~1) == VT_JMP
)
4672 vtop
->r2
= VT_CONST
;
4676 /* push integer constant */
4681 vsetc(&int_type
, VT_CONST
, &cval
);
4684 /* push long long constant */
4685 void vpushll(long long v
)
4691 vsetc(&ctype
, VT_CONST
, &cval
);
4694 /* Return a static symbol pointing to a section */
4695 static Sym
*get_sym_ref(CType
*type
, Section
*sec
,
4696 unsigned long offset
, unsigned long size
)
4702 sym
= global_identifier_push(v
, type
->t
| VT_STATIC
, 0);
4703 sym
->type
.ref
= type
->ref
;
4704 sym
->r
= VT_CONST
| VT_SYM
;
4705 put_extern_sym(sym
, sec
, offset
, size
);
4709 /* push a reference to a section offset by adding a dummy symbol */
4710 static void vpush_ref(CType
*type
, Section
*sec
, unsigned long offset
, unsigned long size
)
4715 vsetc(type
, VT_CONST
| VT_SYM
, &cval
);
4716 vtop
->sym
= get_sym_ref(type
, sec
, offset
, size
);
4719 /* define a new external reference to a symbol 'v' of type 'u' */
4720 static Sym
*external_global_sym(int v
, CType
*type
, int r
)
4726 /* push forward reference */
4727 s
= global_identifier_push(v
, type
->t
| VT_EXTERN
, 0);
4728 s
->type
.ref
= type
->ref
;
4729 s
->r
= r
| VT_CONST
| VT_SYM
;
4734 /* define a new external reference to a symbol 'v' of type 'u' */
4735 static Sym
*external_sym(int v
, CType
*type
, int r
)
4741 /* push forward reference */
4742 s
= sym_push(v
, type
, r
| VT_CONST
| VT_SYM
, 0);
4743 s
->type
.t
|= VT_EXTERN
;
4745 if (!is_compatible_types(&s
->type
, type
))
4746 error("incompatible types for redefinition of '%s'",
4747 get_tok_str(v
, NULL
));
4752 /* push a reference to global symbol v */
4753 static void vpush_global_sym(CType
*type
, int v
)
4758 sym
= external_global_sym(v
, type
, 0);
4760 vsetc(type
, VT_CONST
| VT_SYM
, &cval
);
4764 void vset(CType
*type
, int r
, int v
)
4769 vsetc(type
, r
, &cval
);
4772 void vseti(int r
, int v
)
4788 void vpushv(SValue
*v
)
4790 if (vtop
>= vstack
+ (VSTACK_SIZE
- 1))
4791 error("memory full");
4801 /* save r to the memory stack, and mark it as being free */
4802 void save_reg(int r
)
4804 int l
, saved
, size
, align
;
4808 /* modify all stack values */
4811 for(p
=vstack
;p
<=vtop
;p
++) {
4812 if ((p
->r
& VT_VALMASK
) == r
||
4813 ((p
->type
.t
& VT_BTYPE
) == VT_LLONG
&& (p
->r2
& VT_VALMASK
) == r
)) {
4814 /* must save value on stack if not already done */
4816 /* NOTE: must reload 'r' because r might be equal to r2 */
4817 r
= p
->r
& VT_VALMASK
;
4818 /* store register in the stack */
4820 if ((p
->r
& VT_LVAL
) ||
4821 (!is_float(type
->t
) && (type
->t
& VT_BTYPE
) != VT_LLONG
))
4822 #ifdef TCC_TARGET_X86_64
4823 type
= &char_pointer_type
;
4827 size
= type_size(type
, &align
);
4828 loc
= (loc
- size
) & -align
;
4829 sv
.type
.t
= type
->t
;
4830 sv
.r
= VT_LOCAL
| VT_LVAL
;
4833 #if defined(TCC_TARGET_I386) || defined(TCC_TARGET_X86_64)
4834 /* x86 specific: need to pop fp register ST0 if saved */
4835 if (r
== TREG_ST0
) {
4836 o(0xd9dd); /* fstp %st(1) */
4839 #ifndef TCC_TARGET_X86_64
4840 /* special long long case */
4841 if ((type
->t
& VT_BTYPE
) == VT_LLONG
) {
4849 /* mark that stack entry as being saved on the stack */
4850 if (p
->r
& VT_LVAL
) {
4851 /* also clear the bounded flag because the
4852 relocation address of the function was stored in
4854 p
->r
= (p
->r
& ~(VT_VALMASK
| VT_BOUNDED
)) | VT_LLOCAL
;
4856 p
->r
= lvalue_type(p
->type
.t
) | VT_LOCAL
;
4864 /* find a register of class 'rc2' with at most one reference on stack.
4865 * If none, call get_reg(rc) */
4866 int get_reg_ex(int rc
, int rc2
)
4871 for(r
=0;r
<NB_REGS
;r
++) {
4872 if (reg_classes
[r
] & rc2
) {
4875 for(p
= vstack
; p
<= vtop
; p
++) {
4876 if ((p
->r
& VT_VALMASK
) == r
||
4877 (p
->r2
& VT_VALMASK
) == r
)
4887 /* find a free register of class 'rc'. If none, save one register */
4893 /* find a free register */
4894 for(r
=0;r
<NB_REGS
;r
++) {
4895 if (reg_classes
[r
] & rc
) {
4896 for(p
=vstack
;p
<=vtop
;p
++) {
4897 if ((p
->r
& VT_VALMASK
) == r
||
4898 (p
->r2
& VT_VALMASK
) == r
)
4906 /* no register left : free the first one on the stack (VERY
4907 IMPORTANT to start from the bottom to ensure that we don't
4908 spill registers used in gen_opi()) */
4909 for(p
=vstack
;p
<=vtop
;p
++) {
4910 r
= p
->r
& VT_VALMASK
;
4911 if (r
< VT_CONST
&& (reg_classes
[r
] & rc
))
4913 /* also look at second register (if long long) */
4914 r
= p
->r2
& VT_VALMASK
;
4915 if (r
< VT_CONST
&& (reg_classes
[r
] & rc
)) {
4921 /* Should never comes here */
4925 /* save registers up to (vtop - n) stack entry */
4926 void save_regs(int n
)
4931 for(p
= vstack
;p
<= p1
; p
++) {
4932 r
= p
->r
& VT_VALMASK
;
4939 /* move register 's' to 'r', and flush previous value of r to memory
4941 void move_reg(int r
, int s
)
4954 /* get address of vtop (vtop MUST BE an lvalue) */
4957 vtop
->r
&= ~VT_LVAL
;
4958 /* tricky: if saved lvalue, then we can go back to lvalue */
4959 if ((vtop
->r
& VT_VALMASK
) == VT_LLOCAL
)
4960 vtop
->r
= (vtop
->r
& ~(VT_VALMASK
| VT_LVAL_TYPE
)) | VT_LOCAL
| VT_LVAL
;
4963 #ifdef CONFIG_TCC_BCHECK
4964 /* generate lvalue bound code */
4970 vtop
->r
&= ~VT_MUSTBOUND
;
4971 /* if lvalue, then use checking code before dereferencing */
4972 if (vtop
->r
& VT_LVAL
) {
4973 /* if not VT_BOUNDED value, then make one */
4974 if (!(vtop
->r
& VT_BOUNDED
)) {
4975 lval_type
= vtop
->r
& (VT_LVAL_TYPE
| VT_LVAL
);
4976 /* must save type because we must set it to int to get pointer */
4978 vtop
->type
.t
= VT_INT
;
4981 gen_bounded_ptr_add();
4982 vtop
->r
|= lval_type
;
4985 /* then check for dereferencing */
4986 gen_bounded_ptr_deref();
4991 /* store vtop a register belonging to class 'rc'. lvalues are
4992 converted to values. Cannot be used if cannot be converted to
4993 register value (such as structures). */
4996 int r
, rc2
, bit_pos
, bit_size
, size
, align
, i
;
4998 /* NOTE: get_reg can modify vstack[] */
4999 if (vtop
->type
.t
& VT_BITFIELD
) {
5002 bit_pos
= (vtop
->type
.t
>> VT_STRUCT_SHIFT
) & 0x3f;
5003 bit_size
= (vtop
->type
.t
>> (VT_STRUCT_SHIFT
+ 6)) & 0x3f;
5004 /* remove bit field info to avoid loops */
5005 vtop
->type
.t
&= ~(VT_BITFIELD
| (-1 << VT_STRUCT_SHIFT
));
5006 /* cast to int to propagate signedness in following ops */
5007 if ((vtop
->type
.t
& VT_BTYPE
) == VT_LLONG
) {
5012 if((vtop
->type
.t
& VT_UNSIGNED
) ||
5013 (vtop
->type
.t
& VT_BTYPE
) == VT_BOOL
)
5014 type
.t
|= VT_UNSIGNED
;
5016 /* generate shifts */
5017 vpushi(bits
- (bit_pos
+ bit_size
));
5019 vpushi(bits
- bit_size
);
5020 /* NOTE: transformed to SHR if unsigned */
5024 if (is_float(vtop
->type
.t
) &&
5025 (vtop
->r
& (VT_VALMASK
| VT_LVAL
)) == VT_CONST
) {
5028 unsigned long offset
;
5029 #if defined(TCC_TARGET_ARM) && !defined(TCC_ARM_VFP)
5033 /* XXX: unify with initializers handling ? */
5034 /* CPUs usually cannot use float constants, so we store them
5035 generically in data segment */
5036 size
= type_size(&vtop
->type
, &align
);
5037 offset
= (data_section
->data_offset
+ align
- 1) & -align
;
5038 data_section
->data_offset
= offset
;
5039 /* XXX: not portable yet */
5040 #if defined(__i386__) || defined(__x86_64__)
5041 /* Zero pad x87 tenbyte long doubles */
5042 if (size
== LDOUBLE_SIZE
)
5043 vtop
->c
.tab
[2] &= 0xffff;
5045 ptr
= section_ptr_add(data_section
, size
);
5047 #if defined(TCC_TARGET_ARM) && !defined(TCC_ARM_VFP)
5051 ptr
[i
] = vtop
->c
.tab
[size
-1-i
];
5055 ptr
[i
] = vtop
->c
.tab
[i
];
5056 sym
= get_sym_ref(&vtop
->type
, data_section
, offset
, size
<< 2);
5057 vtop
->r
|= VT_LVAL
| VT_SYM
;
5061 #ifdef CONFIG_TCC_BCHECK
5062 if (vtop
->r
& VT_MUSTBOUND
)
5066 r
= vtop
->r
& VT_VALMASK
;
5070 /* need to reload if:
5072 - lvalue (need to dereference pointer)
5073 - already a register, but not in the right class */
5074 if (r
>= VT_CONST
||
5075 (vtop
->r
& VT_LVAL
) ||
5076 !(reg_classes
[r
] & rc
) ||
5077 ((vtop
->type
.t
& VT_BTYPE
) == VT_LLONG
&&
5078 !(reg_classes
[vtop
->r2
] & rc2
))) {
5080 #ifndef TCC_TARGET_X86_64
5081 if ((vtop
->type
.t
& VT_BTYPE
) == VT_LLONG
) {
5083 unsigned long long ll
;
5084 /* two register type load : expand to two words
5086 if ((vtop
->r
& (VT_VALMASK
| VT_LVAL
)) == VT_CONST
) {
5089 vtop
->c
.ui
= ll
; /* first word */
5091 vtop
->r
= r
; /* save register value */
5092 vpushi(ll
>> 32); /* second word */
5093 } else if (r
>= VT_CONST
|| /* XXX: test to VT_CONST incorrect ? */
5094 (vtop
->r
& VT_LVAL
)) {
5095 /* We do not want to modifier the long long
5096 pointer here, so the safest (and less
5097 efficient) is to save all the other registers
5098 in the stack. XXX: totally inefficient. */
5100 /* load from memory */
5103 vtop
[-1].r
= r
; /* save register value */
5104 /* increment pointer to get second word */
5105 vtop
->type
.t
= VT_INT
;
5111 /* move registers */
5114 vtop
[-1].r
= r
; /* save register value */
5115 vtop
->r
= vtop
[-1].r2
;
5117 /* allocate second register */
5121 /* write second register */
5125 if ((vtop
->r
& VT_LVAL
) && !is_float(vtop
->type
.t
)) {
5127 /* lvalue of scalar type : need to use lvalue type
5128 because of possible cast */
5131 /* compute memory access type */
5132 if (vtop
->r
& VT_LVAL_BYTE
)
5134 else if (vtop
->r
& VT_LVAL_SHORT
)
5136 if (vtop
->r
& VT_LVAL_UNSIGNED
)
5140 /* restore wanted type */
5143 /* one register type load */
5148 #ifdef TCC_TARGET_C67
5149 /* uses register pairs for doubles */
5150 if ((vtop
->type
.t
& VT_BTYPE
) == VT_DOUBLE
)
5157 /* generate vtop[-1] and vtop[0] in resp. classes rc1 and rc2 */
5158 void gv2(int rc1
, int rc2
)
5162 /* generate more generic register first. But VT_JMP or VT_CMP
5163 values must be generated first in all cases to avoid possible
5165 v
= vtop
[0].r
& VT_VALMASK
;
5166 if (v
!= VT_CMP
&& (v
& ~1) != VT_JMP
&& rc1
<= rc2
) {
5171 /* test if reload is needed for first register */
5172 if ((vtop
[-1].r
& VT_VALMASK
) >= VT_CONST
) {
5182 /* test if reload is needed for first register */
5183 if ((vtop
[0].r
& VT_VALMASK
) >= VT_CONST
) {
5189 /* wrapper around RC_FRET to return a register by type */
5192 #ifdef TCC_TARGET_X86_64
5193 if (t
== VT_LDOUBLE
) {
5200 /* wrapper around REG_FRET to return a register by type */
5203 #ifdef TCC_TARGET_X86_64
5204 if (t
== VT_LDOUBLE
) {
5211 /* expand long long on stack in two int registers */
5216 u
= vtop
->type
.t
& VT_UNSIGNED
;
5219 vtop
[0].r
= vtop
[-1].r2
;
5220 vtop
[0].r2
= VT_CONST
;
5221 vtop
[-1].r2
= VT_CONST
;
5222 vtop
[0].type
.t
= VT_INT
| u
;
5223 vtop
[-1].type
.t
= VT_INT
| u
;
5226 #ifdef TCC_TARGET_ARM
5227 /* expand long long on stack */
5228 void lexpand_nr(void)
5232 u
= vtop
->type
.t
& VT_UNSIGNED
;
5234 vtop
->r2
= VT_CONST
;
5235 vtop
->type
.t
= VT_INT
| u
;
5236 v
=vtop
[-1].r
& (VT_VALMASK
| VT_LVAL
);
5237 if (v
== VT_CONST
) {
5238 vtop
[-1].c
.ui
= vtop
->c
.ull
;
5239 vtop
->c
.ui
= vtop
->c
.ull
>> 32;
5241 } else if (v
== (VT_LVAL
|VT_CONST
) || v
== (VT_LVAL
|VT_LOCAL
)) {
5243 vtop
->r
= vtop
[-1].r
;
5244 } else if (v
> VT_CONST
) {
5248 vtop
->r
= vtop
[-1].r2
;
5249 vtop
[-1].r2
= VT_CONST
;
5250 vtop
[-1].type
.t
= VT_INT
| u
;
5254 /* build a long long from two ints */
5257 gv2(RC_INT
, RC_INT
);
5258 vtop
[-1].r2
= vtop
[0].r
;
5259 vtop
[-1].type
.t
= t
;
5263 /* rotate n first stack elements to the bottom
5264 I1 ... In -> I2 ... In I1 [top is right]
5272 for(i
=-n
+1;i
!=0;i
++)
5273 vtop
[i
] = vtop
[i
+1];
5277 /* rotate n first stack elements to the top
5278 I1 ... In -> In I1 ... I(n-1) [top is right]
5286 for(i
= 0;i
< n
- 1; i
++)
5287 vtop
[-i
] = vtop
[-i
- 1];
5291 #ifdef TCC_TARGET_ARM
5292 /* like vrott but in other direction
5293 In ... I1 -> I(n-1) ... I1 In [top is right]
5301 for(i
= n
- 1; i
> 0; i
--)
5302 vtop
[-i
] = vtop
[-i
+ 1];
5307 /* pop stack value */
5311 v
= vtop
->r
& VT_VALMASK
;
5312 #if defined(TCC_TARGET_I386) || defined(TCC_TARGET_X86_64)
5313 /* for x86, we need to pop the FP stack */
5314 if (v
== TREG_ST0
&& !nocode_wanted
) {
5315 o(0xd9dd); /* fstp %st(1) */
5318 if (v
== VT_JMP
|| v
== VT_JMPI
) {
5319 /* need to put correct jump if && or || without test */
5325 /* convert stack entry to register and duplicate its value in another
5333 if ((t
& VT_BTYPE
) == VT_LLONG
) {
5340 /* stack: H L L1 H1 */
5348 /* duplicate value */
5353 #ifdef TCC_TARGET_X86_64
5354 if ((t
& VT_BTYPE
) == VT_LDOUBLE
) {
5364 load(r1
, &sv
); /* move r to r1 */
5366 /* duplicates value */
5371 #ifndef TCC_TARGET_X86_64
5372 /* generate CPU independent (unsigned) long long operations */
5373 void gen_opl(int op
)
5375 int t
, a
, b
, op1
, c
, i
;
5377 unsigned short reg_iret
= REG_IRET
;
5378 unsigned short reg_lret
= REG_LRET
;
5384 func
= TOK___divdi3
;
5387 func
= TOK___udivdi3
;
5390 func
= TOK___moddi3
;
5393 func
= TOK___umoddi3
;
5400 /* call generic long long function */
5401 vpush_global_sym(&func_old_type
, func
);
5406 vtop
->r2
= reg_lret
;
5419 /* stack: L1 H1 L2 H2 */
5424 vtop
[-2] = vtop
[-3];
5427 /* stack: H1 H2 L1 L2 */
5433 /* stack: H1 H2 L1 L2 ML MH */
5436 /* stack: ML MH H1 H2 L1 L2 */
5440 /* stack: ML MH H1 L2 H2 L1 */
5445 /* stack: ML MH M1 M2 */
5448 } else if (op
== '+' || op
== '-') {
5449 /* XXX: add non carry method too (for MIPS or alpha) */
5455 /* stack: H1 H2 (L1 op L2) */
5458 gen_op(op1
+ 1); /* TOK_xxxC2 */
5461 /* stack: H1 H2 (L1 op L2) */
5464 /* stack: (L1 op L2) H1 H2 */
5466 /* stack: (L1 op L2) (H1 op H2) */
5474 if ((vtop
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) == VT_CONST
) {
5475 t
= vtop
[-1].type
.t
;
5479 /* stack: L H shift */
5481 /* constant: simpler */
5482 /* NOTE: all comments are for SHL. the other cases are
5483 done by swaping words */
5494 if (op
!= TOK_SAR
) {
5527 /* XXX: should provide a faster fallback on x86 ? */
5530 func
= TOK___ashrdi3
;
5533 func
= TOK___lshrdi3
;
5536 func
= TOK___ashldi3
;
5542 /* compare operations */
5548 /* stack: L1 H1 L2 H2 */
5550 vtop
[-1] = vtop
[-2];
5552 /* stack: L1 L2 H1 H2 */
5555 /* when values are equal, we need to compare low words. since
5556 the jump is inverted, we invert the test too. */
5559 else if (op1
== TOK_GT
)
5561 else if (op1
== TOK_ULT
)
5563 else if (op1
== TOK_UGT
)
5568 if (op1
!= TOK_NE
) {
5572 /* generate non equal test */
5573 /* XXX: NOT PORTABLE yet */
5577 #if defined(TCC_TARGET_I386)
5578 b
= psym(0x850f, 0);
5579 #elif defined(TCC_TARGET_ARM)
5581 o(0x1A000000 | encbranch(ind
, 0, 1));
5582 #elif defined(TCC_TARGET_C67)
5583 error("not implemented");
5585 #error not supported
5589 /* compare low. Always unsigned */
5593 else if (op1
== TOK_LE
)
5595 else if (op1
== TOK_GT
)
5597 else if (op1
== TOK_GE
)
5608 /* handle integer constant optimizations and various machine
5610 void gen_opic(int op
)
5612 int c1
, c2
, t1
, t2
, n
;
5615 typedef unsigned long long U
;
5619 t1
= v1
->type
.t
& VT_BTYPE
;
5620 t2
= v2
->type
.t
& VT_BTYPE
;
5624 else if (v1
->type
.t
& VT_UNSIGNED
)
5631 else if (v2
->type
.t
& VT_UNSIGNED
)
5636 /* currently, we cannot do computations with forward symbols */
5637 c1
= (v1
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) == VT_CONST
;
5638 c2
= (v2
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) == VT_CONST
;
5641 case '+': l1
+= l2
; break;
5642 case '-': l1
-= l2
; break;
5643 case '&': l1
&= l2
; break;
5644 case '^': l1
^= l2
; break;
5645 case '|': l1
|= l2
; break;
5646 case '*': l1
*= l2
; break;
5653 /* if division by zero, generate explicit division */
5656 error("division by zero in constant");
5660 default: l1
/= l2
; break;
5661 case '%': l1
%= l2
; break;
5662 case TOK_UDIV
: l1
= (U
)l1
/ l2
; break;
5663 case TOK_UMOD
: l1
= (U
)l1
% l2
; break;
5666 case TOK_SHL
: l1
<<= l2
; break;
5667 case TOK_SHR
: l1
= (U
)l1
>> l2
; break;
5668 case TOK_SAR
: l1
>>= l2
; break;
5670 case TOK_ULT
: l1
= (U
)l1
< (U
)l2
; break;
5671 case TOK_UGE
: l1
= (U
)l1
>= (U
)l2
; break;
5672 case TOK_EQ
: l1
= l1
== l2
; break;
5673 case TOK_NE
: l1
= l1
!= l2
; break;
5674 case TOK_ULE
: l1
= (U
)l1
<= (U
)l2
; break;
5675 case TOK_UGT
: l1
= (U
)l1
> (U
)l2
; break;
5676 case TOK_LT
: l1
= l1
< l2
; break;
5677 case TOK_GE
: l1
= l1
>= l2
; break;
5678 case TOK_LE
: l1
= l1
<= l2
; break;
5679 case TOK_GT
: l1
= l1
> l2
; break;
5681 case TOK_LAND
: l1
= l1
&& l2
; break;
5682 case TOK_LOR
: l1
= l1
|| l2
; break;
5689 /* if commutative ops, put c2 as constant */
5690 if (c1
&& (op
== '+' || op
== '&' || op
== '^' ||
5691 op
== '|' || op
== '*')) {
5693 c2
= c1
; //c = c1, c1 = c2, c2 = c;
5694 l2
= l1
; //l = l1, l1 = l2, l2 = l;
5696 /* Filter out NOP operations like x*1, x-0, x&-1... */
5697 if (c2
&& (((op
== '*' || op
== '/' || op
== TOK_UDIV
||
5700 ((op
== '+' || op
== '-' || op
== '|' || op
== '^' ||
5701 op
== TOK_SHL
|| op
== TOK_SHR
|| op
== TOK_SAR
) &&
5707 } else if (c2
&& (op
== '*' || op
== TOK_PDIV
|| op
== TOK_UDIV
)) {
5708 /* try to use shifts instead of muls or divs */
5709 if (l2
> 0 && (l2
& (l2
- 1)) == 0) {
5718 else if (op
== TOK_PDIV
)
5724 } else if (c2
&& (op
== '+' || op
== '-') &&
5725 ((vtop
[-1].r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) ==
5726 (VT_CONST
| VT_SYM
) ||
5727 (vtop
[-1].r
& (VT_VALMASK
| VT_LVAL
)) == VT_LOCAL
)) {
5728 /* symbol + constant case */
5735 if (!nocode_wanted
) {
5736 /* call low level op generator */
5737 if (t1
== VT_LLONG
|| t2
== VT_LLONG
)
5748 /* generate a floating point operation with constant propagation */
5749 void gen_opif(int op
)
5757 /* currently, we cannot do computations with forward symbols */
5758 c1
= (v1
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) == VT_CONST
;
5759 c2
= (v2
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) == VT_CONST
;
5761 if (v1
->type
.t
== VT_FLOAT
) {
5764 } else if (v1
->type
.t
== VT_DOUBLE
) {
5772 /* NOTE: we only do constant propagation if finite number (not
5773 NaN or infinity) (ANSI spec) */
5774 if (!ieee_finite(f1
) || !ieee_finite(f2
))
5778 case '+': f1
+= f2
; break;
5779 case '-': f1
-= f2
; break;
5780 case '*': f1
*= f2
; break;
5784 error("division by zero in constant");
5789 /* XXX: also handles tests ? */
5793 /* XXX: overflow test ? */
5794 if (v1
->type
.t
== VT_FLOAT
) {
5796 } else if (v1
->type
.t
== VT_DOUBLE
) {
5804 if (!nocode_wanted
) {
5812 static int pointed_size(CType
*type
)
5815 return type_size(pointed_type(type
), &align
);
5818 static inline int is_null_pointer(SValue
*p
)
5820 if ((p
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) != VT_CONST
)
5822 return ((p
->type
.t
& VT_BTYPE
) == VT_INT
&& p
->c
.i
== 0) ||
5823 ((p
->type
.t
& VT_BTYPE
) == VT_LLONG
&& p
->c
.ll
== 0);
5826 static inline int is_integer_btype(int bt
)
5828 return (bt
== VT_BYTE
|| bt
== VT_SHORT
||
5829 bt
== VT_INT
|| bt
== VT_LLONG
);
5832 /* check types for comparison or substraction of pointers */
5833 static void check_comparison_pointer_types(SValue
*p1
, SValue
*p2
, int op
)
5835 CType
*type1
, *type2
, tmp_type1
, tmp_type2
;
5838 /* null pointers are accepted for all comparisons as gcc */
5839 if (is_null_pointer(p1
) || is_null_pointer(p2
))
5843 bt1
= type1
->t
& VT_BTYPE
;
5844 bt2
= type2
->t
& VT_BTYPE
;
5845 /* accept comparison between pointer and integer with a warning */
5846 if ((is_integer_btype(bt1
) || is_integer_btype(bt2
)) && op
!= '-') {
5847 if (op
!= TOK_LOR
&& op
!= TOK_LAND
)
5848 warning("comparison between pointer and integer");
5852 /* both must be pointers or implicit function pointers */
5853 if (bt1
== VT_PTR
) {
5854 type1
= pointed_type(type1
);
5855 } else if (bt1
!= VT_FUNC
)
5856 goto invalid_operands
;
5858 if (bt2
== VT_PTR
) {
5859 type2
= pointed_type(type2
);
5860 } else if (bt2
!= VT_FUNC
) {
5862 error("invalid operands to binary %s", get_tok_str(op
, NULL
));
5864 if ((type1
->t
& VT_BTYPE
) == VT_VOID
||
5865 (type2
->t
& VT_BTYPE
) == VT_VOID
)
5869 tmp_type1
.t
&= ~(VT_UNSIGNED
| VT_CONSTANT
| VT_VOLATILE
);
5870 tmp_type2
.t
&= ~(VT_UNSIGNED
| VT_CONSTANT
| VT_VOLATILE
);
5871 if (!is_compatible_types(&tmp_type1
, &tmp_type2
)) {
5872 /* gcc-like error if '-' is used */
5874 goto invalid_operands
;
5876 warning("comparison of distinct pointer types lacks a cast");
5880 /* generic gen_op: handles types problems */
5883 int u
, t1
, t2
, bt1
, bt2
, t
;
5886 t1
= vtop
[-1].type
.t
;
5887 t2
= vtop
[0].type
.t
;
5888 bt1
= t1
& VT_BTYPE
;
5889 bt2
= t2
& VT_BTYPE
;
5891 if (bt1
== VT_PTR
|| bt2
== VT_PTR
) {
5892 /* at least one operand is a pointer */
5893 /* relationnal op: must be both pointers */
5894 if (op
>= TOK_ULT
&& op
<= TOK_LOR
) {
5895 check_comparison_pointer_types(vtop
- 1, vtop
, op
);
5896 /* pointers are handled are unsigned */
5897 #ifdef TCC_TARGET_X86_64
5898 t
= VT_LLONG
| VT_UNSIGNED
;
5900 t
= VT_INT
| VT_UNSIGNED
;
5904 /* if both pointers, then it must be the '-' op */
5905 if (bt1
== VT_PTR
&& bt2
== VT_PTR
) {
5907 error("cannot use pointers here");
5908 check_comparison_pointer_types(vtop
- 1, vtop
, op
);
5909 /* XXX: check that types are compatible */
5910 u
= pointed_size(&vtop
[-1].type
);
5912 /* set to integer type */
5913 #ifdef TCC_TARGET_X86_64
5914 vtop
->type
.t
= VT_LLONG
;
5916 vtop
->type
.t
= VT_INT
;
5921 /* exactly one pointer : must be '+' or '-'. */
5922 if (op
!= '-' && op
!= '+')
5923 error("cannot use pointers here");
5924 /* Put pointer as first operand */
5925 if (bt2
== VT_PTR
) {
5929 type1
= vtop
[-1].type
;
5930 #ifdef TCC_TARGET_X86_64
5931 vpushll(pointed_size(&vtop
[-1].type
));
5933 /* XXX: cast to int ? (long long case) */
5934 vpushi(pointed_size(&vtop
[-1].type
));
5937 #ifdef CONFIG_TCC_BCHECK
5938 /* if evaluating constant expression, no code should be
5939 generated, so no bound check */
5940 if (do_bounds_check
&& !const_wanted
) {
5941 /* if bounded pointers, we generate a special code to
5948 gen_bounded_ptr_add();
5954 /* put again type if gen_opic() swaped operands */
5957 } else if (is_float(bt1
) || is_float(bt2
)) {
5958 /* compute bigger type and do implicit casts */
5959 if (bt1
== VT_LDOUBLE
|| bt2
== VT_LDOUBLE
) {
5961 } else if (bt1
== VT_DOUBLE
|| bt2
== VT_DOUBLE
) {
5966 /* floats can only be used for a few operations */
5967 if (op
!= '+' && op
!= '-' && op
!= '*' && op
!= '/' &&
5968 (op
< TOK_ULT
|| op
> TOK_GT
))
5969 error("invalid operands for binary operation");
5971 } else if (bt1
== VT_LLONG
|| bt2
== VT_LLONG
) {
5972 /* cast to biggest op */
5974 /* convert to unsigned if it does not fit in a long long */
5975 if ((t1
& (VT_BTYPE
| VT_UNSIGNED
)) == (VT_LLONG
| VT_UNSIGNED
) ||
5976 (t2
& (VT_BTYPE
| VT_UNSIGNED
)) == (VT_LLONG
| VT_UNSIGNED
))
5980 /* integer operations */
5982 /* convert to unsigned if it does not fit in an integer */
5983 if ((t1
& (VT_BTYPE
| VT_UNSIGNED
)) == (VT_INT
| VT_UNSIGNED
) ||
5984 (t2
& (VT_BTYPE
| VT_UNSIGNED
)) == (VT_INT
| VT_UNSIGNED
))
5987 /* XXX: currently, some unsigned operations are explicit, so
5988 we modify them here */
5989 if (t
& VT_UNSIGNED
) {
5996 else if (op
== TOK_LT
)
5998 else if (op
== TOK_GT
)
6000 else if (op
== TOK_LE
)
6002 else if (op
== TOK_GE
)
6009 /* special case for shifts and long long: we keep the shift as
6011 if (op
== TOK_SHR
|| op
== TOK_SAR
|| op
== TOK_SHL
)
6018 if (op
>= TOK_ULT
&& op
<= TOK_GT
) {
6019 /* relationnal op: the result is an int */
6020 vtop
->type
.t
= VT_INT
;
6027 #ifndef TCC_TARGET_ARM
6028 /* generic itof for unsigned long long case */
6029 void gen_cvt_itof1(int t
)
6031 if ((vtop
->type
.t
& (VT_BTYPE
| VT_UNSIGNED
)) ==
6032 (VT_LLONG
| VT_UNSIGNED
)) {
6035 vpush_global_sym(&func_old_type
, TOK___floatundisf
);
6036 #if LDOUBLE_SIZE != 8
6037 else if (t
== VT_LDOUBLE
)
6038 vpush_global_sym(&func_old_type
, TOK___floatundixf
);
6041 vpush_global_sym(&func_old_type
, TOK___floatundidf
);
6045 vtop
->r
= reg_fret(t
);
6052 /* generic ftoi for unsigned long long case */
6053 void gen_cvt_ftoi1(int t
)
6057 if (t
== (VT_LLONG
| VT_UNSIGNED
)) {
6058 /* not handled natively */
6059 st
= vtop
->type
.t
& VT_BTYPE
;
6061 vpush_global_sym(&func_old_type
, TOK___fixunssfdi
);
6062 #if LDOUBLE_SIZE != 8
6063 else if (st
== VT_LDOUBLE
)
6064 vpush_global_sym(&func_old_type
, TOK___fixunsxfdi
);
6067 vpush_global_sym(&func_old_type
, TOK___fixunsdfdi
);
6072 vtop
->r2
= REG_LRET
;
6078 /* force char or short cast */
6079 void force_charshort_cast(int t
)
6083 /* XXX: add optimization if lvalue : just change type and offset */
6088 if (t
& VT_UNSIGNED
) {
6089 vpushi((1 << bits
) - 1);
6095 /* result must be signed or the SAR is converted to an SHL
6096 This was not the case when "t" was a signed short
6097 and the last value on the stack was an unsigned int */
6098 vtop
->type
.t
&= ~VT_UNSIGNED
;
6104 /* cast 'vtop' to 'type'. Casting to bitfields is forbidden. */
6105 static void gen_cast(CType
*type
)
6107 int sbt
, dbt
, sf
, df
, c
, p
;
6109 /* special delayed cast for char/short */
6110 /* XXX: in some cases (multiple cascaded casts), it may still
6112 if (vtop
->r
& VT_MUSTCAST
) {
6113 vtop
->r
&= ~VT_MUSTCAST
;
6114 force_charshort_cast(vtop
->type
.t
);
6117 /* bitfields first get cast to ints */
6118 if (vtop
->type
.t
& VT_BITFIELD
) {
6122 dbt
= type
->t
& (VT_BTYPE
| VT_UNSIGNED
);
6123 sbt
= vtop
->type
.t
& (VT_BTYPE
| VT_UNSIGNED
);
6128 c
= (vtop
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) == VT_CONST
;
6129 p
= (vtop
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) == (VT_CONST
| VT_SYM
);
6131 /* constant case: we can do it now */
6132 /* XXX: in ISOC, cannot do it if error in convert */
6133 if (sbt
== VT_FLOAT
)
6134 vtop
->c
.ld
= vtop
->c
.f
;
6135 else if (sbt
== VT_DOUBLE
)
6136 vtop
->c
.ld
= vtop
->c
.d
;
6139 if ((sbt
& VT_BTYPE
) == VT_LLONG
) {
6140 if (sbt
& VT_UNSIGNED
)
6141 vtop
->c
.ld
= vtop
->c
.ull
;
6143 vtop
->c
.ld
= vtop
->c
.ll
;
6145 if (sbt
& VT_UNSIGNED
)
6146 vtop
->c
.ld
= vtop
->c
.ui
;
6148 vtop
->c
.ld
= vtop
->c
.i
;
6151 if (dbt
== VT_FLOAT
)
6152 vtop
->c
.f
= (float)vtop
->c
.ld
;
6153 else if (dbt
== VT_DOUBLE
)
6154 vtop
->c
.d
= (double)vtop
->c
.ld
;
6155 } else if (sf
&& dbt
== (VT_LLONG
|VT_UNSIGNED
)) {
6156 vtop
->c
.ull
= (unsigned long long)vtop
->c
.ld
;
6157 } else if (sf
&& dbt
== VT_BOOL
) {
6158 vtop
->c
.i
= (vtop
->c
.ld
!= 0);
6161 vtop
->c
.ll
= (long long)vtop
->c
.ld
;
6162 else if (sbt
== (VT_LLONG
|VT_UNSIGNED
))
6163 vtop
->c
.ll
= vtop
->c
.ull
;
6164 else if (sbt
& VT_UNSIGNED
)
6165 vtop
->c
.ll
= vtop
->c
.ui
;
6166 else if (sbt
!= VT_LLONG
)
6167 vtop
->c
.ll
= vtop
->c
.i
;
6169 if (dbt
== (VT_LLONG
|VT_UNSIGNED
))
6170 vtop
->c
.ull
= vtop
->c
.ll
;
6171 else if (dbt
== VT_BOOL
)
6172 vtop
->c
.i
= (vtop
->c
.ll
!= 0);
6173 else if (dbt
!= VT_LLONG
) {
6175 if ((dbt
& VT_BTYPE
) == VT_BYTE
)
6177 else if ((dbt
& VT_BTYPE
) == VT_SHORT
)
6180 if(dbt
& VT_UNSIGNED
)
6181 vtop
->c
.ui
= ((unsigned int)vtop
->c
.ll
<< s
) >> s
;
6183 vtop
->c
.i
= ((int)vtop
->c
.ll
<< s
) >> s
;
6186 } else if (p
&& dbt
== VT_BOOL
) {
6189 } else if (!nocode_wanted
) {
6190 /* non constant case: generate code */
6192 /* convert from fp to fp */
6195 /* convert int to fp */
6198 /* convert fp to int */
6199 if (dbt
== VT_BOOL
) {
6203 /* we handle char/short/etc... with generic code */
6204 if (dbt
!= (VT_INT
| VT_UNSIGNED
) &&
6205 dbt
!= (VT_LLONG
| VT_UNSIGNED
) &&
6209 if (dbt
== VT_INT
&& (type
->t
& (VT_BTYPE
| VT_UNSIGNED
)) != dbt
) {
6210 /* additional cast for char/short... */
6215 #ifndef TCC_TARGET_X86_64
6216 } else if ((dbt
& VT_BTYPE
) == VT_LLONG
) {
6217 if ((sbt
& VT_BTYPE
) != VT_LLONG
) {
6218 /* scalar to long long */
6219 /* machine independent conversion */
6221 /* generate high word */
6222 if (sbt
== (VT_INT
| VT_UNSIGNED
)) {
6226 if (sbt
== VT_PTR
) {
6227 /* cast from pointer to int before we apply
6228 shift operation, which pointers don't support*/
6229 gen_cast(&int_type
);
6235 /* patch second register */
6236 vtop
[-1].r2
= vtop
->r
;
6240 } else if ((dbt
& VT_BTYPE
) == VT_LLONG
||
6241 (dbt
& VT_BTYPE
) == VT_PTR
) {
6242 /* XXX: not sure if this is perfect... need more tests */
6243 if ((sbt
& VT_BTYPE
) != VT_LLONG
) {
6245 if (sbt
!= (VT_INT
| VT_UNSIGNED
) &&
6246 sbt
!= VT_PTR
&& sbt
!= VT_FUNC
) {
6247 /* x86_64 specific: movslq */
6249 o(0xc0 + (REG_VALUE(r
) << 3) + REG_VALUE(r
));
6253 } else if (dbt
== VT_BOOL
) {
6254 /* scalar to bool */
6257 } else if ((dbt
& VT_BTYPE
) == VT_BYTE
||
6258 (dbt
& VT_BTYPE
) == VT_SHORT
) {
6259 if (sbt
== VT_PTR
) {
6260 vtop
->type
.t
= VT_INT
;
6261 warning("nonportable conversion from pointer to char/short");
6263 force_charshort_cast(dbt
);
6264 } else if ((dbt
& VT_BTYPE
) == VT_INT
) {
6266 if (sbt
== VT_LLONG
) {
6267 /* from long long: just take low order word */
6271 /* if lvalue and single word type, nothing to do because
6272 the lvalue already contains the real type size (see
6273 VT_LVAL_xxx constants) */
6276 } else if ((dbt
& VT_BTYPE
) == VT_PTR
&& !(vtop
->r
& VT_LVAL
)) {
6277 /* if we are casting between pointer types,
6278 we must update the VT_LVAL_xxx size */
6279 vtop
->r
= (vtop
->r
& ~VT_LVAL_TYPE
)
6280 | (lvalue_type(type
->ref
->type
.t
) & VT_LVAL_TYPE
);
6285 /* return type size. Put alignment at 'a' */
6286 static int type_size(CType
*type
, int *a
)
6291 bt
= type
->t
& VT_BTYPE
;
6292 if (bt
== VT_STRUCT
) {
6297 } else if (bt
== VT_PTR
) {
6298 if (type
->t
& VT_ARRAY
) {
6302 ts
= type_size(&s
->type
, a
);
6304 if (ts
< 0 && s
->c
< 0)
6312 } else if (bt
== VT_LDOUBLE
) {
6314 return LDOUBLE_SIZE
;
6315 } else if (bt
== VT_DOUBLE
|| bt
== VT_LLONG
) {
6316 #ifdef TCC_TARGET_I386
6317 #ifdef TCC_TARGET_PE
6322 #elif defined(TCC_TARGET_ARM)
6332 } else if (bt
== VT_INT
|| bt
== VT_ENUM
|| bt
== VT_FLOAT
) {
6335 } else if (bt
== VT_SHORT
) {
6339 /* char, void, function, _Bool */
6345 /* return the pointed type of t */
6346 static inline CType
*pointed_type(CType
*type
)
6348 return &type
->ref
->type
;
6351 /* modify type so that its it is a pointer to type. */
6352 static void mk_pointer(CType
*type
)
6355 s
= sym_push(SYM_FIELD
, type
, 0, -1);
6356 type
->t
= VT_PTR
| (type
->t
& ~VT_TYPE
);
6360 /* compare function types. OLD functions match any new functions */
6361 static int is_compatible_func(CType
*type1
, CType
*type2
)
6367 if (!is_compatible_types(&s1
->type
, &s2
->type
))
6369 /* check func_call */
6370 if (FUNC_CALL(s1
->r
) != FUNC_CALL(s2
->r
))
6372 /* XXX: not complete */
6373 if (s1
->c
== FUNC_OLD
|| s2
->c
== FUNC_OLD
)
6377 while (s1
!= NULL
) {
6380 if (!is_compatible_parameter_types(&s1
->type
, &s2
->type
))
6390 /* return true if type1 and type2 are the same. If unqualified is
6391 true, qualifiers on the types are ignored.
6393 - enums are not checked as gcc __builtin_types_compatible_p ()
6395 static int compare_types(CType
*type1
, CType
*type2
, int unqualified
)
6399 t1
= type1
->t
& VT_TYPE
;
6400 t2
= type2
->t
& VT_TYPE
;
6402 /* strip qualifiers before comparing */
6403 t1
&= ~(VT_CONSTANT
| VT_VOLATILE
);
6404 t2
&= ~(VT_CONSTANT
| VT_VOLATILE
);
6406 /* XXX: bitfields ? */
6409 /* test more complicated cases */
6410 bt1
= t1
& VT_BTYPE
;
6411 if (bt1
== VT_PTR
) {
6412 type1
= pointed_type(type1
);
6413 type2
= pointed_type(type2
);
6414 return is_compatible_types(type1
, type2
);
6415 } else if (bt1
== VT_STRUCT
) {
6416 return (type1
->ref
== type2
->ref
);
6417 } else if (bt1
== VT_FUNC
) {
6418 return is_compatible_func(type1
, type2
);
6424 /* return true if type1 and type2 are exactly the same (including
6427 static int is_compatible_types(CType
*type1
, CType
*type2
)
6429 return compare_types(type1
,type2
,0);
6432 /* return true if type1 and type2 are the same (ignoring qualifiers).
6434 static int is_compatible_parameter_types(CType
*type1
, CType
*type2
)
6436 return compare_types(type1
,type2
,1);
6439 /* print a type. If 'varstr' is not NULL, then the variable is also
6440 printed in the type */
6442 /* XXX: add array and function pointers */
6443 void type_to_str(char *buf
, int buf_size
,
6444 CType
*type
, const char *varstr
)
6451 t
= type
->t
& VT_TYPE
;
6454 if (t
& VT_CONSTANT
)
6455 pstrcat(buf
, buf_size
, "const ");
6456 if (t
& VT_VOLATILE
)
6457 pstrcat(buf
, buf_size
, "volatile ");
6458 if (t
& VT_UNSIGNED
)
6459 pstrcat(buf
, buf_size
, "unsigned ");
6489 tstr
= "long double";
6491 pstrcat(buf
, buf_size
, tstr
);
6495 if (bt
== VT_STRUCT
)
6499 pstrcat(buf
, buf_size
, tstr
);
6500 v
= type
->ref
->v
& ~SYM_STRUCT
;
6501 if (v
>= SYM_FIRST_ANOM
)
6502 pstrcat(buf
, buf_size
, "<anonymous>");
6504 pstrcat(buf
, buf_size
, get_tok_str(v
, NULL
));
6508 type_to_str(buf
, buf_size
, &s
->type
, varstr
);
6509 pstrcat(buf
, buf_size
, "(");
6511 while (sa
!= NULL
) {
6512 type_to_str(buf1
, sizeof(buf1
), &sa
->type
, NULL
);
6513 pstrcat(buf
, buf_size
, buf1
);
6516 pstrcat(buf
, buf_size
, ", ");
6518 pstrcat(buf
, buf_size
, ")");
6522 pstrcpy(buf1
, sizeof(buf1
), "*");
6524 pstrcat(buf1
, sizeof(buf1
), varstr
);
6525 type_to_str(buf
, buf_size
, &s
->type
, buf1
);
6529 pstrcat(buf
, buf_size
, " ");
6530 pstrcat(buf
, buf_size
, varstr
);
6535 /* verify type compatibility to store vtop in 'dt' type, and generate
6537 static void gen_assign_cast(CType
*dt
)
6539 CType
*st
, *type1
, *type2
, tmp_type1
, tmp_type2
;
6540 char buf1
[256], buf2
[256];
6543 st
= &vtop
->type
; /* source type */
6544 dbt
= dt
->t
& VT_BTYPE
;
6545 sbt
= st
->t
& VT_BTYPE
;
6546 if (dt
->t
& VT_CONSTANT
)
6547 warning("assignment of read-only location");
6550 /* special cases for pointers */
6551 /* '0' can also be a pointer */
6552 if (is_null_pointer(vtop
))
6554 /* accept implicit pointer to integer cast with warning */
6555 if (is_integer_btype(sbt
)) {
6556 warning("assignment makes pointer from integer without a cast");
6559 type1
= pointed_type(dt
);
6560 /* a function is implicitely a function pointer */
6561 if (sbt
== VT_FUNC
) {
6562 if ((type1
->t
& VT_BTYPE
) != VT_VOID
&&
6563 !is_compatible_types(pointed_type(dt
), st
))
6570 type2
= pointed_type(st
);
6571 if ((type1
->t
& VT_BTYPE
) == VT_VOID
||
6572 (type2
->t
& VT_BTYPE
) == VT_VOID
) {
6573 /* void * can match anything */
6575 /* exact type match, except for unsigned */
6578 tmp_type1
.t
&= ~(VT_UNSIGNED
| VT_CONSTANT
| VT_VOLATILE
);
6579 tmp_type2
.t
&= ~(VT_UNSIGNED
| VT_CONSTANT
| VT_VOLATILE
);
6580 if (!is_compatible_types(&tmp_type1
, &tmp_type2
))
6581 warning("assignment from incompatible pointer type");
6583 /* check const and volatile */
6584 if ((!(type1
->t
& VT_CONSTANT
) && (type2
->t
& VT_CONSTANT
)) ||
6585 (!(type1
->t
& VT_VOLATILE
) && (type2
->t
& VT_VOLATILE
)))
6586 warning("assignment discards qualifiers from pointer target type");
6592 if (sbt
== VT_PTR
|| sbt
== VT_FUNC
) {
6593 warning("assignment makes integer from pointer without a cast");
6595 /* XXX: more tests */
6600 tmp_type1
.t
&= ~(VT_CONSTANT
| VT_VOLATILE
);
6601 tmp_type2
.t
&= ~(VT_CONSTANT
| VT_VOLATILE
);
6602 if (!is_compatible_types(&tmp_type1
, &tmp_type2
)) {
6604 type_to_str(buf1
, sizeof(buf1
), st
, NULL
);
6605 type_to_str(buf2
, sizeof(buf2
), dt
, NULL
);
6606 error("cannot cast '%s' to '%s'", buf1
, buf2
);
6614 /* store vtop in lvalue pushed on stack */
6617 int sbt
, dbt
, ft
, r
, t
, size
, align
, bit_size
, bit_pos
, rc
, delayed_cast
;
6619 ft
= vtop
[-1].type
.t
;
6620 sbt
= vtop
->type
.t
& VT_BTYPE
;
6621 dbt
= ft
& VT_BTYPE
;
6622 if (((sbt
== VT_INT
|| sbt
== VT_SHORT
) && dbt
== VT_BYTE
) ||
6623 (sbt
== VT_INT
&& dbt
== VT_SHORT
)) {
6624 /* optimize char/short casts */
6625 delayed_cast
= VT_MUSTCAST
;
6626 vtop
->type
.t
= ft
& (VT_TYPE
& ~(VT_BITFIELD
| (-1 << VT_STRUCT_SHIFT
)));
6627 /* XXX: factorize */
6628 if (ft
& VT_CONSTANT
)
6629 warning("assignment of read-only location");
6632 if (!(ft
& VT_BITFIELD
))
6633 gen_assign_cast(&vtop
[-1].type
);
6636 if (sbt
== VT_STRUCT
) {
6637 /* if structure, only generate pointer */
6638 /* structure assignment : generate memcpy */
6639 /* XXX: optimize if small size */
6640 if (!nocode_wanted
) {
6641 size
= type_size(&vtop
->type
, &align
);
6645 vpush_global_sym(&func_old_type
, TOK_memcpy8
);
6646 else if(!(align
& 3))
6647 vpush_global_sym(&func_old_type
, TOK_memcpy4
);
6650 vpush_global_sym(&func_old_type
, TOK_memcpy
);
6654 vtop
->type
.t
= VT_PTR
;
6658 vtop
->type
.t
= VT_PTR
;
6670 /* leave source on stack */
6671 } else if (ft
& VT_BITFIELD
) {
6672 /* bitfield store handling */
6673 bit_pos
= (ft
>> VT_STRUCT_SHIFT
) & 0x3f;
6674 bit_size
= (ft
>> (VT_STRUCT_SHIFT
+ 6)) & 0x3f;
6675 /* remove bit field info to avoid loops */
6676 vtop
[-1].type
.t
= ft
& ~(VT_BITFIELD
| (-1 << VT_STRUCT_SHIFT
));
6678 /* duplicate source into other register */
6683 if((ft
& VT_BTYPE
) == VT_BOOL
) {
6684 gen_cast(&vtop
[-1].type
);
6685 vtop
[-1].type
.t
= (vtop
[-1].type
.t
& ~VT_BTYPE
) | (VT_BYTE
| VT_UNSIGNED
);
6688 /* duplicate destination */
6690 vtop
[-1] = vtop
[-2];
6692 /* mask and shift source */
6693 if((ft
& VT_BTYPE
) != VT_BOOL
) {
6694 if((ft
& VT_BTYPE
) == VT_LLONG
) {
6695 vpushll((1ULL << bit_size
) - 1ULL);
6697 vpushi((1 << bit_size
) - 1);
6703 /* load destination, mask and or with source */
6705 if((ft
& VT_BTYPE
) == VT_LLONG
) {
6706 vpushll(~(((1ULL << bit_size
) - 1ULL) << bit_pos
));
6708 vpushi(~(((1 << bit_size
) - 1) << bit_pos
));
6715 /* pop off shifted source from "duplicate source..." above */
6719 #ifdef CONFIG_TCC_BCHECK
6720 /* bound check case */
6721 if (vtop
[-1].r
& VT_MUSTBOUND
) {
6727 if (!nocode_wanted
) {
6731 #ifdef TCC_TARGET_X86_64
6732 if ((ft
& VT_BTYPE
) == VT_LDOUBLE
) {
6737 r
= gv(rc
); /* generate value */
6738 /* if lvalue was saved on stack, must read it */
6739 if ((vtop
[-1].r
& VT_VALMASK
) == VT_LLOCAL
) {
6741 t
= get_reg(RC_INT
);
6742 #ifdef TCC_TARGET_X86_64
6747 sv
.r
= VT_LOCAL
| VT_LVAL
;
6748 sv
.c
.ul
= vtop
[-1].c
.ul
;
6750 vtop
[-1].r
= t
| VT_LVAL
;
6753 #ifndef TCC_TARGET_X86_64
6754 /* two word case handling : store second register at word + 4 */
6755 if ((ft
& VT_BTYPE
) == VT_LLONG
) {
6757 /* convert to int to increment easily */
6758 vtop
->type
.t
= VT_INT
;
6764 /* XXX: it works because r2 is spilled last ! */
6765 store(vtop
->r2
, vtop
- 1);
6770 vtop
--; /* NOT vpop() because on x86 it would flush the fp stack */
6771 vtop
->r
|= delayed_cast
;
6775 /* post defines POST/PRE add. c is the token ++ or -- */
6776 void inc(int post
, int c
)
6779 vdup(); /* save lvalue */
6781 gv_dup(); /* duplicate value */
6786 vpushi(c
- TOK_MID
);
6788 vstore(); /* store value */
6790 vpop(); /* if post op, return saved value */
6793 /* Parse GNUC __attribute__ extension. Currently, the following
6794 extensions are recognized:
6795 - aligned(n) : set data/function alignment.
6796 - packed : force data alignment to 1
6797 - section(x) : generate data/code in this section.
6798 - unused : currently ignored, but may be used someday.
6799 - regparm(n) : pass function parameters in registers (i386 only)
6801 static void parse_attribute(AttributeDef
*ad
)
6805 while (tok
== TOK_ATTRIBUTE1
|| tok
== TOK_ATTRIBUTE2
) {
6809 while (tok
!= ')') {
6810 if (tok
< TOK_IDENT
)
6811 expect("attribute name");
6819 expect("section name");
6820 ad
->section
= find_section(tcc_state
, (char *)tokc
.cstr
->data
);
6829 if (n
<= 0 || (n
& (n
- 1)) != 0)
6830 error("alignment must be a positive power of two");
6843 /* currently, no need to handle it because tcc does not
6844 track unused objects */
6848 /* currently, no need to handle it because tcc does not
6849 track unused objects */
6854 FUNC_CALL(ad
->func_attr
) = FUNC_CDECL
;
6859 FUNC_CALL(ad
->func_attr
) = FUNC_STDCALL
;
6861 #ifdef TCC_TARGET_I386
6871 FUNC_CALL(ad
->func_attr
) = FUNC_FASTCALL1
+ n
- 1;
6877 FUNC_CALL(ad
->func_attr
) = FUNC_FASTCALLW
;
6881 FUNC_EXPORT(ad
->func_attr
) = 1;
6884 if (tcc_state
->warn_unsupported
)
6885 warning("'%s' attribute ignored", get_tok_str(t
, NULL
));
6886 /* skip parameters */
6888 int parenthesis
= 0;
6892 else if (tok
== ')')
6895 } while (parenthesis
&& tok
!= -1);
6908 /* enum/struct/union declaration. u is either VT_ENUM or VT_STRUCT */
6909 static void struct_decl(CType
*type
, int u
)
6911 int a
, v
, size
, align
, maxalign
, c
, offset
;
6912 int bit_size
, bit_pos
, bsize
, bt
, lbit_pos
, prevbt
;
6913 Sym
*s
, *ss
, *ass
, **ps
;
6917 a
= tok
; /* save decl type */
6922 /* struct already defined ? return it */
6924 expect("struct/union/enum name");
6928 error("invalid type");
6935 /* we put an undefined size for struct/union */
6936 s
= sym_push(v
| SYM_STRUCT
, &type1
, 0, -1);
6937 s
->r
= 0; /* default alignment is zero as gcc */
6938 /* put struct/union/enum name in type */
6946 error("struct/union/enum already defined");
6947 /* cannot be empty */
6949 /* non empty enums are not allowed */
6950 if (a
== TOK_ENUM
) {
6954 expect("identifier");
6960 /* enum symbols have static storage */
6961 ss
= sym_push(v
, &int_type
, VT_CONST
, c
);
6962 ss
->type
.t
|= VT_STATIC
;
6967 /* NOTE: we accept a trailing comma */
6978 while (tok
!= '}') {
6979 parse_btype(&btype
, &ad
);
6985 type_decl(&type1
, &ad
, &v
, TYPE_DIRECT
| TYPE_ABSTRACT
);
6986 if (v
== 0 && (type1
.t
& VT_BTYPE
) != VT_STRUCT
)
6987 expect("identifier");
6988 if ((type1
.t
& VT_BTYPE
) == VT_FUNC
||
6989 (type1
.t
& (VT_TYPEDEF
| VT_STATIC
| VT_EXTERN
| VT_INLINE
)))
6990 error("invalid type for '%s'",
6991 get_tok_str(v
, NULL
));
6995 bit_size
= expr_const();
6996 /* XXX: handle v = 0 case for messages */
6998 error("negative width in bit-field '%s'",
6999 get_tok_str(v
, NULL
));
7000 if (v
&& bit_size
== 0)
7001 error("zero width for bit-field '%s'",
7002 get_tok_str(v
, NULL
));
7004 size
= type_size(&type1
, &align
);
7006 if (align
< ad
.aligned
)
7008 } else if (ad
.packed
) {
7010 } else if (*tcc_state
->pack_stack_ptr
) {
7011 if (align
> *tcc_state
->pack_stack_ptr
)
7012 align
= *tcc_state
->pack_stack_ptr
;
7015 if (bit_size
>= 0) {
7016 bt
= type1
.t
& VT_BTYPE
;
7023 error("bitfields must have scalar type");
7025 if (bit_size
> bsize
) {
7026 error("width of '%s' exceeds its type",
7027 get_tok_str(v
, NULL
));
7028 } else if (bit_size
== bsize
) {
7029 /* no need for bit fields */
7031 } else if (bit_size
== 0) {
7032 /* XXX: what to do if only padding in a
7034 /* zero size: means to pad */
7037 /* we do not have enough room ?
7038 did the type change?
7040 if ((bit_pos
+ bit_size
) > bsize
||
7041 bt
!= prevbt
|| a
== TOK_UNION
)
7044 /* XXX: handle LSB first */
7045 type1
.t
|= VT_BITFIELD
|
7046 (bit_pos
<< VT_STRUCT_SHIFT
) |
7047 (bit_size
<< (VT_STRUCT_SHIFT
+ 6));
7048 bit_pos
+= bit_size
;
7054 if (v
!= 0 || (type1
.t
& VT_BTYPE
) == VT_STRUCT
) {
7055 /* add new memory data only if starting
7057 if (lbit_pos
== 0) {
7058 if (a
== TOK_STRUCT
) {
7059 c
= (c
+ align
- 1) & -align
;
7068 if (align
> maxalign
)
7072 printf("add field %s offset=%d",
7073 get_tok_str(v
, NULL
), offset
);
7074 if (type1
.t
& VT_BITFIELD
) {
7075 printf(" pos=%d size=%d",
7076 (type1
.t
>> VT_STRUCT_SHIFT
) & 0x3f,
7077 (type1
.t
>> (VT_STRUCT_SHIFT
+ 6)) & 0x3f);
7082 if (v
== 0 && (type1
.t
& VT_BTYPE
) == VT_STRUCT
) {
7084 while ((ass
= ass
->next
) != NULL
) {
7085 ss
= sym_push(ass
->v
, &ass
->type
, 0, offset
+ ass
->c
);
7090 ss
= sym_push(v
| SYM_FIELD
, &type1
, 0, offset
);
7094 if (tok
== ';' || tok
== TOK_EOF
)
7101 /* store size and alignment */
7102 s
->c
= (c
+ maxalign
- 1) & -maxalign
;
7108 /* return 0 if no type declaration. otherwise, return the basic type
7111 static int parse_btype(CType
*type
, AttributeDef
*ad
)
7113 int t
, u
, type_found
, typespec_found
, typedef_found
;
7117 memset(ad
, 0, sizeof(AttributeDef
));
7125 /* currently, we really ignore extension */
7135 if ((t
& VT_BTYPE
) != 0)
7136 error("too many basic types");
7152 if ((t
& VT_BTYPE
) == VT_DOUBLE
) {
7153 t
= (t
& ~VT_BTYPE
) | VT_LDOUBLE
;
7154 } else if ((t
& VT_BTYPE
) == VT_LONG
) {
7155 t
= (t
& ~VT_BTYPE
) | VT_LLONG
;
7169 if ((t
& VT_BTYPE
) == VT_LONG
) {
7170 t
= (t
& ~VT_BTYPE
) | VT_LDOUBLE
;
7177 struct_decl(&type1
, VT_ENUM
);
7180 type
->ref
= type1
.ref
;
7184 struct_decl(&type1
, VT_STRUCT
);
7187 /* type modifiers */
7240 /* GNUC attribute */
7241 case TOK_ATTRIBUTE1
:
7242 case TOK_ATTRIBUTE2
:
7243 parse_attribute(ad
);
7250 parse_expr_type(&type1
);
7253 if (typespec_found
|| typedef_found
)
7256 if (!s
|| !(s
->type
.t
& VT_TYPEDEF
))
7259 t
|= (s
->type
.t
& ~VT_TYPEDEF
);
7260 type
->ref
= s
->type
.ref
;
7268 if ((t
& (VT_SIGNED
|VT_UNSIGNED
)) == (VT_SIGNED
|VT_UNSIGNED
))
7269 error("signed and unsigned modifier");
7270 if (tcc_state
->char_is_unsigned
) {
7271 if ((t
& (VT_SIGNED
|VT_UNSIGNED
|VT_BTYPE
)) == VT_BYTE
)
7276 /* long is never used as type */
7277 if ((t
& VT_BTYPE
) == VT_LONG
)
7278 #ifndef TCC_TARGET_X86_64
7279 t
= (t
& ~VT_BTYPE
) | VT_INT
;
7281 t
= (t
& ~VT_BTYPE
) | VT_LLONG
;
7287 /* convert a function parameter type (array to pointer and function to
7288 function pointer) */
7289 static inline void convert_parameter_type(CType
*pt
)
7291 /* remove const and volatile qualifiers (XXX: const could be used
7292 to indicate a const function parameter */
7293 pt
->t
&= ~(VT_CONSTANT
| VT_VOLATILE
);
7294 /* array must be transformed to pointer according to ANSI C */
7296 if ((pt
->t
& VT_BTYPE
) == VT_FUNC
) {
7301 static void post_type(CType
*type
, AttributeDef
*ad
)
7303 int n
, l
, t1
, arg_size
, align
;
7304 Sym
**plast
, *s
, *first
;
7309 /* function declaration */
7317 /* read param name and compute offset */
7318 if (l
!= FUNC_OLD
) {
7319 if (!parse_btype(&pt
, &ad1
)) {
7321 error("invalid type");
7328 if ((pt
.t
& VT_BTYPE
) == VT_VOID
&& tok
== ')')
7330 type_decl(&pt
, &ad1
, &n
, TYPE_DIRECT
| TYPE_ABSTRACT
);
7331 if ((pt
.t
& VT_BTYPE
) == VT_VOID
)
7332 error("parameter declared as void");
7333 arg_size
+= (type_size(&pt
, &align
) + 3) & ~3;
7338 expect("identifier");
7342 convert_parameter_type(&pt
);
7343 s
= sym_push(n
| SYM_FIELD
, &pt
, 0, 0);
7349 if (l
== FUNC_NEW
&& tok
== TOK_DOTS
) {
7356 /* if no parameters, then old type prototype */
7360 t1
= type
->t
& VT_STORAGE
;
7361 /* NOTE: const is ignored in returned type as it has a special
7362 meaning in gcc / C++ */
7363 type
->t
&= ~(VT_STORAGE
| VT_CONSTANT
);
7364 post_type(type
, ad
);
7365 /* we push a anonymous symbol which will contain the function prototype */
7366 FUNC_ARGS(ad
->func_attr
) = arg_size
;
7367 s
= sym_push(SYM_FIELD
, type
, ad
->func_attr
, l
);
7369 type
->t
= t1
| VT_FUNC
;
7371 } else if (tok
== '[') {
7372 /* array definition */
7374 if (tok
== TOK_RESTRICT1
)
7380 error("invalid array size");
7383 /* parse next post type */
7384 t1
= type
->t
& VT_STORAGE
;
7385 type
->t
&= ~VT_STORAGE
;
7386 post_type(type
, ad
);
7388 /* we push a anonymous symbol which will contain the array
7390 s
= sym_push(SYM_FIELD
, type
, 0, n
);
7391 type
->t
= t1
| VT_ARRAY
| VT_PTR
;
7396 /* Parse a type declaration (except basic type), and return the type
7397 in 'type'. 'td' is a bitmask indicating which kind of type decl is
7398 expected. 'type' should contain the basic type. 'ad' is the
7399 attribute definition of the basic type. It can be modified by
7402 static void type_decl(CType
*type
, AttributeDef
*ad
, int *v
, int td
)
7405 CType type1
, *type2
;
7408 while (tok
== '*') {
7416 qualifiers
|= VT_CONSTANT
;
7421 qualifiers
|= VT_VOLATILE
;
7429 type
->t
|= qualifiers
;
7432 /* XXX: clarify attribute handling */
7433 if (tok
== TOK_ATTRIBUTE1
|| tok
== TOK_ATTRIBUTE2
)
7434 parse_attribute(ad
);
7436 /* recursive type */
7437 /* XXX: incorrect if abstract type for functions (e.g. 'int ()') */
7438 type1
.t
= 0; /* XXX: same as int */
7441 /* XXX: this is not correct to modify 'ad' at this point, but
7442 the syntax is not clear */
7443 if (tok
== TOK_ATTRIBUTE1
|| tok
== TOK_ATTRIBUTE2
)
7444 parse_attribute(ad
);
7445 type_decl(&type1
, ad
, v
, td
);
7448 /* type identifier */
7449 if (tok
>= TOK_IDENT
&& (td
& TYPE_DIRECT
)) {
7453 if (!(td
& TYPE_ABSTRACT
))
7454 expect("identifier");
7458 post_type(type
, ad
);
7459 if (tok
== TOK_ATTRIBUTE1
|| tok
== TOK_ATTRIBUTE2
)
7460 parse_attribute(ad
);
7463 /* append type at the end of type1 */
7476 /* compute the lvalue VT_LVAL_xxx needed to match type t. */
7477 static int lvalue_type(int t
)
7482 if (bt
== VT_BYTE
|| bt
== VT_BOOL
)
7484 else if (bt
== VT_SHORT
)
7488 if (t
& VT_UNSIGNED
)
7489 r
|= VT_LVAL_UNSIGNED
;
7493 /* indirection with full error checking and bound check */
7494 static void indir(void)
7496 if ((vtop
->type
.t
& VT_BTYPE
) != VT_PTR
) {
7497 if ((vtop
->type
.t
& VT_BTYPE
) == VT_FUNC
)
7501 if ((vtop
->r
& VT_LVAL
) && !nocode_wanted
)
7503 vtop
->type
= *pointed_type(&vtop
->type
);
7504 /* Arrays and functions are never lvalues */
7505 if (!(vtop
->type
.t
& VT_ARRAY
)
7506 && (vtop
->type
.t
& VT_BTYPE
) != VT_FUNC
) {
7507 vtop
->r
|= lvalue_type(vtop
->type
.t
);
7508 /* if bound checking, the referenced pointer must be checked */
7509 if (do_bounds_check
)
7510 vtop
->r
|= VT_MUSTBOUND
;
7514 /* pass a parameter to a function and do type checking and casting */
7515 static void gfunc_param_typed(Sym
*func
, Sym
*arg
)
7520 func_type
= func
->c
;
7521 if (func_type
== FUNC_OLD
||
7522 (func_type
== FUNC_ELLIPSIS
&& arg
== NULL
)) {
7523 /* default casting : only need to convert float to double */
7524 if ((vtop
->type
.t
& VT_BTYPE
) == VT_FLOAT
) {
7528 } else if (arg
== NULL
) {
7529 error("too many arguments to function");
7532 type
.t
&= ~VT_CONSTANT
; /* need to do that to avoid false warning */
7533 gen_assign_cast(&type
);
7537 /* parse an expression of the form '(type)' or '(expr)' and return its
7539 static void parse_expr_type(CType
*type
)
7545 if (parse_btype(type
, &ad
)) {
7546 type_decl(type
, &ad
, &n
, TYPE_ABSTRACT
);
7553 static void parse_type(CType
*type
)
7558 if (!parse_btype(type
, &ad
)) {
7561 type_decl(type
, &ad
, &n
, TYPE_ABSTRACT
);
7564 static void vpush_tokc(int t
)
7568 vsetc(&type
, VT_CONST
, &tokc
);
7571 static void unary(void)
7573 int n
, t
, align
, size
, r
;
7578 /* XXX: GCC 2.95.3 does not generate a table although it should be
7592 vpush_tokc(VT_INT
| VT_UNSIGNED
);
7596 vpush_tokc(VT_LLONG
);
7600 vpush_tokc(VT_LLONG
| VT_UNSIGNED
);
7604 vpush_tokc(VT_FLOAT
);
7608 vpush_tokc(VT_DOUBLE
);
7612 vpush_tokc(VT_LDOUBLE
);
7615 case TOK___FUNCTION__
:
7617 goto tok_identifier
;
7623 /* special function name identifier */
7624 len
= strlen(funcname
) + 1;
7625 /* generate char[len] type */
7630 vpush_ref(&type
, data_section
, data_section
->data_offset
, len
);
7631 ptr
= section_ptr_add(data_section
, len
);
7632 memcpy(ptr
, funcname
, len
);
7637 #ifdef TCC_TARGET_PE
7638 t
= VT_SHORT
| VT_UNSIGNED
;
7644 /* string parsing */
7647 if (tcc_state
->warn_write_strings
)
7652 memset(&ad
, 0, sizeof(AttributeDef
));
7653 decl_initializer_alloc(&type
, &ad
, VT_CONST
, 2, 0, 0);
7658 if (parse_btype(&type
, &ad
)) {
7659 type_decl(&type
, &ad
, &n
, TYPE_ABSTRACT
);
7661 /* check ISOC99 compound literal */
7663 /* data is allocated locally by default */
7668 /* all except arrays are lvalues */
7669 if (!(type
.t
& VT_ARRAY
))
7670 r
|= lvalue_type(type
.t
);
7671 memset(&ad
, 0, sizeof(AttributeDef
));
7672 decl_initializer_alloc(&type
, &ad
, r
, 1, 0, 0);
7677 } else if (tok
== '{') {
7678 /* save all registers */
7680 /* statement expression : we do not accept break/continue
7681 inside as GCC does */
7682 block(NULL
, NULL
, NULL
, NULL
, 0, 1);
7697 /* functions names must be treated as function pointers,
7698 except for unary '&' and sizeof. Since we consider that
7699 functions are not lvalues, we only have to handle it
7700 there and in function calls. */
7701 /* arrays can also be used although they are not lvalues */
7702 if ((vtop
->type
.t
& VT_BTYPE
) != VT_FUNC
&&
7703 !(vtop
->type
.t
& VT_ARRAY
) && !(vtop
->type
.t
& VT_LLOCAL
))
7705 mk_pointer(&vtop
->type
);
7711 if ((vtop
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) == VT_CONST
) {
7713 boolean
.t
= VT_BOOL
;
7715 vtop
->c
.i
= !vtop
->c
.i
;
7716 } else if ((vtop
->r
& VT_VALMASK
) == VT_CMP
)
7717 vtop
->c
.i
= vtop
->c
.i
^ 1;
7720 vseti(VT_JMP
, gtst(1, 0));
7731 /* in order to force cast, we add zero */
7733 if ((vtop
->type
.t
& VT_BTYPE
) == VT_PTR
)
7734 error("pointer not accepted for unary plus");
7744 parse_expr_type(&type
);
7748 size
= type_size(&type
, &align
);
7749 if (t
== TOK_SIZEOF
) {
7751 error("sizeof applied to an incomplete type");
7756 vtop
->type
.t
|= VT_UNSIGNED
;
7759 case TOK_builtin_types_compatible_p
:
7768 type1
.t
&= ~(VT_CONSTANT
| VT_VOLATILE
);
7769 type2
.t
&= ~(VT_CONSTANT
| VT_VOLATILE
);
7770 vpushi(is_compatible_types(&type1
, &type2
));
7773 case TOK_builtin_constant_p
:
7775 int saved_nocode_wanted
, res
;
7778 saved_nocode_wanted
= nocode_wanted
;
7781 res
= (vtop
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) == VT_CONST
;
7783 nocode_wanted
= saved_nocode_wanted
;
7788 case TOK_builtin_frame_address
:
7793 if (tok
!= TOK_CINT
) {
7794 error("__builtin_frame_address only takes integers");
7797 error("TCC only supports __builtin_frame_address(0)");
7803 vset(&type
, VT_LOCAL
, 0);
7806 #ifdef TCC_TARGET_X86_64
7807 case TOK_builtin_malloc
:
7809 goto tok_identifier
;
7810 case TOK_builtin_free
:
7812 goto tok_identifier
;
7829 goto tok_identifier
;
7831 /* allow to take the address of a label */
7832 if (tok
< TOK_UIDENT
)
7833 expect("label identifier");
7834 s
= label_find(tok
);
7836 s
= label_push(&global_label_stack
, tok
, LABEL_FORWARD
);
7838 if (s
->r
== LABEL_DECLARED
)
7839 s
->r
= LABEL_FORWARD
;
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);
7855 expect("identifier");
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. */
7875 put_extern_sym(s
, text_section
, 0, 0);
7876 r
= VT_SYM
| VT_CONST
;
7880 vset(&s
->type
, r
, s
->c
);
7881 /* if forward reference, we must point to s */
7882 if (vtop
->r
& VT_SYM
) {
7889 /* post operations */
7891 if (tok
== TOK_INC
|| tok
== TOK_DEC
) {
7894 } else if (tok
== '.' || tok
== TOK_ARROW
) {
7896 if (tok
== TOK_ARROW
)
7901 /* expect pointer on structure */
7902 if ((vtop
->type
.t
& VT_BTYPE
) != VT_STRUCT
)
7903 expect("struct or union");
7907 while ((s
= s
->next
) != NULL
) {
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 *' */
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
;
7927 } else if (tok
== '[') {
7933 } else if (tok
== '(') {
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
)
7947 expect("function pointer");
7950 vtop
->r
&= ~VT_LVAL
; /* no lvalue */
7952 /* get return type */
7955 sa
= s
->next
; /* first parameter */
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
;
7964 ret
.r
= VT_LOCAL
| VT_LVAL
;
7965 /* pass it as 'int' to avoid structure arg passing
7967 vseti(VT_LOCAL
, loc
);
7972 /* return in register */
7973 if (is_float(ret
.type
.t
)) {
7974 ret
.r
= reg_fret(ret
.type
.t
);
7976 if ((ret
.type
.t
& VT_BTYPE
) == VT_LLONG
)
7985 gfunc_param_typed(s
, sa
);
7995 error("too few arguments to function");
7997 if (!nocode_wanted
) {
7998 gfunc_call(nb_args
);
8000 vtop
-= (nb_args
+ 1);
8003 vsetc(&ret
.type
, ret
.r
, &ret
.c
);
8011 static void uneq(void)
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
) {
8034 static void expr_prod(void)
8039 while (tok
== '*' || tok
== '/' || tok
== '%') {
8047 static void expr_sum(void)
8052 while (tok
== '+' || tok
== '-') {
8060 static void expr_shift(void)
8065 while (tok
== TOK_SHL
|| tok
== TOK_SAR
) {
8073 static void expr_cmp(void)
8078 while ((tok
>= TOK_ULE
&& tok
<= TOK_GT
) ||
8079 tok
== TOK_ULT
|| tok
== TOK_UGE
) {
8087 static void expr_cmpeq(void)
8092 while (tok
== TOK_EQ
|| tok
== TOK_NE
) {
8100 static void expr_and(void)
8103 while (tok
== '&') {
8110 static void expr_xor(void)
8113 while (tok
== '^') {
8120 static void expr_or(void)
8123 while (tok
== '|') {
8130 /* XXX: fix this mess */
8131 static void expr_land_const(void)
8134 while (tok
== TOK_LAND
) {
8141 /* XXX: fix this mess */
8142 static void expr_lor_const(void)
8145 while (tok
== TOK_LOR
) {
8152 /* only used if non constant */
8153 static void expr_land(void)
8158 if (tok
== TOK_LAND
) {
8163 if (tok
!= TOK_LAND
) {
8173 static void expr_lor(void)
8178 if (tok
== TOK_LOR
) {
8183 if (tok
!= TOK_LOR
) {
8193 /* XXX: better constant handling */
8194 static void expr_eq(void)
8196 int tt
, u
, r1
, r2
, rc
, t1
, t2
, bt1
, bt2
;
8198 CType type
, type1
, type2
;
8205 boolean
.t
= VT_BOOL
;
8211 if (tok
!= ':' || !gnu_ext
) {
8226 if (vtop
!= vstack
) {
8227 /* needed to avoid having different registers saved in
8229 if (is_float(vtop
->type
.t
)) {
8231 #ifdef TCC_TARGET_X86_64
8232 if ((vtop
->type
.t
& VT_BTYPE
) == VT_LDOUBLE
) {
8242 if (tok
== ':' && gnu_ext
) {
8250 sv
= *vtop
; /* save value to handle it later */
8251 vtop
--; /* no vpop so that FP stack is not flushed */
8259 bt1
= t1
& VT_BTYPE
;
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
) {
8271 } else if (bt1
== VT_LLONG
|| bt2
== VT_LLONG
) {
8272 /* cast to biggest op */
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 */
8281 } else if (bt1
== VT_FUNC
|| bt2
== VT_FUNC
) {
8282 /* XXX: test function pointer compatibility */
8284 } else if (bt1
== VT_STRUCT
|| bt2
== VT_STRUCT
) {
8285 /* XXX: test structure compatibility */
8287 } else if (bt1
== VT_VOID
|| bt2
== VT_VOID
) {
8288 /* NOTE: as an extension, we accept void on only one side */
8291 /* integer operations */
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 */
8301 if (VT_STRUCT
== (vtop
->type
.t
& VT_BTYPE
))
8304 if (is_float(type
.t
)) {
8306 #ifdef TCC_TARGET_X86_64
8307 if ((type
.t
& VT_BTYPE
) == VT_LDOUBLE
) {
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 */
8318 /* this is horrible, but we must also convert first
8322 /* put again first value and cast it */
8325 if (VT_STRUCT
== (vtop
->type
.t
& VT_BTYPE
))
8335 static void gexpr(void)
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
;
8356 nocode_wanted
= saved_nocode_wanted
;
8359 /* parse a unary expression and return its type without any side
8361 static void unary_type(CType
*type
)
8373 /* parse a constant expression and return value in vtop. */
8374 static void expr_const1(void)
8383 /* parse an integer constant and return its value. */
8384 static int expr_const(void)
8388 if ((vtop
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) != VT_CONST
)
8389 expect("constant expression");
8395 /* return the label token if current token is a label, otherwise
8397 static int is_label(void)
8401 /* fast test first */
8402 if (tok
< TOK_UIDENT
)
8404 /* no need to save tokc because tok is an identifier */
8411 unget_tok(last_tok
);
8416 static void block(int *bsym
, int *csym
, int *case_sym
, int *def_sym
,
8417 int case_reg
, int is_expr
)
8422 /* generate line number info */
8424 (last_line_num
!= file
->line_num
|| last_ind
!= ind
)) {
8425 put_stabn(N_SLINE
, 0, file
->line_num
, ind
- func_ind
);
8427 last_line_num
= file
->line_num
;
8431 /* default return value is (void) */
8433 vtop
->type
.t
= VT_VOID
;
8436 if (tok
== TOK_IF
) {
8443 block(bsym
, csym
, case_sym
, def_sym
, case_reg
, 0);
8445 if (c
== TOK_ELSE
) {
8449 block(bsym
, csym
, case_sym
, def_sym
, case_reg
, 0);
8450 gsym(d
); /* patch else jmp */
8453 } else if (tok
== TOK_WHILE
) {
8461 block(&a
, &b
, case_sym
, def_sym
, case_reg
, 0);
8465 } else if (tok
== '{') {
8469 /* record local declaration stack position */
8471 llabel
= local_label_stack
;
8472 /* handle local labels declarations */
8473 if (tok
== TOK_LABEL
) {
8476 if (tok
< TOK_UIDENT
)
8477 expect("label identifier");
8478 label_push(&local_label_stack
, tok
, LABEL_DECLARED
);
8488 while (tok
!= '}') {
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 */
8500 /* XXX: this solution makes only valgrind happy...
8501 triggered by gcc.c-torture/execute/20000917-1.c */
8503 switch(vtop
->type
.t
& VT_BTYPE
) {
8508 for(p
=vtop
->type
.ref
;p
;p
=p
->prev
)
8510 error("unsupported expression type");
8513 sym_pop(&local_stack
, s
);
8515 } else if (tok
== TOK_RETURN
) {
8519 gen_assign_cast(&func_vt
);
8520 if ((func_vt
.t
& VT_BTYPE
) == VT_STRUCT
) {
8522 /* if returning structure, must copy it to implicit
8523 first pointer arg location */
8526 size
= type_size(&func_vt
,&align
);
8529 if((vtop
->r
!= (VT_LOCAL
| VT_LVAL
) || (vtop
->c
.i
& 3))
8533 loc
= (loc
- size
) & -4;
8536 vset(&type
, VT_LOCAL
| VT_LVAL
, addr
);
8539 vset(&int_type
, VT_LOCAL
| VT_LVAL
, addr
);
8541 vtop
->type
= int_type
;
8547 vset(&type
, VT_LOCAL
| VT_LVAL
, func_vc
);
8550 /* copy structure value to pointer */
8555 } else if (is_float(func_vt
.t
)) {
8556 gv(rc_fret(func_vt
.t
));
8560 vtop
--; /* NOT vpop() because on x86 it would flush the fp stack */
8563 rsym
= gjmp(rsym
); /* jmp */
8564 } else if (tok
== TOK_BREAK
) {
8567 error("cannot break");
8568 *bsym
= gjmp(*bsym
);
8571 } else if (tok
== TOK_CONTINUE
) {
8574 error("cannot continue");
8575 *csym
= gjmp(*csym
);
8578 } else if (tok
== TOK_FOR
) {
8605 block(&a
, &b
, case_sym
, def_sym
, case_reg
, 0);
8610 if (tok
== TOK_DO
) {
8615 block(&a
, &b
, case_sym
, def_sym
, case_reg
, 0);
8626 if (tok
== TOK_SWITCH
) {
8630 /* XXX: other types than integer */
8631 case_reg
= gv(RC_INT
);
8635 b
= gjmp(0); /* jump to first case */
8637 block(&a
, csym
, &b
, &c
, case_reg
, 0);
8638 /* if no default, jmp after switch */
8646 if (tok
== TOK_CASE
) {
8653 if (gnu_ext
&& tok
== TOK_DOTS
) {
8657 warning("empty case range");
8659 /* since a case is like a label, we must skip it with a jmp */
8666 *case_sym
= gtst(1, 0);
8669 *case_sym
= gtst(1, 0);
8673 *case_sym
= gtst(1, *case_sym
);
8678 goto block_after_label
;
8680 if (tok
== TOK_DEFAULT
) {
8686 error("too many 'default'");
8689 goto block_after_label
;
8691 if (tok
== TOK_GOTO
) {
8693 if (tok
== '*' && gnu_ext
) {
8697 if ((vtop
->type
.t
& VT_BTYPE
) != VT_PTR
)
8700 } else if (tok
>= TOK_UIDENT
) {
8701 s
= label_find(tok
);
8702 /* put forward definition if needed */
8704 s
= label_push(&global_label_stack
, tok
, LABEL_FORWARD
);
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
);
8713 gjmp_addr((long)s
->next
);
8716 expect("label identifier");
8719 } else if (tok
== TOK_ASM1
|| tok
== TOK_ASM2
|| tok
== TOK_ASM3
) {
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
;
8732 s
= label_push(&global_label_stack
, b
, LABEL_DEFINED
);
8734 s
->next
= (void *)ind
;
8735 /* we accept this, but it is a mistake */
8738 warning("deprecated use of label at end of compound statement");
8742 block(bsym
, csym
, case_sym
, def_sym
, case_reg
, is_expr
);
8745 /* expression case */
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
8764 static void decl_designator(CType
*type
, Section
*sec
, unsigned long c
,
8765 int *cur_index
, Sym
**cur_field
,
8769 int notfirst
, index
, index_last
, align
, l
, nb_elems
, elem_size
;
8775 if (gnu_ext
&& (l
= is_label()) != 0)
8777 while (tok
== '[' || tok
== '.') {
8779 if (!(type
->t
& VT_ARRAY
))
8780 expect("array type");
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
) {
8788 index_last
= expr_const();
8789 if (index_last
< 0 ||
8790 (s
->c
>= 0 && index_last
>= s
->c
) ||
8792 expect("invalid index");
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) {
8813 if ((type
->t
& VT_BTYPE
) != VT_STRUCT
)
8814 expect("struct/union type");
8827 /* XXX: fix this mess by using explicit storage field */
8829 type1
.t
|= (type
->t
& ~VT_TYPE
);
8843 if (type
->t
& VT_ARRAY
) {
8845 type
= pointed_type(type
);
8846 c
+= index
* type_size(type
, &align
);
8850 error("too many field init");
8851 /* XXX: fix this mess by using explicit storage field */
8853 type1
.t
|= (type
->t
& ~VT_TYPE
);
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
;
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
;
8873 for(i
= 1; i
< nb_elems
; i
++) {
8875 memcpy(dst
, src
, elem_size
);
8881 #define EXPR_CONST 1
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
;
8890 unsigned long long bit_mask
;
8898 /* compound literals must be allocated globally in this case */
8899 saved_global_expr
= global_expr
;
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");
8913 dtype
.t
&= ~VT_CONSTANT
; /* need to do that to avoid false warning */
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
)) {
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
) &&
8941 (bt
== VT_INT
&& bit_size
!= 32)))
8942 error("initializer element is not computable at load time");
8945 vtop
->c
.i
= (vtop
->c
.i
!= 0);
8947 *(char *)ptr
|= (vtop
->c
.i
& bit_mask
) << bit_pos
;
8950 *(short *)ptr
|= (vtop
->c
.i
& bit_mask
) << bit_pos
;
8953 *(double *)ptr
= vtop
->c
.d
;
8956 *(long double *)ptr
= vtop
->c
.ld
;
8959 *(long long *)ptr
|= (vtop
->c
.ll
& bit_mask
) << bit_pos
;
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
;
8970 vset(&dtype
, VT_LOCAL
|VT_LVAL
, c
);
8977 /* put zeros for variable based init */
8978 static void init_putz(CType
*t
, Section
*sec
, unsigned long c
, int size
)
8981 /* nothing to do because globals are already set to zero */
8983 vpush_global_sym(&func_old_type
, TOK_memset
);
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
;
9004 if (type
->t
& VT_ARRAY
) {
9008 t1
= pointed_type(type
);
9009 size1
= type_size(t1
, &align1
);
9012 if ((first
&& tok
!= TOK_LSTR
&& tok
!= TOK_STR
) ||
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
)
9024 (t1
->t
& VT_BTYPE
) == VT_INT
9026 ) || (tok
== TOK_STR
&& (t1
->t
& VT_BTYPE
) == VT_BYTE
)) {
9027 while (tok
== TOK_STR
|| tok
== TOK_LSTR
) {
9032 /* compute maximum number of chars wanted */
9034 cstr_len
= cstr
->size
;
9036 cstr_len
= cstr
->size
/ sizeof(nwchar_t
);
9039 if (n
>= 0 && nb
> (n
- array_length
))
9040 nb
= n
- array_length
;
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
9047 if (sec
&& tok
== TOK_STR
&& size1
== 1) {
9048 memcpy(sec
->data
+ c
+ array_length
, cstr
->data
, nb
);
9052 ch
= ((unsigned char *)cstr
->data
)[i
];
9054 ch
= ((nwchar_t
*)cstr
->data
)[i
];
9055 init_putv(t1
, sec
, c
+ (array_length
+ i
) * size1
,
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
) {
9067 init_putv(t1
, sec
, c
+ (array_length
* size1
), 0, EXPR_VAL
);
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
);
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
9089 if (index
>= n
&& no_oblock
)
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 */
9105 s
->c
= array_length
;
9106 } else if ((type
->t
& VT_BTYPE
) == VT_STRUCT
&&
9107 (sec
|| !first
|| tok
== '{')) {
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) */
9123 while (tok
== '(') {
9127 if (!parse_btype(&type1
, &ad1
))
9129 type_decl(&type1
, &ad1
, &n
, TYPE_ABSTRACT
);
9131 if (!is_assignable_types(type
, &type1
))
9132 error("invalid type for cast");
9137 if (first
|| tok
== '{') {
9146 while (tok
!= '}') {
9147 decl_designator(type
, sec
, c
, NULL
, &f
, size_only
);
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
;
9157 if (no_oblock
&& f
== NULL
)
9163 /* put zeros at the end */
9164 if (!size_only
&& array_length
< n
) {
9165 init_putz(type
, sec
, c
+ array_length
,
9174 } else if (tok
== '{') {
9176 decl_initializer(type
, sec
, c
, first
, size_only
);
9178 } else if (size_only
) {
9179 /* just skip expression */
9181 while ((parlevel
> 0 || (tok
!= '}' && tok
!= ',')) &&
9185 else if (tok
== ')')
9190 /* currently, we always use constant expression for globals
9191 (may change for scripting case) */
9192 expr_type
= EXPR_CONST
;
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
;
9211 ParseState saved_parse_state
= {0};
9212 TokenString init_str
;
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
);
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
);
9235 while (level
> 0 || (tok
!= ',' && tok
!= ';')) {
9237 error("unexpected end of file in initializer");
9238 tok_str_add_tok(&init_str
);
9241 else if (tok
== '}') {
9251 tok_str_add(&init_str
, -1);
9252 tok_str_add(&init_str
, 0);
9255 save_parse_state(&saved_parse_state
);
9257 macro_ptr
= init_str
.str
;
9259 decl_initializer(type
, NULL
, 0, 1, 1);
9260 /* prepare second initializer parsing */
9261 macro_ptr
= init_str
.str
;
9264 /* if still unknown size, error */
9265 size
= type_size(type
, &align
);
9267 error("unknown type size");
9269 /* take into account specified alignment if bigger */
9271 if (ad
->aligned
> align
)
9272 align
= ad
->aligned
;
9273 } else if (ad
->packed
) {
9276 if ((r
& VT_VALMASK
) == VT_LOCAL
) {
9278 if (do_bounds_check
&& (type
->t
& VT_ARRAY
))
9280 loc
= (loc
- size
) & -align
;
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 */
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
;
9295 /* local variable */
9296 sym_push(v
, type
, r
, addr
);
9298 /* push local reference */
9299 vset(type
, r
, addr
);
9305 if (v
&& scope
== VT_CONST
) {
9306 /* see if the symbol was already defined */
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
9317 if ((sym
->type
.t
& VT_ARRAY
) &&
9318 sym
->type
.ref
->c
< 0 &&
9320 sym
->type
.ref
->c
= type
->ref
->c
;
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
9328 /* no init data, we won't add more to the symbol */
9335 /* allocate symbol in corresponding section */
9340 else if (tcc_state
->nocommon
)
9344 data_offset
= sec
->data_offset
;
9345 data_offset
= (data_offset
+ align
- 1) & -align
;
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
)
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
;
9362 addr
= 0; /* avoid warning */
9366 if (scope
!= VT_CONST
|| !sym
) {
9367 sym
= sym_push(v
, type
, r
| VT_SYM
, 0);
9369 /* update symbol definition */
9371 put_extern_sym(sym
, sec
, addr
, size
);
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
;
9383 /* push global reference */
9384 sym
= get_sym_ref(type
, sec
, addr
, size
);
9386 vsetc(type
, VT_CONST
| VT_SYM
, &cval
);
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
;
9403 decl_initializer(type
, sec
, addr
, 1, 0);
9404 /* restore parse state if needed */
9406 tok_str_free(init_str
.str
);
9407 restore_parse_state(&saved_parse_state
);
9413 void put_func_debug(Sym
*sym
)
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);
9429 /* parse an old style function declaration list */
9430 /* XXX: check multiple parameter */
9431 static void func_decl_list(Sym
*func_sym
)
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
) &&
9445 /* we accept no variable after */
9449 type_decl(&type
, &ad
, &v
, TYPE_DIRECT
);
9450 /* find parameter in function parameter list */
9453 if ((s
->v
& ~SYM_FIELD
) == v
)
9457 error("declaration for parameter '%s' but no such parameter",
9458 get_tok_str(v
, NULL
));
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) */
9466 /* accept other parameters */
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
;
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
);
9488 /* put debug symbol */
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
);
9495 block(NULL
, NULL
, NULL
, NULL
, 0, 0);
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
=
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)
9520 int *str
, inline_generated
;
9522 /* iterate while inline function are referenced */
9524 inline_generated
= 0;
9525 for(sym
= global_stack
; sym
!= NULL
; sym
= sym
->prev
) {
9527 if (((type
->t
& VT_BTYPE
) == VT_FUNC
) &&
9528 (type
->t
& (VT_STATIC
| VT_INLINE
)) ==
9529 (VT_STATIC
| VT_INLINE
) &&
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
;
9539 cur_text_section
= text_section
;
9541 macro_ptr
= NULL
; /* fail safe */
9544 inline_generated
= 1;
9547 if (!inline_generated
)
9551 /* free all remaining inline function tokens */
9552 for(sym
= global_stack
; sym
!= NULL
; sym
= sym
->prev
) {
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!
9560 str
= INLINE_DEF(sym
->r
);
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
)
9576 if (!parse_btype(&btype
, &ad
)) {
9577 /* skip redundant ';' */
9578 /* XXX: find more elegant solution */
9583 if (l
== VT_CONST
&&
9584 (tok
== TOK_ASM1
|| tok
== TOK_ASM2
|| tok
== TOK_ASM3
)) {
9585 /* global asm block */
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
)
9595 if (((btype
.t
& VT_BTYPE
) == VT_ENUM
||
9596 (btype
.t
& VT_BTYPE
) == VT_STRUCT
) &&
9598 /* we accept no variable after */
9602 while (1) { /* iterate thru each declaration */
9604 type_decl(&type
, &ad
, &v
, TYPE_DIRECT
);
9608 type_to_str(buf
, sizeof(buf
), t
, get_tok_str(v
, NULL
));
9609 printf("type = '%s'\n", buf
);
9612 if ((type
.t
& VT_BTYPE
) == VT_FUNC
) {
9613 /* if old style function prototype, we accept a
9616 if (sym
->c
== FUNC_OLD
)
9617 func_decl_list(sym
);
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 */
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
;
9638 if ((sym
->type
.t
& VT_BTYPE
) != VT_FUNC
)
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
);
9648 FUNC_EXPORT(type
.ref
->r
) = 1;
9650 if (!is_compatible_types(&sym
->type
, &type
)) {
9652 error("incompatible types for redefinition of '%s'",
9653 get_tok_str(v
, NULL
));
9655 /* if symbol is already defined, then put complete type */
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
;
9671 tok_str_new(&func_str
);
9677 error("unexpected end of file");
9678 tok_str_add_tok(&func_str
);
9683 } else if (t
== '}') {
9685 if (block_level
== 0)
9689 tok_str_add(&func_str
, -1);
9690 tok_str_add(&func_str
, 0);
9691 INLINE_DEF(sym
->r
) = func_str
.str
;
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
;
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 */
9711 type
.ref
->r
= ad
.func_attr
;
9712 external_sym(v
, &type
, 0);
9714 /* not lvalue if array */
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
9726 external_sym(v
, &type
, r
);
9728 type
.t
|= (btype
.t
& VT_STATIC
); /* Retain "static". */
9729 if (type
.t
& VT_STATIC
)
9735 decl_initializer_alloc(&type
, &ad
, r
,
9749 /* better than nothing, but needs extension to handle '-E' option
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 */
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
)
9770 volatile int section_sym
;
9773 printf("%s: **** new file\n", file
->filename
);
9775 preprocess_init(s1
);
9777 cur_text_section
= NULL
;
9779 anon_sym
= SYM_FIRST_ANOM
;
9781 /* file info: full path + filename */
9782 section_sym
= 0; /* avoid warning */
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
));
9789 normalize_slashes(buf
);
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
);
9823 /* define 'void *alloca(unsigned int)' builtin function */
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);
9832 sym_push(TOK_alloca
, VT_FUNC
| (p
<< VT_STRUCT_SHIFT
), VT_CONST
, 0);
9836 define_start
= define_stack
;
9839 if (setjmp(s1
->error_jmp_buf
) == 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
;
9849 expect("declaration");
9851 /* end of translation unit info */
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
9876 static int tcc_preprocess(TCCState
*s1
)
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
;
9896 if (tok
== TOK_EOF
) {
9898 } else if (tok
== TOK_LINEFEED
) {
9903 } else if (token_seen
) {
9904 fwrite(tok_spaces
.data
, tok_spaces
.size
, 1, s1
->outfile
);
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
);
9911 fputs("\n", s1
->outfile
), --d
;
9912 line_ref
= (file_ref
= file
)->line_num
;
9915 fputs(get_tok_str(tok
, &tokc
), s1
->outfile
);
9917 free_defines(define_start
);
9922 int tcc_compile_string(TCCState
*s
, const char *str
)
9924 BufferedFile bf1
, *bf
= &bf1
;
9928 /* init file structure */
9930 /* XXX: avoid copying */
9932 buf
= tcc_malloc(len
+ 1);
9935 memcpy(buf
, str
, len
);
9938 bf
->buf_end
= buf
+ len
;
9939 pstrcpy(bf
->filename
, sizeof(bf
->filename
), "<string>");
9942 ret
= tcc_compile(s
);
9946 /* currently, no need to close */
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
, " ");
9961 pstrcat(bf
->buffer
, IO_BUF_SIZE
, value
);
9963 /* init file structure */
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';
9972 s1
->include_stack_ptr
= s1
->include_stack
;
9974 /* parse with define parser */
9975 ch
= file
->buf_ptr
[0];
9981 /* undefine a preprocessor symbol */
9982 void tcc_undefine_symbol(TCCState
*s1
, const char *sym
)
9986 ts
= tok_alloc(sym
, strlen(sym
));
9987 s
= define_find(ts
->tok
);
9988 /* undefine symbol by putting an invalid name */
9993 #ifdef CONFIG_TCC_ASM
9995 #ifdef TCC_TARGET_I386
9996 #include "i386-asm.c"
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");
10011 #include "tccelf.c"
10013 #ifdef TCC_TARGET_COFF
10014 #include "tcccoff.c"
10017 #ifdef TCC_TARGET_PE
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';
10037 last_func_name
[0] = '\0';
10038 last_pc
= 0xffffffff;
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 */
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
)
10051 func_name
[0] = '\0';
10054 str
= stabstr_section
->data
+ sym
->n_strx
;
10055 p
= strchr(str
, ':');
10057 pstrcpy(func_name
, sizeof(func_name
), 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
;
10068 /* line number info */
10070 pc
= sym
->n_value
+ func_addr
;
10071 if (wanted_pc
>= last_pc
&& wanted_pc
< pc
)
10074 last_line_num
= sym
->n_desc
;
10076 strcpy(last_func_name
, func_name
);
10078 /* include files */
10080 str
= stabstr_section
->data
+ sym
->n_strx
;
10082 if (incl_index
< INCLUDE_STACK_SIZE
) {
10083 incl_files
[incl_index
++] = str
;
10087 if (incl_index
> 1)
10091 if (sym
->n_strx
== 0) {
10092 incl_index
= 0; /* end of translation unit */
10094 str
= stabstr_section
->data
+ sym
->n_strx
;
10095 /* do not add path */
10097 if (len
> 0 && str
[len
- 1] != '/')
10105 /* second pass: we try symtab symbols (no line number info) */
10108 ElfW(Sym
) *sym
, *sym_end
;
10111 sym_end
= (ElfW(Sym
) *)(symtab_section
->data
+ symtab_section
->data_offset
);
10112 for(sym
= (ElfW(Sym
) *)symtab_section
->data
+ 1;
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
);
10126 /* did not find any info: */
10127 fprintf(stderr
, " ???\n");
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)
10147 /* fix for glibc 2.1 */
10149 #define REG_EIP EIP
10150 #define REG_EBP EBP
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
)
10161 #if defined(__FreeBSD__)
10162 *paddr
= uc
->uc_mcontext
.mc_eip
;
10163 #elif defined(__dietlibc__)
10164 *paddr
= uc
->uc_mcontext
.eip
;
10166 *paddr
= uc
->uc_mcontext
.gregs
[REG_EIP
];
10170 #if defined(__FreeBSD__)
10171 fp
= uc
->uc_mcontext
.mc_ebp
;
10172 #elif defined(__dietlibc__)
10173 fp
= uc
->uc_mcontext
.ebp
;
10175 fp
= uc
->uc_mcontext
.gregs
[REG_EBP
];
10177 for(i
=1;i
<level
;i
++) {
10178 /* XXX: check address validity with program info */
10179 if (fp
<= 0x1000 || fp
>= 0xc0000000)
10181 fp
= ((unsigned long *)fp
)[0];
10183 *paddr
= ((unsigned long *)fp
)[1];
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
)
10196 /* XXX: only support linux */
10197 *paddr
= uc
->uc_mcontext
.gregs
[REG_RIP
];
10200 fp
= uc
->uc_mcontext
.gregs
[REG_RBP
];
10201 for(i
=1;i
<level
;i
++) {
10202 /* XXX: check address validity with program info */
10205 fp
= ((unsigned long *)fp
)[0];
10207 *paddr
= ((unsigned long *)fp
)[1];
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
)
10222 /* emit a run time error at position 'pc' */
10223 void rt_error(ucontext_t
*uc
, const char *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)
10237 fprintf(stderr
, "at ");
10239 fprintf(stderr
, "by ");
10246 /* signal handler for fatal errors */
10247 static void sig_error(int signum
, siginfo_t
*siginf
, void *puc
)
10249 ucontext_t
*uc
= puc
;
10253 switch(siginf
->si_code
) {
10256 rt_error(uc
, "division by zero");
10259 rt_error(uc
, "floating point exception");
10265 if (rt_bound_error_msg
&& *rt_bound_error_msg
)
10266 rt_error(uc
, *rt_bound_error_msg
);
10268 rt_error(uc
, "dereferencing invalid pointer");
10271 rt_error(uc
, "illegal instruction");
10274 rt_error(uc
, "abort() called");
10277 rt_error(uc
, "caught signal %d", signum
);
10284 /* copy code into memory passed in by the caller and do all relocations
10285 (needed before using tcc_get_symbol()).
10286 returns -1 on error and required size if ptr is NULL */
10287 int tcc_relocate(TCCState
*s1
, void *ptr
)
10290 unsigned long offset
, length
, mem
;
10295 if (0 == s1
->runtime_added
) {
10296 #ifdef TCC_TARGET_PE
10297 pe_add_runtime(s1
);
10298 relocate_common_syms();
10299 tcc_add_linker_symbols(s1
);
10301 tcc_add_runtime(s1
);
10302 relocate_common_syms();
10303 tcc_add_linker_symbols(s1
);
10304 build_got_entries(s1
);
10306 s1
->runtime_added
= 1;
10310 mem
= (unsigned long)ptr
;
10311 for(i
= 1; i
< s1
->nb_sections
; i
++) {
10312 s
= s1
->sections
[i
];
10313 if (0 == (s
->sh_flags
& SHF_ALLOC
))
10315 length
= s
->data_offset
;
10318 } else if (1 == mem
) {
10319 /* section are relocated in place.
10320 We also alloc the bss space */
10321 if (s
->sh_type
== SHT_NOBITS
)
10322 s
->data
= tcc_malloc(length
);
10323 s
->sh_addr
= (unsigned long)s
->data
;
10325 /* sections are relocated to new memory */
10326 s
->sh_addr
= (mem
+ offset
+ 15) & ~15;
10328 offset
= (offset
+ length
+ 15) & ~15;
10331 #ifdef TCC_TARGET_X86_64
10332 s1
->runtime_plt_and_got_offset
= 0;
10333 s1
->runtime_plt_and_got
= (char *)(mem
+ offset
);
10334 /* double the size of the buffer for got and plt entries
10335 XXX: calculate exact size for them? */
10340 return offset
+ 15;
10342 /* relocate symbols */
10343 relocate_syms(s1
, 1);
10347 /* relocate each section */
10348 for(i
= 1; i
< s1
->nb_sections
; i
++) {
10349 s
= s1
->sections
[i
];
10351 relocate_section(s1
, s
);
10354 for(i
= 1; i
< s1
->nb_sections
; i
++) {
10355 s
= s1
->sections
[i
];
10356 if (0 == (s
->sh_flags
& SHF_ALLOC
))
10358 length
= s
->data_offset
;
10359 // printf("%-12s %08x %04x\n", s->name, s->sh_addr, length);
10360 ptr
= (void*)s
->sh_addr
;
10361 if (NULL
== s
->data
|| s
->sh_type
== SHT_NOBITS
)
10362 memset(ptr
, 0, length
);
10363 else if (ptr
!= s
->data
)
10364 memcpy(ptr
, s
->data
, length
);
10365 /* mark executable sections as executable in memory */
10366 if (s
->sh_flags
& SHF_EXECINSTR
)
10367 set_pages_executable(ptr
, length
);
10369 #ifdef TCC_TARGET_X86_64
10370 set_pages_executable(s1
->runtime_plt_and_got
,
10371 s1
->runtime_plt_and_got_offset
);
10376 /* launch the compiled program with the given arguments */
10377 int tcc_run(TCCState
*s1
, int argc
, char **argv
)
10379 int (*prog_main
)(int, char **);
10383 ret
= tcc_relocate(s1
, NULL
);
10386 ptr
= tcc_malloc(ret
);
10387 tcc_relocate(s1
, ptr
);
10389 prog_main
= tcc_get_symbol_err(s1
, "main");
10392 #if defined(_WIN32) || defined(CONFIG_TCCBOOT)
10393 error("debug mode currently not available for Windows");
10395 struct sigaction sigact
;
10396 /* install TCC signal handlers to print debug info on fatal
10398 sigact
.sa_flags
= SA_SIGINFO
| SA_RESETHAND
;
10399 sigact
.sa_sigaction
= sig_error
;
10400 sigemptyset(&sigact
.sa_mask
);
10401 sigaction(SIGFPE
, &sigact
, NULL
);
10402 sigaction(SIGILL
, &sigact
, NULL
);
10403 sigaction(SIGSEGV
, &sigact
, NULL
);
10404 sigaction(SIGBUS
, &sigact
, NULL
);
10405 sigaction(SIGABRT
, &sigact
, NULL
);
10409 #ifdef CONFIG_TCC_BCHECK
10410 if (do_bounds_check
) {
10411 void (*bound_init
)(void);
10413 /* set error function */
10414 rt_bound_error_msg
= tcc_get_symbol_err(s1
, "__bound_error_msg");
10416 /* XXX: use .init section so that it also work in binary ? */
10417 bound_init
= (void *)tcc_get_symbol_err(s1
, "__bound_init");
10421 ret
= (*prog_main
)(argc
, argv
);
10426 void tcc_memstats(void)
10429 printf("memory in use: %d\n", mem_cur_size
);
10433 static void tcc_cleanup(void)
10437 if (NULL
== tcc_state
)
10441 /* free -D defines */
10442 free_defines(NULL
);
10445 n
= tok_ident
- TOK_IDENT
;
10446 for(i
= 0; i
< n
; i
++)
10447 tcc_free(table_ident
[i
]);
10448 tcc_free(table_ident
);
10450 /* free sym_pools */
10451 dynarray_reset(&sym_pools
, &nb_sym_pools
);
10452 /* string buffer */
10453 cstr_free(&tokcstr
);
10454 cstr_free(&tok_spaces
);
10455 /* reset symbol stack */
10456 sym_free_first
= NULL
;
10457 /* cleanup from error/setjmp */
10461 TCCState
*tcc_new(void)
10470 s
= tcc_mallocz(sizeof(TCCState
));
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
;
10493 ts
= tok_alloc(p
, r
- p
- 1);
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
);
10510 #if defined(TCC_TARGET_X86_64)
10511 tcc_define_symbol(s
, "__x86_64__", NULL
);
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
);
10523 #ifdef TCC_TARGET_PE
10524 tcc_define_symbol(s
, "_WIN32", NULL
);
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
);
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");
10542 tcc_define_symbol(s
, "__WCHAR_TYPE__", "int");
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");
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,
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
,
10569 ".dynhashtab", SHF_PRIVATE
);
10570 s
->alacarte_link
= 1;
10572 #ifdef CHAR_IS_UNSIGNED
10573 s
->char_is_unsigned
= 1;
10575 #if defined(TCC_TARGET_PE) && 0
10576 /* XXX: currently the PE linker is not ready to support that */
10577 s
->leading_underscore
= 1;
10582 void tcc_delete(TCCState
*s1
)
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
];
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
);
10618 int tcc_add_include_path(TCCState
*s1
, const char *pathname
)
10622 pathname1
= tcc_strdup(pathname
);
10623 dynarray_add((void ***)&s1
->include_paths
, &s1
->nb_include_paths
, pathname1
);
10627 int tcc_add_sysinclude_path(TCCState
*s1
, const char *pathname
)
10631 pathname1
= tcc_strdup(pathname
);
10632 dynarray_add((void ***)&s1
->sysinclude_paths
, &s1
->nb_sysinclude_paths
, pathname1
);
10636 static int tcc_add_file_internal(TCCState
*s1
, const char *filename
, int flags
)
10641 BufferedFile
*saved_file
;
10643 /* find source file type with extension */
10644 ext
= tcc_fileextension(filename
);
10648 /* open the file */
10650 file
= tcc_open(s1
, filename
);
10652 if (flags
& AFF_PRINT_ERROR
) {
10653 error_noabort("file '%s' not found", filename
);
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
);
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);
10674 #ifdef TCC_TARGET_PE
10675 if (!PATHCMP(ext
, "def")) {
10676 ret
= pe_load_def_file(s1
, file
->fd
);
10681 /* assume executable format: auto guess file type */
10682 ret
= read(fd
, &ehdr
, sizeof(ehdr
));
10683 lseek(fd
, 0, SEEK_SET
);
10685 error_noabort("could not read header");
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
10704 h
= dlopen(filename
, RTLD_GLOBAL
| RTLD_LAZY
);
10711 ret
= tcc_load_dll(s1
, fd
, filename
,
10712 (flags
& AFF_REFERENCED_DLL
) != 0);
10715 error_noabort("unrecognized ELF file");
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
);
10722 #ifdef TCC_TARGET_COFF
10723 if (*(uint16_t *)(&ehdr
) == COFF_C67_MAGIC
) {
10724 ret
= tcc_load_coff(s1
, fd
);
10727 #ifdef TCC_TARGET_PE
10728 if (pe_test_res_file(&ehdr
, ret
)) {
10729 ret
= pe_load_res_file(s1
, fd
);
10733 /* as GNU ld, consider it is an ld script if not recognized */
10735 ret
= tcc_load_ldscript(s1
);
10737 error_noabort("unrecognized file type");
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
)
10761 pathname1
= tcc_strdup(pathname
);
10762 dynarray_add((void ***)&s
->library_paths
, &s
->nb_library_paths
, pathname1
);
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
)
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)
10782 /* the library name is the same as the argument of the '-l' option */
10783 int tcc_add_library(TCCState
*s
, const char *libraryname
)
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
);
10793 snprintf(buf
, sizeof(buf
), "lib%s.so", libraryname
);
10795 if (tcc_add_dll(s
, buf
, 0) == 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)
10809 int tcc_add_symbol(TCCState
*s
, const char *name
, void *val
)
10811 add_elf_sym(symtab_section
, (unsigned long)val
, 0,
10812 ELFW(ST_INFO
)(STB_GLOBAL
, STT_NOTYPE
), 0,
10817 int tcc_set_output_type(TCCState
*s
, int output_type
)
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");
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
);
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
);
10851 if (s
->char_is_unsigned
) {
10852 tcc_define_symbol(s
, "__CHAR_UNSIGNED__", NULL
);
10855 /* add debug sections */
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
) &&
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");
10877 #ifdef TCC_TARGET_PE
10878 snprintf(buf
, sizeof(buf
), "%s/lib", tcc_lib_path
);
10879 tcc_add_library_path(s
, buf
);
10885 #define WD_ALL 0x0001 /* warning is activated when using -Wall */
10886 #define FD_INVERT 0x0002 /* invert value before storing */
10888 typedef struct 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
)
10910 if (r
[0] == 'n' && r
[1] == 'o' && r
[2] == '-') {
10914 for(i
= 0, p
= flags
; i
< nb_flags
; i
++, p
++) {
10915 if (!strcmp(r
, p
->name
))
10920 if (p
->flags
& FD_INVERT
)
10922 *(int *)((uint8_t *)s
+ p
->offset
) = value
;
10927 /* set/reset a warning */
10928 int tcc_set_warning(TCCState
*s
, const char *warning_name
, int value
)
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;
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
),
10959 #if !defined(LIBTCC)
10961 static int64_t getclock_us(void)
10966 return (tb
.time
* 1000LL + tb
.millitm
) * 1000LL;
10969 gettimeofday(&tv
, NULL
);
10970 return tv
.tv_sec
* 1000000LL + tv
.tv_usec
;
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"
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"
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
{
11045 TCC_OPTION_nostdinc
,
11046 TCC_OPTION_nostdlib
,
11047 TCC_OPTION_print_search_dirs
,
11048 TCC_OPTION_rdynamic
,
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 },
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},
11094 /* convert 'str' into an array of space separated strings */
11095 static int expand_args(char ***pargv
, const char *str
)
11104 while (is_space(*str
))
11109 while (*str
!= '\0' && !is_space(*str
))
11112 arg
= tcc_malloc(len
+ 1);
11113 memcpy(arg
, s1
, len
);
11115 dynarray_add((void ***)&argv
, &argc
, arg
);
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
)
11132 const TCCOption
*popt
;
11133 const char *optarg
, *p1
, *r1
;
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
) {
11145 /* argv[0] will be this file */
11149 /* find option in table (match only the first chars */
11150 popt
= tcc_options
;
11154 error("invalid option -- '%s'", r
);
11167 if (popt
->flags
& TCC_OPTION_HAS_ARG
) {
11168 if (*r1
!= '\0' || (popt
->flags
& TCC_OPTION_NOSEP
)) {
11171 if (optind
>= argc
)
11172 error("argument to '%s' is missing", r
);
11173 optarg
= argv
[optind
++];
11181 switch(popt
->index
) {
11182 case TCC_OPTION_HELP
:
11186 if (tcc_add_include_path(s
, optarg
) < 0)
11187 error("too many include paths");
11192 sym
= (char *)optarg
;
11193 value
= strchr(sym
, '=');
11198 tcc_define_symbol(s
, sym
, value
);
11202 tcc_undefine_symbol(s
, optarg
);
11205 tcc_add_library_path(s
, optarg
);
11208 /* set tcc utilities path (mainly for tcc development) */
11209 tcc_lib_path
= optarg
;
11212 dynarray_add((void ***)&files
, &nb_files
, r
);
11215 case TCC_OPTION_bench
:
11218 case TCC_OPTION_bt
:
11219 num_callers
= atoi(optarg
);
11221 #ifdef CONFIG_TCC_BCHECK
11223 do_bounds_check
= 1;
11231 multiple_files
= 1;
11232 output_type
= TCC_OUTPUT_OBJ
;
11234 case TCC_OPTION_static
:
11235 s
->static_link
= 1;
11237 case TCC_OPTION_shared
:
11238 output_type
= TCC_OUTPUT_DLL
;
11240 case TCC_OPTION_soname
:
11241 s
->soname
= optarg
;
11244 multiple_files
= 1;
11248 /* generate a .o merging several output files */
11250 output_type
= TCC_OUTPUT_OBJ
;
11252 case TCC_OPTION_nostdinc
:
11255 case TCC_OPTION_nostdlib
:
11258 case TCC_OPTION_print_search_dirs
:
11259 print_search_dirs
= 1;
11261 case TCC_OPTION_run
:
11265 argc1
= expand_args(&argv1
, optarg
);
11267 parse_args(s
, argc1
, argv1
);
11269 multiple_files
= 0;
11270 output_type
= TCC_OUTPUT_MEMORY
;
11275 if (0 == verbose
++)
11276 printf("tcc version %s\n", TCC_VERSION
);
11277 } while (*optarg
++ == 'v');
11280 if (tcc_set_flag(s
, optarg
, 1) < 0 && s
->warn_unsupported
)
11281 goto unsupported_option
;
11284 if (tcc_set_warning(s
, optarg
, 1) < 0 &&
11285 s
->warn_unsupported
)
11286 goto unsupported_option
;
11291 case TCC_OPTION_rdynamic
:
11294 case TCC_OPTION_Wl
:
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
;
11306 #ifdef TCC_TARGET_COFF
11307 if (!strcmp(p
, "coff")) {
11308 s
->output_format
= TCC_OUTPUT_FORMAT_COFF
;
11312 error("target %s not found", p
);
11315 error("unsupported linker option '%s'", optarg
);
11320 output_type
= TCC_OUTPUT_PREPROCESS
;
11323 if (s
->warn_unsupported
) {
11324 unsupported_option
:
11325 warning("unsupported option '%s'", r
);
11334 int main(int argc
, char **argv
)
11338 int nb_objfiles
, ret
, optind
;
11339 char objfilename
[1024];
11340 int64_t start_time
= 0;
11343 tcc_lib_path
= w32_tcc_lib_path();
11347 output_type
= TCC_OUTPUT_EXE
;
11349 multiple_files
= 1;
11354 print_search_dirs
= 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
);
11363 if (optind
== 0 || nb_files
== 0) {
11364 if (optind
&& verbose
)
11370 nb_objfiles
= nb_files
- nb_libraries
;
11372 /* if outfile provided without other options, we output an
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
) {
11389 s
->outfile
= stdout
;
11391 s
->outfile
= fopen(outfile
, "w");
11393 error("could not open '%s", outfile
);
11395 } else if (output_type
!= TCC_OUTPUT_MEMORY
) {
11397 /* compute default outfile 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");
11407 if (output_type
== TCC_OUTPUT_EXE
)
11408 strcpy(ext
, ".exe");
11411 if (output_type
== TCC_OUTPUT_OBJ
&& !reloc_output
&& *ext
)
11414 pstrcpy(objfilename
, sizeof(objfilename
), "a.out");
11415 outfile
= objfilename
;
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)
11434 } else if (filename
[0] == '-' && filename
[1]) {
11435 if (tcc_add_library(s
, filename
+ 2) < 0)
11436 error("cannot find %s", filename
);
11439 printf("-> %s\n", filename
);
11440 if (tcc_add_file(s
, filename
) < 0)
11445 /* free all files */
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)
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
) {
11466 fclose(s
->outfile
);
11467 } else if (s
->output_type
== TCC_OUTPUT_MEMORY
) {
11468 ret
= tcc_run(s
, argc
- optind
, argv
+ optind
);
11470 ret
= tcc_output_file(s
, outfile
) ? 1 : 0;
11472 /* XXX: cannot do it with bound checking because of the malloc hooks */
11473 if (!do_bounds_check
)
11478 printf("memory: %d bytes, max = %d bytes\n", mem_cur_size
, mem_max_size
);