2 * TCC - Tiny C Compiler
4 * Copyright (c) 2001, 2002, 2003 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
36 #include <sys/timeb.h>
40 #include <sys/ucontext.h>
44 #ifndef CONFIG_TCC_STATIC
52 /* preprocessor debug */
54 /* include file debug */
62 /* target selection */
63 //#define TCC_TARGET_I386 /* i386 code generator */
64 //#define TCC_TARGET_ARM /* ARMv4 code generator */
66 /* default target is I386 */
67 #if !defined(TCC_TARGET_I386) && !defined(TCC_TARGET_ARM)
68 #define TCC_TARGET_I386
71 #if !defined(WIN32) && !defined(TCC_UCLIBC) && !defined(TCC_TARGET_ARM)
72 #define CONFIG_TCC_BCHECK /* enable bound checking code */
75 /* define it to include assembler support */
76 #if !defined(TCC_TARGET_ARM)
77 #define CONFIG_TCC_ASM
80 /* path to find crt1.o, crti.o and crtn.o. Only needed when generating
81 executables or dlls */
82 #define CONFIG_TCC_CRT_PREFIX "/usr/lib"
84 #define INCLUDE_STACK_SIZE 32
85 #define IFDEF_STACK_SIZE 64
86 #define VSTACK_SIZE 64
87 #define STRING_MAX_SIZE 1024
89 #define TOK_HASH_SIZE 2048 /* must be a power of two */
90 #define TOK_ALLOC_INCR 512 /* must be a power of two */
91 #define TOK_STR_ALLOC_INCR_BITS 6
92 #define TOK_STR_ALLOC_INCR (1 << TOK_STR_ALLOC_INCR_BITS)
93 #define TOK_MAX_SIZE 4 /* token max size in int unit when stored in string */
95 /* token symbol management */
96 typedef struct TokenSym
{
97 struct TokenSym
*hash_next
;
98 struct Sym
*sym_define
; /* direct pointer to define */
99 struct Sym
*sym_label
; /* direct pointer to label */
100 struct Sym
*sym_struct
; /* direct pointer to structure */
101 struct Sym
*sym_identifier
; /* direct pointer to identifier */
102 int tok
; /* token number */
107 typedef struct CString
{
108 int size
; /* size in bytes */
109 void *data
; /* either 'char *' or 'int *' */
111 void *data_allocated
; /* if non NULL, data has been malloced */
114 /* type definition */
115 typedef struct CType
{
121 typedef union CValue
{
127 unsigned int ul
; /* address (should be unsigned long on 64 bit cpu) */
129 unsigned long long ull
;
130 struct CString
*cstr
;
136 typedef struct SValue
{
137 CType type
; /* type */
138 unsigned short r
; /* register + flags */
139 unsigned short r2
; /* second register, used for 'long long'
140 type. If not used, set to VT_CONST */
141 CValue c
; /* constant, if VT_CONST */
142 struct Sym
*sym
; /* symbol, if (VT_SYM | VT_CONST) */
145 /* symbol management */
147 int v
; /* symbol token */
148 int r
; /* associated register */
149 int c
; /* associated number */
150 CType type
; /* associated type */
151 struct Sym
*next
; /* next related symbol */
152 struct Sym
*prev
; /* prev symbol in stack */
153 struct Sym
*prev_tok
; /* previous symbol for this token */
156 /* section definition */
157 /* XXX: use directly ELF structure for parameters ? */
158 /* special flag to indicate that the section should not be linked to
160 #define SHF_PRIVATE 0x80000000
162 typedef struct Section
{
163 unsigned long data_offset
; /* current data offset */
164 unsigned char *data
; /* section data */
165 unsigned long data_allocated
; /* used for realloc() handling */
166 int sh_name
; /* elf section name (only used during output) */
167 int sh_num
; /* elf section number */
168 int sh_type
; /* elf section type */
169 int sh_flags
; /* elf section flags */
170 int sh_info
; /* elf section info */
171 int sh_addralign
; /* elf section alignment */
172 int sh_entsize
; /* elf entry size */
173 unsigned long sh_size
; /* section size (only used during output) */
174 unsigned long sh_addr
; /* address at which the section is relocated */
175 unsigned long sh_offset
; /* address at which the section is relocated */
176 int nb_hashed_syms
; /* used to resize the hash table */
177 struct Section
*link
; /* link to another section */
178 struct Section
*reloc
; /* corresponding section for relocation, if any */
179 struct Section
*hash
; /* hash table for symbols */
180 struct Section
*next
;
181 char name
[1]; /* section name */
184 typedef struct DLLReference
{
189 /* GNUC attribute definition */
190 typedef struct AttributeDef
{
193 unsigned char func_call
; /* FUNC_CDECL or FUNC_STDCALL */
196 #define SYM_STRUCT 0x40000000 /* struct/union/enum symbol space */
197 #define SYM_FIELD 0x20000000 /* struct/union field symbol space */
198 #define SYM_FIRST_ANOM (1 << (31 - VT_STRUCT_SHIFT)) /* first anonymous sym */
200 /* stored in 'Sym.c' field */
201 #define FUNC_NEW 1 /* ansi function prototype */
202 #define FUNC_OLD 2 /* old function prototype */
203 #define FUNC_ELLIPSIS 3 /* ansi function prototype with ... */
205 /* stored in 'Sym.r' field */
206 #define FUNC_CDECL 0 /* standard c call */
207 #define FUNC_STDCALL 1 /* pascal c call */
209 /* field 'Sym.t' for macros */
210 #define MACRO_OBJ 0 /* object like macro */
211 #define MACRO_FUNC 1 /* function like macro */
213 /* field 'Sym.r' for C labels */
214 #define LABEL_DEFINED 0 /* label is defined */
215 #define LABEL_FORWARD 1 /* label is forward defined */
216 #define LABEL_DECLARED 2 /* label is declared but never used */
218 /* type_decl() types */
219 #define TYPE_ABSTRACT 1 /* type without variable */
220 #define TYPE_DIRECT 2 /* type with variable */
222 #define IO_BUF_SIZE 8192
224 typedef struct BufferedFile
{
228 int line_num
; /* current line number - here to simplify code */
229 int ifndef_macro
; /* #ifndef macro / #endif search */
230 int ifndef_macro_saved
; /* saved ifndef_macro */
231 int *ifdef_stack_ptr
; /* ifdef_stack value at the start of the file */
232 char inc_type
; /* type of include */
233 char inc_filename
[512]; /* filename specified by the user */
234 char filename
[1024]; /* current filename - here to simplify code */
235 unsigned char buffer
[IO_BUF_SIZE
+ 1]; /* extra size for CH_EOB char */
238 #define CH_EOB '\\' /* end of buffer or '\0' char in file */
239 #define CH_EOF (-1) /* end of file */
241 /* parsing state (used to save parser state to reparse part of the
242 source several times) */
243 typedef struct ParseState
{
250 /* used to record tokens */
251 typedef struct TokenString
{
258 /* include file cache, used to find files faster and also to eliminate
259 inclusion if the include file is protected by #ifndef ... #endif */
260 typedef struct CachedInclude
{
262 char type
; /* '"' or '>' to give include type */
263 char filename
[1]; /* path specified in #include */
267 static struct BufferedFile
*file
;
270 static CString tokcstr
; /* current parsed string, if any */
271 /* additional informations about token */
272 static int tok_flags
;
273 #define TOK_FLAG_BOL 0x0001 /* beginning of line before */
274 #define TOK_FLAG_BOF 0x0002 /* beginning of file before */
275 #define TOK_FLAG_ENDIF 0x0004 /* a endif was found matching starting #ifdef */
277 static int *macro_ptr
, *macro_ptr_allocated
;
278 static int *unget_saved_macro_ptr
;
279 static int unget_saved_buffer
[TOK_MAX_SIZE
+ 1];
280 static int unget_buffer_enabled
;
281 static int parse_flags
;
282 #define PARSE_FLAG_PREPROCESS 0x0001 /* activate preprocessing */
283 #define PARSE_FLAG_TOK_NUM 0x0002 /* return numbers instead of TOK_PPNUM */
284 #define PARSE_FLAG_LINEFEED 0x0004 /* line feed is returned as a
285 token. line feed is also
288 static Section
*text_section
, *data_section
, *bss_section
; /* predefined sections */
289 static Section
*cur_text_section
; /* current section where function code is
291 /* bound check related sections */
292 static Section
*bounds_section
; /* contains global data bound description */
293 static Section
*lbounds_section
; /* contains local data bound description */
294 /* symbol sections */
295 static Section
*symtab_section
, *strtab_section
;
298 static Section
*stab_section
, *stabstr_section
;
300 /* loc : local variable index
301 ind : output code index
303 anon_sym: anonymous symbol index
305 static int rsym
, anon_sym
, ind
, loc
;
306 /* expression generation modifiers */
307 static int const_wanted
; /* true if constant wanted */
308 static int nocode_wanted
; /* true if no code generation wanted for an expression */
309 static int global_expr
; /* true if compound literals must be allocated
310 globally (used during initializers parsing */
311 static CType func_vt
; /* current function return type (used by return
314 static int last_line_num
, last_ind
, func_ind
; /* debug last line number and pc */
315 static int tok_ident
;
316 static TokenSym
**table_ident
;
317 static TokenSym
*hash_ident
[TOK_HASH_SIZE
];
318 static char token_buf
[STRING_MAX_SIZE
+ 1];
319 static char *funcname
;
320 static Sym
*global_stack
, *local_stack
;
321 static Sym
*define_stack
;
322 static Sym
*global_label_stack
, *local_label_stack
;
324 static SValue vstack
[VSTACK_SIZE
], *vtop
;
325 /* some predefined types */
326 static CType char_pointer_type
, func_old_type
, int_type
;
327 /* true if isid(c) || isnum(c) */
328 static unsigned char isidnum_table
[256];
330 /* compile with debug symbol (and use them if error during execution) */
331 static int do_debug
= 0;
333 /* compile with built-in memory and bounds checker */
334 static int do_bounds_check
= 0;
336 /* display benchmark infos */
338 static int do_bench
= 0;
340 static int total_lines
;
341 static int total_bytes
;
343 /* use GNU C extensions */
344 static int gnu_ext
= 1;
346 /* use Tiny C extensions */
347 static int tcc_ext
= 1;
349 /* max number of callers shown if error */
350 static int num_callers
= 6;
351 static const char **rt_bound_error_msg
;
353 /* XXX: get rid of this ASAP */
354 static struct TCCState
*tcc_state
;
356 /* give the path of the tcc libraries */
357 static const char *tcc_lib_path
= CONFIG_TCC_LIBDIR
"/tcc";
362 BufferedFile
**include_stack_ptr
;
363 int *ifdef_stack_ptr
;
365 /* include file handling */
366 char **include_paths
;
367 int nb_include_paths
;
368 char **sysinclude_paths
;
369 int nb_sysinclude_paths
;
370 CachedInclude
**cached_includes
;
371 int nb_cached_includes
;
373 char **library_paths
;
374 int nb_library_paths
;
376 /* array of all loaded dlls (including those referenced by loaded
378 DLLReference
**loaded_dlls
;
383 int nb_sections
; /* number of sections, including first dummy section */
388 unsigned long *got_offsets
;
390 /* give the correspondance from symtab indexes to dynsym indexes */
391 int *symtab_to_dynsym
;
393 /* temporary dynamic symbol sections (for dll loading) */
394 Section
*dynsymtab_section
;
395 /* exported dynamic symbol section */
398 int nostdinc
; /* if true, no standard headers are added */
399 int nostdlib
; /* if true, no standard libraries are added */
401 /* if true, static linking is performed */
404 /* if true, all symbols are exported */
407 /* if true, only link in referenced objects from archive */
410 /* C language options */
411 int char_is_unsigned
;
413 /* warning switches */
414 int warn_write_strings
;
415 int warn_unsupported
;
418 int warn_implicit_function_declaration
;
422 void (*error_func
)(void *opaque
, const char *msg
);
423 int error_set_jmp_enabled
;
424 jmp_buf error_jmp_buf
;
427 /* tiny assembler state */
430 /* see include_stack_ptr */
431 BufferedFile
*include_stack
[INCLUDE_STACK_SIZE
];
433 /* see ifdef_stack_ptr */
434 int ifdef_stack
[IFDEF_STACK_SIZE
];
437 /* The current value can be: */
438 #define VT_VALMASK 0x00ff
439 #define VT_CONST 0x00f0 /* constant in vc
440 (must be first non register value) */
441 #define VT_LLOCAL 0x00f1 /* lvalue, offset on stack */
442 #define VT_LOCAL 0x00f2 /* offset on stack */
443 #define VT_CMP 0x00f3 /* the value is stored in processor flags (in vc) */
444 #define VT_JMP 0x00f4 /* value is the consequence of jmp true (even) */
445 #define VT_JMPI 0x00f5 /* value is the consequence of jmp false (odd) */
446 #define VT_LVAL 0x0100 /* var is an lvalue */
447 #define VT_SYM 0x0200 /* a symbol value is added */
448 #define VT_MUSTCAST 0x0400 /* value must be casted to be correct (used for
449 char/short stored in integer registers) */
450 #define VT_MUSTBOUND 0x0800 /* bound checking must be done before
451 dereferencing value */
452 #define VT_BOUNDED 0x8000 /* value is bounded. The address of the
453 bounding function call point is in vc */
454 #define VT_LVAL_BYTE 0x1000 /* lvalue is a byte */
455 #define VT_LVAL_SHORT 0x2000 /* lvalue is a short */
456 #define VT_LVAL_UNSIGNED 0x4000 /* lvalue is unsigned */
457 #define VT_LVAL_TYPE (VT_LVAL_BYTE | VT_LVAL_SHORT | VT_LVAL_UNSIGNED)
460 #define VT_INT 0 /* integer type */
461 #define VT_BYTE 1 /* signed byte type */
462 #define VT_SHORT 2 /* short type */
463 #define VT_VOID 3 /* void type */
464 #define VT_PTR 4 /* pointer */
465 #define VT_ENUM 5 /* enum definition */
466 #define VT_FUNC 6 /* function type */
467 #define VT_STRUCT 7 /* struct/union definition */
468 #define VT_FLOAT 8 /* IEEE float */
469 #define VT_DOUBLE 9 /* IEEE double */
470 #define VT_LDOUBLE 10 /* IEEE long double */
471 #define VT_BOOL 11 /* ISOC99 boolean type */
472 #define VT_LLONG 12 /* 64 bit integer */
473 #define VT_LONG 13 /* long integer (NEVER USED as type, only
475 #define VT_BTYPE 0x000f /* mask for basic type */
476 #define VT_UNSIGNED 0x0010 /* unsigned type */
477 #define VT_ARRAY 0x0020 /* array type (also has VT_PTR) */
478 #define VT_BITFIELD 0x0040 /* bitfield modifier */
479 #define VT_CONSTANT 0x0800 /* const modifier */
480 #define VT_VOLATILE 0x1000 /* volatile modifier */
481 #define VT_SIGNED 0x2000 /* signed type */
484 #define VT_EXTERN 0x00000080 /* extern definition */
485 #define VT_STATIC 0x00000100 /* static variable */
486 #define VT_TYPEDEF 0x00000200 /* typedef definition */
487 #define VT_INLINE 0x00000400 /* inline definition */
489 #define VT_STRUCT_SHIFT 16 /* shift for bitfield shift values */
491 /* type mask (except storage) */
492 #define VT_STORAGE (VT_EXTERN | VT_STATIC | VT_TYPEDEF | VT_INLINE)
493 #define VT_TYPE (~(VT_STORAGE))
497 /* warning: the following compare tokens depend on i386 asm code */
509 #define TOK_LAND 0xa0
513 #define TOK_MID 0xa3 /* inc/dec, to void constant */
515 #define TOK_UDIV 0xb0 /* unsigned division */
516 #define TOK_UMOD 0xb1 /* unsigned modulo */
517 #define TOK_PDIV 0xb2 /* fast division with undefined rounding for pointers */
518 #define TOK_CINT 0xb3 /* number in tokc */
519 #define TOK_CCHAR 0xb4 /* char constant in tokc */
520 #define TOK_STR 0xb5 /* pointer to string in tokc */
521 #define TOK_TWOSHARPS 0xb6 /* ## preprocessing token */
522 #define TOK_LCHAR 0xb7
523 #define TOK_LSTR 0xb8
524 #define TOK_CFLOAT 0xb9 /* float constant */
525 #define TOK_LINENUM 0xba /* line number info */
526 #define TOK_CDOUBLE 0xc0 /* double constant */
527 #define TOK_CLDOUBLE 0xc1 /* long double constant */
528 #define TOK_UMULL 0xc2 /* unsigned 32x32 -> 64 mul */
529 #define TOK_ADDC1 0xc3 /* add with carry generation */
530 #define TOK_ADDC2 0xc4 /* add with carry use */
531 #define TOK_SUBC1 0xc5 /* add with carry generation */
532 #define TOK_SUBC2 0xc6 /* add with carry use */
533 #define TOK_CUINT 0xc8 /* unsigned int constant */
534 #define TOK_CLLONG 0xc9 /* long long constant */
535 #define TOK_CULLONG 0xca /* unsigned long long constant */
536 #define TOK_ARROW 0xcb
537 #define TOK_DOTS 0xcc /* three dots */
538 #define TOK_SHR 0xcd /* unsigned shift right */
539 #define TOK_PPNUM 0xce /* preprocessor number */
541 #define TOK_SHL 0x01 /* shift left */
542 #define TOK_SAR 0x02 /* signed shift right */
544 /* assignement operators : normal operator or 0x80 */
545 #define TOK_A_MOD 0xa5
546 #define TOK_A_AND 0xa6
547 #define TOK_A_MUL 0xaa
548 #define TOK_A_ADD 0xab
549 #define TOK_A_SUB 0xad
550 #define TOK_A_DIV 0xaf
551 #define TOK_A_XOR 0xde
552 #define TOK_A_OR 0xfc
553 #define TOK_A_SHL 0x81
554 #define TOK_A_SAR 0x82
557 #define offsetof(type, field) ((size_t) &((type *)0)->field)
561 #define countof(tab) (sizeof(tab) / sizeof((tab)[0]))
564 /* WARNING: the content of this string encodes token numbers */
565 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";
567 #define TOK_EOF (-1) /* end of file */
568 #define TOK_LINEFEED 10 /* line feed */
570 /* all identificators and strings have token above that */
571 #define TOK_IDENT 256
573 /* only used for i386 asm opcodes definitions */
574 #define DEF_ASM(x) DEF(TOK_ASM_ ## x, #x)
577 DEF(TOK_ASM_ ## x ## b, #x "b") \
578 DEF(TOK_ASM_ ## x ## w, #x "w") \
579 DEF(TOK_ASM_ ## x ## l, #x "l") \
580 DEF(TOK_ASM_ ## x, #x)
583 DEF(TOK_ASM_ ## x ## w, #x "w") \
584 DEF(TOK_ASM_ ## x ## l, #x "l") \
585 DEF(TOK_ASM_ ## x, #x)
588 DEF(TOK_ASM_ ## f ## x ## s, "f" #x "s") \
589 DEF(TOK_ASM_ ## fi ## x ## l, "fi" #x "l") \
590 DEF(TOK_ASM_ ## f ## x ## l, "f" #x "l") \
591 DEF(TOK_ASM_ ## fi ## x ## s, "fi" #x "s")
594 DEF(TOK_ASM_ ## f ## x, "f" #x ) \
595 DEF(TOK_ASM_ ## f ## x ## p, "f" #x "p") \
598 #define DEF_ASMTEST(x) \
630 #define TOK_ASM_int TOK_INT
633 TOK_LAST
= TOK_IDENT
- 1,
634 #define DEF(id, str) id,
639 static const char tcc_keywords
[] =
640 #define DEF(id, str) str "\0"
645 #define TOK_UIDENT TOK_DEFINE
648 #define snprintf _snprintf
649 #define vsnprintf _vsnprintf
652 #if defined(WIN32) || defined(TCC_UCLIBC) || defined(__FreeBSD__)
653 /* currently incorrect */
654 long double strtold(const char *nptr
, char **endptr
)
656 return (long double)strtod(nptr
, endptr
);
658 float strtof(const char *nptr
, char **endptr
)
660 return (float)strtod(nptr
, endptr
);
663 /* XXX: need to define this to use them in non ISOC99 context */
664 extern float strtof (const char *__nptr
, char **__endptr
);
665 extern long double strtold (const char *__nptr
, char **__endptr
);
668 static char *pstrcpy(char *buf
, int buf_size
, const char *s
);
669 static char *pstrcat(char *buf
, int buf_size
, const char *s
);
671 static void next(void);
672 static void next_nomacro(void);
673 static void parse_expr_type(CType
*type
);
674 static void expr_type(CType
*type
);
675 static void unary_type(CType
*type
);
676 static void block(int *bsym
, int *csym
, int *case_sym
, int *def_sym
,
677 int case_reg
, int is_expr
);
678 static int expr_const(void);
679 static void expr_eq(void);
680 static void gexpr(void);
681 static void decl(int l
);
682 static void decl_initializer(CType
*type
, Section
*sec
, unsigned long c
,
683 int first
, int size_only
);
684 static void decl_initializer_alloc(CType
*type
, AttributeDef
*ad
, int r
,
685 int has_init
, int v
, int scope
);
687 void gv2(int rc1
, int rc2
);
688 void move_reg(int r
, int s
);
689 void save_regs(int n
);
690 void save_reg(int r
);
695 int get_reg_ex(int rc
,int rc2
);
697 static void macro_subst(TokenString
*tok_str
, Sym
**nested_list
,
698 const int *macro_str
, int can_read_stream
);
699 int save_reg_forced(int r
);
701 void force_charshort_cast(int t
);
702 static void gen_cast(CType
*type
);
704 static Sym
*sym_find(int v
);
705 static Sym
*sym_push(int v
, CType
*type
, int r
, int c
);
708 static int type_size(CType
*type
, int *a
);
709 static inline CType
*pointed_type(CType
*type
);
710 static int pointed_size(CType
*type
);
711 static int lvalue_type(int t
);
712 static int parse_btype(CType
*type
, AttributeDef
*ad
);
713 static void type_decl(CType
*type
, AttributeDef
*ad
, int *v
, int td
);
714 static int is_compatible_types(CType
*type1
, CType
*type2
);
716 int ieee_finite(double d
);
717 void error(const char *fmt
, ...);
720 static void vpush_global_sym(CType
*type
, int v
);
721 void vset(CType
*type
, int r
, int v
);
722 void type_to_str(char *buf
, int buf_size
,
723 CType
*type
, const char *varstr
);
724 char *get_tok_str(int v
, CValue
*cv
);
725 static Sym
*get_sym_ref(CType
*type
, Section
*sec
,
726 unsigned long offset
, unsigned long size
);
727 static Sym
*external_global_sym(int v
, CType
*type
, int r
);
729 /* section generation */
730 static void section_realloc(Section
*sec
, unsigned long new_size
);
731 static void *section_ptr_add(Section
*sec
, unsigned long size
);
732 static void put_extern_sym(Sym
*sym
, Section
*section
,
733 unsigned long value
, unsigned long size
);
734 static void greloc(Section
*s
, Sym
*sym
, unsigned long addr
, int type
);
735 static int put_elf_str(Section
*s
, const char *sym
);
736 static int put_elf_sym(Section
*s
,
737 unsigned long value
, unsigned long size
,
738 int info
, int other
, int shndx
, const char *name
);
739 static int add_elf_sym(Section
*s
, unsigned long value
, unsigned long size
,
740 int info
, int sh_num
, const char *name
);
741 static void put_elf_reloc(Section
*symtab
, Section
*s
, unsigned long offset
,
742 int type
, int symbol
);
743 static void put_stabs(const char *str
, int type
, int other
, int desc
,
744 unsigned long value
);
745 static void put_stabs_r(const char *str
, int type
, int other
, int desc
,
746 unsigned long value
, Section
*sec
, int sym_index
);
747 static void put_stabn(int type
, int other
, int desc
, int value
);
748 static void put_stabd(int type
, int other
, int desc
);
749 static int tcc_add_dll(TCCState
*s
, const char *filename
, int flags
);
751 #define AFF_PRINT_ERROR 0x0001 /* print error if file not found */
752 #define AFF_REFERENCED_DLL 0x0002 /* load a referenced dll from another dll */
753 static int tcc_add_file_internal(TCCState
*s
, const char *filename
, int flags
);
757 #ifdef CONFIG_TCC_ASM
759 typedef struct ExprValue
{
764 #define MAX_ASM_OPERANDS 30
766 typedef struct ASMOperand
{
767 int id
; /* GCC 3 optionnal identifier (0 if number only supported */
769 char asm_str
[16]; /* computed asm string for operand */
770 SValue
*vt
; /* C value of the expression */
771 int ref_index
; /* if >= 0, gives reference to a output constraint */
772 int priority
; /* priority, used to assign registers */
773 int reg
; /* if >= 0, register number used for this operand */
774 int is_llong
; /* true if double register value */
777 static void asm_expr(TCCState
*s1
, ExprValue
*pe
);
778 static int asm_int_expr(TCCState
*s1
);
779 static int find_constraint(ASMOperand
*operands
, int nb_operands
,
780 const char *name
, const char **pp
);
782 static int tcc_assemble(TCCState
*s1
, int do_preprocess
);
786 static void asm_instr(void);
788 /* true if float/double/long double type */
789 static inline int is_float(int t
)
793 return bt
== VT_LDOUBLE
|| bt
== VT_DOUBLE
|| bt
== VT_FLOAT
;
796 #ifdef TCC_TARGET_I386
797 #include "i386-gen.c"
800 #ifdef TCC_TARGET_ARM
804 #ifdef CONFIG_TCC_STATIC
806 #define RTLD_LAZY 0x001
807 #define RTLD_NOW 0x002
808 #define RTLD_GLOBAL 0x100
809 #define RTLD_DEFAULT NULL
811 /* dummy function for profiling */
812 void *dlopen(const char *filename
, int flag
)
817 const char *dlerror(void)
822 typedef struct TCCSyms
{
827 #define TCCSYM(a) { #a, &a, },
829 /* add the symbol you want here if no dynamic linking is done */
830 static TCCSyms tcc_syms
[] = {
838 void *dlsym(void *handle
, const char *symbol
)
842 while (p
->str
!= NULL
) {
843 if (!strcmp(p
->str
, symbol
))
852 /********************************************************/
854 /* we use our own 'finite' function to avoid potential problems with
855 non standard math libs */
856 /* XXX: endianness dependent */
857 int ieee_finite(double d
)
860 return ((unsigned)((p
[1] | 0x800fffff) + 1)) >> 31;
863 /* copy a string and truncate it. */
864 static char *pstrcpy(char *buf
, int buf_size
, const char *s
)
871 q_end
= buf
+ buf_size
- 1;
883 /* strcat and truncate. */
884 static char *pstrcat(char *buf
, int buf_size
, const char *s
)
889 pstrcpy(buf
+ len
, buf_size
- len
, s
);
893 /* memory management */
899 static inline void tcc_free(void *ptr
)
902 mem_cur_size
-= malloc_usable_size(ptr
);
907 static void *tcc_malloc(unsigned long size
)
912 error("memory full");
914 mem_cur_size
+= malloc_usable_size(ptr
);
915 if (mem_cur_size
> mem_max_size
)
916 mem_max_size
= mem_cur_size
;
921 static void *tcc_mallocz(unsigned long size
)
924 ptr
= tcc_malloc(size
);
925 memset(ptr
, 0, size
);
929 static inline void *tcc_realloc(void *ptr
, unsigned long size
)
933 mem_cur_size
-= malloc_usable_size(ptr
);
935 ptr1
= realloc(ptr
, size
);
937 /* NOTE: count not correct if alloc error, but not critical */
938 mem_cur_size
+= malloc_usable_size(ptr1
);
939 if (mem_cur_size
> mem_max_size
)
940 mem_max_size
= mem_cur_size
;
945 static char *tcc_strdup(const char *str
)
948 ptr
= tcc_malloc(strlen(str
) + 1);
953 #define free(p) use_tcc_free(p)
954 #define malloc(s) use_tcc_malloc(s)
955 #define realloc(p, s) use_tcc_realloc(p, s)
957 static void dynarray_add(void ***ptab
, int *nb_ptr
, void *data
)
964 /* every power of two we double array size */
965 if ((nb
& (nb
- 1)) == 0) {
970 pp
= tcc_realloc(pp
, nb_alloc
* sizeof(void *));
972 error("memory full");
979 Section
*new_section(TCCState
*s1
, const char *name
, int sh_type
, int sh_flags
)
983 sec
= tcc_mallocz(sizeof(Section
) + strlen(name
));
984 strcpy(sec
->name
, name
);
985 sec
->sh_type
= sh_type
;
986 sec
->sh_flags
= sh_flags
;
993 sec
->sh_addralign
= 4;
996 sec
->sh_addralign
= 1;
999 sec
->sh_addralign
= 32; /* default conservative alignment */
1003 /* only add section if not private */
1004 if (!(sh_flags
& SHF_PRIVATE
)) {
1005 sec
->sh_num
= s1
->nb_sections
;
1006 dynarray_add((void ***)&s1
->sections
, &s1
->nb_sections
, sec
);
1011 static void free_section(Section
*s
)
1017 /* realloc section and set its content to zero */
1018 static void section_realloc(Section
*sec
, unsigned long new_size
)
1021 unsigned char *data
;
1023 size
= sec
->data_allocated
;
1026 while (size
< new_size
)
1028 data
= tcc_realloc(sec
->data
, size
);
1030 error("memory full");
1031 memset(data
+ sec
->data_allocated
, 0, size
- sec
->data_allocated
);
1033 sec
->data_allocated
= size
;
1036 /* reserve at least 'size' bytes in section 'sec' from
1037 sec->data_offset. */
1038 static void *section_ptr_add(Section
*sec
, unsigned long size
)
1040 unsigned long offset
, offset1
;
1042 offset
= sec
->data_offset
;
1043 offset1
= offset
+ size
;
1044 if (offset1
> sec
->data_allocated
)
1045 section_realloc(sec
, offset1
);
1046 sec
->data_offset
= offset1
;
1047 return sec
->data
+ offset
;
1050 /* return a reference to a section, and create it if it does not
1052 Section
*find_section(TCCState
*s1
, const char *name
)
1056 for(i
= 1; i
< s1
->nb_sections
; i
++) {
1057 sec
= s1
->sections
[i
];
1058 if (!strcmp(name
, sec
->name
))
1061 /* sections are created as PROGBITS */
1062 return new_section(s1
, name
, SHT_PROGBITS
, SHF_ALLOC
);
1065 /* update sym->c so that it points to an external symbol in section
1066 'section' with value 'value' */
1067 static void put_extern_sym(Sym
*sym
, Section
*section
,
1068 unsigned long value
, unsigned long size
)
1070 int sym_type
, sym_bind
, sh_num
, info
;
1075 sh_num
= section
->sh_num
;
1079 if ((sym
->type
.t
& VT_BTYPE
) == VT_FUNC
)
1080 sym_type
= STT_FUNC
;
1082 sym_type
= STT_OBJECT
;
1083 if (sym
->type
.t
& VT_STATIC
)
1084 sym_bind
= STB_LOCAL
;
1086 sym_bind
= STB_GLOBAL
;
1088 name
= get_tok_str(sym
->v
, NULL
);
1089 #ifdef CONFIG_TCC_BCHECK
1090 if (do_bounds_check
) {
1093 /* XXX: avoid doing that for statics ? */
1094 /* if bound checking is activated, we change some function
1095 names by adding the "__bound" prefix */
1098 /* XXX: we rely only on malloc hooks */
1110 strcpy(buf
, "__bound_");
1117 info
= ELF32_ST_INFO(sym_bind
, sym_type
);
1118 sym
->c
= add_elf_sym(symtab_section
, value
, size
, info
, sh_num
, name
);
1120 esym
= &((Elf32_Sym
*)symtab_section
->data
)[sym
->c
];
1121 esym
->st_value
= value
;
1122 esym
->st_size
= size
;
1123 esym
->st_shndx
= sh_num
;
1127 /* add a new relocation entry to symbol 'sym' in section 's' */
1128 static void greloc(Section
*s
, Sym
*sym
, unsigned long offset
, int type
)
1131 put_extern_sym(sym
, NULL
, 0, 0);
1132 /* now we can add ELF relocation info */
1133 put_elf_reloc(symtab_section
, s
, offset
, type
, sym
->c
);
1136 static inline int isid(int c
)
1138 return (c
>= 'a' && c
<= 'z') ||
1139 (c
>= 'A' && c
<= 'Z') ||
1143 static inline int isnum(int c
)
1145 return c
>= '0' && c
<= '9';
1148 static inline int isoct(int c
)
1150 return c
>= '0' && c
<= '7';
1153 static inline int toup(int c
)
1155 if (c
>= 'a' && c
<= 'z')
1156 return c
- 'a' + 'A';
1161 static void strcat_vprintf(char *buf
, int buf_size
, const char *fmt
, va_list ap
)
1165 vsnprintf(buf
+ len
, buf_size
- len
, fmt
, ap
);
1168 static void strcat_printf(char *buf
, int buf_size
, const char *fmt
, ...)
1172 strcat_vprintf(buf
, buf_size
, fmt
, ap
);
1176 void error1(TCCState
*s1
, int is_warning
, const char *fmt
, va_list ap
)
1183 for(f
= s1
->include_stack
; f
< s1
->include_stack_ptr
; f
++)
1184 strcat_printf(buf
, sizeof(buf
), "In file included from %s:%d:\n",
1185 (*f
)->filename
, (*f
)->line_num
);
1186 if (file
->line_num
> 0) {
1187 strcat_printf(buf
, sizeof(buf
),
1188 "%s:%d: ", file
->filename
, file
->line_num
);
1190 strcat_printf(buf
, sizeof(buf
),
1191 "%s: ", file
->filename
);
1194 strcat_printf(buf
, sizeof(buf
),
1198 strcat_printf(buf
, sizeof(buf
), "warning: ");
1199 strcat_vprintf(buf
, sizeof(buf
), fmt
, ap
);
1201 if (!s1
->error_func
) {
1202 /* default case: stderr */
1203 fprintf(stderr
, "%s\n", buf
);
1205 s1
->error_func(s1
->error_opaque
, buf
);
1207 if (!is_warning
|| s1
->warn_error
)
1212 void tcc_set_error_func(TCCState
*s
, void *error_opaque
,
1213 void (*error_func
)(void *opaque
, const char *msg
))
1215 s
->error_opaque
= error_opaque
;
1216 s
->error_func
= error_func
;
1220 /* error without aborting current compilation */
1221 void error_noabort(const char *fmt
, ...)
1223 TCCState
*s1
= tcc_state
;
1227 error1(s1
, 0, fmt
, ap
);
1231 void error(const char *fmt
, ...)
1233 TCCState
*s1
= tcc_state
;
1237 error1(s1
, 0, fmt
, ap
);
1239 /* better than nothing: in some cases, we accept to handle errors */
1240 if (s1
->error_set_jmp_enabled
) {
1241 longjmp(s1
->error_jmp_buf
, 1);
1243 /* XXX: eliminate this someday */
1248 void expect(const char *msg
)
1250 error("%s expected", msg
);
1253 void warning(const char *fmt
, ...)
1255 TCCState
*s1
= tcc_state
;
1262 error1(s1
, 1, fmt
, ap
);
1269 error("'%c' expected", c
);
1273 static void test_lvalue(void)
1275 if (!(vtop
->r
& VT_LVAL
))
1279 /* allocate a new token */
1280 static TokenSym
*tok_alloc_new(TokenSym
**pts
, const char *str
, int len
)
1282 TokenSym
*ts
, **ptable
;
1285 if (tok_ident
>= SYM_FIRST_ANOM
)
1286 error("memory full");
1288 /* expand token table if needed */
1289 i
= tok_ident
- TOK_IDENT
;
1290 if ((i
% TOK_ALLOC_INCR
) == 0) {
1291 ptable
= tcc_realloc(table_ident
, (i
+ TOK_ALLOC_INCR
) * sizeof(TokenSym
*));
1293 error("memory full");
1294 table_ident
= ptable
;
1297 ts
= tcc_malloc(sizeof(TokenSym
) + len
);
1298 table_ident
[i
] = ts
;
1299 ts
->tok
= tok_ident
++;
1300 ts
->sym_define
= NULL
;
1301 ts
->sym_label
= NULL
;
1302 ts
->sym_struct
= NULL
;
1303 ts
->sym_identifier
= NULL
;
1305 ts
->hash_next
= NULL
;
1306 memcpy(ts
->str
, str
, len
);
1307 ts
->str
[len
] = '\0';
1312 #define TOK_HASH_INIT 1
1313 #define TOK_HASH_FUNC(h, c) ((h) * 263 + (c))
1315 /* find a token and add it if not found */
1316 static TokenSym
*tok_alloc(const char *str
, int len
)
1318 TokenSym
*ts
, **pts
;
1324 h
= TOK_HASH_FUNC(h
, ((unsigned char *)str
)[i
]);
1325 h
&= (TOK_HASH_SIZE
- 1);
1327 pts
= &hash_ident
[h
];
1332 if (ts
->len
== len
&& !memcmp(ts
->str
, str
, len
))
1334 pts
= &(ts
->hash_next
);
1336 return tok_alloc_new(pts
, str
, len
);
1339 /* CString handling */
1341 static void cstr_realloc(CString
*cstr
, int new_size
)
1346 size
= cstr
->size_allocated
;
1348 size
= 8; /* no need to allocate a too small first string */
1349 while (size
< new_size
)
1351 data
= tcc_realloc(cstr
->data_allocated
, size
);
1353 error("memory full");
1354 cstr
->data_allocated
= data
;
1355 cstr
->size_allocated
= size
;
1360 static void cstr_ccat(CString
*cstr
, int ch
)
1363 size
= cstr
->size
+ 1;
1364 if (size
> cstr
->size_allocated
)
1365 cstr_realloc(cstr
, size
);
1366 ((unsigned char *)cstr
->data
)[size
- 1] = ch
;
1370 static void cstr_cat(CString
*cstr
, const char *str
)
1382 /* add a wide char */
1383 static void cstr_wccat(CString
*cstr
, int ch
)
1386 size
= cstr
->size
+ sizeof(int);
1387 if (size
> cstr
->size_allocated
)
1388 cstr_realloc(cstr
, size
);
1389 *(int *)(((unsigned char *)cstr
->data
) + size
- sizeof(int)) = ch
;
1393 static void cstr_new(CString
*cstr
)
1395 memset(cstr
, 0, sizeof(CString
));
1398 /* free string and reset it to NULL */
1399 static void cstr_free(CString
*cstr
)
1401 tcc_free(cstr
->data_allocated
);
1405 #define cstr_reset(cstr) cstr_free(cstr)
1407 static CString
*cstr_dup(CString
*cstr1
)
1412 cstr
= tcc_malloc(sizeof(CString
));
1415 cstr
->size_allocated
= size
;
1416 cstr
->data_allocated
= tcc_malloc(size
);
1417 cstr
->data
= cstr
->data_allocated
;
1418 memcpy(cstr
->data_allocated
, cstr1
->data_allocated
, size
);
1422 /* XXX: unicode ? */
1423 static void add_char(CString
*cstr
, int c
)
1425 if (c
== '\'' || c
== '\"' || c
== '\\') {
1426 /* XXX: could be more precise if char or string */
1427 cstr_ccat(cstr
, '\\');
1429 if (c
>= 32 && c
<= 126) {
1432 cstr_ccat(cstr
, '\\');
1434 cstr_ccat(cstr
, 'n');
1436 cstr_ccat(cstr
, '0' + ((c
>> 6) & 7));
1437 cstr_ccat(cstr
, '0' + ((c
>> 3) & 7));
1438 cstr_ccat(cstr
, '0' + (c
& 7));
1443 /* XXX: buffer overflow */
1444 /* XXX: float tokens */
1445 char *get_tok_str(int v
, CValue
*cv
)
1447 static char buf
[STRING_MAX_SIZE
+ 1];
1448 static CString cstr_buf
;
1454 /* NOTE: to go faster, we give a fixed buffer for small strings */
1455 cstr_reset(&cstr_buf
);
1456 cstr_buf
.data
= buf
;
1457 cstr_buf
.size_allocated
= sizeof(buf
);
1463 /* XXX: not quite exact, but only useful for testing */
1464 sprintf(p
, "%u", cv
->ui
);
1468 /* XXX: not quite exact, but only useful for testing */
1469 sprintf(p
, "%Lu", cv
->ull
);
1473 cstr_ccat(&cstr_buf
, '\'');
1474 add_char(&cstr_buf
, cv
->i
);
1475 cstr_ccat(&cstr_buf
, '\'');
1476 cstr_ccat(&cstr_buf
, '\0');
1480 len
= cstr
->size
- 1;
1482 add_char(&cstr_buf
, ((unsigned char *)cstr
->data
)[i
]);
1483 cstr_ccat(&cstr_buf
, '\0');
1488 cstr_ccat(&cstr_buf
, '\"');
1490 len
= cstr
->size
- 1;
1492 add_char(&cstr_buf
, ((unsigned char *)cstr
->data
)[i
]);
1494 len
= (cstr
->size
/ sizeof(int)) - 1;
1496 add_char(&cstr_buf
, ((int *)cstr
->data
)[i
]);
1498 cstr_ccat(&cstr_buf
, '\"');
1499 cstr_ccat(&cstr_buf
, '\0');
1508 return strcpy(p
, "<<=");
1510 return strcpy(p
, ">>=");
1512 if (v
< TOK_IDENT
) {
1513 /* search in two bytes table */
1527 } else if (v
< tok_ident
) {
1528 return table_ident
[v
- TOK_IDENT
]->str
;
1529 } else if (v
>= SYM_FIRST_ANOM
) {
1530 /* special name for anonymous symbol */
1531 sprintf(p
, "L.%u", v
- SYM_FIRST_ANOM
);
1533 /* should never happen */
1538 return cstr_buf
.data
;
1541 /* push, without hashing */
1542 static Sym
*sym_push2(Sym
**ps
, int v
, int t
, int c
)
1545 s
= tcc_malloc(sizeof(Sym
));
1556 /* find a symbol and return its associated structure. 's' is the top
1557 of the symbol stack */
1558 static Sym
*sym_find2(Sym
*s
, int v
)
1568 /* structure lookup */
1569 static inline Sym
*struct_find(int v
)
1572 if ((unsigned)v
>= (unsigned)(tok_ident
- TOK_IDENT
))
1574 return table_ident
[v
]->sym_struct
;
1577 /* find an identifier */
1578 static inline Sym
*sym_find(int v
)
1581 if ((unsigned)v
>= (unsigned)(tok_ident
- TOK_IDENT
))
1583 return table_ident
[v
]->sym_identifier
;
1586 /* push a given symbol on the symbol stack */
1587 static Sym
*sym_push(int v
, CType
*type
, int r
, int c
)
1596 s
= sym_push2(ps
, v
, type
->t
, c
);
1597 s
->type
.ref
= type
->ref
;
1599 /* don't record fields or anonymous symbols */
1601 if (!(v
& SYM_FIELD
) && (v
& ~SYM_STRUCT
) < SYM_FIRST_ANOM
) {
1602 /* record symbol in token array */
1603 ts
= table_ident
[(v
& ~SYM_STRUCT
) - TOK_IDENT
];
1605 ps
= &ts
->sym_struct
;
1607 ps
= &ts
->sym_identifier
;
1614 /* push a global identifier */
1615 static Sym
*global_identifier_push(int v
, int t
, int c
)
1618 s
= sym_push2(&global_stack
, v
, t
, c
);
1619 /* don't record anonymous symbol */
1620 if (v
< SYM_FIRST_ANOM
) {
1621 ps
= &table_ident
[v
- TOK_IDENT
]->sym_identifier
;
1622 /* modify the top most local identifier, so that
1623 sym_identifier will point to 's' when popped */
1625 ps
= &(*ps
)->prev_tok
;
1632 /* pop symbols until top reaches 'b' */
1633 static void sym_pop(Sym
**ptop
, Sym
*b
)
1643 /* remove symbol in token array */
1645 if (!(v
& SYM_FIELD
) && (v
& ~SYM_STRUCT
) < SYM_FIRST_ANOM
) {
1646 ts
= table_ident
[(v
& ~SYM_STRUCT
) - TOK_IDENT
];
1648 ps
= &ts
->sym_struct
;
1650 ps
= &ts
->sym_identifier
;
1661 BufferedFile
*tcc_open(TCCState
*s1
, const char *filename
)
1666 fd
= open(filename
, O_RDONLY
);
1669 bf
= tcc_malloc(sizeof(BufferedFile
));
1675 bf
->buf_ptr
= bf
->buffer
;
1676 bf
->buf_end
= bf
->buffer
;
1677 bf
->buffer
[0] = CH_EOB
; /* put eob symbol */
1678 pstrcpy(bf
->filename
, sizeof(bf
->filename
), filename
);
1680 bf
->ifndef_macro
= 0;
1681 bf
->ifdef_stack_ptr
= s1
->ifdef_stack_ptr
;
1682 // printf("opening '%s'\n", filename);
1686 void tcc_close(BufferedFile
*bf
)
1688 total_lines
+= bf
->line_num
;
1693 /* fill input buffer and peek next char */
1694 static int tcc_peekc_slow(BufferedFile
*bf
)
1697 /* only tries to read if really end of buffer */
1698 if (bf
->buf_ptr
>= bf
->buf_end
) {
1700 #if defined(PARSE_DEBUG)
1705 len
= read(bf
->fd
, bf
->buffer
, len
);
1712 bf
->buf_ptr
= bf
->buffer
;
1713 bf
->buf_end
= bf
->buffer
+ len
;
1714 *bf
->buf_end
= CH_EOB
;
1716 if (bf
->buf_ptr
< bf
->buf_end
) {
1717 return bf
->buf_ptr
[0];
1719 bf
->buf_ptr
= bf
->buf_end
;
1724 /* return the current character, handling end of block if necessary
1726 static int handle_eob(void)
1728 return tcc_peekc_slow(file
);
1731 /* read next char from current input file and handle end of input buffer */
1732 static inline void inp(void)
1734 ch
= *(++(file
->buf_ptr
));
1735 /* end of buffer/file handling */
1740 /* handle '\[\r]\n' */
1741 static void handle_stray(void)
1743 while (ch
== '\\') {
1748 } else if (ch
== '\r') {
1756 error("stray '\\' in program");
1761 /* skip the stray and handle the \\n case. Output an error if
1762 incorrect char after the stray */
1763 static int handle_stray1(uint8_t *p
)
1767 if (p
>= file
->buf_end
) {
1784 /* handle just the EOB case, but not stray */
1785 #define PEEKC_EOB(c, p)\
1796 /* handle the complicated stray case */
1797 #define PEEKC(c, p)\
1802 c = handle_stray1(p);\
1807 /* input with '\[\r]\n' handling. Note that this function cannot
1808 handle other characters after '\', so you cannot call it inside
1809 strings or comments */
1810 static void minp(void)
1818 /* single line C++ comments */
1819 static uint8_t *parse_line_comment(uint8_t *p
)
1827 if (c
== '\n' || c
== CH_EOF
) {
1829 } else if (c
== '\\') {
1838 } else if (c
== '\r') {
1856 static uint8_t *parse_comment(uint8_t *p
)
1862 /* fast skip loop */
1865 if (c
== '\n' || c
== '*' || c
== '\\')
1869 if (c
== '\n' || c
== '*' || c
== '\\')
1873 /* now we can handle all the cases */
1877 } else if (c
== '*') {
1883 } else if (c
== '/') {
1884 goto end_of_comment
;
1885 } else if (c
== '\\') {
1890 /* skip '\[\r]\n', otherwise just skip the stray */
1896 } else if (c
== '\r') {
1913 /* stray, eob or eof */
1918 error("unexpected end of file in comment");
1919 } else if (c
== '\\') {
1931 /* space exlcuding newline */
1932 static inline int is_space(int ch
)
1934 return ch
== ' ' || ch
== '\t' || ch
== '\v' || ch
== '\f' || ch
== '\r';
1937 static inline void skip_spaces(void)
1939 while (is_space(ch
))
1943 /* parse a string without interpreting escapes */
1944 static uint8_t *parse_pp_string(uint8_t *p
,
1945 int sep
, CString
*str
)
1953 } else if (c
== '\\') {
1958 unterminated_string
:
1959 /* XXX: indicate line number of start of string */
1960 error("missing terminating %c character", sep
);
1961 } else if (c
== '\\') {
1962 /* escape : just skip \[\r]\n */
1967 } else if (c
== '\r') {
1970 expect("'\n' after '\r'");
1973 } else if (c
== CH_EOF
) {
1974 goto unterminated_string
;
1977 cstr_ccat(str
, '\\');
1983 } else if (c
== '\n') {
1986 } else if (c
== '\r') {
1989 cstr_ccat(str
, '\r');
2005 /* skip block of text until #else, #elif or #endif. skip also pairs of
2007 void preprocess_skip(void)
2009 int a
, start_of_line
, c
;
2036 } else if (c
== '\\') {
2037 /* XXX: incorrect: should not give an error */
2038 ch
= file
->buf_ptr
[0];
2046 p
= parse_pp_string(p
, c
, NULL
);
2055 p
= parse_comment(p
);
2056 } else if (ch
== '/') {
2057 p
= parse_line_comment(p
);
2063 if (start_of_line
) {
2068 (tok
== TOK_ELSE
|| tok
== TOK_ELIF
|| tok
== TOK_ENDIF
))
2070 if (tok
== TOK_IF
|| tok
== TOK_IFDEF
|| tok
== TOK_IFNDEF
)
2072 else if (tok
== TOK_ENDIF
)
2086 /* ParseState handling */
2088 /* XXX: currently, no include file info is stored. Thus, we cannot display
2089 accurate messages if the function or data definition spans multiple
2092 /* save current parse state in 's' */
2093 void save_parse_state(ParseState
*s
)
2095 s
->line_num
= file
->line_num
;
2096 s
->macro_ptr
= macro_ptr
;
2101 /* restore parse state from 's' */
2102 void restore_parse_state(ParseState
*s
)
2104 file
->line_num
= s
->line_num
;
2105 macro_ptr
= s
->macro_ptr
;
2110 /* return the number of additional 'ints' necessary to store the
2112 static inline int tok_ext_size(int t
)
2131 return LDOUBLE_SIZE
/ 4;
2137 /* token string handling */
2139 static inline void tok_str_new(TokenString
*s
)
2143 s
->allocated_len
= 0;
2144 s
->last_line_num
= -1;
2147 static void tok_str_free(int *str
)
2156 /* NOTE: we test zero separately so that GCC can generate a
2157 table for the following switch */
2172 /* XXX: use a macro to be portable on 64 bit ? */
2173 cstr
= (CString
*)p
[1];
2184 p
+= 1 + (LDOUBLE_SIZE
/ 4);
2194 static int *tok_str_realloc(TokenString
*s
)
2198 len
= s
->allocated_len
+ TOK_STR_ALLOC_INCR
;
2199 str
= tcc_realloc(s
->str
, len
* sizeof(int));
2201 error("memory full");
2202 s
->allocated_len
= len
;
2207 static void tok_str_add(TokenString
*s
, int t
)
2213 if (len
>= s
->allocated_len
)
2214 str
= tok_str_realloc(s
);
2219 static void tok_str_add2(TokenString
*s
, int t
, CValue
*cv
)
2226 /* allocate space for worst case */
2227 if (len
+ TOK_MAX_SIZE
> s
->allocated_len
)
2228 str
= tok_str_realloc(s
);
2237 str
[len
++] = cv
->tab
[0];
2242 str
[len
++] = (int)cstr_dup(cv
->cstr
);
2247 #if LDOUBLE_SIZE == 8
2250 str
[len
++] = cv
->tab
[0];
2251 str
[len
++] = cv
->tab
[1];
2253 #if LDOUBLE_SIZE == 12
2255 str
[len
++] = cv
->tab
[0];
2256 str
[len
++] = cv
->tab
[1];
2257 str
[len
++] = cv
->tab
[2];
2258 #elif LDOUBLE_SIZE != 8
2259 #error add long double size support
2268 /* add the current parse token in token string 's' */
2269 static void tok_str_add_tok(TokenString
*s
)
2273 /* save line number info */
2274 if (file
->line_num
!= s
->last_line_num
) {
2275 s
->last_line_num
= file
->line_num
;
2276 cval
.i
= s
->last_line_num
;
2277 tok_str_add2(s
, TOK_LINENUM
, &cval
);
2279 tok_str_add2(s
, tok
, &tokc
);
2282 #if LDOUBLE_SIZE == 12
2283 #define LDOUBLE_GET(p, cv) \
2287 #elif LDOUBLE_SIZE == 8
2288 #define LDOUBLE_GET(p, cv) \
2292 #error add long double size support
2296 /* get a token from an integer array and increment pointer
2297 accordingly. we code it as a macro to avoid pointer aliasing. */
2298 #define TOK_GET(t, p, cv) \
2320 case TOK_CLDOUBLE: \
2321 LDOUBLE_GET(p, cv); \
2322 p += LDOUBLE_SIZE / 4; \
2329 /* defines handling */
2330 static inline void define_push(int v
, int macro_type
, int *str
, Sym
*first_arg
)
2334 s
= sym_push2(&define_stack
, v
, macro_type
, (int)str
);
2335 s
->next
= first_arg
;
2336 table_ident
[v
- TOK_IDENT
]->sym_define
= s
;
2339 /* undefined a define symbol. Its name is just set to zero */
2340 static void define_undef(Sym
*s
)
2344 if (v
>= TOK_IDENT
&& v
< tok_ident
)
2345 table_ident
[v
- TOK_IDENT
]->sym_define
= NULL
;
2349 static inline Sym
*define_find(int v
)
2352 if ((unsigned)v
>= (unsigned)(tok_ident
- TOK_IDENT
))
2354 return table_ident
[v
]->sym_define
;
2357 /* free define stack until top reaches 'b' */
2358 static void free_defines(Sym
*b
)
2366 /* do not free args or predefined defines */
2368 tok_str_free((int *)top
->c
);
2370 if (v
>= TOK_IDENT
&& v
< tok_ident
)
2371 table_ident
[v
- TOK_IDENT
]->sym_define
= NULL
;
2379 static Sym
*label_find(int v
)
2382 if ((unsigned)v
>= (unsigned)(tok_ident
- TOK_IDENT
))
2384 return table_ident
[v
]->sym_label
;
2387 static Sym
*label_push(Sym
**ptop
, int v
, int flags
)
2390 s
= sym_push2(ptop
, v
, 0, 0);
2392 ps
= &table_ident
[v
- TOK_IDENT
]->sym_label
;
2393 if (ptop
== &global_label_stack
) {
2394 /* modify the top most local identifier, so that
2395 sym_identifier will point to 's' when popped */
2397 ps
= &(*ps
)->prev_tok
;
2404 /* pop labels until element last is reached. Look if any labels are
2405 undefined. Define symbols if '&&label' was used. */
2406 static void label_pop(Sym
**ptop
, Sym
*slast
)
2409 for(s
= *ptop
; s
!= slast
; s
= s1
) {
2411 if (s
->r
== LABEL_DECLARED
) {
2412 warning("label '%s' declared but not used", get_tok_str(s
->v
, NULL
));
2413 } else if (s
->r
== LABEL_FORWARD
) {
2414 error("label '%s' used but not defined",
2415 get_tok_str(s
->v
, NULL
));
2418 /* define corresponding symbol. A size of
2420 put_extern_sym(s
, cur_text_section
, (long)s
->next
, 1);
2424 table_ident
[s
->v
- TOK_IDENT
]->sym_label
= s
->prev_tok
;
2430 /* eval an expression for #if/#elif */
2431 static int expr_preprocess(void)
2437 while (tok
!= TOK_LINEFEED
&& tok
!= TOK_EOF
) {
2438 next(); /* do macro subst */
2439 if (tok
== TOK_DEFINED
) {
2444 c
= define_find(tok
) != 0;
2449 } else if (tok
>= TOK_IDENT
) {
2450 /* if undefined macro */
2454 tok_str_add_tok(&str
);
2456 tok_str_add(&str
, -1); /* simulate end of file */
2457 tok_str_add(&str
, 0);
2458 /* now evaluate C constant expression */
2459 macro_ptr
= str
.str
;
2463 tok_str_free(str
.str
);
2467 #if defined(PARSE_DEBUG) || defined(PP_DEBUG)
2468 static void tok_print(int *str
)
2474 TOK_GET(t
, str
, cval
);
2477 printf(" %s", get_tok_str(t
, &cval
));
2483 /* parse after #define */
2484 static void parse_define(void)
2486 Sym
*s
, *first
, **ps
;
2487 int v
, t
, varg
, is_vaargs
, c
;
2492 error("invalid macro name '%s'", get_tok_str(tok
, &tokc
));
2493 /* XXX: should check if same macro (ANSI) */
2496 /* '(' must be just after macro definition for MACRO_FUNC */
2497 c
= file
->buf_ptr
[0];
2499 c
= handle_stray1(file
->buf_ptr
);
2504 while (tok
!= ')') {
2508 if (varg
== TOK_DOTS
) {
2509 varg
= TOK___VA_ARGS__
;
2511 } else if (tok
== TOK_DOTS
&& gnu_ext
) {
2515 if (varg
< TOK_IDENT
)
2516 error("badly punctuated parameter list");
2517 s
= sym_push2(&define_stack
, varg
| SYM_FIELD
, is_vaargs
, 0);
2528 /* EOF testing necessary for '-D' handling */
2529 while (tok
!= TOK_LINEFEED
&& tok
!= TOK_EOF
) {
2530 tok_str_add2(&str
, tok
, &tokc
);
2533 tok_str_add(&str
, 0);
2535 printf("define %s %d: ", get_tok_str(v
, NULL
), t
);
2538 define_push(v
, t
, str
.str
, first
);
2541 /* XXX: use a token or a hash table to accelerate matching ? */
2542 static CachedInclude
*search_cached_include(TCCState
*s1
,
2543 int type
, const char *filename
)
2548 for(i
= 0;i
< s1
->nb_cached_includes
; i
++) {
2549 e
= s1
->cached_includes
[i
];
2550 if (e
->type
== type
&& !strcmp(e
->filename
, filename
))
2556 static inline void add_cached_include(TCCState
*s1
, int type
,
2557 const char *filename
, int ifndef_macro
)
2561 if (search_cached_include(s1
, type
, filename
))
2564 printf("adding cached '%s' %s\n", filename
, get_tok_str(ifndef_macro
, NULL
));
2566 e
= tcc_malloc(sizeof(CachedInclude
) + strlen(filename
));
2570 strcpy(e
->filename
, filename
);
2571 e
->ifndef_macro
= ifndef_macro
;
2572 dynarray_add((void ***)&s1
->cached_includes
, &s1
->nb_cached_includes
, e
);
2575 /* is_bof is true if first non space token at beginning of file */
2576 static void preprocess(int is_bof
)
2578 TCCState
*s1
= tcc_state
;
2579 int size
, i
, c
, n
, saved_parse_flags
;
2580 char buf
[1024], *q
, *p
;
2586 saved_parse_flags
= parse_flags
;
2587 parse_flags
= PARSE_FLAG_PREPROCESS
| PARSE_FLAG_TOK_NUM
|
2588 PARSE_FLAG_LINEFEED
;
2598 s
= define_find(tok
);
2599 /* undefine symbol by putting an invalid name */
2604 ch
= file
->buf_ptr
[0];
2605 /* XXX: incorrect if comments : use next_nomacro with a special mode */
2610 } else if (ch
== '\"') {
2613 /* XXX: better stray handling */
2616 while (ch
!= c
&& ch
!= '\n' && ch
!= CH_EOF
) {
2617 if ((q
- buf
) < sizeof(buf
) - 1)
2624 /* eat all spaces and comments after include */
2625 /* XXX: slightly incorrect */
2626 while (ch1
!= '\n' && ch1
!= CH_EOF
)
2630 /* computed #include : either we have only strings or
2631 we have anything enclosed in '<>' */
2634 if (tok
== TOK_STR
) {
2635 while (tok
!= TOK_LINEFEED
) {
2636 if (tok
!= TOK_STR
) {
2638 error("'#include' expects \"FILENAME\" or <FILENAME>");
2640 pstrcat(buf
, sizeof(buf
), (char *)tokc
.cstr
->data
);
2646 while (tok
!= TOK_LINEFEED
) {
2647 pstrcat(buf
, sizeof(buf
), get_tok_str(tok
, &tokc
));
2651 /* check syntax and remove '<>' */
2652 if (len
< 2 || buf
[0] != '<' || buf
[len
- 1] != '>')
2653 goto include_syntax
;
2654 memmove(buf
, buf
+ 1, len
- 2);
2655 buf
[len
- 2] = '\0';
2660 e
= search_cached_include(s1
, c
, buf
);
2661 if (e
&& define_find(e
->ifndef_macro
)) {
2662 /* no need to parse the include because the 'ifndef macro'
2665 printf("%s: skipping %s\n", file
->filename
, buf
);
2669 /* first search in current dir if "header.h" */
2671 p
= strrchr(file
->filename
, '/');
2673 size
= p
+ 1 - file
->filename
;
2674 if (size
> sizeof(buf1
) - 1)
2675 size
= sizeof(buf1
) - 1;
2676 memcpy(buf1
, file
->filename
, size
);
2678 pstrcat(buf1
, sizeof(buf1
), buf
);
2679 f
= tcc_open(s1
, buf1
);
2683 if (s1
->include_stack_ptr
>= s1
->include_stack
+ INCLUDE_STACK_SIZE
)
2684 error("#include recursion too deep");
2685 /* now search in all the include paths */
2686 n
= s1
->nb_include_paths
+ s1
->nb_sysinclude_paths
;
2687 for(i
= 0; i
< n
; i
++) {
2689 if (i
< s1
->nb_include_paths
)
2690 path
= s1
->include_paths
[i
];
2692 path
= s1
->sysinclude_paths
[i
- s1
->nb_include_paths
];
2693 pstrcpy(buf1
, sizeof(buf1
), path
);
2694 pstrcat(buf1
, sizeof(buf1
), "/");
2695 pstrcat(buf1
, sizeof(buf1
), buf
);
2696 f
= tcc_open(s1
, buf1
);
2700 error("include file '%s' not found", buf
);
2704 printf("%s: including %s\n", file
->filename
, buf1
);
2707 pstrcpy(f
->inc_filename
, sizeof(f
->inc_filename
), buf
);
2708 /* push current file in stack */
2709 /* XXX: fix current line init */
2710 *s1
->include_stack_ptr
++ = file
;
2712 /* add include file debug info */
2714 put_stabs(file
->filename
, N_BINCL
, 0, 0, 0);
2716 tok_flags
|= TOK_FLAG_BOF
| TOK_FLAG_BOL
;
2717 ch
= file
->buf_ptr
[0];
2725 c
= expr_preprocess();
2731 if (tok
< TOK_IDENT
)
2732 error("invalid argument for '#if%sdef'", c
? "n" : "");
2736 printf("#ifndef %s\n", get_tok_str(tok
, NULL
));
2738 file
->ifndef_macro
= tok
;
2741 c
= (define_find(tok
) != 0) ^ c
;
2743 if (s1
->ifdef_stack_ptr
>= s1
->ifdef_stack
+ IFDEF_STACK_SIZE
)
2744 error("memory full");
2745 *s1
->ifdef_stack_ptr
++ = c
;
2748 if (s1
->ifdef_stack_ptr
== s1
->ifdef_stack
)
2749 error("#else without matching #if");
2750 if (s1
->ifdef_stack_ptr
[-1] & 2)
2751 error("#else after #else");
2752 c
= (s1
->ifdef_stack_ptr
[-1] ^= 3);
2755 if (s1
->ifdef_stack_ptr
== s1
->ifdef_stack
)
2756 error("#elif without matching #if");
2757 c
= s1
->ifdef_stack_ptr
[-1];
2759 error("#elif after #else");
2760 /* last #if/#elif expression was true: we skip */
2763 c
= expr_preprocess();
2764 s1
->ifdef_stack_ptr
[-1] = c
;
2774 if (s1
->ifdef_stack_ptr
<= file
->ifdef_stack_ptr
)
2775 error("#endif without matching #if");
2776 s1
->ifdef_stack_ptr
--;
2777 /* '#ifndef macro' was at the start of file. Now we check if
2778 an '#endif' is exactly at the end of file */
2779 if (file
->ifndef_macro
&&
2780 s1
->ifdef_stack_ptr
== file
->ifdef_stack_ptr
) {
2781 file
->ifndef_macro_saved
= file
->ifndef_macro
;
2782 /* need to set to zero to avoid false matches if another
2783 #ifndef at middle of file */
2784 file
->ifndef_macro
= 0;
2785 while (tok
!= TOK_LINEFEED
)
2787 tok_flags
|= TOK_FLAG_ENDIF
;
2793 if (tok
!= TOK_CINT
)
2795 file
->line_num
= tokc
.i
- 1; /* the line number will be incremented after */
2797 if (tok
!= TOK_LINEFEED
) {
2800 pstrcpy(file
->filename
, sizeof(file
->filename
),
2801 (char *)tokc
.cstr
->data
);
2807 ch
= file
->buf_ptr
[0];
2810 while (ch
!= '\n' && ch
!= CH_EOF
) {
2811 if ((q
- buf
) < sizeof(buf
) - 1)
2817 error("#error %s", buf
);
2819 warning("#warning %s", buf
);
2825 if (tok
== TOK_LINEFEED
|| tok
== '!' || tok
== TOK_CINT
) {
2826 /* '!' is ignored to allow C scripts. numbers are ignored
2827 to emulate cpp behaviour */
2829 error("invalid preprocessing directive #%s", get_tok_str(tok
, &tokc
));
2833 /* ignore other preprocess commands or #! for C scripts */
2834 while (tok
!= TOK_LINEFEED
)
2837 parse_flags
= saved_parse_flags
;
2840 /* evaluate escape codes in a string. */
2841 static void parse_escape_string(CString
*outstr
, const uint8_t *buf
, int is_long
)
2856 case '0': case '1': case '2': case '3':
2857 case '4': case '5': case '6': case '7':
2858 /* at most three octal digits */
2863 n
= n
* 8 + c
- '0';
2867 n
= n
* 8 + c
- '0';
2872 goto add_char_nonext
;
2878 if (c
>= 'a' && c
<= 'f')
2880 else if (c
>= 'A' && c
<= 'F')
2890 goto add_char_nonext
;
2914 goto invalid_escape
;
2924 if (c
>= '!' && c
<= '~')
2925 warning("unknown escape sequence: \'\\%c\'", c
);
2927 warning("unknown escape sequence: \'\\x%x\'", c
);
2934 cstr_ccat(outstr
, c
);
2936 cstr_wccat(outstr
, c
);
2938 /* add a trailing '\0' */
2940 cstr_ccat(outstr
, '\0');
2942 cstr_wccat(outstr
, '\0');
2945 /* we use 64 bit numbers */
2948 /* bn = (bn << shift) | or_val */
2949 void bn_lshift(unsigned int *bn
, int shift
, int or_val
)
2953 for(i
=0;i
<BN_SIZE
;i
++) {
2955 bn
[i
] = (v
<< shift
) | or_val
;
2956 or_val
= v
>> (32 - shift
);
2960 void bn_zero(unsigned int *bn
)
2963 for(i
=0;i
<BN_SIZE
;i
++) {
2968 /* parse number in null terminated string 'p' and return it in the
2970 void parse_number(const char *p
)
2972 int b
, t
, shift
, frac_bits
, s
, exp_val
, ch
;
2974 unsigned int bn
[BN_SIZE
];
2985 goto float_frac_parse
;
2986 } else if (t
== '0') {
2987 if (ch
== 'x' || ch
== 'X') {
2991 } else if (tcc_ext
&& (ch
== 'b' || ch
== 'B')) {
2997 /* parse all digits. cannot check octal numbers at this stage
2998 because of floating point constants */
3000 if (ch
>= 'a' && ch
<= 'f')
3002 else if (ch
>= 'A' && ch
<= 'F')
3010 if (q
>= token_buf
+ STRING_MAX_SIZE
) {
3012 error("number too long");
3018 ((ch
== 'e' || ch
== 'E') && b
== 10) ||
3019 ((ch
== 'p' || ch
== 'P') && (b
== 16 || b
== 2))) {
3021 /* NOTE: strtox should support that for hexa numbers, but
3022 non ISOC99 libcs do not support it, so we prefer to do
3024 /* hexadecimal or binary floats */
3025 /* XXX: handle overflows */
3037 } else if (t
>= 'a') {
3039 } else if (t
>= 'A') {
3044 bn_lshift(bn
, shift
, t
);
3051 if (t
>= 'a' && t
<= 'f') {
3053 } else if (t
>= 'A' && t
<= 'F') {
3055 } else if (t
>= '0' && t
<= '9') {
3061 error("invalid digit");
3062 bn_lshift(bn
, shift
, t
);
3067 if (ch
!= 'p' && ch
!= 'P')
3074 } else if (ch
== '-') {
3078 if (ch
< '0' || ch
> '9')
3079 expect("exponent digits");
3080 while (ch
>= '0' && ch
<= '9') {
3081 exp_val
= exp_val
* 10 + ch
- '0';
3084 exp_val
= exp_val
* s
;
3086 /* now we can generate the number */
3087 /* XXX: should patch directly float number */
3088 d
= (double)bn
[1] * 4294967296.0 + (double)bn
[0];
3089 d
= ldexp(d
, exp_val
- frac_bits
);
3094 /* float : should handle overflow */
3096 } else if (t
== 'L') {
3099 /* XXX: not large enough */
3100 tokc
.ld
= (long double)d
;
3106 /* decimal floats */
3108 if (q
>= token_buf
+ STRING_MAX_SIZE
)
3113 while (ch
>= '0' && ch
<= '9') {
3114 if (q
>= token_buf
+ STRING_MAX_SIZE
)
3120 if (ch
== 'e' || ch
== 'E') {
3121 if (q
>= token_buf
+ STRING_MAX_SIZE
)
3125 if (ch
== '-' || ch
== '+') {
3126 if (q
>= token_buf
+ STRING_MAX_SIZE
)
3131 if (ch
< '0' || ch
> '9')
3132 expect("exponent digits");
3133 while (ch
>= '0' && ch
<= '9') {
3134 if (q
>= token_buf
+ STRING_MAX_SIZE
)
3146 tokc
.f
= strtof(token_buf
, NULL
);
3147 } else if (t
== 'L') {
3150 tokc
.ld
= strtold(token_buf
, NULL
);
3153 tokc
.d
= strtod(token_buf
, NULL
);
3157 unsigned long long n
, n1
;
3160 /* integer number */
3163 if (b
== 10 && *q
== '0') {
3170 /* no need for checks except for base 10 / 8 errors */
3173 } else if (t
>= 'a') {
3175 } else if (t
>= 'A') {
3180 error("invalid digit");
3184 /* detect overflow */
3185 /* XXX: this test is not reliable */
3187 error("integer constant overflow");
3190 /* XXX: not exactly ANSI compliant */
3191 if ((n
& 0xffffffff00000000LL
) != 0) {
3196 } else if (n
> 0x7fffffff) {
3207 error("three 'l's in integer constant");
3210 if (tok
== TOK_CINT
)
3212 else if (tok
== TOK_CUINT
)
3216 } else if (t
== 'U') {
3218 error("two 'u's in integer constant");
3220 if (tok
== TOK_CINT
)
3222 else if (tok
== TOK_CLLONG
)
3229 if (tok
== TOK_CINT
|| tok
== TOK_CUINT
)
3237 #define PARSE2(c1, tok1, c2, tok2) \
3248 /* return next token without macro substitution */
3249 static inline void next_nomacro1(void)
3269 /* first look if it is in fact an end of buffer */
3270 if (p
>= file
->buf_end
) {
3274 if (p
>= file
->buf_end
)
3287 TCCState
*s1
= tcc_state
;
3288 if (parse_flags
& PARSE_FLAG_LINEFEED
) {
3290 } else if (s1
->include_stack_ptr
== s1
->include_stack
||
3291 !(parse_flags
& PARSE_FLAG_PREPROCESS
)) {
3292 /* no include left : end of file. */
3295 /* pop include file */
3297 /* test if previous '#endif' was after a #ifdef at
3299 if (tok_flags
& TOK_FLAG_ENDIF
) {
3301 printf("#endif %s\n", get_tok_str(file
->ifndef_macro_saved
, NULL
));
3303 add_cached_include(s1
, file
->inc_type
, file
->inc_filename
,
3304 file
->ifndef_macro_saved
);
3307 /* add end of include file debug info */
3309 put_stabd(N_EINCL
, 0, 0);
3311 /* pop include stack */
3313 s1
->include_stack_ptr
--;
3314 file
= *s1
->include_stack_ptr
;
3322 if (parse_flags
& PARSE_FLAG_LINEFEED
) {
3326 tok_flags
|= TOK_FLAG_BOL
;
3335 if ((tok_flags
& TOK_FLAG_BOL
) &&
3336 (parse_flags
& PARSE_FLAG_PREPROCESS
)) {
3338 preprocess(tok_flags
& TOK_FLAG_BOF
);
3344 tok
= TOK_TWOSHARPS
;
3351 case 'a': case 'b': case 'c': case 'd':
3352 case 'e': case 'f': case 'g': case 'h':
3353 case 'i': case 'j': case 'k': case 'l':
3354 case 'm': case 'n': case 'o': case 'p':
3355 case 'q': case 'r': case 's': case 't':
3356 case 'u': case 'v': case 'w': case 'x':
3358 case 'A': case 'B': case 'C': case 'D':
3359 case 'E': case 'F': case 'G': case 'H':
3360 case 'I': case 'J': case 'K':
3361 case 'M': case 'N': case 'O': case 'P':
3362 case 'Q': case 'R': case 'S': case 'T':
3363 case 'U': case 'V': case 'W': case 'X':
3369 h
= TOK_HASH_FUNC(h
, c
);
3373 if (!isidnum_table
[c
])
3375 h
= TOK_HASH_FUNC(h
, c
);
3382 /* fast case : no stray found, so we have the full token
3383 and we have already hashed it */
3385 h
&= (TOK_HASH_SIZE
- 1);
3386 pts
= &hash_ident
[h
];
3391 if (ts
->len
== len
&& !memcmp(ts
->str
, p1
, len
))
3393 pts
= &(ts
->hash_next
);
3395 ts
= tok_alloc_new(pts
, p1
, len
);
3399 cstr_reset(&tokcstr
);
3402 cstr_ccat(&tokcstr
, *p1
);
3408 while (isidnum_table
[c
]) {
3409 cstr_ccat(&tokcstr
, c
);
3412 ts
= tok_alloc(tokcstr
.data
, tokcstr
.size
);
3418 if (t
!= '\\' && t
!= '\'' && t
!= '\"') {
3420 goto parse_ident_fast
;
3423 if (c
== '\'' || c
== '\"') {
3427 cstr_reset(&tokcstr
);
3428 cstr_ccat(&tokcstr
, 'L');
3429 goto parse_ident_slow
;
3433 case '0': case '1': case '2': case '3':
3434 case '4': case '5': case '6': case '7':
3437 cstr_reset(&tokcstr
);
3438 /* after the first digit, accept digits, alpha, '.' or sign if
3439 prefixed by 'eEpP' */
3443 cstr_ccat(&tokcstr
, c
);
3445 if (!(isnum(c
) || isid(c
) || c
== '.' ||
3446 ((c
== '+' || c
== '-') &&
3447 (t
== 'e' || t
== 'E' || t
== 'p' || t
== 'P'))))
3450 /* We add a trailing '\0' to ease parsing */
3451 cstr_ccat(&tokcstr
, '\0');
3452 tokc
.cstr
= &tokcstr
;
3456 /* special dot handling because it can also start a number */
3459 cstr_reset(&tokcstr
);
3460 cstr_ccat(&tokcstr
, '.');
3462 } else if (c
== '.') {
3482 /* parse the string */
3484 p
= parse_pp_string(p
, sep
, &str
);
3485 cstr_ccat(&str
, '\0');
3487 /* eval the escape (should be done as TOK_PPNUM) */
3488 cstr_reset(&tokcstr
);
3489 parse_escape_string(&tokcstr
, str
.data
, is_long
);
3494 /* XXX: make it portable */
3498 char_size
= sizeof(int);
3499 if (tokcstr
.size
<= char_size
)
3500 error("empty character constant");
3501 if (tokcstr
.size
> 2 * char_size
)
3502 warning("multi-character character constant");
3504 tokc
.i
= *(int8_t *)tokcstr
.data
;
3507 tokc
.i
= *(int *)tokcstr
.data
;
3511 tokc
.cstr
= &tokcstr
;
3525 } else if (c
== '<') {
3543 } else if (c
== '>') {
3561 } else if (c
== '=') {
3574 } else if (c
== '=') {
3587 } else if (c
== '=') {
3600 } else if (c
== '=') {
3603 } else if (c
== '>') {
3611 PARSE2('!', '!', '=', TOK_NE
)
3612 PARSE2('=', '=', '=', TOK_EQ
)
3613 PARSE2('*', '*', '=', TOK_A_MUL
)
3614 PARSE2('%', '%', '=', TOK_A_MOD
)
3615 PARSE2('^', '^', '=', TOK_A_XOR
)
3617 /* comments or operator */
3621 p
= parse_comment(p
);
3623 } else if (c
== '/') {
3624 p
= parse_line_comment(p
);
3626 } else if (c
== '=') {
3646 case '$': /* only used in assembler */
3651 error("unrecognized character \\x%02x", c
);
3656 #if defined(PARSE_DEBUG)
3657 printf("token = %s\n", get_tok_str(tok
, &tokc
));
3661 /* return next token without macro substitution. Can read input from
3663 static void next_nomacro(void)
3669 TOK_GET(tok
, macro_ptr
, tokc
);
3670 if (tok
== TOK_LINENUM
) {
3671 file
->line_num
= tokc
.i
;
3680 /* substitute args in macro_str and return allocated string */
3681 static int *macro_arg_subst(Sym
**nested_list
, int *macro_str
, Sym
*args
)
3683 int *st
, last_tok
, t
, notfirst
;
3692 TOK_GET(t
, macro_str
, cval
);
3697 TOK_GET(t
, macro_str
, cval
);
3700 s
= sym_find2(args
, t
);
3707 cstr_ccat(&cstr
, ' ');
3708 TOK_GET(t
, st
, cval
);
3709 cstr_cat(&cstr
, get_tok_str(t
, &cval
));
3712 cstr_ccat(&cstr
, '\0');
3714 printf("stringize: %s\n", (char *)cstr
.data
);
3718 tok_str_add2(&str
, TOK_STR
, &cval
);
3721 tok_str_add2(&str
, t
, &cval
);
3723 } else if (t
>= TOK_IDENT
) {
3724 s
= sym_find2(args
, t
);
3727 /* if '##' is present before or after, no arg substitution */
3728 if (*macro_str
== TOK_TWOSHARPS
|| last_tok
== TOK_TWOSHARPS
) {
3729 /* special case for var arg macros : ## eats the
3730 ',' if empty VA_ARGS variable. */
3731 /* XXX: test of the ',' is not 100%
3732 reliable. should fix it to avoid security
3734 if (gnu_ext
&& s
->type
.t
&&
3735 last_tok
== TOK_TWOSHARPS
&&
3736 str
.len
>= 2 && str
.str
[str
.len
- 2] == ',') {
3738 /* suppress ',' '##' */
3741 /* suppress '##' and add variable */
3749 TOK_GET(t1
, st
, cval
);
3752 tok_str_add2(&str
, t1
, &cval
);
3756 /* NOTE: the stream cannot be read when macro
3757 substituing an argument */
3758 macro_subst(&str
, nested_list
, st
, 0);
3761 tok_str_add(&str
, t
);
3764 tok_str_add2(&str
, t
, &cval
);
3768 tok_str_add(&str
, 0);
3772 static char const ab_month_name
[12][4] =
3774 "Jan", "Feb", "Mar", "Apr", "May", "Jun",
3775 "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"
3778 /* do macro substitution of current token with macro 's' and add
3779 result to (tok_str,tok_len). 'nested_list' is the list of all
3780 macros we got inside to avoid recursing. Return non zero if no
3781 substitution needs to be done */
3782 static int macro_subst_tok(TokenString
*tok_str
,
3783 Sym
**nested_list
, Sym
*s
, int can_read_stream
)
3785 Sym
*args
, *sa
, *sa1
;
3786 int mstr_allocated
, parlevel
, *mstr
, t
;
3792 /* if symbol is a macro, prepare substitution */
3794 /* special macros */
3795 if (tok
== TOK___LINE__
) {
3796 cval
.i
= file
->line_num
;
3797 tok_str_add2(tok_str
, TOK_CINT
, &cval
);
3798 } else if (tok
== TOK___FILE__
) {
3799 cstrval
= file
->filename
;
3801 tok_str_add2(tok_str
, TOK_STR
, &cval
);
3802 } else if (tok
== TOK___DATE__
|| tok
== TOK___TIME__
) {
3808 tm
= localtime(&ti
);
3809 if (tok
== TOK___DATE__
) {
3810 snprintf(buf
, sizeof(buf
), "%s %2d %d",
3811 ab_month_name
[tm
->tm_mon
], tm
->tm_mday
, tm
->tm_year
+ 1900);
3813 snprintf(buf
, sizeof(buf
), "%02d:%02d:%02d",
3814 tm
->tm_hour
, tm
->tm_min
, tm
->tm_sec
);
3819 cstr_cat(&cstr
, cstrval
);
3820 cstr_ccat(&cstr
, '\0');
3822 tok_str_add2(tok_str
, TOK_STR
, &cval
);
3827 if (s
->type
.t
== MACRO_FUNC
) {
3828 /* NOTE: we do not use next_nomacro to avoid eating the
3829 next token. XXX: find better solution */
3832 if (t
== 0 && can_read_stream
) {
3833 /* end of macro stream: we must look at the token
3834 after in the file */
3840 /* XXX: incorrect with comments */
3841 ch
= file
->buf_ptr
[0];
3842 while (is_space(ch
) || ch
== '\n')
3846 if (t
!= '(') /* no macro subst */
3849 /* argument macro */
3854 /* NOTE: empty args are allowed, except if no args */
3856 /* handle '()' case */
3857 if (!args
&& !sa
&& tok
== ')')
3860 error("macro '%s' used with too many args",
3861 get_tok_str(s
->v
, 0));
3864 /* NOTE: non zero sa->t indicates VA_ARGS */
3865 while ((parlevel
> 0 ||
3867 (tok
!= ',' || sa
->type
.t
))) &&
3871 else if (tok
== ')')
3873 tok_str_add2(&str
, tok
, &tokc
);
3876 tok_str_add(&str
, 0);
3877 sym_push2(&args
, sa
->v
& ~SYM_FIELD
, sa
->type
.t
, (int)str
.str
);
3880 /* special case for gcc var args: add an empty
3881 var arg argument if it is omitted */
3882 if (sa
&& sa
->type
.t
&& gnu_ext
)
3892 error("macro '%s' used with too few args",
3893 get_tok_str(s
->v
, 0));
3896 /* now subst each arg */
3897 mstr
= macro_arg_subst(nested_list
, mstr
, args
);
3902 tok_str_free((int *)sa
->c
);
3908 sym_push2(nested_list
, s
->v
, 0, 0);
3909 macro_subst(tok_str
, nested_list
, mstr
, 1);
3910 /* pop nested defined symbol */
3912 *nested_list
= sa1
->prev
;
3920 /* handle the '##' operator. Return NULL if no '##' seen. Otherwise
3921 return the resulting string (which must be freed). */
3922 static inline int *macro_twosharps(const int *macro_str
)
3925 const int *macro_ptr1
, *start_macro_ptr
, *ptr
, *saved_macro_ptr
;
3927 const char *p1
, *p2
;
3929 TokenString macro_str1
;
3932 start_macro_ptr
= macro_str
;
3933 /* we search the first '##' */
3935 macro_ptr1
= macro_str
;
3936 TOK_GET(t
, macro_str
, cval
);
3937 /* nothing more to do if end of string */
3940 if (*macro_str
== TOK_TWOSHARPS
)
3944 /* we saw '##', so we need more processing to handle it */
3946 tok_str_new(¯o_str1
);
3950 /* add all tokens seen so far */
3951 for(ptr
= start_macro_ptr
; ptr
< macro_ptr1
;) {
3952 TOK_GET(t
, ptr
, cval
);
3953 tok_str_add2(¯o_str1
, t
, &cval
);
3955 saved_macro_ptr
= macro_ptr
;
3956 /* XXX: get rid of the use of macro_ptr here */
3957 macro_ptr
= (int *)macro_str
;
3959 while (*macro_ptr
== TOK_TWOSHARPS
) {
3961 macro_ptr1
= macro_ptr
;
3964 TOK_GET(t
, macro_ptr
, cval
);
3965 /* We concatenate the two tokens if we have an
3966 identifier or a preprocessing number */
3968 p1
= get_tok_str(tok
, &tokc
);
3969 cstr_cat(&cstr
, p1
);
3970 p2
= get_tok_str(t
, &cval
);
3971 cstr_cat(&cstr
, p2
);
3972 cstr_ccat(&cstr
, '\0');
3974 if ((tok
>= TOK_IDENT
|| tok
== TOK_PPNUM
) &&
3975 (t
>= TOK_IDENT
|| t
== TOK_PPNUM
)) {
3976 if (tok
== TOK_PPNUM
) {
3977 /* if number, then create a number token */
3978 /* NOTE: no need to allocate because
3979 tok_str_add2() does it */
3982 /* if identifier, we must do a test to
3983 validate we have a correct identifier */
3984 if (t
== TOK_PPNUM
) {
3994 if (!isnum(c
) && !isid(c
))
3998 ts
= tok_alloc(cstr
.data
, strlen(cstr
.data
));
3999 tok
= ts
->tok
; /* modify current token */
4002 const char *str
= cstr
.data
;
4003 const unsigned char *q
;
4005 /* we look for a valid token */
4006 /* XXX: do more extensive checks */
4007 if (!strcmp(str
, ">>=")) {
4009 } else if (!strcmp(str
, "<<=")) {
4011 } else if (strlen(str
) == 2) {
4012 /* search in two bytes table */
4017 if (q
[0] == str
[0] && q
[1] == str
[1])
4024 /* NOTE: because get_tok_str use a static buffer,
4027 p1
= get_tok_str(tok
, &tokc
);
4028 cstr_cat(&cstr
, p1
);
4029 cstr_ccat(&cstr
, '\0');
4030 p2
= get_tok_str(t
, &cval
);
4031 warning("pasting \"%s\" and \"%s\" does not give a valid preprocessing token", cstr
.data
, p2
);
4032 /* cannot merge tokens: just add them separately */
4033 tok_str_add2(¯o_str1
, tok
, &tokc
);
4034 /* XXX: free associated memory ? */
4041 tok_str_add2(¯o_str1
, tok
, &tokc
);
4046 macro_ptr
= (int *)saved_macro_ptr
;
4048 tok_str_add(¯o_str1
, 0);
4049 return macro_str1
.str
;
4053 /* do macro substitution of macro_str and add result to
4054 (tok_str,tok_len). 'nested_list' is the list of all macros we got
4055 inside to avoid recursing. */
4056 static void macro_subst(TokenString
*tok_str
, Sym
**nested_list
,
4057 const int *macro_str
, int can_read_stream
)
4060 int *saved_macro_ptr
, *macro_str1
;
4065 /* first scan for '##' operator handling */
4067 macro_str1
= macro_twosharps(ptr
);
4071 /* NOTE: ptr == NULL can only happen if tokens are read from
4072 file stream due to a macro function call */
4075 TOK_GET(t
, ptr
, cval
);
4080 /* if nested substitution, do nothing */
4081 if (sym_find2(*nested_list
, t
))
4083 saved_macro_ptr
= macro_ptr
;
4084 macro_ptr
= (int *)ptr
;
4086 ret
= macro_subst_tok(tok_str
, nested_list
, s
, can_read_stream
);
4087 ptr
= (int *)macro_ptr
;
4088 macro_ptr
= saved_macro_ptr
;
4093 tok_str_add2(tok_str
, t
, &cval
);
4097 tok_str_free(macro_str1
);
4100 /* return next token with macro substitution */
4101 static void next(void)
4103 Sym
*nested_list
, *s
;
4109 /* if not reading from macro substituted string, then try
4110 to substitute macros */
4111 if (tok
>= TOK_IDENT
&&
4112 (parse_flags
& PARSE_FLAG_PREPROCESS
)) {
4113 s
= define_find(tok
);
4115 /* we have a macro: we try to substitute */
4118 if (macro_subst_tok(&str
, &nested_list
, s
, 1) == 0) {
4119 /* substitution done, NOTE: maybe empty */
4120 tok_str_add(&str
, 0);
4121 macro_ptr
= str
.str
;
4122 macro_ptr_allocated
= str
.str
;
4129 /* end of macro or end of unget buffer */
4130 if (unget_buffer_enabled
) {
4131 macro_ptr
= unget_saved_macro_ptr
;
4132 unget_buffer_enabled
= 0;
4134 /* end of macro string: free it */
4135 tok_str_free(macro_ptr_allocated
);
4142 /* convert preprocessor tokens into C tokens */
4143 if (tok
== TOK_PPNUM
&&
4144 (parse_flags
& PARSE_FLAG_TOK_NUM
)) {
4145 parse_number((char *)tokc
.cstr
->data
);
4149 /* push back current token and set current token to 'last_tok'. Only
4150 identifier case handled for labels. */
4151 static inline void unget_tok(int last_tok
)
4155 unget_saved_macro_ptr
= macro_ptr
;
4156 unget_buffer_enabled
= 1;
4157 q
= unget_saved_buffer
;
4160 n
= tok_ext_size(tok
) - 1;
4163 *q
= 0; /* end of token string */
4168 void swap(int *p
, int *q
)
4176 void vsetc(CType
*type
, int r
, CValue
*vc
)
4180 if (vtop
>= vstack
+ VSTACK_SIZE
)
4181 error("memory full");
4182 /* cannot let cpu flags if other instruction are generated. Also
4183 avoid leaving VT_JMP anywhere except on the top of the stack
4184 because it would complicate the code generator. */
4185 if (vtop
>= vstack
) {
4186 v
= vtop
->r
& VT_VALMASK
;
4187 if (v
== VT_CMP
|| (v
& ~1) == VT_JMP
)
4193 vtop
->r2
= VT_CONST
;
4197 /* push integer constant */
4202 vsetc(&int_type
, VT_CONST
, &cval
);
4205 /* Return a static symbol pointing to a section */
4206 static Sym
*get_sym_ref(CType
*type
, Section
*sec
,
4207 unsigned long offset
, unsigned long size
)
4213 sym
= global_identifier_push(v
, type
->t
| VT_STATIC
, 0);
4214 sym
->type
.ref
= type
->ref
;
4215 sym
->r
= VT_CONST
| VT_SYM
;
4216 put_extern_sym(sym
, sec
, offset
, size
);
4220 /* push a reference to a section offset by adding a dummy symbol */
4221 static void vpush_ref(CType
*type
, Section
*sec
, unsigned long offset
, unsigned long size
)
4226 vsetc(type
, VT_CONST
| VT_SYM
, &cval
);
4227 vtop
->sym
= get_sym_ref(type
, sec
, offset
, size
);
4230 /* define a new external reference to a symbol 'v' of type 'u' */
4231 static Sym
*external_global_sym(int v
, CType
*type
, int r
)
4237 /* push forward reference */
4238 s
= global_identifier_push(v
, type
->t
| VT_EXTERN
, 0);
4239 s
->type
.ref
= type
->ref
;
4240 s
->r
= r
| VT_CONST
| VT_SYM
;
4245 /* define a new external reference to a symbol 'v' of type 'u' */
4246 static Sym
*external_sym(int v
, CType
*type
, int r
)
4252 /* push forward reference */
4253 s
= sym_push(v
, type
, r
| VT_CONST
| VT_SYM
, 0);
4254 s
->type
.t
|= VT_EXTERN
;
4256 if (!is_compatible_types(&s
->type
, type
))
4257 error("incompatible types for redefinition of '%s'",
4258 get_tok_str(v
, NULL
));
4263 /* push a reference to global symbol v */
4264 static void vpush_global_sym(CType
*type
, int v
)
4269 sym
= external_global_sym(v
, type
, 0);
4271 vsetc(type
, VT_CONST
| VT_SYM
, &cval
);
4275 void vset(CType
*type
, int r
, int v
)
4280 vsetc(type
, r
, &cval
);
4283 void vseti(int r
, int v
)
4299 void vpushv(SValue
*v
)
4301 if (vtop
>= vstack
+ VSTACK_SIZE
)
4302 error("memory full");
4312 /* save r to the memory stack, and mark it as being free */
4313 void save_reg(int r
)
4315 int l
, saved
, size
, align
;
4319 /* modify all stack values */
4322 for(p
=vstack
;p
<=vtop
;p
++) {
4323 if ((p
->r
& VT_VALMASK
) == r
||
4324 (p
->r2
& VT_VALMASK
) == r
) {
4325 /* must save value on stack if not already done */
4327 /* NOTE: must reload 'r' because r might be equal to r2 */
4328 r
= p
->r
& VT_VALMASK
;
4329 /* store register in the stack */
4331 if ((p
->r
& VT_LVAL
) ||
4332 (!is_float(type
->t
) && (type
->t
& VT_BTYPE
) != VT_LLONG
))
4334 size
= type_size(type
, &align
);
4335 loc
= (loc
- size
) & -align
;
4336 sv
.type
.t
= type
->t
;
4337 sv
.r
= VT_LOCAL
| VT_LVAL
;
4340 #ifdef TCC_TARGET_I386
4341 /* x86 specific: need to pop fp register ST0 if saved */
4342 if (r
== TREG_ST0
) {
4343 o(0xd9dd); /* fstp %st(1) */
4346 /* special long long case */
4347 if ((type
->t
& VT_BTYPE
) == VT_LLONG
) {
4354 /* mark that stack entry as being saved on the stack */
4355 if (p
->r
& VT_LVAL
) {
4356 /* also clear the bounded flag because the
4357 relocation address of the function was stored in
4359 p
->r
= (p
->r
& ~(VT_VALMASK
| VT_BOUNDED
)) | VT_LLOCAL
;
4361 p
->r
= lvalue_type(p
->type
.t
) | VT_LOCAL
;
4369 /* find a register of class 'rc2' with at most one reference on stack.
4370 * If none, call get_reg(rc) */
4371 int get_reg_ex(int rc
, int rc2
)
4376 for(r
=0;r
<NB_REGS
;r
++) {
4377 if (reg_classes
[r
] & rc2
) {
4380 for(p
= vstack
; p
<= vtop
; p
++) {
4381 if ((p
->r
& VT_VALMASK
) == r
||
4382 (p
->r2
& VT_VALMASK
) == r
)
4392 /* find a free register of class 'rc'. If none, save one register */
4398 /* find a free register */
4399 for(r
=0;r
<NB_REGS
;r
++) {
4400 if (reg_classes
[r
] & rc
) {
4401 for(p
=vstack
;p
<=vtop
;p
++) {
4402 if ((p
->r
& VT_VALMASK
) == r
||
4403 (p
->r2
& VT_VALMASK
) == r
)
4411 /* no register left : free the first one on the stack (VERY
4412 IMPORTANT to start from the bottom to ensure that we don't
4413 spill registers used in gen_opi()) */
4414 for(p
=vstack
;p
<=vtop
;p
++) {
4415 r
= p
->r
& VT_VALMASK
;
4416 if (r
< VT_CONST
&& (reg_classes
[r
] & rc
))
4418 /* also look at second register (if long long) */
4419 r
= p
->r2
& VT_VALMASK
;
4420 if (r
< VT_CONST
&& (reg_classes
[r
] & rc
)) {
4426 /* Should never comes here */
4430 /* save registers up to (vtop - n) stack entry */
4431 void save_regs(int n
)
4436 for(p
= vstack
;p
<= p1
; p
++) {
4437 r
= p
->r
& VT_VALMASK
;
4444 /* move register 's' to 'r', and flush previous value of r to memory
4446 void move_reg(int r
, int s
)
4459 /* get address of vtop (vtop MUST BE an lvalue) */
4462 vtop
->r
&= ~VT_LVAL
;
4463 /* tricky: if saved lvalue, then we can go back to lvalue */
4464 if ((vtop
->r
& VT_VALMASK
) == VT_LLOCAL
)
4465 vtop
->r
= (vtop
->r
& ~(VT_VALMASK
| VT_LVAL_TYPE
)) | VT_LOCAL
| VT_LVAL
;
4468 #ifdef CONFIG_TCC_BCHECK
4469 /* generate lvalue bound code */
4475 vtop
->r
&= ~VT_MUSTBOUND
;
4476 /* if lvalue, then use checking code before dereferencing */
4477 if (vtop
->r
& VT_LVAL
) {
4478 /* if not VT_BOUNDED value, then make one */
4479 if (!(vtop
->r
& VT_BOUNDED
)) {
4480 lval_type
= vtop
->r
& (VT_LVAL_TYPE
| VT_LVAL
);
4481 /* must save type because we must set it to int to get pointer */
4483 vtop
->type
.t
= VT_INT
;
4486 gen_bounded_ptr_add();
4487 vtop
->r
|= lval_type
;
4490 /* then check for dereferencing */
4491 gen_bounded_ptr_deref();
4496 /* store vtop a register belonging to class 'rc'. lvalues are
4497 converted to values. Cannot be used if cannot be converted to
4498 register value (such as structures). */
4501 int r
, r2
, rc2
, bit_pos
, bit_size
, size
, align
, i
;
4502 unsigned long long ll
;
4504 /* NOTE: get_reg can modify vstack[] */
4505 if (vtop
->type
.t
& VT_BITFIELD
) {
4506 bit_pos
= (vtop
->type
.t
>> VT_STRUCT_SHIFT
) & 0x3f;
4507 bit_size
= (vtop
->type
.t
>> (VT_STRUCT_SHIFT
+ 6)) & 0x3f;
4508 /* remove bit field info to avoid loops */
4509 vtop
->type
.t
&= ~(VT_BITFIELD
| (-1 << VT_STRUCT_SHIFT
));
4510 /* generate shifts */
4511 vpushi(32 - (bit_pos
+ bit_size
));
4513 vpushi(32 - bit_size
);
4514 /* NOTE: transformed to SHR if unsigned */
4518 if (is_float(vtop
->type
.t
) &&
4519 (vtop
->r
& (VT_VALMASK
| VT_LVAL
)) == VT_CONST
) {
4522 unsigned long offset
;
4524 /* XXX: unify with initializers handling ? */
4525 /* CPUs usually cannot use float constants, so we store them
4526 generically in data segment */
4527 size
= type_size(&vtop
->type
, &align
);
4528 offset
= (data_section
->data_offset
+ align
- 1) & -align
;
4529 data_section
->data_offset
= offset
;
4530 /* XXX: not portable yet */
4531 ptr
= section_ptr_add(data_section
, size
);
4534 ptr
[i
] = vtop
->c
.tab
[i
];
4535 sym
= get_sym_ref(&vtop
->type
, data_section
, offset
, size
<< 2);
4536 vtop
->r
|= VT_LVAL
| VT_SYM
;
4540 #ifdef CONFIG_TCC_BCHECK
4541 if (vtop
->r
& VT_MUSTBOUND
)
4545 r
= vtop
->r
& VT_VALMASK
;
4546 /* need to reload if:
4548 - lvalue (need to dereference pointer)
4549 - already a register, but not in the right class */
4550 if (r
>= VT_CONST
||
4551 (vtop
->r
& VT_LVAL
) ||
4552 !(reg_classes
[r
] & rc
) ||
4553 ((vtop
->type
.t
& VT_BTYPE
) == VT_LLONG
&&
4554 !(reg_classes
[vtop
->r2
] & rc
))) {
4556 if ((vtop
->type
.t
& VT_BTYPE
) == VT_LLONG
) {
4557 /* two register type load : expand to two words
4559 if ((vtop
->r
& (VT_VALMASK
| VT_LVAL
)) == VT_CONST
) {
4562 vtop
->c
.ui
= ll
; /* first word */
4564 vtop
->r
= r
; /* save register value */
4565 vpushi(ll
>> 32); /* second word */
4566 } else if (r
>= VT_CONST
||
4567 (vtop
->r
& VT_LVAL
)) {
4568 /* load from memory */
4571 vtop
[-1].r
= r
; /* save register value */
4572 /* increment pointer to get second word */
4573 vtop
->type
.t
= VT_INT
;
4579 /* move registers */
4582 vtop
[-1].r
= r
; /* save register value */
4583 vtop
->r
= vtop
[-1].r2
;
4585 /* allocate second register */
4592 /* write second register */
4594 } else if ((vtop
->r
& VT_LVAL
) && !is_float(vtop
->type
.t
)) {
4596 /* lvalue of scalar type : need to use lvalue type
4597 because of possible cast */
4600 /* compute memory access type */
4601 if (vtop
->r
& VT_LVAL_BYTE
)
4603 else if (vtop
->r
& VT_LVAL_SHORT
)
4605 if (vtop
->r
& VT_LVAL_UNSIGNED
)
4609 /* restore wanted type */
4612 /* one register type load */
4621 /* generate vtop[-1] and vtop[0] in resp. classes rc1 and rc2 */
4622 void gv2(int rc1
, int rc2
)
4626 /* generate more generic register first. But VT_JMP or VT_CMP
4627 values must be generated first in all cases to avoid possible
4629 v
= vtop
[0].r
& VT_VALMASK
;
4630 if (v
!= VT_CMP
&& (v
& ~1) != VT_JMP
&& rc1
<= rc2
) {
4635 /* test if reload is needed for first register */
4636 if ((vtop
[-1].r
& VT_VALMASK
) >= VT_CONST
) {
4646 /* test if reload is needed for first register */
4647 if ((vtop
[0].r
& VT_VALMASK
) >= VT_CONST
) {
4653 /* expand long long on stack in two int registers */
4658 u
= vtop
->type
.t
& VT_UNSIGNED
;
4661 vtop
[0].r
= vtop
[-1].r2
;
4662 vtop
[0].r2
= VT_CONST
;
4663 vtop
[-1].r2
= VT_CONST
;
4664 vtop
[0].type
.t
= VT_INT
| u
;
4665 vtop
[-1].type
.t
= VT_INT
| u
;
4668 /* build a long long from two ints */
4671 gv2(RC_INT
, RC_INT
);
4672 vtop
[-1].r2
= vtop
[0].r
;
4673 vtop
[-1].type
.t
= t
;
4677 /* rotate n first stack elements to the bottom
4678 I1 ... In -> I2 ... In I1 [top is right]
4686 for(i
=-n
+1;i
!=0;i
++)
4687 vtop
[i
] = vtop
[i
+1];
4691 /* rotate n first stack elements to the top
4692 I1 ... In -> In I1 ... I(n-1) [top is right]
4700 for(i
= 0;i
< n
- 1; i
++)
4701 vtop
[-i
] = vtop
[-i
- 1];
4705 /* pop stack value */
4709 v
= vtop
->r
& VT_VALMASK
;
4710 #ifdef TCC_TARGET_I386
4711 /* for x86, we need to pop the FP stack */
4712 if (v
== TREG_ST0
&& !nocode_wanted
) {
4713 o(0xd9dd); /* fstp %st(1) */
4716 if (v
== VT_JMP
|| v
== VT_JMPI
) {
4717 /* need to put correct jump if && or || without test */
4723 /* convert stack entry to register and duplicate its value in another
4731 if ((t
& VT_BTYPE
) == VT_LLONG
) {
4738 /* stack: H L L1 H1 */
4746 /* duplicate value */
4757 load(r1
, &sv
); /* move r to r1 */
4759 /* duplicates value */
4764 /* generate CPU independent (unsigned) long long operations */
4765 void gen_opl(int op
)
4767 int t
, a
, b
, op1
, c
, i
;
4774 func
= TOK___divdi3
;
4777 func
= TOK___udivdi3
;
4780 func
= TOK___moddi3
;
4783 func
= TOK___umoddi3
;
4785 /* call generic long long function */
4786 vpush_global_sym(&func_old_type
, func
);
4791 vtop
->r2
= REG_LRET
;
4804 /* stack: L1 H1 L2 H2 */
4809 vtop
[-2] = vtop
[-3];
4812 /* stack: H1 H2 L1 L2 */
4818 /* stack: H1 H2 L1 L2 ML MH */
4821 /* stack: ML MH H1 H2 L1 L2 */
4825 /* stack: ML MH H1 L2 H2 L1 */
4830 /* stack: ML MH M1 M2 */
4833 } else if (op
== '+' || op
== '-') {
4834 /* XXX: add non carry method too (for MIPS or alpha) */
4840 /* stack: H1 H2 (L1 op L2) */
4843 gen_op(op1
+ 1); /* TOK_xxxC2 */
4846 /* stack: H1 H2 (L1 op L2) */
4849 /* stack: (L1 op L2) H1 H2 */
4851 /* stack: (L1 op L2) (H1 op H2) */
4859 if ((vtop
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) == VT_CONST
) {
4860 t
= vtop
[-1].type
.t
;
4864 /* stack: L H shift */
4866 /* constant: simpler */
4867 /* NOTE: all comments are for SHL. the other cases are
4868 done by swaping words */
4879 if (op
!= TOK_SAR
) {
4912 /* XXX: should provide a faster fallback on x86 ? */
4915 func
= TOK___sardi3
;
4918 func
= TOK___shrdi3
;
4921 func
= TOK___shldi3
;
4927 /* compare operations */
4933 /* stack: L1 H1 L2 H2 */
4935 vtop
[-1] = vtop
[-2];
4937 /* stack: L1 L2 H1 H2 */
4940 /* when values are equal, we need to compare low words. since
4941 the jump is inverted, we invert the test too. */
4944 else if (op1
== TOK_GT
)
4946 else if (op1
== TOK_ULT
)
4948 else if (op1
== TOK_UGT
)
4953 if (op1
!= TOK_NE
) {
4957 /* generate non equal test */
4958 /* XXX: NOT PORTABLE yet */
4962 #if defined(TCC_TARGET_I386)
4963 b
= psym(0x850f, 0);
4964 #elif defined(TCC_TARGET_ARM)
4966 o(0x1A000000 | encbranch(ind
, 0, 1));
4968 #error not supported
4972 /* compare low. Always unsigned */
4976 else if (op1
== TOK_LE
)
4978 else if (op1
== TOK_GT
)
4980 else if (op1
== TOK_GE
)
4990 /* handle integer constant optimizations and various machine
4992 void gen_opic(int op
)
4999 /* currently, we cannot do computations with forward symbols */
5000 c1
= (v1
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) == VT_CONST
;
5001 c2
= (v2
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) == VT_CONST
;
5005 case '+': v1
->c
.i
+= fc
; break;
5006 case '-': v1
->c
.i
-= fc
; break;
5007 case '&': v1
->c
.i
&= fc
; break;
5008 case '^': v1
->c
.i
^= fc
; break;
5009 case '|': v1
->c
.i
|= fc
; break;
5010 case '*': v1
->c
.i
*= fc
; break;
5017 /* if division by zero, generate explicit division */
5020 error("division by zero in constant");
5024 default: v1
->c
.i
/= fc
; break;
5025 case '%': v1
->c
.i
%= fc
; break;
5026 case TOK_UDIV
: v1
->c
.i
= (unsigned)v1
->c
.i
/ fc
; break;
5027 case TOK_UMOD
: v1
->c
.i
= (unsigned)v1
->c
.i
% fc
; break;
5030 case TOK_SHL
: v1
->c
.i
<<= fc
; break;
5031 case TOK_SHR
: v1
->c
.i
= (unsigned)v1
->c
.i
>> fc
; break;
5032 case TOK_SAR
: v1
->c
.i
>>= fc
; break;
5034 case TOK_ULT
: v1
->c
.i
= (unsigned)v1
->c
.i
< (unsigned)fc
; break;
5035 case TOK_UGE
: v1
->c
.i
= (unsigned)v1
->c
.i
>= (unsigned)fc
; break;
5036 case TOK_EQ
: v1
->c
.i
= v1
->c
.i
== fc
; break;
5037 case TOK_NE
: v1
->c
.i
= v1
->c
.i
!= fc
; break;
5038 case TOK_ULE
: v1
->c
.i
= (unsigned)v1
->c
.i
<= (unsigned)fc
; break;
5039 case TOK_UGT
: v1
->c
.i
= (unsigned)v1
->c
.i
> (unsigned)fc
; break;
5040 case TOK_LT
: v1
->c
.i
= v1
->c
.i
< fc
; break;
5041 case TOK_GE
: v1
->c
.i
= v1
->c
.i
>= fc
; break;
5042 case TOK_LE
: v1
->c
.i
= v1
->c
.i
<= fc
; break;
5043 case TOK_GT
: v1
->c
.i
= v1
->c
.i
> fc
; break;
5045 case TOK_LAND
: v1
->c
.i
= v1
->c
.i
&& fc
; break;
5046 case TOK_LOR
: v1
->c
.i
= v1
->c
.i
|| fc
; break;
5052 /* if commutative ops, put c2 as constant */
5053 if (c1
&& (op
== '+' || op
== '&' || op
== '^' ||
5054 op
== '|' || op
== '*')) {
5059 if (c2
&& (((op
== '*' || op
== '/' || op
== TOK_UDIV
||
5062 ((op
== '+' || op
== '-' || op
== '|' || op
== '^' ||
5063 op
== TOK_SHL
|| op
== TOK_SHR
|| op
== TOK_SAR
) &&
5069 } else if (c2
&& (op
== '*' || op
== TOK_PDIV
|| op
== TOK_UDIV
)) {
5070 /* try to use shifts instead of muls or divs */
5071 if (fc
> 0 && (fc
& (fc
- 1)) == 0) {
5080 else if (op
== TOK_PDIV
)
5086 } else if (c2
&& (op
== '+' || op
== '-') &&
5087 (vtop
[-1].r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) ==
5088 (VT_CONST
| VT_SYM
)) {
5089 /* symbol + constant case */
5096 if (!nocode_wanted
) {
5097 /* call low level op generator */
5106 /* generate a floating point operation with constant propagation */
5107 void gen_opif(int op
)
5115 /* currently, we cannot do computations with forward symbols */
5116 c1
= (v1
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) == VT_CONST
;
5117 c2
= (v2
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) == VT_CONST
;
5119 if (v1
->type
.t
== VT_FLOAT
) {
5122 } else if (v1
->type
.t
== VT_DOUBLE
) {
5130 /* NOTE: we only do constant propagation if finite number (not
5131 NaN or infinity) (ANSI spec) */
5132 if (!ieee_finite(f1
) || !ieee_finite(f2
))
5136 case '+': f1
+= f2
; break;
5137 case '-': f1
-= f2
; break;
5138 case '*': f1
*= f2
; break;
5142 error("division by zero in constant");
5147 /* XXX: also handles tests ? */
5151 /* XXX: overflow test ? */
5152 if (v1
->type
.t
== VT_FLOAT
) {
5154 } else if (v1
->type
.t
== VT_DOUBLE
) {
5162 if (!nocode_wanted
) {
5170 static int pointed_size(CType
*type
)
5173 return type_size(pointed_type(type
), &align
);
5176 static inline int is_null_pointer(SValue
*p
)
5178 if ((p
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) != VT_CONST
)
5180 return ((p
->type
.t
& VT_BTYPE
) == VT_INT
&& p
->c
.i
== 0) ||
5181 ((p
->type
.t
& VT_BTYPE
) == VT_LLONG
&& p
->c
.ll
== 0);
5184 static inline int is_integer_btype(int bt
)
5186 return (bt
== VT_BYTE
|| bt
== VT_SHORT
||
5187 bt
== VT_INT
|| bt
== VT_LLONG
);
5190 /* check types for comparison or substraction of pointers */
5191 static void check_comparison_pointer_types(SValue
*p1
, SValue
*p2
, int op
)
5193 CType
*type1
, *type2
, tmp_type1
, tmp_type2
;
5196 /* null pointers are accepted for all comparisons as gcc */
5197 if (is_null_pointer(p1
) || is_null_pointer(p2
))
5201 bt1
= type1
->t
& VT_BTYPE
;
5202 bt2
= type2
->t
& VT_BTYPE
;
5203 /* accept comparison between pointer and integer with a warning */
5204 if ((is_integer_btype(bt1
) || is_integer_btype(bt2
)) && op
!= '-') {
5205 warning("comparison between pointer and integer");
5209 /* both must be pointers or implicit function pointers */
5210 if (bt1
== VT_PTR
) {
5211 type1
= pointed_type(type1
);
5212 } else if (bt1
!= VT_FUNC
)
5213 goto invalid_operands
;
5215 if (bt2
== VT_PTR
) {
5216 type2
= pointed_type(type2
);
5217 } else if (bt2
!= VT_FUNC
) {
5219 error("invalid operands to binary %s", get_tok_str(op
, NULL
));
5221 if ((type1
->t
& VT_BTYPE
) == VT_VOID
||
5222 (type2
->t
& VT_BTYPE
) == VT_VOID
)
5226 tmp_type1
.t
&= ~(VT_UNSIGNED
| VT_CONSTANT
| VT_VOLATILE
);
5227 tmp_type2
.t
&= ~(VT_UNSIGNED
| VT_CONSTANT
| VT_VOLATILE
);
5228 if (!is_compatible_types(&tmp_type1
, &tmp_type2
)) {
5229 /* gcc-like error if '-' is used */
5231 goto invalid_operands
;
5233 warning("comparison of distinct pointer types lacks a cast");
5237 /* generic gen_op: handles types problems */
5240 int u
, t1
, t2
, bt1
, bt2
, t
;
5243 t1
= vtop
[-1].type
.t
;
5244 t2
= vtop
[0].type
.t
;
5245 bt1
= t1
& VT_BTYPE
;
5246 bt2
= t2
& VT_BTYPE
;
5248 if (bt1
== VT_PTR
|| bt2
== VT_PTR
) {
5249 /* at least one operand is a pointer */
5250 /* relationnal op: must be both pointers */
5251 if (op
>= TOK_ULT
&& op
<= TOK_GT
) {
5252 check_comparison_pointer_types(vtop
- 1, vtop
, op
);
5253 /* pointers are handled are unsigned */
5254 t
= VT_INT
| VT_UNSIGNED
;
5257 /* if both pointers, then it must be the '-' op */
5258 if (bt1
== VT_PTR
&& bt2
== VT_PTR
) {
5260 error("cannot use pointers here");
5261 check_comparison_pointer_types(vtop
- 1, vtop
, op
);
5262 /* XXX: check that types are compatible */
5263 u
= pointed_size(&vtop
[-1].type
);
5265 /* set to integer type */
5266 vtop
->type
.t
= VT_INT
;
5270 /* exactly one pointer : must be '+' or '-'. */
5271 if (op
!= '-' && op
!= '+')
5272 error("cannot use pointers here");
5273 /* Put pointer as first operand */
5274 if (bt2
== VT_PTR
) {
5278 type1
= vtop
[-1].type
;
5279 /* XXX: cast to int ? (long long case) */
5280 vpushi(pointed_size(&vtop
[-1].type
));
5282 #ifdef CONFIG_TCC_BCHECK
5283 /* if evaluating constant expression, no code should be
5284 generated, so no bound check */
5285 if (do_bounds_check
&& !const_wanted
) {
5286 /* if bounded pointers, we generate a special code to
5293 gen_bounded_ptr_add();
5299 /* put again type if gen_opic() swaped operands */
5302 } else if (is_float(bt1
) || is_float(bt2
)) {
5303 /* compute bigger type and do implicit casts */
5304 if (bt1
== VT_LDOUBLE
|| bt2
== VT_LDOUBLE
) {
5306 } else if (bt1
== VT_DOUBLE
|| bt2
== VT_DOUBLE
) {
5311 /* floats can only be used for a few operations */
5312 if (op
!= '+' && op
!= '-' && op
!= '*' && op
!= '/' &&
5313 (op
< TOK_ULT
|| op
> TOK_GT
))
5314 error("invalid operands for binary operation");
5316 } else if (bt1
== VT_LLONG
|| bt2
== VT_LLONG
) {
5317 /* cast to biggest op */
5319 /* convert to unsigned if it does not fit in a long long */
5320 if ((t1
& (VT_BTYPE
| VT_UNSIGNED
)) == (VT_LLONG
| VT_UNSIGNED
) ||
5321 (t2
& (VT_BTYPE
| VT_UNSIGNED
)) == (VT_LLONG
| VT_UNSIGNED
))
5325 /* integer operations */
5327 /* convert to unsigned if it does not fit in an integer */
5328 if ((t1
& (VT_BTYPE
| VT_UNSIGNED
)) == (VT_INT
| VT_UNSIGNED
) ||
5329 (t2
& (VT_BTYPE
| VT_UNSIGNED
)) == (VT_INT
| VT_UNSIGNED
))
5332 /* XXX: currently, some unsigned operations are explicit, so
5333 we modify them here */
5334 if (t
& VT_UNSIGNED
) {
5341 else if (op
== TOK_LT
)
5343 else if (op
== TOK_GT
)
5345 else if (op
== TOK_LE
)
5347 else if (op
== TOK_GE
)
5354 /* special case for shifts and long long: we keep the shift as
5356 if (op
== TOK_SHR
|| op
== TOK_SAR
|| op
== TOK_SHL
)
5361 else if ((t
& VT_BTYPE
) == VT_LLONG
)
5365 if (op
>= TOK_ULT
&& op
<= TOK_GT
) {
5366 /* relationnal op: the result is an int */
5367 vtop
->type
.t
= VT_INT
;
5374 /* generic itof for unsigned long long case */
5375 void gen_cvt_itof1(int t
)
5377 if ((vtop
->type
.t
& (VT_BTYPE
| VT_UNSIGNED
)) ==
5378 (VT_LLONG
| VT_UNSIGNED
)) {
5381 vpush_global_sym(&func_old_type
, TOK___ulltof
);
5382 else if (t
== VT_DOUBLE
)
5383 vpush_global_sym(&func_old_type
, TOK___ulltod
);
5385 vpush_global_sym(&func_old_type
, TOK___ulltold
);
5395 /* generic ftoi for unsigned long long case */
5396 void gen_cvt_ftoi1(int t
)
5400 if (t
== (VT_LLONG
| VT_UNSIGNED
)) {
5401 /* not handled natively */
5402 st
= vtop
->type
.t
& VT_BTYPE
;
5404 vpush_global_sym(&func_old_type
, TOK___fixunssfdi
);
5405 else if (st
== VT_DOUBLE
)
5406 vpush_global_sym(&func_old_type
, TOK___fixunsdfdi
);
5408 vpush_global_sym(&func_old_type
, TOK___fixunsxfdi
);
5413 vtop
->r2
= REG_LRET
;
5419 /* force char or short cast */
5420 void force_charshort_cast(int t
)
5424 /* XXX: add optimization if lvalue : just change type and offset */
5429 if (t
& VT_UNSIGNED
) {
5430 vpushi((1 << bits
) - 1);
5441 /* cast 'vtop' to 'type'. Casting to bitfields is forbidden. */
5442 static void gen_cast(CType
*type
)
5444 int sbt
, dbt
, sf
, df
, c
;
5446 /* special delayed cast for char/short */
5447 /* XXX: in some cases (multiple cascaded casts), it may still
5449 if (vtop
->r
& VT_MUSTCAST
) {
5450 vtop
->r
&= ~VT_MUSTCAST
;
5451 force_charshort_cast(vtop
->type
.t
);
5454 /* bitfields first get cast to ints */
5455 if (vtop
->type
.t
& VT_BITFIELD
) {
5459 dbt
= type
->t
& (VT_BTYPE
| VT_UNSIGNED
);
5460 sbt
= vtop
->type
.t
& (VT_BTYPE
| VT_UNSIGNED
);
5462 if (sbt
!= dbt
&& !nocode_wanted
) {
5465 c
= (vtop
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) == VT_CONST
;
5467 /* convert from fp to fp */
5469 /* constant case: we can do it now */
5470 /* XXX: in ISOC, cannot do it if error in convert */
5471 if (dbt
== VT_FLOAT
&& sbt
== VT_DOUBLE
)
5472 vtop
->c
.f
= (float)vtop
->c
.d
;
5473 else if (dbt
== VT_FLOAT
&& sbt
== VT_LDOUBLE
)
5474 vtop
->c
.f
= (float)vtop
->c
.ld
;
5475 else if (dbt
== VT_DOUBLE
&& sbt
== VT_FLOAT
)
5476 vtop
->c
.d
= (double)vtop
->c
.f
;
5477 else if (dbt
== VT_DOUBLE
&& sbt
== VT_LDOUBLE
)
5478 vtop
->c
.d
= (double)vtop
->c
.ld
;
5479 else if (dbt
== VT_LDOUBLE
&& sbt
== VT_FLOAT
)
5480 vtop
->c
.ld
= (long double)vtop
->c
.f
;
5481 else if (dbt
== VT_LDOUBLE
&& sbt
== VT_DOUBLE
)
5482 vtop
->c
.ld
= (long double)vtop
->c
.d
;
5484 /* non constant case: generate code */
5488 /* convert int to fp */
5491 case VT_LLONG
| VT_UNSIGNED
:
5493 /* XXX: add const cases for long long */
5495 case VT_INT
| VT_UNSIGNED
:
5497 case VT_FLOAT
: vtop
->c
.f
= (float)vtop
->c
.ui
; break;
5498 case VT_DOUBLE
: vtop
->c
.d
= (double)vtop
->c
.ui
; break;
5499 case VT_LDOUBLE
: vtop
->c
.ld
= (long double)vtop
->c
.ui
; break;
5504 case VT_FLOAT
: vtop
->c
.f
= (float)vtop
->c
.i
; break;
5505 case VT_DOUBLE
: vtop
->c
.d
= (double)vtop
->c
.i
; break;
5506 case VT_LDOUBLE
: vtop
->c
.ld
= (long double)vtop
->c
.i
; break;
5512 #if !defined(TCC_TARGET_ARM)
5519 /* convert fp to int */
5520 /* we handle char/short/etc... with generic code */
5521 if (dbt
!= (VT_INT
| VT_UNSIGNED
) &&
5522 dbt
!= (VT_LLONG
| VT_UNSIGNED
) &&
5527 case VT_LLONG
| VT_UNSIGNED
:
5529 /* XXX: add const cases for long long */
5531 case VT_INT
| VT_UNSIGNED
:
5533 case VT_FLOAT
: vtop
->c
.ui
= (unsigned int)vtop
->c
.d
; break;
5534 case VT_DOUBLE
: vtop
->c
.ui
= (unsigned int)vtop
->c
.d
; break;
5535 case VT_LDOUBLE
: vtop
->c
.ui
= (unsigned int)vtop
->c
.d
; break;
5541 case VT_FLOAT
: vtop
->c
.i
= (int)vtop
->c
.d
; break;
5542 case VT_DOUBLE
: vtop
->c
.i
= (int)vtop
->c
.d
; break;
5543 case VT_LDOUBLE
: vtop
->c
.i
= (int)vtop
->c
.d
; break;
5551 if (dbt
== VT_INT
&& (type
->t
& (VT_BTYPE
| VT_UNSIGNED
)) != dbt
) {
5552 /* additional cast for char/short/bool... */
5556 } else if ((dbt
& VT_BTYPE
) == VT_LLONG
) {
5557 if ((sbt
& VT_BTYPE
) != VT_LLONG
) {
5558 /* scalar to long long */
5560 if (sbt
== (VT_INT
| VT_UNSIGNED
))
5561 vtop
->c
.ll
= vtop
->c
.ui
;
5563 vtop
->c
.ll
= vtop
->c
.i
;
5565 /* machine independent conversion */
5567 /* generate high word */
5568 if (sbt
== (VT_INT
| VT_UNSIGNED
)) {
5576 /* patch second register */
5577 vtop
[-1].r2
= vtop
->r
;
5581 } else if (dbt
== VT_BOOL
) {
5582 /* scalar to bool */
5585 } else if ((dbt
& VT_BTYPE
) == VT_BYTE
||
5586 (dbt
& VT_BTYPE
) == VT_SHORT
) {
5587 force_charshort_cast(dbt
);
5588 } else if ((dbt
& VT_BTYPE
) == VT_INT
) {
5590 if (sbt
== VT_LLONG
) {
5591 /* from long long: just take low order word */
5595 /* if lvalue and single word type, nothing to do because
5596 the lvalue already contains the real type size (see
5597 VT_LVAL_xxx constants) */
5603 /* return type size. Put alignment at 'a' */
5604 static int type_size(CType
*type
, int *a
)
5609 bt
= type
->t
& VT_BTYPE
;
5610 if (bt
== VT_STRUCT
) {
5615 } else if (bt
== VT_PTR
) {
5616 if (type
->t
& VT_ARRAY
) {
5618 return type_size(&s
->type
, a
) * s
->c
;
5623 } else if (bt
== VT_LDOUBLE
) {
5625 return LDOUBLE_SIZE
;
5626 } else if (bt
== VT_DOUBLE
|| bt
== VT_LLONG
) {
5627 *a
= 4; /* XXX: i386 specific */
5629 } else if (bt
== VT_INT
|| bt
== VT_ENUM
|| bt
== VT_FLOAT
) {
5632 } else if (bt
== VT_SHORT
) {
5636 /* char, void, function, _Bool */
5642 /* return the pointed type of t */
5643 static inline CType
*pointed_type(CType
*type
)
5645 return &type
->ref
->type
;
5648 /* modify type so that its it is a pointer to type. */
5649 static void mk_pointer(CType
*type
)
5652 s
= sym_push(SYM_FIELD
, type
, 0, -1);
5653 type
->t
= VT_PTR
| (type
->t
& ~VT_TYPE
);
5657 /* compare function types. OLD functions match any new functions */
5658 static int is_compatible_func(CType
*type1
, CType
*type2
)
5664 if (!is_compatible_types(&s1
->type
, &s2
->type
))
5666 /* XXX: not complete */
5667 if (s1
->c
== FUNC_OLD
|| s2
->c
== FUNC_OLD
)
5671 while (s1
!= NULL
) {
5674 if (!is_compatible_types(&s1
->type
, &s2
->type
))
5684 /* return true if type1 and type2 are exactly the same (including
5687 - enums are not checked as gcc __builtin_types_compatible_p ()
5689 static int is_compatible_types(CType
*type1
, CType
*type2
)
5693 t1
= type1
->t
& VT_TYPE
;
5694 t2
= type2
->t
& VT_TYPE
;
5695 /* XXX: bitfields ? */
5698 /* test more complicated cases */
5699 bt1
= t1
& VT_BTYPE
;
5700 if (bt1
== VT_PTR
) {
5701 type1
= pointed_type(type1
);
5702 type2
= pointed_type(type2
);
5703 return is_compatible_types(type1
, type2
);
5704 } else if (bt1
== VT_STRUCT
) {
5705 return (type1
->ref
== type2
->ref
);
5706 } else if (bt1
== VT_FUNC
) {
5707 return is_compatible_func(type1
, type2
);
5713 /* print a type. If 'varstr' is not NULL, then the variable is also
5714 printed in the type */
5716 /* XXX: add array and function pointers */
5717 void type_to_str(char *buf
, int buf_size
,
5718 CType
*type
, const char *varstr
)
5725 t
= type
->t
& VT_TYPE
;
5728 if (t
& VT_CONSTANT
)
5729 pstrcat(buf
, buf_size
, "const ");
5730 if (t
& VT_VOLATILE
)
5731 pstrcat(buf
, buf_size
, "volatile ");
5732 if (t
& VT_UNSIGNED
)
5733 pstrcat(buf
, buf_size
, "unsigned ");
5763 tstr
= "long double";
5765 pstrcat(buf
, buf_size
, tstr
);
5769 if (bt
== VT_STRUCT
)
5773 pstrcat(buf
, buf_size
, tstr
);
5774 v
= type
->ref
->v
& ~SYM_STRUCT
;
5775 if (v
>= SYM_FIRST_ANOM
)
5776 pstrcat(buf
, buf_size
, "<anonymous>");
5778 pstrcat(buf
, buf_size
, get_tok_str(v
, NULL
));
5782 type_to_str(buf
, buf_size
, &s
->type
, varstr
);
5783 pstrcat(buf
, buf_size
, "(");
5785 while (sa
!= NULL
) {
5786 type_to_str(buf1
, sizeof(buf1
), &sa
->type
, NULL
);
5787 pstrcat(buf
, buf_size
, buf1
);
5790 pstrcat(buf
, buf_size
, ", ");
5792 pstrcat(buf
, buf_size
, ")");
5796 pstrcpy(buf1
, sizeof(buf1
), "*");
5798 pstrcat(buf1
, sizeof(buf1
), varstr
);
5799 type_to_str(buf
, buf_size
, &s
->type
, buf1
);
5803 pstrcat(buf
, buf_size
, " ");
5804 pstrcat(buf
, buf_size
, varstr
);
5809 /* verify type compatibility to store vtop in 'dt' type, and generate
5811 static void gen_assign_cast(CType
*dt
)
5813 CType
*st
, *type1
, *type2
, tmp_type1
, tmp_type2
;
5814 char buf1
[256], buf2
[256];
5817 st
= &vtop
->type
; /* source type */
5818 dbt
= dt
->t
& VT_BTYPE
;
5819 sbt
= st
->t
& VT_BTYPE
;
5820 if (dt
->t
& VT_CONSTANT
)
5821 warning("assignment of read-only location");
5824 /* special cases for pointers */
5825 /* '0' can also be a pointer */
5826 if (is_null_pointer(vtop
))
5828 /* accept implicit pointer to integer cast with warning */
5829 if (is_integer_btype(sbt
)) {
5830 warning("assignment makes pointer from integer without a cast");
5833 type1
= pointed_type(dt
);
5834 /* a function is implicitely a function pointer */
5835 if (sbt
== VT_FUNC
) {
5836 if ((type1
->t
& VT_BTYPE
) != VT_VOID
&&
5837 !is_compatible_types(pointed_type(dt
), st
))
5844 type2
= pointed_type(st
);
5845 if ((type1
->t
& VT_BTYPE
) == VT_VOID
||
5846 (type2
->t
& VT_BTYPE
) == VT_VOID
) {
5847 /* void * can match anything */
5849 /* exact type match, except for unsigned */
5852 tmp_type1
.t
&= ~(VT_UNSIGNED
| VT_CONSTANT
| VT_VOLATILE
);
5853 tmp_type2
.t
&= ~(VT_UNSIGNED
| VT_CONSTANT
| VT_VOLATILE
);
5854 if (!is_compatible_types(&tmp_type1
, &tmp_type2
))
5857 /* check const and volatile */
5858 if ((!(type1
->t
& VT_CONSTANT
) && (type2
->t
& VT_CONSTANT
)) ||
5859 (!(type1
->t
& VT_VOLATILE
) && (type2
->t
& VT_VOLATILE
)))
5860 warning("assignment discards qualifiers from pointer target type");
5866 if (sbt
== VT_PTR
|| sbt
== VT_FUNC
) {
5867 warning("assignment makes integer from pointer without a cast");
5869 /* XXX: more tests */
5874 tmp_type1
.t
&= ~(VT_CONSTANT
| VT_VOLATILE
);
5875 tmp_type2
.t
&= ~(VT_CONSTANT
| VT_VOLATILE
);
5876 if (!is_compatible_types(&tmp_type1
, &tmp_type2
)) {
5878 type_to_str(buf1
, sizeof(buf1
), st
, NULL
);
5879 type_to_str(buf2
, sizeof(buf2
), dt
, NULL
);
5880 error("cannot cast '%s' to '%s'", buf1
, buf2
);
5888 /* store vtop in lvalue pushed on stack */
5891 int sbt
, dbt
, ft
, r
, t
, size
, align
, bit_size
, bit_pos
, rc
, delayed_cast
;
5893 ft
= vtop
[-1].type
.t
;
5894 sbt
= vtop
->type
.t
& VT_BTYPE
;
5895 dbt
= ft
& VT_BTYPE
;
5896 if (((sbt
== VT_INT
|| sbt
== VT_SHORT
) && dbt
== VT_BYTE
) ||
5897 (sbt
== VT_INT
&& dbt
== VT_SHORT
)) {
5898 /* optimize char/short casts */
5899 delayed_cast
= VT_MUSTCAST
;
5900 vtop
->type
.t
= ft
& VT_TYPE
;
5901 /* XXX: factorize */
5902 if (ft
& VT_CONSTANT
)
5903 warning("assignment of read-only location");
5906 gen_assign_cast(&vtop
[-1].type
);
5909 if (sbt
== VT_STRUCT
) {
5910 /* if structure, only generate pointer */
5911 /* structure assignment : generate memcpy */
5912 /* XXX: optimize if small size */
5913 if (!nocode_wanted
) {
5914 size
= type_size(&vtop
->type
, &align
);
5916 vpush_global_sym(&func_old_type
, TOK_memcpy
);
5920 vtop
->type
.t
= VT_INT
;
5924 vtop
->type
.t
= VT_INT
;
5936 /* leave source on stack */
5937 } else if (ft
& VT_BITFIELD
) {
5938 /* bitfield store handling */
5939 bit_pos
= (ft
>> VT_STRUCT_SHIFT
) & 0x3f;
5940 bit_size
= (ft
>> (VT_STRUCT_SHIFT
+ 6)) & 0x3f;
5941 /* remove bit field info to avoid loops */
5942 vtop
[-1].type
.t
= ft
& ~(VT_BITFIELD
| (-1 << VT_STRUCT_SHIFT
));
5944 /* duplicate destination */
5946 vtop
[-1] = vtop
[-2];
5948 /* mask and shift source */
5949 vpushi((1 << bit_size
) - 1);
5953 /* load destination, mask and or with source */
5955 vpushi(~(((1 << bit_size
) - 1) << bit_pos
));
5961 #ifdef CONFIG_TCC_BCHECK
5962 /* bound check case */
5963 if (vtop
[-1].r
& VT_MUSTBOUND
) {
5969 if (!nocode_wanted
) {
5973 r
= gv(rc
); /* generate value */
5974 /* if lvalue was saved on stack, must read it */
5975 if ((vtop
[-1].r
& VT_VALMASK
) == VT_LLOCAL
) {
5977 t
= get_reg(RC_INT
);
5979 sv
.r
= VT_LOCAL
| VT_LVAL
;
5980 sv
.c
.ul
= vtop
[-1].c
.ul
;
5982 vtop
[-1].r
= t
| VT_LVAL
;
5985 /* two word case handling : store second register at word + 4 */
5986 if ((ft
& VT_BTYPE
) == VT_LLONG
) {
5988 /* convert to int to increment easily */
5989 vtop
->type
.t
= VT_INT
;
5995 /* XXX: it works because r2 is spilled last ! */
5996 store(vtop
->r2
, vtop
- 1);
6000 vtop
--; /* NOT vpop() because on x86 it would flush the fp stack */
6001 vtop
->r
|= delayed_cast
;
6005 /* post defines POST/PRE add. c is the token ++ or -- */
6006 void inc(int post
, int c
)
6009 vdup(); /* save lvalue */
6011 gv_dup(); /* duplicate value */
6016 vpushi(c
- TOK_MID
);
6018 vstore(); /* store value */
6020 vpop(); /* if post op, return saved value */
6023 /* Parse GNUC __attribute__ extension. Currently, the following
6024 extensions are recognized:
6025 - aligned(n) : set data/function alignment.
6026 - section(x) : generate data/code in this section.
6027 - unused : currently ignored, but may be used someday.
6029 static void parse_attribute(AttributeDef
*ad
)
6033 while (tok
== TOK_ATTRIBUTE1
|| tok
== TOK_ATTRIBUTE2
) {
6037 while (tok
!= ')') {
6038 if (tok
< TOK_IDENT
)
6039 expect("attribute name");
6047 expect("section name");
6048 ad
->section
= find_section(tcc_state
, (char *)tokc
.cstr
->data
);
6057 if (n
<= 0 || (n
& (n
- 1)) != 0)
6058 error("alignment must be a positive power of two");
6067 /* currently, no need to handle it because tcc does not
6068 track unused objects */
6072 /* currently, no need to handle it because tcc does not
6073 track unused objects */
6078 ad
->func_call
= FUNC_CDECL
;
6083 ad
->func_call
= FUNC_STDCALL
;
6086 if (tcc_state
->warn_unsupported
)
6087 warning("'%s' attribute ignored", get_tok_str(t
, NULL
));
6088 /* skip parameters */
6089 /* XXX: skip parenthesis too */
6092 while (tok
!= ')' && tok
!= -1)
6107 /* enum/struct/union declaration. u is either VT_ENUM or VT_STRUCT */
6108 static void struct_decl(CType
*type
, int u
)
6110 int a
, v
, size
, align
, maxalign
, c
, offset
;
6111 int bit_size
, bit_pos
, bsize
, bt
, lbit_pos
;
6116 a
= tok
; /* save decl type */
6121 /* struct already defined ? return it */
6123 expect("struct/union/enum name");
6127 error("invalid type");
6134 /* we put an undefined size for struct/union */
6135 s
= sym_push(v
| SYM_STRUCT
, &type1
, 0, -1);
6136 s
->r
= 0; /* default alignment is zero as gcc */
6137 /* put struct/union/enum name in type */
6145 error("struct/union/enum already defined");
6146 /* cannot be empty */
6148 /* non empty enums are not allowed */
6149 if (a
== TOK_ENUM
) {
6153 expect("identifier");
6159 /* enum symbols have static storage */
6160 ss
= sym_push(v
, &int_type
, VT_CONST
, c
);
6161 ss
->type
.t
|= VT_STATIC
;
6166 /* NOTE: we accept a trailing comma */
6176 while (tok
!= '}') {
6177 parse_btype(&btype
, &ad
);
6183 type_decl(&type1
, &ad
, &v
, TYPE_DIRECT
);
6184 if ((type1
.t
& VT_BTYPE
) == VT_FUNC
||
6185 (type1
.t
& (VT_TYPEDEF
| VT_STATIC
| VT_EXTERN
| VT_INLINE
)))
6186 error("invalid type for '%s'",
6187 get_tok_str(v
, NULL
));
6191 bit_size
= expr_const();
6192 /* XXX: handle v = 0 case for messages */
6194 error("negative width in bit-field '%s'",
6195 get_tok_str(v
, NULL
));
6196 if (v
&& bit_size
== 0)
6197 error("zero width for bit-field '%s'",
6198 get_tok_str(v
, NULL
));
6200 size
= type_size(&type1
, &align
);
6202 if (bit_size
>= 0) {
6203 bt
= type1
.t
& VT_BTYPE
;
6208 error("bitfields must have scalar type");
6210 if (bit_size
> bsize
) {
6211 error("width of '%s' exceeds its type",
6212 get_tok_str(v
, NULL
));
6213 } else if (bit_size
== bsize
) {
6214 /* no need for bit fields */
6216 } else if (bit_size
== 0) {
6217 /* XXX: what to do if only padding in a
6219 /* zero size: means to pad */
6223 /* we do not have enough room ? */
6224 if ((bit_pos
+ bit_size
) > bsize
)
6227 /* XXX: handle LSB first */
6228 type1
.t
|= VT_BITFIELD
|
6229 (bit_pos
<< VT_STRUCT_SHIFT
) |
6230 (bit_size
<< (VT_STRUCT_SHIFT
+ 6));
6231 bit_pos
+= bit_size
;
6237 /* add new memory data only if starting
6239 if (lbit_pos
== 0) {
6240 if (a
== TOK_STRUCT
) {
6241 c
= (c
+ align
- 1) & -align
;
6249 if (align
> maxalign
)
6253 printf("add field %s offset=%d",
6254 get_tok_str(v
, NULL
), offset
);
6255 if (type1
.t
& VT_BITFIELD
) {
6256 printf(" pos=%d size=%d",
6257 (type1
.t
>> VT_STRUCT_SHIFT
) & 0x3f,
6258 (type1
.t
>> (VT_STRUCT_SHIFT
+ 6)) & 0x3f);
6262 ss
= sym_push(v
| SYM_FIELD
, &type1
, 0, offset
);
6266 if (tok
== ';' || tok
== TOK_EOF
)
6273 /* store size and alignment */
6274 s
->c
= (c
+ maxalign
- 1) & -maxalign
;
6280 /* return 0 if no type declaration. otherwise, return the basic type
6283 static int parse_btype(CType
*type
, AttributeDef
*ad
)
6285 int t
, u
, type_found
, typespec_found
;
6289 memset(ad
, 0, sizeof(AttributeDef
));
6296 /* currently, we really ignore extension */
6306 if ((t
& VT_BTYPE
) != 0)
6307 error("too many basic types");
6323 if ((t
& VT_BTYPE
) == VT_DOUBLE
) {
6324 t
= (t
& ~VT_BTYPE
) | VT_LDOUBLE
;
6325 } else if ((t
& VT_BTYPE
) == VT_LONG
) {
6326 t
= (t
& ~VT_BTYPE
) | VT_LLONG
;
6340 if ((t
& VT_BTYPE
) == VT_LONG
) {
6341 t
= (t
& ~VT_BTYPE
) | VT_LDOUBLE
;
6348 struct_decl(&type1
, VT_ENUM
);
6351 type
->ref
= type1
.ref
;
6355 struct_decl(&type1
, VT_STRUCT
);
6358 /* type modifiers */
6411 /* GNUC attribute */
6412 case TOK_ATTRIBUTE1
:
6413 case TOK_ATTRIBUTE2
:
6414 parse_attribute(ad
);
6421 parse_expr_type(&type1
);
6427 if (!s
|| !(s
->type
.t
& VT_TYPEDEF
))
6429 t
|= (s
->type
.t
& ~VT_TYPEDEF
);
6430 type
->ref
= s
->type
.ref
;
6437 if ((t
& (VT_SIGNED
|VT_UNSIGNED
)) == (VT_SIGNED
|VT_UNSIGNED
))
6438 error("signed and unsigned modifier");
6439 if (tcc_state
->char_is_unsigned
) {
6440 if ((t
& (VT_SIGNED
|VT_UNSIGNED
|VT_BTYPE
)) == VT_BYTE
)
6445 /* long is never used as type */
6446 if ((t
& VT_BTYPE
) == VT_LONG
)
6447 t
= (t
& ~VT_BTYPE
) | VT_INT
;
6452 /* convert a function parameter type (array to pointer and function to
6453 function pointer) */
6454 static inline void convert_parameter_type(CType
*pt
)
6456 /* array must be transformed to pointer according to ANSI C */
6458 if ((pt
->t
& VT_BTYPE
) == VT_FUNC
) {
6463 static void post_type(CType
*type
, AttributeDef
*ad
)
6466 Sym
**plast
, *s
, *first
;
6471 /* function declaration */
6476 while (tok
!= ')') {
6477 /* read param name and compute offset */
6478 if (l
!= FUNC_OLD
) {
6479 if (!parse_btype(&pt
, &ad1
)) {
6481 error("invalid type");
6488 if ((pt
.t
& VT_BTYPE
) == VT_VOID
&& tok
== ')')
6490 type_decl(&pt
, &ad1
, &n
, TYPE_DIRECT
| TYPE_ABSTRACT
);
6491 if ((pt
.t
& VT_BTYPE
) == VT_VOID
)
6492 error("parameter declared as void");
6499 convert_parameter_type(&pt
);
6500 s
= sym_push(n
| SYM_FIELD
, &pt
, 0, 0);
6505 if (l
== FUNC_NEW
&& tok
== TOK_DOTS
) {
6512 /* if no parameters, then old type prototype */
6516 t1
= type
->t
& VT_STORAGE
;
6517 /* NOTE: const is ignored in returned type as it has a special
6518 meaning in gcc / C++ */
6519 type
->t
&= ~(VT_STORAGE
| VT_CONSTANT
);
6520 post_type(type
, ad
);
6521 /* we push a anonymous symbol which will contain the function prototype */
6522 s
= sym_push(SYM_FIELD
, type
, ad
->func_call
, l
);
6524 type
->t
= t1
| VT_FUNC
;
6526 } else if (tok
== '[') {
6527 /* array definition */
6533 error("invalid array size");
6536 /* parse next post type */
6537 t1
= type
->t
& VT_STORAGE
;
6538 type
->t
&= ~VT_STORAGE
;
6539 post_type(type
, ad
);
6541 /* we push a anonymous symbol which will contain the array
6543 s
= sym_push(SYM_FIELD
, type
, 0, n
);
6544 type
->t
= t1
| VT_ARRAY
| VT_PTR
;
6549 /* Parse a type declaration (except basic type), and return the type
6550 in 'type'. 'td' is a bitmask indicating which kind of type decl is
6551 expected. 'type' should contain the basic type. 'ad' is the
6552 attribute definition of the basic type. It can be modified by
6555 static void type_decl(CType
*type
, AttributeDef
*ad
, int *v
, int td
)
6558 CType type1
, *type2
;
6561 while (tok
== '*') {
6569 qualifiers
|= VT_CONSTANT
;
6574 qualifiers
|= VT_VOLATILE
;
6582 type
->t
|= qualifiers
;
6585 /* XXX: clarify attribute handling */
6586 if (tok
== TOK_ATTRIBUTE1
|| tok
== TOK_ATTRIBUTE2
)
6587 parse_attribute(ad
);
6589 /* recursive type */
6590 /* XXX: incorrect if abstract type for functions (e.g. 'int ()') */
6591 type1
.t
= 0; /* XXX: same as int */
6594 /* XXX: this is not correct to modify 'ad' at this point, but
6595 the syntax is not clear */
6596 if (tok
== TOK_ATTRIBUTE1
|| tok
== TOK_ATTRIBUTE2
)
6597 parse_attribute(ad
);
6598 type_decl(&type1
, ad
, v
, td
);
6601 /* type identifier */
6602 if (tok
>= TOK_IDENT
&& (td
& TYPE_DIRECT
)) {
6606 if (!(td
& TYPE_ABSTRACT
))
6607 expect("identifier");
6611 post_type(type
, ad
);
6612 if (tok
== TOK_ATTRIBUTE1
|| tok
== TOK_ATTRIBUTE2
)
6613 parse_attribute(ad
);
6616 /* append type at the end of type1 */
6629 /* compute the lvalue VT_LVAL_xxx needed to match type t. */
6630 static int lvalue_type(int t
)
6635 if (bt
== VT_BYTE
|| bt
== VT_BOOL
)
6637 else if (bt
== VT_SHORT
)
6641 if (t
& VT_UNSIGNED
)
6642 r
|= VT_LVAL_UNSIGNED
;
6646 /* indirection with full error checking and bound check */
6647 static void indir(void)
6649 if ((vtop
->type
.t
& VT_BTYPE
) != VT_PTR
)
6651 if ((vtop
->r
& VT_LVAL
) && !nocode_wanted
)
6653 vtop
->type
= *pointed_type(&vtop
->type
);
6654 /* an array is never an lvalue */
6655 if (!(vtop
->type
.t
& VT_ARRAY
)) {
6656 vtop
->r
|= lvalue_type(vtop
->type
.t
);
6657 /* if bound checking, the referenced pointer must be checked */
6658 if (do_bounds_check
)
6659 vtop
->r
|= VT_MUSTBOUND
;
6663 /* pass a parameter to a function and do type checking and casting */
6664 static void gfunc_param_typed(Sym
*func
, Sym
*arg
)
6669 func_type
= func
->c
;
6670 if (func_type
== FUNC_OLD
||
6671 (func_type
== FUNC_ELLIPSIS
&& arg
== NULL
)) {
6672 /* default casting : only need to convert float to double */
6673 if ((vtop
->type
.t
& VT_BTYPE
) == VT_FLOAT
) {
6677 } else if (arg
== NULL
) {
6678 error("too many arguments to function");
6681 type
.t
&= ~VT_CONSTANT
; /* need to do that to avoid false warning */
6682 gen_assign_cast(&type
);
6686 /* parse an expression of the form '(type)' or '(expr)' and return its
6688 static void parse_expr_type(CType
*type
)
6694 if (parse_btype(type
, &ad
)) {
6695 type_decl(type
, &ad
, &n
, TYPE_ABSTRACT
);
6702 static void parse_type(CType
*type
)
6707 if (!parse_btype(type
, &ad
)) {
6710 type_decl(type
, &ad
, &n
, TYPE_ABSTRACT
);
6713 static void vpush_tokc(int t
)
6717 vsetc(&type
, VT_CONST
, &tokc
);
6720 static void unary(void)
6722 int n
, t
, align
, size
, r
;
6727 /* XXX: GCC 2.95.3 does not generate a table although it should be
6741 vpush_tokc(VT_INT
| VT_UNSIGNED
);
6745 vpush_tokc(VT_LLONG
);
6749 vpush_tokc(VT_LLONG
| VT_UNSIGNED
);
6753 vpush_tokc(VT_FLOAT
);
6757 vpush_tokc(VT_DOUBLE
);
6761 vpush_tokc(VT_LDOUBLE
);
6764 case TOK___FUNCTION__
:
6766 goto tok_identifier
;
6772 /* special function name identifier */
6773 len
= strlen(funcname
) + 1;
6774 /* generate char[len] type */
6779 vpush_ref(&type
, data_section
, data_section
->data_offset
, len
);
6780 ptr
= section_ptr_add(data_section
, len
);
6781 memcpy(ptr
, funcname
, len
);
6789 /* string parsing */
6792 if (tcc_state
->warn_write_strings
)
6797 memset(&ad
, 0, sizeof(AttributeDef
));
6798 decl_initializer_alloc(&type
, &ad
, VT_CONST
, 2, 0, 0);
6803 if (parse_btype(&type
, &ad
)) {
6804 type_decl(&type
, &ad
, &n
, TYPE_ABSTRACT
);
6806 /* check ISOC99 compound literal */
6808 /* data is allocated locally by default */
6813 /* all except arrays are lvalues */
6814 if (!(type
.t
& VT_ARRAY
))
6815 r
|= lvalue_type(type
.t
);
6816 memset(&ad
, 0, sizeof(AttributeDef
));
6817 decl_initializer_alloc(&type
, &ad
, r
, 1, 0, 0);
6822 } else if (tok
== '{') {
6823 /* save all registers */
6825 /* statement expression : we do not accept break/continue
6826 inside as GCC does */
6827 block(NULL
, NULL
, NULL
, NULL
, 0, 1);
6842 /* functions names must be treated as function pointers,
6843 except for unary '&' and sizeof. Since we consider that
6844 functions are not lvalues, we only have to handle it
6845 there and in function calls. */
6846 /* arrays can also be used although they are not lvalues */
6847 if ((vtop
->type
.t
& VT_BTYPE
) != VT_FUNC
&&
6848 !(vtop
->type
.t
& VT_ARRAY
))
6850 mk_pointer(&vtop
->type
);
6856 if ((vtop
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) == VT_CONST
)
6857 vtop
->c
.i
= !vtop
->c
.i
;
6858 else if ((vtop
->r
& VT_VALMASK
) == VT_CMP
)
6859 vtop
->c
.i
= vtop
->c
.i
^ 1;
6861 vseti(VT_JMP
, gtst(1, 0));
6871 /* in order to force cast, we add zero */
6873 if ((vtop
->type
.t
& VT_BTYPE
) == VT_PTR
)
6874 error("pointer not accepted for unary plus");
6884 parse_expr_type(&type
);
6888 size
= type_size(&type
, &align
);
6889 if (t
== TOK_SIZEOF
) {
6891 error("sizeof applied to an incomplete type");
6898 case TOK_builtin_types_compatible_p
:
6907 type1
.t
&= ~(VT_CONSTANT
| VT_VOLATILE
);
6908 type2
.t
&= ~(VT_CONSTANT
| VT_VOLATILE
);
6909 vpushi(is_compatible_types(&type1
, &type2
));
6912 case TOK_builtin_constant_p
:
6914 int saved_nocode_wanted
, res
;
6917 saved_nocode_wanted
= nocode_wanted
;
6920 res
= (vtop
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) == VT_CONST
;
6922 nocode_wanted
= saved_nocode_wanted
;
6942 goto tok_identifier
;
6944 /* allow to take the address of a label */
6945 if (tok
< TOK_UIDENT
)
6946 expect("label identifier");
6947 s
= label_find(tok
);
6949 s
= label_push(&global_label_stack
, tok
, LABEL_FORWARD
);
6951 if (s
->r
== LABEL_DECLARED
)
6952 s
->r
= LABEL_FORWARD
;
6955 s
->type
.t
= VT_VOID
;
6956 mk_pointer(&s
->type
);
6957 s
->type
.t
|= VT_STATIC
;
6959 vset(&s
->type
, VT_CONST
| VT_SYM
, 0);
6968 expect("identifier");
6972 error("'%s' undeclared", get_tok_str(t
, NULL
));
6973 /* for simple function calls, we tolerate undeclared
6974 external reference to int() function */
6975 if (tcc_state
->warn_implicit_function_declaration
)
6976 warning("implicit declaration of function '%s'",
6977 get_tok_str(t
, NULL
));
6978 s
= external_global_sym(t
, &func_old_type
, 0);
6980 vset(&s
->type
, s
->r
, s
->c
);
6981 /* if forward reference, we must point to s */
6982 if (vtop
->r
& VT_SYM
) {
6989 /* post operations */
6991 if (tok
== TOK_INC
|| tok
== TOK_DEC
) {
6994 } else if (tok
== '.' || tok
== TOK_ARROW
) {
6996 if (tok
== TOK_ARROW
)
7001 /* expect pointer on structure */
7002 if ((vtop
->type
.t
& VT_BTYPE
) != VT_STRUCT
)
7003 expect("struct or union");
7007 while ((s
= s
->next
) != NULL
) {
7012 error("field not found");
7013 /* add field offset to pointer */
7014 vtop
->type
= char_pointer_type
; /* change type to 'char *' */
7017 /* change type to field type, and set to lvalue */
7018 vtop
->type
= s
->type
;
7019 /* an array is never an lvalue */
7020 if (!(vtop
->type
.t
& VT_ARRAY
)) {
7021 vtop
->r
|= lvalue_type(vtop
->type
.t
);
7022 /* if bound checking, the referenced pointer must be checked */
7023 if (do_bounds_check
)
7024 vtop
->r
|= VT_MUSTBOUND
;
7027 } else if (tok
== '[') {
7033 } else if (tok
== '(') {
7039 if ((vtop
->type
.t
& VT_BTYPE
) != VT_FUNC
) {
7040 /* pointer test (no array accepted) */
7041 if ((vtop
->type
.t
& (VT_BTYPE
| VT_ARRAY
)) == VT_PTR
) {
7042 vtop
->type
= *pointed_type(&vtop
->type
);
7043 if ((vtop
->type
.t
& VT_BTYPE
) != VT_FUNC
)
7047 expect("function pointer");
7050 vtop
->r
&= ~VT_LVAL
; /* no lvalue */
7052 /* get return type */
7055 sa
= s
->next
; /* first parameter */
7057 /* compute first implicit argument if a structure is returned */
7058 if ((s
->type
.t
& VT_BTYPE
) == VT_STRUCT
) {
7059 /* get some space for the returned structure */
7060 size
= type_size(&s
->type
, &align
);
7061 loc
= (loc
- size
) & -align
;
7063 ret
.r
= VT_LOCAL
| VT_LVAL
;
7064 /* pass it as 'int' to avoid structure arg passing
7066 vseti(VT_LOCAL
, loc
);
7072 /* return in register */
7073 if (is_float(ret
.type
.t
)) {
7076 if ((ret
.type
.t
& VT_BTYPE
) == VT_LLONG
)
7085 gfunc_param_typed(s
, sa
);
7095 error("too few arguments to function");
7097 if (!nocode_wanted
) {
7098 gfunc_call(nb_args
);
7100 vtop
-= (nb_args
+ 1);
7103 vsetc(&ret
.type
, ret
.r
, &ret
.c
);
7111 static void uneq(void)
7117 (tok
>= TOK_A_MOD
&& tok
<= TOK_A_DIV
) ||
7118 tok
== TOK_A_XOR
|| tok
== TOK_A_OR
||
7119 tok
== TOK_A_SHL
|| tok
== TOK_A_SAR
) {
7134 static void expr_prod(void)
7139 while (tok
== '*' || tok
== '/' || tok
== '%') {
7147 static void expr_sum(void)
7152 while (tok
== '+' || tok
== '-') {
7160 static void expr_shift(void)
7165 while (tok
== TOK_SHL
|| tok
== TOK_SAR
) {
7173 static void expr_cmp(void)
7178 while ((tok
>= TOK_ULE
&& tok
<= TOK_GT
) ||
7179 tok
== TOK_ULT
|| tok
== TOK_UGE
) {
7187 static void expr_cmpeq(void)
7192 while (tok
== TOK_EQ
|| tok
== TOK_NE
) {
7200 static void expr_and(void)
7203 while (tok
== '&') {
7210 static void expr_xor(void)
7213 while (tok
== '^') {
7220 static void expr_or(void)
7223 while (tok
== '|') {
7230 /* XXX: fix this mess */
7231 static void expr_land_const(void)
7234 while (tok
== TOK_LAND
) {
7241 /* XXX: fix this mess */
7242 static void expr_lor_const(void)
7245 while (tok
== TOK_LOR
) {
7252 /* only used if non constant */
7253 static void expr_land(void)
7258 if (tok
== TOK_LAND
) {
7262 if (tok
!= TOK_LAND
) {
7272 static void expr_lor(void)
7277 if (tok
== TOK_LOR
) {
7281 if (tok
!= TOK_LOR
) {
7291 /* XXX: better constant handling */
7292 static void expr_eq(void)
7294 int tt
, u
, r1
, r2
, rc
, t1
, t2
, bt1
, bt2
;
7296 CType type
, type1
, type2
;
7305 if (tok
== ':' && gnu_ext
) {
7321 if (vtop
!= vstack
) {
7322 /* needed to avoid having different registers saved in
7324 if (is_float(vtop
->type
.t
))
7331 if (tok
== ':' && gnu_ext
) {
7339 sv
= *vtop
; /* save value to handle it later */
7340 vtop
--; /* no vpop so that FP stack is not flushed */
7348 bt1
= t1
& VT_BTYPE
;
7350 bt2
= t2
& VT_BTYPE
;
7351 /* cast operands to correct type according to ISOC rules */
7352 if (is_float(bt1
) || is_float(bt2
)) {
7353 if (bt1
== VT_LDOUBLE
|| bt2
== VT_LDOUBLE
) {
7354 type
.t
= VT_LDOUBLE
;
7355 } else if (bt1
== VT_DOUBLE
|| bt2
== VT_DOUBLE
) {
7360 } else if (bt1
== VT_LLONG
|| bt2
== VT_LLONG
) {
7361 /* cast to biggest op */
7363 /* convert to unsigned if it does not fit in a long long */
7364 if ((t1
& (VT_BTYPE
| VT_UNSIGNED
)) == (VT_LLONG
| VT_UNSIGNED
) ||
7365 (t2
& (VT_BTYPE
| VT_UNSIGNED
)) == (VT_LLONG
| VT_UNSIGNED
))
7366 type
.t
|= VT_UNSIGNED
;
7367 } else if (bt1
== VT_PTR
|| bt2
== VT_PTR
) {
7368 /* XXX: test pointer compatibility */
7370 } else if (bt1
== VT_STRUCT
|| bt2
== VT_STRUCT
) {
7371 /* XXX: test structure compatibility */
7373 } else if (bt1
== VT_VOID
|| bt2
== VT_VOID
) {
7374 /* NOTE: as an extension, we accept void on only one side */
7377 /* integer operations */
7379 /* convert to unsigned if it does not fit in an integer */
7380 if ((t1
& (VT_BTYPE
| VT_UNSIGNED
)) == (VT_INT
| VT_UNSIGNED
) ||
7381 (t2
& (VT_BTYPE
| VT_UNSIGNED
)) == (VT_INT
| VT_UNSIGNED
))
7382 type
.t
|= VT_UNSIGNED
;
7385 /* now we convert second operand */
7388 if (is_float(type
.t
)) {
7390 } else if ((type
.t
& VT_BTYPE
) == VT_LLONG
) {
7391 /* for long longs, we use fixed registers to avoid having
7392 to handle a complicated move */
7397 /* this is horrible, but we must also convert first
7401 /* put again first value and cast it */
7412 static void gexpr(void)
7423 /* parse an expression and return its type without any side effect. */
7424 static void expr_type(CType
*type
)
7426 int saved_nocode_wanted
;
7428 saved_nocode_wanted
= nocode_wanted
;
7433 nocode_wanted
= saved_nocode_wanted
;
7436 /* parse a unary expression and return its type without any side
7438 static void unary_type(CType
*type
)
7450 /* parse a constant expression and return value in vtop. */
7451 static void expr_const1(void)
7460 /* parse an integer constant and return its value. */
7461 static int expr_const(void)
7465 if ((vtop
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) != VT_CONST
)
7466 expect("constant expression");
7472 /* return the label token if current token is a label, otherwise
7474 static int is_label(void)
7478 /* fast test first */
7479 if (tok
< TOK_UIDENT
)
7481 /* no need to save tokc because tok is an identifier */
7488 unget_tok(last_tok
);
7493 static void block(int *bsym
, int *csym
, int *case_sym
, int *def_sym
,
7494 int case_reg
, int is_expr
)
7499 /* generate line number info */
7501 (last_line_num
!= file
->line_num
|| last_ind
!= ind
)) {
7502 put_stabn(N_SLINE
, 0, file
->line_num
, ind
- func_ind
);
7504 last_line_num
= file
->line_num
;
7508 /* default return value is (void) */
7510 vtop
->type
.t
= VT_VOID
;
7513 if (tok
== TOK_IF
) {
7520 block(bsym
, csym
, case_sym
, def_sym
, case_reg
, 0);
7522 if (c
== TOK_ELSE
) {
7526 block(bsym
, csym
, case_sym
, def_sym
, case_reg
, 0);
7527 gsym(d
); /* patch else jmp */
7530 } else if (tok
== TOK_WHILE
) {
7538 block(&a
, &b
, case_sym
, def_sym
, case_reg
, 0);
7542 } else if (tok
== '{') {
7546 /* record local declaration stack position */
7548 llabel
= local_label_stack
;
7549 /* handle local labels declarations */
7550 if (tok
== TOK_LABEL
) {
7553 if (tok
< TOK_UIDENT
)
7554 expect("label identifier");
7555 label_push(&local_label_stack
, tok
, LABEL_DECLARED
);
7565 while (tok
!= '}') {
7570 block(bsym
, csym
, case_sym
, def_sym
, case_reg
, is_expr
);
7573 /* pop locally defined labels */
7574 label_pop(&local_label_stack
, llabel
);
7575 /* pop locally defined symbols */
7576 sym_pop(&local_stack
, s
);
7578 } else if (tok
== TOK_RETURN
) {
7582 gen_assign_cast(&func_vt
);
7583 if ((func_vt
.t
& VT_BTYPE
) == VT_STRUCT
) {
7585 /* if returning structure, must copy it to implicit
7586 first pointer arg location */
7589 vset(&type
, VT_LOCAL
| VT_LVAL
, func_vc
);
7592 /* copy structure value to pointer */
7594 } else if (is_float(func_vt
.t
)) {
7599 vtop
--; /* NOT vpop() because on x86 it would flush the fp stack */
7602 rsym
= gjmp(rsym
); /* jmp */
7603 } else if (tok
== TOK_BREAK
) {
7606 error("cannot break");
7607 *bsym
= gjmp(*bsym
);
7610 } else if (tok
== TOK_CONTINUE
) {
7613 error("cannot continue");
7614 *csym
= gjmp(*csym
);
7617 } else if (tok
== TOK_FOR
) {
7644 block(&a
, &b
, case_sym
, def_sym
, case_reg
, 0);
7649 if (tok
== TOK_DO
) {
7654 block(&a
, &b
, case_sym
, def_sym
, case_reg
, 0);
7665 if (tok
== TOK_SWITCH
) {
7669 /* XXX: other types than integer */
7670 case_reg
= gv(RC_INT
);
7674 b
= gjmp(0); /* jump to first case */
7676 block(&a
, csym
, &b
, &c
, case_reg
, 0);
7677 /* if no default, jmp after switch */
7685 if (tok
== TOK_CASE
) {
7692 if (gnu_ext
&& tok
== TOK_DOTS
) {
7696 warning("empty case range");
7698 /* since a case is like a label, we must skip it with a jmp */
7705 *case_sym
= gtst(1, 0);
7708 *case_sym
= gtst(1, 0);
7712 *case_sym
= gtst(1, *case_sym
);
7717 goto block_after_label
;
7719 if (tok
== TOK_DEFAULT
) {
7725 error("too many 'default'");
7728 goto block_after_label
;
7730 if (tok
== TOK_GOTO
) {
7732 if (tok
== '*' && gnu_ext
) {
7736 if ((vtop
->type
.t
& VT_BTYPE
) != VT_PTR
)
7739 } else if (tok
>= TOK_UIDENT
) {
7740 s
= label_find(tok
);
7741 /* put forward definition if needed */
7743 s
= label_push(&global_label_stack
, tok
, LABEL_FORWARD
);
7745 if (s
->r
== LABEL_DECLARED
)
7746 s
->r
= LABEL_FORWARD
;
7748 /* label already defined */
7749 if (s
->r
& LABEL_FORWARD
)
7750 s
->next
= (void *)gjmp((long)s
->next
);
7752 gjmp_addr((long)s
->next
);
7755 expect("label identifier");
7758 } else if (tok
== TOK_ASM1
|| tok
== TOK_ASM2
|| tok
== TOK_ASM3
) {
7766 if (s
->r
== LABEL_DEFINED
)
7767 error("duplicate label '%s'", get_tok_str(s
->v
, NULL
));
7768 gsym((long)s
->next
);
7769 s
->r
= LABEL_DEFINED
;
7771 s
= label_push(&global_label_stack
, b
, LABEL_DEFINED
);
7773 s
->next
= (void *)ind
;
7774 /* we accept this, but it is a mistake */
7777 warning("deprecated use of label at end of compound statement");
7781 block(bsym
, csym
, case_sym
, def_sym
, case_reg
, is_expr
);
7784 /* expression case */
7799 /* t is the array or struct type. c is the array or struct
7800 address. cur_index/cur_field is the pointer to the current
7801 value. 'size_only' is true if only size info is needed (only used
7803 static void decl_designator(CType
*type
, Section
*sec
, unsigned long c
,
7804 int *cur_index
, Sym
**cur_field
,
7808 int notfirst
, index
, index_last
, align
, l
, nb_elems
, elem_size
;
7814 if (gnu_ext
&& (l
= is_label()) != 0)
7816 while (tok
== '[' || tok
== '.') {
7818 if (!(type
->t
& VT_ARRAY
))
7819 expect("array type");
7822 index
= expr_const();
7823 if (index
< 0 || (s
->c
>= 0 && index
>= s
->c
))
7824 expect("invalid index");
7825 if (tok
== TOK_DOTS
&& gnu_ext
) {
7827 index_last
= expr_const();
7828 if (index_last
< 0 ||
7829 (s
->c
>= 0 && index_last
>= s
->c
) ||
7831 expect("invalid index");
7837 *cur_index
= index_last
;
7838 type
= pointed_type(type
);
7839 elem_size
= type_size(type
, &align
);
7840 c
+= index
* elem_size
;
7841 /* NOTE: we only support ranges for last designator */
7842 nb_elems
= index_last
- index
+ 1;
7843 if (nb_elems
!= 1) {
7852 if ((type
->t
& VT_BTYPE
) != VT_STRUCT
)
7853 expect("struct/union type");
7866 /* XXX: fix this mess by using explicit storage field */
7868 type1
.t
|= (type
->t
& ~VT_TYPE
);
7882 if (type
->t
& VT_ARRAY
) {
7884 type
= pointed_type(type
);
7885 c
+= index
* type_size(type
, &align
);
7889 error("too many field init");
7890 /* XXX: fix this mess by using explicit storage field */
7892 type1
.t
|= (type
->t
& ~VT_TYPE
);
7897 decl_initializer(type
, sec
, c
, 0, size_only
);
7899 /* XXX: make it more general */
7900 if (!size_only
&& nb_elems
> 1) {
7901 unsigned long c_end
;
7906 error("range init not supported yet for dynamic storage");
7907 c_end
= c
+ nb_elems
* elem_size
;
7908 if (c_end
> sec
->data_allocated
)
7909 section_realloc(sec
, c_end
);
7910 src
= sec
->data
+ c
;
7912 for(i
= 1; i
< nb_elems
; i
++) {
7914 memcpy(dst
, src
, elem_size
);
7920 #define EXPR_CONST 1
7923 /* store a value or an expression directly in global data or in local array */
7924 static void init_putv(CType
*type
, Section
*sec
, unsigned long c
,
7925 int v
, int expr_type
)
7927 int saved_global_expr
, bt
, bit_pos
, bit_size
;
7929 unsigned long long bit_mask
;
7937 /* compound literals must be allocated globally in this case */
7938 saved_global_expr
= global_expr
;
7941 global_expr
= saved_global_expr
;
7942 /* NOTE: symbols are accepted */
7943 if ((vtop
->r
& (VT_VALMASK
| VT_LVAL
)) != VT_CONST
)
7944 error("initializer element is not constant");
7952 dtype
.t
&= ~VT_CONSTANT
; /* need to do that to avoid false warning */
7955 /* XXX: not portable */
7956 /* XXX: generate error if incorrect relocation */
7957 gen_assign_cast(&dtype
);
7958 bt
= type
->t
& VT_BTYPE
;
7959 ptr
= sec
->data
+ c
;
7960 /* XXX: make code faster ? */
7961 if (!(type
->t
& VT_BITFIELD
)) {
7966 bit_pos
= (vtop
->type
.t
>> VT_STRUCT_SHIFT
) & 0x3f;
7967 bit_size
= (vtop
->type
.t
>> (VT_STRUCT_SHIFT
+ 6)) & 0x3f;
7968 bit_mask
= (1LL << bit_size
) - 1;
7970 if ((vtop
->r
& VT_SYM
) &&
7976 (bt
== VT_INT
&& bit_size
!= 32)))
7977 error("initializer element is not computable at load time");
7980 *(char *)ptr
|= (vtop
->c
.i
& bit_mask
) << bit_pos
;
7983 *(short *)ptr
|= (vtop
->c
.i
& bit_mask
) << bit_pos
;
7986 *(double *)ptr
= vtop
->c
.d
;
7989 *(long double *)ptr
= vtop
->c
.ld
;
7992 *(long long *)ptr
|= (vtop
->c
.ll
& bit_mask
) << bit_pos
;
7995 if (vtop
->r
& VT_SYM
) {
7996 greloc(sec
, vtop
->sym
, c
, R_DATA_32
);
7998 *(int *)ptr
|= (vtop
->c
.i
& bit_mask
) << bit_pos
;
8003 vset(&dtype
, VT_LOCAL
, c
);
8010 /* put zeros for variable based init */
8011 static void init_putz(CType
*t
, Section
*sec
, unsigned long c
, int size
)
8014 /* nothing to do because globals are already set to zero */
8016 vpush_global_sym(&func_old_type
, TOK_memset
);
8024 /* 't' contains the type and storage info. 'c' is the offset of the
8025 object in section 'sec'. If 'sec' is NULL, it means stack based
8026 allocation. 'first' is true if array '{' must be read (multi
8027 dimension implicit array init handling). 'size_only' is true if
8028 size only evaluation is wanted (only for arrays). */
8029 static void decl_initializer(CType
*type
, Section
*sec
, unsigned long c
,
8030 int first
, int size_only
)
8032 int index
, array_length
, n
, no_oblock
, nb
, parlevel
, i
;
8033 int size1
, align1
, expr_type
;
8037 if (type
->t
& VT_ARRAY
) {
8041 t1
= pointed_type(type
);
8042 size1
= type_size(t1
, &align1
);
8045 if ((first
&& tok
!= TOK_LSTR
&& tok
!= TOK_STR
) ||
8051 /* only parse strings here if correct type (otherwise: handle
8052 them as ((w)char *) expressions */
8053 if ((tok
== TOK_LSTR
&&
8054 (t1
->t
& VT_BTYPE
) == VT_INT
) ||
8056 (t1
->t
& VT_BTYPE
) == VT_BYTE
)) {
8057 while (tok
== TOK_STR
|| tok
== TOK_LSTR
) {
8062 /* compute maximum number of chars wanted */
8064 cstr_len
= cstr
->size
;
8066 cstr_len
= cstr
->size
/ sizeof(int);
8069 if (n
>= 0 && nb
> (n
- array_length
))
8070 nb
= n
- array_length
;
8073 warning("initializer-string for array is too long");
8074 /* in order to go faster for common case (char
8075 string in global variable, we handle it
8077 if (sec
&& tok
== TOK_STR
&& size1
== 1) {
8078 memcpy(sec
->data
+ c
+ array_length
, cstr
->data
, nb
);
8082 ch
= ((unsigned char *)cstr
->data
)[i
];
8084 ch
= ((int *)cstr
->data
)[i
];
8085 init_putv(t1
, sec
, c
+ (array_length
+ i
) * size1
,
8093 /* only add trailing zero if enough storage (no
8094 warning in this case since it is standard) */
8095 if (n
< 0 || array_length
< n
) {
8097 init_putv(t1
, sec
, c
+ (array_length
* size1
), 0, EXPR_VAL
);
8103 while (tok
!= '}') {
8104 decl_designator(type
, sec
, c
, &index
, NULL
, size_only
);
8105 if (n
>= 0 && index
>= n
)
8106 error("index too large");
8107 /* must put zero in holes (note that doing it that way
8108 ensures that it even works with designators) */
8109 if (!size_only
&& array_length
< index
) {
8110 init_putz(t1
, sec
, c
+ array_length
* size1
,
8111 (index
- array_length
) * size1
);
8114 if (index
> array_length
)
8115 array_length
= index
;
8116 /* special test for multi dimensional arrays (may not
8117 be strictly correct if designators are used at the
8119 if (index
>= n
&& no_oblock
)
8128 /* put zeros at the end */
8129 if (!size_only
&& n
>= 0 && array_length
< n
) {
8130 init_putz(t1
, sec
, c
+ array_length
* size1
,
8131 (n
- array_length
) * size1
);
8133 /* patch type size if needed */
8135 s
->c
= array_length
;
8136 } else if ((type
->t
& VT_BTYPE
) == VT_STRUCT
&&
8137 (sec
|| !first
|| tok
== '{')) {
8140 /* NOTE: the previous test is a specific case for automatic
8141 struct/union init */
8142 /* XXX: union needs only one init */
8144 /* XXX: this test is incorrect for local initializers
8145 beginning with ( without {. It would be much more difficult
8146 to do it correctly (ideally, the expression parser should
8147 be used in all cases) */
8153 while (tok
== '(') {
8157 if (!parse_btype(&type1
, &ad1
))
8159 type_decl(&type1
, &ad1
, &n
, TYPE_ABSTRACT
);
8161 if (!is_assignable_types(type
, &type1
))
8162 error("invalid type for cast");
8167 if (first
|| tok
== '{') {
8176 while (tok
!= '}') {
8177 decl_designator(type
, sec
, c
, NULL
, &f
, size_only
);
8179 if (!size_only
&& array_length
< index
) {
8180 init_putz(type
, sec
, c
+ array_length
,
8181 index
- array_length
);
8183 index
= index
+ type_size(&f
->type
, &align1
);
8184 if (index
> array_length
)
8185 array_length
= index
;
8187 if (no_oblock
&& f
== NULL
)
8193 /* put zeros at the end */
8194 if (!size_only
&& array_length
< n
) {
8195 init_putz(type
, sec
, c
+ array_length
,
8204 } else if (tok
== '{') {
8206 decl_initializer(type
, sec
, c
, first
, size_only
);
8208 } else if (size_only
) {
8209 /* just skip expression */
8211 while ((parlevel
> 0 || (tok
!= '}' && tok
!= ',')) &&
8215 else if (tok
== ')')
8220 /* currently, we always use constant expression for globals
8221 (may change for scripting case) */
8222 expr_type
= EXPR_CONST
;
8224 expr_type
= EXPR_ANY
;
8225 init_putv(type
, sec
, c
, 0, expr_type
);
8229 /* parse an initializer for type 't' if 'has_init' is non zero, and
8230 allocate space in local or global data space ('r' is either
8231 VT_LOCAL or VT_CONST). If 'v' is non zero, then an associated
8232 variable 'v' of scope 'scope' is declared before initializers are
8233 parsed. If 'v' is zero, then a reference to the new object is put
8234 in the value stack. If 'has_init' is 2, a special parsing is done
8235 to handle string constants. */
8236 static void decl_initializer_alloc(CType
*type
, AttributeDef
*ad
, int r
,
8237 int has_init
, int v
, int scope
)
8239 int size
, align
, addr
, data_offset
;
8241 ParseState saved_parse_state
;
8242 TokenString init_str
;
8245 size
= type_size(type
, &align
);
8246 /* If unknown size, we must evaluate it before
8247 evaluating initializers because
8248 initializers can generate global data too
8249 (e.g. string pointers or ISOC99 compound
8250 literals). It also simplifies local
8251 initializers handling */
8252 tok_str_new(&init_str
);
8255 error("unknown type size");
8256 /* get all init string */
8257 if (has_init
== 2) {
8258 /* only get strings */
8259 while (tok
== TOK_STR
|| tok
== TOK_LSTR
) {
8260 tok_str_add_tok(&init_str
);
8265 while (level
> 0 || (tok
!= ',' && tok
!= ';')) {
8267 error("unexpected end of file in initializer");
8268 tok_str_add_tok(&init_str
);
8271 else if (tok
== '}') {
8279 tok_str_add(&init_str
, -1);
8280 tok_str_add(&init_str
, 0);
8283 save_parse_state(&saved_parse_state
);
8285 macro_ptr
= init_str
.str
;
8287 decl_initializer(type
, NULL
, 0, 1, 1);
8288 /* prepare second initializer parsing */
8289 macro_ptr
= init_str
.str
;
8292 /* if still unknown size, error */
8293 size
= type_size(type
, &align
);
8295 error("unknown type size");
8297 /* take into account specified alignment if bigger */
8298 if (ad
->aligned
> align
)
8299 align
= ad
->aligned
;
8300 if ((r
& VT_VALMASK
) == VT_LOCAL
) {
8302 if (do_bounds_check
&& (type
->t
& VT_ARRAY
))
8304 loc
= (loc
- size
) & -align
;
8306 /* handles bounds */
8307 /* XXX: currently, since we do only one pass, we cannot track
8308 '&' operators, so we add only arrays */
8309 if (do_bounds_check
&& (type
->t
& VT_ARRAY
)) {
8310 unsigned long *bounds_ptr
;
8311 /* add padding between regions */
8313 /* then add local bound info */
8314 bounds_ptr
= section_ptr_add(lbounds_section
, 2 * sizeof(unsigned long));
8315 bounds_ptr
[0] = addr
;
8316 bounds_ptr
[1] = size
;
8319 /* local variable */
8320 sym_push(v
, type
, r
, addr
);
8322 /* push local reference */
8323 vset(type
, r
, addr
);
8329 if (v
&& scope
== VT_CONST
) {
8330 /* see if the symbol was already defined */
8333 if (!is_compatible_types(&sym
->type
, type
))
8334 error("incompatible types for redefinition of '%s'",
8335 get_tok_str(v
, NULL
));
8336 if (sym
->type
.t
& VT_EXTERN
) {
8337 /* if the variable is extern, it was not allocated */
8338 sym
->type
.t
&= ~VT_EXTERN
;
8340 /* we accept several definitions of the same
8341 global variable. this is tricky, because we
8342 must play with the SHN_COMMON type of the symbol */
8343 /* XXX: should check if the variable was already
8344 initialized. It is incorrect to initialized it
8346 /* no init data, we won't add more to the symbol */
8353 /* allocate symbol in corresponding section */
8360 data_offset
= sec
->data_offset
;
8361 data_offset
= (data_offset
+ align
- 1) & -align
;
8363 /* very important to increment global pointer at this time
8364 because initializers themselves can create new initializers */
8365 data_offset
+= size
;
8366 /* add padding if bound check */
8367 if (do_bounds_check
)
8369 sec
->data_offset
= data_offset
;
8370 /* allocate section space to put the data */
8371 if (sec
->sh_type
!= SHT_NOBITS
&&
8372 data_offset
> sec
->data_allocated
)
8373 section_realloc(sec
, data_offset
);
8375 addr
= 0; /* avoid warning */
8379 if (scope
== VT_CONST
) {
8384 sym
= sym_push(v
, type
, r
| VT_SYM
, 0);
8386 /* update symbol definition */
8388 put_extern_sym(sym
, sec
, addr
, size
);
8391 /* put a common area */
8392 put_extern_sym(sym
, NULL
, align
, size
);
8393 /* XXX: find a nicer way */
8394 esym
= &((Elf32_Sym
*)symtab_section
->data
)[sym
->c
];
8395 esym
->st_shndx
= SHN_COMMON
;
8400 /* push global reference */
8401 sym
= get_sym_ref(type
, sec
, addr
, size
);
8403 vsetc(type
, VT_CONST
| VT_SYM
, &cval
);
8407 /* handles bounds now because the symbol must be defined
8408 before for the relocation */
8409 if (do_bounds_check
) {
8410 unsigned long *bounds_ptr
;
8412 greloc(bounds_section
, sym
, bounds_section
->data_offset
, R_DATA_32
);
8413 /* then add global bound info */
8414 bounds_ptr
= section_ptr_add(bounds_section
, 2 * sizeof(long));
8415 bounds_ptr
[0] = 0; /* relocated */
8416 bounds_ptr
[1] = size
;
8420 decl_initializer(type
, sec
, addr
, 1, 0);
8421 /* restore parse state if needed */
8423 tok_str_free(init_str
.str
);
8424 restore_parse_state(&saved_parse_state
);
8430 void put_func_debug(Sym
*sym
)
8435 /* XXX: we put here a dummy type */
8436 snprintf(buf
, sizeof(buf
), "%s:%c1",
8437 funcname
, sym
->type
.t
& VT_STATIC
? 'f' : 'F');
8438 put_stabs_r(buf
, N_FUN
, 0, file
->line_num
, 0,
8439 cur_text_section
, sym
->c
);
8444 /* not finished : try to put some local vars in registers */
8445 //#define CONFIG_REG_VARS
8447 #ifdef CONFIG_REG_VARS
8448 void add_var_ref(int t
)
8450 printf("%s:%d: &%s\n",
8451 file
->filename
, file
->line_num
,
8452 get_tok_str(t
, NULL
));
8455 /* first pass on a function with heuristic to extract variable usage
8456 and pointer references to local variables for register allocation */
8457 void analyse_function(void)
8464 /* any symbol coming after '&' is considered as being a
8465 variable whose reference is taken. It is highly unaccurate
8466 but it is difficult to do better without a complete parse */
8469 /* if '& number', then no need to examine next tokens */
8470 if (tok
== TOK_CINT
||
8472 tok
== TOK_CLLONG
||
8473 tok
== TOK_CULLONG
) {
8475 } else if (tok
>= TOK_UIDENT
) {
8476 /* if '& ident [' or '& ident ->', then ident address
8480 if (tok
!= '[' && tok
!= TOK_ARROW
)
8484 while (tok
!= '}' && tok
!= ';' &&
8485 !((tok
== ',' || tok
== ')') && level
== 0)) {
8486 if (tok
>= TOK_UIDENT
) {
8488 } else if (tok
== '(') {
8490 } else if (tok
== ')') {
8503 /* parse an old style function declaration list */
8504 /* XXX: check multiple parameter */
8505 static void func_decl_list(Sym
*func_sym
)
8512 /* parse each declaration */
8513 while (tok
!= '{' && tok
!= ';' && tok
!= ',' && tok
!= TOK_EOF
) {
8514 if (!parse_btype(&btype
, &ad
))
8515 expect("declaration list");
8516 if (((btype
.t
& VT_BTYPE
) == VT_ENUM
||
8517 (btype
.t
& VT_BTYPE
) == VT_STRUCT
) &&
8519 /* we accept no variable after */
8523 type_decl(&type
, &ad
, &v
, TYPE_DIRECT
);
8524 /* find parameter in function parameter list */
8527 if ((s
->v
& ~SYM_FIELD
) == v
)
8531 error("declaration for parameter '%s' but no such parameter",
8532 get_tok_str(v
, NULL
));
8534 /* check that no storage specifier except 'register' was given */
8535 if (type
.t
& VT_STORAGE
)
8536 error("storage class specified for '%s'", get_tok_str(v
, NULL
));
8537 convert_parameter_type(&type
);
8538 /* we can add the type (NOTE: it could be local to the function) */
8540 /* accept other parameters */
8551 /* 'l' is VT_LOCAL or VT_CONST to define default storage type */
8552 static void decl(int l
)
8560 if (!parse_btype(&btype
, &ad
)) {
8561 /* skip redundant ';' */
8562 /* XXX: find more elegant solution */
8567 /* special test for old K&R protos without explicit int
8568 type. Only accepted when defining global data */
8569 if (l
== VT_LOCAL
|| tok
< TOK_DEFINE
)
8573 if (((btype
.t
& VT_BTYPE
) == VT_ENUM
||
8574 (btype
.t
& VT_BTYPE
) == VT_STRUCT
) &&
8576 /* we accept no variable after */
8580 while (1) { /* iterate thru each declaration */
8582 type_decl(&type
, &ad
, &v
, TYPE_DIRECT
);
8586 type_to_str(buf
, sizeof(buf
), t
, get_tok_str(v
, NULL
));
8587 printf("type = '%s'\n", buf
);
8590 if ((type
.t
& VT_BTYPE
) == VT_FUNC
) {
8591 /* if old style function prototype, we accept a
8594 if (sym
->c
== FUNC_OLD
)
8595 func_decl_list(sym
);
8599 #ifdef CONFIG_REG_VARS
8600 TokenString func_str
;
8601 ParseState saved_parse_state
;
8606 error("cannot use local functions");
8607 if (!(type
.t
& VT_FUNC
))
8608 expect("function definition");
8610 /* reject abstract declarators in function definition */
8612 while ((sym
= sym
->next
) != NULL
)
8613 if (!(sym
->v
& ~SYM_FIELD
))
8614 expect("identifier");
8616 /* XXX: cannot do better now: convert extern line to static inline */
8617 if ((type
.t
& (VT_EXTERN
| VT_INLINE
)) == (VT_EXTERN
| VT_INLINE
))
8618 type
.t
= (type
.t
& ~VT_EXTERN
) | VT_STATIC
;
8620 #ifdef CONFIG_REG_VARS
8621 /* parse all function code and record it */
8623 tok_str_new(&func_str
);
8629 error("unexpected end of file");
8630 tok_str_add_tok(&func_str
);
8635 } else if (t
== '}') {
8637 if (block_level
== 0)
8641 tok_str_add(&func_str
, -1);
8642 tok_str_add(&func_str
, 0);
8644 save_parse_state(&saved_parse_state
);
8646 macro_ptr
= func_str
.str
;
8651 /* compute text section */
8652 cur_text_section
= ad
.section
;
8653 if (!cur_text_section
)
8654 cur_text_section
= text_section
;
8655 ind
= cur_text_section
->data_offset
;
8656 funcname
= get_tok_str(v
, NULL
);
8659 /* if symbol is already defined, then put complete type */
8662 /* put function symbol */
8663 sym
= global_identifier_push(v
, type
.t
, 0);
8664 sym
->type
.ref
= type
.ref
;
8666 /* NOTE: we patch the symbol size later */
8667 put_extern_sym(sym
, cur_text_section
, ind
, 0);
8669 sym
->r
= VT_SYM
| VT_CONST
;
8670 /* put debug symbol */
8672 put_func_debug(sym
);
8673 /* push a dummy symbol to enable local sym storage */
8674 sym_push2(&local_stack
, SYM_FIELD
, 0, 0);
8675 gfunc_prolog(&type
);
8678 #ifdef CONFIG_REG_VARS
8679 macro_ptr
= func_str
.str
;
8682 block(NULL
, NULL
, NULL
, NULL
, 0, 0);
8685 cur_text_section
->data_offset
= ind
;
8686 label_pop(&global_label_stack
, NULL
);
8687 sym_pop(&local_stack
, NULL
); /* reset local stack */
8688 /* end of function */
8689 /* patch symbol size */
8690 ((Elf32_Sym
*)symtab_section
->data
)[sym
->c
].st_size
=
8693 put_stabn(N_FUN
, 0, 0, ind
- func_ind
);
8695 funcname
= ""; /* for safety */
8696 func_vt
.t
= VT_VOID
; /* for safety */
8697 ind
= 0; /* for safety */
8699 #ifdef CONFIG_REG_VARS
8700 tok_str_free(func_str
.str
);
8701 restore_parse_state(&saved_parse_state
);
8705 if (btype
.t
& VT_TYPEDEF
) {
8706 /* save typedefed type */
8707 /* XXX: test storage specifiers ? */
8708 sym
= sym_push(v
, &type
, 0, 0);
8709 sym
->type
.t
|= VT_TYPEDEF
;
8710 } else if ((type
.t
& VT_BTYPE
) == VT_FUNC
) {
8711 /* external function definition */
8712 external_sym(v
, &type
, 0);
8714 /* not lvalue if array */
8716 if (!(type
.t
& VT_ARRAY
))
8717 r
|= lvalue_type(type
.t
);
8718 has_init
= (tok
== '=');
8719 if ((btype
.t
& VT_EXTERN
) ||
8720 ((type
.t
& VT_ARRAY
) && (type
.t
& VT_STATIC
) &&
8721 !has_init
&& l
== VT_CONST
&& type
.ref
->c
< 0)) {
8722 /* external variable */
8723 /* NOTE: as GCC, uninitialized global static
8724 arrays of null size are considered as
8726 external_sym(v
, &type
, r
);
8728 if (type
.t
& VT_STATIC
)
8734 decl_initializer_alloc(&type
, &ad
, r
,
8748 /* better than nothing, but needs extension to handle '-E' option
8750 static void preprocess_init(TCCState
*s1
)
8752 s1
->include_stack_ptr
= s1
->include_stack
;
8753 /* XXX: move that before to avoid having to initialize
8754 file->ifdef_stack_ptr ? */
8755 s1
->ifdef_stack_ptr
= s1
->ifdef_stack
;
8756 file
->ifdef_stack_ptr
= s1
->ifdef_stack_ptr
;
8758 /* XXX: not ANSI compliant: bound checking says error */
8762 /* compile the C file opened in 'file'. Return non zero if errors. */
8763 static int tcc_compile(TCCState
*s1
)
8767 volatile int section_sym
;
8770 printf("%s: **** new file\n", file
->filename
);
8772 preprocess_init(s1
);
8775 anon_sym
= SYM_FIRST_ANOM
;
8777 /* file info: full path + filename */
8778 section_sym
= 0; /* avoid warning */
8780 section_sym
= put_elf_sym(symtab_section
, 0, 0,
8781 ELF32_ST_INFO(STB_LOCAL
, STT_SECTION
), 0,
8782 text_section
->sh_num
, NULL
);
8783 getcwd(buf
, sizeof(buf
));
8784 pstrcat(buf
, sizeof(buf
), "/");
8785 put_stabs_r(buf
, N_SO
, 0, 0,
8786 text_section
->data_offset
, text_section
, section_sym
);
8787 put_stabs_r(file
->filename
, N_SO
, 0, 0,
8788 text_section
->data_offset
, text_section
, section_sym
);
8790 /* an elf symbol of type STT_FILE must be put so that STB_LOCAL
8791 symbols can be safely used */
8792 put_elf_sym(symtab_section
, 0, 0,
8793 ELF32_ST_INFO(STB_LOCAL
, STT_FILE
), 0,
8794 SHN_ABS
, file
->filename
);
8796 /* define some often used types */
8797 int_type
.t
= VT_INT
;
8799 char_pointer_type
.t
= VT_BYTE
;
8800 mk_pointer(&char_pointer_type
);
8802 func_old_type
.t
= VT_FUNC
;
8803 func_old_type
.ref
= sym_push(SYM_FIELD
, &int_type
, FUNC_CDECL
, FUNC_OLD
);
8806 /* define 'void *alloca(unsigned int)' builtin function */
8811 sym
= sym_push(p
, mk_pointer(VT_VOID
), FUNC_CDECL
, FUNC_NEW
);
8812 s1
= sym_push(SYM_FIELD
, VT_UNSIGNED
| VT_INT
, 0, 0);
8815 sym_push(TOK_alloca
, VT_FUNC
| (p
<< VT_STRUCT_SHIFT
), VT_CONST
, 0);
8819 define_start
= define_stack
;
8821 if (setjmp(s1
->error_jmp_buf
) == 0) {
8823 s1
->error_set_jmp_enabled
= 1;
8825 ch
= file
->buf_ptr
[0];
8826 tok_flags
= TOK_FLAG_BOL
| TOK_FLAG_BOF
;
8827 parse_flags
= PARSE_FLAG_PREPROCESS
| PARSE_FLAG_TOK_NUM
;
8831 expect("declaration");
8833 /* end of translation unit info */
8835 put_stabs_r(NULL
, N_SO
, 0, 0,
8836 text_section
->data_offset
, text_section
, section_sym
);
8839 s1
->error_set_jmp_enabled
= 0;
8841 /* reset define stack, but leave -Dsymbols (may be incorrect if
8842 they are undefined) */
8843 free_defines(define_start
);
8845 sym_pop(&global_stack
, NULL
);
8847 return s1
->nb_errors
!= 0 ? -1 : 0;
8851 int tcc_compile_string(TCCState
*s
, const char *str
)
8853 BufferedFile bf1
, *bf
= &bf1
;
8857 /* init file structure */
8859 /* XXX: avoid copying */
8861 buf
= tcc_malloc(len
+ 1);
8864 memcpy(buf
, str
, len
);
8867 bf
->buf_end
= buf
+ len
;
8868 pstrcpy(bf
->filename
, sizeof(bf
->filename
), "<string>");
8872 ret
= tcc_compile(s
);
8876 /* currently, no need to close */
8881 /* define a preprocessor symbol. A value can also be provided with the '=' operator */
8882 void tcc_define_symbol(TCCState
*s1
, const char *sym
, const char *value
)
8884 BufferedFile bf1
, *bf
= &bf1
;
8886 pstrcpy(bf
->buffer
, IO_BUF_SIZE
, sym
);
8887 pstrcat(bf
->buffer
, IO_BUF_SIZE
, " ");
8891 pstrcat(bf
->buffer
, IO_BUF_SIZE
, value
);
8893 /* init file structure */
8895 bf
->buf_ptr
= bf
->buffer
;
8896 bf
->buf_end
= bf
->buffer
+ strlen(bf
->buffer
);
8897 *bf
->buf_end
= CH_EOB
;
8898 bf
->filename
[0] = '\0';
8902 s1
->include_stack_ptr
= s1
->include_stack
;
8904 /* parse with define parser */
8905 ch
= file
->buf_ptr
[0];
8911 /* undefine a preprocessor symbol */
8912 void tcc_undefine_symbol(TCCState
*s1
, const char *sym
)
8916 ts
= tok_alloc(sym
, strlen(sym
));
8917 s
= define_find(ts
->tok
);
8918 /* undefine symbol by putting an invalid name */
8923 #ifdef CONFIG_TCC_ASM
8925 #ifdef TCC_TARGET_I386
8926 #include "i386-asm.c"
8931 static void asm_instr(void)
8933 error("inline asm() not supported");
8939 /* print the position in the source file of PC value 'pc' by reading
8940 the stabs debug information */
8941 static void rt_printline(unsigned long wanted_pc
)
8943 Stab_Sym
*sym
, *sym_end
;
8944 char func_name
[128], last_func_name
[128];
8945 unsigned long func_addr
, last_pc
, pc
;
8946 const char *incl_files
[INCLUDE_STACK_SIZE
];
8947 int incl_index
, len
, last_line_num
, i
;
8948 const char *str
, *p
;
8950 fprintf(stderr
, "0x%08lx:", wanted_pc
);
8952 func_name
[0] = '\0';
8955 last_func_name
[0] = '\0';
8956 last_pc
= 0xffffffff;
8958 sym
= (Stab_Sym
*)stab_section
->data
+ 1;
8959 sym_end
= (Stab_Sym
*)(stab_section
->data
+ stab_section
->data_offset
);
8960 while (sym
< sym_end
) {
8961 switch(sym
->n_type
) {
8962 /* function start or end */
8964 if (sym
->n_strx
== 0) {
8965 /* we test if between last line and end of function */
8966 pc
= sym
->n_value
+ func_addr
;
8967 if (wanted_pc
>= last_pc
&& wanted_pc
< pc
)
8969 func_name
[0] = '\0';
8972 str
= stabstr_section
->data
+ sym
->n_strx
;
8973 p
= strchr(str
, ':');
8975 pstrcpy(func_name
, sizeof(func_name
), str
);
8978 if (len
> sizeof(func_name
) - 1)
8979 len
= sizeof(func_name
) - 1;
8980 memcpy(func_name
, str
, len
);
8981 func_name
[len
] = '\0';
8983 func_addr
= sym
->n_value
;
8986 /* line number info */
8988 pc
= sym
->n_value
+ func_addr
;
8989 if (wanted_pc
>= last_pc
&& wanted_pc
< pc
)
8992 last_line_num
= sym
->n_desc
;
8994 strcpy(last_func_name
, func_name
);
8998 str
= stabstr_section
->data
+ sym
->n_strx
;
9000 if (incl_index
< INCLUDE_STACK_SIZE
) {
9001 incl_files
[incl_index
++] = str
;
9009 if (sym
->n_strx
== 0) {
9010 incl_index
= 0; /* end of translation unit */
9012 str
= stabstr_section
->data
+ sym
->n_strx
;
9013 /* do not add path */
9015 if (len
> 0 && str
[len
- 1] != '/')
9023 /* second pass: we try symtab symbols (no line number info) */
9026 Elf32_Sym
*sym
, *sym_end
;
9029 sym_end
= (Elf32_Sym
*)(symtab_section
->data
+ symtab_section
->data_offset
);
9030 for(sym
= (Elf32_Sym
*)symtab_section
->data
+ 1;
9033 type
= ELF32_ST_TYPE(sym
->st_info
);
9034 if (type
== STT_FUNC
) {
9035 if (wanted_pc
>= sym
->st_value
&&
9036 wanted_pc
< sym
->st_value
+ sym
->st_size
) {
9037 pstrcpy(last_func_name
, sizeof(last_func_name
),
9038 strtab_section
->data
+ sym
->st_name
);
9044 /* did not find any info: */
9045 fprintf(stderr
, " ???\n");
9048 if (last_func_name
[0] != '\0') {
9049 fprintf(stderr
, " %s()", last_func_name
);
9051 if (incl_index
> 0) {
9052 fprintf(stderr
, " (%s:%d",
9053 incl_files
[incl_index
- 1], last_line_num
);
9054 for(i
= incl_index
- 2; i
>= 0; i
--)
9055 fprintf(stderr
, ", included from %s", incl_files
[i
]);
9056 fprintf(stderr
, ")");
9058 fprintf(stderr
, "\n");
9065 /* fix for glibc 2.1 */
9071 /* return the PC at frame level 'level'. Return non zero if not found */
9072 static int rt_get_caller_pc(unsigned long *paddr
,
9073 ucontext_t
*uc
, int level
)
9080 *paddr
= uc
->uc_mcontext
.mc_eip
;
9082 *paddr
= uc
->uc_mcontext
.gregs
[REG_EIP
];
9087 fp
= uc
->uc_mcontext
.mc_ebp
;
9089 fp
= uc
->uc_mcontext
.gregs
[REG_EBP
];
9091 for(i
=1;i
<level
;i
++) {
9092 /* XXX: check address validity with program info */
9093 if (fp
<= 0x1000 || fp
>= 0xc0000000)
9095 fp
= ((unsigned long *)fp
)[0];
9097 *paddr
= ((unsigned long *)fp
)[1];
9103 #warning add arch specific rt_get_caller_pc()
9105 static int rt_get_caller_pc(unsigned long *paddr
,
9106 ucontext_t
*uc
, int level
)
9112 /* emit a run time error at position 'pc' */
9113 void rt_error(ucontext_t
*uc
, const char *fmt
, ...)
9120 fprintf(stderr
, "Runtime error: ");
9121 vfprintf(stderr
, fmt
, ap
);
9122 fprintf(stderr
, "\n");
9123 for(i
=0;i
<num_callers
;i
++) {
9124 if (rt_get_caller_pc(&pc
, uc
, i
) < 0)
9127 fprintf(stderr
, "at ");
9129 fprintf(stderr
, "by ");
9136 /* signal handler for fatal errors */
9137 static void sig_error(int signum
, siginfo_t
*siginf
, void *puc
)
9139 ucontext_t
*uc
= puc
;
9143 switch(siginf
->si_code
) {
9146 rt_error(uc
, "division by zero");
9149 rt_error(uc
, "floating point exception");
9155 if (rt_bound_error_msg
&& *rt_bound_error_msg
)
9156 rt_error(uc
, *rt_bound_error_msg
);
9158 rt_error(uc
, "dereferencing invalid pointer");
9161 rt_error(uc
, "illegal instruction");
9164 rt_error(uc
, "abort() called");
9167 rt_error(uc
, "caught signal %d", signum
);
9174 /* do all relocations (needed before using tcc_get_symbol()) */
9175 int tcc_relocate(TCCState
*s1
)
9182 tcc_add_runtime(s1
);
9184 build_got_entries(s1
);
9186 relocate_common_syms();
9188 /* compute relocation address : section are relocated in place. We
9189 also alloc the bss space */
9190 for(i
= 1; i
< s1
->nb_sections
; i
++) {
9191 s
= s1
->sections
[i
];
9192 if (s
->sh_flags
& SHF_ALLOC
) {
9193 if (s
->sh_type
== SHT_NOBITS
)
9194 s
->data
= tcc_mallocz(s
->data_offset
);
9195 s
->sh_addr
= (unsigned long)s
->data
;
9199 relocate_syms(s1
, 1);
9201 if (s1
->nb_errors
!= 0)
9204 /* relocate each section */
9205 for(i
= 1; i
< s1
->nb_sections
; i
++) {
9206 s
= s1
->sections
[i
];
9208 relocate_section(s1
, s
);
9213 /* launch the compiled program with the given arguments */
9214 int tcc_run(TCCState
*s1
, int argc
, char **argv
)
9216 int (*prog_main
)(int, char **);
9218 if (tcc_relocate(s1
) < 0)
9221 prog_main
= tcc_get_symbol_err(s1
, "main");
9225 error("debug mode currently not available for Windows");
9227 struct sigaction sigact
;
9228 /* install TCC signal handlers to print debug info on fatal
9230 sigact
.sa_flags
= SA_SIGINFO
| SA_RESETHAND
;
9231 sigact
.sa_sigaction
= sig_error
;
9232 sigemptyset(&sigact
.sa_mask
);
9233 sigaction(SIGFPE
, &sigact
, NULL
);
9234 sigaction(SIGILL
, &sigact
, NULL
);
9235 sigaction(SIGSEGV
, &sigact
, NULL
);
9236 sigaction(SIGBUS
, &sigact
, NULL
);
9237 sigaction(SIGABRT
, &sigact
, NULL
);
9241 #ifdef CONFIG_TCC_BCHECK
9242 if (do_bounds_check
) {
9243 void (*bound_init
)(void);
9245 /* set error function */
9246 rt_bound_error_msg
= (void *)tcc_get_symbol_err(s1
,
9247 "__bound_error_msg");
9249 /* XXX: use .init section so that it also work in binary ? */
9250 bound_init
= (void *)tcc_get_symbol_err(s1
, "__bound_init");
9254 return (*prog_main
)(argc
, argv
);
9257 TCCState
*tcc_new(void)
9264 s
= tcc_mallocz(sizeof(TCCState
));
9268 s
->output_type
= TCC_OUTPUT_MEMORY
;
9270 /* init isid table */
9272 isidnum_table
[i
] = isid(i
) || isnum(i
);
9274 /* add all tokens */
9276 memset(hash_ident
, 0, TOK_HASH_SIZE
* sizeof(TokenSym
*));
9278 tok_ident
= TOK_IDENT
;
9287 ts
= tok_alloc(p
, r
- p
- 1);
9291 /* we add dummy defines for some special macros to speed up tests
9292 and to have working defined() */
9293 define_push(TOK___LINE__
, MACRO_OBJ
, NULL
, NULL
);
9294 define_push(TOK___FILE__
, MACRO_OBJ
, NULL
, NULL
);
9295 define_push(TOK___DATE__
, MACRO_OBJ
, NULL
, NULL
);
9296 define_push(TOK___TIME__
, MACRO_OBJ
, NULL
, NULL
);
9298 /* standard defines */
9299 tcc_define_symbol(s
, "__STDC__", NULL
);
9300 #if defined(TCC_TARGET_I386)
9301 tcc_define_symbol(s
, "__i386__", NULL
);
9303 #if defined(TCC_TARGET_ARM)
9304 tcc_define_symbol(s
, "__ARM_ARCH_4__", NULL
);
9305 tcc_define_symbol(s
, "__arm_elf__", NULL
);
9306 tcc_define_symbol(s
, "__arm_elf", NULL
);
9307 tcc_define_symbol(s
, "arm_elf", NULL
);
9308 tcc_define_symbol(s
, "__arm__", NULL
);
9309 tcc_define_symbol(s
, "__arm", NULL
);
9310 tcc_define_symbol(s
, "arm", NULL
);
9311 tcc_define_symbol(s
, "__APCS_32__", NULL
);
9314 tcc_define_symbol(s
, "__linux__", NULL
);
9315 tcc_define_symbol(s
, "linux", NULL
);
9317 /* tiny C specific defines */
9318 tcc_define_symbol(s
, "__TINYC__", NULL
);
9320 /* tiny C & gcc defines */
9321 tcc_define_symbol(s
, "__SIZE_TYPE__", "unsigned int");
9322 tcc_define_symbol(s
, "__PTRDIFF_TYPE__", "int");
9323 tcc_define_symbol(s
, "__WCHAR_TYPE__", "int");
9325 /* default library paths */
9326 tcc_add_library_path(s
, "/usr/local/lib");
9327 tcc_add_library_path(s
, "/usr/lib");
9328 tcc_add_library_path(s
, "/lib");
9330 /* no section zero */
9331 dynarray_add((void ***)&s
->sections
, &s
->nb_sections
, NULL
);
9333 /* create standard sections */
9334 text_section
= new_section(s
, ".text", SHT_PROGBITS
, SHF_ALLOC
| SHF_EXECINSTR
);
9335 data_section
= new_section(s
, ".data", SHT_PROGBITS
, SHF_ALLOC
| SHF_WRITE
);
9336 bss_section
= new_section(s
, ".bss", SHT_NOBITS
, SHF_ALLOC
| SHF_WRITE
);
9338 /* symbols are always generated for linking stage */
9339 symtab_section
= new_symtab(s
, ".symtab", SHT_SYMTAB
, 0,
9341 ".hashtab", SHF_PRIVATE
);
9342 strtab_section
= symtab_section
->link
;
9344 /* private symbol table for dynamic symbols */
9345 s
->dynsymtab_section
= new_symtab(s
, ".dynsymtab", SHT_SYMTAB
, SHF_PRIVATE
,
9347 ".dynhashtab", SHF_PRIVATE
);
9348 s
->alacarte_link
= 1;
9350 #ifdef CHAR_IS_UNSIGNED
9351 s
->char_is_unsigned
= 1;
9356 void tcc_delete(TCCState
*s1
)
9360 /* free -D defines */
9364 n
= tok_ident
- TOK_IDENT
;
9365 for(i
= 0; i
< n
; i
++)
9366 tcc_free(table_ident
[i
]);
9367 tcc_free(table_ident
);
9369 /* free all sections */
9371 free_section(symtab_section
->hash
);
9373 free_section(s1
->dynsymtab_section
->hash
);
9374 free_section(s1
->dynsymtab_section
->link
);
9375 free_section(s1
->dynsymtab_section
);
9377 for(i
= 1; i
< s1
->nb_sections
; i
++)
9378 free_section(s1
->sections
[i
]);
9379 tcc_free(s1
->sections
);
9381 /* free loaded dlls array */
9382 for(i
= 0; i
< s1
->nb_loaded_dlls
; i
++)
9383 tcc_free(s1
->loaded_dlls
[i
]);
9384 tcc_free(s1
->loaded_dlls
);
9387 for(i
= 0; i
< s1
->nb_library_paths
; i
++)
9388 tcc_free(s1
->library_paths
[i
]);
9389 tcc_free(s1
->library_paths
);
9391 /* cached includes */
9392 for(i
= 0; i
< s1
->nb_cached_includes
; i
++)
9393 tcc_free(s1
->cached_includes
[i
]);
9394 tcc_free(s1
->cached_includes
);
9396 for(i
= 0; i
< s1
->nb_include_paths
; i
++)
9397 tcc_free(s1
->include_paths
[i
]);
9398 tcc_free(s1
->include_paths
);
9400 for(i
= 0; i
< s1
->nb_sysinclude_paths
; i
++)
9401 tcc_free(s1
->sysinclude_paths
[i
]);
9402 tcc_free(s1
->sysinclude_paths
);
9407 int tcc_add_include_path(TCCState
*s1
, const char *pathname
)
9411 pathname1
= tcc_strdup(pathname
);
9412 dynarray_add((void ***)&s1
->include_paths
, &s1
->nb_include_paths
, pathname1
);
9416 int tcc_add_sysinclude_path(TCCState
*s1
, const char *pathname
)
9420 pathname1
= tcc_strdup(pathname
);
9421 dynarray_add((void ***)&s1
->sysinclude_paths
, &s1
->nb_sysinclude_paths
, pathname1
);
9425 static int tcc_add_file_internal(TCCState
*s1
, const char *filename
, int flags
)
9427 const char *ext
, *filename1
;
9430 BufferedFile
*saved_file
;
9432 /* find source file type with extension */
9433 filename1
= strrchr(filename
, '/');
9437 filename1
= filename
;
9438 ext
= strrchr(filename1
, '.');
9444 file
= tcc_open(s1
, filename
);
9446 if (flags
& AFF_PRINT_ERROR
) {
9447 error_noabort("file '%s' not found", filename
);
9453 if (!ext
|| !strcmp(ext
, "c")) {
9454 /* C file assumed */
9455 ret
= tcc_compile(s1
);
9457 #ifdef CONFIG_TCC_ASM
9458 if (!strcmp(ext
, "S")) {
9459 /* preprocessed assembler */
9460 ret
= tcc_assemble(s1
, 1);
9461 } else if (!strcmp(ext
, "s")) {
9462 /* non preprocessed assembler */
9463 ret
= tcc_assemble(s1
, 0);
9468 /* assume executable format: auto guess file type */
9469 ret
= read(fd
, &ehdr
, sizeof(ehdr
));
9470 lseek(fd
, 0, SEEK_SET
);
9472 error_noabort("could not read header");
9474 } else if (ret
!= sizeof(ehdr
)) {
9475 goto try_load_script
;
9478 if (ehdr
.e_ident
[0] == ELFMAG0
&&
9479 ehdr
.e_ident
[1] == ELFMAG1
&&
9480 ehdr
.e_ident
[2] == ELFMAG2
&&
9481 ehdr
.e_ident
[3] == ELFMAG3
) {
9482 file
->line_num
= 0; /* do not display line number if error */
9483 if (ehdr
.e_type
== ET_REL
) {
9484 ret
= tcc_load_object_file(s1
, fd
, 0);
9485 } else if (ehdr
.e_type
== ET_DYN
) {
9486 if (s1
->output_type
== TCC_OUTPUT_MEMORY
) {
9488 h
= dlopen(filename
, RTLD_GLOBAL
| RTLD_LAZY
);
9494 ret
= tcc_load_dll(s1
, fd
, filename
,
9495 (flags
& AFF_REFERENCED_DLL
) != 0);
9498 error_noabort("unrecognized ELF file");
9501 } else if (memcmp((char *)&ehdr
, ARMAG
, 8) == 0) {
9502 file
->line_num
= 0; /* do not display line number if error */
9503 ret
= tcc_load_archive(s1
, fd
);
9505 /* as GNU ld, consider it is an ld script if not recognized */
9507 ret
= tcc_load_ldscript(s1
);
9509 error_noabort("unrecognized file type");
9524 int tcc_add_file(TCCState
*s
, const char *filename
)
9526 return tcc_add_file_internal(s
, filename
, AFF_PRINT_ERROR
);
9529 int tcc_add_library_path(TCCState
*s
, const char *pathname
)
9533 pathname1
= tcc_strdup(pathname
);
9534 dynarray_add((void ***)&s
->library_paths
, &s
->nb_library_paths
, pathname1
);
9538 /* find and load a dll. Return non zero if not found */
9539 /* XXX: add '-rpath' option support ? */
9540 static int tcc_add_dll(TCCState
*s
, const char *filename
, int flags
)
9545 for(i
= 0; i
< s
->nb_library_paths
; i
++) {
9546 snprintf(buf
, sizeof(buf
), "%s/%s",
9547 s
->library_paths
[i
], filename
);
9548 if (tcc_add_file_internal(s
, buf
, flags
) == 0)
9554 /* the library name is the same as the argument of the '-l' option */
9555 int tcc_add_library(TCCState
*s
, const char *libraryname
)
9560 /* first we look for the dynamic library if not static linking */
9561 if (!s
->static_link
) {
9562 snprintf(buf
, sizeof(buf
), "lib%s.so", libraryname
);
9563 if (tcc_add_dll(s
, buf
, 0) == 0)
9567 /* then we look for the static library */
9568 for(i
= 0; i
< s
->nb_library_paths
; i
++) {
9569 snprintf(buf
, sizeof(buf
), "%s/lib%s.a",
9570 s
->library_paths
[i
], libraryname
);
9571 if (tcc_add_file_internal(s
, buf
, 0) == 0)
9577 int tcc_add_symbol(TCCState
*s
, const char *name
, unsigned long val
)
9579 add_elf_sym(symtab_section
, val
, 0,
9580 ELF32_ST_INFO(STB_GLOBAL
, STT_NOTYPE
),
9585 int tcc_set_output_type(TCCState
*s
, int output_type
)
9589 s
->output_type
= output_type
;
9592 /* default include paths */
9593 /* XXX: reverse order needed if -isystem support */
9594 tcc_add_sysinclude_path(s
, "/usr/local/include");
9595 tcc_add_sysinclude_path(s
, "/usr/include");
9596 snprintf(buf
, sizeof(buf
), "%s/include", tcc_lib_path
);
9597 tcc_add_sysinclude_path(s
, buf
);
9600 /* if bound checking, then add corresponding sections */
9601 #ifdef CONFIG_TCC_BCHECK
9602 if (do_bounds_check
) {
9604 tcc_define_symbol(s
, "__BOUNDS_CHECKING_ON", NULL
);
9605 /* create bounds sections */
9606 bounds_section
= new_section(s
, ".bounds",
9607 SHT_PROGBITS
, SHF_ALLOC
);
9608 lbounds_section
= new_section(s
, ".lbounds",
9609 SHT_PROGBITS
, SHF_ALLOC
);
9613 if (s
->char_is_unsigned
) {
9614 tcc_define_symbol(s
, "__CHAR_UNSIGNED__", NULL
);
9617 /* add debug sections */
9620 stab_section
= new_section(s
, ".stab", SHT_PROGBITS
, 0);
9621 stab_section
->sh_entsize
= sizeof(Stab_Sym
);
9622 stabstr_section
= new_section(s
, ".stabstr", SHT_STRTAB
, 0);
9623 put_elf_str(stabstr_section
, "");
9624 stab_section
->link
= stabstr_section
;
9625 /* put first entry */
9626 put_stabs("", 0, 0, 0, 0);
9629 /* add libc crt1/crti objects */
9630 if ((output_type
== TCC_OUTPUT_EXE
|| output_type
== TCC_OUTPUT_DLL
) &&
9632 if (output_type
!= TCC_OUTPUT_DLL
)
9633 tcc_add_file(s
, CONFIG_TCC_CRT_PREFIX
"/crt1.o");
9634 tcc_add_file(s
, CONFIG_TCC_CRT_PREFIX
"/crti.o");
9639 #define WD_ALL 0x0001 /* warning is activated when using -Wall */
9640 #define FD_INVERT 0x0002 /* invert value before storing */
9642 typedef struct FlagDef
{
9648 static const FlagDef warning_defs
[] = {
9649 { offsetof(TCCState
, warn_unsupported
), 0, "unsupported" },
9650 { offsetof(TCCState
, warn_write_strings
), 0, "write-strings" },
9651 { offsetof(TCCState
, warn_error
), 0, "error" },
9652 { offsetof(TCCState
, warn_implicit_function_declaration
), WD_ALL
,
9653 "implicit-function-declaration" },
9656 static int set_flag(TCCState
*s
, const FlagDef
*flags
, int nb_flags
,
9657 const char *name
, int value
)
9664 if (r
[0] == 'n' && r
[1] == 'o' && r
[2] == '-') {
9668 for(i
= 0, p
= flags
; i
< nb_flags
; i
++, p
++) {
9669 if (!strcmp(r
, p
->name
))
9674 if (p
->flags
& FD_INVERT
)
9676 *(int *)((uint8_t *)s
+ p
->offset
) = value
;
9681 /* set/reset a warning */
9682 int tcc_set_warning(TCCState
*s
, const char *warning_name
, int value
)
9687 if (!strcmp(warning_name
, "all")) {
9688 for(i
= 0, p
= warning_defs
; i
< countof(warning_defs
); i
++, p
++) {
9689 if (p
->flags
& WD_ALL
)
9690 *(int *)((uint8_t *)s
+ p
->offset
) = 1;
9694 return set_flag(s
, warning_defs
, countof(warning_defs
),
9695 warning_name
, value
);
9699 static const FlagDef flag_defs
[] = {
9700 { offsetof(TCCState
, char_is_unsigned
), 0, "unsigned-char" },
9701 { offsetof(TCCState
, char_is_unsigned
), FD_INVERT
, "signed-char" },
9704 /* set/reset a flag */
9705 int tcc_set_flag(TCCState
*s
, const char *flag_name
, int value
)
9707 return set_flag(s
, flag_defs
, countof(flag_defs
),
9711 #if !defined(LIBTCC)
9713 /* extract the basename of a file */
9714 static const char *tcc_basename(const char *name
)
9717 p
= strrchr(name
, '/');
9720 p
= strrchr(name
, '\\');
9729 static int64_t getclock_us(void)
9734 return (tb
.time
* 1000LL + tb
.millitm
) * 1000LL;
9737 gettimeofday(&tv
, NULL
);
9738 return tv
.tv_sec
* 1000000LL + tv
.tv_usec
;
9744 printf("tcc version " TCC_VERSION
" - Tiny C Compiler - Copyright (C) 2001-2003 Fabrice Bellard\n"
9745 "usage: tcc [-v] [-c] [-o outfile] [-Bdir] [-bench] [-Idir] [-Dsym[=val]] [-Usym]\n"
9746 " [-Wwarn] [-g] [-b] [-bt N] [-Ldir] [-llib] [-shared] [-static]\n"
9747 " [infile1 infile2...] [-run infile args...]\n"
9749 "General options:\n"
9750 " -v display current version\n"
9751 " -c compile only - generate an object file\n"
9752 " -o outfile set output filename\n"
9753 " -Bdir set tcc internal library path\n"
9754 " -bench output compilation statistics\n"
9755 " -run run compiled source\n"
9756 " -fflag set or reset (with 'no-' prefix) 'flag' (see man page)\n"
9757 " -Wwarning set or reset (with 'no-' prefix) 'warning' (see man page)\n"
9758 " -w disable all warnings\n"
9759 "Preprocessor options:\n"
9760 " -Idir add include path 'dir'\n"
9761 " -Dsym[=val] define 'sym' with value 'val'\n"
9762 " -Usym undefine 'sym'\n"
9764 " -Ldir add library path 'dir'\n"
9765 " -llib link with dynamic or static library 'lib'\n"
9766 " -shared generate a shared library\n"
9767 " -static static linking\n"
9768 " -rdynamic export all global symbols to dynamic linker\n"
9769 " -r relocatable output\n"
9770 "Debugger options:\n"
9771 " -g generate runtime debug info\n"
9772 #ifdef CONFIG_TCC_BCHECK
9773 " -b compile with built-in memory and bounds checker (implies -g)\n"
9775 " -bt N show N callers in stack traces\n"
9779 #define TCC_OPTION_HAS_ARG 0x0001
9780 #define TCC_OPTION_NOSEP 0x0002 /* cannot have space before option and arg */
9782 typedef struct TCCOption
{
9809 TCC_OPTION_nostdinc
,
9810 TCC_OPTION_nostdlib
,
9811 TCC_OPTION_print_search_dirs
,
9812 TCC_OPTION_rdynamic
,
9818 static const TCCOption tcc_options
[] = {
9819 { "h", TCC_OPTION_HELP
, 0 },
9820 { "?", TCC_OPTION_HELP
, 0 },
9821 { "I", TCC_OPTION_I
, TCC_OPTION_HAS_ARG
},
9822 { "D", TCC_OPTION_D
, TCC_OPTION_HAS_ARG
},
9823 { "U", TCC_OPTION_U
, TCC_OPTION_HAS_ARG
},
9824 { "L", TCC_OPTION_L
, TCC_OPTION_HAS_ARG
},
9825 { "B", TCC_OPTION_B
, TCC_OPTION_HAS_ARG
},
9826 { "l", TCC_OPTION_l
, TCC_OPTION_HAS_ARG
| TCC_OPTION_NOSEP
},
9827 { "bench", TCC_OPTION_bench
, 0 },
9828 { "bt", TCC_OPTION_bt
, TCC_OPTION_HAS_ARG
},
9829 #ifdef CONFIG_TCC_BCHECK
9830 { "b", TCC_OPTION_b
, 0 },
9832 { "g", TCC_OPTION_g
, 0 },
9833 { "c", TCC_OPTION_c
, 0 },
9834 { "static", TCC_OPTION_static
, 0 },
9835 { "shared", TCC_OPTION_shared
, 0 },
9836 { "o", TCC_OPTION_o
, TCC_OPTION_HAS_ARG
},
9837 { "run", TCC_OPTION_run
, TCC_OPTION_HAS_ARG
| TCC_OPTION_NOSEP
},
9838 { "rdynamic", TCC_OPTION_rdynamic
, 0 },
9839 { "r", TCC_OPTION_r
, 0 },
9840 { "W", TCC_OPTION_W
, TCC_OPTION_HAS_ARG
| TCC_OPTION_NOSEP
},
9841 { "O", TCC_OPTION_O
, TCC_OPTION_HAS_ARG
| TCC_OPTION_NOSEP
},
9842 { "m", TCC_OPTION_m
, TCC_OPTION_HAS_ARG
},
9843 { "f", TCC_OPTION_f
, TCC_OPTION_HAS_ARG
| TCC_OPTION_NOSEP
},
9844 { "nostdinc", TCC_OPTION_nostdinc
, 0 },
9845 { "nostdlib", TCC_OPTION_nostdlib
, 0 },
9846 { "print-search-dirs", TCC_OPTION_print_search_dirs
, 0 },
9847 { "v", TCC_OPTION_v
, 0 },
9848 { "w", TCC_OPTION_w
, 0 },
9852 /* convert 'str' into an array of space separated strings */
9853 static int expand_args(char ***pargv
, const char *str
)
9862 while (is_space(*str
))
9867 while (*str
!= '\0' && !is_space(*str
))
9870 arg
= tcc_malloc(len
+ 1);
9871 memcpy(arg
, s1
, len
);
9873 dynarray_add((void ***)&argv
, &argc
, arg
);
9879 static char **files
;
9880 static int nb_files
, nb_libraries
;
9881 static int multiple_files
;
9882 static int print_search_dirs
;
9883 static int output_type
;
9884 static int reloc_output
;
9885 static const char *outfile
;
9887 int parse_args(TCCState
*s
, int argc
, char **argv
)
9890 const TCCOption
*popt
;
9891 const char *optarg
, *p1
, *r1
;
9896 if (optind
>= argc
) {
9897 if (nb_files
== 0 && !print_search_dirs
)
9904 /* add a new file */
9905 dynarray_add((void ***)&files
, &nb_files
, r
);
9906 if (!multiple_files
) {
9908 /* argv[0] will be this file */
9912 /* find option in table (match only the first chars */
9917 error("invalid option -- '%s'", r
);
9930 if (popt
->flags
& TCC_OPTION_HAS_ARG
) {
9931 if (*r1
!= '\0' || (popt
->flags
& TCC_OPTION_NOSEP
)) {
9935 error("argument to '%s' is missing", r
);
9936 optarg
= argv
[optind
++];
9944 switch(popt
->index
) {
9945 case TCC_OPTION_HELP
:
9950 if (tcc_add_include_path(s
, optarg
) < 0)
9951 error("too many include paths");
9956 sym
= (char *)optarg
;
9957 value
= strchr(sym
, '=');
9962 tcc_define_symbol(s
, sym
, value
);
9966 tcc_undefine_symbol(s
, optarg
);
9969 tcc_add_library_path(s
, optarg
);
9972 /* set tcc utilities path (mainly for tcc development) */
9973 tcc_lib_path
= optarg
;
9976 dynarray_add((void ***)&files
, &nb_files
, r
);
9979 case TCC_OPTION_bench
:
9983 num_callers
= atoi(optarg
);
9985 #ifdef CONFIG_TCC_BCHECK
9987 do_bounds_check
= 1;
9996 output_type
= TCC_OUTPUT_OBJ
;
9998 case TCC_OPTION_static
:
10001 case TCC_OPTION_shared
:
10002 output_type
= TCC_OUTPUT_DLL
;
10005 multiple_files
= 1;
10009 /* generate a .o merging several output files */
10011 output_type
= TCC_OUTPUT_OBJ
;
10013 case TCC_OPTION_nostdinc
:
10016 case TCC_OPTION_nostdlib
:
10019 case TCC_OPTION_print_search_dirs
:
10020 print_search_dirs
= 1;
10022 case TCC_OPTION_run
:
10026 argc1
= expand_args(&argv1
, optarg
);
10028 parse_args(s
, argc1
, argv1
);
10030 multiple_files
= 0;
10031 output_type
= TCC_OUTPUT_MEMORY
;
10035 printf("tcc version %s\n", TCC_VERSION
);
10038 if (tcc_set_flag(s
, optarg
, 1) < 0 && s
->warn_unsupported
)
10039 goto unsupported_option
;
10042 if (tcc_set_warning(s
, optarg
, 1) < 0 &&
10043 s
->warn_unsupported
)
10044 goto unsupported_option
;
10049 case TCC_OPTION_rdynamic
:
10053 if (s
->warn_unsupported
) {
10054 unsupported_option
:
10055 warning("unsupported option '%s'", r
);
10064 int main(int argc
, char **argv
)
10068 int nb_objfiles
, ret
, optind
;
10069 char objfilename
[1024];
10070 int64_t start_time
= 0;
10073 output_type
= TCC_OUTPUT_EXE
;
10075 multiple_files
= 1;
10080 print_search_dirs
= 0;
10082 optind
= parse_args(s
, argc
- 1, argv
+ 1) + 1;
10084 if (print_search_dirs
) {
10085 /* enough for Linux kernel */
10086 printf("install: %s/\n", tcc_lib_path
);
10090 nb_objfiles
= nb_files
- nb_libraries
;
10092 /* if outfile provided without other options, we output an
10094 if (outfile
&& output_type
== TCC_OUTPUT_MEMORY
)
10095 output_type
= TCC_OUTPUT_EXE
;
10097 /* check -c consistency : only single file handled. XXX: checks file type */
10098 if (output_type
== TCC_OUTPUT_OBJ
&& !reloc_output
) {
10099 /* accepts only a single input file */
10100 if (nb_objfiles
!= 1)
10101 error("cannot specify multiple files with -c");
10102 if (nb_libraries
!= 0)
10103 error("cannot specify libraries with -c");
10106 /* compute default outfile name */
10107 if (output_type
!= TCC_OUTPUT_MEMORY
&& !outfile
) {
10108 if (output_type
== TCC_OUTPUT_OBJ
&& !reloc_output
) {
10111 pstrcpy(objfilename
, sizeof(objfilename
) - 1,
10112 tcc_basename(files
[0]));
10113 /* add .o extension */
10114 ext
= strrchr(objfilename
, '.');
10116 goto default_outfile
;
10117 strcpy(ext
+ 1, "o");
10120 pstrcpy(objfilename
, sizeof(objfilename
), "a.out");
10122 outfile
= objfilename
;
10126 start_time
= getclock_us();
10129 tcc_set_output_type(s
, output_type
);
10131 /* compile or add each files or library */
10132 for(i
= 0;i
< nb_files
; i
++) {
10133 const char *filename
;
10135 filename
= files
[i
];
10136 if (filename
[0] == '-') {
10137 if (tcc_add_library(s
, filename
+ 2) < 0)
10138 error("cannot find %s", filename
);
10140 if (tcc_add_file(s
, filename
) < 0) {
10147 /* free all files */
10152 total_time
= (double)(getclock_us() - start_time
) / 1000000.0;
10153 if (total_time
< 0.001)
10154 total_time
= 0.001;
10155 if (total_bytes
< 1)
10157 printf("%d idents, %d lines, %d bytes, %0.3f s, %d lines/s, %0.1f MB/s\n",
10158 tok_ident
- TOK_IDENT
, total_lines
, total_bytes
,
10159 total_time
, (int)(total_lines
/ total_time
),
10160 total_bytes
/ total_time
/ 1000000.0);
10163 if (s
->output_type
!= TCC_OUTPUT_MEMORY
) {
10164 tcc_output_file(s
, outfile
);
10167 ret
= tcc_run(s
, argc
- optind
, argv
+ optind
);
10170 /* XXX: cannot do it with bound checking because of the malloc hooks */
10171 if (!do_bounds_check
)
10176 printf("memory: %d bytes, max = %d bytes\n", mem_cur_size
, mem_max_size
);