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
42 #include <sys/timeb.h>
47 #include <sys/ucontext.h>
51 #endif /* !CONFIG_TCCBOOT */
68 /* preprocessor debug */
70 /* include file debug */
78 /* target selection */
79 //#define TCC_TARGET_I386 /* i386 code generator */
80 //#define TCC_TARGET_ARM /* ARMv4 code generator */
81 //#define TCC_TARGET_C67 /* TMS320C67xx code generator */
83 /* default target is I386 */
84 #if !defined(TCC_TARGET_I386) && !defined(TCC_TARGET_ARM) && \
85 !defined(TCC_TARGET_C67)
86 #define TCC_TARGET_I386
89 #if !defined(_WIN32) && !defined(TCC_UCLIBC) && !defined(TCC_TARGET_ARM) && \
90 !defined(TCC_TARGET_C67)
91 #define CONFIG_TCC_BCHECK /* enable bound checking code */
94 #if defined(_WIN32) && !defined(TCC_TARGET_PE)
95 #define CONFIG_TCC_STATIC
98 /* define it to include assembler support */
99 #if !defined(TCC_TARGET_ARM) && !defined(TCC_TARGET_C67)
100 #define CONFIG_TCC_ASM
103 /* object format selection */
104 #if defined(TCC_TARGET_C67)
105 #define TCC_TARGET_COFF
114 /* path to find crt1.o, crti.o and crtn.o. Only needed when generating
115 executables or dlls */
116 #define CONFIG_TCC_CRT_PREFIX CONFIG_SYSROOT "/usr/lib"
118 #define INCLUDE_STACK_SIZE 32
119 #define IFDEF_STACK_SIZE 64
120 #define VSTACK_SIZE 256
121 #define STRING_MAX_SIZE 1024
122 #define PACK_STACK_SIZE 8
124 #define TOK_HASH_SIZE 8192 /* must be a power of two */
125 #define TOK_ALLOC_INCR 512 /* must be a power of two */
126 #define TOK_MAX_SIZE 4 /* token max size in int unit when stored in string */
128 /* token symbol management */
129 typedef struct TokenSym
{
130 struct TokenSym
*hash_next
;
131 struct Sym
*sym_define
; /* direct pointer to define */
132 struct Sym
*sym_label
; /* direct pointer to label */
133 struct Sym
*sym_struct
; /* direct pointer to structure */
134 struct Sym
*sym_identifier
; /* direct pointer to identifier */
135 int tok
; /* token number */
141 typedef unsigned short nwchar_t
;
143 typedef int nwchar_t
;
146 typedef struct CString
{
147 int size
; /* size in bytes */
148 void *data
; /* either 'char *' or 'nwchar_t *' */
150 void *data_allocated
; /* if non NULL, data has been malloced */
153 /* type definition */
154 typedef struct CType
{
160 typedef union CValue
{
166 unsigned int ul
; /* address (should be unsigned long on 64 bit cpu) */
168 unsigned long long ull
;
169 struct CString
*cstr
;
175 typedef struct SValue
{
176 CType type
; /* type */
177 unsigned short r
; /* register + flags */
178 unsigned short r2
; /* second register, used for 'long long'
179 type. If not used, set to VT_CONST */
180 CValue c
; /* constant, if VT_CONST */
181 struct Sym
*sym
; /* symbol, if (VT_SYM | VT_CONST) */
184 /* symbol management */
186 int v
; /* symbol token */
187 long r
; /* associated register */
188 long c
; /* associated number */
189 CType type
; /* associated type */
190 struct Sym
*next
; /* next related symbol */
191 struct Sym
*prev
; /* prev symbol in stack */
192 struct Sym
*prev_tok
; /* previous symbol for this token */
195 /* section definition */
196 /* XXX: use directly ELF structure for parameters ? */
197 /* special flag to indicate that the section should not be linked to
199 #define SHF_PRIVATE 0x80000000
201 typedef struct Section
{
202 unsigned long data_offset
; /* current data offset */
203 unsigned char *data
; /* section data */
204 unsigned long data_allocated
; /* used for realloc() handling */
205 int sh_name
; /* elf section name (only used during output) */
206 int sh_num
; /* elf section number */
207 int sh_type
; /* elf section type */
208 int sh_flags
; /* elf section flags */
209 int sh_info
; /* elf section info */
210 int sh_addralign
; /* elf section alignment */
211 int sh_entsize
; /* elf entry size */
212 unsigned long sh_size
; /* section size (only used during output) */
213 unsigned long sh_addr
; /* address at which the section is relocated */
214 unsigned long sh_offset
; /* file offset */
215 int nb_hashed_syms
; /* used to resize the hash table */
216 struct Section
*link
; /* link to another section */
217 struct Section
*reloc
; /* corresponding section for relocation, if any */
218 struct Section
*hash
; /* hash table for symbols */
219 struct Section
*next
;
220 char name
[1]; /* section name */
223 typedef struct DLLReference
{
229 /* GNUC attribute definition */
230 typedef struct AttributeDef
{
234 int func_attr
; /* calling convention, exports, ... */
237 /* -------------------------------------------------- */
238 /* gr: wrappers for casting sym->r for other purposes */
246 #define FUNC_CALL(r) (((func_attr_t*)&(r))->func_call)
247 #define FUNC_EXPORT(r) (((func_attr_t*)&(r))->func_export)
248 #define FUNC_ARGS(r) (((func_attr_t*)&(r))->func_args)
249 #define INLINE_DEF(r) (*(int **)&(r))
250 /* -------------------------------------------------- */
252 #define SYM_STRUCT 0x40000000 /* struct/union/enum symbol space */
253 #define SYM_FIELD 0x20000000 /* struct/union field symbol space */
254 #define SYM_FIRST_ANOM 0x10000000 /* first anonymous sym */
256 /* stored in 'Sym.c' field */
257 #define FUNC_NEW 1 /* ansi function prototype */
258 #define FUNC_OLD 2 /* old function prototype */
259 #define FUNC_ELLIPSIS 3 /* ansi function prototype with ... */
261 /* stored in 'Sym.r' field */
262 #define FUNC_CDECL 0 /* standard c call */
263 #define FUNC_STDCALL 1 /* pascal c call */
264 #define FUNC_FASTCALL1 2 /* first param in %eax */
265 #define FUNC_FASTCALL2 3 /* first parameters in %eax, %edx */
266 #define FUNC_FASTCALL3 4 /* first parameter in %eax, %edx, %ecx */
267 #define FUNC_FASTCALLW 5 /* first parameter in %ecx, %edx */
269 /* field 'Sym.t' for macros */
270 #define MACRO_OBJ 0 /* object like macro */
271 #define MACRO_FUNC 1 /* function like macro */
273 /* field 'Sym.r' for C labels */
274 #define LABEL_DEFINED 0 /* label is defined */
275 #define LABEL_FORWARD 1 /* label is forward defined */
276 #define LABEL_DECLARED 2 /* label is declared but never used */
278 /* type_decl() types */
279 #define TYPE_ABSTRACT 1 /* type without variable */
280 #define TYPE_DIRECT 2 /* type with variable */
282 #define IO_BUF_SIZE 8192
284 typedef struct BufferedFile
{
288 int line_num
; /* current line number - here to simplify code */
289 int ifndef_macro
; /* #ifndef macro / #endif search */
290 int ifndef_macro_saved
; /* saved ifndef_macro */
291 int *ifdef_stack_ptr
; /* ifdef_stack value at the start of the file */
292 char inc_type
; /* type of include */
293 char inc_filename
[512]; /* filename specified by the user */
294 char filename
[1024]; /* current filename - here to simplify code */
295 unsigned char buffer
[IO_BUF_SIZE
+ 1]; /* extra size for CH_EOB char */
298 #define CH_EOB '\\' /* end of buffer or '\0' char in file */
299 #define CH_EOF (-1) /* end of file */
301 /* parsing state (used to save parser state to reparse part of the
302 source several times) */
303 typedef struct ParseState
{
310 /* used to record tokens */
311 typedef struct TokenString
{
318 /* include file cache, used to find files faster and also to eliminate
319 inclusion if the include file is protected by #ifndef ... #endif */
320 typedef struct CachedInclude
{
322 int hash_next
; /* -1 if none */
323 char type
; /* '"' or '>' to give include type */
324 char filename
[1]; /* path specified in #include */
327 #define CACHED_INCLUDES_HASH_SIZE 512
330 static struct BufferedFile
*file
;
333 static CString tokcstr
; /* current parsed string, if any */
334 /* additional informations about token */
335 static int tok_flags
;
336 #define TOK_FLAG_BOL 0x0001 /* beginning of line before */
337 #define TOK_FLAG_BOF 0x0002 /* beginning of file before */
338 #define TOK_FLAG_ENDIF 0x0004 /* a endif was found matching starting #ifdef */
339 #define TOK_FLAG_EOF 0x0008 /* end of file */
341 static int *macro_ptr
, *macro_ptr_allocated
;
342 static int *unget_saved_macro_ptr
;
343 static int unget_saved_buffer
[TOK_MAX_SIZE
+ 1];
344 static int unget_buffer_enabled
;
345 static int parse_flags
;
346 #define PARSE_FLAG_PREPROCESS 0x0001 /* activate preprocessing */
347 #define PARSE_FLAG_TOK_NUM 0x0002 /* return numbers instead of TOK_PPNUM */
348 #define PARSE_FLAG_LINEFEED 0x0004 /* line feed is returned as a
349 token. line feed is also
351 #define PARSE_FLAG_ASM_COMMENTS 0x0008 /* '#' can be used for line comment */
353 static Section
*text_section
, *data_section
, *bss_section
; /* predefined sections */
354 static Section
*cur_text_section
; /* current section where function code is
356 #ifdef CONFIG_TCC_ASM
357 static Section
*last_text_section
; /* to handle .previous asm directive */
359 /* bound check related sections */
360 static Section
*bounds_section
; /* contains global data bound description */
361 static Section
*lbounds_section
; /* contains local data bound description */
362 /* symbol sections */
363 static Section
*symtab_section
, *strtab_section
;
366 static Section
*stab_section
, *stabstr_section
;
368 /* loc : local variable index
369 ind : output code index
371 anon_sym: anonymous symbol index
373 static int rsym
, anon_sym
, ind
, loc
;
374 /* expression generation modifiers */
375 static int const_wanted
; /* true if constant wanted */
376 static int nocode_wanted
; /* true if no code generation wanted for an expression */
377 static int global_expr
; /* true if compound literals must be allocated
378 globally (used during initializers parsing */
379 static CType func_vt
; /* current function return type (used by return
382 static int last_line_num
, last_ind
, func_ind
; /* debug last line number and pc */
383 static int tok_ident
;
384 static TokenSym
**table_ident
;
385 static TokenSym
*hash_ident
[TOK_HASH_SIZE
];
386 static char token_buf
[STRING_MAX_SIZE
+ 1];
387 static char *funcname
;
388 static Sym
*global_stack
, *local_stack
;
389 static Sym
*define_stack
;
390 static Sym
*global_label_stack
, *local_label_stack
;
391 /* symbol allocator */
392 #define SYM_POOL_NB (8192 / sizeof(Sym))
393 static Sym
*sym_free_first
;
394 static void **sym_pools
;
395 static int nb_sym_pools
;
397 static SValue vstack
[VSTACK_SIZE
], *vtop
;
398 /* some predefined types */
399 static CType char_pointer_type
, func_old_type
, int_type
;
400 /* true if isid(c) || isnum(c) */
401 static unsigned char isidnum_table
[256-CH_EOF
];
403 /* display some information during compilation */
404 static int verbose
= 0;
406 /* compile with debug symbol (and use them if error during execution) */
407 static int do_debug
= 0;
409 /* compile with built-in memory and bounds checker */
410 static int do_bounds_check
= 0;
412 /* display benchmark infos */
414 static int do_bench
= 0;
416 static int total_lines
;
417 static int total_bytes
;
419 /* use GNU C extensions */
420 static int gnu_ext
= 1;
422 /* use Tiny C extensions */
423 static int tcc_ext
= 1;
425 /* max number of callers shown if error */
426 static int num_callers
= 6;
427 static const char **rt_bound_error_msg
;
429 /* XXX: get rid of this ASAP */
430 static struct TCCState
*tcc_state
;
432 /* give the path of the tcc libraries */
433 static const char *tcc_lib_path
= CONFIG_TCCDIR
;
438 BufferedFile
**include_stack_ptr
;
439 int *ifdef_stack_ptr
;
441 /* include file handling */
442 char **include_paths
;
443 int nb_include_paths
;
444 char **sysinclude_paths
;
445 int nb_sysinclude_paths
;
446 CachedInclude
**cached_includes
;
447 int nb_cached_includes
;
449 char **library_paths
;
450 int nb_library_paths
;
452 /* array of all loaded dlls (including those referenced by loaded
454 DLLReference
**loaded_dlls
;
459 int nb_sections
; /* number of sections, including first dummy section */
464 unsigned long *got_offsets
;
466 /* give the correspondance from symtab indexes to dynsym indexes */
467 int *symtab_to_dynsym
;
469 /* temporary dynamic symbol sections (for dll loading) */
470 Section
*dynsymtab_section
;
471 /* exported dynamic symbol section */
474 int nostdinc
; /* if true, no standard headers are added */
475 int nostdlib
; /* if true, no standard libraries are added */
477 int nocommon
; /* if true, do not use common symbols for .bss data */
479 /* if true, static linking is performed */
482 /* soname as specified on the command line (-soname) */
485 /* if true, all symbols are exported */
488 /* if true, only link in referenced objects from archive */
491 /* address of text section */
492 unsigned long text_addr
;
495 /* output format, see TCC_OUTPUT_FORMAT_xxx */
498 /* C language options */
499 int char_is_unsigned
;
500 int leading_underscore
;
502 /* warning switches */
503 int warn_write_strings
;
504 int warn_unsupported
;
507 int warn_implicit_function_declaration
;
511 void (*error_func
)(void *opaque
, const char *msg
);
512 int error_set_jmp_enabled
;
513 jmp_buf error_jmp_buf
;
516 /* tiny assembler state */
519 /* see include_stack_ptr */
520 BufferedFile
*include_stack
[INCLUDE_STACK_SIZE
];
522 /* see ifdef_stack_ptr */
523 int ifdef_stack
[IFDEF_STACK_SIZE
];
525 /* see cached_includes */
526 int cached_includes_hash
[CACHED_INCLUDES_HASH_SIZE
];
529 int pack_stack
[PACK_STACK_SIZE
];
532 /* output file for preprocessing */
536 /* The current value can be: */
537 #define VT_VALMASK 0x00ff
538 #define VT_CONST 0x00f0 /* constant in vc
539 (must be first non register value) */
540 #define VT_LLOCAL 0x00f1 /* lvalue, offset on stack */
541 #define VT_LOCAL 0x00f2 /* offset on stack */
542 #define VT_CMP 0x00f3 /* the value is stored in processor flags (in vc) */
543 #define VT_JMP 0x00f4 /* value is the consequence of jmp true (even) */
544 #define VT_JMPI 0x00f5 /* value is the consequence of jmp false (odd) */
545 #define VT_LVAL 0x0100 /* var is an lvalue */
546 #define VT_SYM 0x0200 /* a symbol value is added */
547 #define VT_MUSTCAST 0x0400 /* value must be casted to be correct (used for
548 char/short stored in integer registers) */
549 #define VT_MUSTBOUND 0x0800 /* bound checking must be done before
550 dereferencing value */
551 #define VT_BOUNDED 0x8000 /* value is bounded. The address of the
552 bounding function call point is in vc */
553 #define VT_LVAL_BYTE 0x1000 /* lvalue is a byte */
554 #define VT_LVAL_SHORT 0x2000 /* lvalue is a short */
555 #define VT_LVAL_UNSIGNED 0x4000 /* lvalue is unsigned */
556 #define VT_LVAL_TYPE (VT_LVAL_BYTE | VT_LVAL_SHORT | VT_LVAL_UNSIGNED)
559 #define VT_INT 0 /* integer type */
560 #define VT_BYTE 1 /* signed byte type */
561 #define VT_SHORT 2 /* short type */
562 #define VT_VOID 3 /* void type */
563 #define VT_PTR 4 /* pointer */
564 #define VT_ENUM 5 /* enum definition */
565 #define VT_FUNC 6 /* function type */
566 #define VT_STRUCT 7 /* struct/union definition */
567 #define VT_FLOAT 8 /* IEEE float */
568 #define VT_DOUBLE 9 /* IEEE double */
569 #define VT_LDOUBLE 10 /* IEEE long double */
570 #define VT_BOOL 11 /* ISOC99 boolean type */
571 #define VT_LLONG 12 /* 64 bit integer */
572 #define VT_LONG 13 /* long integer (NEVER USED as type, only
574 #define VT_BTYPE 0x000f /* mask for basic type */
575 #define VT_UNSIGNED 0x0010 /* unsigned type */
576 #define VT_ARRAY 0x0020 /* array type (also has VT_PTR) */
577 #define VT_BITFIELD 0x0040 /* bitfield modifier */
578 #define VT_CONSTANT 0x0800 /* const modifier */
579 #define VT_VOLATILE 0x1000 /* volatile modifier */
580 #define VT_SIGNED 0x2000 /* signed type */
583 #define VT_EXTERN 0x00000080 /* extern definition */
584 #define VT_STATIC 0x00000100 /* static variable */
585 #define VT_TYPEDEF 0x00000200 /* typedef definition */
586 #define VT_INLINE 0x00000400 /* inline definition */
588 #define VT_STRUCT_SHIFT 16 /* shift for bitfield shift values */
590 /* type mask (except storage) */
591 #define VT_STORAGE (VT_EXTERN | VT_STATIC | VT_TYPEDEF | VT_INLINE)
592 #define VT_TYPE (~(VT_STORAGE))
596 /* warning: the following compare tokens depend on i386 asm code */
603 #define TOK_Nset 0x98
604 #define TOK_Nclear 0x99
610 #define TOK_LAND 0xa0
614 #define TOK_MID 0xa3 /* inc/dec, to void constant */
616 #define TOK_UDIV 0xb0 /* unsigned division */
617 #define TOK_UMOD 0xb1 /* unsigned modulo */
618 #define TOK_PDIV 0xb2 /* fast division with undefined rounding for pointers */
619 #define TOK_CINT 0xb3 /* number in tokc */
620 #define TOK_CCHAR 0xb4 /* char constant in tokc */
621 #define TOK_STR 0xb5 /* pointer to string in tokc */
622 #define TOK_TWOSHARPS 0xb6 /* ## preprocessing token */
623 #define TOK_LCHAR 0xb7
624 #define TOK_LSTR 0xb8
625 #define TOK_CFLOAT 0xb9 /* float constant */
626 #define TOK_LINENUM 0xba /* line number info */
627 #define TOK_CDOUBLE 0xc0 /* double constant */
628 #define TOK_CLDOUBLE 0xc1 /* long double constant */
629 #define TOK_UMULL 0xc2 /* unsigned 32x32 -> 64 mul */
630 #define TOK_ADDC1 0xc3 /* add with carry generation */
631 #define TOK_ADDC2 0xc4 /* add with carry use */
632 #define TOK_SUBC1 0xc5 /* add with carry generation */
633 #define TOK_SUBC2 0xc6 /* add with carry use */
634 #define TOK_CUINT 0xc8 /* unsigned int constant */
635 #define TOK_CLLONG 0xc9 /* long long constant */
636 #define TOK_CULLONG 0xca /* unsigned long long constant */
637 #define TOK_ARROW 0xcb
638 #define TOK_DOTS 0xcc /* three dots */
639 #define TOK_SHR 0xcd /* unsigned shift right */
640 #define TOK_PPNUM 0xce /* preprocessor number */
642 #define TOK_SHL 0x01 /* shift left */
643 #define TOK_SAR 0x02 /* signed shift right */
645 /* assignement operators : normal operator or 0x80 */
646 #define TOK_A_MOD 0xa5
647 #define TOK_A_AND 0xa6
648 #define TOK_A_MUL 0xaa
649 #define TOK_A_ADD 0xab
650 #define TOK_A_SUB 0xad
651 #define TOK_A_DIV 0xaf
652 #define TOK_A_XOR 0xde
653 #define TOK_A_OR 0xfc
654 #define TOK_A_SHL 0x81
655 #define TOK_A_SAR 0x82
658 #define offsetof(type, field) ((size_t) &((type *)0)->field)
662 #define countof(tab) (sizeof(tab) / sizeof((tab)[0]))
665 /* WARNING: the content of this string encodes token numbers */
666 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";
668 #define TOK_EOF (-1) /* end of file */
669 #define TOK_LINEFEED 10 /* line feed */
671 /* all identificators and strings have token above that */
672 #define TOK_IDENT 256
674 /* only used for i386 asm opcodes definitions */
675 #define DEF_ASM(x) DEF(TOK_ASM_ ## x, #x)
678 DEF(TOK_ASM_ ## x ## b, #x "b") \
679 DEF(TOK_ASM_ ## x ## w, #x "w") \
680 DEF(TOK_ASM_ ## x ## l, #x "l") \
681 DEF(TOK_ASM_ ## x, #x)
684 DEF(TOK_ASM_ ## x ## w, #x "w") \
685 DEF(TOK_ASM_ ## x ## l, #x "l") \
686 DEF(TOK_ASM_ ## x, #x)
689 DEF(TOK_ASM_ ## f ## x ## s, "f" #x "s") \
690 DEF(TOK_ASM_ ## fi ## x ## l, "fi" #x "l") \
691 DEF(TOK_ASM_ ## f ## x ## l, "f" #x "l") \
692 DEF(TOK_ASM_ ## fi ## x ## s, "fi" #x "s")
695 DEF(TOK_ASM_ ## f ## x, "f" #x ) \
696 DEF(TOK_ASM_ ## f ## x ## p, "f" #x "p") \
699 #define DEF_ASMTEST(x) \
731 #define TOK_ASM_int TOK_INT
734 TOK_LAST
= TOK_IDENT
- 1,
735 #define DEF(id, str) id,
740 static const char tcc_keywords
[] =
741 #define DEF(id, str) str "\0"
746 #define TOK_UIDENT TOK_DEFINE
749 #define snprintf _snprintf
750 #define vsnprintf _vsnprintf
752 #define strtold (long double)strtod
753 #define strtof (float)strtod
754 #define strtoll (long long)strtol
756 #elif defined(TCC_UCLIBC) || defined(__FreeBSD__) || defined(__DragonFly__) \
757 || defined(__OpenBSD__)
758 /* currently incorrect */
759 long double strtold(const char *nptr
, char **endptr
)
761 return (long double)strtod(nptr
, endptr
);
763 float strtof(const char *nptr
, char **endptr
)
765 return (float)strtod(nptr
, endptr
);
768 /* XXX: need to define this to use them in non ISOC99 context */
769 extern float strtof (const char *__nptr
, char **__endptr
);
770 extern long double strtold (const char *__nptr
, char **__endptr
);
773 static char *pstrcpy(char *buf
, int buf_size
, const char *s
);
774 static char *pstrcat(char *buf
, int buf_size
, const char *s
);
775 static char *tcc_basename(const char *name
);
776 static char *tcc_fileextension (const char *p
);
778 static void next(void);
779 static void next_nomacro(void);
780 static void parse_expr_type(CType
*type
);
781 static void expr_type(CType
*type
);
782 static void unary_type(CType
*type
);
783 static void block(int *bsym
, int *csym
, int *case_sym
, int *def_sym
,
784 int case_reg
, int is_expr
);
785 static int expr_const(void);
786 static void expr_eq(void);
787 static void gexpr(void);
788 static void gen_inline_functions(void);
789 static void decl(int l
);
790 static void decl_initializer(CType
*type
, Section
*sec
, unsigned long c
,
791 int first
, int size_only
);
792 static void decl_initializer_alloc(CType
*type
, AttributeDef
*ad
, int r
,
793 int has_init
, int v
, int scope
);
795 void gv2(int rc1
, int rc2
);
796 void move_reg(int r
, int s
);
797 void save_regs(int n
);
798 void save_reg(int r
);
803 int get_reg_ex(int rc
,int rc2
);
806 struct macro_level
*prev
;
810 static void macro_subst(TokenString
*tok_str
, Sym
**nested_list
,
811 const int *macro_str
, struct macro_level
**can_read_stream
);
813 void force_charshort_cast(int t
);
814 static void gen_cast(CType
*type
);
816 static Sym
*sym_find(int v
);
817 static Sym
*sym_push(int v
, CType
*type
, int r
, int c
);
820 static int type_size(CType
*type
, int *a
);
821 static inline CType
*pointed_type(CType
*type
);
822 static int pointed_size(CType
*type
);
823 static int lvalue_type(int t
);
824 static int parse_btype(CType
*type
, AttributeDef
*ad
);
825 static void type_decl(CType
*type
, AttributeDef
*ad
, int *v
, int td
);
826 static int compare_types(CType
*type1
, CType
*type2
, int unqualified
);
827 static int is_compatible_types(CType
*type1
, CType
*type2
);
828 static int is_compatible_parameter_types(CType
*type1
, CType
*type2
);
830 int ieee_finite(double d
);
831 void error(const char *fmt
, ...);
835 void lexpand_nr(void);
836 static void vpush_global_sym(CType
*type
, int v
);
837 void vset(CType
*type
, int r
, int v
);
838 void type_to_str(char *buf
, int buf_size
,
839 CType
*type
, const char *varstr
);
840 char *get_tok_str(int v
, CValue
*cv
);
841 static Sym
*get_sym_ref(CType
*type
, Section
*sec
,
842 unsigned long offset
, unsigned long size
);
843 static Sym
*external_global_sym(int v
, CType
*type
, int r
);
845 /* section generation */
846 static void section_realloc(Section
*sec
, unsigned long new_size
);
847 static void *section_ptr_add(Section
*sec
, unsigned long size
);
848 static void put_extern_sym(Sym
*sym
, Section
*section
,
849 unsigned long value
, unsigned long size
);
850 static void greloc(Section
*s
, Sym
*sym
, unsigned long addr
, int type
);
851 static int put_elf_str(Section
*s
, const char *sym
);
852 static int put_elf_sym(Section
*s
,
853 unsigned long value
, unsigned long size
,
854 int info
, int other
, int shndx
, const char *name
);
855 static int add_elf_sym(Section
*s
, unsigned long value
, unsigned long size
,
856 int info
, int other
, int sh_num
, const char *name
);
857 static void put_elf_reloc(Section
*symtab
, Section
*s
, unsigned long offset
,
858 int type
, int symbol
);
859 static void put_stabs(const char *str
, int type
, int other
, int desc
,
860 unsigned long value
);
861 static void put_stabs_r(const char *str
, int type
, int other
, int desc
,
862 unsigned long value
, Section
*sec
, int sym_index
);
863 static void put_stabn(int type
, int other
, int desc
, int value
);
864 static void put_stabd(int type
, int other
, int desc
);
865 static int tcc_add_dll(TCCState
*s
, const char *filename
, int flags
);
867 #define AFF_PRINT_ERROR 0x0001 /* print error if file not found */
868 #define AFF_REFERENCED_DLL 0x0002 /* load a referenced dll from another dll */
869 #define AFF_PREPROCESS 0x0004 /* preprocess file */
870 static int tcc_add_file_internal(TCCState
*s
, const char *filename
, int flags
);
873 int tcc_output_coff(TCCState
*s1
, FILE *f
);
876 void *resolve_sym(TCCState
*s1
, const char *sym
, int type
);
877 int pe_load_def_file(struct TCCState
*s1
, int fd
);
878 int pe_test_res_file(void *v
, int size
);
879 int pe_load_res_file(struct TCCState
*s1
, int fd
);
880 void pe_add_runtime(struct TCCState
*s1
);
881 void pe_guess_outfile(char *objfilename
, int output_type
);
882 int pe_output_file(struct TCCState
*s1
, const char *filename
);
886 #ifdef CONFIG_TCC_ASM
888 typedef struct ExprValue
{
893 #define MAX_ASM_OPERANDS 30
895 typedef struct ASMOperand
{
896 int id
; /* GCC 3 optionnal identifier (0 if number only supported */
898 char asm_str
[16]; /* computed asm string for operand */
899 SValue
*vt
; /* C value of the expression */
900 int ref_index
; /* if >= 0, gives reference to a output constraint */
901 int input_index
; /* if >= 0, gives reference to an input constraint */
902 int priority
; /* priority, used to assign registers */
903 int reg
; /* if >= 0, register number used for this operand */
904 int is_llong
; /* true if double register value */
905 int is_memory
; /* true if memory operand */
906 int is_rw
; /* for '+' modifier */
909 static void asm_expr(TCCState
*s1
, ExprValue
*pe
);
910 static int asm_int_expr(TCCState
*s1
);
911 static int find_constraint(ASMOperand
*operands
, int nb_operands
,
912 const char *name
, const char **pp
);
914 static int tcc_assemble(TCCState
*s1
, int do_preprocess
);
918 static void asm_instr(void);
919 static void asm_global_instr(void);
921 /* true if float/double/long double type */
922 static inline int is_float(int t
)
926 return bt
== VT_LDOUBLE
|| bt
== VT_DOUBLE
|| bt
== VT_FLOAT
;
929 #ifdef TCC_TARGET_I386
930 #include "i386-gen.c"
933 #ifdef TCC_TARGET_ARM
937 #ifdef TCC_TARGET_C67
941 #ifdef CONFIG_TCC_STATIC
943 #define RTLD_LAZY 0x001
944 #define RTLD_NOW 0x002
945 #define RTLD_GLOBAL 0x100
946 #define RTLD_DEFAULT NULL
948 /* dummy function for profiling */
949 void *dlopen(const char *filename
, int flag
)
954 const char *dlerror(void)
959 typedef struct TCCSyms
{
964 #define TCCSYM(a) { #a, &a, },
966 /* add the symbol you want here if no dynamic linking is done */
967 static TCCSyms tcc_syms
[] = {
968 #if !defined(CONFIG_TCCBOOT)
977 void *resolve_sym(TCCState
*s1
, const char *symbol
, int type
)
981 while (p
->str
!= NULL
) {
982 if (!strcmp(p
->str
, symbol
))
989 #elif !defined(_WIN32)
993 void *resolve_sym(TCCState
*s1
, const char *sym
, int type
)
995 return dlsym(RTLD_DEFAULT
, sym
);
1000 /********************************************************/
1002 /* we use our own 'finite' function to avoid potential problems with
1003 non standard math libs */
1004 /* XXX: endianness dependent */
1005 int ieee_finite(double d
)
1008 return ((unsigned)((p
[1] | 0x800fffff) + 1)) >> 31;
1011 /* copy a string and truncate it. */
1012 static char *pstrcpy(char *buf
, int buf_size
, const char *s
)
1019 q_end
= buf
+ buf_size
- 1;
1031 /* strcat and truncate. */
1032 static char *pstrcat(char *buf
, int buf_size
, const char *s
)
1037 pstrcpy(buf
+ len
, buf_size
- len
, s
);
1042 static int strstart(const char *str
, const char *val
, const char **ptr
)
1047 while (*q
!= '\0') {
1059 /* extract the basename of a file */
1060 static char *tcc_basename(const char *name
)
1062 char *p
= strchr(name
, 0);
1073 static char *tcc_fileextension (const char *name
)
1075 char *b
= tcc_basename(name
);
1076 char *e
= strrchr(b
, '.');
1077 return e
? e
: strchr(b
, 0);
1081 char *normalize_slashes(char *path
)
1084 for (p
= path
; *p
; ++p
)
1090 char *w32_tcc_lib_path(void)
1092 /* on win32, we suppose the lib and includes are at the location
1094 char path
[1024], *p
;
1095 GetModuleFileNameA(NULL
, path
, sizeof path
);
1096 p
= tcc_basename(normalize_slashes(strlwr(path
)));
1097 if (p
- 5 > path
&& 0 == strncmp(p
- 5, "/bin/", 5))
1102 return strdup(path
);
1106 void set_pages_executable(void *ptr
, unsigned long length
)
1109 unsigned long old_protect
;
1110 VirtualProtect(ptr
, length
, PAGE_EXECUTE_READWRITE
, &old_protect
);
1112 unsigned long start
, end
;
1113 start
= (unsigned long)ptr
& ~(PAGESIZE
- 1);
1114 end
= (unsigned long)ptr
+ length
;
1115 end
= (end
+ PAGESIZE
- 1) & ~(PAGESIZE
- 1);
1116 mprotect((void *)start
, end
- start
, PROT_READ
| PROT_WRITE
| PROT_EXEC
);
1120 /* memory management */
1124 unsigned malloc_usable_size(void*);
1127 static inline void tcc_free(void *ptr
)
1130 mem_cur_size
-= malloc_usable_size(ptr
);
1135 static void *tcc_malloc(unsigned long size
)
1140 error("memory full");
1142 mem_cur_size
+= malloc_usable_size(ptr
);
1143 if (mem_cur_size
> mem_max_size
)
1144 mem_max_size
= mem_cur_size
;
1149 static void *tcc_mallocz(unsigned long size
)
1152 ptr
= tcc_malloc(size
);
1153 memset(ptr
, 0, size
);
1157 static inline void *tcc_realloc(void *ptr
, unsigned long size
)
1161 mem_cur_size
-= malloc_usable_size(ptr
);
1163 ptr1
= realloc(ptr
, size
);
1165 /* NOTE: count not correct if alloc error, but not critical */
1166 mem_cur_size
+= malloc_usable_size(ptr1
);
1167 if (mem_cur_size
> mem_max_size
)
1168 mem_max_size
= mem_cur_size
;
1173 static char *tcc_strdup(const char *str
)
1176 ptr
= tcc_malloc(strlen(str
) + 1);
1181 #define free(p) use_tcc_free(p)
1182 #define malloc(s) use_tcc_malloc(s)
1183 #define realloc(p, s) use_tcc_realloc(p, s)
1185 static void dynarray_add(void ***ptab
, int *nb_ptr
, void *data
)
1192 /* every power of two we double array size */
1193 if ((nb
& (nb
- 1)) == 0) {
1198 pp
= tcc_realloc(pp
, nb_alloc
* sizeof(void *));
1200 error("memory full");
1207 static void dynarray_reset(void *pp
, int *n
)
1210 for (p
= *(void***)pp
; *n
; ++p
, --*n
)
1213 tcc_free(*(void**)pp
);
1217 /* symbol allocator */
1218 static Sym
*__sym_malloc(void)
1220 Sym
*sym_pool
, *sym
, *last_sym
;
1223 sym_pool
= tcc_malloc(SYM_POOL_NB
* sizeof(Sym
));
1224 dynarray_add(&sym_pools
, &nb_sym_pools
, sym_pool
);
1226 last_sym
= sym_free_first
;
1228 for(i
= 0; i
< SYM_POOL_NB
; i
++) {
1229 sym
->next
= last_sym
;
1233 sym_free_first
= last_sym
;
1237 static inline Sym
*sym_malloc(void)
1240 sym
= sym_free_first
;
1242 sym
= __sym_malloc();
1243 sym_free_first
= sym
->next
;
1247 static inline void sym_free(Sym
*sym
)
1249 sym
->next
= sym_free_first
;
1250 sym_free_first
= sym
;
1253 Section
*new_section(TCCState
*s1
, const char *name
, int sh_type
, int sh_flags
)
1257 sec
= tcc_mallocz(sizeof(Section
) + strlen(name
));
1258 strcpy(sec
->name
, name
);
1259 sec
->sh_type
= sh_type
;
1260 sec
->sh_flags
= sh_flags
;
1268 sec
->sh_addralign
= 4;
1271 sec
->sh_addralign
= 1;
1274 sec
->sh_addralign
= 32; /* default conservative alignment */
1278 /* only add section if not private */
1279 if (!(sh_flags
& SHF_PRIVATE
)) {
1280 sec
->sh_num
= s1
->nb_sections
;
1281 dynarray_add((void ***)&s1
->sections
, &s1
->nb_sections
, sec
);
1286 static void free_section(Section
*s
)
1288 if (s
->link
&& (s
->link
->sh_flags
& SHF_PRIVATE
))
1289 free_section(s
->link
);
1290 if (s
->hash
&& (s
->hash
->sh_flags
& SHF_PRIVATE
))
1291 s
->hash
->link
= NULL
, free_section(s
->hash
);
1296 /* realloc section and set its content to zero */
1297 static void section_realloc(Section
*sec
, unsigned long new_size
)
1300 unsigned char *data
;
1302 size
= sec
->data_allocated
;
1305 while (size
< new_size
)
1307 data
= tcc_realloc(sec
->data
, size
);
1309 error("memory full");
1310 memset(data
+ sec
->data_allocated
, 0, size
- sec
->data_allocated
);
1312 sec
->data_allocated
= size
;
1315 /* reserve at least 'size' bytes in section 'sec' from
1316 sec->data_offset. */
1317 static void *section_ptr_add(Section
*sec
, unsigned long size
)
1319 unsigned long offset
, offset1
;
1321 offset
= sec
->data_offset
;
1322 offset1
= offset
+ size
;
1323 if (offset1
> sec
->data_allocated
)
1324 section_realloc(sec
, offset1
);
1325 sec
->data_offset
= offset1
;
1326 return sec
->data
+ offset
;
1329 /* return a reference to a section, and create it if it does not
1331 Section
*find_section(TCCState
*s1
, const char *name
)
1335 for(i
= 1; i
< s1
->nb_sections
; i
++) {
1336 sec
= s1
->sections
[i
];
1337 if (!strcmp(name
, sec
->name
))
1340 /* sections are created as PROGBITS */
1341 return new_section(s1
, name
, SHT_PROGBITS
, SHF_ALLOC
);
1344 #define SECTION_ABS ((void *)1)
1346 /* update sym->c so that it points to an external symbol in section
1347 'section' with value 'value' */
1348 static void put_extern_sym2(Sym
*sym
, Section
*section
,
1349 unsigned long value
, unsigned long size
,
1350 int can_add_underscore
)
1352 int sym_type
, sym_bind
, sh_num
, info
, other
, attr
;
1357 if (section
== NULL
)
1359 else if (section
== SECTION_ABS
)
1362 sh_num
= section
->sh_num
;
1366 if ((sym
->type
.t
& VT_BTYPE
) == VT_FUNC
) {
1367 sym_type
= STT_FUNC
;
1368 #ifdef TCC_TARGET_PE
1370 attr
= sym
->type
.ref
->r
;
1371 if (FUNC_EXPORT(attr
))
1373 if (FUNC_CALL(attr
) == FUNC_STDCALL
)
1377 sym_type
= STT_OBJECT
;
1380 if (sym
->type
.t
& VT_STATIC
)
1381 sym_bind
= STB_LOCAL
;
1383 sym_bind
= STB_GLOBAL
;
1386 name
= get_tok_str(sym
->v
, NULL
);
1387 #ifdef CONFIG_TCC_BCHECK
1388 if (do_bounds_check
) {
1391 /* XXX: avoid doing that for statics ? */
1392 /* if bound checking is activated, we change some function
1393 names by adding the "__bound" prefix */
1396 /* XXX: we rely only on malloc hooks */
1409 strcpy(buf
, "__bound_");
1417 #ifdef TCC_TARGET_PE
1418 if ((other
& 2) && can_add_underscore
) {
1419 sprintf(buf1
, "_%s@%d", name
, FUNC_ARGS(attr
));
1423 if (tcc_state
->leading_underscore
&& can_add_underscore
) {
1425 pstrcpy(buf1
+ 1, sizeof(buf1
) - 1, name
);
1428 info
= ELFW(ST_INFO
)(sym_bind
, sym_type
);
1429 sym
->c
= add_elf_sym(symtab_section
, value
, size
, info
, other
, sh_num
, name
);
1431 esym
= &((ElfW(Sym
) *)symtab_section
->data
)[sym
->c
];
1432 esym
->st_value
= value
;
1433 esym
->st_size
= size
;
1434 esym
->st_shndx
= sh_num
;
1435 esym
->st_other
|= other
;
1439 static void put_extern_sym(Sym
*sym
, Section
*section
,
1440 unsigned long value
, unsigned long size
)
1442 put_extern_sym2(sym
, section
, value
, size
, 1);
1445 /* add a new relocation entry to symbol 'sym' in section 's' */
1446 static void greloc(Section
*s
, Sym
*sym
, unsigned long offset
, int type
)
1449 put_extern_sym(sym
, NULL
, 0, 0);
1450 /* now we can add ELF relocation info */
1451 put_elf_reloc(symtab_section
, s
, offset
, type
, sym
->c
);
1454 static inline int isid(int c
)
1456 return (c
>= 'a' && c
<= 'z') ||
1457 (c
>= 'A' && c
<= 'Z') ||
1461 static inline int isnum(int c
)
1463 return c
>= '0' && c
<= '9';
1466 static inline int isoct(int c
)
1468 return c
>= '0' && c
<= '7';
1471 static inline int toup(int c
)
1473 if (c
>= 'a' && c
<= 'z')
1474 return c
- 'a' + 'A';
1479 static void strcat_vprintf(char *buf
, int buf_size
, const char *fmt
, va_list ap
)
1483 vsnprintf(buf
+ len
, buf_size
- len
, fmt
, ap
);
1486 static void strcat_printf(char *buf
, int buf_size
, const char *fmt
, ...)
1490 strcat_vprintf(buf
, buf_size
, fmt
, ap
);
1494 void error1(TCCState
*s1
, int is_warning
, const char *fmt
, va_list ap
)
1501 for(f
= s1
->include_stack
; f
< s1
->include_stack_ptr
; f
++)
1502 strcat_printf(buf
, sizeof(buf
), "In file included from %s:%d:\n",
1503 (*f
)->filename
, (*f
)->line_num
);
1504 if (file
->line_num
> 0) {
1505 strcat_printf(buf
, sizeof(buf
),
1506 "%s:%d: ", file
->filename
, file
->line_num
);
1508 strcat_printf(buf
, sizeof(buf
),
1509 "%s: ", file
->filename
);
1512 strcat_printf(buf
, sizeof(buf
),
1516 strcat_printf(buf
, sizeof(buf
), "warning: ");
1517 strcat_vprintf(buf
, sizeof(buf
), fmt
, ap
);
1519 if (!s1
->error_func
) {
1520 /* default case: stderr */
1521 fprintf(stderr
, "%s\n", buf
);
1523 s1
->error_func(s1
->error_opaque
, buf
);
1525 if (!is_warning
|| s1
->warn_error
)
1530 void tcc_set_error_func(TCCState
*s
, void *error_opaque
,
1531 void (*error_func
)(void *opaque
, const char *msg
))
1533 s
->error_opaque
= error_opaque
;
1534 s
->error_func
= error_func
;
1538 /* error without aborting current compilation */
1539 void error_noabort(const char *fmt
, ...)
1541 TCCState
*s1
= tcc_state
;
1545 error1(s1
, 0, fmt
, ap
);
1549 void error(const char *fmt
, ...)
1551 TCCState
*s1
= tcc_state
;
1555 error1(s1
, 0, fmt
, ap
);
1557 /* better than nothing: in some cases, we accept to handle errors */
1558 if (s1
->error_set_jmp_enabled
) {
1559 longjmp(s1
->error_jmp_buf
, 1);
1561 /* XXX: eliminate this someday */
1566 void expect(const char *msg
)
1568 error("%s expected", msg
);
1571 void warning(const char *fmt
, ...)
1573 TCCState
*s1
= tcc_state
;
1580 error1(s1
, 1, fmt
, ap
);
1587 error("'%c' expected", c
);
1591 static void test_lvalue(void)
1593 if (!(vtop
->r
& VT_LVAL
))
1597 /* allocate a new token */
1598 static TokenSym
*tok_alloc_new(TokenSym
**pts
, const char *str
, int len
)
1600 TokenSym
*ts
, **ptable
;
1603 if (tok_ident
>= SYM_FIRST_ANOM
)
1604 error("memory full");
1606 /* expand token table if needed */
1607 i
= tok_ident
- TOK_IDENT
;
1608 if ((i
% TOK_ALLOC_INCR
) == 0) {
1609 ptable
= tcc_realloc(table_ident
, (i
+ TOK_ALLOC_INCR
) * sizeof(TokenSym
*));
1611 error("memory full");
1612 table_ident
= ptable
;
1615 ts
= tcc_malloc(sizeof(TokenSym
) + len
);
1616 table_ident
[i
] = ts
;
1617 ts
->tok
= tok_ident
++;
1618 ts
->sym_define
= NULL
;
1619 ts
->sym_label
= NULL
;
1620 ts
->sym_struct
= NULL
;
1621 ts
->sym_identifier
= NULL
;
1623 ts
->hash_next
= NULL
;
1624 memcpy(ts
->str
, str
, len
);
1625 ts
->str
[len
] = '\0';
1630 #define TOK_HASH_INIT 1
1631 #define TOK_HASH_FUNC(h, c) ((h) * 263 + (c))
1633 /* find a token and add it if not found */
1634 static TokenSym
*tok_alloc(const char *str
, int len
)
1636 TokenSym
*ts
, **pts
;
1642 h
= TOK_HASH_FUNC(h
, ((unsigned char *)str
)[i
]);
1643 h
&= (TOK_HASH_SIZE
- 1);
1645 pts
= &hash_ident
[h
];
1650 if (ts
->len
== len
&& !memcmp(ts
->str
, str
, len
))
1652 pts
= &(ts
->hash_next
);
1654 return tok_alloc_new(pts
, str
, len
);
1657 /* CString handling */
1659 static void cstr_realloc(CString
*cstr
, int new_size
)
1664 size
= cstr
->size_allocated
;
1666 size
= 8; /* no need to allocate a too small first string */
1667 while (size
< new_size
)
1669 data
= tcc_realloc(cstr
->data_allocated
, size
);
1671 error("memory full");
1672 cstr
->data_allocated
= data
;
1673 cstr
->size_allocated
= size
;
1678 static inline void cstr_ccat(CString
*cstr
, int ch
)
1681 size
= cstr
->size
+ 1;
1682 if (size
> cstr
->size_allocated
)
1683 cstr_realloc(cstr
, size
);
1684 ((unsigned char *)cstr
->data
)[size
- 1] = ch
;
1688 static void cstr_cat(CString
*cstr
, const char *str
)
1700 /* add a wide char */
1701 static void cstr_wccat(CString
*cstr
, int ch
)
1704 size
= cstr
->size
+ sizeof(nwchar_t
);
1705 if (size
> cstr
->size_allocated
)
1706 cstr_realloc(cstr
, size
);
1707 *(nwchar_t
*)(((unsigned char *)cstr
->data
) + size
- sizeof(nwchar_t
)) = ch
;
1711 static void cstr_new(CString
*cstr
)
1713 memset(cstr
, 0, sizeof(CString
));
1716 /* free string and reset it to NULL */
1717 static void cstr_free(CString
*cstr
)
1719 tcc_free(cstr
->data_allocated
);
1723 #define cstr_reset(cstr) cstr_free(cstr)
1725 /* XXX: unicode ? */
1726 static void add_char(CString
*cstr
, int c
)
1728 if (c
== '\'' || c
== '\"' || c
== '\\') {
1729 /* XXX: could be more precise if char or string */
1730 cstr_ccat(cstr
, '\\');
1732 if (c
>= 32 && c
<= 126) {
1735 cstr_ccat(cstr
, '\\');
1737 cstr_ccat(cstr
, 'n');
1739 cstr_ccat(cstr
, '0' + ((c
>> 6) & 7));
1740 cstr_ccat(cstr
, '0' + ((c
>> 3) & 7));
1741 cstr_ccat(cstr
, '0' + (c
& 7));
1746 /* XXX: buffer overflow */
1747 /* XXX: float tokens */
1748 char *get_tok_str(int v
, CValue
*cv
)
1750 static char buf
[STRING_MAX_SIZE
+ 1];
1751 static CString cstr_buf
;
1757 /* NOTE: to go faster, we give a fixed buffer for small strings */
1758 cstr_reset(&cstr_buf
);
1759 cstr_buf
.data
= buf
;
1760 cstr_buf
.size_allocated
= sizeof(buf
);
1766 /* XXX: not quite exact, but only useful for testing */
1767 sprintf(p
, "%u", cv
->ui
);
1771 /* XXX: not quite exact, but only useful for testing */
1772 sprintf(p
, "%Lu", cv
->ull
);
1775 cstr_ccat(&cstr_buf
, 'L');
1777 cstr_ccat(&cstr_buf
, '\'');
1778 add_char(&cstr_buf
, cv
->i
);
1779 cstr_ccat(&cstr_buf
, '\'');
1780 cstr_ccat(&cstr_buf
, '\0');
1784 len
= cstr
->size
- 1;
1786 add_char(&cstr_buf
, ((unsigned char *)cstr
->data
)[i
]);
1787 cstr_ccat(&cstr_buf
, '\0');
1790 cstr_ccat(&cstr_buf
, 'L');
1793 cstr_ccat(&cstr_buf
, '\"');
1795 len
= cstr
->size
- 1;
1797 add_char(&cstr_buf
, ((unsigned char *)cstr
->data
)[i
]);
1799 len
= (cstr
->size
/ sizeof(nwchar_t
)) - 1;
1801 add_char(&cstr_buf
, ((nwchar_t
*)cstr
->data
)[i
]);
1803 cstr_ccat(&cstr_buf
, '\"');
1804 cstr_ccat(&cstr_buf
, '\0');
1813 return strcpy(p
, "...");
1815 return strcpy(p
, "<<=");
1817 return strcpy(p
, ">>=");
1819 if (v
< TOK_IDENT
) {
1820 /* search in two bytes table */
1834 } else if (v
< tok_ident
) {
1835 return table_ident
[v
- TOK_IDENT
]->str
;
1836 } else if (v
>= SYM_FIRST_ANOM
) {
1837 /* special name for anonymous symbol */
1838 sprintf(p
, "L.%u", v
- SYM_FIRST_ANOM
);
1840 /* should never happen */
1845 return cstr_buf
.data
;
1848 /* push, without hashing */
1849 static Sym
*sym_push2(Sym
**ps
, int v
, int t
, long c
)
1863 /* find a symbol and return its associated structure. 's' is the top
1864 of the symbol stack */
1865 static Sym
*sym_find2(Sym
*s
, int v
)
1875 /* structure lookup */
1876 static inline Sym
*struct_find(int v
)
1879 if ((unsigned)v
>= (unsigned)(tok_ident
- TOK_IDENT
))
1881 return table_ident
[v
]->sym_struct
;
1884 /* find an identifier */
1885 static inline Sym
*sym_find(int v
)
1888 if ((unsigned)v
>= (unsigned)(tok_ident
- TOK_IDENT
))
1890 return table_ident
[v
]->sym_identifier
;
1893 /* push a given symbol on the symbol stack */
1894 static Sym
*sym_push(int v
, CType
*type
, int r
, int c
)
1903 s
= sym_push2(ps
, v
, type
->t
, c
);
1904 s
->type
.ref
= type
->ref
;
1906 /* don't record fields or anonymous symbols */
1908 if (!(v
& SYM_FIELD
) && (v
& ~SYM_STRUCT
) < SYM_FIRST_ANOM
) {
1909 /* record symbol in token array */
1910 ts
= table_ident
[(v
& ~SYM_STRUCT
) - TOK_IDENT
];
1912 ps
= &ts
->sym_struct
;
1914 ps
= &ts
->sym_identifier
;
1921 /* push a global identifier */
1922 static Sym
*global_identifier_push(int v
, int t
, int c
)
1925 s
= sym_push2(&global_stack
, v
, t
, c
);
1926 /* don't record anonymous symbol */
1927 if (v
< SYM_FIRST_ANOM
) {
1928 ps
= &table_ident
[v
- TOK_IDENT
]->sym_identifier
;
1929 /* modify the top most local identifier, so that
1930 sym_identifier will point to 's' when popped */
1932 ps
= &(*ps
)->prev_tok
;
1939 /* pop symbols until top reaches 'b' */
1940 static void sym_pop(Sym
**ptop
, Sym
*b
)
1950 /* remove symbol in token array */
1952 if (!(v
& SYM_FIELD
) && (v
& ~SYM_STRUCT
) < SYM_FIRST_ANOM
) {
1953 ts
= table_ident
[(v
& ~SYM_STRUCT
) - TOK_IDENT
];
1955 ps
= &ts
->sym_struct
;
1957 ps
= &ts
->sym_identifier
;
1968 BufferedFile
*tcc_open(TCCState
*s1
, const char *filename
)
1973 if (strcmp(filename
, "-") == 0)
1974 fd
= 0, filename
= "stdin";
1976 fd
= open(filename
, O_RDONLY
| O_BINARY
);
1977 if ((verbose
== 2 && fd
>= 0) || verbose
== 3)
1978 printf("%s %*s%s\n", fd
< 0 ? "nf":"->",
1979 (s1
->include_stack_ptr
- s1
->include_stack
), "", filename
);
1982 bf
= tcc_malloc(sizeof(BufferedFile
));
1984 bf
->buf_ptr
= bf
->buffer
;
1985 bf
->buf_end
= bf
->buffer
;
1986 bf
->buffer
[0] = CH_EOB
; /* put eob symbol */
1987 pstrcpy(bf
->filename
, sizeof(bf
->filename
), filename
);
1989 normalize_slashes(bf
->filename
);
1992 bf
->ifndef_macro
= 0;
1993 bf
->ifdef_stack_ptr
= s1
->ifdef_stack_ptr
;
1994 // printf("opening '%s'\n", filename);
1998 void tcc_close(BufferedFile
*bf
)
2000 total_lines
+= bf
->line_num
;
2005 /* fill input buffer and peek next char */
2006 static int tcc_peekc_slow(BufferedFile
*bf
)
2009 /* only tries to read if really end of buffer */
2010 if (bf
->buf_ptr
>= bf
->buf_end
) {
2012 #if defined(PARSE_DEBUG)
2017 len
= read(bf
->fd
, bf
->buffer
, len
);
2024 bf
->buf_ptr
= bf
->buffer
;
2025 bf
->buf_end
= bf
->buffer
+ len
;
2026 *bf
->buf_end
= CH_EOB
;
2028 if (bf
->buf_ptr
< bf
->buf_end
) {
2029 return bf
->buf_ptr
[0];
2031 bf
->buf_ptr
= bf
->buf_end
;
2036 /* return the current character, handling end of block if necessary
2038 static int handle_eob(void)
2040 return tcc_peekc_slow(file
);
2043 /* read next char from current input file and handle end of input buffer */
2044 static inline void inp(void)
2046 ch
= *(++(file
->buf_ptr
));
2047 /* end of buffer/file handling */
2052 /* handle '\[\r]\n' */
2053 static int handle_stray_noerror(void)
2055 while (ch
== '\\') {
2060 } else if (ch
== '\r') {
2074 static void handle_stray(void)
2076 if (handle_stray_noerror())
2077 error("stray '\\' in program");
2080 /* skip the stray and handle the \\n case. Output an error if
2081 incorrect char after the stray */
2082 static int handle_stray1(uint8_t *p
)
2086 if (p
>= file
->buf_end
) {
2103 /* handle just the EOB case, but not stray */
2104 #define PEEKC_EOB(c, p)\
2115 /* handle the complicated stray case */
2116 #define PEEKC(c, p)\
2121 c = handle_stray1(p);\
2126 /* input with '\[\r]\n' handling. Note that this function cannot
2127 handle other characters after '\', so you cannot call it inside
2128 strings or comments */
2129 static void minp(void)
2137 /* single line C++ comments */
2138 static uint8_t *parse_line_comment(uint8_t *p
)
2146 if (c
== '\n' || c
== CH_EOF
) {
2148 } else if (c
== '\\') {
2157 } else if (c
== '\r') {
2175 static uint8_t *parse_comment(uint8_t *p
)
2181 /* fast skip loop */
2184 if (c
== '\n' || c
== '*' || c
== '\\')
2188 if (c
== '\n' || c
== '*' || c
== '\\')
2192 /* now we can handle all the cases */
2196 } else if (c
== '*') {
2202 } else if (c
== '/') {
2203 goto end_of_comment
;
2204 } else if (c
== '\\') {
2209 /* skip '\[\r]\n', otherwise just skip the stray */
2215 } else if (c
== '\r') {
2232 /* stray, eob or eof */
2237 error("unexpected end of file in comment");
2238 } else if (c
== '\\') {
2250 /* space exlcuding newline */
2251 static inline int is_space(int ch
)
2253 return ch
== ' ' || ch
== '\t' || ch
== '\v' || ch
== '\f' || ch
== '\r';
2256 static inline void skip_spaces(void)
2258 while (is_space(ch
))
2262 /* parse a string without interpreting escapes */
2263 static uint8_t *parse_pp_string(uint8_t *p
,
2264 int sep
, CString
*str
)
2272 } else if (c
== '\\') {
2277 unterminated_string
:
2278 /* XXX: indicate line number of start of string */
2279 error("missing terminating %c character", sep
);
2280 } else if (c
== '\\') {
2281 /* escape : just skip \[\r]\n */
2286 } else if (c
== '\r') {
2289 expect("'\n' after '\r'");
2292 } else if (c
== CH_EOF
) {
2293 goto unterminated_string
;
2296 cstr_ccat(str
, '\\');
2302 } else if (c
== '\n') {
2305 } else if (c
== '\r') {
2309 cstr_ccat(str
, '\r');
2325 /* skip block of text until #else, #elif or #endif. skip also pairs of
2327 void preprocess_skip(void)
2329 int a
, start_of_line
, c
, in_warn_or_error
;
2336 in_warn_or_error
= 0;
2357 } else if (c
== '\\') {
2358 ch
= file
->buf_ptr
[0];
2359 handle_stray_noerror();
2366 if (in_warn_or_error
)
2368 p
= parse_pp_string(p
, c
, NULL
);
2372 if (in_warn_or_error
)
2379 p
= parse_comment(p
);
2380 } else if (ch
== '/') {
2381 p
= parse_line_comment(p
);
2386 if (start_of_line
) {
2391 (tok
== TOK_ELSE
|| tok
== TOK_ELIF
|| tok
== TOK_ENDIF
))
2393 if (tok
== TOK_IF
|| tok
== TOK_IFDEF
|| tok
== TOK_IFNDEF
)
2395 else if (tok
== TOK_ENDIF
)
2397 else if( tok
== TOK_ERROR
|| tok
== TOK_WARNING
)
2398 in_warn_or_error
= 1;
2412 /* ParseState handling */
2414 /* XXX: currently, no include file info is stored. Thus, we cannot display
2415 accurate messages if the function or data definition spans multiple
2418 /* save current parse state in 's' */
2419 void save_parse_state(ParseState
*s
)
2421 s
->line_num
= file
->line_num
;
2422 s
->macro_ptr
= macro_ptr
;
2427 /* restore parse state from 's' */
2428 void restore_parse_state(ParseState
*s
)
2430 file
->line_num
= s
->line_num
;
2431 macro_ptr
= s
->macro_ptr
;
2436 /* return the number of additional 'ints' necessary to store the
2438 static inline int tok_ext_size(int t
)
2452 error("unsupported token");
2459 return LDOUBLE_SIZE
/ 4;
2465 /* token string handling */
2467 static inline void tok_str_new(TokenString
*s
)
2471 s
->allocated_len
= 0;
2472 s
->last_line_num
= -1;
2475 static void tok_str_free(int *str
)
2480 static int *tok_str_realloc(TokenString
*s
)
2484 if (s
->allocated_len
== 0) {
2487 len
= s
->allocated_len
* 2;
2489 str
= tcc_realloc(s
->str
, len
* sizeof(int));
2491 error("memory full");
2492 s
->allocated_len
= len
;
2497 static void tok_str_add(TokenString
*s
, int t
)
2503 if (len
>= s
->allocated_len
)
2504 str
= tok_str_realloc(s
);
2509 static void tok_str_add2(TokenString
*s
, int t
, CValue
*cv
)
2516 /* allocate space for worst case */
2517 if (len
+ TOK_MAX_SIZE
> s
->allocated_len
)
2518 str
= tok_str_realloc(s
);
2527 str
[len
++] = cv
->tab
[0];
2536 nb_words
= (sizeof(CString
) + cv
->cstr
->size
+ 3) >> 2;
2537 while ((len
+ nb_words
) > s
->allocated_len
)
2538 str
= tok_str_realloc(s
);
2539 cstr
= (CString
*)(str
+ len
);
2541 cstr
->size
= cv
->cstr
->size
;
2542 cstr
->data_allocated
= NULL
;
2543 cstr
->size_allocated
= cstr
->size
;
2544 memcpy((char *)cstr
+ sizeof(CString
),
2545 cv
->cstr
->data
, cstr
->size
);
2552 #if LDOUBLE_SIZE == 8
2555 str
[len
++] = cv
->tab
[0];
2556 str
[len
++] = cv
->tab
[1];
2558 #if LDOUBLE_SIZE == 12
2560 str
[len
++] = cv
->tab
[0];
2561 str
[len
++] = cv
->tab
[1];
2562 str
[len
++] = cv
->tab
[2];
2563 #elif LDOUBLE_SIZE != 8
2564 #error add long double size support
2573 /* add the current parse token in token string 's' */
2574 static void tok_str_add_tok(TokenString
*s
)
2578 /* save line number info */
2579 if (file
->line_num
!= s
->last_line_num
) {
2580 s
->last_line_num
= file
->line_num
;
2581 cval
.i
= s
->last_line_num
;
2582 tok_str_add2(s
, TOK_LINENUM
, &cval
);
2584 tok_str_add2(s
, tok
, &tokc
);
2587 #if LDOUBLE_SIZE == 12
2588 #define LDOUBLE_GET(p, cv) \
2592 #elif LDOUBLE_SIZE == 8
2593 #define LDOUBLE_GET(p, cv) \
2597 #error add long double size support
2601 /* get a token from an integer array and increment pointer
2602 accordingly. we code it as a macro to avoid pointer aliasing. */
2603 #define TOK_GET(t, p, cv) \
2618 cv.cstr = (CString *)p; \
2619 cv.cstr->data = (char *)p + sizeof(CString);\
2620 p += (sizeof(CString) + cv.cstr->size + 3) >> 2;\
2629 case TOK_CLDOUBLE: \
2630 LDOUBLE_GET(p, cv); \
2631 p += LDOUBLE_SIZE / 4; \
2638 /* defines handling */
2639 static inline void define_push(int v
, int macro_type
, int *str
, Sym
*first_arg
)
2643 s
= sym_push2(&define_stack
, v
, macro_type
, (long)str
);
2644 s
->next
= first_arg
;
2645 table_ident
[v
- TOK_IDENT
]->sym_define
= s
;
2648 /* undefined a define symbol. Its name is just set to zero */
2649 static void define_undef(Sym
*s
)
2653 if (v
>= TOK_IDENT
&& v
< tok_ident
)
2654 table_ident
[v
- TOK_IDENT
]->sym_define
= NULL
;
2658 static inline Sym
*define_find(int v
)
2661 if ((unsigned)v
>= (unsigned)(tok_ident
- TOK_IDENT
))
2663 return table_ident
[v
]->sym_define
;
2666 /* free define stack until top reaches 'b' */
2667 static void free_defines(Sym
*b
)
2675 /* do not free args or predefined defines */
2677 tok_str_free((int *)top
->c
);
2679 if (v
>= TOK_IDENT
&& v
< tok_ident
)
2680 table_ident
[v
- TOK_IDENT
]->sym_define
= NULL
;
2688 static Sym
*label_find(int v
)
2691 if ((unsigned)v
>= (unsigned)(tok_ident
- TOK_IDENT
))
2693 return table_ident
[v
]->sym_label
;
2696 static Sym
*label_push(Sym
**ptop
, int v
, int flags
)
2699 s
= sym_push2(ptop
, v
, 0, 0);
2701 ps
= &table_ident
[v
- TOK_IDENT
]->sym_label
;
2702 if (ptop
== &global_label_stack
) {
2703 /* modify the top most local identifier, so that
2704 sym_identifier will point to 's' when popped */
2706 ps
= &(*ps
)->prev_tok
;
2713 /* pop labels until element last is reached. Look if any labels are
2714 undefined. Define symbols if '&&label' was used. */
2715 static void label_pop(Sym
**ptop
, Sym
*slast
)
2718 for(s
= *ptop
; s
!= slast
; s
= s1
) {
2720 if (s
->r
== LABEL_DECLARED
) {
2721 warning("label '%s' declared but not used", get_tok_str(s
->v
, NULL
));
2722 } else if (s
->r
== LABEL_FORWARD
) {
2723 error("label '%s' used but not defined",
2724 get_tok_str(s
->v
, NULL
));
2727 /* define corresponding symbol. A size of
2729 put_extern_sym(s
, cur_text_section
, (long)s
->next
, 1);
2733 table_ident
[s
->v
- TOK_IDENT
]->sym_label
= s
->prev_tok
;
2739 /* eval an expression for #if/#elif */
2740 static int expr_preprocess(void)
2746 while (tok
!= TOK_LINEFEED
&& tok
!= TOK_EOF
) {
2747 next(); /* do macro subst */
2748 if (tok
== TOK_DEFINED
) {
2753 c
= define_find(tok
) != 0;
2758 } else if (tok
>= TOK_IDENT
) {
2759 /* if undefined macro */
2763 tok_str_add_tok(&str
);
2765 tok_str_add(&str
, -1); /* simulate end of file */
2766 tok_str_add(&str
, 0);
2767 /* now evaluate C constant expression */
2768 macro_ptr
= str
.str
;
2772 tok_str_free(str
.str
);
2776 #if defined(PARSE_DEBUG) || defined(PP_DEBUG)
2777 static void tok_print(int *str
)
2783 TOK_GET(t
, str
, cval
);
2786 printf(" %s", get_tok_str(t
, &cval
));
2792 /* parse after #define */
2793 static void parse_define(void)
2795 Sym
*s
, *first
, **ps
;
2796 int v
, t
, varg
, is_vaargs
, c
;
2801 error("invalid macro name '%s'", get_tok_str(tok
, &tokc
));
2802 /* XXX: should check if same macro (ANSI) */
2805 /* '(' must be just after macro definition for MACRO_FUNC */
2806 c
= file
->buf_ptr
[0];
2808 c
= handle_stray1(file
->buf_ptr
);
2813 while (tok
!= ')') {
2817 if (varg
== TOK_DOTS
) {
2818 varg
= TOK___VA_ARGS__
;
2820 } else if (tok
== TOK_DOTS
&& gnu_ext
) {
2824 if (varg
< TOK_IDENT
)
2825 error("badly punctuated parameter list");
2826 s
= sym_push2(&define_stack
, varg
| SYM_FIELD
, is_vaargs
, 0);
2837 /* EOF testing necessary for '-D' handling */
2838 while (tok
!= TOK_LINEFEED
&& tok
!= TOK_EOF
) {
2839 tok_str_add2(&str
, tok
, &tokc
);
2842 tok_str_add(&str
, 0);
2844 printf("define %s %d: ", get_tok_str(v
, NULL
), t
);
2847 define_push(v
, t
, str
.str
, first
);
2850 static inline int hash_cached_include(int type
, const char *filename
)
2852 const unsigned char *s
;
2856 h
= TOK_HASH_FUNC(h
, type
);
2859 h
= TOK_HASH_FUNC(h
, *s
);
2862 h
&= (CACHED_INCLUDES_HASH_SIZE
- 1);
2866 /* XXX: use a token or a hash table to accelerate matching ? */
2867 static CachedInclude
*search_cached_include(TCCState
*s1
,
2868 int type
, const char *filename
)
2872 h
= hash_cached_include(type
, filename
);
2873 i
= s1
->cached_includes_hash
[h
];
2877 e
= s1
->cached_includes
[i
- 1];
2878 if (e
->type
== type
&& !strcmp(e
->filename
, filename
))
2885 static inline void add_cached_include(TCCState
*s1
, int type
,
2886 const char *filename
, int ifndef_macro
)
2891 if (search_cached_include(s1
, type
, filename
))
2894 printf("adding cached '%s' %s\n", filename
, get_tok_str(ifndef_macro
, NULL
));
2896 e
= tcc_malloc(sizeof(CachedInclude
) + strlen(filename
));
2900 strcpy(e
->filename
, filename
);
2901 e
->ifndef_macro
= ifndef_macro
;
2902 dynarray_add((void ***)&s1
->cached_includes
, &s1
->nb_cached_includes
, e
);
2903 /* add in hash table */
2904 h
= hash_cached_include(type
, filename
);
2905 e
->hash_next
= s1
->cached_includes_hash
[h
];
2906 s1
->cached_includes_hash
[h
] = s1
->nb_cached_includes
;
2909 static void pragma_parse(TCCState
*s1
)
2914 if (tok
== TOK_pack
) {
2917 #pragma pack(1) // set
2918 #pragma pack() // reset to default
2919 #pragma pack(push,1) // push & set
2920 #pragma pack(pop) // restore previous
2924 if (tok
== TOK_ASM_pop
) {
2926 if (s1
->pack_stack_ptr
<= s1
->pack_stack
) {
2928 error("out of pack stack");
2930 s1
->pack_stack_ptr
--;
2934 if (tok
== TOK_ASM_push
) {
2936 if (s1
->pack_stack_ptr
>= s1
->pack_stack
+ PACK_STACK_SIZE
- 1)
2938 s1
->pack_stack_ptr
++;
2941 if (tok
!= TOK_CINT
) {
2943 error("invalid pack pragma");
2946 if (val
< 1 || val
> 16 || (val
& (val
- 1)) != 0)
2950 *s1
->pack_stack_ptr
= val
;
2956 /* is_bof is true if first non space token at beginning of file */
2957 static void preprocess(int is_bof
)
2959 TCCState
*s1
= tcc_state
;
2960 int size
, i
, c
, n
, saved_parse_flags
;
2967 saved_parse_flags
= parse_flags
;
2968 parse_flags
= PARSE_FLAG_PREPROCESS
| PARSE_FLAG_TOK_NUM
|
2969 PARSE_FLAG_LINEFEED
;
2979 s
= define_find(tok
);
2980 /* undefine symbol by putting an invalid name */
2985 case TOK_INCLUDE_NEXT
:
2986 ch
= file
->buf_ptr
[0];
2987 /* XXX: incorrect if comments : use next_nomacro with a special mode */
2992 } else if (ch
== '\"') {
2997 while (ch
!= c
&& ch
!= '\n' && ch
!= CH_EOF
) {
2998 if ((q
- buf
) < sizeof(buf
) - 1)
3001 if (handle_stray_noerror() == 0)
3009 /* eat all spaces and comments after include */
3010 /* XXX: slightly incorrect */
3011 while (ch1
!= '\n' && ch1
!= CH_EOF
)
3015 /* computed #include : either we have only strings or
3016 we have anything enclosed in '<>' */
3019 if (tok
== TOK_STR
) {
3020 while (tok
!= TOK_LINEFEED
) {
3021 if (tok
!= TOK_STR
) {
3023 error("'#include' expects \"FILENAME\" or <FILENAME>");
3025 pstrcat(buf
, sizeof(buf
), (char *)tokc
.cstr
->data
);
3031 while (tok
!= TOK_LINEFEED
) {
3032 pstrcat(buf
, sizeof(buf
), get_tok_str(tok
, &tokc
));
3036 /* check syntax and remove '<>' */
3037 if (len
< 2 || buf
[0] != '<' || buf
[len
- 1] != '>')
3038 goto include_syntax
;
3039 memmove(buf
, buf
+ 1, len
- 2);
3040 buf
[len
- 2] = '\0';
3045 e
= search_cached_include(s1
, c
, buf
);
3046 if (e
&& define_find(e
->ifndef_macro
)) {
3047 /* no need to parse the include because the 'ifndef macro'
3050 printf("%s: skipping %s\n", file
->filename
, buf
);
3053 if (s1
->include_stack_ptr
>= s1
->include_stack
+ INCLUDE_STACK_SIZE
)
3054 error("#include recursion too deep");
3055 /* push current file in stack */
3056 /* XXX: fix current line init */
3057 *s1
->include_stack_ptr
++ = file
;
3059 /* first search in current dir if "header.h" */
3060 size
= tcc_basename(file
->filename
) - file
->filename
;
3061 if (size
> sizeof(buf1
) - 1)
3062 size
= sizeof(buf1
) - 1;
3063 memcpy(buf1
, file
->filename
, size
);
3065 pstrcat(buf1
, sizeof(buf1
), buf
);
3066 f
= tcc_open(s1
, buf1
);
3068 if (tok
== TOK_INCLUDE_NEXT
)
3074 /* now search in all the include paths */
3075 n
= s1
->nb_include_paths
+ s1
->nb_sysinclude_paths
;
3076 for(i
= 0; i
< n
; i
++) {
3078 if (i
< s1
->nb_include_paths
)
3079 path
= s1
->include_paths
[i
];
3081 path
= s1
->sysinclude_paths
[i
- s1
->nb_include_paths
];
3082 pstrcpy(buf1
, sizeof(buf1
), path
);
3083 pstrcat(buf1
, sizeof(buf1
), "/");
3084 pstrcat(buf1
, sizeof(buf1
), buf
);
3085 f
= tcc_open(s1
, buf1
);
3087 if (tok
== TOK_INCLUDE_NEXT
)
3093 --s1
->include_stack_ptr
;
3094 error("include file '%s' not found", buf
);
3098 printf("%s: including %s\n", file
->filename
, buf1
);
3101 pstrcpy(f
->inc_filename
, sizeof(f
->inc_filename
), buf
);
3103 /* add include file debug info */
3105 put_stabs(file
->filename
, N_BINCL
, 0, 0, 0);
3107 tok_flags
|= TOK_FLAG_BOF
| TOK_FLAG_BOL
;
3108 ch
= file
->buf_ptr
[0];
3116 c
= expr_preprocess();
3122 if (tok
< TOK_IDENT
)
3123 error("invalid argument for '#if%sdef'", c
? "n" : "");
3127 printf("#ifndef %s\n", get_tok_str(tok
, NULL
));
3129 file
->ifndef_macro
= tok
;
3132 c
= (define_find(tok
) != 0) ^ c
;
3134 if (s1
->ifdef_stack_ptr
>= s1
->ifdef_stack
+ IFDEF_STACK_SIZE
)
3135 error("memory full");
3136 *s1
->ifdef_stack_ptr
++ = c
;
3139 if (s1
->ifdef_stack_ptr
== s1
->ifdef_stack
)
3140 error("#else without matching #if");
3141 if (s1
->ifdef_stack_ptr
[-1] & 2)
3142 error("#else after #else");
3143 c
= (s1
->ifdef_stack_ptr
[-1] ^= 3);
3146 if (s1
->ifdef_stack_ptr
== s1
->ifdef_stack
)
3147 error("#elif without matching #if");
3148 c
= s1
->ifdef_stack_ptr
[-1];
3150 error("#elif after #else");
3151 /* last #if/#elif expression was true: we skip */
3154 c
= expr_preprocess();
3155 s1
->ifdef_stack_ptr
[-1] = c
;
3165 if (s1
->ifdef_stack_ptr
<= file
->ifdef_stack_ptr
)
3166 error("#endif without matching #if");
3167 s1
->ifdef_stack_ptr
--;
3168 /* '#ifndef macro' was at the start of file. Now we check if
3169 an '#endif' is exactly at the end of file */
3170 if (file
->ifndef_macro
&&
3171 s1
->ifdef_stack_ptr
== file
->ifdef_stack_ptr
) {
3172 file
->ifndef_macro_saved
= file
->ifndef_macro
;
3173 /* need to set to zero to avoid false matches if another
3174 #ifndef at middle of file */
3175 file
->ifndef_macro
= 0;
3176 while (tok
!= TOK_LINEFEED
)
3178 tok_flags
|= TOK_FLAG_ENDIF
;
3184 if (tok
!= TOK_CINT
)
3186 file
->line_num
= tokc
.i
- 1; /* the line number will be incremented after */
3188 if (tok
!= TOK_LINEFEED
) {
3191 pstrcpy(file
->filename
, sizeof(file
->filename
),
3192 (char *)tokc
.cstr
->data
);
3198 ch
= file
->buf_ptr
[0];
3201 while (ch
!= '\n' && ch
!= CH_EOF
) {
3202 if ((q
- buf
) < sizeof(buf
) - 1)
3205 if (handle_stray_noerror() == 0)
3212 error("#error %s", buf
);
3214 warning("#warning %s", buf
);
3220 if (tok
== TOK_LINEFEED
|| tok
== '!' || tok
== TOK_CINT
) {
3221 /* '!' is ignored to allow C scripts. numbers are ignored
3222 to emulate cpp behaviour */
3224 if (!(saved_parse_flags
& PARSE_FLAG_ASM_COMMENTS
))
3225 warning("Ignoring unknown preprocessing directive #%s", get_tok_str(tok
, &tokc
));
3229 /* ignore other preprocess commands or #! for C scripts */
3230 while (tok
!= TOK_LINEFEED
)
3233 parse_flags
= saved_parse_flags
;
3236 /* evaluate escape codes in a string. */
3237 static void parse_escape_string(CString
*outstr
, const uint8_t *buf
, int is_long
)
3252 case '0': case '1': case '2': case '3':
3253 case '4': case '5': case '6': case '7':
3254 /* at most three octal digits */
3259 n
= n
* 8 + c
- '0';
3263 n
= n
* 8 + c
- '0';
3268 goto add_char_nonext
;
3276 if (c
>= 'a' && c
<= 'f')
3278 else if (c
>= 'A' && c
<= 'F')
3288 goto add_char_nonext
;
3312 goto invalid_escape
;
3322 if (c
>= '!' && c
<= '~')
3323 warning("unknown escape sequence: \'\\%c\'", c
);
3325 warning("unknown escape sequence: \'\\x%x\'", c
);
3332 cstr_ccat(outstr
, c
);
3334 cstr_wccat(outstr
, c
);
3336 /* add a trailing '\0' */
3338 cstr_ccat(outstr
, '\0');
3340 cstr_wccat(outstr
, '\0');
3343 /* we use 64 bit numbers */
3346 /* bn = (bn << shift) | or_val */
3347 void bn_lshift(unsigned int *bn
, int shift
, int or_val
)
3351 for(i
=0;i
<BN_SIZE
;i
++) {
3353 bn
[i
] = (v
<< shift
) | or_val
;
3354 or_val
= v
>> (32 - shift
);
3358 void bn_zero(unsigned int *bn
)
3361 for(i
=0;i
<BN_SIZE
;i
++) {
3366 /* parse number in null terminated string 'p' and return it in the
3368 void parse_number(const char *p
)
3370 int b
, t
, shift
, frac_bits
, s
, exp_val
, ch
;
3372 unsigned int bn
[BN_SIZE
];
3383 goto float_frac_parse
;
3384 } else if (t
== '0') {
3385 if (ch
== 'x' || ch
== 'X') {
3389 } else if (tcc_ext
&& (ch
== 'b' || ch
== 'B')) {
3395 /* parse all digits. cannot check octal numbers at this stage
3396 because of floating point constants */
3398 if (ch
>= 'a' && ch
<= 'f')
3400 else if (ch
>= 'A' && ch
<= 'F')
3408 if (q
>= token_buf
+ STRING_MAX_SIZE
) {
3410 error("number too long");
3416 ((ch
== 'e' || ch
== 'E') && b
== 10) ||
3417 ((ch
== 'p' || ch
== 'P') && (b
== 16 || b
== 2))) {
3419 /* NOTE: strtox should support that for hexa numbers, but
3420 non ISOC99 libcs do not support it, so we prefer to do
3422 /* hexadecimal or binary floats */
3423 /* XXX: handle overflows */
3435 } else if (t
>= 'a') {
3437 } else if (t
>= 'A') {
3442 bn_lshift(bn
, shift
, t
);
3449 if (t
>= 'a' && t
<= 'f') {
3451 } else if (t
>= 'A' && t
<= 'F') {
3453 } else if (t
>= '0' && t
<= '9') {
3459 error("invalid digit");
3460 bn_lshift(bn
, shift
, t
);
3465 if (ch
!= 'p' && ch
!= 'P')
3472 } else if (ch
== '-') {
3476 if (ch
< '0' || ch
> '9')
3477 expect("exponent digits");
3478 while (ch
>= '0' && ch
<= '9') {
3479 exp_val
= exp_val
* 10 + ch
- '0';
3482 exp_val
= exp_val
* s
;
3484 /* now we can generate the number */
3485 /* XXX: should patch directly float number */
3486 d
= (double)bn
[1] * 4294967296.0 + (double)bn
[0];
3487 d
= ldexp(d
, exp_val
- frac_bits
);
3492 /* float : should handle overflow */
3494 } else if (t
== 'L') {
3497 /* XXX: not large enough */
3498 tokc
.ld
= (long double)d
;
3504 /* decimal floats */
3506 if (q
>= token_buf
+ STRING_MAX_SIZE
)
3511 while (ch
>= '0' && ch
<= '9') {
3512 if (q
>= token_buf
+ STRING_MAX_SIZE
)
3518 if (ch
== 'e' || ch
== 'E') {
3519 if (q
>= token_buf
+ STRING_MAX_SIZE
)
3523 if (ch
== '-' || ch
== '+') {
3524 if (q
>= token_buf
+ STRING_MAX_SIZE
)
3529 if (ch
< '0' || ch
> '9')
3530 expect("exponent digits");
3531 while (ch
>= '0' && ch
<= '9') {
3532 if (q
>= token_buf
+ STRING_MAX_SIZE
)
3544 tokc
.f
= strtof(token_buf
, NULL
);
3545 } else if (t
== 'L') {
3548 tokc
.ld
= strtold(token_buf
, NULL
);
3551 tokc
.d
= strtod(token_buf
, NULL
);
3555 unsigned long long n
, n1
;
3558 /* integer number */
3561 if (b
== 10 && *q
== '0') {
3568 /* no need for checks except for base 10 / 8 errors */
3571 } else if (t
>= 'a') {
3573 } else if (t
>= 'A') {
3578 error("invalid digit");
3582 /* detect overflow */
3583 /* XXX: this test is not reliable */
3585 error("integer constant overflow");
3588 /* XXX: not exactly ANSI compliant */
3589 if ((n
& 0xffffffff00000000LL
) != 0) {
3594 } else if (n
> 0x7fffffff) {
3605 error("three 'l's in integer constant");
3608 if (tok
== TOK_CINT
)
3610 else if (tok
== TOK_CUINT
)
3614 } else if (t
== 'U') {
3616 error("two 'u's in integer constant");
3618 if (tok
== TOK_CINT
)
3620 else if (tok
== TOK_CLLONG
)
3627 if (tok
== TOK_CINT
|| tok
== TOK_CUINT
)
3635 #define PARSE2(c1, tok1, c2, tok2) \
3646 /* return next token without macro substitution */
3647 static inline void next_nomacro1(void)
3667 /* first look if it is in fact an end of buffer */
3668 if (p
>= file
->buf_end
) {
3672 if (p
>= file
->buf_end
)
3685 TCCState
*s1
= tcc_state
;
3686 if ((parse_flags
& PARSE_FLAG_LINEFEED
)
3687 && !(tok_flags
& TOK_FLAG_EOF
)) {
3688 tok_flags
|= TOK_FLAG_EOF
;
3690 goto keep_tok_flags
;
3691 } else if (s1
->include_stack_ptr
== s1
->include_stack
||
3692 !(parse_flags
& PARSE_FLAG_PREPROCESS
)) {
3693 /* no include left : end of file. */
3696 tok_flags
&= ~TOK_FLAG_EOF
;
3697 /* pop include file */
3699 /* test if previous '#endif' was after a #ifdef at
3701 if (tok_flags
& TOK_FLAG_ENDIF
) {
3703 printf("#endif %s\n", get_tok_str(file
->ifndef_macro_saved
, NULL
));
3705 add_cached_include(s1
, file
->inc_type
, file
->inc_filename
,
3706 file
->ifndef_macro_saved
);
3709 /* add end of include file debug info */
3711 put_stabd(N_EINCL
, 0, 0);
3713 /* pop include stack */
3715 s1
->include_stack_ptr
--;
3716 file
= *s1
->include_stack_ptr
;
3725 tok_flags
|= TOK_FLAG_BOL
;
3727 if (0 == (parse_flags
& PARSE_FLAG_LINEFEED
))
3730 goto keep_tok_flags
;
3735 if ((tok_flags
& TOK_FLAG_BOL
) &&
3736 (parse_flags
& PARSE_FLAG_PREPROCESS
)) {
3738 preprocess(tok_flags
& TOK_FLAG_BOF
);
3744 tok
= TOK_TWOSHARPS
;
3746 if (parse_flags
& PARSE_FLAG_ASM_COMMENTS
) {
3747 p
= parse_line_comment(p
- 1);
3756 case 'a': case 'b': case 'c': case 'd':
3757 case 'e': case 'f': case 'g': case 'h':
3758 case 'i': case 'j': case 'k': case 'l':
3759 case 'm': case 'n': case 'o': case 'p':
3760 case 'q': case 'r': case 's': case 't':
3761 case 'u': case 'v': case 'w': case 'x':
3763 case 'A': case 'B': case 'C': case 'D':
3764 case 'E': case 'F': case 'G': case 'H':
3765 case 'I': case 'J': case 'K':
3766 case 'M': case 'N': case 'O': case 'P':
3767 case 'Q': case 'R': case 'S': case 'T':
3768 case 'U': case 'V': case 'W': case 'X':
3774 h
= TOK_HASH_FUNC(h
, c
);
3778 if (!isidnum_table
[c
-CH_EOF
])
3780 h
= TOK_HASH_FUNC(h
, c
);
3787 /* fast case : no stray found, so we have the full token
3788 and we have already hashed it */
3790 h
&= (TOK_HASH_SIZE
- 1);
3791 pts
= &hash_ident
[h
];
3796 if (ts
->len
== len
&& !memcmp(ts
->str
, p1
, len
))
3798 pts
= &(ts
->hash_next
);
3800 ts
= tok_alloc_new(pts
, p1
, len
);
3804 cstr_reset(&tokcstr
);
3807 cstr_ccat(&tokcstr
, *p1
);
3813 while (isidnum_table
[c
-CH_EOF
]) {
3814 cstr_ccat(&tokcstr
, c
);
3817 ts
= tok_alloc(tokcstr
.data
, tokcstr
.size
);
3823 if (t
!= '\\' && t
!= '\'' && t
!= '\"') {
3825 goto parse_ident_fast
;
3828 if (c
== '\'' || c
== '\"') {
3832 cstr_reset(&tokcstr
);
3833 cstr_ccat(&tokcstr
, 'L');
3834 goto parse_ident_slow
;
3838 case '0': case '1': case '2': case '3':
3839 case '4': case '5': case '6': case '7':
3842 cstr_reset(&tokcstr
);
3843 /* after the first digit, accept digits, alpha, '.' or sign if
3844 prefixed by 'eEpP' */
3848 cstr_ccat(&tokcstr
, c
);
3850 if (!(isnum(c
) || isid(c
) || c
== '.' ||
3851 ((c
== '+' || c
== '-') &&
3852 (t
== 'e' || t
== 'E' || t
== 'p' || t
== 'P'))))
3855 /* We add a trailing '\0' to ease parsing */
3856 cstr_ccat(&tokcstr
, '\0');
3857 tokc
.cstr
= &tokcstr
;
3861 /* special dot handling because it can also start a number */
3864 cstr_reset(&tokcstr
);
3865 cstr_ccat(&tokcstr
, '.');
3867 } else if (c
== '.') {
3887 /* parse the string */
3889 p
= parse_pp_string(p
, sep
, &str
);
3890 cstr_ccat(&str
, '\0');
3892 /* eval the escape (should be done as TOK_PPNUM) */
3893 cstr_reset(&tokcstr
);
3894 parse_escape_string(&tokcstr
, str
.data
, is_long
);
3899 /* XXX: make it portable */
3903 char_size
= sizeof(nwchar_t
);
3904 if (tokcstr
.size
<= char_size
)
3905 error("empty character constant");
3906 if (tokcstr
.size
> 2 * char_size
)
3907 warning("multi-character character constant");
3909 tokc
.i
= *(int8_t *)tokcstr
.data
;
3912 tokc
.i
= *(nwchar_t
*)tokcstr
.data
;
3916 tokc
.cstr
= &tokcstr
;
3930 } else if (c
== '<') {
3948 } else if (c
== '>') {
3966 } else if (c
== '=') {
3979 } else if (c
== '=') {
3992 } else if (c
== '=') {
4005 } else if (c
== '=') {
4008 } else if (c
== '>') {
4016 PARSE2('!', '!', '=', TOK_NE
)
4017 PARSE2('=', '=', '=', TOK_EQ
)
4018 PARSE2('*', '*', '=', TOK_A_MUL
)
4019 PARSE2('%', '%', '=', TOK_A_MOD
)
4020 PARSE2('^', '^', '=', TOK_A_XOR
)
4022 /* comments or operator */
4026 p
= parse_comment(p
);
4028 } else if (c
== '/') {
4029 p
= parse_line_comment(p
);
4031 } else if (c
== '=') {
4051 case '$': /* only used in assembler */
4052 case '@': /* dito */
4057 error("unrecognized character \\x%02x", c
);
4063 #if defined(PARSE_DEBUG)
4064 printf("token = %s\n", get_tok_str(tok
, &tokc
));
4068 /* return next token without macro substitution. Can read input from
4070 static void next_nomacro(void)
4076 TOK_GET(tok
, macro_ptr
, tokc
);
4077 if (tok
== TOK_LINENUM
) {
4078 file
->line_num
= tokc
.i
;
4087 /* substitute args in macro_str and return allocated string */
4088 static int *macro_arg_subst(Sym
**nested_list
, int *macro_str
, Sym
*args
)
4090 int *st
, last_tok
, t
, notfirst
;
4099 TOK_GET(t
, macro_str
, cval
);
4104 TOK_GET(t
, macro_str
, cval
);
4107 s
= sym_find2(args
, t
);
4114 cstr_ccat(&cstr
, ' ');
4115 TOK_GET(t
, st
, cval
);
4116 cstr_cat(&cstr
, get_tok_str(t
, &cval
));
4121 cstr_ccat(&cstr
, '\0');
4123 printf("stringize: %s\n", (char *)cstr
.data
);
4127 tok_str_add2(&str
, TOK_STR
, &cval
);
4130 tok_str_add2(&str
, t
, &cval
);
4132 } else if (t
>= TOK_IDENT
) {
4133 s
= sym_find2(args
, t
);
4136 /* if '##' is present before or after, no arg substitution */
4137 if (*macro_str
== TOK_TWOSHARPS
|| last_tok
== TOK_TWOSHARPS
) {
4138 /* special case for var arg macros : ## eats the
4139 ',' if empty VA_ARGS variable. */
4140 /* XXX: test of the ',' is not 100%
4141 reliable. should fix it to avoid security
4143 if (gnu_ext
&& s
->type
.t
&&
4144 last_tok
== TOK_TWOSHARPS
&&
4145 str
.len
>= 2 && str
.str
[str
.len
- 2] == ',') {
4147 /* suppress ',' '##' */
4150 /* suppress '##' and add variable */
4158 TOK_GET(t1
, st
, cval
);
4161 tok_str_add2(&str
, t1
, &cval
);
4165 /* NOTE: the stream cannot be read when macro
4166 substituing an argument */
4167 macro_subst(&str
, nested_list
, st
, NULL
);
4170 tok_str_add(&str
, t
);
4173 tok_str_add2(&str
, t
, &cval
);
4177 tok_str_add(&str
, 0);
4181 static char const ab_month_name
[12][4] =
4183 "Jan", "Feb", "Mar", "Apr", "May", "Jun",
4184 "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"
4187 /* do macro substitution of current token with macro 's' and add
4188 result to (tok_str,tok_len). 'nested_list' is the list of all
4189 macros we got inside to avoid recursing. Return non zero if no
4190 substitution needs to be done */
4191 static int macro_subst_tok(TokenString
*tok_str
,
4192 Sym
**nested_list
, Sym
*s
, struct macro_level
**can_read_stream
)
4194 Sym
*args
, *sa
, *sa1
;
4195 int mstr_allocated
, parlevel
, *mstr
, t
, t1
;
4202 /* if symbol is a macro, prepare substitution */
4203 /* special macros */
4204 if (tok
== TOK___LINE__
) {
4205 snprintf(buf
, sizeof(buf
), "%d", file
->line_num
);
4209 } else if (tok
== TOK___FILE__
) {
4210 cstrval
= file
->filename
;
4212 } else if (tok
== TOK___DATE__
|| tok
== TOK___TIME__
) {
4217 tm
= localtime(&ti
);
4218 if (tok
== TOK___DATE__
) {
4219 snprintf(buf
, sizeof(buf
), "%s %2d %d",
4220 ab_month_name
[tm
->tm_mon
], tm
->tm_mday
, tm
->tm_year
+ 1900);
4222 snprintf(buf
, sizeof(buf
), "%02d:%02d:%02d",
4223 tm
->tm_hour
, tm
->tm_min
, tm
->tm_sec
);
4230 cstr_cat(&cstr
, cstrval
);
4231 cstr_ccat(&cstr
, '\0');
4233 tok_str_add2(tok_str
, t1
, &cval
);
4238 if (s
->type
.t
== MACRO_FUNC
) {
4239 /* NOTE: we do not use next_nomacro to avoid eating the
4240 next token. XXX: find better solution */
4244 if (t
== 0 && can_read_stream
) {
4245 /* end of macro stream: we must look at the token
4246 after in the file */
4247 struct macro_level
*ml
= *can_read_stream
;
4253 *can_read_stream
= ml
-> prev
;
4258 /* XXX: incorrect with comments */
4259 ch
= file
->buf_ptr
[0];
4260 while (is_space(ch
) || ch
== '\n')
4264 if (t
!= '(') /* no macro subst */
4267 /* argument macro */
4272 /* NOTE: empty args are allowed, except if no args */
4274 /* handle '()' case */
4275 if (!args
&& !sa
&& tok
== ')')
4278 error("macro '%s' used with too many args",
4279 get_tok_str(s
->v
, 0));
4282 /* NOTE: non zero sa->t indicates VA_ARGS */
4283 while ((parlevel
> 0 ||
4285 (tok
!= ',' || sa
->type
.t
))) &&
4289 else if (tok
== ')')
4291 if (tok
!= TOK_LINEFEED
)
4292 tok_str_add2(&str
, tok
, &tokc
);
4295 tok_str_add(&str
, 0);
4296 sym_push2(&args
, sa
->v
& ~SYM_FIELD
, sa
->type
.t
, (long)str
.str
);
4299 /* special case for gcc var args: add an empty
4300 var arg argument if it is omitted */
4301 if (sa
&& sa
->type
.t
&& gnu_ext
)
4311 error("macro '%s' used with too few args",
4312 get_tok_str(s
->v
, 0));
4315 /* now subst each arg */
4316 mstr
= macro_arg_subst(nested_list
, mstr
, args
);
4321 tok_str_free((int *)sa
->c
);
4327 sym_push2(nested_list
, s
->v
, 0, 0);
4328 macro_subst(tok_str
, nested_list
, mstr
, can_read_stream
);
4329 /* pop nested defined symbol */
4331 *nested_list
= sa1
->prev
;
4339 /* handle the '##' operator. Return NULL if no '##' seen. Otherwise
4340 return the resulting string (which must be freed). */
4341 static inline int *macro_twosharps(const int *macro_str
)
4344 const int *macro_ptr1
, *start_macro_ptr
, *ptr
, *saved_macro_ptr
;
4346 const char *p1
, *p2
;
4348 TokenString macro_str1
;
4351 start_macro_ptr
= macro_str
;
4352 /* we search the first '##' */
4354 macro_ptr1
= macro_str
;
4355 TOK_GET(t
, macro_str
, cval
);
4356 /* nothing more to do if end of string */
4359 if (*macro_str
== TOK_TWOSHARPS
)
4363 /* we saw '##', so we need more processing to handle it */
4365 tok_str_new(¯o_str1
);
4369 /* add all tokens seen so far */
4370 for(ptr
= start_macro_ptr
; ptr
< macro_ptr1
;) {
4371 TOK_GET(t
, ptr
, cval
);
4372 tok_str_add2(¯o_str1
, t
, &cval
);
4374 saved_macro_ptr
= macro_ptr
;
4375 /* XXX: get rid of the use of macro_ptr here */
4376 macro_ptr
= (int *)macro_str
;
4378 while (*macro_ptr
== TOK_TWOSHARPS
) {
4380 macro_ptr1
= macro_ptr
;
4383 TOK_GET(t
, macro_ptr
, cval
);
4384 /* We concatenate the two tokens if we have an
4385 identifier or a preprocessing number */
4387 p1
= get_tok_str(tok
, &tokc
);
4388 cstr_cat(&cstr
, p1
);
4389 p2
= get_tok_str(t
, &cval
);
4390 cstr_cat(&cstr
, p2
);
4391 cstr_ccat(&cstr
, '\0');
4393 if ((tok
>= TOK_IDENT
|| tok
== TOK_PPNUM
) &&
4394 (t
>= TOK_IDENT
|| t
== TOK_PPNUM
)) {
4395 if (tok
== TOK_PPNUM
) {
4396 /* if number, then create a number token */
4397 /* NOTE: no need to allocate because
4398 tok_str_add2() does it */
4399 cstr_reset(&tokcstr
);
4402 tokc
.cstr
= &tokcstr
;
4404 /* if identifier, we must do a test to
4405 validate we have a correct identifier */
4406 if (t
== TOK_PPNUM
) {
4416 if (!isnum(c
) && !isid(c
))
4420 ts
= tok_alloc(cstr
.data
, strlen(cstr
.data
));
4421 tok
= ts
->tok
; /* modify current token */
4424 const char *str
= cstr
.data
;
4425 const unsigned char *q
;
4427 /* we look for a valid token */
4428 /* XXX: do more extensive checks */
4429 if (!strcmp(str
, ">>=")) {
4431 } else if (!strcmp(str
, "<<=")) {
4433 } else if (strlen(str
) == 2) {
4434 /* search in two bytes table */
4439 if (q
[0] == str
[0] && q
[1] == str
[1])
4446 /* NOTE: because get_tok_str use a static buffer,
4449 p1
= get_tok_str(tok
, &tokc
);
4450 cstr_cat(&cstr
, p1
);
4451 cstr_ccat(&cstr
, '\0');
4452 p2
= get_tok_str(t
, &cval
);
4453 warning("pasting \"%s\" and \"%s\" does not give a valid preprocessing token", cstr
.data
, p2
);
4454 /* cannot merge tokens: just add them separately */
4455 tok_str_add2(¯o_str1
, tok
, &tokc
);
4456 /* XXX: free associated memory ? */
4463 tok_str_add2(¯o_str1
, tok
, &tokc
);
4468 macro_ptr
= (int *)saved_macro_ptr
;
4470 tok_str_add(¯o_str1
, 0);
4471 return macro_str1
.str
;
4475 /* do macro substitution of macro_str and add result to
4476 (tok_str,tok_len). 'nested_list' is the list of all macros we got
4477 inside to avoid recursing. */
4478 static void macro_subst(TokenString
*tok_str
, Sym
**nested_list
,
4479 const int *macro_str
, struct macro_level
** can_read_stream
)
4486 struct macro_level ml
;
4488 /* first scan for '##' operator handling */
4490 macro_str1
= macro_twosharps(ptr
);
4494 /* NOTE: ptr == NULL can only happen if tokens are read from
4495 file stream due to a macro function call */
4498 TOK_GET(t
, ptr
, cval
);
4503 /* if nested substitution, do nothing */
4504 if (sym_find2(*nested_list
, t
))
4507 if (can_read_stream
)
4508 ml
.prev
= *can_read_stream
, *can_read_stream
= &ml
;
4509 macro_ptr
= (int *)ptr
;
4511 ret
= macro_subst_tok(tok_str
, nested_list
, s
, can_read_stream
);
4512 ptr
= (int *)macro_ptr
;
4514 if (can_read_stream
&& *can_read_stream
== &ml
)
4515 *can_read_stream
= ml
.prev
;
4520 tok_str_add2(tok_str
, t
, &cval
);
4524 tok_str_free(macro_str1
);
4527 /* return next token with macro substitution */
4528 static void next(void)
4530 Sym
*nested_list
, *s
;
4532 struct macro_level
*ml
;
4537 /* if not reading from macro substituted string, then try
4538 to substitute macros */
4539 if (tok
>= TOK_IDENT
&&
4540 (parse_flags
& PARSE_FLAG_PREPROCESS
)) {
4541 s
= define_find(tok
);
4543 /* we have a macro: we try to substitute */
4547 if (macro_subst_tok(&str
, &nested_list
, s
, &ml
) == 0) {
4548 /* substitution done, NOTE: maybe empty */
4549 tok_str_add(&str
, 0);
4550 macro_ptr
= str
.str
;
4551 macro_ptr_allocated
= str
.str
;
4558 /* end of macro or end of unget buffer */
4559 if (unget_buffer_enabled
) {
4560 macro_ptr
= unget_saved_macro_ptr
;
4561 unget_buffer_enabled
= 0;
4563 /* end of macro string: free it */
4564 tok_str_free(macro_ptr_allocated
);
4571 /* convert preprocessor tokens into C tokens */
4572 if (tok
== TOK_PPNUM
&&
4573 (parse_flags
& PARSE_FLAG_TOK_NUM
)) {
4574 parse_number((char *)tokc
.cstr
->data
);
4578 /* push back current token and set current token to 'last_tok'. Only
4579 identifier case handled for labels. */
4580 static inline void unget_tok(int last_tok
)
4584 unget_saved_macro_ptr
= macro_ptr
;
4585 unget_buffer_enabled
= 1;
4586 q
= unget_saved_buffer
;
4589 n
= tok_ext_size(tok
) - 1;
4592 *q
= 0; /* end of token string */
4597 void swap(int *p
, int *q
)
4605 void vsetc(CType
*type
, int r
, CValue
*vc
)
4609 if (vtop
>= vstack
+ (VSTACK_SIZE
- 1))
4610 error("memory full");
4611 /* cannot let cpu flags if other instruction are generated. Also
4612 avoid leaving VT_JMP anywhere except on the top of the stack
4613 because it would complicate the code generator. */
4614 if (vtop
>= vstack
) {
4615 v
= vtop
->r
& VT_VALMASK
;
4616 if (v
== VT_CMP
|| (v
& ~1) == VT_JMP
)
4622 vtop
->r2
= VT_CONST
;
4626 /* push integer constant */
4631 vsetc(&int_type
, VT_CONST
, &cval
);
4634 /* Return a static symbol pointing to a section */
4635 static Sym
*get_sym_ref(CType
*type
, Section
*sec
,
4636 unsigned long offset
, unsigned long size
)
4642 sym
= global_identifier_push(v
, type
->t
| VT_STATIC
, 0);
4643 sym
->type
.ref
= type
->ref
;
4644 sym
->r
= VT_CONST
| VT_SYM
;
4645 put_extern_sym(sym
, sec
, offset
, size
);
4649 /* push a reference to a section offset by adding a dummy symbol */
4650 static void vpush_ref(CType
*type
, Section
*sec
, unsigned long offset
, unsigned long size
)
4655 vsetc(type
, VT_CONST
| VT_SYM
, &cval
);
4656 vtop
->sym
= get_sym_ref(type
, sec
, offset
, size
);
4659 /* define a new external reference to a symbol 'v' of type 'u' */
4660 static Sym
*external_global_sym(int v
, CType
*type
, int r
)
4666 /* push forward reference */
4667 s
= global_identifier_push(v
, type
->t
| VT_EXTERN
, 0);
4668 s
->type
.ref
= type
->ref
;
4669 s
->r
= r
| VT_CONST
| VT_SYM
;
4674 /* define a new external reference to a symbol 'v' of type 'u' */
4675 static Sym
*external_sym(int v
, CType
*type
, int r
)
4681 /* push forward reference */
4682 s
= sym_push(v
, type
, r
| VT_CONST
| VT_SYM
, 0);
4683 s
->type
.t
|= VT_EXTERN
;
4685 if (!is_compatible_types(&s
->type
, type
))
4686 error("incompatible types for redefinition of '%s'",
4687 get_tok_str(v
, NULL
));
4692 /* push a reference to global symbol v */
4693 static void vpush_global_sym(CType
*type
, int v
)
4698 sym
= external_global_sym(v
, type
, 0);
4700 vsetc(type
, VT_CONST
| VT_SYM
, &cval
);
4704 void vset(CType
*type
, int r
, int v
)
4709 vsetc(type
, r
, &cval
);
4712 void vseti(int r
, int v
)
4728 void vpushv(SValue
*v
)
4730 if (vtop
>= vstack
+ (VSTACK_SIZE
- 1))
4731 error("memory full");
4741 /* save r to the memory stack, and mark it as being free */
4742 void save_reg(int r
)
4744 int l
, saved
, size
, align
;
4748 /* modify all stack values */
4751 for(p
=vstack
;p
<=vtop
;p
++) {
4752 if ((p
->r
& VT_VALMASK
) == r
||
4753 ((p
->type
.t
& VT_BTYPE
) == VT_LLONG
&& (p
->r2
& VT_VALMASK
) == r
)) {
4754 /* must save value on stack if not already done */
4756 /* NOTE: must reload 'r' because r might be equal to r2 */
4757 r
= p
->r
& VT_VALMASK
;
4758 /* store register in the stack */
4760 if ((p
->r
& VT_LVAL
) ||
4761 (!is_float(type
->t
) && (type
->t
& VT_BTYPE
) != VT_LLONG
))
4763 size
= type_size(type
, &align
);
4764 loc
= (loc
- size
) & -align
;
4765 sv
.type
.t
= type
->t
;
4766 sv
.r
= VT_LOCAL
| VT_LVAL
;
4769 #ifdef TCC_TARGET_I386
4770 /* x86 specific: need to pop fp register ST0 if saved */
4771 if (r
== TREG_ST0
) {
4772 o(0xd9dd); /* fstp %st(1) */
4775 /* special long long case */
4776 if ((type
->t
& VT_BTYPE
) == VT_LLONG
) {
4783 /* mark that stack entry as being saved on the stack */
4784 if (p
->r
& VT_LVAL
) {
4785 /* also clear the bounded flag because the
4786 relocation address of the function was stored in
4788 p
->r
= (p
->r
& ~(VT_VALMASK
| VT_BOUNDED
)) | VT_LLOCAL
;
4790 p
->r
= lvalue_type(p
->type
.t
) | VT_LOCAL
;
4798 /* find a register of class 'rc2' with at most one reference on stack.
4799 * If none, call get_reg(rc) */
4800 int get_reg_ex(int rc
, int rc2
)
4805 for(r
=0;r
<NB_REGS
;r
++) {
4806 if (reg_classes
[r
] & rc2
) {
4809 for(p
= vstack
; p
<= vtop
; p
++) {
4810 if ((p
->r
& VT_VALMASK
) == r
||
4811 (p
->r2
& VT_VALMASK
) == r
)
4821 /* find a free register of class 'rc'. If none, save one register */
4827 /* find a free register */
4828 for(r
=0;r
<NB_REGS
;r
++) {
4829 if (reg_classes
[r
] & rc
) {
4830 for(p
=vstack
;p
<=vtop
;p
++) {
4831 if ((p
->r
& VT_VALMASK
) == r
||
4832 (p
->r2
& VT_VALMASK
) == r
)
4840 /* no register left : free the first one on the stack (VERY
4841 IMPORTANT to start from the bottom to ensure that we don't
4842 spill registers used in gen_opi()) */
4843 for(p
=vstack
;p
<=vtop
;p
++) {
4844 r
= p
->r
& VT_VALMASK
;
4845 if (r
< VT_CONST
&& (reg_classes
[r
] & rc
))
4847 /* also look at second register (if long long) */
4848 r
= p
->r2
& VT_VALMASK
;
4849 if (r
< VT_CONST
&& (reg_classes
[r
] & rc
)) {
4855 /* Should never comes here */
4859 /* save registers up to (vtop - n) stack entry */
4860 void save_regs(int n
)
4865 for(p
= vstack
;p
<= p1
; p
++) {
4866 r
= p
->r
& VT_VALMASK
;
4873 /* move register 's' to 'r', and flush previous value of r to memory
4875 void move_reg(int r
, int s
)
4888 /* get address of vtop (vtop MUST BE an lvalue) */
4891 vtop
->r
&= ~VT_LVAL
;
4892 /* tricky: if saved lvalue, then we can go back to lvalue */
4893 if ((vtop
->r
& VT_VALMASK
) == VT_LLOCAL
)
4894 vtop
->r
= (vtop
->r
& ~(VT_VALMASK
| VT_LVAL_TYPE
)) | VT_LOCAL
| VT_LVAL
;
4897 #ifdef CONFIG_TCC_BCHECK
4898 /* generate lvalue bound code */
4904 vtop
->r
&= ~VT_MUSTBOUND
;
4905 /* if lvalue, then use checking code before dereferencing */
4906 if (vtop
->r
& VT_LVAL
) {
4907 /* if not VT_BOUNDED value, then make one */
4908 if (!(vtop
->r
& VT_BOUNDED
)) {
4909 lval_type
= vtop
->r
& (VT_LVAL_TYPE
| VT_LVAL
);
4910 /* must save type because we must set it to int to get pointer */
4912 vtop
->type
.t
= VT_INT
;
4915 gen_bounded_ptr_add();
4916 vtop
->r
|= lval_type
;
4919 /* then check for dereferencing */
4920 gen_bounded_ptr_deref();
4925 /* store vtop a register belonging to class 'rc'. lvalues are
4926 converted to values. Cannot be used if cannot be converted to
4927 register value (such as structures). */
4930 int r
, r2
, rc2
, bit_pos
, bit_size
, size
, align
, i
;
4931 unsigned long long ll
;
4933 /* NOTE: get_reg can modify vstack[] */
4934 if (vtop
->type
.t
& VT_BITFIELD
) {
4936 bit_pos
= (vtop
->type
.t
>> VT_STRUCT_SHIFT
) & 0x3f;
4937 bit_size
= (vtop
->type
.t
>> (VT_STRUCT_SHIFT
+ 6)) & 0x3f;
4938 /* remove bit field info to avoid loops */
4939 vtop
->type
.t
&= ~(VT_BITFIELD
| (-1 << VT_STRUCT_SHIFT
));
4940 /* cast to int to propagate signedness in following ops */
4942 if((vtop
->type
.t
& VT_UNSIGNED
) ||
4943 (vtop
->type
.t
& VT_BTYPE
) == VT_BOOL
)
4944 type
.t
|= VT_UNSIGNED
;
4946 /* generate shifts */
4947 vpushi(32 - (bit_pos
+ bit_size
));
4949 vpushi(32 - bit_size
);
4950 /* NOTE: transformed to SHR if unsigned */
4954 if (is_float(vtop
->type
.t
) &&
4955 (vtop
->r
& (VT_VALMASK
| VT_LVAL
)) == VT_CONST
) {
4958 unsigned long offset
;
4959 #if defined(TCC_TARGET_ARM) && !defined(TCC_ARM_VFP)
4963 /* XXX: unify with initializers handling ? */
4964 /* CPUs usually cannot use float constants, so we store them
4965 generically in data segment */
4966 size
= type_size(&vtop
->type
, &align
);
4967 offset
= (data_section
->data_offset
+ align
- 1) & -align
;
4968 data_section
->data_offset
= offset
;
4969 /* XXX: not portable yet */
4971 /* Zero pad x87 tenbyte long doubles */
4973 vtop
->c
.tab
[2] &= 0xffff;
4975 ptr
= section_ptr_add(data_section
, size
);
4977 #if defined(TCC_TARGET_ARM) && !defined(TCC_ARM_VFP)
4981 ptr
[i
] = vtop
->c
.tab
[size
-1-i
];
4985 ptr
[i
] = vtop
->c
.tab
[i
];
4986 sym
= get_sym_ref(&vtop
->type
, data_section
, offset
, size
<< 2);
4987 vtop
->r
|= VT_LVAL
| VT_SYM
;
4991 #ifdef CONFIG_TCC_BCHECK
4992 if (vtop
->r
& VT_MUSTBOUND
)
4996 r
= vtop
->r
& VT_VALMASK
;
5000 /* need to reload if:
5002 - lvalue (need to dereference pointer)
5003 - already a register, but not in the right class */
5004 if (r
>= VT_CONST
||
5005 (vtop
->r
& VT_LVAL
) ||
5006 !(reg_classes
[r
] & rc
) ||
5007 ((vtop
->type
.t
& VT_BTYPE
) == VT_LLONG
&&
5008 !(reg_classes
[vtop
->r2
] & rc2
))) {
5010 if ((vtop
->type
.t
& VT_BTYPE
) == VT_LLONG
) {
5011 /* two register type load : expand to two words
5013 if ((vtop
->r
& (VT_VALMASK
| VT_LVAL
)) == VT_CONST
) {
5016 vtop
->c
.ui
= ll
; /* first word */
5018 vtop
->r
= r
; /* save register value */
5019 vpushi(ll
>> 32); /* second word */
5020 } else if (r
>= VT_CONST
|| /* XXX: test to VT_CONST incorrect ? */
5021 (vtop
->r
& VT_LVAL
)) {
5022 /* We do not want to modifier the long long
5023 pointer here, so the safest (and less
5024 efficient) is to save all the other registers
5025 in the stack. XXX: totally inefficient. */
5027 /* load from memory */
5030 vtop
[-1].r
= r
; /* save register value */
5031 /* increment pointer to get second word */
5032 vtop
->type
.t
= VT_INT
;
5038 /* move registers */
5041 vtop
[-1].r
= r
; /* save register value */
5042 vtop
->r
= vtop
[-1].r2
;
5044 /* allocate second register */
5048 /* write second register */
5050 } else if ((vtop
->r
& VT_LVAL
) && !is_float(vtop
->type
.t
)) {
5052 /* lvalue of scalar type : need to use lvalue type
5053 because of possible cast */
5056 /* compute memory access type */
5057 if (vtop
->r
& VT_LVAL_BYTE
)
5059 else if (vtop
->r
& VT_LVAL_SHORT
)
5061 if (vtop
->r
& VT_LVAL_UNSIGNED
)
5065 /* restore wanted type */
5068 /* one register type load */
5073 #ifdef TCC_TARGET_C67
5074 /* uses register pairs for doubles */
5075 if ((vtop
->type
.t
& VT_BTYPE
) == VT_DOUBLE
)
5082 /* generate vtop[-1] and vtop[0] in resp. classes rc1 and rc2 */
5083 void gv2(int rc1
, int rc2
)
5087 /* generate more generic register first. But VT_JMP or VT_CMP
5088 values must be generated first in all cases to avoid possible
5090 v
= vtop
[0].r
& VT_VALMASK
;
5091 if (v
!= VT_CMP
&& (v
& ~1) != VT_JMP
&& rc1
<= rc2
) {
5096 /* test if reload is needed for first register */
5097 if ((vtop
[-1].r
& VT_VALMASK
) >= VT_CONST
) {
5107 /* test if reload is needed for first register */
5108 if ((vtop
[0].r
& VT_VALMASK
) >= VT_CONST
) {
5114 /* expand long long on stack in two int registers */
5119 u
= vtop
->type
.t
& VT_UNSIGNED
;
5122 vtop
[0].r
= vtop
[-1].r2
;
5123 vtop
[0].r2
= VT_CONST
;
5124 vtop
[-1].r2
= VT_CONST
;
5125 vtop
[0].type
.t
= VT_INT
| u
;
5126 vtop
[-1].type
.t
= VT_INT
| u
;
5129 #ifdef TCC_TARGET_ARM
5130 /* expand long long on stack */
5131 void lexpand_nr(void)
5135 u
= vtop
->type
.t
& VT_UNSIGNED
;
5137 vtop
->r2
= VT_CONST
;
5138 vtop
->type
.t
= VT_INT
| u
;
5139 v
=vtop
[-1].r
& (VT_VALMASK
| VT_LVAL
);
5140 if (v
== VT_CONST
) {
5141 vtop
[-1].c
.ui
= vtop
->c
.ull
;
5142 vtop
->c
.ui
= vtop
->c
.ull
>> 32;
5144 } else if (v
== (VT_LVAL
|VT_CONST
) || v
== (VT_LVAL
|VT_LOCAL
)) {
5146 vtop
->r
= vtop
[-1].r
;
5147 } else if (v
> VT_CONST
) {
5151 vtop
->r
= vtop
[-1].r2
;
5152 vtop
[-1].r2
= VT_CONST
;
5153 vtop
[-1].type
.t
= VT_INT
| u
;
5157 /* build a long long from two ints */
5160 gv2(RC_INT
, RC_INT
);
5161 vtop
[-1].r2
= vtop
[0].r
;
5162 vtop
[-1].type
.t
= t
;
5166 /* rotate n first stack elements to the bottom
5167 I1 ... In -> I2 ... In I1 [top is right]
5175 for(i
=-n
+1;i
!=0;i
++)
5176 vtop
[i
] = vtop
[i
+1];
5180 /* rotate n first stack elements to the top
5181 I1 ... In -> In I1 ... I(n-1) [top is right]
5189 for(i
= 0;i
< n
- 1; i
++)
5190 vtop
[-i
] = vtop
[-i
- 1];
5194 #ifdef TCC_TARGET_ARM
5195 /* like vrott but in other direction
5196 In ... I1 -> I(n-1) ... I1 In [top is right]
5204 for(i
= n
- 1; i
> 0; i
--)
5205 vtop
[-i
] = vtop
[-i
+ 1];
5210 /* pop stack value */
5214 v
= vtop
->r
& VT_VALMASK
;
5215 #ifdef TCC_TARGET_I386
5216 /* for x86, we need to pop the FP stack */
5217 if (v
== TREG_ST0
&& !nocode_wanted
) {
5218 o(0xd9dd); /* fstp %st(1) */
5221 if (v
== VT_JMP
|| v
== VT_JMPI
) {
5222 /* need to put correct jump if && or || without test */
5228 /* convert stack entry to register and duplicate its value in another
5236 if ((t
& VT_BTYPE
) == VT_LLONG
) {
5243 /* stack: H L L1 H1 */
5251 /* duplicate value */
5262 load(r1
, &sv
); /* move r to r1 */
5264 /* duplicates value */
5269 /* generate CPU independent (unsigned) long long operations */
5270 void gen_opl(int op
)
5272 int t
, a
, b
, op1
, c
, i
;
5274 unsigned short reg_iret
= REG_IRET
;
5275 unsigned short reg_lret
= REG_LRET
;
5281 func
= TOK___divdi3
;
5284 func
= TOK___udivdi3
;
5287 func
= TOK___moddi3
;
5290 func
= TOK___umoddi3
;
5297 /* call generic long long function */
5298 vpush_global_sym(&func_old_type
, func
);
5303 vtop
->r2
= reg_lret
;
5316 /* stack: L1 H1 L2 H2 */
5321 vtop
[-2] = vtop
[-3];
5324 /* stack: H1 H2 L1 L2 */
5330 /* stack: H1 H2 L1 L2 ML MH */
5333 /* stack: ML MH H1 H2 L1 L2 */
5337 /* stack: ML MH H1 L2 H2 L1 */
5342 /* stack: ML MH M1 M2 */
5345 } else if (op
== '+' || op
== '-') {
5346 /* XXX: add non carry method too (for MIPS or alpha) */
5352 /* stack: H1 H2 (L1 op L2) */
5355 gen_op(op1
+ 1); /* TOK_xxxC2 */
5358 /* stack: H1 H2 (L1 op L2) */
5361 /* stack: (L1 op L2) H1 H2 */
5363 /* stack: (L1 op L2) (H1 op H2) */
5371 if ((vtop
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) == VT_CONST
) {
5372 t
= vtop
[-1].type
.t
;
5376 /* stack: L H shift */
5378 /* constant: simpler */
5379 /* NOTE: all comments are for SHL. the other cases are
5380 done by swaping words */
5391 if (op
!= TOK_SAR
) {
5424 /* XXX: should provide a faster fallback on x86 ? */
5427 func
= TOK___ashrdi3
;
5430 func
= TOK___lshrdi3
;
5433 func
= TOK___ashldi3
;
5439 /* compare operations */
5445 /* stack: L1 H1 L2 H2 */
5447 vtop
[-1] = vtop
[-2];
5449 /* stack: L1 L2 H1 H2 */
5452 /* when values are equal, we need to compare low words. since
5453 the jump is inverted, we invert the test too. */
5456 else if (op1
== TOK_GT
)
5458 else if (op1
== TOK_ULT
)
5460 else if (op1
== TOK_UGT
)
5465 if (op1
!= TOK_NE
) {
5469 /* generate non equal test */
5470 /* XXX: NOT PORTABLE yet */
5474 #if defined(TCC_TARGET_I386)
5475 b
= psym(0x850f, 0);
5476 #elif defined(TCC_TARGET_ARM)
5478 o(0x1A000000 | encbranch(ind
, 0, 1));
5479 #elif defined(TCC_TARGET_C67)
5480 error("not implemented");
5482 #error not supported
5486 /* compare low. Always unsigned */
5490 else if (op1
== TOK_LE
)
5492 else if (op1
== TOK_GT
)
5494 else if (op1
== TOK_GE
)
5504 /* handle integer constant optimizations and various machine
5506 void gen_opic(int op
)
5508 int c1
, c2
, t1
, t2
, n
;
5511 typedef unsigned long long U
;
5515 t1
= v1
->type
.t
& VT_BTYPE
;
5516 t2
= v2
->type
.t
& VT_BTYPE
;
5517 l1
= (t1
== VT_LLONG
) ? v1
->c
.ll
: v1
->c
.i
;
5518 l2
= (t2
== VT_LLONG
) ? v2
->c
.ll
: v2
->c
.i
;
5520 /* currently, we cannot do computations with forward symbols */
5521 c1
= (v1
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) == VT_CONST
;
5522 c2
= (v2
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) == VT_CONST
;
5525 case '+': l1
+= l2
; break;
5526 case '-': l1
-= l2
; break;
5527 case '&': l1
&= l2
; break;
5528 case '^': l1
^= l2
; break;
5529 case '|': l1
|= l2
; break;
5530 case '*': l1
*= l2
; break;
5537 /* if division by zero, generate explicit division */
5540 error("division by zero in constant");
5544 default: l1
/= l2
; break;
5545 case '%': l1
%= l2
; break;
5546 case TOK_UDIV
: l1
= (U
)l1
/ l2
; break;
5547 case TOK_UMOD
: l1
= (U
)l1
% l2
; break;
5550 case TOK_SHL
: l1
<<= l2
; break;
5551 case TOK_SHR
: l1
= (U
)l1
>> l2
; break;
5552 case TOK_SAR
: l1
>>= l2
; break;
5554 case TOK_ULT
: l1
= (U
)l1
< (U
)l2
; break;
5555 case TOK_UGE
: l1
= (U
)l1
>= (U
)l2
; break;
5556 case TOK_EQ
: l1
= l1
== l2
; break;
5557 case TOK_NE
: l1
= l1
!= l2
; break;
5558 case TOK_ULE
: l1
= (U
)l1
<= (U
)l2
; break;
5559 case TOK_UGT
: l1
= (U
)l1
> (U
)l2
; break;
5560 case TOK_LT
: l1
= l1
< l2
; break;
5561 case TOK_GE
: l1
= l1
>= l2
; break;
5562 case TOK_LE
: l1
= l1
<= l2
; break;
5563 case TOK_GT
: l1
= l1
> l2
; break;
5565 case TOK_LAND
: l1
= l1
&& l2
; break;
5566 case TOK_LOR
: l1
= l1
|| l2
; break;
5573 /* if commutative ops, put c2 as constant */
5574 if (c1
&& (op
== '+' || op
== '&' || op
== '^' ||
5575 op
== '|' || op
== '*')) {
5577 c2
= c1
; //c = c1, c1 = c2, c2 = c;
5578 l2
= l1
; //l = l1, l1 = l2, l2 = l;
5580 /* Filter out NOP operations like x*1, x-0, x&-1... */
5581 if (c2
&& (((op
== '*' || op
== '/' || op
== TOK_UDIV
||
5584 ((op
== '+' || op
== '-' || op
== '|' || op
== '^' ||
5585 op
== TOK_SHL
|| op
== TOK_SHR
|| op
== TOK_SAR
) &&
5591 } else if (c2
&& (op
== '*' || op
== TOK_PDIV
|| op
== TOK_UDIV
)) {
5592 /* try to use shifts instead of muls or divs */
5593 if (l2
> 0 && (l2
& (l2
- 1)) == 0) {
5602 else if (op
== TOK_PDIV
)
5608 } else if (c2
&& (op
== '+' || op
== '-') &&
5609 ((vtop
[-1].r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) ==
5610 (VT_CONST
| VT_SYM
) ||
5611 (vtop
[-1].r
& (VT_VALMASK
| VT_LVAL
)) == VT_LOCAL
)) {
5612 /* symbol + constant case */
5619 if (!nocode_wanted
) {
5620 /* call low level op generator */
5621 if (t1
== VT_LLONG
|| t2
== VT_LLONG
)
5632 /* generate a floating point operation with constant propagation */
5633 void gen_opif(int op
)
5641 /* currently, we cannot do computations with forward symbols */
5642 c1
= (v1
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) == VT_CONST
;
5643 c2
= (v2
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) == VT_CONST
;
5645 if (v1
->type
.t
== VT_FLOAT
) {
5648 } else if (v1
->type
.t
== VT_DOUBLE
) {
5656 /* NOTE: we only do constant propagation if finite number (not
5657 NaN or infinity) (ANSI spec) */
5658 if (!ieee_finite(f1
) || !ieee_finite(f2
))
5662 case '+': f1
+= f2
; break;
5663 case '-': f1
-= f2
; break;
5664 case '*': f1
*= f2
; break;
5668 error("division by zero in constant");
5673 /* XXX: also handles tests ? */
5677 /* XXX: overflow test ? */
5678 if (v1
->type
.t
== VT_FLOAT
) {
5680 } else if (v1
->type
.t
== VT_DOUBLE
) {
5688 if (!nocode_wanted
) {
5696 static int pointed_size(CType
*type
)
5699 return type_size(pointed_type(type
), &align
);
5702 static inline int is_null_pointer(SValue
*p
)
5704 if ((p
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) != VT_CONST
)
5706 return ((p
->type
.t
& VT_BTYPE
) == VT_INT
&& p
->c
.i
== 0) ||
5707 ((p
->type
.t
& VT_BTYPE
) == VT_LLONG
&& p
->c
.ll
== 0);
5710 static inline int is_integer_btype(int bt
)
5712 return (bt
== VT_BYTE
|| bt
== VT_SHORT
||
5713 bt
== VT_INT
|| bt
== VT_LLONG
);
5716 /* check types for comparison or substraction of pointers */
5717 static void check_comparison_pointer_types(SValue
*p1
, SValue
*p2
, int op
)
5719 CType
*type1
, *type2
, tmp_type1
, tmp_type2
;
5722 /* null pointers are accepted for all comparisons as gcc */
5723 if (is_null_pointer(p1
) || is_null_pointer(p2
))
5727 bt1
= type1
->t
& VT_BTYPE
;
5728 bt2
= type2
->t
& VT_BTYPE
;
5729 /* accept comparison between pointer and integer with a warning */
5730 if ((is_integer_btype(bt1
) || is_integer_btype(bt2
)) && op
!= '-') {
5731 if (op
!= TOK_LOR
&& op
!= TOK_LAND
)
5732 warning("comparison between pointer and integer");
5736 /* both must be pointers or implicit function pointers */
5737 if (bt1
== VT_PTR
) {
5738 type1
= pointed_type(type1
);
5739 } else if (bt1
!= VT_FUNC
)
5740 goto invalid_operands
;
5742 if (bt2
== VT_PTR
) {
5743 type2
= pointed_type(type2
);
5744 } else if (bt2
!= VT_FUNC
) {
5746 error("invalid operands to binary %s", get_tok_str(op
, NULL
));
5748 if ((type1
->t
& VT_BTYPE
) == VT_VOID
||
5749 (type2
->t
& VT_BTYPE
) == VT_VOID
)
5753 tmp_type1
.t
&= ~(VT_UNSIGNED
| VT_CONSTANT
| VT_VOLATILE
);
5754 tmp_type2
.t
&= ~(VT_UNSIGNED
| VT_CONSTANT
| VT_VOLATILE
);
5755 if (!is_compatible_types(&tmp_type1
, &tmp_type2
)) {
5756 /* gcc-like error if '-' is used */
5758 goto invalid_operands
;
5760 warning("comparison of distinct pointer types lacks a cast");
5764 /* generic gen_op: handles types problems */
5767 int u
, t1
, t2
, bt1
, bt2
, t
;
5770 t1
= vtop
[-1].type
.t
;
5771 t2
= vtop
[0].type
.t
;
5772 bt1
= t1
& VT_BTYPE
;
5773 bt2
= t2
& VT_BTYPE
;
5775 if (bt1
== VT_PTR
|| bt2
== VT_PTR
) {
5776 /* at least one operand is a pointer */
5777 /* relationnal op: must be both pointers */
5778 if (op
>= TOK_ULT
&& op
<= TOK_LOR
) {
5779 check_comparison_pointer_types(vtop
- 1, vtop
, op
);
5780 /* pointers are handled are unsigned */
5781 t
= VT_INT
| VT_UNSIGNED
;
5784 /* if both pointers, then it must be the '-' op */
5785 if (bt1
== VT_PTR
&& bt2
== VT_PTR
) {
5787 error("cannot use pointers here");
5788 check_comparison_pointer_types(vtop
- 1, vtop
, op
);
5789 /* XXX: check that types are compatible */
5790 u
= pointed_size(&vtop
[-1].type
);
5792 /* set to integer type */
5793 vtop
->type
.t
= VT_INT
;
5797 /* exactly one pointer : must be '+' or '-'. */
5798 if (op
!= '-' && op
!= '+')
5799 error("cannot use pointers here");
5800 /* Put pointer as first operand */
5801 if (bt2
== VT_PTR
) {
5805 type1
= vtop
[-1].type
;
5806 /* XXX: cast to int ? (long long case) */
5807 vpushi(pointed_size(&vtop
[-1].type
));
5809 #ifdef CONFIG_TCC_BCHECK
5810 /* if evaluating constant expression, no code should be
5811 generated, so no bound check */
5812 if (do_bounds_check
&& !const_wanted
) {
5813 /* if bounded pointers, we generate a special code to
5820 gen_bounded_ptr_add();
5826 /* put again type if gen_opic() swaped operands */
5829 } else if (is_float(bt1
) || is_float(bt2
)) {
5830 /* compute bigger type and do implicit casts */
5831 if (bt1
== VT_LDOUBLE
|| bt2
== VT_LDOUBLE
) {
5833 } else if (bt1
== VT_DOUBLE
|| bt2
== VT_DOUBLE
) {
5838 /* floats can only be used for a few operations */
5839 if (op
!= '+' && op
!= '-' && op
!= '*' && op
!= '/' &&
5840 (op
< TOK_ULT
|| op
> TOK_GT
))
5841 error("invalid operands for binary operation");
5843 } else if (bt1
== VT_LLONG
|| bt2
== VT_LLONG
) {
5844 /* cast to biggest op */
5846 /* convert to unsigned if it does not fit in a long long */
5847 if ((t1
& (VT_BTYPE
| VT_UNSIGNED
)) == (VT_LLONG
| VT_UNSIGNED
) ||
5848 (t2
& (VT_BTYPE
| VT_UNSIGNED
)) == (VT_LLONG
| VT_UNSIGNED
))
5852 /* integer operations */
5854 /* convert to unsigned if it does not fit in an integer */
5855 if ((t1
& (VT_BTYPE
| VT_UNSIGNED
)) == (VT_INT
| VT_UNSIGNED
) ||
5856 (t2
& (VT_BTYPE
| VT_UNSIGNED
)) == (VT_INT
| VT_UNSIGNED
))
5859 /* XXX: currently, some unsigned operations are explicit, so
5860 we modify them here */
5861 if (t
& VT_UNSIGNED
) {
5868 else if (op
== TOK_LT
)
5870 else if (op
== TOK_GT
)
5872 else if (op
== TOK_LE
)
5874 else if (op
== TOK_GE
)
5881 /* special case for shifts and long long: we keep the shift as
5883 if (op
== TOK_SHR
|| op
== TOK_SAR
|| op
== TOK_SHL
)
5890 if (op
>= TOK_ULT
&& op
<= TOK_GT
) {
5891 /* relationnal op: the result is an int */
5892 vtop
->type
.t
= VT_INT
;
5899 #ifndef TCC_TARGET_ARM
5900 /* generic itof for unsigned long long case */
5901 void gen_cvt_itof1(int t
)
5903 if ((vtop
->type
.t
& (VT_BTYPE
| VT_UNSIGNED
)) ==
5904 (VT_LLONG
| VT_UNSIGNED
)) {
5907 vpush_global_sym(&func_old_type
, TOK___floatundisf
);
5908 #if LDOUBLE_SIZE != 8
5909 else if (t
== VT_LDOUBLE
)
5910 vpush_global_sym(&func_old_type
, TOK___floatundixf
);
5913 vpush_global_sym(&func_old_type
, TOK___floatundidf
);
5924 /* generic ftoi for unsigned long long case */
5925 void gen_cvt_ftoi1(int t
)
5929 if (t
== (VT_LLONG
| VT_UNSIGNED
)) {
5930 /* not handled natively */
5931 st
= vtop
->type
.t
& VT_BTYPE
;
5933 vpush_global_sym(&func_old_type
, TOK___fixunssfdi
);
5934 #if LDOUBLE_SIZE != 8
5935 else if (st
== VT_LDOUBLE
)
5936 vpush_global_sym(&func_old_type
, TOK___fixunsxfdi
);
5939 vpush_global_sym(&func_old_type
, TOK___fixunsdfdi
);
5944 vtop
->r2
= REG_LRET
;
5950 /* force char or short cast */
5951 void force_charshort_cast(int t
)
5955 /* XXX: add optimization if lvalue : just change type and offset */
5960 if (t
& VT_UNSIGNED
) {
5961 vpushi((1 << bits
) - 1);
5967 /* result must be signed or the SAR is converted to an SHL
5968 This was not the case when "t" was a signed short
5969 and the last value on the stack was an unsigned int */
5970 vtop
->type
.t
&= ~VT_UNSIGNED
;
5976 /* cast 'vtop' to 'type'. Casting to bitfields is forbidden. */
5977 static void gen_cast(CType
*type
)
5979 int sbt
, dbt
, sf
, df
, c
, p
;
5981 /* special delayed cast for char/short */
5982 /* XXX: in some cases (multiple cascaded casts), it may still
5984 if (vtop
->r
& VT_MUSTCAST
) {
5985 vtop
->r
&= ~VT_MUSTCAST
;
5986 force_charshort_cast(vtop
->type
.t
);
5989 /* bitfields first get cast to ints */
5990 if (vtop
->type
.t
& VT_BITFIELD
) {
5994 dbt
= type
->t
& (VT_BTYPE
| VT_UNSIGNED
);
5995 sbt
= vtop
->type
.t
& (VT_BTYPE
| VT_UNSIGNED
);
6000 c
= (vtop
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) == VT_CONST
;
6001 p
= (vtop
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) == (VT_CONST
| VT_SYM
);
6003 /* constant case: we can do it now */
6004 /* XXX: in ISOC, cannot do it if error in convert */
6005 if (sbt
== VT_FLOAT
)
6006 vtop
->c
.ld
= vtop
->c
.f
;
6007 else if (sbt
== VT_DOUBLE
)
6008 vtop
->c
.ld
= vtop
->c
.d
;
6011 if ((sbt
& VT_BTYPE
) == VT_LLONG
) {
6012 if (sbt
& VT_UNSIGNED
)
6013 vtop
->c
.ld
= vtop
->c
.ull
;
6015 vtop
->c
.ld
= vtop
->c
.ll
;
6017 if (sbt
& VT_UNSIGNED
)
6018 vtop
->c
.ld
= vtop
->c
.ui
;
6020 vtop
->c
.ld
= vtop
->c
.i
;
6023 if (dbt
== VT_FLOAT
)
6024 vtop
->c
.f
= (float)vtop
->c
.ld
;
6025 else if (dbt
== VT_DOUBLE
)
6026 vtop
->c
.d
= (double)vtop
->c
.ld
;
6027 } else if (sf
&& dbt
== (VT_LLONG
|VT_UNSIGNED
)) {
6028 vtop
->c
.ull
= (unsigned long long)vtop
->c
.ld
;
6029 } else if (sf
&& dbt
== VT_BOOL
) {
6030 vtop
->c
.i
= (vtop
->c
.ld
!= 0);
6033 vtop
->c
.ll
= (long long)vtop
->c
.ld
;
6034 else if (sbt
== (VT_LLONG
|VT_UNSIGNED
))
6035 vtop
->c
.ll
= vtop
->c
.ull
;
6036 else if (sbt
& VT_UNSIGNED
)
6037 vtop
->c
.ll
= vtop
->c
.ui
;
6038 else if (sbt
!= VT_LLONG
)
6039 vtop
->c
.ll
= vtop
->c
.i
;
6041 if (dbt
== (VT_LLONG
|VT_UNSIGNED
))
6042 vtop
->c
.ull
= vtop
->c
.ll
;
6043 else if (dbt
== VT_BOOL
)
6044 vtop
->c
.i
= (vtop
->c
.ll
!= 0);
6045 else if (dbt
!= VT_LLONG
) {
6047 if ((dbt
& VT_BTYPE
) == VT_BYTE
)
6049 else if ((dbt
& VT_BTYPE
) == VT_SHORT
)
6052 if(dbt
& VT_UNSIGNED
)
6053 vtop
->c
.ui
= ((unsigned int)vtop
->c
.ll
<< s
) >> s
;
6055 vtop
->c
.i
= ((int)vtop
->c
.ll
<< s
) >> s
;
6058 } else if (p
&& dbt
== VT_BOOL
) {
6061 } else if (!nocode_wanted
) {
6062 /* non constant case: generate code */
6064 /* convert from fp to fp */
6067 /* convert int to fp */
6070 /* convert fp to int */
6071 if (dbt
== VT_BOOL
) {
6075 /* we handle char/short/etc... with generic code */
6076 if (dbt
!= (VT_INT
| VT_UNSIGNED
) &&
6077 dbt
!= (VT_LLONG
| VT_UNSIGNED
) &&
6081 if (dbt
== VT_INT
&& (type
->t
& (VT_BTYPE
| VT_UNSIGNED
)) != dbt
) {
6082 /* additional cast for char/short... */
6087 } else if ((dbt
& VT_BTYPE
) == VT_LLONG
) {
6088 if ((sbt
& VT_BTYPE
) != VT_LLONG
) {
6089 /* scalar to long long */
6090 /* machine independent conversion */
6092 /* generate high word */
6093 if (sbt
== (VT_INT
| VT_UNSIGNED
)) {
6101 /* patch second register */
6102 vtop
[-1].r2
= vtop
->r
;
6105 } else if (dbt
== VT_BOOL
) {
6106 /* scalar to bool */
6109 } else if ((dbt
& VT_BTYPE
) == VT_BYTE
||
6110 (dbt
& VT_BTYPE
) == VT_SHORT
) {
6111 if (sbt
== VT_PTR
) {
6112 vtop
->type
.t
= VT_INT
;
6113 warning("nonportable conversion from pointer to char/short");
6115 force_charshort_cast(dbt
);
6116 } else if ((dbt
& VT_BTYPE
) == VT_INT
) {
6118 if (sbt
== VT_LLONG
) {
6119 /* from long long: just take low order word */
6123 /* if lvalue and single word type, nothing to do because
6124 the lvalue already contains the real type size (see
6125 VT_LVAL_xxx constants) */
6128 } else if ((dbt
& VT_BTYPE
) == VT_PTR
&& !(vtop
->r
& VT_LVAL
)) {
6129 /* if we are casting between pointer types,
6130 we must update the VT_LVAL_xxx size */
6131 vtop
->r
= (vtop
->r
& ~VT_LVAL_TYPE
)
6132 | (lvalue_type(type
->ref
->type
.t
) & VT_LVAL_TYPE
);
6137 /* return type size. Put alignment at 'a' */
6138 static int type_size(CType
*type
, int *a
)
6143 bt
= type
->t
& VT_BTYPE
;
6144 if (bt
== VT_STRUCT
) {
6149 } else if (bt
== VT_PTR
) {
6150 if (type
->t
& VT_ARRAY
) {
6152 return type_size(&s
->type
, a
) * s
->c
;
6157 } else if (bt
== VT_LDOUBLE
) {
6159 return LDOUBLE_SIZE
;
6160 } else if (bt
== VT_DOUBLE
|| bt
== VT_LLONG
) {
6161 #ifdef TCC_TARGET_I386
6163 #elif defined(TCC_TARGET_ARM)
6173 } else if (bt
== VT_INT
|| bt
== VT_ENUM
|| bt
== VT_FLOAT
) {
6176 } else if (bt
== VT_SHORT
) {
6180 /* char, void, function, _Bool */
6186 /* return the pointed type of t */
6187 static inline CType
*pointed_type(CType
*type
)
6189 return &type
->ref
->type
;
6192 /* modify type so that its it is a pointer to type. */
6193 static void mk_pointer(CType
*type
)
6196 s
= sym_push(SYM_FIELD
, type
, 0, -1);
6197 type
->t
= VT_PTR
| (type
->t
& ~VT_TYPE
);
6201 /* compare function types. OLD functions match any new functions */
6202 static int is_compatible_func(CType
*type1
, CType
*type2
)
6208 if (!is_compatible_types(&s1
->type
, &s2
->type
))
6210 /* check func_call */
6211 if (FUNC_CALL(s1
->r
) != FUNC_CALL(s2
->r
))
6213 /* XXX: not complete */
6214 if (s1
->c
== FUNC_OLD
|| s2
->c
== FUNC_OLD
)
6218 while (s1
!= NULL
) {
6221 if (!is_compatible_parameter_types(&s1
->type
, &s2
->type
))
6231 /* return true if type1 and type2 are the same. If unqualified is
6232 true, qualifiers on the types are ignored.
6234 - enums are not checked as gcc __builtin_types_compatible_p ()
6236 static int compare_types(CType
*type1
, CType
*type2
, int unqualified
)
6240 t1
= type1
->t
& VT_TYPE
;
6241 t2
= type2
->t
& VT_TYPE
;
6243 /* strip qualifiers before comparing */
6244 t1
&= ~(VT_CONSTANT
| VT_VOLATILE
);
6245 t2
&= ~(VT_CONSTANT
| VT_VOLATILE
);
6247 /* XXX: bitfields ? */
6250 /* test more complicated cases */
6251 bt1
= t1
& VT_BTYPE
;
6252 if (bt1
== VT_PTR
) {
6253 type1
= pointed_type(type1
);
6254 type2
= pointed_type(type2
);
6255 return is_compatible_types(type1
, type2
);
6256 } else if (bt1
== VT_STRUCT
) {
6257 return (type1
->ref
== type2
->ref
);
6258 } else if (bt1
== VT_FUNC
) {
6259 return is_compatible_func(type1
, type2
);
6265 /* return true if type1 and type2 are exactly the same (including
6268 static int is_compatible_types(CType
*type1
, CType
*type2
)
6270 return compare_types(type1
,type2
,0);
6273 /* return true if type1 and type2 are the same (ignoring qualifiers).
6275 static int is_compatible_parameter_types(CType
*type1
, CType
*type2
)
6277 return compare_types(type1
,type2
,1);
6280 /* print a type. If 'varstr' is not NULL, then the variable is also
6281 printed in the type */
6283 /* XXX: add array and function pointers */
6284 void type_to_str(char *buf
, int buf_size
,
6285 CType
*type
, const char *varstr
)
6292 t
= type
->t
& VT_TYPE
;
6295 if (t
& VT_CONSTANT
)
6296 pstrcat(buf
, buf_size
, "const ");
6297 if (t
& VT_VOLATILE
)
6298 pstrcat(buf
, buf_size
, "volatile ");
6299 if (t
& VT_UNSIGNED
)
6300 pstrcat(buf
, buf_size
, "unsigned ");
6330 tstr
= "long double";
6332 pstrcat(buf
, buf_size
, tstr
);
6336 if (bt
== VT_STRUCT
)
6340 pstrcat(buf
, buf_size
, tstr
);
6341 v
= type
->ref
->v
& ~SYM_STRUCT
;
6342 if (v
>= SYM_FIRST_ANOM
)
6343 pstrcat(buf
, buf_size
, "<anonymous>");
6345 pstrcat(buf
, buf_size
, get_tok_str(v
, NULL
));
6349 type_to_str(buf
, buf_size
, &s
->type
, varstr
);
6350 pstrcat(buf
, buf_size
, "(");
6352 while (sa
!= NULL
) {
6353 type_to_str(buf1
, sizeof(buf1
), &sa
->type
, NULL
);
6354 pstrcat(buf
, buf_size
, buf1
);
6357 pstrcat(buf
, buf_size
, ", ");
6359 pstrcat(buf
, buf_size
, ")");
6363 pstrcpy(buf1
, sizeof(buf1
), "*");
6365 pstrcat(buf1
, sizeof(buf1
), varstr
);
6366 type_to_str(buf
, buf_size
, &s
->type
, buf1
);
6370 pstrcat(buf
, buf_size
, " ");
6371 pstrcat(buf
, buf_size
, varstr
);
6376 /* verify type compatibility to store vtop in 'dt' type, and generate
6378 static void gen_assign_cast(CType
*dt
)
6380 CType
*st
, *type1
, *type2
, tmp_type1
, tmp_type2
;
6381 char buf1
[256], buf2
[256];
6384 st
= &vtop
->type
; /* source type */
6385 dbt
= dt
->t
& VT_BTYPE
;
6386 sbt
= st
->t
& VT_BTYPE
;
6387 if (dt
->t
& VT_CONSTANT
)
6388 warning("assignment of read-only location");
6391 /* special cases for pointers */
6392 /* '0' can also be a pointer */
6393 if (is_null_pointer(vtop
))
6395 /* accept implicit pointer to integer cast with warning */
6396 if (is_integer_btype(sbt
)) {
6397 warning("assignment makes pointer from integer without a cast");
6400 type1
= pointed_type(dt
);
6401 /* a function is implicitely a function pointer */
6402 if (sbt
== VT_FUNC
) {
6403 if ((type1
->t
& VT_BTYPE
) != VT_VOID
&&
6404 !is_compatible_types(pointed_type(dt
), st
))
6411 type2
= pointed_type(st
);
6412 if ((type1
->t
& VT_BTYPE
) == VT_VOID
||
6413 (type2
->t
& VT_BTYPE
) == VT_VOID
) {
6414 /* void * can match anything */
6416 /* exact type match, except for unsigned */
6419 tmp_type1
.t
&= ~(VT_UNSIGNED
| VT_CONSTANT
| VT_VOLATILE
);
6420 tmp_type2
.t
&= ~(VT_UNSIGNED
| VT_CONSTANT
| VT_VOLATILE
);
6421 if (!is_compatible_types(&tmp_type1
, &tmp_type2
))
6422 warning("assignment from incompatible pointer type");
6424 /* check const and volatile */
6425 if ((!(type1
->t
& VT_CONSTANT
) && (type2
->t
& VT_CONSTANT
)) ||
6426 (!(type1
->t
& VT_VOLATILE
) && (type2
->t
& VT_VOLATILE
)))
6427 warning("assignment discards qualifiers from pointer target type");
6433 if (sbt
== VT_PTR
|| sbt
== VT_FUNC
) {
6434 warning("assignment makes integer from pointer without a cast");
6436 /* XXX: more tests */
6441 tmp_type1
.t
&= ~(VT_CONSTANT
| VT_VOLATILE
);
6442 tmp_type2
.t
&= ~(VT_CONSTANT
| VT_VOLATILE
);
6443 if (!is_compatible_types(&tmp_type1
, &tmp_type2
)) {
6445 type_to_str(buf1
, sizeof(buf1
), st
, NULL
);
6446 type_to_str(buf2
, sizeof(buf2
), dt
, NULL
);
6447 error("cannot cast '%s' to '%s'", buf1
, buf2
);
6455 /* store vtop in lvalue pushed on stack */
6458 int sbt
, dbt
, ft
, r
, t
, size
, align
, bit_size
, bit_pos
, rc
, delayed_cast
;
6460 ft
= vtop
[-1].type
.t
;
6461 sbt
= vtop
->type
.t
& VT_BTYPE
;
6462 dbt
= ft
& VT_BTYPE
;
6463 if (((sbt
== VT_INT
|| sbt
== VT_SHORT
) && dbt
== VT_BYTE
) ||
6464 (sbt
== VT_INT
&& dbt
== VT_SHORT
)) {
6465 /* optimize char/short casts */
6466 delayed_cast
= VT_MUSTCAST
;
6467 vtop
->type
.t
= ft
& (VT_TYPE
& ~(VT_BITFIELD
| (-1 << VT_STRUCT_SHIFT
)));
6468 /* XXX: factorize */
6469 if (ft
& VT_CONSTANT
)
6470 warning("assignment of read-only location");
6473 if (!(ft
& VT_BITFIELD
))
6474 gen_assign_cast(&vtop
[-1].type
);
6477 if (sbt
== VT_STRUCT
) {
6478 /* if structure, only generate pointer */
6479 /* structure assignment : generate memcpy */
6480 /* XXX: optimize if small size */
6481 if (!nocode_wanted
) {
6482 size
= type_size(&vtop
->type
, &align
);
6486 vpush_global_sym(&func_old_type
, TOK_memcpy8
);
6487 else if(!(align
& 3))
6488 vpush_global_sym(&func_old_type
, TOK_memcpy4
);
6491 vpush_global_sym(&func_old_type
, TOK_memcpy
);
6495 vtop
->type
.t
= VT_INT
;
6499 vtop
->type
.t
= VT_INT
;
6511 /* leave source on stack */
6512 } else if (ft
& VT_BITFIELD
) {
6513 /* bitfield store handling */
6514 bit_pos
= (ft
>> VT_STRUCT_SHIFT
) & 0x3f;
6515 bit_size
= (ft
>> (VT_STRUCT_SHIFT
+ 6)) & 0x3f;
6516 /* remove bit field info to avoid loops */
6517 vtop
[-1].type
.t
= ft
& ~(VT_BITFIELD
| (-1 << VT_STRUCT_SHIFT
));
6519 /* duplicate source into other register */
6524 if((ft
& VT_BTYPE
) == VT_BOOL
) {
6525 gen_cast(&vtop
[-1].type
);
6526 vtop
[-1].type
.t
= (vtop
[-1].type
.t
& ~VT_BTYPE
) | (VT_BYTE
| VT_UNSIGNED
);
6529 /* duplicate destination */
6531 vtop
[-1] = vtop
[-2];
6533 /* mask and shift source */
6534 if((ft
& VT_BTYPE
) != VT_BOOL
) {
6535 vpushi((1 << bit_size
) - 1);
6540 /* load destination, mask and or with source */
6542 vpushi(~(((1 << bit_size
) - 1) << bit_pos
));
6548 /* pop off shifted source from "duplicate source..." above */
6552 #ifdef CONFIG_TCC_BCHECK
6553 /* bound check case */
6554 if (vtop
[-1].r
& VT_MUSTBOUND
) {
6560 if (!nocode_wanted
) {
6564 r
= gv(rc
); /* generate value */
6565 /* if lvalue was saved on stack, must read it */
6566 if ((vtop
[-1].r
& VT_VALMASK
) == VT_LLOCAL
) {
6568 t
= get_reg(RC_INT
);
6570 sv
.r
= VT_LOCAL
| VT_LVAL
;
6571 sv
.c
.ul
= vtop
[-1].c
.ul
;
6573 vtop
[-1].r
= t
| VT_LVAL
;
6576 /* two word case handling : store second register at word + 4 */
6577 if ((ft
& VT_BTYPE
) == VT_LLONG
) {
6579 /* convert to int to increment easily */
6580 vtop
->type
.t
= VT_INT
;
6586 /* XXX: it works because r2 is spilled last ! */
6587 store(vtop
->r2
, vtop
- 1);
6591 vtop
--; /* NOT vpop() because on x86 it would flush the fp stack */
6592 vtop
->r
|= delayed_cast
;
6596 /* post defines POST/PRE add. c is the token ++ or -- */
6597 void inc(int post
, int c
)
6600 vdup(); /* save lvalue */
6602 gv_dup(); /* duplicate value */
6607 vpushi(c
- TOK_MID
);
6609 vstore(); /* store value */
6611 vpop(); /* if post op, return saved value */
6614 /* Parse GNUC __attribute__ extension. Currently, the following
6615 extensions are recognized:
6616 - aligned(n) : set data/function alignment.
6617 - packed : force data alignment to 1
6618 - section(x) : generate data/code in this section.
6619 - unused : currently ignored, but may be used someday.
6620 - regparm(n) : pass function parameters in registers (i386 only)
6622 static void parse_attribute(AttributeDef
*ad
)
6626 while (tok
== TOK_ATTRIBUTE1
|| tok
== TOK_ATTRIBUTE2
) {
6630 while (tok
!= ')') {
6631 if (tok
< TOK_IDENT
)
6632 expect("attribute name");
6640 expect("section name");
6641 ad
->section
= find_section(tcc_state
, (char *)tokc
.cstr
->data
);
6650 if (n
<= 0 || (n
& (n
- 1)) != 0)
6651 error("alignment must be a positive power of two");
6664 /* currently, no need to handle it because tcc does not
6665 track unused objects */
6669 /* currently, no need to handle it because tcc does not
6670 track unused objects */
6675 FUNC_CALL(ad
->func_attr
) = FUNC_CDECL
;
6680 FUNC_CALL(ad
->func_attr
) = FUNC_STDCALL
;
6682 #ifdef TCC_TARGET_I386
6692 FUNC_CALL(ad
->func_attr
) = FUNC_FASTCALL1
+ n
- 1;
6698 FUNC_CALL(ad
->func_attr
) = FUNC_FASTCALLW
;
6702 FUNC_EXPORT(ad
->func_attr
) = 1;
6705 if (tcc_state
->warn_unsupported
)
6706 warning("'%s' attribute ignored", get_tok_str(t
, NULL
));
6707 /* skip parameters */
6709 int parenthesis
= 0;
6713 else if (tok
== ')')
6716 } while (parenthesis
&& tok
!= -1);
6729 /* enum/struct/union declaration. u is either VT_ENUM or VT_STRUCT */
6730 static void struct_decl(CType
*type
, int u
)
6732 int a
, v
, size
, align
, maxalign
, c
, offset
;
6733 int bit_size
, bit_pos
, bsize
, bt
, lbit_pos
, prevbt
;
6734 Sym
*s
, *ss
, *ass
, **ps
;
6738 a
= tok
; /* save decl type */
6743 /* struct already defined ? return it */
6745 expect("struct/union/enum name");
6749 error("invalid type");
6756 /* we put an undefined size for struct/union */
6757 s
= sym_push(v
| SYM_STRUCT
, &type1
, 0, -1);
6758 s
->r
= 0; /* default alignment is zero as gcc */
6759 /* put struct/union/enum name in type */
6767 error("struct/union/enum already defined");
6768 /* cannot be empty */
6770 /* non empty enums are not allowed */
6771 if (a
== TOK_ENUM
) {
6775 expect("identifier");
6781 /* enum symbols have static storage */
6782 ss
= sym_push(v
, &int_type
, VT_CONST
, c
);
6783 ss
->type
.t
|= VT_STATIC
;
6788 /* NOTE: we accept a trailing comma */
6799 while (tok
!= '}') {
6800 parse_btype(&btype
, &ad
);
6806 type_decl(&type1
, &ad
, &v
, TYPE_DIRECT
| TYPE_ABSTRACT
);
6807 if (v
== 0 && (type1
.t
& VT_BTYPE
) != VT_STRUCT
)
6808 expect("identifier");
6809 if ((type1
.t
& VT_BTYPE
) == VT_FUNC
||
6810 (type1
.t
& (VT_TYPEDEF
| VT_STATIC
| VT_EXTERN
| VT_INLINE
)))
6811 error("invalid type for '%s'",
6812 get_tok_str(v
, NULL
));
6816 bit_size
= expr_const();
6817 /* XXX: handle v = 0 case for messages */
6819 error("negative width in bit-field '%s'",
6820 get_tok_str(v
, NULL
));
6821 if (v
&& bit_size
== 0)
6822 error("zero width for bit-field '%s'",
6823 get_tok_str(v
, NULL
));
6825 size
= type_size(&type1
, &align
);
6827 if (align
< ad
.aligned
)
6829 } else if (ad
.packed
) {
6831 } else if (*tcc_state
->pack_stack_ptr
) {
6832 if (align
> *tcc_state
->pack_stack_ptr
)
6833 align
= *tcc_state
->pack_stack_ptr
;
6836 if (bit_size
>= 0) {
6837 bt
= type1
.t
& VT_BTYPE
;
6843 error("bitfields must have scalar type");
6845 if (bit_size
> bsize
) {
6846 error("width of '%s' exceeds its type",
6847 get_tok_str(v
, NULL
));
6848 } else if (bit_size
== bsize
) {
6849 /* no need for bit fields */
6851 } else if (bit_size
== 0) {
6852 /* XXX: what to do if only padding in a
6854 /* zero size: means to pad */
6857 /* we do not have enough room ?
6858 did the type change?
6860 if ((bit_pos
+ bit_size
) > bsize
||
6861 bt
!= prevbt
|| a
== TOK_UNION
)
6864 /* XXX: handle LSB first */
6865 type1
.t
|= VT_BITFIELD
|
6866 (bit_pos
<< VT_STRUCT_SHIFT
) |
6867 (bit_size
<< (VT_STRUCT_SHIFT
+ 6));
6868 bit_pos
+= bit_size
;
6874 if (v
!= 0 || (type1
.t
& VT_BTYPE
) == VT_STRUCT
) {
6875 /* add new memory data only if starting
6877 if (lbit_pos
== 0) {
6878 if (a
== TOK_STRUCT
) {
6879 c
= (c
+ align
- 1) & -align
;
6888 if (align
> maxalign
)
6892 printf("add field %s offset=%d",
6893 get_tok_str(v
, NULL
), offset
);
6894 if (type1
.t
& VT_BITFIELD
) {
6895 printf(" pos=%d size=%d",
6896 (type1
.t
>> VT_STRUCT_SHIFT
) & 0x3f,
6897 (type1
.t
>> (VT_STRUCT_SHIFT
+ 6)) & 0x3f);
6902 if (v
== 0 && (type1
.t
& VT_BTYPE
) == VT_STRUCT
) {
6904 while ((ass
= ass
->next
) != NULL
) {
6905 ss
= sym_push(ass
->v
, &ass
->type
, 0, offset
+ ass
->c
);
6910 ss
= sym_push(v
| SYM_FIELD
, &type1
, 0, offset
);
6914 if (tok
== ';' || tok
== TOK_EOF
)
6921 /* store size and alignment */
6922 s
->c
= (c
+ maxalign
- 1) & -maxalign
;
6928 /* return 0 if no type declaration. otherwise, return the basic type
6931 static int parse_btype(CType
*type
, AttributeDef
*ad
)
6933 int t
, u
, type_found
, typespec_found
, typedef_found
;
6937 memset(ad
, 0, sizeof(AttributeDef
));
6945 /* currently, we really ignore extension */
6955 if ((t
& VT_BTYPE
) != 0)
6956 error("too many basic types");
6972 if ((t
& VT_BTYPE
) == VT_DOUBLE
) {
6973 t
= (t
& ~VT_BTYPE
) | VT_LDOUBLE
;
6974 } else if ((t
& VT_BTYPE
) == VT_LONG
) {
6975 t
= (t
& ~VT_BTYPE
) | VT_LLONG
;
6989 if ((t
& VT_BTYPE
) == VT_LONG
) {
6990 t
= (t
& ~VT_BTYPE
) | VT_LDOUBLE
;
6997 struct_decl(&type1
, VT_ENUM
);
7000 type
->ref
= type1
.ref
;
7004 struct_decl(&type1
, VT_STRUCT
);
7007 /* type modifiers */
7060 /* GNUC attribute */
7061 case TOK_ATTRIBUTE1
:
7062 case TOK_ATTRIBUTE2
:
7063 parse_attribute(ad
);
7070 parse_expr_type(&type1
);
7073 if (typespec_found
|| typedef_found
)
7076 if (!s
|| !(s
->type
.t
& VT_TYPEDEF
))
7079 t
|= (s
->type
.t
& ~VT_TYPEDEF
);
7080 type
->ref
= s
->type
.ref
;
7088 if ((t
& (VT_SIGNED
|VT_UNSIGNED
)) == (VT_SIGNED
|VT_UNSIGNED
))
7089 error("signed and unsigned modifier");
7090 if (tcc_state
->char_is_unsigned
) {
7091 if ((t
& (VT_SIGNED
|VT_UNSIGNED
|VT_BTYPE
)) == VT_BYTE
)
7096 /* long is never used as type */
7097 if ((t
& VT_BTYPE
) == VT_LONG
)
7098 t
= (t
& ~VT_BTYPE
) | VT_INT
;
7103 /* convert a function parameter type (array to pointer and function to
7104 function pointer) */
7105 static inline void convert_parameter_type(CType
*pt
)
7107 /* remove const and volatile qualifiers (XXX: const could be used
7108 to indicate a const function parameter */
7109 pt
->t
&= ~(VT_CONSTANT
| VT_VOLATILE
);
7110 /* array must be transformed to pointer according to ANSI C */
7112 if ((pt
->t
& VT_BTYPE
) == VT_FUNC
) {
7117 static void post_type(CType
*type
, AttributeDef
*ad
)
7119 int n
, l
, t1
, arg_size
, align
;
7120 Sym
**plast
, *s
, *first
;
7125 /* function declaration */
7133 /* read param name and compute offset */
7134 if (l
!= FUNC_OLD
) {
7135 if (!parse_btype(&pt
, &ad1
)) {
7137 error("invalid type");
7144 if ((pt
.t
& VT_BTYPE
) == VT_VOID
&& tok
== ')')
7146 type_decl(&pt
, &ad1
, &n
, TYPE_DIRECT
| TYPE_ABSTRACT
);
7147 if ((pt
.t
& VT_BTYPE
) == VT_VOID
)
7148 error("parameter declared as void");
7149 arg_size
+= (type_size(&pt
, &align
) + 3) & ~3;
7154 expect("identifier");
7158 convert_parameter_type(&pt
);
7159 s
= sym_push(n
| SYM_FIELD
, &pt
, 0, 0);
7165 if (l
== FUNC_NEW
&& tok
== TOK_DOTS
) {
7172 /* if no parameters, then old type prototype */
7176 t1
= type
->t
& VT_STORAGE
;
7177 /* NOTE: const is ignored in returned type as it has a special
7178 meaning in gcc / C++ */
7179 type
->t
&= ~(VT_STORAGE
| VT_CONSTANT
);
7180 post_type(type
, ad
);
7181 /* we push a anonymous symbol which will contain the function prototype */
7182 FUNC_ARGS(ad
->func_attr
) = arg_size
;
7183 s
= sym_push(SYM_FIELD
, type
, ad
->func_attr
, l
);
7185 type
->t
= t1
| VT_FUNC
;
7187 } else if (tok
== '[') {
7188 /* array definition */
7194 error("invalid array size");
7197 /* parse next post type */
7198 t1
= type
->t
& VT_STORAGE
;
7199 type
->t
&= ~VT_STORAGE
;
7200 post_type(type
, ad
);
7202 /* we push a anonymous symbol which will contain the array
7204 s
= sym_push(SYM_FIELD
, type
, 0, n
);
7205 type
->t
= t1
| VT_ARRAY
| VT_PTR
;
7210 /* Parse a type declaration (except basic type), and return the type
7211 in 'type'. 'td' is a bitmask indicating which kind of type decl is
7212 expected. 'type' should contain the basic type. 'ad' is the
7213 attribute definition of the basic type. It can be modified by
7216 static void type_decl(CType
*type
, AttributeDef
*ad
, int *v
, int td
)
7219 CType type1
, *type2
;
7222 while (tok
== '*') {
7230 qualifiers
|= VT_CONSTANT
;
7235 qualifiers
|= VT_VOLATILE
;
7243 type
->t
|= qualifiers
;
7246 /* XXX: clarify attribute handling */
7247 if (tok
== TOK_ATTRIBUTE1
|| tok
== TOK_ATTRIBUTE2
)
7248 parse_attribute(ad
);
7250 /* recursive type */
7251 /* XXX: incorrect if abstract type for functions (e.g. 'int ()') */
7252 type1
.t
= 0; /* XXX: same as int */
7255 /* XXX: this is not correct to modify 'ad' at this point, but
7256 the syntax is not clear */
7257 if (tok
== TOK_ATTRIBUTE1
|| tok
== TOK_ATTRIBUTE2
)
7258 parse_attribute(ad
);
7259 type_decl(&type1
, ad
, v
, td
);
7262 /* type identifier */
7263 if (tok
>= TOK_IDENT
&& (td
& TYPE_DIRECT
)) {
7267 if (!(td
& TYPE_ABSTRACT
))
7268 expect("identifier");
7272 post_type(type
, ad
);
7273 if (tok
== TOK_ATTRIBUTE1
|| tok
== TOK_ATTRIBUTE2
)
7274 parse_attribute(ad
);
7277 /* append type at the end of type1 */
7290 /* compute the lvalue VT_LVAL_xxx needed to match type t. */
7291 static int lvalue_type(int t
)
7296 if (bt
== VT_BYTE
|| bt
== VT_BOOL
)
7298 else if (bt
== VT_SHORT
)
7302 if (t
& VT_UNSIGNED
)
7303 r
|= VT_LVAL_UNSIGNED
;
7307 /* indirection with full error checking and bound check */
7308 static void indir(void)
7310 if ((vtop
->type
.t
& VT_BTYPE
) != VT_PTR
) {
7311 if ((vtop
->type
.t
& VT_BTYPE
) == VT_FUNC
)
7315 if ((vtop
->r
& VT_LVAL
) && !nocode_wanted
)
7317 vtop
->type
= *pointed_type(&vtop
->type
);
7318 /* Arrays and functions are never lvalues */
7319 if (!(vtop
->type
.t
& VT_ARRAY
)
7320 && (vtop
->type
.t
& VT_BTYPE
) != VT_FUNC
) {
7321 vtop
->r
|= lvalue_type(vtop
->type
.t
);
7322 /* if bound checking, the referenced pointer must be checked */
7323 if (do_bounds_check
)
7324 vtop
->r
|= VT_MUSTBOUND
;
7328 /* pass a parameter to a function and do type checking and casting */
7329 static void gfunc_param_typed(Sym
*func
, Sym
*arg
)
7334 func_type
= func
->c
;
7335 if (func_type
== FUNC_OLD
||
7336 (func_type
== FUNC_ELLIPSIS
&& arg
== NULL
)) {
7337 /* default casting : only need to convert float to double */
7338 if ((vtop
->type
.t
& VT_BTYPE
) == VT_FLOAT
) {
7342 } else if (arg
== NULL
) {
7343 error("too many arguments to function");
7346 type
.t
&= ~VT_CONSTANT
; /* need to do that to avoid false warning */
7347 gen_assign_cast(&type
);
7351 /* parse an expression of the form '(type)' or '(expr)' and return its
7353 static void parse_expr_type(CType
*type
)
7359 if (parse_btype(type
, &ad
)) {
7360 type_decl(type
, &ad
, &n
, TYPE_ABSTRACT
);
7367 static void parse_type(CType
*type
)
7372 if (!parse_btype(type
, &ad
)) {
7375 type_decl(type
, &ad
, &n
, TYPE_ABSTRACT
);
7378 static void vpush_tokc(int t
)
7382 vsetc(&type
, VT_CONST
, &tokc
);
7385 static void unary(void)
7387 int n
, t
, align
, size
, r
;
7392 /* XXX: GCC 2.95.3 does not generate a table although it should be
7406 vpush_tokc(VT_INT
| VT_UNSIGNED
);
7410 vpush_tokc(VT_LLONG
);
7414 vpush_tokc(VT_LLONG
| VT_UNSIGNED
);
7418 vpush_tokc(VT_FLOAT
);
7422 vpush_tokc(VT_DOUBLE
);
7426 vpush_tokc(VT_LDOUBLE
);
7429 case TOK___FUNCTION__
:
7431 goto tok_identifier
;
7437 /* special function name identifier */
7438 len
= strlen(funcname
) + 1;
7439 /* generate char[len] type */
7444 vpush_ref(&type
, data_section
, data_section
->data_offset
, len
);
7445 ptr
= section_ptr_add(data_section
, len
);
7446 memcpy(ptr
, funcname
, len
);
7451 #ifdef TCC_TARGET_PE
7452 t
= VT_SHORT
| VT_UNSIGNED
;
7458 /* string parsing */
7461 if (tcc_state
->warn_write_strings
)
7466 memset(&ad
, 0, sizeof(AttributeDef
));
7467 decl_initializer_alloc(&type
, &ad
, VT_CONST
, 2, 0, 0);
7472 if (parse_btype(&type
, &ad
)) {
7473 type_decl(&type
, &ad
, &n
, TYPE_ABSTRACT
);
7475 /* check ISOC99 compound literal */
7477 /* data is allocated locally by default */
7482 /* all except arrays are lvalues */
7483 if (!(type
.t
& VT_ARRAY
))
7484 r
|= lvalue_type(type
.t
);
7485 memset(&ad
, 0, sizeof(AttributeDef
));
7486 decl_initializer_alloc(&type
, &ad
, r
, 1, 0, 0);
7491 } else if (tok
== '{') {
7492 /* save all registers */
7494 /* statement expression : we do not accept break/continue
7495 inside as GCC does */
7496 block(NULL
, NULL
, NULL
, NULL
, 0, 1);
7511 /* functions names must be treated as function pointers,
7512 except for unary '&' and sizeof. Since we consider that
7513 functions are not lvalues, we only have to handle it
7514 there and in function calls. */
7515 /* arrays can also be used although they are not lvalues */
7516 if ((vtop
->type
.t
& VT_BTYPE
) != VT_FUNC
&&
7517 !(vtop
->type
.t
& VT_ARRAY
) && !(vtop
->type
.t
& VT_LLOCAL
))
7519 mk_pointer(&vtop
->type
);
7525 if ((vtop
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) == VT_CONST
) {
7527 boolean
.t
= VT_BOOL
;
7529 vtop
->c
.i
= !vtop
->c
.i
;
7530 } else if ((vtop
->r
& VT_VALMASK
) == VT_CMP
)
7531 vtop
->c
.i
= vtop
->c
.i
^ 1;
7534 vseti(VT_JMP
, gtst(1, 0));
7545 /* in order to force cast, we add zero */
7547 if ((vtop
->type
.t
& VT_BTYPE
) == VT_PTR
)
7548 error("pointer not accepted for unary plus");
7558 parse_expr_type(&type
);
7562 size
= type_size(&type
, &align
);
7563 if (t
== TOK_SIZEOF
) {
7565 error("sizeof applied to an incomplete type");
7570 vtop
->type
.t
|= VT_UNSIGNED
;
7573 case TOK_builtin_types_compatible_p
:
7582 type1
.t
&= ~(VT_CONSTANT
| VT_VOLATILE
);
7583 type2
.t
&= ~(VT_CONSTANT
| VT_VOLATILE
);
7584 vpushi(is_compatible_types(&type1
, &type2
));
7587 case TOK_builtin_constant_p
:
7589 int saved_nocode_wanted
, res
;
7592 saved_nocode_wanted
= nocode_wanted
;
7595 res
= (vtop
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) == VT_CONST
;
7597 nocode_wanted
= saved_nocode_wanted
;
7602 case TOK_builtin_frame_address
:
7607 if (tok
!= TOK_CINT
) {
7608 error("__builtin_frame_address only takes integers");
7611 error("TCC only supports __builtin_frame_address(0)");
7617 vset(&type
, VT_LOCAL
, 0);
7635 goto tok_identifier
;
7637 /* allow to take the address of a label */
7638 if (tok
< TOK_UIDENT
)
7639 expect("label identifier");
7640 s
= label_find(tok
);
7642 s
= label_push(&global_label_stack
, tok
, LABEL_FORWARD
);
7644 if (s
->r
== LABEL_DECLARED
)
7645 s
->r
= LABEL_FORWARD
;
7648 s
->type
.t
= VT_VOID
;
7649 mk_pointer(&s
->type
);
7650 s
->type
.t
|= VT_STATIC
;
7652 vset(&s
->type
, VT_CONST
| VT_SYM
, 0);
7661 expect("identifier");
7665 error("'%s' undeclared", get_tok_str(t
, NULL
));
7666 /* for simple function calls, we tolerate undeclared
7667 external reference to int() function */
7668 if (tcc_state
->warn_implicit_function_declaration
)
7669 warning("implicit declaration of function '%s'",
7670 get_tok_str(t
, NULL
));
7671 s
= external_global_sym(t
, &func_old_type
, 0);
7673 if ((s
->type
.t
& (VT_STATIC
| VT_INLINE
| VT_BTYPE
)) ==
7674 (VT_STATIC
| VT_INLINE
| VT_FUNC
)) {
7675 /* if referencing an inline function, then we generate a
7676 symbol to it if not already done. It will have the
7677 effect to generate code for it at the end of the
7678 compilation unit. Inline function as always
7679 generated in the text section. */
7681 put_extern_sym(s
, text_section
, 0, 0);
7682 r
= VT_SYM
| VT_CONST
;
7686 vset(&s
->type
, r
, s
->c
);
7687 /* if forward reference, we must point to s */
7688 if (vtop
->r
& VT_SYM
) {
7695 /* post operations */
7697 if (tok
== TOK_INC
|| tok
== TOK_DEC
) {
7700 } else if (tok
== '.' || tok
== TOK_ARROW
) {
7702 if (tok
== TOK_ARROW
)
7707 /* expect pointer on structure */
7708 if ((vtop
->type
.t
& VT_BTYPE
) != VT_STRUCT
)
7709 expect("struct or union");
7713 while ((s
= s
->next
) != NULL
) {
7718 error("field not found: %s", get_tok_str(tok
& ~SYM_FIELD
, NULL
));
7719 /* add field offset to pointer */
7720 vtop
->type
= char_pointer_type
; /* change type to 'char *' */
7723 /* change type to field type, and set to lvalue */
7724 vtop
->type
= s
->type
;
7725 /* an array is never an lvalue */
7726 if (!(vtop
->type
.t
& VT_ARRAY
)) {
7727 vtop
->r
|= lvalue_type(vtop
->type
.t
);
7728 /* if bound checking, the referenced pointer must be checked */
7729 if (do_bounds_check
)
7730 vtop
->r
|= VT_MUSTBOUND
;
7733 } else if (tok
== '[') {
7739 } else if (tok
== '(') {
7745 if ((vtop
->type
.t
& VT_BTYPE
) != VT_FUNC
) {
7746 /* pointer test (no array accepted) */
7747 if ((vtop
->type
.t
& (VT_BTYPE
| VT_ARRAY
)) == VT_PTR
) {
7748 vtop
->type
= *pointed_type(&vtop
->type
);
7749 if ((vtop
->type
.t
& VT_BTYPE
) != VT_FUNC
)
7753 expect("function pointer");
7756 vtop
->r
&= ~VT_LVAL
; /* no lvalue */
7758 /* get return type */
7761 sa
= s
->next
; /* first parameter */
7764 /* compute first implicit argument if a structure is returned */
7765 if ((s
->type
.t
& VT_BTYPE
) == VT_STRUCT
) {
7766 /* get some space for the returned structure */
7767 size
= type_size(&s
->type
, &align
);
7768 loc
= (loc
- size
) & -align
;
7770 ret
.r
= VT_LOCAL
| VT_LVAL
;
7771 /* pass it as 'int' to avoid structure arg passing
7773 vseti(VT_LOCAL
, loc
);
7778 /* return in register */
7779 if (is_float(ret
.type
.t
)) {
7782 if ((ret
.type
.t
& VT_BTYPE
) == VT_LLONG
)
7791 gfunc_param_typed(s
, sa
);
7801 error("too few arguments to function");
7803 if (!nocode_wanted
) {
7804 gfunc_call(nb_args
);
7806 vtop
-= (nb_args
+ 1);
7809 vsetc(&ret
.type
, ret
.r
, &ret
.c
);
7817 static void uneq(void)
7823 (tok
>= TOK_A_MOD
&& tok
<= TOK_A_DIV
) ||
7824 tok
== TOK_A_XOR
|| tok
== TOK_A_OR
||
7825 tok
== TOK_A_SHL
|| tok
== TOK_A_SAR
) {
7840 static void expr_prod(void)
7845 while (tok
== '*' || tok
== '/' || tok
== '%') {
7853 static void expr_sum(void)
7858 while (tok
== '+' || tok
== '-') {
7866 static void expr_shift(void)
7871 while (tok
== TOK_SHL
|| tok
== TOK_SAR
) {
7879 static void expr_cmp(void)
7884 while ((tok
>= TOK_ULE
&& tok
<= TOK_GT
) ||
7885 tok
== TOK_ULT
|| tok
== TOK_UGE
) {
7893 static void expr_cmpeq(void)
7898 while (tok
== TOK_EQ
|| tok
== TOK_NE
) {
7906 static void expr_and(void)
7909 while (tok
== '&') {
7916 static void expr_xor(void)
7919 while (tok
== '^') {
7926 static void expr_or(void)
7929 while (tok
== '|') {
7936 /* XXX: fix this mess */
7937 static void expr_land_const(void)
7940 while (tok
== TOK_LAND
) {
7947 /* XXX: fix this mess */
7948 static void expr_lor_const(void)
7951 while (tok
== TOK_LOR
) {
7958 /* only used if non constant */
7959 static void expr_land(void)
7964 if (tok
== TOK_LAND
) {
7969 if (tok
!= TOK_LAND
) {
7979 static void expr_lor(void)
7984 if (tok
== TOK_LOR
) {
7989 if (tok
!= TOK_LOR
) {
7999 /* XXX: better constant handling */
8000 static void expr_eq(void)
8002 int tt
, u
, r1
, r2
, rc
, t1
, t2
, bt1
, bt2
;
8004 CType type
, type1
, type2
;
8011 boolean
.t
= VT_BOOL
;
8017 if (tok
!= ':' || !gnu_ext
) {
8032 if (vtop
!= vstack
) {
8033 /* needed to avoid having different registers saved in
8035 if (is_float(vtop
->type
.t
))
8042 if (tok
== ':' && gnu_ext
) {
8050 sv
= *vtop
; /* save value to handle it later */
8051 vtop
--; /* no vpop so that FP stack is not flushed */
8059 bt1
= t1
& VT_BTYPE
;
8061 bt2
= t2
& VT_BTYPE
;
8062 /* cast operands to correct type according to ISOC rules */
8063 if (is_float(bt1
) || is_float(bt2
)) {
8064 if (bt1
== VT_LDOUBLE
|| bt2
== VT_LDOUBLE
) {
8065 type
.t
= VT_LDOUBLE
;
8066 } else if (bt1
== VT_DOUBLE
|| bt2
== VT_DOUBLE
) {
8071 } else if (bt1
== VT_LLONG
|| bt2
== VT_LLONG
) {
8072 /* cast to biggest op */
8074 /* convert to unsigned if it does not fit in a long long */
8075 if ((t1
& (VT_BTYPE
| VT_UNSIGNED
)) == (VT_LLONG
| VT_UNSIGNED
) ||
8076 (t2
& (VT_BTYPE
| VT_UNSIGNED
)) == (VT_LLONG
| VT_UNSIGNED
))
8077 type
.t
|= VT_UNSIGNED
;
8078 } else if (bt1
== VT_PTR
|| bt2
== VT_PTR
) {
8079 /* XXX: test pointer compatibility */
8081 } else if (bt1
== VT_FUNC
|| bt2
== VT_FUNC
) {
8082 /* XXX: test function pointer compatibility */
8084 } else if (bt1
== VT_STRUCT
|| bt2
== VT_STRUCT
) {
8085 /* XXX: test structure compatibility */
8087 } else if (bt1
== VT_VOID
|| bt2
== VT_VOID
) {
8088 /* NOTE: as an extension, we accept void on only one side */
8091 /* integer operations */
8093 /* convert to unsigned if it does not fit in an integer */
8094 if ((t1
& (VT_BTYPE
| VT_UNSIGNED
)) == (VT_INT
| VT_UNSIGNED
) ||
8095 (t2
& (VT_BTYPE
| VT_UNSIGNED
)) == (VT_INT
| VT_UNSIGNED
))
8096 type
.t
|= VT_UNSIGNED
;
8099 /* now we convert second operand */
8101 if (VT_STRUCT
== (vtop
->type
.t
& VT_BTYPE
))
8104 if (is_float(type
.t
)) {
8106 } else if ((type
.t
& VT_BTYPE
) == VT_LLONG
) {
8107 /* for long longs, we use fixed registers to avoid having
8108 to handle a complicated move */
8113 /* this is horrible, but we must also convert first
8117 /* put again first value and cast it */
8120 if (VT_STRUCT
== (vtop
->type
.t
& VT_BTYPE
))
8130 static void gexpr(void)
8141 /* parse an expression and return its type without any side effect. */
8142 static void expr_type(CType
*type
)
8144 int saved_nocode_wanted
;
8146 saved_nocode_wanted
= nocode_wanted
;
8151 nocode_wanted
= saved_nocode_wanted
;
8154 /* parse a unary expression and return its type without any side
8156 static void unary_type(CType
*type
)
8168 /* parse a constant expression and return value in vtop. */
8169 static void expr_const1(void)
8178 /* parse an integer constant and return its value. */
8179 static int expr_const(void)
8183 if ((vtop
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) != VT_CONST
)
8184 expect("constant expression");
8190 /* return the label token if current token is a label, otherwise
8192 static int is_label(void)
8196 /* fast test first */
8197 if (tok
< TOK_UIDENT
)
8199 /* no need to save tokc because tok is an identifier */
8206 unget_tok(last_tok
);
8211 static void block(int *bsym
, int *csym
, int *case_sym
, int *def_sym
,
8212 int case_reg
, int is_expr
)
8217 /* generate line number info */
8219 (last_line_num
!= file
->line_num
|| last_ind
!= ind
)) {
8220 put_stabn(N_SLINE
, 0, file
->line_num
, ind
- func_ind
);
8222 last_line_num
= file
->line_num
;
8226 /* default return value is (void) */
8228 vtop
->type
.t
= VT_VOID
;
8231 if (tok
== TOK_IF
) {
8238 block(bsym
, csym
, case_sym
, def_sym
, case_reg
, 0);
8240 if (c
== TOK_ELSE
) {
8244 block(bsym
, csym
, case_sym
, def_sym
, case_reg
, 0);
8245 gsym(d
); /* patch else jmp */
8248 } else if (tok
== TOK_WHILE
) {
8256 block(&a
, &b
, case_sym
, def_sym
, case_reg
, 0);
8260 } else if (tok
== '{') {
8264 /* record local declaration stack position */
8266 llabel
= local_label_stack
;
8267 /* handle local labels declarations */
8268 if (tok
== TOK_LABEL
) {
8271 if (tok
< TOK_UIDENT
)
8272 expect("label identifier");
8273 label_push(&local_label_stack
, tok
, LABEL_DECLARED
);
8283 while (tok
!= '}') {
8288 block(bsym
, csym
, case_sym
, def_sym
, case_reg
, is_expr
);
8291 /* pop locally defined labels */
8292 label_pop(&local_label_stack
, llabel
);
8293 /* pop locally defined symbols */
8295 /* XXX: this solution makes only valgrind happy...
8296 triggered by gcc.c-torture/execute/20000917-1.c */
8298 switch(vtop
->type
.t
& VT_BTYPE
) {
8303 for(p
=vtop
->type
.ref
;p
;p
=p
->prev
)
8305 error("unsupported expression type");
8308 sym_pop(&local_stack
, s
);
8310 } else if (tok
== TOK_RETURN
) {
8314 gen_assign_cast(&func_vt
);
8315 if ((func_vt
.t
& VT_BTYPE
) == VT_STRUCT
) {
8317 /* if returning structure, must copy it to implicit
8318 first pointer arg location */
8321 size
= type_size(&func_vt
,&align
);
8324 if((vtop
->r
!= (VT_LOCAL
| VT_LVAL
) || (vtop
->c
.i
& 3))
8328 loc
= (loc
- size
) & -4;
8331 vset(&type
, VT_LOCAL
| VT_LVAL
, addr
);
8334 vset(&int_type
, VT_LOCAL
| VT_LVAL
, addr
);
8336 vtop
->type
= int_type
;
8342 vset(&type
, VT_LOCAL
| VT_LVAL
, func_vc
);
8345 /* copy structure value to pointer */
8350 } else if (is_float(func_vt
.t
)) {
8355 vtop
--; /* NOT vpop() because on x86 it would flush the fp stack */
8358 rsym
= gjmp(rsym
); /* jmp */
8359 } else if (tok
== TOK_BREAK
) {
8362 error("cannot break");
8363 *bsym
= gjmp(*bsym
);
8366 } else if (tok
== TOK_CONTINUE
) {
8369 error("cannot continue");
8370 *csym
= gjmp(*csym
);
8373 } else if (tok
== TOK_FOR
) {
8400 block(&a
, &b
, case_sym
, def_sym
, case_reg
, 0);
8405 if (tok
== TOK_DO
) {
8410 block(&a
, &b
, case_sym
, def_sym
, case_reg
, 0);
8421 if (tok
== TOK_SWITCH
) {
8425 /* XXX: other types than integer */
8426 case_reg
= gv(RC_INT
);
8430 b
= gjmp(0); /* jump to first case */
8432 block(&a
, csym
, &b
, &c
, case_reg
, 0);
8433 /* if no default, jmp after switch */
8441 if (tok
== TOK_CASE
) {
8448 if (gnu_ext
&& tok
== TOK_DOTS
) {
8452 warning("empty case range");
8454 /* since a case is like a label, we must skip it with a jmp */
8461 *case_sym
= gtst(1, 0);
8464 *case_sym
= gtst(1, 0);
8468 *case_sym
= gtst(1, *case_sym
);
8473 goto block_after_label
;
8475 if (tok
== TOK_DEFAULT
) {
8481 error("too many 'default'");
8484 goto block_after_label
;
8486 if (tok
== TOK_GOTO
) {
8488 if (tok
== '*' && gnu_ext
) {
8492 if ((vtop
->type
.t
& VT_BTYPE
) != VT_PTR
)
8495 } else if (tok
>= TOK_UIDENT
) {
8496 s
= label_find(tok
);
8497 /* put forward definition if needed */
8499 s
= label_push(&global_label_stack
, tok
, LABEL_FORWARD
);
8501 if (s
->r
== LABEL_DECLARED
)
8502 s
->r
= LABEL_FORWARD
;
8504 /* label already defined */
8505 if (s
->r
& LABEL_FORWARD
)
8506 s
->next
= (void *)gjmp((long)s
->next
);
8508 gjmp_addr((long)s
->next
);
8511 expect("label identifier");
8514 } else if (tok
== TOK_ASM1
|| tok
== TOK_ASM2
|| tok
== TOK_ASM3
) {
8522 if (s
->r
== LABEL_DEFINED
)
8523 error("duplicate label '%s'", get_tok_str(s
->v
, NULL
));
8524 gsym((long)s
->next
);
8525 s
->r
= LABEL_DEFINED
;
8527 s
= label_push(&global_label_stack
, b
, LABEL_DEFINED
);
8529 s
->next
= (void *)ind
;
8530 /* we accept this, but it is a mistake */
8533 warning("deprecated use of label at end of compound statement");
8537 block(bsym
, csym
, case_sym
, def_sym
, case_reg
, is_expr
);
8540 /* expression case */
8555 /* t is the array or struct type. c is the array or struct
8556 address. cur_index/cur_field is the pointer to the current
8557 value. 'size_only' is true if only size info is needed (only used
8559 static void decl_designator(CType
*type
, Section
*sec
, unsigned long c
,
8560 int *cur_index
, Sym
**cur_field
,
8564 int notfirst
, index
, index_last
, align
, l
, nb_elems
, elem_size
;
8570 if (gnu_ext
&& (l
= is_label()) != 0)
8572 while (tok
== '[' || tok
== '.') {
8574 if (!(type
->t
& VT_ARRAY
))
8575 expect("array type");
8578 index
= expr_const();
8579 if (index
< 0 || (s
->c
>= 0 && index
>= s
->c
))
8580 expect("invalid index");
8581 if (tok
== TOK_DOTS
&& gnu_ext
) {
8583 index_last
= expr_const();
8584 if (index_last
< 0 ||
8585 (s
->c
>= 0 && index_last
>= s
->c
) ||
8587 expect("invalid index");
8593 *cur_index
= index_last
;
8594 type
= pointed_type(type
);
8595 elem_size
= type_size(type
, &align
);
8596 c
+= index
* elem_size
;
8597 /* NOTE: we only support ranges for last designator */
8598 nb_elems
= index_last
- index
+ 1;
8599 if (nb_elems
!= 1) {
8608 if ((type
->t
& VT_BTYPE
) != VT_STRUCT
)
8609 expect("struct/union type");
8622 /* XXX: fix this mess by using explicit storage field */
8624 type1
.t
|= (type
->t
& ~VT_TYPE
);
8638 if (type
->t
& VT_ARRAY
) {
8640 type
= pointed_type(type
);
8641 c
+= index
* type_size(type
, &align
);
8645 error("too many field init");
8646 /* XXX: fix this mess by using explicit storage field */
8648 type1
.t
|= (type
->t
& ~VT_TYPE
);
8653 decl_initializer(type
, sec
, c
, 0, size_only
);
8655 /* XXX: make it more general */
8656 if (!size_only
&& nb_elems
> 1) {
8657 unsigned long c_end
;
8662 error("range init not supported yet for dynamic storage");
8663 c_end
= c
+ nb_elems
* elem_size
;
8664 if (c_end
> sec
->data_allocated
)
8665 section_realloc(sec
, c_end
);
8666 src
= sec
->data
+ c
;
8668 for(i
= 1; i
< nb_elems
; i
++) {
8670 memcpy(dst
, src
, elem_size
);
8676 #define EXPR_CONST 1
8679 /* store a value or an expression directly in global data or in local array */
8680 static void init_putv(CType
*type
, Section
*sec
, unsigned long c
,
8681 int v
, int expr_type
)
8683 int saved_global_expr
, bt
, bit_pos
, bit_size
;
8685 unsigned long long bit_mask
;
8693 /* compound literals must be allocated globally in this case */
8694 saved_global_expr
= global_expr
;
8697 global_expr
= saved_global_expr
;
8698 /* NOTE: symbols are accepted */
8699 if ((vtop
->r
& (VT_VALMASK
| VT_LVAL
)) != VT_CONST
)
8700 error("initializer element is not constant");
8708 dtype
.t
&= ~VT_CONSTANT
; /* need to do that to avoid false warning */
8711 /* XXX: not portable */
8712 /* XXX: generate error if incorrect relocation */
8713 gen_assign_cast(&dtype
);
8714 bt
= type
->t
& VT_BTYPE
;
8715 ptr
= sec
->data
+ c
;
8716 /* XXX: make code faster ? */
8717 if (!(type
->t
& VT_BITFIELD
)) {
8722 bit_pos
= (vtop
->type
.t
>> VT_STRUCT_SHIFT
) & 0x3f;
8723 bit_size
= (vtop
->type
.t
>> (VT_STRUCT_SHIFT
+ 6)) & 0x3f;
8724 bit_mask
= (1LL << bit_size
) - 1;
8726 if ((vtop
->r
& VT_SYM
) &&
8732 (bt
== VT_INT
&& bit_size
!= 32)))
8733 error("initializer element is not computable at load time");
8736 vtop
->c
.i
= (vtop
->c
.i
!= 0);
8738 *(char *)ptr
|= (vtop
->c
.i
& bit_mask
) << bit_pos
;
8741 *(short *)ptr
|= (vtop
->c
.i
& bit_mask
) << bit_pos
;
8744 *(double *)ptr
= vtop
->c
.d
;
8747 *(long double *)ptr
= vtop
->c
.ld
;
8750 *(long long *)ptr
|= (vtop
->c
.ll
& bit_mask
) << bit_pos
;
8753 if (vtop
->r
& VT_SYM
) {
8754 greloc(sec
, vtop
->sym
, c
, R_DATA_32
);
8756 *(int *)ptr
|= (vtop
->c
.i
& bit_mask
) << bit_pos
;
8761 vset(&dtype
, VT_LOCAL
|VT_LVAL
, c
);
8768 /* put zeros for variable based init */
8769 static void init_putz(CType
*t
, Section
*sec
, unsigned long c
, int size
)
8772 /* nothing to do because globals are already set to zero */
8774 vpush_global_sym(&func_old_type
, TOK_memset
);
8782 /* 't' contains the type and storage info. 'c' is the offset of the
8783 object in section 'sec'. If 'sec' is NULL, it means stack based
8784 allocation. 'first' is true if array '{' must be read (multi
8785 dimension implicit array init handling). 'size_only' is true if
8786 size only evaluation is wanted (only for arrays). */
8787 static void decl_initializer(CType
*type
, Section
*sec
, unsigned long c
,
8788 int first
, int size_only
)
8790 int index
, array_length
, n
, no_oblock
, nb
, parlevel
, i
;
8791 int size1
, align1
, expr_type
;
8795 if (type
->t
& VT_ARRAY
) {
8799 t1
= pointed_type(type
);
8800 size1
= type_size(t1
, &align1
);
8803 if ((first
&& tok
!= TOK_LSTR
&& tok
!= TOK_STR
) ||
8809 /* only parse strings here if correct type (otherwise: handle
8810 them as ((w)char *) expressions */
8811 if ((tok
== TOK_LSTR
&&
8812 #ifdef TCC_TARGET_PE
8813 (t1
->t
& VT_BTYPE
) == VT_SHORT
&& (t1
->t
& VT_UNSIGNED
)
8815 (t1
->t
& VT_BTYPE
) == VT_INT
8817 ) || (tok
== TOK_STR
&& (t1
->t
& VT_BTYPE
) == VT_BYTE
)) {
8818 while (tok
== TOK_STR
|| tok
== TOK_LSTR
) {
8823 /* compute maximum number of chars wanted */
8825 cstr_len
= cstr
->size
;
8827 cstr_len
= cstr
->size
/ sizeof(nwchar_t
);
8830 if (n
>= 0 && nb
> (n
- array_length
))
8831 nb
= n
- array_length
;
8834 warning("initializer-string for array is too long");
8835 /* in order to go faster for common case (char
8836 string in global variable, we handle it
8838 if (sec
&& tok
== TOK_STR
&& size1
== 1) {
8839 memcpy(sec
->data
+ c
+ array_length
, cstr
->data
, nb
);
8843 ch
= ((unsigned char *)cstr
->data
)[i
];
8845 ch
= ((nwchar_t
*)cstr
->data
)[i
];
8846 init_putv(t1
, sec
, c
+ (array_length
+ i
) * size1
,
8854 /* only add trailing zero if enough storage (no
8855 warning in this case since it is standard) */
8856 if (n
< 0 || array_length
< n
) {
8858 init_putv(t1
, sec
, c
+ (array_length
* size1
), 0, EXPR_VAL
);
8864 while (tok
!= '}') {
8865 decl_designator(type
, sec
, c
, &index
, NULL
, size_only
);
8866 if (n
>= 0 && index
>= n
)
8867 error("index too large");
8868 /* must put zero in holes (note that doing it that way
8869 ensures that it even works with designators) */
8870 if (!size_only
&& array_length
< index
) {
8871 init_putz(t1
, sec
, c
+ array_length
* size1
,
8872 (index
- array_length
) * size1
);
8875 if (index
> array_length
)
8876 array_length
= index
;
8877 /* special test for multi dimensional arrays (may not
8878 be strictly correct if designators are used at the
8880 if (index
>= n
&& no_oblock
)
8889 /* put zeros at the end */
8890 if (!size_only
&& n
>= 0 && array_length
< n
) {
8891 init_putz(t1
, sec
, c
+ array_length
* size1
,
8892 (n
- array_length
) * size1
);
8894 /* patch type size if needed */
8896 s
->c
= array_length
;
8897 } else if ((type
->t
& VT_BTYPE
) == VT_STRUCT
&&
8898 (sec
|| !first
|| tok
== '{')) {
8901 /* NOTE: the previous test is a specific case for automatic
8902 struct/union init */
8903 /* XXX: union needs only one init */
8905 /* XXX: this test is incorrect for local initializers
8906 beginning with ( without {. It would be much more difficult
8907 to do it correctly (ideally, the expression parser should
8908 be used in all cases) */
8914 while (tok
== '(') {
8918 if (!parse_btype(&type1
, &ad1
))
8920 type_decl(&type1
, &ad1
, &n
, TYPE_ABSTRACT
);
8922 if (!is_assignable_types(type
, &type1
))
8923 error("invalid type for cast");
8928 if (first
|| tok
== '{') {
8937 while (tok
!= '}') {
8938 decl_designator(type
, sec
, c
, NULL
, &f
, size_only
);
8940 if (!size_only
&& array_length
< index
) {
8941 init_putz(type
, sec
, c
+ array_length
,
8942 index
- array_length
);
8944 index
= index
+ type_size(&f
->type
, &align1
);
8945 if (index
> array_length
)
8946 array_length
= index
;
8948 if (no_oblock
&& f
== NULL
)
8954 /* put zeros at the end */
8955 if (!size_only
&& array_length
< n
) {
8956 init_putz(type
, sec
, c
+ array_length
,
8965 } else if (tok
== '{') {
8967 decl_initializer(type
, sec
, c
, first
, size_only
);
8969 } else if (size_only
) {
8970 /* just skip expression */
8972 while ((parlevel
> 0 || (tok
!= '}' && tok
!= ',')) &&
8976 else if (tok
== ')')
8981 /* currently, we always use constant expression for globals
8982 (may change for scripting case) */
8983 expr_type
= EXPR_CONST
;
8985 expr_type
= EXPR_ANY
;
8986 init_putv(type
, sec
, c
, 0, expr_type
);
8990 /* parse an initializer for type 't' if 'has_init' is non zero, and
8991 allocate space in local or global data space ('r' is either
8992 VT_LOCAL or VT_CONST). If 'v' is non zero, then an associated
8993 variable 'v' of scope 'scope' is declared before initializers are
8994 parsed. If 'v' is zero, then a reference to the new object is put
8995 in the value stack. If 'has_init' is 2, a special parsing is done
8996 to handle string constants. */
8997 static void decl_initializer_alloc(CType
*type
, AttributeDef
*ad
, int r
,
8998 int has_init
, int v
, int scope
)
9000 int size
, align
, addr
, data_offset
;
9002 ParseState saved_parse_state
;
9003 TokenString init_str
;
9006 size
= type_size(type
, &align
);
9007 /* If unknown size, we must evaluate it before
9008 evaluating initializers because
9009 initializers can generate global data too
9010 (e.g. string pointers or ISOC99 compound
9011 literals). It also simplifies local
9012 initializers handling */
9013 tok_str_new(&init_str
);
9016 error("unknown type size");
9017 /* get all init string */
9018 if (has_init
== 2) {
9019 /* only get strings */
9020 while (tok
== TOK_STR
|| tok
== TOK_LSTR
) {
9021 tok_str_add_tok(&init_str
);
9026 while (level
> 0 || (tok
!= ',' && tok
!= ';')) {
9028 error("unexpected end of file in initializer");
9029 tok_str_add_tok(&init_str
);
9032 else if (tok
== '}') {
9040 tok_str_add(&init_str
, -1);
9041 tok_str_add(&init_str
, 0);
9044 save_parse_state(&saved_parse_state
);
9046 macro_ptr
= init_str
.str
;
9048 decl_initializer(type
, NULL
, 0, 1, 1);
9049 /* prepare second initializer parsing */
9050 macro_ptr
= init_str
.str
;
9053 /* if still unknown size, error */
9054 size
= type_size(type
, &align
);
9056 error("unknown type size");
9058 /* take into account specified alignment if bigger */
9060 if (ad
->aligned
> align
)
9061 align
= ad
->aligned
;
9062 } else if (ad
->packed
) {
9065 if ((r
& VT_VALMASK
) == VT_LOCAL
) {
9067 if (do_bounds_check
&& (type
->t
& VT_ARRAY
))
9069 loc
= (loc
- size
) & -align
;
9071 /* handles bounds */
9072 /* XXX: currently, since we do only one pass, we cannot track
9073 '&' operators, so we add only arrays */
9074 if (do_bounds_check
&& (type
->t
& VT_ARRAY
)) {
9075 unsigned long *bounds_ptr
;
9076 /* add padding between regions */
9078 /* then add local bound info */
9079 bounds_ptr
= section_ptr_add(lbounds_section
, 2 * sizeof(unsigned long));
9080 bounds_ptr
[0] = addr
;
9081 bounds_ptr
[1] = size
;
9084 /* local variable */
9085 sym_push(v
, type
, r
, addr
);
9087 /* push local reference */
9088 vset(type
, r
, addr
);
9094 if (v
&& scope
== VT_CONST
) {
9095 /* see if the symbol was already defined */
9098 if (!is_compatible_types(&sym
->type
, type
))
9099 error("incompatible types for redefinition of '%s'",
9100 get_tok_str(v
, NULL
));
9101 if (sym
->type
.t
& VT_EXTERN
) {
9102 /* if the variable is extern, it was not allocated */
9103 sym
->type
.t
&= ~VT_EXTERN
;
9104 /* set array size if it was ommited in extern
9106 if ((sym
->type
.t
& VT_ARRAY
) &&
9107 sym
->type
.ref
->c
< 0 &&
9109 sym
->type
.ref
->c
= type
->ref
->c
;
9111 /* we accept several definitions of the same
9112 global variable. this is tricky, because we
9113 must play with the SHN_COMMON type of the symbol */
9114 /* XXX: should check if the variable was already
9115 initialized. It is incorrect to initialized it
9117 /* no init data, we won't add more to the symbol */
9124 /* allocate symbol in corresponding section */
9129 else if (tcc_state
->nocommon
)
9133 data_offset
= sec
->data_offset
;
9134 data_offset
= (data_offset
+ align
- 1) & -align
;
9136 /* very important to increment global pointer at this time
9137 because initializers themselves can create new initializers */
9138 data_offset
+= size
;
9139 /* add padding if bound check */
9140 if (do_bounds_check
)
9142 sec
->data_offset
= data_offset
;
9143 /* allocate section space to put the data */
9144 if (sec
->sh_type
!= SHT_NOBITS
&&
9145 data_offset
> sec
->data_allocated
)
9146 section_realloc(sec
, data_offset
);
9147 /* align section if needed */
9148 if (align
> sec
->sh_addralign
)
9149 sec
->sh_addralign
= align
;
9151 addr
= 0; /* avoid warning */
9155 if (scope
!= VT_CONST
|| !sym
) {
9156 sym
= sym_push(v
, type
, r
| VT_SYM
, 0);
9158 /* update symbol definition */
9160 put_extern_sym(sym
, sec
, addr
, size
);
9163 /* put a common area */
9164 put_extern_sym(sym
, NULL
, align
, size
);
9165 /* XXX: find a nicer way */
9166 esym
= &((ElfW(Sym
) *)symtab_section
->data
)[sym
->c
];
9167 esym
->st_shndx
= SHN_COMMON
;
9172 /* push global reference */
9173 sym
= get_sym_ref(type
, sec
, addr
, size
);
9175 vsetc(type
, VT_CONST
| VT_SYM
, &cval
);
9179 /* handles bounds now because the symbol must be defined
9180 before for the relocation */
9181 if (do_bounds_check
) {
9182 unsigned long *bounds_ptr
;
9184 greloc(bounds_section
, sym
, bounds_section
->data_offset
, R_DATA_32
);
9185 /* then add global bound info */
9186 bounds_ptr
= section_ptr_add(bounds_section
, 2 * sizeof(long));
9187 bounds_ptr
[0] = 0; /* relocated */
9188 bounds_ptr
[1] = size
;
9192 decl_initializer(type
, sec
, addr
, 1, 0);
9193 /* restore parse state if needed */
9195 tok_str_free(init_str
.str
);
9196 restore_parse_state(&saved_parse_state
);
9202 void put_func_debug(Sym
*sym
)
9207 /* XXX: we put here a dummy type */
9208 snprintf(buf
, sizeof(buf
), "%s:%c1",
9209 funcname
, sym
->type
.t
& VT_STATIC
? 'f' : 'F');
9210 put_stabs_r(buf
, N_FUN
, 0, file
->line_num
, 0,
9211 cur_text_section
, sym
->c
);
9212 /* //gr gdb wants a line at the function */
9213 put_stabn(N_SLINE
, 0, file
->line_num
, 0);
9218 /* parse an old style function declaration list */
9219 /* XXX: check multiple parameter */
9220 static void func_decl_list(Sym
*func_sym
)
9227 /* parse each declaration */
9228 while (tok
!= '{' && tok
!= ';' && tok
!= ',' && tok
!= TOK_EOF
) {
9229 if (!parse_btype(&btype
, &ad
))
9230 expect("declaration list");
9231 if (((btype
.t
& VT_BTYPE
) == VT_ENUM
||
9232 (btype
.t
& VT_BTYPE
) == VT_STRUCT
) &&
9234 /* we accept no variable after */
9238 type_decl(&type
, &ad
, &v
, TYPE_DIRECT
);
9239 /* find parameter in function parameter list */
9242 if ((s
->v
& ~SYM_FIELD
) == v
)
9246 error("declaration for parameter '%s' but no such parameter",
9247 get_tok_str(v
, NULL
));
9249 /* check that no storage specifier except 'register' was given */
9250 if (type
.t
& VT_STORAGE
)
9251 error("storage class specified for '%s'", get_tok_str(v
, NULL
));
9252 convert_parameter_type(&type
);
9253 /* we can add the type (NOTE: it could be local to the function) */
9255 /* accept other parameters */
9266 /* parse a function defined by symbol 'sym' and generate its code in
9267 'cur_text_section' */
9268 static void gen_function(Sym
*sym
)
9270 int saved_nocode_wanted
= nocode_wanted
;
9272 ind
= cur_text_section
->data_offset
;
9273 /* NOTE: we patch the symbol size later */
9274 put_extern_sym(sym
, cur_text_section
, ind
, 0);
9275 funcname
= get_tok_str(sym
->v
, NULL
);
9277 /* put debug symbol */
9279 put_func_debug(sym
);
9280 /* push a dummy symbol to enable local sym storage */
9281 sym_push2(&local_stack
, SYM_FIELD
, 0, 0);
9282 gfunc_prolog(&sym
->type
);
9284 block(NULL
, NULL
, NULL
, NULL
, 0, 0);
9287 cur_text_section
->data_offset
= ind
;
9288 label_pop(&global_label_stack
, NULL
);
9289 sym_pop(&local_stack
, NULL
); /* reset local stack */
9290 /* end of function */
9291 /* patch symbol size */
9292 ((ElfW(Sym
) *)symtab_section
->data
)[sym
->c
].st_size
=
9295 put_stabn(N_FUN
, 0, 0, ind
- func_ind
);
9297 /* It's better to crash than to generate wrong code */
9298 cur_text_section
= NULL
;
9299 funcname
= ""; /* for safety */
9300 func_vt
.t
= VT_VOID
; /* for safety */
9301 ind
= 0; /* for safety */
9302 nocode_wanted
= saved_nocode_wanted
;
9305 static void gen_inline_functions(void)
9309 int *str
, inline_generated
;
9311 /* iterate while inline function are referenced */
9313 inline_generated
= 0;
9314 for(sym
= global_stack
; sym
!= NULL
; sym
= sym
->prev
) {
9316 if (((type
->t
& VT_BTYPE
) == VT_FUNC
) &&
9317 (type
->t
& (VT_STATIC
| VT_INLINE
)) ==
9318 (VT_STATIC
| VT_INLINE
) &&
9320 /* the function was used: generate its code and
9321 convert it to a normal function */
9322 str
= INLINE_DEF(sym
->r
);
9323 sym
->r
= VT_SYM
| VT_CONST
;
9324 sym
->type
.t
&= ~VT_INLINE
;
9328 cur_text_section
= text_section
;
9330 macro_ptr
= NULL
; /* fail safe */
9333 inline_generated
= 1;
9336 if (!inline_generated
)
9340 /* free all remaining inline function tokens */
9341 for(sym
= global_stack
; sym
!= NULL
; sym
= sym
->prev
) {
9343 if (((type
->t
& VT_BTYPE
) == VT_FUNC
) &&
9344 (type
->t
& (VT_STATIC
| VT_INLINE
)) ==
9345 (VT_STATIC
| VT_INLINE
)) {
9346 //gr printf("sym %d %s\n", sym->r, get_tok_str(sym->v, NULL));
9347 if (sym
->r
== (VT_SYM
| VT_CONST
)) //gr beware!
9349 str
= INLINE_DEF(sym
->r
);
9351 sym
->r
= 0; /* fail safe */
9356 /* 'l' is VT_LOCAL or VT_CONST to define default storage type */
9357 static void decl(int l
)
9365 if (!parse_btype(&btype
, &ad
)) {
9366 /* skip redundant ';' */
9367 /* XXX: find more elegant solution */
9372 if (l
== VT_CONST
&&
9373 (tok
== TOK_ASM1
|| tok
== TOK_ASM2
|| tok
== TOK_ASM3
)) {
9374 /* global asm block */
9378 /* special test for old K&R protos without explicit int
9379 type. Only accepted when defining global data */
9380 if (l
== VT_LOCAL
|| tok
< TOK_DEFINE
)
9384 if (((btype
.t
& VT_BTYPE
) == VT_ENUM
||
9385 (btype
.t
& VT_BTYPE
) == VT_STRUCT
) &&
9387 /* we accept no variable after */
9391 while (1) { /* iterate thru each declaration */
9393 type_decl(&type
, &ad
, &v
, TYPE_DIRECT
);
9397 type_to_str(buf
, sizeof(buf
), t
, get_tok_str(v
, NULL
));
9398 printf("type = '%s'\n", buf
);
9401 if ((type
.t
& VT_BTYPE
) == VT_FUNC
) {
9402 /* if old style function prototype, we accept a
9405 if (sym
->c
== FUNC_OLD
)
9406 func_decl_list(sym
);
9411 error("cannot use local functions");
9412 if ((type
.t
& VT_BTYPE
) != VT_FUNC
)
9413 expect("function definition");
9415 /* reject abstract declarators in function definition */
9417 while ((sym
= sym
->next
) != NULL
)
9418 if (!(sym
->v
& ~SYM_FIELD
))
9419 expect("identifier");
9421 /* XXX: cannot do better now: convert extern line to static inline */
9422 if ((type
.t
& (VT_EXTERN
| VT_INLINE
)) == (VT_EXTERN
| VT_INLINE
))
9423 type
.t
= (type
.t
& ~VT_EXTERN
) | VT_STATIC
;
9427 if ((sym
->type
.t
& VT_BTYPE
) != VT_FUNC
)
9429 /* specific case: if not func_call defined, we put
9430 the one of the prototype */
9431 /* XXX: should have default value */
9432 r
= sym
->type
.ref
->r
;
9433 if (FUNC_CALL(r
) != FUNC_CDECL
9434 && FUNC_CALL(type
.ref
->r
) == FUNC_CDECL
)
9435 FUNC_CALL(type
.ref
->r
) = FUNC_CALL(r
);
9437 FUNC_EXPORT(type
.ref
->r
) = 1;
9439 if (!is_compatible_types(&sym
->type
, &type
)) {
9441 error("incompatible types for redefinition of '%s'",
9442 get_tok_str(v
, NULL
));
9444 /* if symbol is already defined, then put complete type */
9447 /* put function symbol */
9448 sym
= global_identifier_push(v
, type
.t
, 0);
9449 sym
->type
.ref
= type
.ref
;
9452 /* static inline functions are just recorded as a kind
9453 of macro. Their code will be emitted at the end of
9454 the compilation unit only if they are used */
9455 if ((type
.t
& (VT_INLINE
| VT_STATIC
)) ==
9456 (VT_INLINE
| VT_STATIC
)) {
9457 TokenString func_str
;
9460 tok_str_new(&func_str
);
9466 error("unexpected end of file");
9467 tok_str_add_tok(&func_str
);
9472 } else if (t
== '}') {
9474 if (block_level
== 0)
9478 tok_str_add(&func_str
, -1);
9479 tok_str_add(&func_str
, 0);
9480 INLINE_DEF(sym
->r
) = func_str
.str
;
9482 /* compute text section */
9483 cur_text_section
= ad
.section
;
9484 if (!cur_text_section
)
9485 cur_text_section
= text_section
;
9486 sym
->r
= VT_SYM
| VT_CONST
;
9491 if (btype
.t
& VT_TYPEDEF
) {
9492 /* save typedefed type */
9493 /* XXX: test storage specifiers ? */
9494 sym
= sym_push(v
, &type
, 0, 0);
9495 sym
->type
.t
|= VT_TYPEDEF
;
9496 } else if ((type
.t
& VT_BTYPE
) == VT_FUNC
) {
9497 /* external function definition */
9498 /* specific case for func_call attribute */
9500 type
.ref
->r
= ad
.func_attr
;
9501 external_sym(v
, &type
, 0);
9503 /* not lvalue if array */
9505 if (!(type
.t
& VT_ARRAY
))
9506 r
|= lvalue_type(type
.t
);
9507 has_init
= (tok
== '=');
9508 if ((btype
.t
& VT_EXTERN
) ||
9509 ((type
.t
& VT_ARRAY
) && (type
.t
& VT_STATIC
) &&
9510 !has_init
&& l
== VT_CONST
&& type
.ref
->c
< 0)) {
9511 /* external variable */
9512 /* NOTE: as GCC, uninitialized global static
9513 arrays of null size are considered as
9515 external_sym(v
, &type
, r
);
9517 type
.t
|= (btype
.t
& VT_STATIC
); /* Retain "static". */
9518 if (type
.t
& VT_STATIC
)
9524 decl_initializer_alloc(&type
, &ad
, r
,
9538 /* better than nothing, but needs extension to handle '-E' option
9540 static void preprocess_init(TCCState
*s1
)
9542 s1
->include_stack_ptr
= s1
->include_stack
;
9543 /* XXX: move that before to avoid having to initialize
9544 file->ifdef_stack_ptr ? */
9545 s1
->ifdef_stack_ptr
= s1
->ifdef_stack
;
9546 file
->ifdef_stack_ptr
= s1
->ifdef_stack_ptr
;
9548 /* XXX: not ANSI compliant: bound checking says error */
9550 s1
->pack_stack
[0] = 0;
9551 s1
->pack_stack_ptr
= s1
->pack_stack
;
9554 /* compile the C file opened in 'file'. Return non zero if errors. */
9555 static int tcc_compile(TCCState
*s1
)
9559 volatile int section_sym
;
9562 printf("%s: **** new file\n", file
->filename
);
9564 preprocess_init(s1
);
9566 cur_text_section
= NULL
;
9568 anon_sym
= SYM_FIRST_ANOM
;
9570 /* file info: full path + filename */
9571 section_sym
= 0; /* avoid warning */
9573 section_sym
= put_elf_sym(symtab_section
, 0, 0,
9574 ELFW(ST_INFO
)(STB_LOCAL
, STT_SECTION
), 0,
9575 text_section
->sh_num
, NULL
);
9576 getcwd(buf
, sizeof(buf
));
9578 normalize_slashes(buf
);
9580 pstrcat(buf
, sizeof(buf
), "/");
9581 put_stabs_r(buf
, N_SO
, 0, 0,
9582 text_section
->data_offset
, text_section
, section_sym
);
9583 put_stabs_r(file
->filename
, N_SO
, 0, 0,
9584 text_section
->data_offset
, text_section
, section_sym
);
9586 /* an elf symbol of type STT_FILE must be put so that STB_LOCAL
9587 symbols can be safely used */
9588 put_elf_sym(symtab_section
, 0, 0,
9589 ELFW(ST_INFO
)(STB_LOCAL
, STT_FILE
), 0,
9590 SHN_ABS
, file
->filename
);
9592 /* define some often used types */
9593 int_type
.t
= VT_INT
;
9595 char_pointer_type
.t
= VT_BYTE
;
9596 mk_pointer(&char_pointer_type
);
9598 func_old_type
.t
= VT_FUNC
;
9599 func_old_type
.ref
= sym_push(SYM_FIELD
, &int_type
, FUNC_CDECL
, FUNC_OLD
);
9601 #if defined(TCC_ARM_EABI) && defined(TCC_ARM_VFP)
9602 float_type
.t
= VT_FLOAT
;
9603 double_type
.t
= VT_DOUBLE
;
9605 func_float_type
.t
= VT_FUNC
;
9606 func_float_type
.ref
= sym_push(SYM_FIELD
, &float_type
, FUNC_CDECL
, FUNC_OLD
);
9607 func_double_type
.t
= VT_FUNC
;
9608 func_double_type
.ref
= sym_push(SYM_FIELD
, &double_type
, FUNC_CDECL
, FUNC_OLD
);
9612 /* define 'void *alloca(unsigned int)' builtin function */
9617 sym
= sym_push(p
, mk_pointer(VT_VOID
), FUNC_CDECL
, FUNC_NEW
);
9618 s1
= sym_push(SYM_FIELD
, VT_UNSIGNED
| VT_INT
, 0, 0);
9621 sym_push(TOK_alloca
, VT_FUNC
| (p
<< VT_STRUCT_SHIFT
), VT_CONST
, 0);
9625 define_start
= define_stack
;
9628 if (setjmp(s1
->error_jmp_buf
) == 0) {
9630 s1
->error_set_jmp_enabled
= 1;
9632 ch
= file
->buf_ptr
[0];
9633 tok_flags
= TOK_FLAG_BOL
| TOK_FLAG_BOF
;
9634 parse_flags
= PARSE_FLAG_PREPROCESS
| PARSE_FLAG_TOK_NUM
;
9638 expect("declaration");
9640 /* end of translation unit info */
9642 put_stabs_r(NULL
, N_SO
, 0, 0,
9643 text_section
->data_offset
, text_section
, section_sym
);
9646 s1
->error_set_jmp_enabled
= 0;
9648 /* reset define stack, but leave -Dsymbols (may be incorrect if
9649 they are undefined) */
9650 free_defines(define_start
);
9652 gen_inline_functions();
9654 sym_pop(&global_stack
, NULL
);
9655 sym_pop(&local_stack
, NULL
);
9657 return s1
->nb_errors
!= 0 ? -1 : 0;
9660 /* Preprocess the current file */
9661 /* XXX: add line and file infos, add options to preserve spaces */
9662 static int tcc_preprocess(TCCState
*s1
)
9665 BufferedFile
*file_ref
;
9666 int token_seen
, line_ref
;
9668 preprocess_init(s1
);
9669 define_start
= define_stack
;
9670 ch
= file
->buf_ptr
[0];
9672 tok_flags
= TOK_FLAG_BOL
| TOK_FLAG_BOF
;
9673 parse_flags
= PARSE_FLAG_ASM_COMMENTS
| PARSE_FLAG_PREPROCESS
|
9674 PARSE_FLAG_LINEFEED
;
9682 if (tok
== TOK_EOF
) {
9684 } else if (tok
== TOK_LINEFEED
) {
9689 } else if (token_seen
) {
9690 fputc(' ', s1
->outfile
);
9692 int d
= file
->line_num
- line_ref
;
9693 if (file
!= file_ref
|| d
< 0 || d
>= 8)
9694 fprintf(s1
->outfile
, "# %d \"%s\"\n", file
->line_num
, file
->filename
);
9697 fputs("\n", s1
->outfile
), --d
;
9698 line_ref
= (file_ref
= file
)->line_num
;
9701 fputs(get_tok_str(tok
, &tokc
), s1
->outfile
);
9703 free_defines(define_start
);
9708 int tcc_compile_string(TCCState
*s
, const char *str
)
9710 BufferedFile bf1
, *bf
= &bf1
;
9714 /* init file structure */
9716 /* XXX: avoid copying */
9718 buf
= tcc_malloc(len
+ 1);
9721 memcpy(buf
, str
, len
);
9724 bf
->buf_end
= buf
+ len
;
9725 pstrcpy(bf
->filename
, sizeof(bf
->filename
), "<string>");
9728 ret
= tcc_compile(s
);
9732 /* currently, no need to close */
9737 /* define a preprocessor symbol. A value can also be provided with the '=' operator */
9738 void tcc_define_symbol(TCCState
*s1
, const char *sym
, const char *value
)
9740 BufferedFile bf1
, *bf
= &bf1
;
9742 pstrcpy(bf
->buffer
, IO_BUF_SIZE
, sym
);
9743 pstrcat(bf
->buffer
, IO_BUF_SIZE
, " ");
9747 pstrcat(bf
->buffer
, IO_BUF_SIZE
, value
);
9749 /* init file structure */
9751 bf
->buf_ptr
= bf
->buffer
;
9752 bf
->buf_end
= bf
->buffer
+ strlen(bf
->buffer
);
9753 *bf
->buf_end
= CH_EOB
;
9754 bf
->filename
[0] = '\0';
9758 s1
->include_stack_ptr
= s1
->include_stack
;
9760 /* parse with define parser */
9761 ch
= file
->buf_ptr
[0];
9767 /* undefine a preprocessor symbol */
9768 void tcc_undefine_symbol(TCCState
*s1
, const char *sym
)
9772 ts
= tok_alloc(sym
, strlen(sym
));
9773 s
= define_find(ts
->tok
);
9774 /* undefine symbol by putting an invalid name */
9779 #ifdef CONFIG_TCC_ASM
9781 #ifdef TCC_TARGET_I386
9782 #include "i386-asm.c"
9787 static void asm_instr(void)
9789 error("inline asm() not supported");
9791 static void asm_global_instr(void)
9793 error("inline asm() not supported");
9799 #ifdef TCC_TARGET_COFF
9800 #include "tcccoff.c"
9803 #ifdef TCC_TARGET_PE
9807 /* print the position in the source file of PC value 'pc' by reading
9808 the stabs debug information */
9809 static void rt_printline(unsigned long wanted_pc
)
9811 Stab_Sym
*sym
, *sym_end
;
9812 char func_name
[128], last_func_name
[128];
9813 unsigned long func_addr
, last_pc
, pc
;
9814 const char *incl_files
[INCLUDE_STACK_SIZE
];
9815 int incl_index
, len
, last_line_num
, i
;
9816 const char *str
, *p
;
9818 fprintf(stderr
, "0x%08lx:", wanted_pc
);
9820 func_name
[0] = '\0';
9823 last_func_name
[0] = '\0';
9824 last_pc
= 0xffffffff;
9826 sym
= (Stab_Sym
*)stab_section
->data
+ 1;
9827 sym_end
= (Stab_Sym
*)(stab_section
->data
+ stab_section
->data_offset
);
9828 while (sym
< sym_end
) {
9829 switch(sym
->n_type
) {
9830 /* function start or end */
9832 if (sym
->n_strx
== 0) {
9833 /* we test if between last line and end of function */
9834 pc
= sym
->n_value
+ func_addr
;
9835 if (wanted_pc
>= last_pc
&& wanted_pc
< pc
)
9837 func_name
[0] = '\0';
9840 str
= stabstr_section
->data
+ sym
->n_strx
;
9841 p
= strchr(str
, ':');
9843 pstrcpy(func_name
, sizeof(func_name
), str
);
9846 if (len
> sizeof(func_name
) - 1)
9847 len
= sizeof(func_name
) - 1;
9848 memcpy(func_name
, str
, len
);
9849 func_name
[len
] = '\0';
9851 func_addr
= sym
->n_value
;
9854 /* line number info */
9856 pc
= sym
->n_value
+ func_addr
;
9857 if (wanted_pc
>= last_pc
&& wanted_pc
< pc
)
9860 last_line_num
= sym
->n_desc
;
9862 strcpy(last_func_name
, func_name
);
9866 str
= stabstr_section
->data
+ sym
->n_strx
;
9868 if (incl_index
< INCLUDE_STACK_SIZE
) {
9869 incl_files
[incl_index
++] = str
;
9877 if (sym
->n_strx
== 0) {
9878 incl_index
= 0; /* end of translation unit */
9880 str
= stabstr_section
->data
+ sym
->n_strx
;
9881 /* do not add path */
9883 if (len
> 0 && str
[len
- 1] != '/')
9891 /* second pass: we try symtab symbols (no line number info) */
9894 ElfW(Sym
) *sym
, *sym_end
;
9897 sym_end
= (ElfW(Sym
) *)(symtab_section
->data
+ symtab_section
->data_offset
);
9898 for(sym
= (ElfW(Sym
) *)symtab_section
->data
+ 1;
9901 type
= ELFW(ST_TYPE
)(sym
->st_info
);
9902 if (type
== STT_FUNC
) {
9903 if (wanted_pc
>= sym
->st_value
&&
9904 wanted_pc
< sym
->st_value
+ sym
->st_size
) {
9905 pstrcpy(last_func_name
, sizeof(last_func_name
),
9906 strtab_section
->data
+ sym
->st_name
);
9912 /* did not find any info: */
9913 fprintf(stderr
, " ???\n");
9916 if (last_func_name
[0] != '\0') {
9917 fprintf(stderr
, " %s()", last_func_name
);
9919 if (incl_index
> 0) {
9920 fprintf(stderr
, " (%s:%d",
9921 incl_files
[incl_index
- 1], last_line_num
);
9922 for(i
= incl_index
- 2; i
>= 0; i
--)
9923 fprintf(stderr
, ", included from %s", incl_files
[i
]);
9924 fprintf(stderr
, ")");
9926 fprintf(stderr
, "\n");
9929 #if !defined(_WIN32) && !defined(CONFIG_TCCBOOT)
9933 /* fix for glibc 2.1 */
9939 /* return the PC at frame level 'level'. Return non zero if not found */
9940 static int rt_get_caller_pc(unsigned long *paddr
,
9941 ucontext_t
*uc
, int level
)
9947 #if defined(__FreeBSD__)
9948 *paddr
= uc
->uc_mcontext
.mc_eip
;
9949 #elif defined(__dietlibc__)
9950 *paddr
= uc
->uc_mcontext
.eip
;
9952 *paddr
= uc
->uc_mcontext
.gregs
[REG_EIP
];
9956 #if defined(__FreeBSD__)
9957 fp
= uc
->uc_mcontext
.mc_ebp
;
9958 #elif defined(__dietlibc__)
9959 fp
= uc
->uc_mcontext
.ebp
;
9961 fp
= uc
->uc_mcontext
.gregs
[REG_EBP
];
9963 for(i
=1;i
<level
;i
++) {
9964 /* XXX: check address validity with program info */
9965 if (fp
<= 0x1000 || fp
>= 0xc0000000)
9967 fp
= ((unsigned long *)fp
)[0];
9969 *paddr
= ((unsigned long *)fp
)[1];
9975 #warning add arch specific rt_get_caller_pc()
9977 static int rt_get_caller_pc(unsigned long *paddr
,
9978 ucontext_t
*uc
, int level
)
9984 /* emit a run time error at position 'pc' */
9985 void rt_error(ucontext_t
*uc
, const char *fmt
, ...)
9992 fprintf(stderr
, "Runtime error: ");
9993 vfprintf(stderr
, fmt
, ap
);
9994 fprintf(stderr
, "\n");
9995 for(i
=0;i
<num_callers
;i
++) {
9996 if (rt_get_caller_pc(&pc
, uc
, i
) < 0)
9999 fprintf(stderr
, "at ");
10001 fprintf(stderr
, "by ");
10008 /* signal handler for fatal errors */
10009 static void sig_error(int signum
, siginfo_t
*siginf
, void *puc
)
10011 ucontext_t
*uc
= puc
;
10015 switch(siginf
->si_code
) {
10018 rt_error(uc
, "division by zero");
10021 rt_error(uc
, "floating point exception");
10027 if (rt_bound_error_msg
&& *rt_bound_error_msg
)
10028 rt_error(uc
, *rt_bound_error_msg
);
10030 rt_error(uc
, "dereferencing invalid pointer");
10033 rt_error(uc
, "illegal instruction");
10036 rt_error(uc
, "abort() called");
10039 rt_error(uc
, "caught signal %d", signum
);
10046 /* do all relocations (needed before using tcc_get_symbol()) */
10047 int tcc_relocate(TCCState
*s1
)
10054 #ifdef TCC_TARGET_PE
10055 pe_add_runtime(s1
);
10057 tcc_add_runtime(s1
);
10060 relocate_common_syms();
10062 tcc_add_linker_symbols(s1
);
10063 #ifndef TCC_TARGET_PE
10064 build_got_entries(s1
);
10066 /* compute relocation address : section are relocated in place. We
10067 also alloc the bss space */
10068 for(i
= 1; i
< s1
->nb_sections
; i
++) {
10069 s
= s1
->sections
[i
];
10070 if (s
->sh_flags
& SHF_ALLOC
) {
10071 if (s
->sh_type
== SHT_NOBITS
)
10072 s
->data
= tcc_mallocz(s
->data_offset
);
10073 s
->sh_addr
= (unsigned long)s
->data
;
10077 relocate_syms(s1
, 1);
10079 if (s1
->nb_errors
!= 0)
10082 /* relocate each section */
10083 for(i
= 1; i
< s1
->nb_sections
; i
++) {
10084 s
= s1
->sections
[i
];
10086 relocate_section(s1
, s
);
10089 /* mark executable sections as executable in memory */
10090 for(i
= 1; i
< s1
->nb_sections
; i
++) {
10091 s
= s1
->sections
[i
];
10092 if ((s
->sh_flags
& (SHF_ALLOC
| SHF_EXECINSTR
)) ==
10093 (SHF_ALLOC
| SHF_EXECINSTR
))
10094 set_pages_executable(s
->data
, s
->data_offset
);
10099 /* launch the compiled program with the given arguments */
10100 int tcc_run(TCCState
*s1
, int argc
, char **argv
)
10102 int (*prog_main
)(int, char **);
10104 if (tcc_relocate(s1
) < 0)
10107 prog_main
= tcc_get_symbol_err(s1
, "main");
10110 #if defined(_WIN32) || defined(CONFIG_TCCBOOT)
10111 error("debug mode currently not available for Windows");
10113 struct sigaction sigact
;
10114 /* install TCC signal handlers to print debug info on fatal
10116 sigact
.sa_flags
= SA_SIGINFO
| SA_RESETHAND
;
10117 sigact
.sa_sigaction
= sig_error
;
10118 sigemptyset(&sigact
.sa_mask
);
10119 sigaction(SIGFPE
, &sigact
, NULL
);
10120 sigaction(SIGILL
, &sigact
, NULL
);
10121 sigaction(SIGSEGV
, &sigact
, NULL
);
10122 sigaction(SIGBUS
, &sigact
, NULL
);
10123 sigaction(SIGABRT
, &sigact
, NULL
);
10127 #ifdef CONFIG_TCC_BCHECK
10128 if (do_bounds_check
) {
10129 void (*bound_init
)(void);
10131 /* set error function */
10132 rt_bound_error_msg
= (void *)tcc_get_symbol_err(s1
,
10133 "__bound_error_msg");
10135 /* XXX: use .init section so that it also work in binary ? */
10136 bound_init
= (void *)tcc_get_symbol_err(s1
, "__bound_init");
10140 return (*prog_main
)(argc
, argv
);
10143 void tcc_memstats(void)
10146 printf("memory in use: %d\n", mem_cur_size
);
10150 static void tcc_cleanup(void)
10154 if (NULL
== tcc_state
)
10158 /* free -D defines */
10159 free_defines(NULL
);
10162 n
= tok_ident
- TOK_IDENT
;
10163 for(i
= 0; i
< n
; i
++)
10164 tcc_free(table_ident
[i
]);
10165 tcc_free(table_ident
);
10167 /* free sym_pools */
10168 dynarray_reset(&sym_pools
, &nb_sym_pools
);
10169 /* string buffer */
10170 cstr_free(&tokcstr
);
10171 /* reset symbol stack */
10172 sym_free_first
= NULL
;
10173 /* cleanup from error/setjmp */
10177 TCCState
*tcc_new(void)
10186 s
= tcc_mallocz(sizeof(TCCState
));
10190 s
->output_type
= TCC_OUTPUT_MEMORY
;
10192 /* init isid table */
10193 for(i
=CH_EOF
;i
<256;i
++)
10194 isidnum_table
[i
-CH_EOF
] = isid(i
) || isnum(i
);
10196 /* add all tokens */
10197 table_ident
= NULL
;
10198 memset(hash_ident
, 0, TOK_HASH_SIZE
* sizeof(TokenSym
*));
10200 tok_ident
= TOK_IDENT
;
10209 ts
= tok_alloc(p
, r
- p
- 1);
10213 /* we add dummy defines for some special macros to speed up tests
10214 and to have working defined() */
10215 define_push(TOK___LINE__
, MACRO_OBJ
, NULL
, NULL
);
10216 define_push(TOK___FILE__
, MACRO_OBJ
, NULL
, NULL
);
10217 define_push(TOK___DATE__
, MACRO_OBJ
, NULL
, NULL
);
10218 define_push(TOK___TIME__
, MACRO_OBJ
, NULL
, NULL
);
10220 /* standard defines */
10221 tcc_define_symbol(s
, "__STDC__", NULL
);
10222 tcc_define_symbol(s
, "__STDC_VERSION__", "199901L");
10223 #if defined(TCC_TARGET_I386)
10224 tcc_define_symbol(s
, "__i386__", NULL
);
10226 #if defined(TCC_TARGET_ARM)
10227 tcc_define_symbol(s
, "__ARM_ARCH_4__", NULL
);
10228 tcc_define_symbol(s
, "__arm_elf__", NULL
);
10229 tcc_define_symbol(s
, "__arm_elf", NULL
);
10230 tcc_define_symbol(s
, "arm_elf", NULL
);
10231 tcc_define_symbol(s
, "__arm__", NULL
);
10232 tcc_define_symbol(s
, "__arm", NULL
);
10233 tcc_define_symbol(s
, "arm", NULL
);
10234 tcc_define_symbol(s
, "__APCS_32__", NULL
);
10236 #ifdef TCC_TARGET_PE
10237 tcc_define_symbol(s
, "_WIN32", NULL
);
10239 tcc_define_symbol(s
, "__unix__", NULL
);
10240 tcc_define_symbol(s
, "__unix", NULL
);
10241 #if defined(__linux)
10242 tcc_define_symbol(s
, "__linux__", NULL
);
10243 tcc_define_symbol(s
, "__linux", NULL
);
10246 /* tiny C specific defines */
10247 tcc_define_symbol(s
, "__TINYC__", NULL
);
10249 /* tiny C & gcc defines */
10250 tcc_define_symbol(s
, "__SIZE_TYPE__", "unsigned int");
10251 tcc_define_symbol(s
, "__PTRDIFF_TYPE__", "int");
10252 #ifdef TCC_TARGET_PE
10253 tcc_define_symbol(s
, "__WCHAR_TYPE__", "unsigned short");
10255 tcc_define_symbol(s
, "__WCHAR_TYPE__", "int");
10258 #ifndef TCC_TARGET_PE
10259 /* default library paths */
10260 tcc_add_library_path(s
, CONFIG_SYSROOT
"/usr/local/lib");
10261 tcc_add_library_path(s
, CONFIG_SYSROOT
"/usr/lib");
10262 tcc_add_library_path(s
, CONFIG_SYSROOT
"/lib");
10265 /* no section zero */
10266 dynarray_add((void ***)&s
->sections
, &s
->nb_sections
, NULL
);
10268 /* create standard sections */
10269 text_section
= new_section(s
, ".text", SHT_PROGBITS
, SHF_ALLOC
| SHF_EXECINSTR
);
10270 data_section
= new_section(s
, ".data", SHT_PROGBITS
, SHF_ALLOC
| SHF_WRITE
);
10271 bss_section
= new_section(s
, ".bss", SHT_NOBITS
, SHF_ALLOC
| SHF_WRITE
);
10273 /* symbols are always generated for linking stage */
10274 symtab_section
= new_symtab(s
, ".symtab", SHT_SYMTAB
, 0,
10276 ".hashtab", SHF_PRIVATE
);
10277 strtab_section
= symtab_section
->link
;
10279 /* private symbol table for dynamic symbols */
10280 s
->dynsymtab_section
= new_symtab(s
, ".dynsymtab", SHT_SYMTAB
, SHF_PRIVATE
,
10282 ".dynhashtab", SHF_PRIVATE
);
10283 s
->alacarte_link
= 1;
10285 #ifdef CHAR_IS_UNSIGNED
10286 s
->char_is_unsigned
= 1;
10288 #if defined(TCC_TARGET_PE) && 0
10289 /* XXX: currently the PE linker is not ready to support that */
10290 s
->leading_underscore
= 1;
10295 void tcc_delete(TCCState
*s1
)
10301 /* free all sections */
10302 free_section(s1
->dynsymtab_section
);
10304 for(i
= 1; i
< s1
->nb_sections
; i
++)
10305 free_section(s1
->sections
[i
]);
10306 tcc_free(s1
->sections
);
10308 /* free any loaded DLLs */
10309 for ( i
= 0; i
< s1
->nb_loaded_dlls
; i
++)
10311 DLLReference
*ref
= s1
->loaded_dlls
[i
];
10313 dlclose(ref
->handle
);
10316 /* free loaded dlls array */
10317 dynarray_reset(&s1
->loaded_dlls
, &s1
->nb_loaded_dlls
);
10319 /* free library paths */
10320 dynarray_reset(&s1
->library_paths
, &s1
->nb_library_paths
);
10322 /* free include paths */
10323 dynarray_reset(&s1
->cached_includes
, &s1
->nb_cached_includes
);
10324 dynarray_reset(&s1
->include_paths
, &s1
->nb_include_paths
);
10325 dynarray_reset(&s1
->sysinclude_paths
, &s1
->nb_sysinclude_paths
);
10330 int tcc_add_include_path(TCCState
*s1
, const char *pathname
)
10334 pathname1
= tcc_strdup(pathname
);
10335 dynarray_add((void ***)&s1
->include_paths
, &s1
->nb_include_paths
, pathname1
);
10339 int tcc_add_sysinclude_path(TCCState
*s1
, const char *pathname
)
10343 pathname1
= tcc_strdup(pathname
);
10344 dynarray_add((void ***)&s1
->sysinclude_paths
, &s1
->nb_sysinclude_paths
, pathname1
);
10348 static int tcc_add_file_internal(TCCState
*s1
, const char *filename
, int flags
)
10353 BufferedFile
*saved_file
;
10355 /* find source file type with extension */
10356 ext
= tcc_fileextension(filename
);
10360 /* open the file */
10362 file
= tcc_open(s1
, filename
);
10364 if (flags
& AFF_PRINT_ERROR
) {
10365 error_noabort("file '%s' not found", filename
);
10371 if (flags
& AFF_PREPROCESS
) {
10372 ret
= tcc_preprocess(s1
);
10373 } else if (!ext
[0] || !strcmp(ext
, "c")) {
10374 /* C file assumed */
10375 ret
= tcc_compile(s1
);
10377 #ifdef CONFIG_TCC_ASM
10378 if (!strcmp(ext
, "S")) {
10379 /* preprocessed assembler */
10380 ret
= tcc_assemble(s1
, 1);
10381 } else if (!strcmp(ext
, "s")) {
10382 /* non preprocessed assembler */
10383 ret
= tcc_assemble(s1
, 0);
10386 #ifdef TCC_TARGET_PE
10387 if (!strcmp(ext
, "def")) {
10388 ret
= pe_load_def_file(s1
, file
->fd
);
10393 /* assume executable format: auto guess file type */
10394 ret
= read(fd
, &ehdr
, sizeof(ehdr
));
10395 lseek(fd
, 0, SEEK_SET
);
10397 error_noabort("could not read header");
10399 } else if (ret
!= sizeof(ehdr
)) {
10400 goto try_load_script
;
10403 if (ehdr
.e_ident
[0] == ELFMAG0
&&
10404 ehdr
.e_ident
[1] == ELFMAG1
&&
10405 ehdr
.e_ident
[2] == ELFMAG2
&&
10406 ehdr
.e_ident
[3] == ELFMAG3
) {
10407 file
->line_num
= 0; /* do not display line number if error */
10408 if (ehdr
.e_type
== ET_REL
) {
10409 ret
= tcc_load_object_file(s1
, fd
, 0);
10410 } else if (ehdr
.e_type
== ET_DYN
) {
10411 if (s1
->output_type
== TCC_OUTPUT_MEMORY
) {
10412 #ifdef TCC_TARGET_PE
10416 h
= dlopen(filename
, RTLD_GLOBAL
| RTLD_LAZY
);
10423 ret
= tcc_load_dll(s1
, fd
, filename
,
10424 (flags
& AFF_REFERENCED_DLL
) != 0);
10427 error_noabort("unrecognized ELF file");
10430 } else if (memcmp((char *)&ehdr
, ARMAG
, 8) == 0) {
10431 file
->line_num
= 0; /* do not display line number if error */
10432 ret
= tcc_load_archive(s1
, fd
);
10434 #ifdef TCC_TARGET_COFF
10435 if (*(uint16_t *)(&ehdr
) == COFF_C67_MAGIC
) {
10436 ret
= tcc_load_coff(s1
, fd
);
10439 #ifdef TCC_TARGET_PE
10440 if (pe_test_res_file(&ehdr
, ret
)) {
10441 ret
= pe_load_res_file(s1
, fd
);
10445 /* as GNU ld, consider it is an ld script if not recognized */
10447 ret
= tcc_load_ldscript(s1
);
10449 error_noabort("unrecognized file type");
10464 int tcc_add_file(TCCState
*s
, const char *filename
)
10466 return tcc_add_file_internal(s
, filename
, AFF_PRINT_ERROR
);
10469 int tcc_add_library_path(TCCState
*s
, const char *pathname
)
10473 pathname1
= tcc_strdup(pathname
);
10474 dynarray_add((void ***)&s
->library_paths
, &s
->nb_library_paths
, pathname1
);
10478 /* find and load a dll. Return non zero if not found */
10479 /* XXX: add '-rpath' option support ? */
10480 static int tcc_add_dll(TCCState
*s
, const char *filename
, int flags
)
10485 for(i
= 0; i
< s
->nb_library_paths
; i
++) {
10486 snprintf(buf
, sizeof(buf
), "%s/%s",
10487 s
->library_paths
[i
], filename
);
10488 if (tcc_add_file_internal(s
, buf
, flags
) == 0)
10494 /* the library name is the same as the argument of the '-l' option */
10495 int tcc_add_library(TCCState
*s
, const char *libraryname
)
10500 /* first we look for the dynamic library if not static linking */
10501 if (!s
->static_link
) {
10502 #ifdef TCC_TARGET_PE
10503 snprintf(buf
, sizeof(buf
), "%s.def", libraryname
);
10505 snprintf(buf
, sizeof(buf
), "lib%s.so", libraryname
);
10507 if (tcc_add_dll(s
, buf
, 0) == 0)
10511 /* then we look for the static library */
10512 for(i
= 0; i
< s
->nb_library_paths
; i
++) {
10513 snprintf(buf
, sizeof(buf
), "%s/lib%s.a",
10514 s
->library_paths
[i
], libraryname
);
10515 if (tcc_add_file_internal(s
, buf
, 0) == 0)
10521 int tcc_add_symbol(TCCState
*s
, const char *name
, unsigned long val
)
10523 add_elf_sym(symtab_section
, val
, 0,
10524 ELFW(ST_INFO
)(STB_GLOBAL
, STT_NOTYPE
), 0,
10529 int tcc_set_output_type(TCCState
*s
, int output_type
)
10533 s
->output_type
= output_type
;
10535 if (!s
->nostdinc
) {
10536 /* default include paths */
10537 /* XXX: reverse order needed if -isystem support */
10538 #ifndef TCC_TARGET_PE
10539 tcc_add_sysinclude_path(s
, CONFIG_SYSROOT
"/usr/local/include");
10540 tcc_add_sysinclude_path(s
, CONFIG_SYSROOT
"/usr/include");
10542 snprintf(buf
, sizeof(buf
), "%s/include", tcc_lib_path
);
10543 tcc_add_sysinclude_path(s
, buf
);
10544 #ifdef TCC_TARGET_PE
10545 snprintf(buf
, sizeof(buf
), "%s/include/winapi", tcc_lib_path
);
10546 tcc_add_sysinclude_path(s
, buf
);
10550 /* if bound checking, then add corresponding sections */
10551 #ifdef CONFIG_TCC_BCHECK
10552 if (do_bounds_check
) {
10553 /* define symbol */
10554 tcc_define_symbol(s
, "__BOUNDS_CHECKING_ON", NULL
);
10555 /* create bounds sections */
10556 bounds_section
= new_section(s
, ".bounds",
10557 SHT_PROGBITS
, SHF_ALLOC
);
10558 lbounds_section
= new_section(s
, ".lbounds",
10559 SHT_PROGBITS
, SHF_ALLOC
);
10563 if (s
->char_is_unsigned
) {
10564 tcc_define_symbol(s
, "__CHAR_UNSIGNED__", NULL
);
10567 /* add debug sections */
10570 stab_section
= new_section(s
, ".stab", SHT_PROGBITS
, 0);
10571 stab_section
->sh_entsize
= sizeof(Stab_Sym
);
10572 stabstr_section
= new_section(s
, ".stabstr", SHT_STRTAB
, 0);
10573 put_elf_str(stabstr_section
, "");
10574 stab_section
->link
= stabstr_section
;
10575 /* put first entry */
10576 put_stabs("", 0, 0, 0, 0);
10579 /* add libc crt1/crti objects */
10580 #ifndef TCC_TARGET_PE
10581 if ((output_type
== TCC_OUTPUT_EXE
|| output_type
== TCC_OUTPUT_DLL
) &&
10583 if (output_type
!= TCC_OUTPUT_DLL
)
10584 tcc_add_file(s
, CONFIG_TCC_CRT_PREFIX
"/crt1.o");
10585 tcc_add_file(s
, CONFIG_TCC_CRT_PREFIX
"/crti.o");
10589 #ifdef TCC_TARGET_PE
10590 snprintf(buf
, sizeof(buf
), "%s/lib", tcc_lib_path
);
10591 tcc_add_library_path(s
, buf
);
10597 #define WD_ALL 0x0001 /* warning is activated when using -Wall */
10598 #define FD_INVERT 0x0002 /* invert value before storing */
10600 typedef struct FlagDef
{
10606 static const FlagDef warning_defs
[] = {
10607 { offsetof(TCCState
, warn_unsupported
), 0, "unsupported" },
10608 { offsetof(TCCState
, warn_write_strings
), 0, "write-strings" },
10609 { offsetof(TCCState
, warn_error
), 0, "error" },
10610 { offsetof(TCCState
, warn_implicit_function_declaration
), WD_ALL
,
10611 "implicit-function-declaration" },
10614 static int set_flag(TCCState
*s
, const FlagDef
*flags
, int nb_flags
,
10615 const char *name
, int value
)
10622 if (r
[0] == 'n' && r
[1] == 'o' && r
[2] == '-') {
10626 for(i
= 0, p
= flags
; i
< nb_flags
; i
++, p
++) {
10627 if (!strcmp(r
, p
->name
))
10632 if (p
->flags
& FD_INVERT
)
10634 *(int *)((uint8_t *)s
+ p
->offset
) = value
;
10639 /* set/reset a warning */
10640 int tcc_set_warning(TCCState
*s
, const char *warning_name
, int value
)
10645 if (!strcmp(warning_name
, "all")) {
10646 for(i
= 0, p
= warning_defs
; i
< countof(warning_defs
); i
++, p
++) {
10647 if (p
->flags
& WD_ALL
)
10648 *(int *)((uint8_t *)s
+ p
->offset
) = 1;
10652 return set_flag(s
, warning_defs
, countof(warning_defs
),
10653 warning_name
, value
);
10657 static const FlagDef flag_defs
[] = {
10658 { offsetof(TCCState
, char_is_unsigned
), 0, "unsigned-char" },
10659 { offsetof(TCCState
, char_is_unsigned
), FD_INVERT
, "signed-char" },
10660 { offsetof(TCCState
, nocommon
), FD_INVERT
, "common" },
10661 { offsetof(TCCState
, leading_underscore
), 0, "leading-underscore" },
10664 /* set/reset a flag */
10665 int tcc_set_flag(TCCState
*s
, const char *flag_name
, int value
)
10667 return set_flag(s
, flag_defs
, countof(flag_defs
),
10671 #if !defined(LIBTCC)
10673 static int64_t getclock_us(void)
10678 return (tb
.time
* 1000LL + tb
.millitm
) * 1000LL;
10681 gettimeofday(&tv
, NULL
);
10682 return tv
.tv_sec
* 1000000LL + tv
.tv_usec
;
10688 printf("tcc version " TCC_VERSION
" - Tiny C Compiler - Copyright (C) 2001-2006 Fabrice Bellard\n"
10689 "usage: tcc [-v] [-c] [-o outfile] [-Bdir] [-bench] [-Idir] [-Dsym[=val]] [-Usym]\n"
10690 " [-Wwarn] [-g] [-b] [-bt N] [-Ldir] [-llib] [-shared] [-soname name]\n"
10691 " [-static] [infile1 infile2...] [-run infile args...]\n"
10693 "General options:\n"
10694 " -v display current version, increase verbosity\n"
10695 " -c compile only - generate an object file\n"
10696 " -o outfile set output filename\n"
10697 " -Bdir set tcc internal library path\n"
10698 " -bench output compilation statistics\n"
10699 " -run run compiled source\n"
10700 " -fflag set or reset (with 'no-' prefix) 'flag' (see man page)\n"
10701 " -Wwarning set or reset (with 'no-' prefix) 'warning' (see man page)\n"
10702 " -w disable all warnings\n"
10703 "Preprocessor options:\n"
10704 " -E preprocess only\n"
10705 " -Idir add include path 'dir'\n"
10706 " -Dsym[=val] define 'sym' with value 'val'\n"
10707 " -Usym undefine 'sym'\n"
10708 "Linker options:\n"
10709 " -Ldir add library path 'dir'\n"
10710 " -llib link with dynamic or static library 'lib'\n"
10711 " -shared generate a shared library\n"
10712 " -soname set name for shared library to be used at runtime\n"
10713 " -static static linking\n"
10714 " -rdynamic export all global symbols to dynamic linker\n"
10715 " -r generate (relocatable) object file\n"
10716 "Debugger options:\n"
10717 " -g generate runtime debug info\n"
10718 #ifdef CONFIG_TCC_BCHECK
10719 " -b compile with built-in memory and bounds checker (implies -g)\n"
10721 " -bt N show N callers in stack traces\n"
10725 #define TCC_OPTION_HAS_ARG 0x0001
10726 #define TCC_OPTION_NOSEP 0x0002 /* cannot have space before option and arg */
10728 typedef struct TCCOption
{
10757 TCC_OPTION_nostdinc
,
10758 TCC_OPTION_nostdlib
,
10759 TCC_OPTION_print_search_dirs
,
10760 TCC_OPTION_rdynamic
,
10768 static const TCCOption tcc_options
[] = {
10769 { "h", TCC_OPTION_HELP
, 0 },
10770 { "?", TCC_OPTION_HELP
, 0 },
10771 { "I", TCC_OPTION_I
, TCC_OPTION_HAS_ARG
},
10772 { "D", TCC_OPTION_D
, TCC_OPTION_HAS_ARG
},
10773 { "U", TCC_OPTION_U
, TCC_OPTION_HAS_ARG
},
10774 { "L", TCC_OPTION_L
, TCC_OPTION_HAS_ARG
},
10775 { "B", TCC_OPTION_B
, TCC_OPTION_HAS_ARG
},
10776 { "l", TCC_OPTION_l
, TCC_OPTION_HAS_ARG
| TCC_OPTION_NOSEP
},
10777 { "bench", TCC_OPTION_bench
, 0 },
10778 { "bt", TCC_OPTION_bt
, TCC_OPTION_HAS_ARG
},
10779 #ifdef CONFIG_TCC_BCHECK
10780 { "b", TCC_OPTION_b
, 0 },
10782 { "g", TCC_OPTION_g
, TCC_OPTION_HAS_ARG
| TCC_OPTION_NOSEP
},
10783 { "c", TCC_OPTION_c
, 0 },
10784 { "static", TCC_OPTION_static
, 0 },
10785 { "shared", TCC_OPTION_shared
, 0 },
10786 { "soname", TCC_OPTION_soname
, TCC_OPTION_HAS_ARG
},
10787 { "o", TCC_OPTION_o
, TCC_OPTION_HAS_ARG
},
10788 { "run", TCC_OPTION_run
, TCC_OPTION_HAS_ARG
| TCC_OPTION_NOSEP
},
10789 { "rdynamic", TCC_OPTION_rdynamic
, 0 },
10790 { "r", TCC_OPTION_r
, 0 },
10791 { "Wl,", TCC_OPTION_Wl
, TCC_OPTION_HAS_ARG
| TCC_OPTION_NOSEP
},
10792 { "W", TCC_OPTION_W
, TCC_OPTION_HAS_ARG
| TCC_OPTION_NOSEP
},
10793 { "O", TCC_OPTION_O
, TCC_OPTION_HAS_ARG
| TCC_OPTION_NOSEP
},
10794 { "m", TCC_OPTION_m
, TCC_OPTION_HAS_ARG
},
10795 { "f", TCC_OPTION_f
, TCC_OPTION_HAS_ARG
| TCC_OPTION_NOSEP
},
10796 { "nostdinc", TCC_OPTION_nostdinc
, 0 },
10797 { "nostdlib", TCC_OPTION_nostdlib
, 0 },
10798 { "print-search-dirs", TCC_OPTION_print_search_dirs
, 0 },
10799 { "v", TCC_OPTION_v
, TCC_OPTION_HAS_ARG
| TCC_OPTION_NOSEP
},
10800 { "w", TCC_OPTION_w
, 0 },
10801 { "pipe", TCC_OPTION_pipe
, 0},
10802 { "E", TCC_OPTION_E
, 0},
10806 /* convert 'str' into an array of space separated strings */
10807 static int expand_args(char ***pargv
, const char *str
)
10816 while (is_space(*str
))
10821 while (*str
!= '\0' && !is_space(*str
))
10824 arg
= tcc_malloc(len
+ 1);
10825 memcpy(arg
, s1
, len
);
10827 dynarray_add((void ***)&argv
, &argc
, arg
);
10833 static char **files
;
10834 static int nb_files
, nb_libraries
;
10835 static int multiple_files
;
10836 static int print_search_dirs
;
10837 static int output_type
;
10838 static int reloc_output
;
10839 static const char *outfile
;
10841 int parse_args(TCCState
*s
, int argc
, char **argv
)
10844 const TCCOption
*popt
;
10845 const char *optarg
, *p1
, *r1
;
10849 while (optind
< argc
) {
10851 r
= argv
[optind
++];
10852 if (r
[0] != '-' || r
[1] == '\0') {
10853 /* add a new file */
10854 dynarray_add((void ***)&files
, &nb_files
, r
);
10855 if (!multiple_files
) {
10857 /* argv[0] will be this file */
10861 /* find option in table (match only the first chars */
10862 popt
= tcc_options
;
10866 error("invalid option -- '%s'", r
);
10879 if (popt
->flags
& TCC_OPTION_HAS_ARG
) {
10880 if (*r1
!= '\0' || (popt
->flags
& TCC_OPTION_NOSEP
)) {
10883 if (optind
>= argc
)
10884 error("argument to '%s' is missing", r
);
10885 optarg
= argv
[optind
++];
10893 switch(popt
->index
) {
10894 case TCC_OPTION_HELP
:
10898 if (tcc_add_include_path(s
, optarg
) < 0)
10899 error("too many include paths");
10904 sym
= (char *)optarg
;
10905 value
= strchr(sym
, '=');
10910 tcc_define_symbol(s
, sym
, value
);
10914 tcc_undefine_symbol(s
, optarg
);
10917 tcc_add_library_path(s
, optarg
);
10920 /* set tcc utilities path (mainly for tcc development) */
10921 tcc_lib_path
= optarg
;
10924 dynarray_add((void ***)&files
, &nb_files
, r
);
10927 case TCC_OPTION_bench
:
10930 case TCC_OPTION_bt
:
10931 num_callers
= atoi(optarg
);
10933 #ifdef CONFIG_TCC_BCHECK
10935 do_bounds_check
= 1;
10943 multiple_files
= 1;
10944 output_type
= TCC_OUTPUT_OBJ
;
10946 case TCC_OPTION_static
:
10947 s
->static_link
= 1;
10949 case TCC_OPTION_shared
:
10950 output_type
= TCC_OUTPUT_DLL
;
10952 case TCC_OPTION_soname
:
10953 s
->soname
= optarg
;
10956 multiple_files
= 1;
10960 /* generate a .o merging several output files */
10962 output_type
= TCC_OUTPUT_OBJ
;
10964 case TCC_OPTION_nostdinc
:
10967 case TCC_OPTION_nostdlib
:
10970 case TCC_OPTION_print_search_dirs
:
10971 print_search_dirs
= 1;
10973 case TCC_OPTION_run
:
10977 argc1
= expand_args(&argv1
, optarg
);
10979 parse_args(s
, argc1
, argv1
);
10981 multiple_files
= 0;
10982 output_type
= TCC_OUTPUT_MEMORY
;
10987 if (0 == verbose
++)
10988 printf("tcc version %s\n", TCC_VERSION
);
10989 } while (*optarg
++ == 'v');
10992 if (tcc_set_flag(s
, optarg
, 1) < 0 && s
->warn_unsupported
)
10993 goto unsupported_option
;
10996 if (tcc_set_warning(s
, optarg
, 1) < 0 &&
10997 s
->warn_unsupported
)
10998 goto unsupported_option
;
11003 case TCC_OPTION_rdynamic
:
11006 case TCC_OPTION_Wl
:
11009 if (strstart(optarg
, "-Ttext,", &p
)) {
11010 s
->text_addr
= strtoul(p
, NULL
, 16);
11011 s
->has_text_addr
= 1;
11012 } else if (strstart(optarg
, "--oformat,", &p
)) {
11013 if (strstart(p
, "elf32-", NULL
)) {
11014 s
->output_format
= TCC_OUTPUT_FORMAT_ELF
;
11015 } else if (!strcmp(p
, "binary")) {
11016 s
->output_format
= TCC_OUTPUT_FORMAT_BINARY
;
11018 #ifdef TCC_TARGET_COFF
11019 if (!strcmp(p
, "coff")) {
11020 s
->output_format
= TCC_OUTPUT_FORMAT_COFF
;
11024 error("target %s not found", p
);
11027 error("unsupported linker option '%s'", optarg
);
11032 output_type
= TCC_OUTPUT_PREPROCESS
;
11035 if (s
->warn_unsupported
) {
11036 unsupported_option
:
11037 warning("unsupported option '%s'", r
);
11046 int main(int argc
, char **argv
)
11050 int nb_objfiles
, ret
, optind
;
11051 char objfilename
[1024];
11052 int64_t start_time
= 0;
11055 tcc_lib_path
= w32_tcc_lib_path();
11059 output_type
= TCC_OUTPUT_EXE
;
11061 multiple_files
= 1;
11066 print_search_dirs
= 0;
11069 optind
= parse_args(s
, argc
- 1, argv
+ 1);
11070 if (print_search_dirs
) {
11071 /* enough for Linux kernel */
11072 printf("install: %s/\n", tcc_lib_path
);
11075 if (optind
== 0 || nb_files
== 0) {
11076 if (optind
&& verbose
)
11082 nb_objfiles
= nb_files
- nb_libraries
;
11084 /* if outfile provided without other options, we output an
11086 if (outfile
&& output_type
== TCC_OUTPUT_MEMORY
)
11087 output_type
= TCC_OUTPUT_EXE
;
11089 /* check -c consistency : only single file handled. XXX: checks file type */
11090 if (output_type
== TCC_OUTPUT_OBJ
&& !reloc_output
) {
11091 /* accepts only a single input file */
11092 if (nb_objfiles
!= 1)
11093 error("cannot specify multiple files with -c");
11094 if (nb_libraries
!= 0)
11095 error("cannot specify libraries with -c");
11099 if (output_type
== TCC_OUTPUT_PREPROCESS
) {
11101 s
->outfile
= stdout
;
11103 s
->outfile
= fopen(outfile
, "w");
11105 error("could not open '%s", outfile
);
11107 } else if (output_type
!= TCC_OUTPUT_MEMORY
) {
11109 /* compute default outfile name */
11112 strcmp(files
[0], "-") == 0 ? "a" : tcc_basename(files
[0]);
11113 pstrcpy(objfilename
, sizeof(objfilename
), name
);
11114 ext
= tcc_fileextension(objfilename
);
11115 #ifdef TCC_TARGET_PE
11116 if (output_type
== TCC_OUTPUT_DLL
)
11117 strcpy(ext
, ".dll");
11119 if (output_type
== TCC_OUTPUT_EXE
)
11120 strcpy(ext
, ".exe");
11123 if (output_type
== TCC_OUTPUT_OBJ
&& !reloc_output
&& *ext
)
11126 pstrcpy(objfilename
, sizeof(objfilename
), "a.out");
11127 outfile
= objfilename
;
11132 start_time
= getclock_us();
11135 tcc_set_output_type(s
, output_type
);
11137 /* compile or add each files or library */
11138 for(i
= 0; i
< nb_files
&& ret
== 0; i
++) {
11139 const char *filename
;
11141 filename
= files
[i
];
11142 if (output_type
== TCC_OUTPUT_PREPROCESS
) {
11143 if (tcc_add_file_internal(s
, filename
,
11144 AFF_PRINT_ERROR
| AFF_PREPROCESS
) < 0)
11146 } else if (filename
[0] == '-' && filename
[1]) {
11147 if (tcc_add_library(s
, filename
+ 2) < 0)
11148 error("cannot find %s", filename
);
11151 printf("-> %s\n", filename
);
11152 if (tcc_add_file(s
, filename
) < 0)
11157 /* free all files */
11165 total_time
= (double)(getclock_us() - start_time
) / 1000000.0;
11166 if (total_time
< 0.001)
11167 total_time
= 0.001;
11168 if (total_bytes
< 1)
11170 printf("%d idents, %d lines, %d bytes, %0.3f s, %d lines/s, %0.1f MB/s\n",
11171 tok_ident
- TOK_IDENT
, total_lines
, total_bytes
,
11172 total_time
, (int)(total_lines
/ total_time
),
11173 total_bytes
/ total_time
/ 1000000.0);
11176 if (s
->output_type
== TCC_OUTPUT_PREPROCESS
) {
11178 fclose(s
->outfile
);
11179 } else if (s
->output_type
== TCC_OUTPUT_MEMORY
) {
11180 ret
= tcc_run(s
, argc
- optind
, argv
+ optind
);
11182 ret
= tcc_output_file(s
, outfile
) ? 1 : 0;
11184 /* XXX: cannot do it with bound checking because of the malloc hooks */
11185 if (!do_bounds_check
)
11190 printf("memory: %d bytes, max = %d bytes\n", mem_cur_size
, mem_max_size
);