2 * TCC - Tiny C Compiler
4 * Copyright (c) 2001, 2002 Fabrice Bellard
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program 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
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
33 #include <sys/timeb.h>
37 #include <sys/ucontext.h>
41 #ifndef CONFIG_TCC_STATIC
49 /* preprocessor debug */
51 /* include file debug */
59 /* target selection */
60 //#define TCC_TARGET_I386 /* i386 code generator */
62 /* default target is I386 */
63 #if !defined(TCC_TARGET_I386)
64 #define TCC_TARGET_I386
67 #if !defined(WIN32) && !defined(TCC_UCLIBC)
68 #define CONFIG_TCC_BCHECK /* enable bound checking code */
71 /* define it to include assembler support */
72 #define CONFIG_TCC_ASM
74 #ifndef CONFIG_TCC_PREFIX
75 #define CONFIG_TCC_PREFIX "/usr/local"
78 /* path to find crt1.o, crti.o and crtn.o. Only needed when generating
79 executables or dlls */
80 #define CONFIG_TCC_CRT_PREFIX "/usr/lib"
82 #define INCLUDE_STACK_SIZE 32
83 #define IFDEF_STACK_SIZE 64
84 #define VSTACK_SIZE 64
85 #define STRING_MAX_SIZE 1024
87 #define TOK_HASH_SIZE 2048 /* must be a power of two */
88 #define TOK_ALLOC_INCR 512 /* must be a power of two */
89 #define TOK_STR_ALLOC_INCR_BITS 6
90 #define TOK_STR_ALLOC_INCR (1 << TOK_STR_ALLOC_INCR_BITS)
91 #define TOK_MAX_SIZE 4 /* token max size in int unit when stored in string */
93 /* token symbol management */
94 typedef struct TokenSym
{
95 struct TokenSym
*hash_next
;
96 struct Sym
*sym_define
; /* direct pointer to define */
97 struct Sym
*sym_label
; /* direct pointer to label */
98 struct Sym
*sym_struct
; /* direct pointer to structure */
99 struct Sym
*sym_identifier
; /* direct pointer to identifier */
100 int tok
; /* token number */
105 typedef struct CString
{
106 int size
; /* size in bytes */
107 void *data
; /* either 'char *' or 'int *' */
109 void *data_allocated
; /* if non NULL, data has been malloced */
112 /* type definition */
113 typedef struct CType
{
119 typedef union CValue
{
125 unsigned int ul
; /* address (should be unsigned long on 64 bit cpu) */
127 unsigned long long ull
;
128 struct CString
*cstr
;
134 typedef struct SValue
{
135 CType type
; /* type */
136 unsigned short r
; /* register + flags */
137 unsigned short r2
; /* second register, used for 'long long'
138 type. If not used, set to VT_CONST */
139 CValue c
; /* constant, if VT_CONST */
140 struct Sym
*sym
; /* symbol, if (VT_SYM | VT_CONST) */
143 /* symbol management */
145 int v
; /* symbol token */
146 int r
; /* associated register */
147 int c
; /* associated number */
148 CType type
; /* associated type */
149 struct Sym
*next
; /* next related symbol */
150 struct Sym
*prev
; /* prev symbol in stack */
151 struct Sym
*prev_tok
; /* previous symbol for this token */
154 /* section definition */
155 /* XXX: use directly ELF structure for parameters ? */
156 /* special flag to indicate that the section should not be linked to
158 #define SHF_PRIVATE 0x80000000
160 typedef struct Section
{
161 unsigned long data_offset
; /* current data offset */
162 unsigned char *data
; /* section data */
163 unsigned long data_allocated
; /* used for realloc() handling */
164 int sh_name
; /* elf section name (only used during output) */
165 int sh_num
; /* elf section number */
166 int sh_type
; /* elf section type */
167 int sh_flags
; /* elf section flags */
168 int sh_info
; /* elf section info */
169 int sh_addralign
; /* elf section alignment */
170 int sh_entsize
; /* elf entry size */
171 unsigned long sh_size
; /* section size (only used during output) */
172 unsigned long sh_addr
; /* address at which the section is relocated */
173 unsigned long sh_offset
; /* address at which the section is relocated */
174 int nb_hashed_syms
; /* used to resize the hash table */
175 struct Section
*link
; /* link to another section */
176 struct Section
*reloc
; /* corresponding section for relocation, if any */
177 struct Section
*hash
; /* hash table for symbols */
178 struct Section
*next
;
179 char name
[64]; /* section name */
182 typedef struct DLLReference
{
187 /* GNUC attribute definition */
188 typedef struct AttributeDef
{
191 unsigned char func_call
; /* FUNC_CDECL or FUNC_STDCALL */
194 #define SYM_STRUCT 0x40000000 /* struct/union/enum symbol space */
195 #define SYM_FIELD 0x20000000 /* struct/union field symbol space */
196 #define SYM_FIRST_ANOM (1 << (31 - VT_STRUCT_SHIFT)) /* first anonymous sym */
198 /* stored in 'Sym.c' field */
199 #define FUNC_NEW 1 /* ansi function prototype */
200 #define FUNC_OLD 2 /* old function prototype */
201 #define FUNC_ELLIPSIS 3 /* ansi function prototype with ... */
203 /* stored in 'Sym.r' field */
204 #define FUNC_CDECL 0 /* standard c call */
205 #define FUNC_STDCALL 1 /* pascal c call */
207 /* field 'Sym.t' for macros */
208 #define MACRO_OBJ 0 /* object like macro */
209 #define MACRO_FUNC 1 /* function like macro */
211 /* field 'Sym.r' for C labels */
212 #define LABEL_DEFINED 0 /* label is defined */
213 #define LABEL_FORWARD 1 /* label is forward defined */
214 #define LABEL_DECLARED 2 /* label is declared but never used */
216 /* type_decl() types */
217 #define TYPE_ABSTRACT 1 /* type without variable */
218 #define TYPE_DIRECT 2 /* type with variable */
220 #define IO_BUF_SIZE 8192
222 typedef struct BufferedFile
{
226 int line_num
; /* current line number - here to simplify code */
227 int ifndef_macro
; /* #ifndef macro / #endif search */
228 int ifndef_macro_saved
; /* saved ifndef_macro */
229 int *ifdef_stack_ptr
; /* ifdef_stack value at the start of the file */
230 char inc_type
; /* type of include */
231 char inc_filename
[512]; /* filename specified by the user */
232 char filename
[1024]; /* current filename - here to simplify code */
233 unsigned char buffer
[IO_BUF_SIZE
+ 1]; /* extra size for CH_EOB char */
236 #define CH_EOB '\\' /* end of buffer or '\0' char in file */
237 #define CH_EOF (-1) /* end of file */
239 /* parsing state (used to save parser state to reparse part of the
240 source several times) */
241 typedef struct ParseState
{
248 /* used to record tokens */
249 typedef struct TokenString
{
256 /* include file cache, used to find files faster and also to eliminate
257 inclusion if the include file is protected by #ifndef ... #endif */
258 typedef struct CachedInclude
{
260 char type
; /* '"' or '>' to give include type */
261 char filename
[1]; /* path specified in #include */
265 static struct BufferedFile
*file
;
268 static CString tokcstr
; /* current parsed string, if any */
269 /* additional informations about token */
270 static int tok_flags
;
271 #define TOK_FLAG_BOL 0x0001 /* beginning of line before */
272 #define TOK_FLAG_BOF 0x0002 /* beginning of file before */
273 #define TOK_FLAG_ENDIF 0x0004 /* a endif was found matching starting #ifdef */
275 static int *macro_ptr
, *macro_ptr_allocated
;
276 static int *unget_saved_macro_ptr
;
277 static int unget_saved_buffer
[TOK_MAX_SIZE
+ 1];
278 static int unget_buffer_enabled
;
279 static int parse_flags
;
280 #define PARSE_FLAG_PREPROCESS 0x0001 /* activate preprocessing */
281 #define PARSE_FLAG_TOK_NUM 0x0002 /* return numbers instead of TOK_PPNUM */
282 #define PARSE_FLAG_LINEFEED 0x0004 /* line feed is returned as a
283 token. line feed is also
286 static Section
*text_section
, *data_section
, *bss_section
; /* predefined sections */
287 static Section
*cur_text_section
; /* current section where function code is
289 /* bound check related sections */
290 static Section
*bounds_section
; /* contains global data bound description */
291 static Section
*lbounds_section
; /* contains local data bound description */
292 /* symbol sections */
293 static Section
*symtab_section
, *strtab_section
;
296 static Section
*stab_section
, *stabstr_section
;
298 /* loc : local variable index
299 ind : output code index
301 anon_sym: anonymous symbol index
303 static int rsym
, anon_sym
, ind
, loc
;
304 /* expression generation modifiers */
305 static int const_wanted
; /* true if constant wanted */
306 static int nocode_wanted
; /* true if no code generation wanted for an expression */
307 static int global_expr
; /* true if compound literals must be allocated
308 globally (used during initializers parsing */
309 static CType func_vt
; /* current function return type (used by return
312 static int last_line_num
, last_ind
, func_ind
; /* debug last line number and pc */
313 static int tok_ident
;
314 static TokenSym
**table_ident
;
315 static TokenSym
*hash_ident
[TOK_HASH_SIZE
];
316 static char token_buf
[STRING_MAX_SIZE
+ 1];
317 static char *funcname
;
318 static Sym
*global_stack
, *local_stack
;
319 static Sym
*define_stack
;
320 static Sym
*global_label_stack
, *local_label_stack
;
322 static SValue vstack
[VSTACK_SIZE
], *vtop
;
323 /* some predefined types */
324 static CType char_pointer_type
, func_old_type
, int_type
;
325 /* true if isid(c) || isnum(c) */
326 static unsigned char isidnum_table
[256];
328 /* compile with debug symbol (and use them if error during execution) */
329 static int do_debug
= 0;
331 /* compile with built-in memory and bounds checker */
332 static int do_bounds_check
= 0;
334 /* display benchmark infos */
335 static int do_bench
= 0;
336 static int total_lines
;
337 static int total_bytes
;
339 /* use GNU C extensions */
340 static int gnu_ext
= 1;
342 /* use Tiny C extensions */
343 static int tcc_ext
= 1;
345 /* max number of callers shown if error */
346 static int num_callers
= 6;
347 static const char **rt_bound_error_msg
;
349 /* XXX: get rid of this ASAP */
350 static struct TCCState
*tcc_state
;
352 /* give the path of the tcc libraries */
353 static const char *tcc_lib_path
= CONFIG_TCC_PREFIX
"/lib/tcc";
358 BufferedFile
**include_stack_ptr
;
359 int *ifdef_stack_ptr
;
361 /* include file handling */
362 char **include_paths
;
363 int nb_include_paths
;
364 char **sysinclude_paths
;
365 int nb_sysinclude_paths
;
366 CachedInclude
**cached_includes
;
367 int nb_cached_includes
;
369 char **library_paths
;
370 int nb_library_paths
;
372 /* array of all loaded dlls (including those referenced by loaded
374 DLLReference
**loaded_dlls
;
379 int nb_sections
; /* number of sections, including first dummy section */
384 unsigned long *got_offsets
;
386 /* give the correspondance from symtab indexes to dynsym indexes */
387 int *symtab_to_dynsym
;
389 /* temporary dynamic symbol sections (for dll loading) */
390 Section
*dynsymtab_section
;
391 /* exported dynamic symbol section */
394 /* if true, no standard headers are added */
397 /* if true, static linking is performed */
402 void (*error_func
)(void *opaque
, const char *msg
);
403 int error_set_jmp_enabled
;
404 jmp_buf error_jmp_buf
;
407 /* tiny assembler state */
410 /* see include_stack_ptr */
411 BufferedFile
*include_stack
[INCLUDE_STACK_SIZE
];
413 /* see ifdef_stack_ptr */
414 int ifdef_stack
[IFDEF_STACK_SIZE
];
417 /* The current value can be: */
418 #define VT_VALMASK 0x00ff
419 #define VT_CONST 0x00f0 /* constant in vc
420 (must be first non register value) */
421 #define VT_LLOCAL 0x00f1 /* lvalue, offset on stack */
422 #define VT_LOCAL 0x00f2 /* offset on stack */
423 #define VT_CMP 0x00f3 /* the value is stored in processor flags (in vc) */
424 #define VT_JMP 0x00f4 /* value is the consequence of jmp true (even) */
425 #define VT_JMPI 0x00f5 /* value is the consequence of jmp false (odd) */
426 #define VT_LVAL 0x0100 /* var is an lvalue */
427 #define VT_SYM 0x0200 /* a symbol value is added */
428 #define VT_MUSTCAST 0x0400 /* value must be casted to be correct (used for
429 char/short stored in integer registers) */
430 #define VT_MUSTBOUND 0x0800 /* bound checking must be done before
431 dereferencing value */
432 #define VT_BOUNDED 0x8000 /* value is bounded. The address of the
433 bounding function call point is in vc */
434 #define VT_LVAL_BYTE 0x1000 /* lvalue is a byte */
435 #define VT_LVAL_SHORT 0x2000 /* lvalue is a short */
436 #define VT_LVAL_UNSIGNED 0x4000 /* lvalue is unsigned */
437 #define VT_LVAL_TYPE (VT_LVAL_BYTE | VT_LVAL_SHORT | VT_LVAL_UNSIGNED)
440 #define VT_STRUCT_SHIFT 12 /* structure/enum name shift (20 bits left) */
442 #define VT_INT 0 /* integer type */
443 #define VT_BYTE 1 /* signed byte type */
444 #define VT_SHORT 2 /* short type */
445 #define VT_VOID 3 /* void type */
446 #define VT_PTR 4 /* pointer */
447 #define VT_ENUM 5 /* enum definition */
448 #define VT_FUNC 6 /* function type */
449 #define VT_STRUCT 7 /* struct/union definition */
450 #define VT_FLOAT 8 /* IEEE float */
451 #define VT_DOUBLE 9 /* IEEE double */
452 #define VT_LDOUBLE 10 /* IEEE long double */
453 #define VT_BOOL 11 /* ISOC99 boolean type */
454 #define VT_LLONG 12 /* 64 bit integer */
455 #define VT_LONG 13 /* long integer (NEVER USED as type, only
457 #define VT_BTYPE 0x000f /* mask for basic type */
458 #define VT_UNSIGNED 0x0010 /* unsigned type */
459 #define VT_ARRAY 0x0020 /* array type (also has VT_PTR) */
460 #define VT_BITFIELD 0x0040 /* bitfield modifier */
463 #define VT_EXTERN 0x00000080 /* extern definition */
464 #define VT_STATIC 0x00000100 /* static variable */
465 #define VT_TYPEDEF 0x00000200 /* typedef definition */
466 #define VT_INLINE 0x00000400 /* inline definition */
468 /* type mask (except storage) */
469 #define VT_STORAGE (VT_EXTERN | VT_STATIC | VT_TYPEDEF | VT_INLINE)
470 #define VT_TYPE (~(VT_STORAGE))
474 /* warning: the following compare tokens depend on i386 asm code */
486 #define TOK_LAND 0xa0
490 #define TOK_MID 0xa3 /* inc/dec, to void constant */
492 #define TOK_UDIV 0xb0 /* unsigned division */
493 #define TOK_UMOD 0xb1 /* unsigned modulo */
494 #define TOK_PDIV 0xb2 /* fast division with undefined rounding for pointers */
495 #define TOK_CINT 0xb3 /* number in tokc */
496 #define TOK_CCHAR 0xb4 /* char constant in tokc */
497 #define TOK_STR 0xb5 /* pointer to string in tokc */
498 #define TOK_TWOSHARPS 0xb6 /* ## preprocessing token */
499 #define TOK_LCHAR 0xb7
500 #define TOK_LSTR 0xb8
501 #define TOK_CFLOAT 0xb9 /* float constant */
502 #define TOK_LINENUM 0xba /* line number info */
503 #define TOK_CDOUBLE 0xc0 /* double constant */
504 #define TOK_CLDOUBLE 0xc1 /* long double constant */
505 #define TOK_UMULL 0xc2 /* unsigned 32x32 -> 64 mul */
506 #define TOK_ADDC1 0xc3 /* add with carry generation */
507 #define TOK_ADDC2 0xc4 /* add with carry use */
508 #define TOK_SUBC1 0xc5 /* add with carry generation */
509 #define TOK_SUBC2 0xc6 /* add with carry use */
510 #define TOK_CUINT 0xc8 /* unsigned int constant */
511 #define TOK_CLLONG 0xc9 /* long long constant */
512 #define TOK_CULLONG 0xca /* unsigned long long constant */
513 #define TOK_ARROW 0xcb
514 #define TOK_DOTS 0xcc /* three dots */
515 #define TOK_SHR 0xcd /* unsigned shift right */
516 #define TOK_PPNUM 0xce /* preprocessor number */
518 #define TOK_SHL 0x01 /* shift left */
519 #define TOK_SAR 0x02 /* signed shift right */
521 /* assignement operators : normal operator or 0x80 */
522 #define TOK_A_MOD 0xa5
523 #define TOK_A_AND 0xa6
524 #define TOK_A_MUL 0xaa
525 #define TOK_A_ADD 0xab
526 #define TOK_A_SUB 0xad
527 #define TOK_A_DIV 0xaf
528 #define TOK_A_XOR 0xde
529 #define TOK_A_OR 0xfc
530 #define TOK_A_SHL 0x81
531 #define TOK_A_SAR 0x82
533 /* WARNING: the content of this string encodes token numbers */
534 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";
536 #define TOK_EOF (-1) /* end of file */
537 #define TOK_LINEFEED 10 /* line feed */
539 /* all identificators and strings have token above that */
540 #define TOK_IDENT 256
542 /* only used for i386 asm opcodes definitions */
543 #define DEF_ASM(x) DEF(TOK_ASM_ ## x, #x)
546 DEF(TOK_ASM_ ## x ## b, #x "b") \
547 DEF(TOK_ASM_ ## x ## w, #x "w") \
548 DEF(TOK_ASM_ ## x ## l, #x "l") \
549 DEF(TOK_ASM_ ## x, #x)
552 DEF(TOK_ASM_ ## x ## w, #x "w") \
553 DEF(TOK_ASM_ ## x ## l, #x "l") \
554 DEF(TOK_ASM_ ## x, #x)
557 DEF(TOK_ASM_ ## f ## x ## s, "f" #x "s") \
558 DEF(TOK_ASM_ ## fi ## x ## l, "fi" #x "l") \
559 DEF(TOK_ASM_ ## f ## x ## l, "f" #x "l") \
560 DEF(TOK_ASM_ ## fi ## x ## s, "fi" #x "s")
563 DEF(TOK_ASM_ ## f ## x, "f" #x ) \
564 DEF(TOK_ASM_ ## f ## x ## p, "f" #x "p") \
567 #define DEF_ASMTEST(x) \
599 #define TOK_ASM_int TOK_INT
602 TOK_LAST
= TOK_IDENT
- 1,
603 #define DEF(id, str) id,
608 static const char tcc_keywords
[] =
609 #define DEF(id, str) str "\0"
614 #define TOK_UIDENT TOK_DEFINE
617 #define snprintf _snprintf
618 #define vsnprintf _vsnprintf
621 #if defined(WIN32) || defined(TCC_UCLIBC) || defined(__FreeBSD__)
622 /* currently incorrect */
623 long double strtold(const char *nptr
, char **endptr
)
625 return (long double)strtod(nptr
, endptr
);
627 float strtof(const char *nptr
, char **endptr
)
629 return (float)strtod(nptr
, endptr
);
632 /* XXX: need to define this to use them in non ISOC99 context */
633 extern float strtof (const char *__nptr
, char **__endptr
);
634 extern long double strtold (const char *__nptr
, char **__endptr
);
637 static char *pstrcpy(char *buf
, int buf_size
, const char *s
);
638 static char *pstrcat(char *buf
, int buf_size
, const char *s
);
640 static void next(void);
641 static void next_nomacro(void);
642 static void parse_expr_type(CType
*type
);
643 static void expr_type(CType
*type
);
644 static void unary_type(CType
*type
);
645 static void block(int *bsym
, int *csym
, int *case_sym
, int *def_sym
,
646 int case_reg
, int is_expr
);
647 static int expr_const(void);
648 static void expr_eq(void);
649 static void gexpr(void);
650 static void decl(int l
);
651 static void decl_initializer(CType
*type
, Section
*sec
, unsigned long c
,
652 int first
, int size_only
);
653 static void decl_initializer_alloc(CType
*type
, AttributeDef
*ad
, int r
,
654 int has_init
, int v
, int scope
);
656 void gv2(int rc1
, int rc2
);
657 void move_reg(int r
, int s
);
658 void save_regs(int n
);
659 void save_reg(int r
);
665 static void macro_subst(TokenString
*tok_str
,
666 Sym
**nested_list
, const int *macro_str
);
667 int save_reg_forced(int r
);
669 void force_charshort_cast(int t
);
670 static void gen_cast(CType
*type
);
672 static Sym
*sym_find(int v
);
673 static Sym
*sym_push(int v
, CType
*type
, int r
, int c
);
676 static int type_size(CType
*type
, int *a
);
677 static inline CType
*pointed_type(CType
*type
);
678 static int pointed_size(CType
*type
);
679 static int lvalue_type(int t
);
680 static int is_compatible_types(CType
*type1
, CType
*type2
);
681 static int parse_btype(CType
*type
, AttributeDef
*ad
);
682 static void type_decl(CType
*type
, AttributeDef
*ad
, int *v
, int td
);
684 void error(const char *fmt
, ...);
686 void vset(CType
*type
, int r
, int v
);
687 void type_to_str(char *buf
, int buf_size
,
688 CType
*type
, const char *varstr
);
689 char *get_tok_str(int v
, CValue
*cv
);
690 static Sym
*get_sym_ref(CType
*type
, Section
*sec
,
691 unsigned long offset
, unsigned long size
);
692 static Sym
*external_global_sym(int v
, CType
*type
, int r
);
694 /* section generation */
695 static void section_realloc(Section
*sec
, unsigned long new_size
);
696 static void *section_ptr_add(Section
*sec
, unsigned long size
);
697 static void put_extern_sym(Sym
*sym
, Section
*section
,
698 unsigned long value
, unsigned long size
);
699 static void greloc(Section
*s
, Sym
*sym
, unsigned long addr
, int type
);
700 static int put_elf_str(Section
*s
, const char *sym
);
701 static int put_elf_sym(Section
*s
,
702 unsigned long value
, unsigned long size
,
703 int info
, int other
, int shndx
, const char *name
);
704 static int add_elf_sym(Section
*s
, unsigned long value
, unsigned long size
,
705 int info
, int sh_num
, const char *name
);
706 static void put_elf_reloc(Section
*symtab
, Section
*s
, unsigned long offset
,
707 int type
, int symbol
);
708 static void put_stabs(const char *str
, int type
, int other
, int desc
,
709 unsigned long value
);
710 static void put_stabs_r(const char *str
, int type
, int other
, int desc
,
711 unsigned long value
, Section
*sec
, int sym_index
);
712 static void put_stabn(int type
, int other
, int desc
, int value
);
713 static void put_stabd(int type
, int other
, int desc
);
714 static int tcc_add_dll(TCCState
*s
, const char *filename
, int flags
);
716 #define AFF_PRINT_ERROR 0x0001 /* print error if file not found */
717 #define AFF_REFERENCED_DLL 0x0002 /* load a referenced dll from another dll */
718 static int tcc_add_file_internal(TCCState
*s
, const char *filename
, int flags
);
722 #ifdef CONFIG_TCC_ASM
724 typedef struct ExprValue
{
729 #define MAX_ASM_OPERANDS 30
731 typedef struct ASMOperand
{
732 int id
; /* GCC 3 optionnal identifier (0 if number only supported */
734 char asm_str
[16]; /* computed asm string for operand */
735 SValue
*vt
; /* C value of the expression */
736 int ref_index
; /* if >= 0, gives reference to a output constraint */
737 int priority
; /* priority, used to assign registers */
738 int reg
; /* if >= 0, register number used for this operand */
741 static void asm_expr(TCCState
*s1
, ExprValue
*pe
);
742 static int asm_int_expr(TCCState
*s1
);
743 static int find_constraint(ASMOperand
*operands
, int nb_operands
,
744 const char *name
, const char **pp
);
746 static int tcc_assemble(TCCState
*s1
, int do_preprocess
);
750 static void asm_instr(void);
752 /* true if float/double/long double type */
753 static inline int is_float(int t
)
757 return bt
== VT_LDOUBLE
|| bt
== VT_DOUBLE
|| bt
== VT_FLOAT
;
760 #ifdef TCC_TARGET_I386
761 #include "i386-gen.c"
764 #ifdef CONFIG_TCC_STATIC
766 #define RTLD_LAZY 0x001
767 #define RTLD_NOW 0x002
768 #define RTLD_GLOBAL 0x100
769 #define RTLD_DEFAULT NULL
771 /* dummy function for profiling */
772 void *dlopen(const char *filename
, int flag
)
777 const char *dlerror(void)
782 typedef struct TCCSyms
{
787 #define TCCSYM(a) { #a, &a, },
789 /* add the symbol you want here if no dynamic linking is done */
790 static TCCSyms tcc_syms
[] = {
798 void *dlsym(void *handle
, const char *symbol
)
802 while (p
->str
!= NULL
) {
803 if (!strcmp(p
->str
, symbol
))
812 /********************************************************/
814 /* we use our own 'finite' function to avoid potential problems with
815 non standard math libs */
816 /* XXX: endianness dependent */
817 int ieee_finite(double d
)
820 return ((unsigned)((p
[1] | 0x800fffff) + 1)) >> 31;
823 /* copy a string and truncate it. */
824 static char *pstrcpy(char *buf
, int buf_size
, const char *s
)
831 q_end
= buf
+ buf_size
- 1;
843 /* strcat and truncate. */
844 static char *pstrcat(char *buf
, int buf_size
, const char *s
)
849 pstrcpy(buf
+ len
, buf_size
- len
, s
);
853 /* memory management */
859 static inline void tcc_free(void *ptr
)
862 mem_cur_size
-= malloc_usable_size(ptr
);
867 static void *tcc_malloc(unsigned long size
)
872 error("memory full");
874 mem_cur_size
+= malloc_usable_size(ptr
);
875 if (mem_cur_size
> mem_max_size
)
876 mem_max_size
= mem_cur_size
;
881 static void *tcc_mallocz(unsigned long size
)
884 ptr
= tcc_malloc(size
);
885 memset(ptr
, 0, size
);
889 static inline void *tcc_realloc(void *ptr
, unsigned long size
)
893 mem_cur_size
-= malloc_usable_size(ptr
);
895 ptr1
= realloc(ptr
, size
);
897 /* NOTE: count not correct if alloc error, but not critical */
898 mem_cur_size
+= malloc_usable_size(ptr1
);
899 if (mem_cur_size
> mem_max_size
)
900 mem_max_size
= mem_cur_size
;
905 static char *tcc_strdup(const char *str
)
908 ptr
= tcc_malloc(strlen(str
) + 1);
913 #define free(p) use_tcc_free(p)
914 #define malloc(s) use_tcc_malloc(s)
915 #define realloc(p, s) use_tcc_realloc(p, s)
917 static void dynarray_add(void ***ptab
, int *nb_ptr
, void *data
)
924 /* every power of two we double array size */
925 if ((nb
& (nb
- 1)) == 0) {
930 pp
= tcc_realloc(pp
, nb_alloc
* sizeof(void *));
932 error("memory full");
939 Section
*new_section(TCCState
*s1
, const char *name
, int sh_type
, int sh_flags
)
943 sec
= tcc_mallocz(sizeof(Section
));
944 pstrcpy(sec
->name
, sizeof(sec
->name
), name
);
945 sec
->sh_type
= sh_type
;
946 sec
->sh_flags
= sh_flags
;
953 sec
->sh_addralign
= 4;
956 sec
->sh_addralign
= 1;
959 sec
->sh_addralign
= 32; /* default conservative alignment */
963 /* only add section if not private */
964 if (!(sh_flags
& SHF_PRIVATE
)) {
965 sec
->sh_num
= s1
->nb_sections
;
966 dynarray_add((void ***)&s1
->sections
, &s1
->nb_sections
, sec
);
971 static void free_section(Section
*s
)
977 /* realloc section and set its content to zero */
978 static void section_realloc(Section
*sec
, unsigned long new_size
)
983 size
= sec
->data_allocated
;
986 while (size
< new_size
)
988 data
= tcc_realloc(sec
->data
, size
);
990 error("memory full");
991 memset(data
+ sec
->data_allocated
, 0, size
- sec
->data_allocated
);
993 sec
->data_allocated
= size
;
996 /* reserve at least 'size' bytes in section 'sec' from
998 static void *section_ptr_add(Section
*sec
, unsigned long size
)
1000 unsigned long offset
, offset1
;
1002 offset
= sec
->data_offset
;
1003 offset1
= offset
+ size
;
1004 if (offset1
> sec
->data_allocated
)
1005 section_realloc(sec
, offset1
);
1006 sec
->data_offset
= offset1
;
1007 return sec
->data
+ offset
;
1010 /* return a reference to a section, and create it if it does not
1012 Section
*find_section(TCCState
*s1
, const char *name
)
1016 for(i
= 1; i
< s1
->nb_sections
; i
++) {
1017 sec
= s1
->sections
[i
];
1018 if (!strcmp(name
, sec
->name
))
1021 /* sections are created as PROGBITS */
1022 return new_section(s1
, name
, SHT_PROGBITS
, SHF_ALLOC
);
1025 /* update sym->c so that it points to an external symbol in section
1026 'section' with value 'value' */
1027 static void put_extern_sym(Sym
*sym
, Section
*section
,
1028 unsigned long value
, unsigned long size
)
1030 int sym_type
, sym_bind
, sh_num
, info
;
1035 sh_num
= section
->sh_num
;
1039 if ((sym
->type
.t
& VT_BTYPE
) == VT_FUNC
)
1040 sym_type
= STT_FUNC
;
1042 sym_type
= STT_OBJECT
;
1043 if (sym
->type
.t
& VT_STATIC
)
1044 sym_bind
= STB_LOCAL
;
1046 sym_bind
= STB_GLOBAL
;
1048 name
= get_tok_str(sym
->v
, NULL
);
1049 #ifdef CONFIG_TCC_BCHECK
1050 if (do_bounds_check
) {
1053 /* XXX: avoid doing that for statics ? */
1054 /* if bound checking is activated, we change some function
1055 names by adding the "__bound" prefix */
1058 /* XXX: we rely only on malloc hooks */
1070 strcpy(buf
, "__bound_");
1077 info
= ELF32_ST_INFO(sym_bind
, sym_type
);
1078 sym
->c
= add_elf_sym(symtab_section
, value
, size
, info
, sh_num
, name
);
1080 esym
= &((Elf32_Sym
*)symtab_section
->data
)[sym
->c
];
1081 esym
->st_value
= value
;
1082 esym
->st_size
= size
;
1083 esym
->st_shndx
= sh_num
;
1087 /* add a new relocation entry to symbol 'sym' in section 's' */
1088 static void greloc(Section
*s
, Sym
*sym
, unsigned long offset
, int type
)
1091 put_extern_sym(sym
, NULL
, 0, 0);
1092 /* now we can add ELF relocation info */
1093 put_elf_reloc(symtab_section
, s
, offset
, type
, sym
->c
);
1096 static inline int isid(int c
)
1098 return (c
>= 'a' && c
<= 'z') ||
1099 (c
>= 'A' && c
<= 'Z') ||
1103 static inline int isnum(int c
)
1105 return c
>= '0' && c
<= '9';
1108 static inline int isoct(int c
)
1110 return c
>= '0' && c
<= '7';
1113 static inline int toup(int c
)
1115 if (c
>= 'a' && c
<= 'z')
1116 return c
- 'a' + 'A';
1121 static void strcat_vprintf(char *buf
, int buf_size
, const char *fmt
, va_list ap
)
1125 vsnprintf(buf
+ len
, buf_size
- len
, fmt
, ap
);
1128 static void strcat_printf(char *buf
, int buf_size
, const char *fmt
, ...)
1132 strcat_vprintf(buf
, buf_size
, fmt
, ap
);
1136 void error1(TCCState
*s1
, int is_warning
, const char *fmt
, va_list ap
)
1143 for(f
= s1
->include_stack
; f
< s1
->include_stack_ptr
; f
++)
1144 strcat_printf(buf
, sizeof(buf
), "In file included from %s:%d:\n",
1145 (*f
)->filename
, (*f
)->line_num
);
1146 if (file
->line_num
> 0) {
1147 strcat_printf(buf
, sizeof(buf
),
1148 "%s:%d: ", file
->filename
, file
->line_num
);
1150 strcat_printf(buf
, sizeof(buf
),
1151 "%s: ", file
->filename
);
1154 strcat_printf(buf
, sizeof(buf
),
1158 strcat_printf(buf
, sizeof(buf
), "warning: ");
1159 strcat_vprintf(buf
, sizeof(buf
), fmt
, ap
);
1161 if (!s1
->error_func
) {
1162 /* default case: stderr */
1163 fprintf(stderr
, "%s\n", buf
);
1165 s1
->error_func(s1
->error_opaque
, buf
);
1172 void tcc_set_error_func(TCCState
*s
, void *error_opaque
,
1173 void (*error_func
)(void *opaque
, const char *msg
))
1175 s
->error_opaque
= error_opaque
;
1176 s
->error_func
= error_func
;
1180 /* error without aborting current compilation */
1181 void error_noabort(const char *fmt
, ...)
1183 TCCState
*s1
= tcc_state
;
1187 error1(s1
, 0, fmt
, ap
);
1191 void error(const char *fmt
, ...)
1193 TCCState
*s1
= tcc_state
;
1197 error1(s1
, 0, fmt
, ap
);
1199 /* better than nothing: in some cases, we accept to handle errors */
1200 if (s1
->error_set_jmp_enabled
) {
1201 longjmp(s1
->error_jmp_buf
, 1);
1203 /* XXX: eliminate this someday */
1208 void expect(const char *msg
)
1210 error("%s expected", msg
);
1213 void warning(const char *fmt
, ...)
1215 TCCState
*s1
= tcc_state
;
1219 error1(s1
, 1, fmt
, ap
);
1226 error("'%c' expected", c
);
1230 static void test_lvalue(void)
1232 if (!(vtop
->r
& VT_LVAL
))
1236 /* allocate a new token */
1237 static TokenSym
*tok_alloc_new(TokenSym
**pts
, const char *str
, int len
)
1239 TokenSym
*ts
, **ptable
;
1242 if (tok_ident
>= SYM_FIRST_ANOM
)
1243 error("memory full");
1245 /* expand token table if needed */
1246 i
= tok_ident
- TOK_IDENT
;
1247 if ((i
% TOK_ALLOC_INCR
) == 0) {
1248 ptable
= tcc_realloc(table_ident
, (i
+ TOK_ALLOC_INCR
) * sizeof(TokenSym
*));
1250 error("memory full");
1251 table_ident
= ptable
;
1254 ts
= tcc_malloc(sizeof(TokenSym
) + len
);
1255 table_ident
[i
] = ts
;
1256 ts
->tok
= tok_ident
++;
1257 ts
->sym_define
= NULL
;
1258 ts
->sym_label
= NULL
;
1259 ts
->sym_struct
= NULL
;
1260 ts
->sym_identifier
= NULL
;
1262 ts
->hash_next
= NULL
;
1263 memcpy(ts
->str
, str
, len
);
1264 ts
->str
[len
] = '\0';
1269 #define TOK_HASH_INIT 1
1270 #define TOK_HASH_FUNC(h, c) ((h) * 263 + (c))
1272 /* find a token and add it if not found */
1273 static TokenSym
*tok_alloc(const char *str
, int len
)
1275 TokenSym
*ts
, **pts
;
1281 h
= TOK_HASH_FUNC(h
, ((unsigned char *)str
)[i
]);
1282 h
&= (TOK_HASH_SIZE
- 1);
1284 pts
= &hash_ident
[h
];
1289 if (ts
->len
== len
&& !memcmp(ts
->str
, str
, len
))
1291 pts
= &(ts
->hash_next
);
1293 return tok_alloc_new(pts
, str
, len
);
1296 /* CString handling */
1298 static void cstr_realloc(CString
*cstr
, int new_size
)
1303 size
= cstr
->size_allocated
;
1305 size
= 8; /* no need to allocate a too small first string */
1306 while (size
< new_size
)
1308 data
= tcc_realloc(cstr
->data_allocated
, size
);
1310 error("memory full");
1311 cstr
->data_allocated
= data
;
1312 cstr
->size_allocated
= size
;
1317 static void cstr_ccat(CString
*cstr
, int ch
)
1320 size
= cstr
->size
+ 1;
1321 if (size
> cstr
->size_allocated
)
1322 cstr_realloc(cstr
, size
);
1323 ((unsigned char *)cstr
->data
)[size
- 1] = ch
;
1327 static void cstr_cat(CString
*cstr
, const char *str
)
1339 /* add a wide char */
1340 static void cstr_wccat(CString
*cstr
, int ch
)
1343 size
= cstr
->size
+ sizeof(int);
1344 if (size
> cstr
->size_allocated
)
1345 cstr_realloc(cstr
, size
);
1346 *(int *)(((unsigned char *)cstr
->data
) + size
- sizeof(int)) = ch
;
1350 static void cstr_new(CString
*cstr
)
1352 memset(cstr
, 0, sizeof(CString
));
1355 /* free string and reset it to NULL */
1356 static void cstr_free(CString
*cstr
)
1358 tcc_free(cstr
->data_allocated
);
1362 #define cstr_reset(cstr) cstr_free(cstr)
1364 static CString
*cstr_dup(CString
*cstr1
)
1369 cstr
= tcc_malloc(sizeof(CString
));
1372 cstr
->size_allocated
= size
;
1373 cstr
->data_allocated
= tcc_malloc(size
);
1374 cstr
->data
= cstr
->data_allocated
;
1375 memcpy(cstr
->data_allocated
, cstr1
->data_allocated
, size
);
1379 /* XXX: unicode ? */
1380 static void add_char(CString
*cstr
, int c
)
1382 if (c
== '\'' || c
== '\"' || c
== '\\') {
1383 /* XXX: could be more precise if char or string */
1384 cstr_ccat(cstr
, '\\');
1386 if (c
>= 32 && c
<= 126) {
1389 cstr_ccat(cstr
, '\\');
1391 cstr_ccat(cstr
, 'n');
1393 cstr_ccat(cstr
, '0' + ((c
>> 6) & 7));
1394 cstr_ccat(cstr
, '0' + ((c
>> 3) & 7));
1395 cstr_ccat(cstr
, '0' + (c
& 7));
1400 /* XXX: buffer overflow */
1401 /* XXX: float tokens */
1402 char *get_tok_str(int v
, CValue
*cv
)
1404 static char buf
[STRING_MAX_SIZE
+ 1];
1405 static CString cstr_buf
;
1411 /* NOTE: to go faster, we give a fixed buffer for small strings */
1412 cstr_reset(&cstr_buf
);
1413 cstr_buf
.data
= buf
;
1414 cstr_buf
.size_allocated
= sizeof(buf
);
1420 /* XXX: not quite exact, but only useful for testing */
1421 sprintf(p
, "%u", cv
->ui
);
1425 /* XXX: not quite exact, but only useful for testing */
1426 sprintf(p
, "%Lu", cv
->ull
);
1430 cstr_ccat(&cstr_buf
, '\'');
1431 add_char(&cstr_buf
, cv
->i
);
1432 cstr_ccat(&cstr_buf
, '\'');
1433 cstr_ccat(&cstr_buf
, '\0');
1437 len
= cstr
->size
- 1;
1439 add_char(&cstr_buf
, ((unsigned char *)cstr
->data
)[i
]);
1440 cstr_ccat(&cstr_buf
, '\0');
1445 cstr_ccat(&cstr_buf
, '\"');
1447 len
= cstr
->size
- 1;
1449 add_char(&cstr_buf
, ((unsigned char *)cstr
->data
)[i
]);
1451 len
= (cstr
->size
/ sizeof(int)) - 1;
1453 add_char(&cstr_buf
, ((int *)cstr
->data
)[i
]);
1455 cstr_ccat(&cstr_buf
, '\"');
1456 cstr_ccat(&cstr_buf
, '\0');
1465 return strcpy(p
, "<<=");
1467 return strcpy(p
, ">>=");
1469 if (v
< TOK_IDENT
) {
1470 /* search in two bytes table */
1484 } else if (v
< tok_ident
) {
1485 return table_ident
[v
- TOK_IDENT
]->str
;
1486 } else if (v
>= SYM_FIRST_ANOM
) {
1487 /* special name for anonymous symbol */
1488 sprintf(p
, "L.%u", v
- SYM_FIRST_ANOM
);
1490 /* should never happen */
1495 return cstr_buf
.data
;
1498 /* push, without hashing */
1499 static Sym
*sym_push2(Sym
**ps
, int v
, int t
, int c
)
1502 s
= tcc_malloc(sizeof(Sym
));
1513 /* find a symbol and return its associated structure. 's' is the top
1514 of the symbol stack */
1515 static Sym
*sym_find2(Sym
*s
, int v
)
1525 /* structure lookup */
1526 static inline Sym
*struct_find(int v
)
1529 if ((unsigned)v
>= (unsigned)(tok_ident
- TOK_IDENT
))
1531 return table_ident
[v
]->sym_struct
;
1534 /* find an identifier */
1535 static inline Sym
*sym_find(int v
)
1538 if ((unsigned)v
>= (unsigned)(tok_ident
- TOK_IDENT
))
1540 return table_ident
[v
]->sym_identifier
;
1543 /* push a given symbol on the symbol stack */
1544 static Sym
*sym_push(int v
, CType
*type
, int r
, int c
)
1553 s
= sym_push2(ps
, v
, type
->t
, c
);
1554 s
->type
.ref
= type
->ref
;
1556 /* don't record fields or anonymous symbols */
1558 if (!(v
& SYM_FIELD
) && (v
& ~SYM_STRUCT
) < SYM_FIRST_ANOM
) {
1559 /* record symbol in token array */
1560 ts
= table_ident
[(v
& ~SYM_STRUCT
) - TOK_IDENT
];
1562 ps
= &ts
->sym_struct
;
1564 ps
= &ts
->sym_identifier
;
1571 /* push a global identifier */
1572 static Sym
*global_identifier_push(int v
, int t
, int c
)
1575 s
= sym_push2(&global_stack
, v
, t
, c
);
1576 /* don't record anonymous symbol */
1577 if (v
< SYM_FIRST_ANOM
) {
1578 ps
= &table_ident
[v
- TOK_IDENT
]->sym_identifier
;
1579 /* modify the top most local identifier, so that
1580 sym_identifier will point to 's' when popped */
1582 ps
= &(*ps
)->prev_tok
;
1589 /* pop symbols until top reaches 'b' */
1590 static void sym_pop(Sym
**ptop
, Sym
*b
)
1600 /* remove symbol in token array */
1602 if (!(v
& SYM_FIELD
) && (v
& ~SYM_STRUCT
) < SYM_FIRST_ANOM
) {
1603 ts
= table_ident
[(v
& ~SYM_STRUCT
) - TOK_IDENT
];
1605 ps
= &ts
->sym_struct
;
1607 ps
= &ts
->sym_identifier
;
1618 BufferedFile
*tcc_open(TCCState
*s1
, const char *filename
)
1623 fd
= open(filename
, O_RDONLY
);
1626 bf
= tcc_malloc(sizeof(BufferedFile
));
1632 bf
->buf_ptr
= bf
->buffer
;
1633 bf
->buf_end
= bf
->buffer
;
1634 bf
->buffer
[0] = CH_EOB
; /* put eob symbol */
1635 pstrcpy(bf
->filename
, sizeof(bf
->filename
), filename
);
1637 bf
->ifndef_macro
= 0;
1638 bf
->ifdef_stack_ptr
= s1
->ifdef_stack_ptr
;
1639 // printf("opening '%s'\n", filename);
1643 void tcc_close(BufferedFile
*bf
)
1645 total_lines
+= bf
->line_num
;
1650 /* fill input buffer and peek next char */
1651 static int tcc_peekc_slow(BufferedFile
*bf
)
1654 /* only tries to read if really end of buffer */
1655 if (bf
->buf_ptr
>= bf
->buf_end
) {
1657 #if defined(PARSE_DEBUG)
1662 len
= read(bf
->fd
, bf
->buffer
, len
);
1669 bf
->buf_ptr
= bf
->buffer
;
1670 bf
->buf_end
= bf
->buffer
+ len
;
1671 *bf
->buf_end
= CH_EOB
;
1673 if (bf
->buf_ptr
< bf
->buf_end
) {
1674 return bf
->buf_ptr
[0];
1676 bf
->buf_ptr
= bf
->buf_end
;
1681 /* return the current character, handling end of block if necessary
1683 static int handle_eob(void)
1685 return tcc_peekc_slow(file
);
1688 /* read next char from current input file and handle end of input buffer */
1689 static inline void inp(void)
1691 ch
= *(++(file
->buf_ptr
));
1692 /* end of buffer/file handling */
1697 /* handle '\[\r]\n' */
1698 static void handle_stray(void)
1700 while (ch
== '\\') {
1705 } else if (ch
== '\r') {
1713 error("stray '\\' in program");
1718 /* skip the stray and handle the \\n case. Output an error if
1719 incorrect char after the stray */
1720 static int handle_stray1(uint8_t *p
)
1724 if (p
>= file
->buf_end
) {
1741 /* handle just the EOB case, but not stray */
1742 #define PEEKC_EOB(c, p)\
1753 /* handle the complicated stray case */
1754 #define PEEKC(c, p)\
1759 c = handle_stray1(p);\
1764 /* input with '\[\r]\n' handling. Note that this function cannot
1765 handle other characters after '\', so you cannot call it inside
1766 strings or comments */
1767 static void minp(void)
1775 /* single line C++ comments */
1776 static uint8_t *parse_line_comment(uint8_t *p
)
1783 if (c
== '\n' || c
== CH_EOF
) {
1785 } else if (c
== '\\') {
1790 } else if (c
== '\r') {
1805 static uint8_t *parse_comment(uint8_t *p
)
1811 /* fast skip loop */
1814 if (c
== '\n' || c
== '*' || c
== '\\')
1818 if (c
== '\n' || c
== '*' || c
== '\\')
1822 /* now we can handle all the cases */
1826 } else if (c
== '*') {
1832 } else if (c
== '/') {
1833 goto end_of_comment
;
1834 } else if (c
== '\\') {
1839 /* skip '\[\r]\n', otherwise just skip the stray */
1845 } else if (c
== '\r') {
1862 /* stray, eob or eof */
1867 error("unexpected end of file in comment");
1868 } else if (c
== '\\') {
1880 /* space exlcuding newline */
1881 static inline int is_space(int ch
)
1883 return ch
== ' ' || ch
== '\t' || ch
== '\v' || ch
== '\f' || ch
== '\r';
1886 static inline void skip_spaces(void)
1888 while (is_space(ch
))
1892 /* parse a string without interpreting escapes */
1893 static uint8_t *parse_pp_string(uint8_t *p
,
1894 int sep
, CString
*str
)
1902 } else if (c
== '\\') {
1907 unterminated_string
:
1908 /* XXX: indicate line number of start of string */
1909 error("missing terminating %c character", sep
);
1910 } else if (c
== '\\') {
1911 /* escape : just skip \[\r]\n */
1916 } else if (c
== '\r') {
1919 expect("'\n' after '\r'");
1922 } else if (c
== CH_EOF
) {
1923 goto unterminated_string
;
1926 cstr_ccat(str
, '\\');
1932 } else if (c
== '\n') {
1935 } else if (c
== '\r') {
1938 cstr_ccat(str
, '\r');
1954 /* skip block of text until #else, #elif or #endif. skip also pairs of
1956 void preprocess_skip(void)
1958 int a
, start_of_line
, c
;
1985 } else if (c
== '\\') {
1986 /* XXX: incorrect: should not give an error */
1987 ch
= file
->buf_ptr
[0];
1995 p
= parse_pp_string(p
, c
, NULL
);
2004 p
= parse_comment(p
);
2005 } else if (ch
== '/') {
2006 p
= parse_line_comment(p
);
2012 if (start_of_line
) {
2017 (tok
== TOK_ELSE
|| tok
== TOK_ELIF
|| tok
== TOK_ENDIF
))
2019 if (tok
== TOK_IF
|| tok
== TOK_IFDEF
|| tok
== TOK_IFNDEF
)
2021 else if (tok
== TOK_ENDIF
)
2035 /* ParseState handling */
2037 /* XXX: currently, no include file info is stored. Thus, we cannot display
2038 accurate messages if the function or data definition spans multiple
2041 /* save current parse state in 's' */
2042 void save_parse_state(ParseState
*s
)
2044 s
->line_num
= file
->line_num
;
2045 s
->macro_ptr
= macro_ptr
;
2050 /* restore parse state from 's' */
2051 void restore_parse_state(ParseState
*s
)
2053 file
->line_num
= s
->line_num
;
2054 macro_ptr
= s
->macro_ptr
;
2059 /* return the number of additional 'ints' necessary to store the
2061 static inline int tok_ext_size(int t
)
2080 return LDOUBLE_SIZE
/ 4;
2086 /* token string handling */
2088 static inline void tok_str_new(TokenString
*s
)
2092 s
->allocated_len
= 0;
2093 s
->last_line_num
= -1;
2096 static void tok_str_free(int *str
)
2105 /* NOTE: we test zero separately so that GCC can generate a
2106 table for the following switch */
2121 /* XXX: use a macro to be portable on 64 bit ? */
2122 cstr
= (CString
*)p
[1];
2133 p
+= 1 + (LDOUBLE_SIZE
/ 4);
2143 static int *tok_str_realloc(TokenString
*s
)
2147 len
= s
->allocated_len
+ TOK_STR_ALLOC_INCR
;
2148 str
= tcc_realloc(s
->str
, len
* sizeof(int));
2150 error("memory full");
2151 s
->allocated_len
= len
;
2156 static void tok_str_add(TokenString
*s
, int t
)
2162 if (len
>= s
->allocated_len
)
2163 str
= tok_str_realloc(s
);
2168 static void tok_str_add2(TokenString
*s
, int t
, CValue
*cv
)
2175 /* allocate space for worst case */
2176 if (len
+ TOK_MAX_SIZE
> s
->allocated_len
)
2177 str
= tok_str_realloc(s
);
2186 str
[len
++] = cv
->tab
[0];
2191 str
[len
++] = (int)cstr_dup(cv
->cstr
);
2196 str
[len
++] = cv
->tab
[0];
2197 str
[len
++] = cv
->tab
[1];
2200 #if LDOUBLE_SIZE == 12
2201 str
[len
++] = cv
->tab
[0];
2202 str
[len
++] = cv
->tab
[1];
2203 str
[len
++] = cv
->tab
[2];
2205 #error add long double size support
2214 /* add the current parse token in token string 's' */
2215 static void tok_str_add_tok(TokenString
*s
)
2219 /* save line number info */
2220 if (file
->line_num
!= s
->last_line_num
) {
2221 s
->last_line_num
= file
->line_num
;
2222 cval
.i
= s
->last_line_num
;
2223 tok_str_add2(s
, TOK_LINENUM
, &cval
);
2225 tok_str_add2(s
, tok
, &tokc
);
2228 #if LDOUBLE_SIZE == 12
2229 #define LDOUBLE_GET(p, cv) \
2234 #error add long double size support
2238 /* get a token from an integer array and increment pointer
2239 accordingly. we code it as a macro to avoid pointer aliasing. */
2240 #define TOK_GET(t, p, cv) \
2262 case TOK_CLDOUBLE: \
2263 LDOUBLE_GET(p, cv); \
2264 p += LDOUBLE_SIZE / 4; \
2271 /* defines handling */
2272 static inline void define_push(int v
, int macro_type
, int *str
, Sym
*first_arg
)
2276 s
= sym_push2(&define_stack
, v
, macro_type
, (int)str
);
2277 s
->next
= first_arg
;
2278 table_ident
[v
- TOK_IDENT
]->sym_define
= s
;
2281 /* undefined a define symbol. Its name is just set to zero */
2282 static void define_undef(Sym
*s
)
2286 if (v
>= TOK_IDENT
&& v
< tok_ident
)
2287 table_ident
[v
- TOK_IDENT
]->sym_define
= NULL
;
2291 static inline Sym
*define_find(int v
)
2294 if ((unsigned)v
>= (unsigned)(tok_ident
- TOK_IDENT
))
2296 return table_ident
[v
]->sym_define
;
2299 /* free define stack until top reaches 'b' */
2300 static void free_defines(Sym
*b
)
2308 /* do not free args or predefined defines */
2310 tok_str_free((int *)top
->c
);
2312 if (v
>= TOK_IDENT
&& v
< tok_ident
)
2313 table_ident
[v
- TOK_IDENT
]->sym_define
= NULL
;
2321 static Sym
*label_find(int v
)
2324 if ((unsigned)v
>= (unsigned)(tok_ident
- TOK_IDENT
))
2326 return table_ident
[v
]->sym_label
;
2329 static Sym
*label_push(Sym
**ptop
, int v
, int flags
)
2332 s
= sym_push2(ptop
, v
, 0, 0);
2334 ps
= &table_ident
[v
- TOK_IDENT
]->sym_label
;
2335 if (ptop
== &global_label_stack
) {
2336 /* modify the top most local identifier, so that
2337 sym_identifier will point to 's' when popped */
2339 ps
= &(*ps
)->prev_tok
;
2346 /* pop labels until element last is reached. Look if any labels are
2347 undefined. Define symbols if '&&label' was used. */
2348 static void label_pop(Sym
**ptop
, Sym
*slast
)
2351 for(s
= *ptop
; s
!= slast
; s
= s1
) {
2353 if (s
->r
== LABEL_DECLARED
) {
2354 warning("label '%s' declared but not used", get_tok_str(s
->v
, NULL
));
2355 } else if (s
->r
== LABEL_FORWARD
) {
2356 error("label '%s' used but not defined",
2357 get_tok_str(s
->v
, NULL
));
2360 /* define corresponding symbol. A size of
2362 put_extern_sym(s
, cur_text_section
, (long)s
->next
, 1);
2366 table_ident
[s
->v
- TOK_IDENT
]->sym_label
= s
->prev_tok
;
2372 /* eval an expression for #if/#elif */
2373 static int expr_preprocess(void)
2379 while (tok
!= TOK_LINEFEED
&& tok
!= TOK_EOF
) {
2380 next(); /* do macro subst */
2381 if (tok
== TOK_DEFINED
) {
2386 c
= define_find(tok
) != 0;
2391 } else if (tok
>= TOK_IDENT
) {
2392 /* if undefined macro */
2396 tok_str_add_tok(&str
);
2398 tok_str_add(&str
, -1); /* simulate end of file */
2399 tok_str_add(&str
, 0);
2400 /* now evaluate C constant expression */
2401 macro_ptr
= str
.str
;
2405 tok_str_free(str
.str
);
2409 #if defined(PARSE_DEBUG) || defined(PP_DEBUG)
2410 static void tok_print(int *str
)
2416 TOK_GET(t
, str
, cval
);
2419 printf(" %s", get_tok_str(t
, &cval
));
2425 /* parse after #define */
2426 static void parse_define(void)
2428 Sym
*s
, *first
, **ps
;
2429 int v
, t
, varg
, is_vaargs
, c
;
2434 error("invalid macro name '%s'", get_tok_str(tok
, &tokc
));
2435 /* XXX: should check if same macro (ANSI) */
2438 /* '(' must be just after macro definition for MACRO_FUNC */
2439 c
= file
->buf_ptr
[0];
2441 c
= handle_stray1(file
->buf_ptr
);
2446 while (tok
!= ')') {
2450 if (varg
== TOK_DOTS
) {
2451 varg
= TOK___VA_ARGS__
;
2453 } else if (tok
== TOK_DOTS
&& gnu_ext
) {
2457 if (varg
< TOK_IDENT
)
2458 error("badly punctuated parameter list");
2459 s
= sym_push2(&define_stack
, varg
| SYM_FIELD
, is_vaargs
, 0);
2470 /* EOF testing necessary for '-D' handling */
2471 while (tok
!= TOK_LINEFEED
&& tok
!= TOK_EOF
) {
2472 tok_str_add2(&str
, tok
, &tokc
);
2475 tok_str_add(&str
, 0);
2477 printf("define %s %d: ", get_tok_str(v
, NULL
), t
);
2480 define_push(v
, t
, str
.str
, first
);
2483 /* XXX: use a token or a hash table to accelerate matching ? */
2484 static CachedInclude
*search_cached_include(TCCState
*s1
,
2485 int type
, const char *filename
)
2490 for(i
= 0;i
< s1
->nb_cached_includes
; i
++) {
2491 e
= s1
->cached_includes
[i
];
2492 if (e
->type
== type
&& !strcmp(e
->filename
, filename
))
2498 static inline void add_cached_include(TCCState
*s1
, int type
,
2499 const char *filename
, int ifndef_macro
)
2503 if (search_cached_include(s1
, type
, filename
))
2506 printf("adding cached '%s' %s\n", filename
, get_tok_str(ifndef_macro
, NULL
));
2508 e
= tcc_malloc(sizeof(CachedInclude
) + strlen(filename
));
2512 strcpy(e
->filename
, filename
);
2513 e
->ifndef_macro
= ifndef_macro
;
2514 dynarray_add((void ***)&s1
->cached_includes
, &s1
->nb_cached_includes
, e
);
2517 /* is_bof is true if first non space token at beginning of file */
2518 static void preprocess(int is_bof
)
2520 TCCState
*s1
= tcc_state
;
2521 int size
, i
, c
, n
, saved_parse_flags
;
2522 char buf
[1024], *q
, *p
;
2528 saved_parse_flags
= parse_flags
;
2529 parse_flags
= PARSE_FLAG_PREPROCESS
| PARSE_FLAG_TOK_NUM
|
2530 PARSE_FLAG_LINEFEED
;
2540 s
= define_find(tok
);
2541 /* undefine symbol by putting an invalid name */
2546 ch
= file
->buf_ptr
[0];
2547 /* XXX: incorrect if comments : use next_nomacro with a special mode */
2552 } else if (ch
== '\"') {
2555 /* XXX: better stray handling */
2558 while (ch
!= c
&& ch
!= '\n' && ch
!= CH_EOF
) {
2559 if ((q
- buf
) < sizeof(buf
) - 1)
2566 /* eat all spaces and comments after include */
2567 /* XXX: slightly incorrect */
2568 while (ch1
!= '\n' && ch1
!= CH_EOF
)
2572 /* computed #include : either we have only strings or
2573 we have anything enclosed in '<>' */
2576 if (tok
== TOK_STR
) {
2577 while (tok
!= TOK_LINEFEED
) {
2578 if (tok
!= TOK_STR
) {
2580 error("'#include' expects \"FILENAME\" or <FILENAME>");
2582 pstrcat(buf
, sizeof(buf
), (char *)tokc
.cstr
->data
);
2588 while (tok
!= TOK_LINEFEED
) {
2589 pstrcat(buf
, sizeof(buf
), get_tok_str(tok
, &tokc
));
2593 /* check syntax and remove '<>' */
2594 if (len
< 2 || buf
[0] != '<' || buf
[len
- 1] != '>')
2595 goto include_syntax
;
2596 memmove(buf
, buf
+ 1, len
- 2);
2597 buf
[len
- 2] = '\0';
2602 e
= search_cached_include(s1
, c
, buf
);
2603 if (e
&& define_find(e
->ifndef_macro
)) {
2604 /* no need to parse the include because the 'ifndef macro'
2607 printf("%s: skipping %s\n", file
->filename
, buf
);
2611 /* first search in current dir if "header.h" */
2613 p
= strrchr(file
->filename
, '/');
2615 size
= p
+ 1 - file
->filename
;
2616 if (size
> sizeof(buf1
) - 1)
2617 size
= sizeof(buf1
) - 1;
2618 memcpy(buf1
, file
->filename
, size
);
2620 pstrcat(buf1
, sizeof(buf1
), buf
);
2621 f
= tcc_open(s1
, buf1
);
2625 if (s1
->include_stack_ptr
>= s1
->include_stack
+ INCLUDE_STACK_SIZE
)
2626 error("#include recursion too deep");
2627 /* now search in all the include paths */
2628 n
= s1
->nb_include_paths
+ s1
->nb_sysinclude_paths
;
2629 for(i
= 0; i
< n
; i
++) {
2631 if (i
< s1
->nb_include_paths
)
2632 path
= s1
->include_paths
[i
];
2634 path
= s1
->sysinclude_paths
[i
- s1
->nb_include_paths
];
2635 pstrcpy(buf1
, sizeof(buf1
), path
);
2636 pstrcat(buf1
, sizeof(buf1
), "/");
2637 pstrcat(buf1
, sizeof(buf1
), buf
);
2638 f
= tcc_open(s1
, buf1
);
2642 error("include file '%s' not found", buf
);
2646 printf("%s: including %s\n", file
->filename
, buf1
);
2649 pstrcpy(f
->inc_filename
, sizeof(f
->inc_filename
), buf
);
2650 /* push current file in stack */
2651 /* XXX: fix current line init */
2652 *s1
->include_stack_ptr
++ = file
;
2654 /* add include file debug info */
2656 put_stabs(file
->filename
, N_BINCL
, 0, 0, 0);
2658 tok_flags
|= TOK_FLAG_BOF
| TOK_FLAG_BOL
;
2659 ch
= file
->buf_ptr
[0];
2667 c
= expr_preprocess();
2673 if (tok
< TOK_IDENT
)
2674 error("invalid argument for '#if%sdef'", c
? "n" : "");
2678 printf("#ifndef %s\n", get_tok_str(tok
, NULL
));
2680 file
->ifndef_macro
= tok
;
2683 c
= (define_find(tok
) != 0) ^ c
;
2685 if (s1
->ifdef_stack_ptr
>= s1
->ifdef_stack
+ IFDEF_STACK_SIZE
)
2686 error("memory full");
2687 *s1
->ifdef_stack_ptr
++ = c
;
2690 if (s1
->ifdef_stack_ptr
== s1
->ifdef_stack
)
2691 error("#else without matching #if");
2692 if (s1
->ifdef_stack_ptr
[-1] & 2)
2693 error("#else after #else");
2694 c
= (s1
->ifdef_stack_ptr
[-1] ^= 3);
2697 if (s1
->ifdef_stack_ptr
== s1
->ifdef_stack
)
2698 error("#elif without matching #if");
2699 c
= s1
->ifdef_stack_ptr
[-1];
2701 error("#elif after #else");
2702 /* last #if/#elif expression was true: we skip */
2705 c
= expr_preprocess();
2706 s1
->ifdef_stack_ptr
[-1] = c
;
2716 if (s1
->ifdef_stack_ptr
<= file
->ifdef_stack_ptr
)
2717 error("#endif without matching #if");
2718 s1
->ifdef_stack_ptr
--;
2719 /* '#ifndef macro' was at the start of file. Now we check if
2720 an '#endif' is exactly at the end of file */
2721 if (file
->ifndef_macro
&&
2722 s1
->ifdef_stack_ptr
== file
->ifdef_stack_ptr
) {
2723 file
->ifndef_macro_saved
= file
->ifndef_macro
;
2724 /* need to set to zero to avoid false matches if another
2725 #ifndef at middle of file */
2726 file
->ifndef_macro
= 0;
2727 while (tok
!= TOK_LINEFEED
)
2729 tok_flags
|= TOK_FLAG_ENDIF
;
2735 if (tok
!= TOK_CINT
)
2737 file
->line_num
= tokc
.i
- 1; /* the line number will be incremented after */
2739 if (tok
!= TOK_LINEFEED
) {
2742 pstrcpy(file
->filename
, sizeof(file
->filename
),
2743 (char *)tokc
.cstr
->data
);
2749 ch
= file
->buf_ptr
[0];
2752 while (ch
!= '\n' && ch
!= CH_EOF
) {
2753 if ((q
- buf
) < sizeof(buf
) - 1)
2759 error("#error %s", buf
);
2761 warning("#warning %s", buf
);
2767 if (tok
== TOK_LINEFEED
|| tok
== '!' || tok
== TOK_CINT
) {
2768 /* '!' is ignored to allow C scripts. numbers are ignored
2769 to emulate cpp behaviour */
2771 error("invalid preprocessing directive #%s", get_tok_str(tok
, &tokc
));
2775 /* ignore other preprocess commands or #! for C scripts */
2776 while (tok
!= TOK_LINEFEED
)
2779 parse_flags
= saved_parse_flags
;
2782 /* evaluate escape codes in a string. */
2783 static void parse_escape_string(CString
*outstr
, const uint8_t *buf
, int is_long
)
2798 case '0': case '1': case '2': case '3':
2799 case '4': case '5': case '6': case '7':
2800 /* at most three octal digits */
2805 n
= n
* 8 + c
- '0';
2809 n
= n
* 8 + c
- '0';
2814 goto add_char_nonext
;
2820 if (c
>= 'a' && c
<= 'f')
2822 else if (c
>= 'A' && c
<= 'F')
2832 goto add_char_nonext
;
2856 goto invalid_escape
;
2866 error("invalid escaped char");
2872 cstr_ccat(outstr
, c
);
2874 cstr_wccat(outstr
, c
);
2876 /* add a trailing '\0' */
2878 cstr_ccat(outstr
, '\0');
2880 cstr_wccat(outstr
, '\0');
2883 /* we use 64 bit numbers */
2886 /* bn = (bn << shift) | or_val */
2887 void bn_lshift(unsigned int *bn
, int shift
, int or_val
)
2891 for(i
=0;i
<BN_SIZE
;i
++) {
2893 bn
[i
] = (v
<< shift
) | or_val
;
2894 or_val
= v
>> (32 - shift
);
2898 void bn_zero(unsigned int *bn
)
2901 for(i
=0;i
<BN_SIZE
;i
++) {
2906 /* parse number in null terminated string 'p' and return it in the
2908 void parse_number(const char *p
)
2910 int b
, t
, shift
, frac_bits
, s
, exp_val
, ch
;
2912 unsigned int bn
[BN_SIZE
];
2923 goto float_frac_parse
;
2924 } else if (t
== '0') {
2925 if (ch
== 'x' || ch
== 'X') {
2929 } else if (tcc_ext
&& (ch
== 'b' || ch
== 'B')) {
2935 /* parse all digits. cannot check octal numbers at this stage
2936 because of floating point constants */
2938 if (ch
>= 'a' && ch
<= 'f')
2940 else if (ch
>= 'A' && ch
<= 'F')
2948 if (q
>= token_buf
+ STRING_MAX_SIZE
) {
2950 error("number too long");
2956 ((ch
== 'e' || ch
== 'E') && b
== 10) ||
2957 ((ch
== 'p' || ch
== 'P') && (b
== 16 || b
== 2))) {
2959 /* NOTE: strtox should support that for hexa numbers, but
2960 non ISOC99 libcs do not support it, so we prefer to do
2962 /* hexadecimal or binary floats */
2963 /* XXX: handle overflows */
2975 } else if (t
>= 'a') {
2977 } else if (t
>= 'A') {
2982 bn_lshift(bn
, shift
, t
);
2989 if (t
>= 'a' && t
<= 'f') {
2991 } else if (t
>= 'A' && t
<= 'F') {
2993 } else if (t
>= '0' && t
<= '9') {
2999 error("invalid digit");
3000 bn_lshift(bn
, shift
, t
);
3005 if (ch
!= 'p' && ch
!= 'P')
3012 } else if (ch
== '-') {
3016 if (ch
< '0' || ch
> '9')
3017 expect("exponent digits");
3018 while (ch
>= '0' && ch
<= '9') {
3019 exp_val
= exp_val
* 10 + ch
- '0';
3022 exp_val
= exp_val
* s
;
3024 /* now we can generate the number */
3025 /* XXX: should patch directly float number */
3026 d
= (double)bn
[1] * 4294967296.0 + (double)bn
[0];
3027 d
= ldexp(d
, exp_val
- frac_bits
);
3032 /* float : should handle overflow */
3034 } else if (t
== 'L') {
3037 /* XXX: not large enough */
3038 tokc
.ld
= (long double)d
;
3044 /* decimal floats */
3046 if (q
>= token_buf
+ STRING_MAX_SIZE
)
3051 while (ch
>= '0' && ch
<= '9') {
3052 if (q
>= token_buf
+ STRING_MAX_SIZE
)
3058 if (ch
== 'e' || ch
== 'E') {
3059 if (q
>= token_buf
+ STRING_MAX_SIZE
)
3063 if (ch
== '-' || ch
== '+') {
3064 if (q
>= token_buf
+ STRING_MAX_SIZE
)
3069 if (ch
< '0' || ch
> '9')
3070 expect("exponent digits");
3071 while (ch
>= '0' && ch
<= '9') {
3072 if (q
>= token_buf
+ STRING_MAX_SIZE
)
3084 tokc
.f
= strtof(token_buf
, NULL
);
3085 } else if (t
== 'L') {
3088 tokc
.ld
= strtold(token_buf
, NULL
);
3091 tokc
.d
= strtod(token_buf
, NULL
);
3095 unsigned long long n
, n1
;
3098 /* integer number */
3101 if (b
== 10 && *q
== '0') {
3108 /* no need for checks except for base 10 / 8 errors */
3111 } else if (t
>= 'a') {
3113 } else if (t
>= 'A') {
3118 error("invalid digit");
3122 /* detect overflow */
3123 /* XXX: this test is not reliable */
3125 error("integer constant overflow");
3128 /* XXX: not exactly ANSI compliant */
3129 if ((n
& 0xffffffff00000000LL
) != 0) {
3134 } else if (n
> 0x7fffffff) {
3145 error("three 'l's in integer constant");
3148 if (tok
== TOK_CINT
)
3150 else if (tok
== TOK_CUINT
)
3154 } else if (t
== 'U') {
3156 error("two 'u's in integer constant");
3158 if (tok
== TOK_CINT
)
3160 else if (tok
== TOK_CLLONG
)
3167 if (tok
== TOK_CINT
|| tok
== TOK_CUINT
)
3175 #define PARSE2(c1, tok1, c2, tok2) \
3186 /* return next token without macro substitution */
3187 static inline void next_nomacro1(void)
3207 /* first look if it is in fact an end of buffer */
3208 if (p
>= file
->buf_end
) {
3212 if (p
>= file
->buf_end
)
3225 TCCState
*s1
= tcc_state
;
3226 if (parse_flags
& PARSE_FLAG_LINEFEED
) {
3228 } else if (s1
->include_stack_ptr
== s1
->include_stack
||
3229 !(parse_flags
& PARSE_FLAG_PREPROCESS
)) {
3230 /* no include left : end of file. */
3233 /* pop include file */
3235 /* test if previous '#endif' was after a #ifdef at
3237 if (tok_flags
& TOK_FLAG_ENDIF
) {
3239 printf("#endif %s\n", get_tok_str(file
->ifndef_macro_saved
, NULL
));
3241 add_cached_include(s1
, file
->inc_type
, file
->inc_filename
,
3242 file
->ifndef_macro_saved
);
3245 /* add end of include file debug info */
3247 put_stabd(N_EINCL
, 0, 0);
3249 /* pop include stack */
3251 s1
->include_stack_ptr
--;
3252 file
= *s1
->include_stack_ptr
;
3260 if (parse_flags
& PARSE_FLAG_LINEFEED
) {
3264 tok_flags
|= TOK_FLAG_BOL
;
3273 if ((tok_flags
& TOK_FLAG_BOL
) &&
3274 (parse_flags
& PARSE_FLAG_PREPROCESS
)) {
3276 preprocess(tok_flags
& TOK_FLAG_BOF
);
3282 tok
= TOK_TWOSHARPS
;
3289 case 'a': case 'b': case 'c': case 'd':
3290 case 'e': case 'f': case 'g': case 'h':
3291 case 'i': case 'j': case 'k': case 'l':
3292 case 'm': case 'n': case 'o': case 'p':
3293 case 'q': case 'r': case 's': case 't':
3294 case 'u': case 'v': case 'w': case 'x':
3296 case 'A': case 'B': case 'C': case 'D':
3297 case 'E': case 'F': case 'G': case 'H':
3298 case 'I': case 'J': case 'K':
3299 case 'M': case 'N': case 'O': case 'P':
3300 case 'Q': case 'R': case 'S': case 'T':
3301 case 'U': case 'V': case 'W': case 'X':
3307 h
= TOK_HASH_FUNC(h
, c
);
3311 if (!isidnum_table
[c
])
3313 h
= TOK_HASH_FUNC(h
, c
);
3320 /* fast case : no stray found, so we have the full token
3321 and we have already hashed it */
3323 h
&= (TOK_HASH_SIZE
- 1);
3324 pts
= &hash_ident
[h
];
3329 if (ts
->len
== len
&& !memcmp(ts
->str
, p1
, len
))
3331 pts
= &(ts
->hash_next
);
3333 ts
= tok_alloc_new(pts
, p1
, len
);
3337 cstr_reset(&tokcstr
);
3340 cstr_ccat(&tokcstr
, *p1
);
3346 while (isidnum_table
[c
]) {
3347 cstr_ccat(&tokcstr
, c
);
3350 ts
= tok_alloc(tokcstr
.data
, tokcstr
.size
);
3356 if (t
!= '\\' && t
!= '\'' && t
!= '\"') {
3358 goto parse_ident_fast
;
3361 if (c
== '\'' || c
== '\"') {
3365 cstr_reset(&tokcstr
);
3366 cstr_ccat(&tokcstr
, 'L');
3367 goto parse_ident_slow
;
3371 case '0': case '1': case '2': case '3':
3372 case '4': case '5': case '6': case '7':
3375 cstr_reset(&tokcstr
);
3376 /* after the first digit, accept digits, alpha, '.' or sign if
3377 prefixed by 'eEpP' */
3381 cstr_ccat(&tokcstr
, c
);
3383 if (!(isnum(c
) || isid(c
) || c
== '.' ||
3384 ((c
== '+' || c
== '-') &&
3385 (t
== 'e' || t
== 'E' || t
== 'p' || t
== 'P'))))
3388 /* We add a trailing '\0' to ease parsing */
3389 cstr_ccat(&tokcstr
, '\0');
3390 tokc
.cstr
= &tokcstr
;
3394 /* special dot handling because it can also start a number */
3397 cstr_reset(&tokcstr
);
3398 cstr_ccat(&tokcstr
, '.');
3400 } else if (c
== '.') {
3420 /* parse the string */
3422 p
= parse_pp_string(p
, sep
, &str
);
3423 cstr_ccat(&str
, '\0');
3425 /* eval the escape (should be done as TOK_PPNUM) */
3426 cstr_reset(&tokcstr
);
3427 parse_escape_string(&tokcstr
, str
.data
, is_long
);
3432 /* XXX: make it portable */
3436 char_size
= sizeof(int);
3437 if (tokcstr
.size
<= char_size
)
3438 error("empty character constant");
3439 if (tokcstr
.size
> 2 * char_size
)
3440 warning("multi-character character constant");
3442 tokc
.i
= *(int8_t *)tokcstr
.data
;
3445 tokc
.i
= *(int *)tokcstr
.data
;
3449 tokc
.cstr
= &tokcstr
;
3463 } else if (c
== '<') {
3481 } else if (c
== '>') {
3499 } else if (c
== '=') {
3512 } else if (c
== '=') {
3525 } else if (c
== '=') {
3538 } else if (c
== '=') {
3541 } else if (c
== '>') {
3549 PARSE2('!', '!', '=', TOK_NE
)
3550 PARSE2('=', '=', '=', TOK_EQ
)
3551 PARSE2('*', '*', '=', TOK_A_MUL
)
3552 PARSE2('%', '%', '=', TOK_A_MOD
)
3553 PARSE2('^', '^', '=', TOK_A_XOR
)
3555 /* comments or operator */
3559 p
= parse_comment(p
);
3561 } else if (c
== '/') {
3562 p
= parse_line_comment(p
);
3564 } else if (c
== '=') {
3584 case '$': /* only used in assembler */
3589 error("unrecognized character \\x%02x", c
);
3594 #if defined(PARSE_DEBUG)
3595 printf("token = %s\n", get_tok_str(tok
, &tokc
));
3599 /* return next token without macro substitution. Can read input from
3601 static void next_nomacro(void)
3607 TOK_GET(tok
, macro_ptr
, tokc
);
3608 if (tok
== TOK_LINENUM
) {
3609 file
->line_num
= tokc
.i
;
3618 /* substitute args in macro_str and return allocated string */
3619 static int *macro_arg_subst(Sym
**nested_list
, int *macro_str
, Sym
*args
)
3621 int *st
, last_tok
, t
, notfirst
;
3630 TOK_GET(t
, macro_str
, cval
);
3635 TOK_GET(t
, macro_str
, cval
);
3638 s
= sym_find2(args
, t
);
3645 cstr_ccat(&cstr
, ' ');
3646 TOK_GET(t
, st
, cval
);
3647 cstr_cat(&cstr
, get_tok_str(t
, &cval
));
3650 cstr_ccat(&cstr
, '\0');
3652 printf("stringize: %s\n", (char *)cstr
.data
);
3656 tok_str_add2(&str
, TOK_STR
, &cval
);
3659 tok_str_add2(&str
, t
, &cval
);
3661 } else if (t
>= TOK_IDENT
) {
3662 s
= sym_find2(args
, t
);
3665 /* if '##' is present before or after, no arg substitution */
3666 if (*macro_str
== TOK_TWOSHARPS
|| last_tok
== TOK_TWOSHARPS
) {
3667 /* special case for var arg macros : ## eats the
3668 ',' if empty VA_ARGS variable. */
3669 /* XXX: test of the ',' is not 100%
3670 reliable. should fix it to avoid security
3672 if (gnu_ext
&& s
->type
.t
&&
3673 last_tok
== TOK_TWOSHARPS
&&
3674 str
.len
>= 2 && str
.str
[str
.len
- 2] == ',') {
3676 /* suppress ',' '##' */
3679 /* suppress '##' and add variable */
3687 TOK_GET(t1
, st
, cval
);
3690 tok_str_add2(&str
, t1
, &cval
);
3694 macro_subst(&str
, nested_list
, st
);
3697 tok_str_add(&str
, t
);
3700 tok_str_add2(&str
, t
, &cval
);
3704 tok_str_add(&str
, 0);
3708 /* do macro substitution of current token with macro 's' and add
3709 result to (tok_str,tok_len). 'nested_list' is the list of all
3710 macros we got inside to avoid recursing. Return non zero if no
3711 substitution needs to be done */
3712 static int macro_subst_tok(TokenString
*tok_str
,
3713 Sym
**nested_list
, Sym
*s
)
3715 Sym
*args
, *sa
, *sa1
;
3716 int mstr_allocated
, parlevel
, *mstr
, t
;
3722 /* if symbol is a macro, prepare substitution */
3724 /* special macros */
3725 if (tok
== TOK___LINE__
) {
3726 cval
.i
= file
->line_num
;
3727 tok_str_add2(tok_str
, TOK_CINT
, &cval
);
3728 } else if (tok
== TOK___FILE__
) {
3729 cstrval
= file
->filename
;
3731 tok_str_add2(tok_str
, TOK_STR
, &cval
);
3732 } else if (tok
== TOK___DATE__
) {
3733 cstrval
= "Jan 1 2002";
3735 } else if (tok
== TOK___TIME__
) {
3736 cstrval
= "00:00:00";
3739 cstr_cat(&cstr
, cstrval
);
3740 cstr_ccat(&cstr
, '\0');
3742 tok_str_add2(tok_str
, TOK_STR
, &cval
);
3747 if (s
->type
.t
== MACRO_FUNC
) {
3748 /* NOTE: we do not use next_nomacro to avoid eating the
3749 next token. XXX: find better solution */
3753 /* XXX: incorrect with comments */
3754 ch
= file
->buf_ptr
[0];
3755 while (is_space(ch
) || ch
== '\n')
3759 if (t
!= '(') /* no macro subst */
3762 /* argument macro */
3767 /* NOTE: empty args are allowed, except if no args */
3769 /* handle '()' case */
3770 if (!args
&& tok
== ')')
3773 error("macro '%s' used with too many args",
3774 get_tok_str(s
->v
, 0));
3777 /* NOTE: non zero sa->t indicates VA_ARGS */
3778 while ((parlevel
> 0 ||
3780 (tok
!= ',' || sa
->type
.t
))) &&
3784 else if (tok
== ')')
3786 tok_str_add2(&str
, tok
, &tokc
);
3789 tok_str_add(&str
, 0);
3790 sym_push2(&args
, sa
->v
& ~SYM_FIELD
, sa
->type
.t
, (int)str
.str
);
3793 /* special case for gcc var args: add an empty
3794 var arg argument if it is omitted */
3795 if (sa
&& sa
->type
.t
&& gnu_ext
)
3805 error("macro '%s' used with too few args",
3806 get_tok_str(s
->v
, 0));
3809 /* now subst each arg */
3810 mstr
= macro_arg_subst(nested_list
, mstr
, args
);
3815 tok_str_free((int *)sa
->c
);
3821 sym_push2(nested_list
, s
->v
, 0, 0);
3822 macro_subst(tok_str
, nested_list
, mstr
);
3823 /* pop nested defined symbol */
3825 *nested_list
= sa1
->prev
;
3833 /* handle the '##' operator. Return NULL if no '##' seen. Otherwise
3834 return the resulting string (which must be freed). */
3835 static inline int *macro_twosharps(const int *macro_str
)
3838 const int *macro_ptr1
, *start_macro_ptr
, *ptr
, *saved_macro_ptr
;
3840 const char *p1
, *p2
;
3842 TokenString macro_str1
;
3845 start_macro_ptr
= macro_str
;
3846 /* we search the first '##' */
3848 macro_ptr1
= macro_str
;
3849 TOK_GET(t
, macro_str
, cval
);
3850 /* nothing more to do if end of string */
3853 if (*macro_str
== TOK_TWOSHARPS
)
3857 /* we saw '##', so we need more processing to handle it */
3859 tok_str_new(¯o_str1
);
3863 /* add all tokens seen so far */
3864 for(ptr
= start_macro_ptr
; ptr
< macro_ptr1
;) {
3865 TOK_GET(t
, ptr
, cval
);
3866 tok_str_add2(¯o_str1
, t
, &cval
);
3868 saved_macro_ptr
= macro_ptr
;
3869 /* XXX: get rid of the use of macro_ptr here */
3870 macro_ptr
= (int *)macro_str
;
3872 while (*macro_ptr
== TOK_TWOSHARPS
) {
3874 macro_ptr1
= macro_ptr
;
3877 TOK_GET(t
, macro_ptr
, cval
);
3878 /* We concatenate the two tokens if we have an
3879 identifier or a preprocessing number */
3881 p1
= get_tok_str(tok
, &tokc
);
3882 cstr_cat(&cstr
, p1
);
3883 p2
= get_tok_str(t
, &cval
);
3884 cstr_cat(&cstr
, p2
);
3885 cstr_ccat(&cstr
, '\0');
3887 if ((tok
>= TOK_IDENT
|| tok
== TOK_PPNUM
) &&
3888 (t
>= TOK_IDENT
|| t
== TOK_PPNUM
)) {
3889 if (tok
== TOK_PPNUM
) {
3890 /* if number, then create a number token */
3891 /* NOTE: no need to allocate because
3892 tok_str_add2() does it */
3895 /* if identifier, we must do a test to
3896 validate we have a correct identifier */
3897 if (t
== TOK_PPNUM
) {
3907 if (!isnum(c
) && !isid(c
))
3911 ts
= tok_alloc(cstr
.data
, strlen(cstr
.data
));
3912 tok
= ts
->tok
; /* modify current token */
3915 const char *str
= cstr
.data
;
3916 const unsigned char *q
;
3918 /* we look for a valid token */
3919 /* XXX: do more extensive checks */
3920 if (!strcmp(str
, ">>=")) {
3922 } else if (!strcmp(str
, "<<=")) {
3924 } else if (strlen(str
) == 2) {
3925 /* search in two bytes table */
3930 if (q
[0] == str
[0] && q
[1] == str
[1])
3937 /* NOTE: because get_tok_str use a static buffer,
3940 p1
= get_tok_str(tok
, &tokc
);
3941 cstr_cat(&cstr
, p1
);
3942 cstr_ccat(&cstr
, '\0');
3943 p2
= get_tok_str(t
, &cval
);
3944 warning("pasting \"%s\" and \"%s\" does not give a valid preprocessing token", cstr
.data
, p2
);
3945 /* cannot merge tokens: just add them separately */
3946 tok_str_add2(¯o_str1
, tok
, &tokc
);
3947 /* XXX: free associated memory ? */
3954 tok_str_add2(¯o_str1
, tok
, &tokc
);
3959 macro_ptr
= (int *)saved_macro_ptr
;
3961 tok_str_add(¯o_str1
, 0);
3962 return macro_str1
.str
;
3966 /* do macro substitution of macro_str and add result to
3967 (tok_str,tok_len). 'nested_list' is the list of all macros we got
3968 inside to avoid recursing. */
3969 static void macro_subst(TokenString
*tok_str
,
3970 Sym
**nested_list
, const int *macro_str
)
3973 int *saved_macro_ptr
, *macro_str1
;
3978 /* first scan for '##' operator handling */
3980 macro_str1
= macro_twosharps(ptr
);
3984 TOK_GET(t
, ptr
, cval
);
3989 /* if nested substitution, do nothing */
3990 if (sym_find2(*nested_list
, t
))
3992 saved_macro_ptr
= macro_ptr
;
3993 macro_ptr
= (int *)ptr
;
3995 ret
= macro_subst_tok(tok_str
, nested_list
, s
);
3996 ptr
= (int *)macro_ptr
;
3997 macro_ptr
= saved_macro_ptr
;
4002 tok_str_add2(tok_str
, t
, &cval
);
4006 tok_str_free(macro_str1
);
4009 /* return next token with macro substitution */
4010 static void next(void)
4012 Sym
*nested_list
, *s
;
4018 /* if not reading from macro substituted string, then try
4019 to substitute macros */
4020 if (tok
>= TOK_IDENT
&&
4021 (parse_flags
& PARSE_FLAG_PREPROCESS
)) {
4022 s
= define_find(tok
);
4024 /* we have a macro: we try to substitute */
4027 if (macro_subst_tok(&str
, &nested_list
, s
) == 0) {
4028 /* substitution done, NOTE: maybe empty */
4029 tok_str_add(&str
, 0);
4030 macro_ptr
= str
.str
;
4031 macro_ptr_allocated
= str
.str
;
4038 /* end of macro or end of unget buffer */
4039 if (unget_buffer_enabled
) {
4040 macro_ptr
= unget_saved_macro_ptr
;
4041 unget_buffer_enabled
= 0;
4043 /* end of macro string: free it */
4044 tok_str_free(macro_ptr_allocated
);
4051 /* convert preprocessor tokens into C tokens */
4052 if (tok
== TOK_PPNUM
&&
4053 (parse_flags
& PARSE_FLAG_TOK_NUM
)) {
4054 parse_number((char *)tokc
.cstr
->data
);
4058 /* push back current token and set current token to 'last_tok'. Only
4059 identifier case handled for labels. */
4060 static inline void unget_tok(int last_tok
)
4064 unget_saved_macro_ptr
= macro_ptr
;
4065 unget_buffer_enabled
= 1;
4066 q
= unget_saved_buffer
;
4069 n
= tok_ext_size(tok
) - 1;
4072 *q
= 0; /* end of token string */
4077 void swap(int *p
, int *q
)
4085 void vsetc(CType
*type
, int r
, CValue
*vc
)
4089 if (vtop
>= vstack
+ VSTACK_SIZE
)
4090 error("memory full");
4091 /* cannot let cpu flags if other instruction are generated. Also
4092 avoid leaving VT_JMP anywhere except on the top of the stack
4093 because it would complicate the code generator. */
4094 if (vtop
>= vstack
) {
4095 v
= vtop
->r
& VT_VALMASK
;
4096 if (v
== VT_CMP
|| (v
& ~1) == VT_JMP
)
4102 vtop
->r2
= VT_CONST
;
4106 /* push integer constant */
4111 vsetc(&int_type
, VT_CONST
, &cval
);
4114 /* Return a static symbol pointing to a section */
4115 static Sym
*get_sym_ref(CType
*type
, Section
*sec
,
4116 unsigned long offset
, unsigned long size
)
4122 sym
= global_identifier_push(v
, type
->t
| VT_STATIC
, 0);
4123 sym
->type
.ref
= type
->ref
;
4124 sym
->r
= VT_CONST
| VT_SYM
;
4125 put_extern_sym(sym
, sec
, offset
, size
);
4129 /* push a reference to a section offset by adding a dummy symbol */
4130 static void vpush_ref(CType
*type
, Section
*sec
, unsigned long offset
, unsigned long size
)
4135 vsetc(type
, VT_CONST
| VT_SYM
, &cval
);
4136 vtop
->sym
= get_sym_ref(type
, sec
, offset
, size
);
4139 /* define a new external reference to a symbol 'v' of type 'u' */
4140 static Sym
*external_global_sym(int v
, CType
*type
, int r
)
4146 /* push forward reference */
4147 s
= global_identifier_push(v
, type
->t
| VT_EXTERN
, 0);
4148 s
->type
.ref
= type
->ref
;
4149 s
->r
= r
| VT_CONST
| VT_SYM
;
4154 /* define a new external reference to a symbol 'v' of type 'u' */
4155 static Sym
*external_sym(int v
, CType
*type
, int r
)
4161 /* push forward reference */
4162 s
= sym_push(v
, type
, r
| VT_CONST
| VT_SYM
, 0);
4163 s
->type
.t
|= VT_EXTERN
;
4165 if (!is_compatible_types(&s
->type
, type
))
4166 error("incompatible types for redefinition of '%s'",
4167 get_tok_str(v
, NULL
));
4172 /* push a reference to global symbol v */
4173 static void vpush_global_sym(CType
*type
, int v
)
4178 sym
= external_global_sym(v
, type
, 0);
4180 vsetc(type
, VT_CONST
| VT_SYM
, &cval
);
4184 void vset(CType
*type
, int r
, int v
)
4189 vsetc(type
, r
, &cval
);
4192 void vseti(int r
, int v
)
4208 void vpushv(SValue
*v
)
4210 if (vtop
>= vstack
+ VSTACK_SIZE
)
4211 error("memory full");
4221 /* save r to the memory stack, and mark it as being free */
4222 void save_reg(int r
)
4224 int l
, saved
, size
, align
;
4228 /* modify all stack values */
4231 for(p
=vstack
;p
<=vtop
;p
++) {
4232 if ((p
->r
& VT_VALMASK
) == r
||
4233 (p
->r2
& VT_VALMASK
) == r
) {
4234 /* must save value on stack if not already done */
4236 /* NOTE: must reload 'r' because r might be equal to r2 */
4237 r
= p
->r
& VT_VALMASK
;
4238 /* store register in the stack */
4240 if ((p
->r
& VT_LVAL
) ||
4241 (!is_float(type
->t
) && (type
->t
& VT_BTYPE
) != VT_LLONG
))
4243 size
= type_size(type
, &align
);
4244 loc
= (loc
- size
) & -align
;
4245 sv
.type
.t
= type
->t
;
4246 sv
.r
= VT_LOCAL
| VT_LVAL
;
4249 #ifdef TCC_TARGET_I386
4250 /* x86 specific: need to pop fp register ST0 if saved */
4251 if (r
== TREG_ST0
) {
4252 o(0xd9dd); /* fstp %st(1) */
4255 /* special long long case */
4256 if ((type
->t
& VT_BTYPE
) == VT_LLONG
) {
4263 /* mark that stack entry as being saved on the stack */
4264 if (p
->r
& VT_LVAL
) {
4265 /* also clear the bounded flag because the
4266 relocation address of the function was stored in
4268 p
->r
= (p
->r
& ~(VT_VALMASK
| VT_BOUNDED
)) | VT_LLOCAL
;
4270 p
->r
= lvalue_type(p
->type
.t
) | VT_LOCAL
;
4278 /* find a free register of class 'rc'. If none, save one register */
4284 /* find a free register */
4285 for(r
=0;r
<NB_REGS
;r
++) {
4286 if (reg_classes
[r
] & rc
) {
4287 for(p
=vstack
;p
<=vtop
;p
++) {
4288 if ((p
->r
& VT_VALMASK
) == r
||
4289 (p
->r2
& VT_VALMASK
) == r
)
4297 /* no register left : free the first one on the stack (VERY
4298 IMPORTANT to start from the bottom to ensure that we don't
4299 spill registers used in gen_opi()) */
4300 for(p
=vstack
;p
<=vtop
;p
++) {
4301 r
= p
->r
& VT_VALMASK
;
4302 if (r
< VT_CONST
&& (reg_classes
[r
] & rc
))
4304 /* also look at second register (if long long) */
4305 r
= p
->r2
& VT_VALMASK
;
4306 if (r
< VT_CONST
&& (reg_classes
[r
] & rc
)) {
4312 /* Should never comes here */
4316 /* save registers up to (vtop - n) stack entry */
4317 void save_regs(int n
)
4322 for(p
= vstack
;p
<= p1
; p
++) {
4323 r
= p
->r
& VT_VALMASK
;
4330 /* move register 's' to 'r', and flush previous value of r to memory
4332 void move_reg(int r
, int s
)
4345 /* get address of vtop (vtop MUST BE an lvalue) */
4348 vtop
->r
&= ~VT_LVAL
;
4349 /* tricky: if saved lvalue, then we can go back to lvalue */
4350 if ((vtop
->r
& VT_VALMASK
) == VT_LLOCAL
)
4351 vtop
->r
= (vtop
->r
& ~(VT_VALMASK
| VT_LVAL_TYPE
)) | VT_LOCAL
| VT_LVAL
;
4354 #ifdef CONFIG_TCC_BCHECK
4355 /* generate lvalue bound code */
4361 vtop
->r
&= ~VT_MUSTBOUND
;
4362 /* if lvalue, then use checking code before dereferencing */
4363 if (vtop
->r
& VT_LVAL
) {
4364 /* if not VT_BOUNDED value, then make one */
4365 if (!(vtop
->r
& VT_BOUNDED
)) {
4366 lval_type
= vtop
->r
& (VT_LVAL_TYPE
| VT_LVAL
);
4367 /* must save type because we must set it to int to get pointer */
4369 vtop
->type
.t
= VT_INT
;
4372 gen_bounded_ptr_add();
4373 vtop
->r
|= lval_type
;
4376 /* then check for dereferencing */
4377 gen_bounded_ptr_deref();
4382 /* store vtop a register belonging to class 'rc'. lvalues are
4383 converted to values. Cannot be used if cannot be converted to
4384 register value (such as structures). */
4387 int r
, r2
, rc2
, bit_pos
, bit_size
, size
, align
, i
;
4388 unsigned long long ll
;
4390 /* NOTE: get_reg can modify vstack[] */
4391 if (vtop
->type
.t
& VT_BITFIELD
) {
4392 bit_pos
= (vtop
->type
.t
>> VT_STRUCT_SHIFT
) & 0x3f;
4393 bit_size
= (vtop
->type
.t
>> (VT_STRUCT_SHIFT
+ 6)) & 0x3f;
4394 /* remove bit field info to avoid loops */
4395 vtop
->type
.t
&= ~(VT_BITFIELD
| (-1 << VT_STRUCT_SHIFT
));
4396 /* generate shifts */
4397 vpushi(32 - (bit_pos
+ bit_size
));
4399 vpushi(32 - bit_size
);
4400 /* NOTE: transformed to SHR if unsigned */
4404 if (is_float(vtop
->type
.t
) &&
4405 (vtop
->r
& (VT_VALMASK
| VT_LVAL
)) == VT_CONST
) {
4408 unsigned long offset
;
4410 /* XXX: unify with initializers handling ? */
4411 /* CPUs usually cannot use float constants, so we store them
4412 generically in data segment */
4413 size
= type_size(&vtop
->type
, &align
);
4414 offset
= (data_section
->data_offset
+ align
- 1) & -align
;
4415 data_section
->data_offset
= offset
;
4416 /* XXX: not portable yet */
4417 ptr
= section_ptr_add(data_section
, size
);
4420 ptr
[i
] = vtop
->c
.tab
[i
];
4421 sym
= get_sym_ref(&vtop
->type
, data_section
, offset
, size
<< 2);
4422 vtop
->r
|= VT_LVAL
| VT_SYM
;
4426 #ifdef CONFIG_TCC_BCHECK
4427 if (vtop
->r
& VT_MUSTBOUND
)
4431 r
= vtop
->r
& VT_VALMASK
;
4432 /* need to reload if:
4434 - lvalue (need to dereference pointer)
4435 - already a register, but not in the right class */
4436 if (r
>= VT_CONST
||
4437 (vtop
->r
& VT_LVAL
) ||
4438 !(reg_classes
[r
] & rc
) ||
4439 ((vtop
->type
.t
& VT_BTYPE
) == VT_LLONG
&&
4440 !(reg_classes
[vtop
->r2
] & rc
))) {
4442 if ((vtop
->type
.t
& VT_BTYPE
) == VT_LLONG
) {
4443 /* two register type load : expand to two words
4445 if ((vtop
->r
& (VT_VALMASK
| VT_LVAL
)) == VT_CONST
) {
4448 vtop
->c
.ui
= ll
; /* first word */
4450 vtop
->r
= r
; /* save register value */
4451 vpushi(ll
>> 32); /* second word */
4452 } else if (r
>= VT_CONST
||
4453 (vtop
->r
& VT_LVAL
)) {
4454 /* load from memory */
4457 vtop
[-1].r
= r
; /* save register value */
4458 /* increment pointer to get second word */
4459 vtop
->type
.t
= VT_INT
;
4465 /* move registers */
4468 vtop
[-1].r
= r
; /* save register value */
4469 vtop
->r
= vtop
[-1].r2
;
4471 /* allocate second register */
4478 /* write second register */
4480 } else if ((vtop
->r
& VT_LVAL
) && !is_float(vtop
->type
.t
)) {
4482 /* lvalue of scalar type : need to use lvalue type
4483 because of possible cast */
4486 /* compute memory access type */
4487 if (vtop
->r
& VT_LVAL_BYTE
)
4489 else if (vtop
->r
& VT_LVAL_SHORT
)
4491 if (vtop
->r
& VT_LVAL_UNSIGNED
)
4495 /* restore wanted type */
4498 /* one register type load */
4507 /* generate vtop[-1] and vtop[0] in resp. classes rc1 and rc2 */
4508 void gv2(int rc1
, int rc2
)
4512 /* generate more generic register first. But VT_JMP or VT_CMP
4513 values must be generated first in all cases to avoid possible
4515 v
= vtop
[0].r
& VT_VALMASK
;
4516 if (v
!= VT_CMP
&& (v
& ~1) != VT_JMP
&& rc1
<= rc2
) {
4521 /* test if reload is needed for first register */
4522 if ((vtop
[-1].r
& VT_VALMASK
) >= VT_CONST
) {
4532 /* test if reload is needed for first register */
4533 if ((vtop
[0].r
& VT_VALMASK
) >= VT_CONST
) {
4539 /* expand long long on stack in two int registers */
4544 u
= vtop
->type
.t
& VT_UNSIGNED
;
4547 vtop
[0].r
= vtop
[-1].r2
;
4548 vtop
[0].r2
= VT_CONST
;
4549 vtop
[-1].r2
= VT_CONST
;
4550 vtop
[0].type
.t
= VT_INT
| u
;
4551 vtop
[-1].type
.t
= VT_INT
| u
;
4554 /* build a long long from two ints */
4557 gv2(RC_INT
, RC_INT
);
4558 vtop
[-1].r2
= vtop
[0].r
;
4559 vtop
[-1].type
.t
= t
;
4563 /* rotate n first stack elements to the bottom */
4570 for(i
=-n
+1;i
!=0;i
++)
4571 vtop
[i
] = vtop
[i
+1];
4575 /* pop stack value */
4579 v
= vtop
->r
& VT_VALMASK
;
4580 #ifdef TCC_TARGET_I386
4581 /* for x86, we need to pop the FP stack */
4582 if (v
== TREG_ST0
&& !nocode_wanted
) {
4583 o(0xd9dd); /* fstp %st(1) */
4586 if (v
== VT_JMP
|| v
== VT_JMPI
) {
4587 /* need to put correct jump if && or || without test */
4593 /* convert stack entry to register and duplicate its value in another
4601 if ((t
& VT_BTYPE
) == VT_LLONG
) {
4608 /* stack: H L L1 H1 */
4616 /* duplicate value */
4627 load(r1
, &sv
); /* move r to r1 */
4629 /* duplicates value */
4634 /* generate CPU independent (unsigned) long long operations */
4635 void gen_opl(int op
)
4637 int t
, a
, b
, op1
, c
, i
;
4645 func
= TOK___divdi3
;
4648 func
= TOK___udivdi3
;
4651 func
= TOK___moddi3
;
4654 func
= TOK___umoddi3
;
4656 /* call generic long long function */
4657 gfunc_start(&gf
, FUNC_CDECL
);
4660 vpush_global_sym(&func_old_type
, func
);
4664 vtop
->r2
= REG_LRET
;
4677 /* stack: L1 H1 L2 H2 */
4682 vtop
[-2] = vtop
[-3];
4685 /* stack: H1 H2 L1 L2 */
4691 /* stack: H1 H2 L1 L2 ML MH */
4694 /* stack: ML MH H1 H2 L1 L2 */
4698 /* stack: ML MH H1 L2 H2 L1 */
4703 /* stack: ML MH M1 M2 */
4706 } else if (op
== '+' || op
== '-') {
4707 /* XXX: add non carry method too (for MIPS or alpha) */
4713 /* stack: H1 H2 (L1 op L2) */
4716 gen_op(op1
+ 1); /* TOK_xxxC2 */
4719 /* stack: H1 H2 (L1 op L2) */
4722 /* stack: (L1 op L2) H1 H2 */
4724 /* stack: (L1 op L2) (H1 op H2) */
4732 if ((vtop
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) == VT_CONST
) {
4733 t
= vtop
[-1].type
.t
;
4737 /* stack: L H shift */
4739 /* constant: simpler */
4740 /* NOTE: all comments are for SHL. the other cases are
4741 done by swaping words */
4752 if (op
!= TOK_SAR
) {
4785 /* XXX: should provide a faster fallback on x86 ? */
4788 func
= TOK___sardi3
;
4791 func
= TOK___shrdi3
;
4794 func
= TOK___shldi3
;
4800 /* compare operations */
4806 /* stack: L1 H1 L2 H2 */
4808 vtop
[-1] = vtop
[-2];
4810 /* stack: L1 L2 H1 H2 */
4813 /* when values are equal, we need to compare low words. since
4814 the jump is inverted, we invert the test too. */
4817 else if (op1
== TOK_GT
)
4819 else if (op1
== TOK_ULT
)
4821 else if (op1
== TOK_UGT
)
4826 if (op1
!= TOK_NE
) {
4830 /* generate non equal test */
4831 /* XXX: NOT PORTABLE yet */
4835 #ifdef TCC_TARGET_I386
4836 b
= psym(0x850f, 0);
4838 error("not implemented");
4842 /* compare low. Always unsigned */
4846 else if (op1
== TOK_LE
)
4848 else if (op1
== TOK_GT
)
4850 else if (op1
== TOK_GE
)
4860 /* handle integer constant optimizations and various machine
4862 void gen_opic(int op
)
4869 /* currently, we cannot do computations with forward symbols */
4870 c1
= (v1
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) == VT_CONST
;
4871 c2
= (v2
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) == VT_CONST
;
4875 case '+': v1
->c
.i
+= fc
; break;
4876 case '-': v1
->c
.i
-= fc
; break;
4877 case '&': v1
->c
.i
&= fc
; break;
4878 case '^': v1
->c
.i
^= fc
; break;
4879 case '|': v1
->c
.i
|= fc
; break;
4880 case '*': v1
->c
.i
*= fc
; break;
4887 /* if division by zero, generate explicit division */
4890 error("division by zero in constant");
4894 default: v1
->c
.i
/= fc
; break;
4895 case '%': v1
->c
.i
%= fc
; break;
4896 case TOK_UDIV
: v1
->c
.i
= (unsigned)v1
->c
.i
/ fc
; break;
4897 case TOK_UMOD
: v1
->c
.i
= (unsigned)v1
->c
.i
% fc
; break;
4900 case TOK_SHL
: v1
->c
.i
<<= fc
; break;
4901 case TOK_SHR
: v1
->c
.i
= (unsigned)v1
->c
.i
>> fc
; break;
4902 case TOK_SAR
: v1
->c
.i
>>= fc
; break;
4904 case TOK_ULT
: v1
->c
.i
= (unsigned)v1
->c
.i
< (unsigned)fc
; break;
4905 case TOK_UGE
: v1
->c
.i
= (unsigned)v1
->c
.i
>= (unsigned)fc
; break;
4906 case TOK_EQ
: v1
->c
.i
= v1
->c
.i
== fc
; break;
4907 case TOK_NE
: v1
->c
.i
= v1
->c
.i
!= fc
; break;
4908 case TOK_ULE
: v1
->c
.i
= (unsigned)v1
->c
.i
<= (unsigned)fc
; break;
4909 case TOK_UGT
: v1
->c
.i
= (unsigned)v1
->c
.i
> (unsigned)fc
; break;
4910 case TOK_LT
: v1
->c
.i
= v1
->c
.i
< fc
; break;
4911 case TOK_GE
: v1
->c
.i
= v1
->c
.i
>= fc
; break;
4912 case TOK_LE
: v1
->c
.i
= v1
->c
.i
<= fc
; break;
4913 case TOK_GT
: v1
->c
.i
= v1
->c
.i
> fc
; break;
4915 case TOK_LAND
: v1
->c
.i
= v1
->c
.i
&& fc
; break;
4916 case TOK_LOR
: v1
->c
.i
= v1
->c
.i
|| fc
; break;
4922 /* if commutative ops, put c2 as constant */
4923 if (c1
&& (op
== '+' || op
== '&' || op
== '^' ||
4924 op
== '|' || op
== '*')) {
4929 if (c2
&& (((op
== '*' || op
== '/' || op
== TOK_UDIV
||
4932 ((op
== '+' || op
== '-' || op
== '|' || op
== '^' ||
4933 op
== TOK_SHL
|| op
== TOK_SHR
|| op
== TOK_SAR
) &&
4939 } else if (c2
&& (op
== '*' || op
== TOK_PDIV
|| op
== TOK_UDIV
)) {
4940 /* try to use shifts instead of muls or divs */
4941 if (fc
> 0 && (fc
& (fc
- 1)) == 0) {
4950 else if (op
== TOK_PDIV
)
4956 } else if (c2
&& (op
== '+' || op
== '-') &&
4957 (vtop
[-1].r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) ==
4958 (VT_CONST
| VT_SYM
)) {
4959 /* symbol + constant case */
4966 if (!nocode_wanted
) {
4967 /* call low level op generator */
4976 /* generate a floating point operation with constant propagation */
4977 void gen_opif(int op
)
4985 /* currently, we cannot do computations with forward symbols */
4986 c1
= (v1
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) == VT_CONST
;
4987 c2
= (v2
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) == VT_CONST
;
4989 if (v1
->type
.t
== VT_FLOAT
) {
4992 } else if (v1
->type
.t
== VT_DOUBLE
) {
5000 /* NOTE: we only do constant propagation if finite number (not
5001 NaN or infinity) (ANSI spec) */
5002 if (!ieee_finite(f1
) || !ieee_finite(f2
))
5006 case '+': f1
+= f2
; break;
5007 case '-': f1
-= f2
; break;
5008 case '*': f1
*= f2
; break;
5012 error("division by zero in constant");
5017 /* XXX: also handles tests ? */
5021 /* XXX: overflow test ? */
5022 if (v1
->type
.t
== VT_FLOAT
) {
5024 } else if (v1
->type
.t
== VT_DOUBLE
) {
5032 if (!nocode_wanted
) {
5040 static int pointed_size(CType
*type
)
5043 return type_size(pointed_type(type
), &align
);
5047 void check_pointer_types(SValue
*p1
, SValue
*p2
)
5049 char buf1
[256], buf2
[256];
5053 if (!is_compatible_types(t1
, t2
)) {
5054 type_to_str(buf1
, sizeof(buf1
), t1
, NULL
);
5055 type_to_str(buf2
, sizeof(buf2
), t2
, NULL
);
5056 error("incompatible pointers '%s' and '%s'", buf1
, buf2
);
5061 /* generic gen_op: handles types problems */
5064 int u
, t1
, t2
, bt1
, bt2
, t
;
5067 t1
= vtop
[-1].type
.t
;
5068 t2
= vtop
[0].type
.t
;
5069 bt1
= t1
& VT_BTYPE
;
5070 bt2
= t2
& VT_BTYPE
;
5072 if (bt1
== VT_PTR
|| bt2
== VT_PTR
) {
5073 /* at least one operand is a pointer */
5074 /* relationnal op: must be both pointers */
5075 if (op
>= TOK_ULT
&& op
<= TOK_GT
) {
5076 // check_pointer_types(vtop, vtop - 1);
5077 /* pointers are handled are unsigned */
5078 t
= VT_INT
| VT_UNSIGNED
;
5081 /* if both pointers, then it must be the '-' op */
5082 if (bt1
== VT_PTR
&& bt2
== VT_PTR
) {
5084 error("cannot use pointers here");
5085 // check_pointer_types(vtop - 1, vtop);
5086 /* XXX: check that types are compatible */
5087 u
= pointed_size(&vtop
[-1].type
);
5089 /* set to integer type */
5090 vtop
->type
.t
= VT_INT
;
5094 /* exactly one pointer : must be '+' or '-'. */
5095 if (op
!= '-' && op
!= '+')
5096 error("cannot use pointers here");
5097 /* Put pointer as first operand */
5098 if (bt2
== VT_PTR
) {
5102 type1
= vtop
[-1].type
;
5103 /* XXX: cast to int ? (long long case) */
5104 vpushi(pointed_size(&vtop
[-1].type
));
5106 #ifdef CONFIG_TCC_BCHECK
5107 /* if evaluating constant expression, no code should be
5108 generated, so no bound check */
5109 if (do_bounds_check
&& !const_wanted
) {
5110 /* if bounded pointers, we generate a special code to
5117 gen_bounded_ptr_add();
5123 /* put again type if gen_opic() swaped operands */
5126 } else if (is_float(bt1
) || is_float(bt2
)) {
5127 /* compute bigger type and do implicit casts */
5128 if (bt1
== VT_LDOUBLE
|| bt2
== VT_LDOUBLE
) {
5130 } else if (bt1
== VT_DOUBLE
|| bt2
== VT_DOUBLE
) {
5135 /* floats can only be used for a few operations */
5136 if (op
!= '+' && op
!= '-' && op
!= '*' && op
!= '/' &&
5137 (op
< TOK_ULT
|| op
> TOK_GT
))
5138 error("invalid operands for binary operation");
5140 } else if (bt1
== VT_LLONG
|| bt2
== VT_LLONG
) {
5141 /* cast to biggest op */
5143 /* convert to unsigned if it does not fit in a long long */
5144 if ((t1
& (VT_BTYPE
| VT_UNSIGNED
)) == (VT_LLONG
| VT_UNSIGNED
) ||
5145 (t2
& (VT_BTYPE
| VT_UNSIGNED
)) == (VT_LLONG
| VT_UNSIGNED
))
5149 /* integer operations */
5151 /* convert to unsigned if it does not fit in an integer */
5152 if ((t1
& (VT_BTYPE
| VT_UNSIGNED
)) == (VT_INT
| VT_UNSIGNED
) ||
5153 (t2
& (VT_BTYPE
| VT_UNSIGNED
)) == (VT_INT
| VT_UNSIGNED
))
5156 /* XXX: currently, some unsigned operations are explicit, so
5157 we modify them here */
5158 if (t
& VT_UNSIGNED
) {
5165 else if (op
== TOK_LT
)
5167 else if (op
== TOK_GT
)
5169 else if (op
== TOK_LE
)
5171 else if (op
== TOK_GE
)
5178 /* special case for shifts and long long: we keep the shift as
5180 if (op
== TOK_SHR
|| op
== TOK_SAR
|| op
== TOK_SHL
)
5185 else if ((t
& VT_BTYPE
) == VT_LLONG
)
5189 if (op
>= TOK_ULT
&& op
<= TOK_GT
) {
5190 /* relationnal op: the result is an int */
5191 vtop
->type
.t
= VT_INT
;
5198 /* generic itof for unsigned long long case */
5199 void gen_cvt_itof1(int t
)
5203 if ((vtop
->type
.t
& (VT_BTYPE
| VT_UNSIGNED
)) ==
5204 (VT_LLONG
| VT_UNSIGNED
)) {
5206 gfunc_start(&gf
, FUNC_CDECL
);
5209 vpush_global_sym(&func_old_type
, TOK___ulltof
);
5210 else if (t
== VT_DOUBLE
)
5211 vpush_global_sym(&func_old_type
, TOK___ulltod
);
5213 vpush_global_sym(&func_old_type
, TOK___ulltold
);
5222 /* generic ftoi for unsigned long long case */
5223 void gen_cvt_ftoi1(int t
)
5228 if (t
== (VT_LLONG
| VT_UNSIGNED
)) {
5229 /* not handled natively */
5230 gfunc_start(&gf
, FUNC_CDECL
);
5231 st
= vtop
->type
.t
& VT_BTYPE
;
5234 vpush_global_sym(&func_old_type
, TOK___fixunssfdi
);
5235 else if (st
== VT_DOUBLE
)
5236 vpush_global_sym(&func_old_type
, TOK___fixunsdfdi
);
5238 vpush_global_sym(&func_old_type
, TOK___fixunsxfdi
);
5242 vtop
->r2
= REG_LRET
;
5248 /* force char or short cast */
5249 void force_charshort_cast(int t
)
5253 /* XXX: add optimization if lvalue : just change type and offset */
5258 if (t
& VT_UNSIGNED
) {
5259 vpushi((1 << bits
) - 1);
5270 /* cast 'vtop' to 'type' */
5271 static void gen_cast(CType
*type
)
5273 int sbt
, dbt
, sf
, df
, c
;
5275 /* special delayed cast for char/short */
5276 /* XXX: in some cases (multiple cascaded casts), it may still
5278 if (vtop
->r
& VT_MUSTCAST
) {
5279 vtop
->r
&= ~VT_MUSTCAST
;
5280 force_charshort_cast(vtop
->type
.t
);
5283 dbt
= type
->t
& (VT_BTYPE
| VT_UNSIGNED
);
5284 sbt
= vtop
->type
.t
& (VT_BTYPE
| VT_UNSIGNED
);
5286 if (sbt
!= dbt
&& !nocode_wanted
) {
5289 c
= (vtop
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) == VT_CONST
;
5291 /* convert from fp to fp */
5293 /* constant case: we can do it now */
5294 /* XXX: in ISOC, cannot do it if error in convert */
5295 if (dbt
== VT_FLOAT
&& sbt
== VT_DOUBLE
)
5296 vtop
->c
.f
= (float)vtop
->c
.d
;
5297 else if (dbt
== VT_FLOAT
&& sbt
== VT_LDOUBLE
)
5298 vtop
->c
.f
= (float)vtop
->c
.ld
;
5299 else if (dbt
== VT_DOUBLE
&& sbt
== VT_FLOAT
)
5300 vtop
->c
.d
= (double)vtop
->c
.f
;
5301 else if (dbt
== VT_DOUBLE
&& sbt
== VT_LDOUBLE
)
5302 vtop
->c
.d
= (double)vtop
->c
.ld
;
5303 else if (dbt
== VT_LDOUBLE
&& sbt
== VT_FLOAT
)
5304 vtop
->c
.ld
= (long double)vtop
->c
.f
;
5305 else if (dbt
== VT_LDOUBLE
&& sbt
== VT_DOUBLE
)
5306 vtop
->c
.ld
= (long double)vtop
->c
.d
;
5308 /* non constant case: generate code */
5312 /* convert int to fp */
5315 case VT_LLONG
| VT_UNSIGNED
:
5317 /* XXX: add const cases for long long */
5319 case VT_INT
| VT_UNSIGNED
:
5321 case VT_FLOAT
: vtop
->c
.f
= (float)vtop
->c
.ui
; break;
5322 case VT_DOUBLE
: vtop
->c
.d
= (double)vtop
->c
.ui
; break;
5323 case VT_LDOUBLE
: vtop
->c
.ld
= (long double)vtop
->c
.ui
; break;
5328 case VT_FLOAT
: vtop
->c
.f
= (float)vtop
->c
.i
; break;
5329 case VT_DOUBLE
: vtop
->c
.d
= (double)vtop
->c
.i
; break;
5330 case VT_LDOUBLE
: vtop
->c
.ld
= (long double)vtop
->c
.i
; break;
5339 /* convert fp to int */
5340 /* we handle char/short/etc... with generic code */
5341 if (dbt
!= (VT_INT
| VT_UNSIGNED
) &&
5342 dbt
!= (VT_LLONG
| VT_UNSIGNED
) &&
5347 case VT_LLONG
| VT_UNSIGNED
:
5349 /* XXX: add const cases for long long */
5351 case VT_INT
| VT_UNSIGNED
:
5353 case VT_FLOAT
: vtop
->c
.ui
= (unsigned int)vtop
->c
.d
; break;
5354 case VT_DOUBLE
: vtop
->c
.ui
= (unsigned int)vtop
->c
.d
; break;
5355 case VT_LDOUBLE
: vtop
->c
.ui
= (unsigned int)vtop
->c
.d
; break;
5361 case VT_FLOAT
: vtop
->c
.i
= (int)vtop
->c
.d
; break;
5362 case VT_DOUBLE
: vtop
->c
.i
= (int)vtop
->c
.d
; break;
5363 case VT_LDOUBLE
: vtop
->c
.i
= (int)vtop
->c
.d
; break;
5371 if (dbt
== VT_INT
&& (type
->t
& (VT_BTYPE
| VT_UNSIGNED
)) != dbt
) {
5372 /* additional cast for char/short/bool... */
5376 } else if ((dbt
& VT_BTYPE
) == VT_LLONG
) {
5377 if ((sbt
& VT_BTYPE
) != VT_LLONG
) {
5378 /* scalar to long long */
5380 if (sbt
== (VT_INT
| VT_UNSIGNED
))
5381 vtop
->c
.ll
= vtop
->c
.ui
;
5383 vtop
->c
.ll
= vtop
->c
.i
;
5385 /* machine independent conversion */
5387 /* generate high word */
5388 if (sbt
== (VT_INT
| VT_UNSIGNED
)) {
5396 /* patch second register */
5397 vtop
[-1].r2
= vtop
->r
;
5401 } else if (dbt
== VT_BOOL
) {
5402 /* scalar to bool */
5405 } else if ((dbt
& VT_BTYPE
) == VT_BYTE
||
5406 (dbt
& VT_BTYPE
) == VT_SHORT
) {
5407 force_charshort_cast(dbt
);
5408 } else if ((dbt
& VT_BTYPE
) == VT_INT
) {
5410 if (sbt
== VT_LLONG
) {
5411 /* from long long: just take low order word */
5415 /* if lvalue and single word type, nothing to do because
5416 the lvalue already contains the real type size (see
5417 VT_LVAL_xxx constants) */
5423 /* return type size. Put alignment at 'a' */
5424 static int type_size(CType
*type
, int *a
)
5429 bt
= type
->t
& VT_BTYPE
;
5430 if (bt
== VT_STRUCT
) {
5435 } else if (bt
== VT_PTR
) {
5436 if (type
->t
& VT_ARRAY
) {
5438 return type_size(&s
->type
, a
) * s
->c
;
5443 } else if (bt
== VT_LDOUBLE
) {
5445 return LDOUBLE_SIZE
;
5446 } else if (bt
== VT_DOUBLE
|| bt
== VT_LLONG
) {
5447 *a
= 4; /* XXX: i386 specific */
5449 } else if (bt
== VT_INT
|| bt
== VT_ENUM
|| bt
== VT_FLOAT
) {
5452 } else if (bt
== VT_SHORT
) {
5456 /* char, void, function, _Bool */
5462 /* return the pointed type of t */
5463 static inline CType
*pointed_type(CType
*type
)
5465 return &type
->ref
->type
;
5468 /* modify type so that its it is a pointer to type. */
5469 static void mk_pointer(CType
*type
)
5472 s
= sym_push(SYM_FIELD
, type
, 0, -1);
5473 type
->t
= VT_PTR
| (type
->t
& ~VT_TYPE
);
5477 static int is_compatible_types(CType
*type1
, CType
*type2
)
5480 int bt1
, bt2
, t1
, t2
;
5482 t1
= type1
->t
& VT_TYPE
;
5483 t2
= type2
->t
& VT_TYPE
;
5484 bt1
= t1
& VT_BTYPE
;
5485 bt2
= t2
& VT_BTYPE
;
5486 if (bt1
== VT_PTR
) {
5487 type1
= pointed_type(type1
);
5488 /* if function, then convert implicitely to function pointer */
5489 if (bt2
!= VT_FUNC
) {
5492 type2
= pointed_type(type2
);
5494 /* void matches everything */
5495 /* XXX: not fully compliant */
5496 if ((type1
->t
& VT_TYPE
) == VT_VOID
|| (type2
->t
& VT_TYPE
) == VT_VOID
)
5498 return is_compatible_types(type1
, type2
);
5499 } else if (bt1
== VT_STRUCT
|| bt2
== VT_STRUCT
) {
5500 return (type1
->ref
== type2
->ref
);
5501 } else if (bt1
== VT_FUNC
) {
5506 if (!is_compatible_types(&s1
->type
, &s2
->type
))
5508 /* XXX: not complete */
5509 if (s1
->c
== FUNC_OLD
|| s2
->c
== FUNC_OLD
)
5513 while (s1
!= NULL
) {
5516 if (!is_compatible_types(&s1
->type
, &s2
->type
))
5525 /* XXX: not complete */
5530 /* print a type. If 'varstr' is not NULL, then the variable is also
5531 printed in the type */
5533 /* XXX: add array and function pointers */
5534 void type_to_str(char *buf
, int buf_size
,
5535 CType
*type
, const char *varstr
)
5542 t
= type
->t
& VT_TYPE
;
5545 if (t
& VT_UNSIGNED
)
5546 pstrcat(buf
, buf_size
, "unsigned ");
5576 tstr
= "long double";
5578 pstrcat(buf
, buf_size
, tstr
);
5582 if (bt
== VT_STRUCT
)
5586 pstrcat(buf
, buf_size
, tstr
);
5587 v
= type
->ref
->v
& ~SYM_STRUCT
;
5588 if (v
>= SYM_FIRST_ANOM
)
5589 pstrcat(buf
, buf_size
, "<anonymous>");
5591 pstrcat(buf
, buf_size
, get_tok_str(v
, NULL
));
5595 type_to_str(buf
, buf_size
, &s
->type
, varstr
);
5596 pstrcat(buf
, buf_size
, "(");
5598 while (sa
!= NULL
) {
5599 type_to_str(buf1
, sizeof(buf1
), &sa
->type
, NULL
);
5600 pstrcat(buf
, buf_size
, buf1
);
5603 pstrcat(buf
, buf_size
, ", ");
5605 pstrcat(buf
, buf_size
, ")");
5609 pstrcpy(buf1
, sizeof(buf1
), "*");
5611 pstrcat(buf1
, sizeof(buf1
), varstr
);
5612 type_to_str(buf
, buf_size
, &s
->type
, buf1
);
5616 pstrcat(buf
, buf_size
, " ");
5617 pstrcat(buf
, buf_size
, varstr
);
5622 /* verify type compatibility to store vtop in 'dt' type, and generate
5624 static void gen_assign_cast(CType
*dt
)
5627 char buf1
[256], buf2
[256];
5630 st
= &vtop
->type
; /* source type */
5631 dbt
= dt
->t
& VT_BTYPE
;
5632 sbt
= st
->t
& VT_BTYPE
;
5633 if (dbt
== VT_PTR
) {
5634 /* special cases for pointers */
5635 /* a function is implicitely a function pointer */
5636 if (sbt
== VT_FUNC
) {
5637 if (!is_compatible_types(pointed_type(dt
), st
))
5642 /* '0' can also be a pointer */
5643 if (sbt
== VT_INT
&&
5644 ((vtop
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) == VT_CONST
) &&
5647 /* accept implicit pointer to integer cast with warning */
5648 if (sbt
== VT_BYTE
|| sbt
== VT_SHORT
||
5649 sbt
== VT_INT
|| sbt
== VT_LLONG
) {
5650 warning("assignment makes pointer from integer without a cast");
5653 } else if (dbt
== VT_BYTE
|| dbt
== VT_SHORT
||
5654 dbt
== VT_INT
|| dbt
== VT_LLONG
) {
5655 if (sbt
== VT_PTR
|| sbt
== VT_FUNC
) {
5656 warning("assignment makes integer from pointer without a cast");
5660 if (!is_compatible_types(dt
, st
)) {
5662 type_to_str(buf1
, sizeof(buf1
), st
, NULL
);
5663 type_to_str(buf2
, sizeof(buf2
), dt
, NULL
);
5664 error("cannot cast '%s' to '%s'", buf1
, buf2
);
5670 /* store vtop in lvalue pushed on stack */
5673 int sbt
, dbt
, ft
, r
, t
, size
, align
, bit_size
, bit_pos
, rc
, delayed_cast
;
5676 ft
= vtop
[-1].type
.t
;
5677 sbt
= vtop
->type
.t
& VT_BTYPE
;
5678 dbt
= ft
& VT_BTYPE
;
5679 if (((sbt
== VT_INT
|| sbt
== VT_SHORT
) && dbt
== VT_BYTE
) ||
5680 (sbt
== VT_INT
&& dbt
== VT_SHORT
)) {
5681 /* optimize char/short casts */
5682 delayed_cast
= VT_MUSTCAST
;
5683 vtop
->type
.t
= ft
& VT_TYPE
;
5686 gen_assign_cast(&vtop
[-1].type
);
5689 if (sbt
== VT_STRUCT
) {
5690 /* if structure, only generate pointer */
5691 /* structure assignment : generate memcpy */
5692 /* XXX: optimize if small size */
5693 if (!nocode_wanted
) {
5695 gfunc_start(&gf
, FUNC_CDECL
);
5697 size
= type_size(&vtop
->type
, &align
);
5701 vtop
->type
.t
= VT_INT
;
5706 vtop
->type
.t
= VT_INT
;
5711 vpush_global_sym(&func_old_type
, TOK_memcpy
);
5717 /* leave source on stack */
5718 } else if (ft
& VT_BITFIELD
) {
5719 /* bitfield store handling */
5720 bit_pos
= (ft
>> VT_STRUCT_SHIFT
) & 0x3f;
5721 bit_size
= (ft
>> (VT_STRUCT_SHIFT
+ 6)) & 0x3f;
5722 /* remove bit field info to avoid loops */
5723 vtop
[-1].type
.t
= ft
& ~(VT_BITFIELD
| (-1 << VT_STRUCT_SHIFT
));
5725 /* duplicate destination */
5727 vtop
[-1] = vtop
[-2];
5729 /* mask and shift source */
5730 vpushi((1 << bit_size
) - 1);
5734 /* load destination, mask and or with source */
5736 vpushi(~(((1 << bit_size
) - 1) << bit_pos
));
5742 #ifdef CONFIG_TCC_BCHECK
5743 /* bound check case */
5744 if (vtop
[-1].r
& VT_MUSTBOUND
) {
5750 if (!nocode_wanted
) {
5754 r
= gv(rc
); /* generate value */
5755 /* if lvalue was saved on stack, must read it */
5756 if ((vtop
[-1].r
& VT_VALMASK
) == VT_LLOCAL
) {
5758 t
= get_reg(RC_INT
);
5760 sv
.r
= VT_LOCAL
| VT_LVAL
;
5761 sv
.c
.ul
= vtop
[-1].c
.ul
;
5763 vtop
[-1].r
= t
| VT_LVAL
;
5766 /* two word case handling : store second register at word + 4 */
5767 if ((ft
& VT_BTYPE
) == VT_LLONG
) {
5769 /* convert to int to increment easily */
5770 vtop
->type
.t
= VT_INT
;
5776 /* XXX: it works because r2 is spilled last ! */
5777 store(vtop
->r2
, vtop
- 1);
5781 vtop
--; /* NOT vpop() because on x86 it would flush the fp stack */
5782 vtop
->r
|= delayed_cast
;
5786 /* post defines POST/PRE add. c is the token ++ or -- */
5787 void inc(int post
, int c
)
5790 vdup(); /* save lvalue */
5792 gv_dup(); /* duplicate value */
5797 vpushi(c
- TOK_MID
);
5799 vstore(); /* store value */
5801 vpop(); /* if post op, return saved value */
5804 /* Parse GNUC __attribute__ extension. Currently, the following
5805 extensions are recognized:
5806 - aligned(n) : set data/function alignment.
5807 - section(x) : generate data/code in this section.
5808 - unused : currently ignored, but may be used someday.
5810 static void parse_attribute(AttributeDef
*ad
)
5814 while (tok
== TOK_ATTRIBUTE1
|| tok
== TOK_ATTRIBUTE2
) {
5818 while (tok
!= ')') {
5819 if (tok
< TOK_IDENT
)
5820 expect("attribute name");
5828 expect("section name");
5829 ad
->section
= find_section(tcc_state
, (char *)tokc
.cstr
->data
);
5838 if (n
<= 0 || (n
& (n
- 1)) != 0)
5839 error("alignment must be a positive power of two");
5848 /* currently, no need to handle it because tcc does not
5849 track unused objects */
5853 /* currently, no need to handle it because tcc does not
5854 track unused objects */
5859 ad
->func_call
= FUNC_CDECL
;
5864 ad
->func_call
= FUNC_STDCALL
;
5867 // warning("'%s' attribute ignored", get_tok_str(t, NULL));
5868 /* skip parameters */
5869 /* XXX: skip parenthesis too */
5872 while (tok
!= ')' && tok
!= -1)
5887 /* enum/struct/union declaration. u is either VT_ENUM or VT_STRUCT */
5888 static void struct_decl(CType
*type
, int u
)
5890 int a
, v
, size
, align
, maxalign
, c
, offset
;
5891 int bit_size
, bit_pos
, bsize
, bt
, lbit_pos
;
5896 a
= tok
; /* save decl type */
5901 /* struct already defined ? return it */
5903 expect("struct/union/enum name");
5907 error("invalid type");
5914 s
= sym_push(v
| SYM_STRUCT
, &type1
, 0, 0);
5915 /* put struct/union/enum name in type */
5923 error("struct/union/enum already defined");
5924 /* cannot be empty */
5926 /* non empty enums are not allowed */
5927 if (a
== TOK_ENUM
) {
5931 expect("identifier");
5937 /* enum symbols have static storage */
5938 ss
= sym_push(v
, &int_type
, VT_CONST
, c
);
5939 ss
->type
.t
|= VT_STATIC
;
5944 /* NOTE: we accept a trailing comma */
5954 while (tok
!= '}') {
5955 parse_btype(&btype
, &ad
);
5961 type_decl(&type1
, &ad
, &v
, TYPE_DIRECT
);
5962 if ((type1
.t
& VT_BTYPE
) == VT_FUNC
||
5963 (type1
.t
& (VT_TYPEDEF
| VT_STATIC
| VT_EXTERN
| VT_INLINE
)))
5964 error("invalid type for '%s'",
5965 get_tok_str(v
, NULL
));
5969 bit_size
= expr_const();
5970 /* XXX: handle v = 0 case for messages */
5972 error("negative width in bit-field '%s'",
5973 get_tok_str(v
, NULL
));
5974 if (v
&& bit_size
== 0)
5975 error("zero width for bit-field '%s'",
5976 get_tok_str(v
, NULL
));
5978 size
= type_size(&type1
, &align
);
5980 if (bit_size
>= 0) {
5981 bt
= type1
.t
& VT_BTYPE
;
5986 error("bitfields must have scalar type");
5988 if (bit_size
> bsize
) {
5989 error("width of '%s' exceeds its type",
5990 get_tok_str(v
, NULL
));
5991 } else if (bit_size
== bsize
) {
5992 /* no need for bit fields */
5994 } else if (bit_size
== 0) {
5995 /* XXX: what to do if only padding in a
5997 /* zero size: means to pad */
6001 /* we do not have enough room ? */
6002 if ((bit_pos
+ bit_size
) > bsize
)
6005 /* XXX: handle LSB first */
6006 type1
.t
|= VT_BITFIELD
|
6007 (bit_pos
<< VT_STRUCT_SHIFT
) |
6008 (bit_size
<< (VT_STRUCT_SHIFT
+ 6));
6009 bit_pos
+= bit_size
;
6015 /* add new memory data only if starting
6017 if (lbit_pos
== 0) {
6018 if (a
== TOK_STRUCT
) {
6019 c
= (c
+ align
- 1) & -align
;
6027 if (align
> maxalign
)
6031 printf("add field %s offset=%d",
6032 get_tok_str(v
, NULL
), offset
);
6033 if (type1
.t
& VT_BITFIELD
) {
6034 printf(" pos=%d size=%d",
6035 (type1
.t
>> VT_STRUCT_SHIFT
) & 0x3f,
6036 (type1
.t
>> (VT_STRUCT_SHIFT
+ 6)) & 0x3f);
6040 ss
= sym_push(v
| SYM_FIELD
, &type1
, 0, offset
);
6044 if (tok
== ';' || tok
== TOK_EOF
)
6051 /* store size and alignment */
6052 s
->c
= (c
+ maxalign
- 1) & -maxalign
;
6058 /* return 0 if no type declaration. otherwise, return the basic type
6061 static int parse_btype(CType
*type
, AttributeDef
*ad
)
6063 int t
, u
, type_found
;
6067 memset(ad
, 0, sizeof(AttributeDef
));
6073 /* currently, we really ignore extension */
6083 if ((t
& VT_BTYPE
) != 0)
6084 error("too many basic types");
6098 if ((t
& VT_BTYPE
) == VT_DOUBLE
) {
6099 t
= (t
& ~VT_BTYPE
) | VT_LDOUBLE
;
6100 } else if ((t
& VT_BTYPE
) == VT_LONG
) {
6101 t
= (t
& ~VT_BTYPE
) | VT_LLONG
;
6115 if ((t
& VT_BTYPE
) == VT_LONG
) {
6116 t
= (t
& ~VT_BTYPE
) | VT_LDOUBLE
;
6123 struct_decl(&type1
, VT_ENUM
);
6126 type
->ref
= type1
.ref
;
6130 struct_decl(&type1
, VT_STRUCT
);
6133 /* type modifiers */
6175 /* GNUC attribute */
6176 case TOK_ATTRIBUTE1
:
6177 case TOK_ATTRIBUTE2
:
6178 parse_attribute(ad
);
6185 parse_expr_type(&type1
);
6189 if (!s
|| !(s
->type
.t
& VT_TYPEDEF
))
6191 t
|= (s
->type
.t
& ~VT_TYPEDEF
);
6192 type
->ref
= s
->type
.ref
;
6199 /* long is never used as type */
6200 if ((t
& VT_BTYPE
) == VT_LONG
)
6201 t
= (t
& ~VT_BTYPE
) | VT_INT
;
6206 /* convert a function parameter type (array to pointer and function to
6207 function pointer) */
6208 static inline void convert_parameter_type(CType
*pt
)
6210 /* array must be transformed to pointer according to ANSI C */
6212 if ((pt
->t
& VT_BTYPE
) == VT_FUNC
) {
6217 static void post_type(CType
*type
, AttributeDef
*ad
)
6220 Sym
**plast
, *s
, *first
;
6225 /* function declaration */
6230 while (tok
!= ')') {
6231 /* read param name and compute offset */
6232 if (l
!= FUNC_OLD
) {
6233 if (!parse_btype(&pt
, &ad1
)) {
6235 error("invalid type");
6242 if ((pt
.t
& VT_BTYPE
) == VT_VOID
&& tok
== ')')
6244 type_decl(&pt
, &ad1
, &n
, TYPE_DIRECT
| TYPE_ABSTRACT
);
6245 if ((pt
.t
& VT_BTYPE
) == VT_VOID
)
6246 error("parameter declared as void");
6253 convert_parameter_type(&pt
);
6254 s
= sym_push(n
| SYM_FIELD
, &pt
, 0, 0);
6259 if (l
== FUNC_NEW
&& tok
== TOK_DOTS
) {
6266 /* if no parameters, then old type prototype */
6270 t1
= type
->t
& VT_STORAGE
;
6271 type
->t
&= ~VT_STORAGE
;
6272 post_type(type
, ad
);
6273 /* we push a anonymous symbol which will contain the function prototype */
6274 s
= sym_push(SYM_FIELD
, type
, ad
->func_call
, l
);
6276 type
->t
= t1
| VT_FUNC
;
6278 } else if (tok
== '[') {
6279 /* array definition */
6285 error("invalid array size");
6288 /* parse next post type */
6289 t1
= type
->t
& VT_STORAGE
;
6290 type
->t
&= ~VT_STORAGE
;
6291 post_type(type
, ad
);
6293 /* we push a anonymous symbol which will contain the array
6295 s
= sym_push(SYM_FIELD
, type
, 0, n
);
6296 type
->t
= t1
| VT_ARRAY
| VT_PTR
;
6301 /* Parse a type declaration (except basic type), and return the type
6302 in 'type'. 'td' is a bitmask indicating which kind of type decl is
6303 expected. 'type' should contain the basic type. 'ad' is the
6304 attribute definition of the basic type. It can be modified by
6307 static void type_decl(CType
*type
, AttributeDef
*ad
, int *v
, int td
)
6310 CType type1
, *type2
;
6312 while (tok
== '*') {
6331 /* XXX: clarify attribute handling */
6332 if (tok
== TOK_ATTRIBUTE1
|| tok
== TOK_ATTRIBUTE2
)
6333 parse_attribute(ad
);
6335 /* recursive type */
6336 /* XXX: incorrect if abstract type for functions (e.g. 'int ()') */
6337 type1
.t
= 0; /* XXX: same as int */
6340 /* XXX: this is not correct to modify 'ad' at this point, but
6341 the syntax is not clear */
6342 if (tok
== TOK_ATTRIBUTE1
|| tok
== TOK_ATTRIBUTE2
)
6343 parse_attribute(ad
);
6344 type_decl(&type1
, ad
, v
, td
);
6347 /* type identifier */
6348 if (tok
>= TOK_IDENT
&& (td
& TYPE_DIRECT
)) {
6352 if (!(td
& TYPE_ABSTRACT
))
6353 expect("identifier");
6357 post_type(type
, ad
);
6358 if (tok
== TOK_ATTRIBUTE1
|| tok
== TOK_ATTRIBUTE2
)
6359 parse_attribute(ad
);
6362 /* append type at the end of type1 */
6375 /* compute the lvalue VT_LVAL_xxx needed to match type t. */
6376 static int lvalue_type(int t
)
6381 if (bt
== VT_BYTE
|| bt
== VT_BOOL
)
6383 else if (bt
== VT_SHORT
)
6387 if (t
& VT_UNSIGNED
)
6388 r
|= VT_LVAL_UNSIGNED
;
6392 /* indirection with full error checking and bound check */
6393 static void indir(void)
6395 if ((vtop
->type
.t
& VT_BTYPE
) != VT_PTR
)
6397 if ((vtop
->r
& VT_LVAL
) && !nocode_wanted
)
6399 vtop
->type
= *pointed_type(&vtop
->type
);
6400 /* an array is never an lvalue */
6401 if (!(vtop
->type
.t
& VT_ARRAY
)) {
6402 vtop
->r
|= lvalue_type(vtop
->type
.t
);
6403 /* if bound checking, the referenced pointer must be checked */
6404 if (do_bounds_check
)
6405 vtop
->r
|= VT_MUSTBOUND
;
6409 /* pass a parameter to a function and do type checking and casting */
6410 void gfunc_param_typed(GFuncContext
*gf
, Sym
*func
, Sym
*arg
)
6415 func_type
= func
->c
;
6416 if (func_type
== FUNC_OLD
||
6417 (func_type
== FUNC_ELLIPSIS
&& arg
== NULL
)) {
6418 /* default casting : only need to convert float to double */
6419 if ((vtop
->type
.t
& VT_BTYPE
) == VT_FLOAT
) {
6423 } else if (arg
== NULL
) {
6424 error("too many arguments to function");
6426 gen_assign_cast(&arg
->type
);
6428 if (!nocode_wanted
) {
6435 /* parse an expression of the form '(type)' or '(expr)' and return its
6437 static void parse_expr_type(CType
*type
)
6443 if (parse_btype(type
, &ad
)) {
6444 type_decl(type
, &ad
, &n
, TYPE_ABSTRACT
);
6451 static void vpush_tokc(int t
)
6455 vsetc(&type
, VT_CONST
, &tokc
);
6458 static void unary(void)
6460 int n
, t
, align
, size
, r
;
6466 /* XXX: GCC 2.95.3 does not generate a table although it should be
6480 vpush_tokc(VT_INT
| VT_UNSIGNED
);
6484 vpush_tokc(VT_LLONG
);
6488 vpush_tokc(VT_LLONG
| VT_UNSIGNED
);
6492 vpush_tokc(VT_FLOAT
);
6496 vpush_tokc(VT_DOUBLE
);
6500 vpush_tokc(VT_LDOUBLE
);
6503 case TOK___FUNCTION__
:
6505 goto tok_identifier
;
6511 /* special function name identifier */
6512 len
= strlen(funcname
) + 1;
6513 /* generate char[len] type */
6518 vpush_ref(&type
, data_section
, data_section
->data_offset
, len
);
6519 ptr
= section_ptr_add(data_section
, len
);
6520 memcpy(ptr
, funcname
, len
);
6528 /* string parsing */
6534 memset(&ad
, 0, sizeof(AttributeDef
));
6535 decl_initializer_alloc(&type
, &ad
, VT_CONST
, 2, 0, 0);
6540 if (parse_btype(&type
, &ad
)) {
6541 type_decl(&type
, &ad
, &n
, TYPE_ABSTRACT
);
6543 /* check ISOC99 compound literal */
6545 /* data is allocated locally by default */
6550 /* all except arrays are lvalues */
6551 if (!(type
.t
& VT_ARRAY
))
6552 r
|= lvalue_type(type
.t
);
6553 memset(&ad
, 0, sizeof(AttributeDef
));
6554 decl_initializer_alloc(&type
, &ad
, r
, 1, 0, 0);
6559 } else if (tok
== '{') {
6560 /* save all registers */
6562 /* statement expression : we do not accept break/continue
6563 inside as GCC does */
6564 block(NULL
, NULL
, NULL
, NULL
, 0, 1);
6579 /* functions names must be treated as function pointers,
6580 except for unary '&' and sizeof. Since we consider that
6581 functions are not lvalues, we only have to handle it
6582 there and in function calls. */
6583 /* arrays can also be used although they are not lvalues */
6584 if ((vtop
->type
.t
& VT_BTYPE
) != VT_FUNC
&&
6585 !(vtop
->type
.t
& VT_ARRAY
))
6587 mk_pointer(&vtop
->type
);
6593 if ((vtop
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) == VT_CONST
)
6594 vtop
->c
.i
= !vtop
->c
.i
;
6595 else if ((vtop
->r
& VT_VALMASK
) == VT_CMP
)
6596 vtop
->c
.i
= vtop
->c
.i
^ 1;
6598 vseti(VT_JMP
, gtst(1, 0));
6608 /* in order to force cast, we add zero */
6610 if ((vtop
->type
.t
& VT_BTYPE
) == VT_PTR
)
6611 error("pointer not accepted for unary plus");
6621 parse_expr_type(&type
);
6625 size
= type_size(&type
, &align
);
6626 if (t
== TOK_SIZEOF
)
6647 goto tok_identifier
;
6649 /* allow to take the address of a label */
6650 if (tok
< TOK_UIDENT
)
6651 expect("label identifier");
6652 s
= label_find(tok
);
6654 s
= label_push(&global_label_stack
, tok
, LABEL_FORWARD
);
6656 if (s
->r
== LABEL_DECLARED
)
6657 s
->r
= LABEL_FORWARD
;
6660 s
->type
.t
= VT_VOID
;
6661 mk_pointer(&s
->type
);
6662 s
->type
.t
|= VT_STATIC
;
6664 vset(&s
->type
, VT_CONST
| VT_SYM
, 0);
6673 expect("identifier");
6677 error("'%s' undeclared", get_tok_str(t
, NULL
));
6678 /* for simple function calls, we tolerate undeclared
6679 external reference to int() function */
6680 s
= external_global_sym(t
, &func_old_type
, 0);
6682 vset(&s
->type
, s
->r
, s
->c
);
6683 /* if forward reference, we must point to s */
6684 if (vtop
->r
& VT_SYM
) {
6691 /* post operations */
6693 if (tok
== TOK_INC
|| tok
== TOK_DEC
) {
6696 } else if (tok
== '.' || tok
== TOK_ARROW
) {
6698 if (tok
== TOK_ARROW
)
6703 /* expect pointer on structure */
6704 if ((vtop
->type
.t
& VT_BTYPE
) != VT_STRUCT
)
6705 expect("struct or union");
6709 while ((s
= s
->next
) != NULL
) {
6714 error("field not found");
6715 /* add field offset to pointer */
6716 vtop
->type
= char_pointer_type
; /* change type to 'char *' */
6719 /* change type to field type, and set to lvalue */
6720 vtop
->type
= s
->type
;
6721 /* an array is never an lvalue */
6722 if (!(vtop
->type
.t
& VT_ARRAY
)) {
6723 vtop
->r
|= lvalue_type(vtop
->type
.t
);
6724 /* if bound checking, the referenced pointer must be checked */
6725 if (do_bounds_check
)
6726 vtop
->r
|= VT_MUSTBOUND
;
6729 } else if (tok
== '[') {
6735 } else if (tok
== '(') {
6740 if ((vtop
->type
.t
& VT_BTYPE
) != VT_FUNC
) {
6741 /* pointer test (no array accepted) */
6742 if ((vtop
->type
.t
& (VT_BTYPE
| VT_ARRAY
)) == VT_PTR
) {
6743 vtop
->type
= *pointed_type(&vtop
->type
);
6744 if ((vtop
->type
.t
& VT_BTYPE
) != VT_FUNC
)
6748 expect("function pointer");
6751 vtop
->r
&= ~VT_LVAL
; /* no lvalue */
6753 /* get return type */
6755 if (!nocode_wanted
) {
6756 save_regs(0); /* save used temporary registers */
6757 gfunc_start(&gf
, s
->r
);
6760 sa
= s
->next
; /* first parameter */
6761 #ifdef INVERT_FUNC_PARAMS
6765 ParseState saved_parse_state
;
6768 /* read each argument and store it on a stack */
6774 while ((parlevel
> 0 || (tok
!= ')' && tok
!= ',')) &&
6778 else if (tok
== ')')
6780 tok_str_add_tok(&str
);
6783 tok_str_add(&str
, -1); /* end of file added */
6784 tok_str_add(&str
, 0);
6785 s1
= sym_push2(&args
, 0, 0, (int)str
.str
);
6786 s1
->next
= sa
; /* add reference to argument */
6795 /* now generate code in reverse order by reading the stack */
6796 save_parse_state(&saved_parse_state
);
6798 macro_ptr
= (int *)args
->c
;
6802 expect("',' or ')'");
6803 gfunc_param_typed(&gf
, s
, args
->next
);
6805 tok_str_free((int *)args
->c
);
6809 restore_parse_state(&saved_parse_state
);
6812 /* compute first implicit argument if a structure is returned */
6813 if ((s
->type
.t
& VT_BTYPE
) == VT_STRUCT
) {
6814 /* get some space for the returned structure */
6815 size
= type_size(&s
->type
, &align
);
6816 loc
= (loc
- size
) & -align
;
6818 ret
.r
= VT_LOCAL
| VT_LVAL
;
6819 /* pass it as 'int' to avoid structure arg passing
6821 vseti(VT_LOCAL
, loc
);
6830 /* return in register */
6831 if (is_float(ret
.type
.t
)) {
6834 if ((ret
.type
.t
& VT_BTYPE
) == VT_LLONG
)
6840 #ifndef INVERT_FUNC_PARAMS
6844 gfunc_param_typed(&gf
, s
, sa
);
6854 error("too few arguments to function");
6861 vsetc(&ret
.type
, ret
.r
, &ret
.c
);
6869 static void uneq(void)
6875 (tok
>= TOK_A_MOD
&& tok
<= TOK_A_DIV
) ||
6876 tok
== TOK_A_XOR
|| tok
== TOK_A_OR
||
6877 tok
== TOK_A_SHL
|| tok
== TOK_A_SAR
) {
6892 static void expr_prod(void)
6897 while (tok
== '*' || tok
== '/' || tok
== '%') {
6905 static void expr_sum(void)
6910 while (tok
== '+' || tok
== '-') {
6918 static void expr_shift(void)
6923 while (tok
== TOK_SHL
|| tok
== TOK_SAR
) {
6931 static void expr_cmp(void)
6936 while ((tok
>= TOK_ULE
&& tok
<= TOK_GT
) ||
6937 tok
== TOK_ULT
|| tok
== TOK_UGE
) {
6945 static void expr_cmpeq(void)
6950 while (tok
== TOK_EQ
|| tok
== TOK_NE
) {
6958 static void expr_and(void)
6961 while (tok
== '&') {
6968 static void expr_xor(void)
6971 while (tok
== '^') {
6978 static void expr_or(void)
6981 while (tok
== '|') {
6988 /* XXX: fix this mess */
6989 static void expr_land_const(void)
6992 while (tok
== TOK_LAND
) {
6999 /* XXX: fix this mess */
7000 static void expr_lor_const(void)
7003 while (tok
== TOK_LOR
) {
7010 /* only used if non constant */
7011 static void expr_land(void)
7016 if (tok
== TOK_LAND
) {
7020 if (tok
!= TOK_LAND
) {
7030 static void expr_lor(void)
7035 if (tok
== TOK_LOR
) {
7039 if (tok
!= TOK_LOR
) {
7049 /* XXX: better constant handling */
7050 static void expr_eq(void)
7052 int tt
, u
, r1
, r2
, rc
, t1
, t2
, bt1
, bt2
;
7054 CType type
, type1
, type2
;
7063 if (tok
== ':' && gnu_ext
) {
7079 if (vtop
!= vstack
) {
7080 /* needed to avoid having different registers saved in
7082 if (is_float(vtop
->type
.t
))
7089 if (tok
== ':' && gnu_ext
) {
7097 sv
= *vtop
; /* save value to handle it later */
7098 vtop
--; /* no vpop so that FP stack is not flushed */
7106 bt1
= t1
& VT_BTYPE
;
7108 bt2
= t2
& VT_BTYPE
;
7109 /* cast operands to correct type according to ISOC rules */
7110 if (is_float(bt1
) || is_float(bt2
)) {
7111 if (bt1
== VT_LDOUBLE
|| bt2
== VT_LDOUBLE
) {
7112 type
.t
= VT_LDOUBLE
;
7113 } else if (bt1
== VT_DOUBLE
|| bt2
== VT_DOUBLE
) {
7118 } else if (bt1
== VT_LLONG
|| bt2
== VT_LLONG
) {
7119 /* cast to biggest op */
7121 /* convert to unsigned if it does not fit in a long long */
7122 if ((t1
& (VT_BTYPE
| VT_UNSIGNED
)) == (VT_LLONG
| VT_UNSIGNED
) ||
7123 (t2
& (VT_BTYPE
| VT_UNSIGNED
)) == (VT_LLONG
| VT_UNSIGNED
))
7124 type
.t
|= VT_UNSIGNED
;
7125 } else if (bt1
== VT_PTR
|| bt2
== VT_PTR
) {
7126 /* XXX: test pointer compatibility */
7128 } else if (bt1
== VT_STRUCT
|| bt2
== VT_STRUCT
) {
7129 /* XXX: test structure compatibility */
7131 } else if (bt1
== VT_VOID
|| bt2
== VT_VOID
) {
7132 /* NOTE: as an extension, we accept void on only one side */
7135 /* integer operations */
7137 /* convert to unsigned if it does not fit in an integer */
7138 if ((t1
& (VT_BTYPE
| VT_UNSIGNED
)) == (VT_INT
| VT_UNSIGNED
) ||
7139 (t2
& (VT_BTYPE
| VT_UNSIGNED
)) == (VT_INT
| VT_UNSIGNED
))
7140 type
.t
|= VT_UNSIGNED
;
7143 /* now we convert second operand */
7146 if (is_float(type
.t
)) {
7148 } else if ((type
.t
& VT_BTYPE
) == VT_LLONG
) {
7149 /* for long longs, we use fixed registers to avoid having
7150 to handle a complicated move */
7155 /* this is horrible, but we must also convert first
7159 /* put again first value and cast it */
7170 static void gexpr(void)
7181 /* parse an expression and return its type without any side effect. */
7182 static void expr_type(CType
*type
)
7194 /* parse a unary expression and return its type without any side
7196 static void unary_type(CType
*type
)
7208 /* parse a constant expression and return value in vtop. */
7209 static void expr_const1(void)
7218 /* parse an integer constant and return its value. */
7219 static int expr_const(void)
7223 if ((vtop
->r
& (VT_VALMASK
| VT_LVAL
| VT_SYM
)) != VT_CONST
)
7224 expect("constant expression");
7230 /* return the label token if current token is a label, otherwise
7232 static int is_label(void)
7236 /* fast test first */
7237 if (tok
< TOK_UIDENT
)
7239 /* no need to save tokc because tok is an identifier */
7246 unget_tok(last_tok
);
7251 static void block(int *bsym
, int *csym
, int *case_sym
, int *def_sym
,
7252 int case_reg
, int is_expr
)
7257 /* generate line number info */
7259 (last_line_num
!= file
->line_num
|| last_ind
!= ind
)) {
7260 put_stabn(N_SLINE
, 0, file
->line_num
, ind
- func_ind
);
7262 last_line_num
= file
->line_num
;
7266 /* default return value is (void) */
7268 vtop
->type
.t
= VT_VOID
;
7271 if (tok
== TOK_IF
) {
7278 block(bsym
, csym
, case_sym
, def_sym
, case_reg
, 0);
7280 if (c
== TOK_ELSE
) {
7284 block(bsym
, csym
, case_sym
, def_sym
, case_reg
, 0);
7285 gsym(d
); /* patch else jmp */
7288 } else if (tok
== TOK_WHILE
) {
7296 block(&a
, &b
, case_sym
, def_sym
, case_reg
, 0);
7300 } else if (tok
== '{') {
7304 /* record local declaration stack position */
7306 llabel
= local_label_stack
;
7307 /* handle local labels declarations */
7308 if (tok
== TOK_LABEL
) {
7311 if (tok
< TOK_UIDENT
)
7312 expect("label identifier");
7313 label_push(&local_label_stack
, tok
, LABEL_DECLARED
);
7323 while (tok
!= '}') {
7328 block(bsym
, csym
, case_sym
, def_sym
, case_reg
, is_expr
);
7331 /* pop locally defined labels */
7332 label_pop(&local_label_stack
, llabel
);
7333 /* pop locally defined symbols */
7334 sym_pop(&local_stack
, s
);
7336 } else if (tok
== TOK_RETURN
) {
7340 gen_assign_cast(&func_vt
);
7341 if ((func_vt
.t
& VT_BTYPE
) == VT_STRUCT
) {
7343 /* if returning structure, must copy it to implicit
7344 first pointer arg location */
7347 vset(&type
, VT_LOCAL
| VT_LVAL
, func_vc
);
7350 /* copy structure value to pointer */
7352 } else if (is_float(func_vt
.t
)) {
7357 vtop
--; /* NOT vpop() because on x86 it would flush the fp stack */
7360 rsym
= gjmp(rsym
); /* jmp */
7361 } else if (tok
== TOK_BREAK
) {
7364 error("cannot break");
7365 *bsym
= gjmp(*bsym
);
7368 } else if (tok
== TOK_CONTINUE
) {
7371 error("cannot continue");
7372 *csym
= gjmp(*csym
);
7375 } else if (tok
== TOK_FOR
) {
7402 block(&a
, &b
, case_sym
, def_sym
, case_reg
, 0);
7407 if (tok
== TOK_DO
) {
7412 block(&a
, &b
, case_sym
, def_sym
, case_reg
, 0);
7423 if (tok
== TOK_SWITCH
) {
7427 /* XXX: other types than integer */
7428 case_reg
= gv(RC_INT
);
7432 b
= gjmp(0); /* jump to first case */
7434 block(&a
, csym
, &b
, &c
, case_reg
, 0);
7435 /* if no default, jmp after switch */
7443 if (tok
== TOK_CASE
) {
7450 if (gnu_ext
&& tok
== TOK_DOTS
) {
7454 warning("empty case range");
7456 /* since a case is like a label, we must skip it with a jmp */
7463 *case_sym
= gtst(1, 0);
7466 *case_sym
= gtst(1, 0);
7470 *case_sym
= gtst(1, *case_sym
);
7474 block(bsym
, csym
, case_sym
, def_sym
, case_reg
, 0);
7476 if (tok
== TOK_DEFAULT
) {
7482 error("too many 'default'");
7484 block(bsym
, csym
, case_sym
, def_sym
, case_reg
, 0);
7486 if (tok
== TOK_GOTO
) {
7488 if (tok
== '*' && gnu_ext
) {
7492 if ((vtop
->type
.t
& VT_BTYPE
) != VT_PTR
)
7495 } else if (tok
>= TOK_UIDENT
) {
7496 s
= label_find(tok
);
7497 /* put forward definition if needed */
7499 s
= label_push(&global_label_stack
, tok
, LABEL_FORWARD
);
7501 if (s
->r
== LABEL_DECLARED
)
7502 s
->r
= LABEL_FORWARD
;
7504 /* label already defined */
7505 if (s
->r
& LABEL_FORWARD
)
7506 s
->next
= (void *)gjmp((long)s
->next
);
7508 gjmp_addr((long)s
->next
);
7511 expect("label identifier");
7514 } else if (tok
== TOK_ASM1
|| tok
== TOK_ASM2
|| tok
== TOK_ASM3
) {
7522 if (s
->r
== LABEL_DEFINED
)
7523 error("duplicate label '%s'", get_tok_str(s
->v
, NULL
));
7524 gsym((long)s
->next
);
7525 s
->r
= LABEL_DEFINED
;
7527 s
= label_push(&global_label_stack
, b
, LABEL_DEFINED
);
7529 s
->next
= (void *)ind
;
7530 /* we accept this, but it is a mistake */
7532 warning("deprecated use of label at end of compound statement");
7536 block(bsym
, csym
, case_sym
, def_sym
, case_reg
, is_expr
);
7539 /* expression case */
7554 /* t is the array or struct type. c is the array or struct
7555 address. cur_index/cur_field is the pointer to the current
7556 value. 'size_only' is true if only size info is needed (only used
7558 static void decl_designator(CType
*type
, Section
*sec
, unsigned long c
,
7559 int *cur_index
, Sym
**cur_field
,
7563 int notfirst
, index
, index_last
, align
, l
, nb_elems
, elem_size
;
7569 if (gnu_ext
&& (l
= is_label()) != 0)
7571 while (tok
== '[' || tok
== '.') {
7573 if (!(type
->t
& VT_ARRAY
))
7574 expect("array type");
7577 index
= expr_const();
7578 if (index
< 0 || (s
->c
>= 0 && index
>= s
->c
))
7579 expect("invalid index");
7580 if (tok
== TOK_DOTS
&& gnu_ext
) {
7582 index_last
= expr_const();
7583 if (index_last
< 0 ||
7584 (s
->c
>= 0 && index_last
>= s
->c
) ||
7586 expect("invalid index");
7592 *cur_index
= index_last
;
7593 type
= pointed_type(type
);
7594 elem_size
= type_size(type
, &align
);
7595 c
+= index
* elem_size
;
7596 /* NOTE: we only support ranges for last designator */
7597 nb_elems
= index_last
- index
+ 1;
7598 if (nb_elems
!= 1) {
7607 if ((type
->t
& VT_BTYPE
) != VT_STRUCT
)
7608 expect("struct/union type");
7621 /* XXX: fix this mess by using explicit storage field */
7623 type1
.t
|= (type
->t
& ~VT_TYPE
);
7637 if (type
->t
& VT_ARRAY
) {
7639 type
= pointed_type(type
);
7640 c
+= index
* type_size(type
, &align
);
7644 error("too many field init");
7645 /* XXX: fix this mess by using explicit storage field */
7647 type1
.t
|= (type
->t
& ~VT_TYPE
);
7652 decl_initializer(type
, sec
, c
, 0, size_only
);
7654 /* XXX: make it more general */
7655 if (!size_only
&& nb_elems
> 1) {
7656 unsigned long c_end
;
7661 error("range init not supported yet for dynamic storage");
7662 c_end
= c
+ nb_elems
* elem_size
;
7663 if (c_end
> sec
->data_allocated
)
7664 section_realloc(sec
, c_end
);
7665 src
= sec
->data
+ c
;
7667 for(i
= 1; i
< nb_elems
; i
++) {
7669 memcpy(dst
, src
, elem_size
);
7675 #define EXPR_CONST 1
7678 /* store a value or an expression directly in global data or in local array */
7679 static void init_putv(CType
*type
, Section
*sec
, unsigned long c
,
7680 int v
, int expr_type
)
7682 int saved_global_expr
, bt
, bit_pos
, bit_size
;
7684 unsigned long long bit_mask
;
7691 /* compound literals must be allocated globally in this case */
7692 saved_global_expr
= global_expr
;
7695 global_expr
= saved_global_expr
;
7696 /* NOTE: symbols are accepted */
7697 if ((vtop
->r
& (VT_VALMASK
| VT_LVAL
)) != VT_CONST
)
7698 error("initializer element is not constant");
7706 /* XXX: not portable */
7707 /* XXX: generate error if incorrect relocation */
7708 gen_assign_cast(type
);
7709 bt
= type
->t
& VT_BTYPE
;
7710 ptr
= sec
->data
+ c
;
7711 /* XXX: make code faster ? */
7712 if (!(type
->t
& VT_BITFIELD
)) {
7717 bit_pos
= (vtop
->type
.t
>> VT_STRUCT_SHIFT
) & 0x3f;
7718 bit_size
= (vtop
->type
.t
>> (VT_STRUCT_SHIFT
+ 6)) & 0x3f;
7719 bit_mask
= (1LL << bit_size
) - 1;
7721 if ((vtop
->r
& VT_SYM
) &&
7727 (bt
== VT_INT
&& bit_size
!= 32)))
7728 error("initializer element is not computable at load time");
7731 *(char *)ptr
|= (vtop
->c
.i
& bit_mask
) << bit_pos
;
7734 *(short *)ptr
|= (vtop
->c
.i
& bit_mask
) << bit_pos
;
7737 *(double *)ptr
= vtop
->c
.d
;
7740 *(long double *)ptr
= vtop
->c
.ld
;
7743 *(long long *)ptr
|= (vtop
->c
.ll
& bit_mask
) << bit_pos
;
7746 if (vtop
->r
& VT_SYM
) {
7747 greloc(sec
, vtop
->sym
, c
, R_DATA_32
);
7749 *(int *)ptr
|= (vtop
->c
.i
& bit_mask
) << bit_pos
;
7754 vset(type
, VT_LOCAL
, c
);
7761 /* put zeros for variable based init */
7762 static void init_putz(CType
*t
, Section
*sec
, unsigned long c
, int size
)
7767 /* nothing to do because globals are already set to zero */
7769 gfunc_start(&gf
, FUNC_CDECL
);
7776 vpush_global_sym(&func_old_type
, TOK_memset
);
7781 /* 't' contains the type and storage info. 'c' is the offset of the
7782 object in section 'sec'. If 'sec' is NULL, it means stack based
7783 allocation. 'first' is true if array '{' must be read (multi
7784 dimension implicit array init handling). 'size_only' is true if
7785 size only evaluation is wanted (only for arrays). */
7786 static void decl_initializer(CType
*type
, Section
*sec
, unsigned long c
,
7787 int first
, int size_only
)
7789 int index
, array_length
, n
, no_oblock
, nb
, parlevel
, i
;
7790 int size1
, align1
, expr_type
;
7794 if (type
->t
& VT_ARRAY
) {
7798 t1
= pointed_type(type
);
7799 size1
= type_size(t1
, &align1
);
7802 if ((first
&& tok
!= TOK_LSTR
&& tok
!= TOK_STR
) ||
7808 /* only parse strings here if correct type (otherwise: handle
7809 them as ((w)char *) expressions */
7810 if ((tok
== TOK_LSTR
&&
7811 (t1
->t
& VT_BTYPE
) == VT_INT
) ||
7813 (t1
->t
& VT_BTYPE
) == VT_BYTE
)) {
7814 while (tok
== TOK_STR
|| tok
== TOK_LSTR
) {
7819 /* compute maximum number of chars wanted */
7821 cstr_len
= cstr
->size
;
7823 cstr_len
= cstr
->size
/ sizeof(int);
7826 if (n
>= 0 && nb
> (n
- array_length
))
7827 nb
= n
- array_length
;
7830 warning("initializer-string for array is too long");
7831 /* in order to go faster for common case (char
7832 string in global variable, we handle it
7834 if (sec
&& tok
== TOK_STR
&& size1
== 1) {
7835 memcpy(sec
->data
+ c
+ array_length
, cstr
->data
, nb
);
7839 ch
= ((unsigned char *)cstr
->data
)[i
];
7841 ch
= ((int *)cstr
->data
)[i
];
7842 init_putv(t1
, sec
, c
+ (array_length
+ i
) * size1
,
7850 /* only add trailing zero if enough storage (no
7851 warning in this case since it is standard) */
7852 if (n
< 0 || array_length
< n
) {
7854 init_putv(t1
, sec
, c
+ (array_length
* size1
), 0, EXPR_VAL
);
7860 while (tok
!= '}') {
7861 decl_designator(type
, sec
, c
, &index
, NULL
, size_only
);
7862 if (n
>= 0 && index
>= n
)
7863 error("index too large");
7864 /* must put zero in holes (note that doing it that way
7865 ensures that it even works with designators) */
7866 if (!size_only
&& array_length
< index
) {
7867 init_putz(t1
, sec
, c
+ array_length
* size1
,
7868 (index
- array_length
) * size1
);
7871 if (index
> array_length
)
7872 array_length
= index
;
7873 /* special test for multi dimensional arrays (may not
7874 be strictly correct if designators are used at the
7876 if (index
>= n
&& no_oblock
)
7885 /* put zeros at the end */
7886 if (!size_only
&& n
>= 0 && array_length
< n
) {
7887 init_putz(t1
, sec
, c
+ array_length
* size1
,
7888 (n
- array_length
) * size1
);
7890 /* patch type size if needed */
7892 s
->c
= array_length
;
7893 } else if ((type
->t
& VT_BTYPE
) == VT_STRUCT
&&
7894 (sec
|| !first
|| tok
== '{')) {
7897 /* NOTE: the previous test is a specific case for automatic
7898 struct/union init */
7899 /* XXX: union needs only one init */
7901 /* XXX: this test is incorrect for local initializers
7902 beginning with ( without {. It would be much more difficult
7903 to do it correctly (ideally, the expression parser should
7904 be used in all cases) */
7910 while (tok
== '(') {
7914 if (!parse_btype(&type1
, &ad1
))
7916 type_decl(&type1
, &ad1
, &n
, TYPE_ABSTRACT
);
7917 if (!is_compatible_types(type
, &type1
))
7918 error("invalid type for cast");
7922 if (first
|| tok
== '{') {
7931 while (tok
!= '}') {
7932 decl_designator(type
, sec
, c
, NULL
, &f
, size_only
);
7934 if (!size_only
&& array_length
< index
) {
7935 init_putz(type
, sec
, c
+ array_length
,
7936 index
- array_length
);
7938 index
= index
+ type_size(&f
->type
, &align1
);
7939 if (index
> array_length
)
7940 array_length
= index
;
7942 if (no_oblock
&& f
== NULL
)
7948 /* put zeros at the end */
7949 if (!size_only
&& array_length
< n
) {
7950 init_putz(type
, sec
, c
+ array_length
,
7959 } else if (tok
== '{') {
7961 decl_initializer(type
, sec
, c
, first
, size_only
);
7963 } else if (size_only
) {
7964 /* just skip expression */
7966 while ((parlevel
> 0 || (tok
!= '}' && tok
!= ',')) &&
7970 else if (tok
== ')')
7975 /* currently, we always use constant expression for globals
7976 (may change for scripting case) */
7977 expr_type
= EXPR_CONST
;
7979 expr_type
= EXPR_ANY
;
7980 init_putv(type
, sec
, c
, 0, expr_type
);
7984 /* parse an initializer for type 't' if 'has_init' is non zero, and
7985 allocate space in local or global data space ('r' is either
7986 VT_LOCAL or VT_CONST). If 'v' is non zero, then an associated
7987 variable 'v' of scope 'scope' is declared before initializers are
7988 parsed. If 'v' is zero, then a reference to the new object is put
7989 in the value stack. If 'has_init' is 2, a special parsing is done
7990 to handle string constants. */
7991 static void decl_initializer_alloc(CType
*type
, AttributeDef
*ad
, int r
,
7992 int has_init
, int v
, int scope
)
7994 int size
, align
, addr
, data_offset
;
7996 ParseState saved_parse_state
;
7997 TokenString init_str
;
8000 size
= type_size(type
, &align
);
8001 /* If unknown size, we must evaluate it before
8002 evaluating initializers because
8003 initializers can generate global data too
8004 (e.g. string pointers or ISOC99 compound
8005 literals). It also simplifies local
8006 initializers handling */
8007 tok_str_new(&init_str
);
8010 error("unknown type size");
8011 /* get all init string */
8012 if (has_init
== 2) {
8013 /* only get strings */
8014 while (tok
== TOK_STR
|| tok
== TOK_LSTR
) {
8015 tok_str_add_tok(&init_str
);
8020 while (level
> 0 || (tok
!= ',' && tok
!= ';')) {
8022 error("unexpected end of file in initializer");
8023 tok_str_add_tok(&init_str
);
8026 else if (tok
== '}') {
8034 tok_str_add(&init_str
, -1);
8035 tok_str_add(&init_str
, 0);
8038 save_parse_state(&saved_parse_state
);
8040 macro_ptr
= init_str
.str
;
8042 decl_initializer(type
, NULL
, 0, 1, 1);
8043 /* prepare second initializer parsing */
8044 macro_ptr
= init_str
.str
;
8047 /* if still unknown size, error */
8048 size
= type_size(type
, &align
);
8050 error("unknown type size");
8052 /* take into account specified alignment if bigger */
8053 if (ad
->aligned
> align
)
8054 align
= ad
->aligned
;
8055 if ((r
& VT_VALMASK
) == VT_LOCAL
) {
8057 if (do_bounds_check
&& (type
->t
& VT_ARRAY
))
8059 loc
= (loc
- size
) & -align
;
8061 /* handles bounds */
8062 /* XXX: currently, since we do only one pass, we cannot track
8063 '&' operators, so we add only arrays */
8064 if (do_bounds_check
&& (type
->t
& VT_ARRAY
)) {
8065 unsigned long *bounds_ptr
;
8066 /* add padding between regions */
8068 /* then add local bound info */
8069 bounds_ptr
= section_ptr_add(lbounds_section
, 2 * sizeof(unsigned long));
8070 bounds_ptr
[0] = addr
;
8071 bounds_ptr
[1] = size
;
8074 /* local variable */
8075 sym_push(v
, type
, r
, addr
);
8077 /* push local reference */
8078 vset(type
, r
, addr
);
8084 if (v
&& scope
== VT_CONST
) {
8085 /* see if the symbol was already defined */
8088 if (!is_compatible_types(&sym
->type
, type
))
8089 error("incompatible types for redefinition of '%s'",
8090 get_tok_str(v
, NULL
));
8091 if (sym
->type
.t
& VT_EXTERN
) {
8092 /* if the variable is extern, it was not allocated */
8093 sym
->type
.t
&= ~VT_EXTERN
;
8095 /* we accept several definitions of the same
8096 global variable. this is tricky, because we
8097 must play with the SHN_COMMON type of the symbol */
8098 /* XXX: should check if the variable was already
8099 initialized. It is incorrect to initialized it
8101 /* no init data, we won't add more to the symbol */
8108 /* allocate symbol in corresponding section */
8115 data_offset
= sec
->data_offset
;
8116 data_offset
= (data_offset
+ align
- 1) & -align
;
8118 /* very important to increment global pointer at this time
8119 because initializers themselves can create new initializers */
8120 data_offset
+= size
;
8121 /* add padding if bound check */
8122 if (do_bounds_check
)
8124 sec
->data_offset
= data_offset
;
8125 /* allocate section space to put the data */
8126 if (sec
->sh_type
!= SHT_NOBITS
&&
8127 data_offset
> sec
->data_allocated
)
8128 section_realloc(sec
, data_offset
);
8130 addr
= 0; /* avoid warning */
8134 if (scope
== VT_CONST
) {
8139 sym
= sym_push(v
, type
, r
| VT_SYM
, 0);
8141 /* update symbol definition */
8143 put_extern_sym(sym
, sec
, addr
, size
);
8146 /* put a common area */
8147 put_extern_sym(sym
, NULL
, align
, size
);
8148 /* XXX: find a nicer way */
8149 esym
= &((Elf32_Sym
*)symtab_section
->data
)[sym
->c
];
8150 esym
->st_shndx
= SHN_COMMON
;
8155 /* push global reference */
8156 sym
= get_sym_ref(type
, sec
, addr
, size
);
8158 vsetc(type
, VT_CONST
| VT_SYM
, &cval
);
8162 /* handles bounds now because the symbol must be defined
8163 before for the relocation */
8164 if (do_bounds_check
) {
8165 unsigned long *bounds_ptr
;
8167 greloc(bounds_section
, sym
, bounds_section
->data_offset
, R_DATA_32
);
8168 /* then add global bound info */
8169 bounds_ptr
= section_ptr_add(bounds_section
, 2 * sizeof(long));
8170 bounds_ptr
[0] = 0; /* relocated */
8171 bounds_ptr
[1] = size
;
8175 decl_initializer(type
, sec
, addr
, 1, 0);
8176 /* restore parse state if needed */
8178 tok_str_free(init_str
.str
);
8179 restore_parse_state(&saved_parse_state
);
8185 void put_func_debug(Sym
*sym
)
8190 /* XXX: we put here a dummy type */
8191 snprintf(buf
, sizeof(buf
), "%s:%c1",
8192 funcname
, sym
->type
.t
& VT_STATIC
? 'f' : 'F');
8193 put_stabs_r(buf
, N_FUN
, 0, file
->line_num
, 0,
8194 cur_text_section
, sym
->c
);
8199 /* not finished : try to put some local vars in registers */
8200 //#define CONFIG_REG_VARS
8202 #ifdef CONFIG_REG_VARS
8203 void add_var_ref(int t
)
8205 printf("%s:%d: &%s\n",
8206 file
->filename
, file
->line_num
,
8207 get_tok_str(t
, NULL
));
8210 /* first pass on a function with heuristic to extract variable usage
8211 and pointer references to local variables for register allocation */
8212 void analyse_function(void)
8219 /* any symbol coming after '&' is considered as being a
8220 variable whose reference is taken. It is highly unaccurate
8221 but it is difficult to do better without a complete parse */
8224 /* if '& number', then no need to examine next tokens */
8225 if (tok
== TOK_CINT
||
8227 tok
== TOK_CLLONG
||
8228 tok
== TOK_CULLONG
) {
8230 } else if (tok
>= TOK_UIDENT
) {
8231 /* if '& ident [' or '& ident ->', then ident address
8235 if (tok
!= '[' && tok
!= TOK_ARROW
)
8239 while (tok
!= '}' && tok
!= ';' &&
8240 !((tok
== ',' || tok
== ')') && level
== 0)) {
8241 if (tok
>= TOK_UIDENT
) {
8243 } else if (tok
== '(') {
8245 } else if (tok
== ')') {
8258 /* parse an old style function declaration list */
8259 /* XXX: check multiple parameter */
8260 static void func_decl_list(Sym
*func_sym
)
8267 /* parse each declaration */
8268 while (tok
!= '{' && tok
!= ';' && tok
!= ',' && tok
!= TOK_EOF
) {
8269 if (!parse_btype(&btype
, &ad
))
8270 expect("declaration list");
8271 if (((btype
.t
& VT_BTYPE
) == VT_ENUM
||
8272 (btype
.t
& VT_BTYPE
) == VT_STRUCT
) &&
8274 /* we accept no variable after */
8278 type_decl(&type
, &ad
, &v
, TYPE_DIRECT
);
8279 /* find parameter in function parameter list */
8282 if ((s
->v
& ~SYM_FIELD
) == v
)
8286 error("declaration for parameter '%s' but no such parameter",
8287 get_tok_str(v
, NULL
));
8289 /* check that no storage specifier except 'register' was given */
8290 if (type
.t
& VT_STORAGE
)
8291 error("storage class specified for '%s'", get_tok_str(v
, NULL
));
8292 convert_parameter_type(&type
);
8293 /* we can add the type (NOTE: it could be local to the function) */
8295 /* accept other parameters */
8306 /* 'l' is VT_LOCAL or VT_CONST to define default storage type */
8307 static void decl(int l
)
8315 if (!parse_btype(&btype
, &ad
)) {
8316 /* skip redundant ';' */
8317 /* XXX: find more elegant solution */
8322 /* special test for old K&R protos without explicit int
8323 type. Only accepted when defining global data */
8324 if (l
== VT_LOCAL
|| tok
< TOK_DEFINE
)
8328 if (((btype
.t
& VT_BTYPE
) == VT_ENUM
||
8329 (btype
.t
& VT_BTYPE
) == VT_STRUCT
) &&
8331 /* we accept no variable after */
8335 while (1) { /* iterate thru each declaration */
8337 type_decl(&type
, &ad
, &v
, TYPE_DIRECT
);
8341 type_to_str(buf
, sizeof(buf
), t
, get_tok_str(v
, NULL
));
8342 printf("type = '%s'\n", buf
);
8345 if ((type
.t
& VT_BTYPE
) == VT_FUNC
) {
8346 /* if old style function prototype, we accept a
8349 if (sym
->c
== FUNC_OLD
)
8350 func_decl_list(sym
);
8354 #ifdef CONFIG_REG_VARS
8355 TokenString func_str
;
8356 ParseState saved_parse_state
;
8361 error("cannot use local functions");
8362 if (!(type
.t
& VT_FUNC
))
8363 expect("function definition");
8364 /* XXX: cannot do better now: convert extern line to static inline */
8365 if ((type
.t
& (VT_EXTERN
| VT_INLINE
)) == (VT_EXTERN
| VT_INLINE
))
8366 type
.t
= (type
.t
& ~VT_EXTERN
) | VT_STATIC
;
8368 #ifdef CONFIG_REG_VARS
8369 /* parse all function code and record it */
8371 tok_str_new(&func_str
);
8377 error("unexpected end of file");
8378 tok_str_add_tok(&func_str
);
8383 } else if (t
== '}') {
8385 if (block_level
== 0)
8389 tok_str_add(&func_str
, -1);
8390 tok_str_add(&func_str
, 0);
8392 save_parse_state(&saved_parse_state
);
8394 macro_ptr
= func_str
.str
;
8399 /* compute text section */
8400 cur_text_section
= ad
.section
;
8401 if (!cur_text_section
)
8402 cur_text_section
= text_section
;
8403 ind
= cur_text_section
->data_offset
;
8404 funcname
= get_tok_str(v
, NULL
);
8407 /* if symbol is already defined, then put complete type */
8410 /* put function symbol */
8411 sym
= global_identifier_push(v
, type
.t
, 0);
8412 sym
->type
.ref
= type
.ref
;
8414 /* NOTE: we patch the symbol size later */
8415 put_extern_sym(sym
, cur_text_section
, ind
, 0);
8417 sym
->r
= VT_SYM
| VT_CONST
;
8418 /* put debug symbol */
8420 put_func_debug(sym
);
8421 /* push a dummy symbol to enable local sym storage */
8422 sym_push2(&local_stack
, SYM_FIELD
, 0, 0);
8423 gfunc_prolog(&type
);
8426 #ifdef CONFIG_REG_VARS
8427 macro_ptr
= func_str
.str
;
8430 block(NULL
, NULL
, NULL
, NULL
, 0, 0);
8433 cur_text_section
->data_offset
= ind
;
8434 label_pop(&global_label_stack
, NULL
);
8435 sym_pop(&local_stack
, NULL
); /* reset local stack */
8436 /* end of function */
8437 /* patch symbol size */
8438 ((Elf32_Sym
*)symtab_section
->data
)[sym
->c
].st_size
=
8441 put_stabn(N_FUN
, 0, 0, ind
- func_ind
);
8443 funcname
= ""; /* for safety */
8444 func_vt
.t
= VT_VOID
; /* for safety */
8445 ind
= 0; /* for safety */
8447 #ifdef CONFIG_REG_VARS
8448 tok_str_free(func_str
.str
);
8449 restore_parse_state(&saved_parse_state
);
8453 if (btype
.t
& VT_TYPEDEF
) {
8454 /* save typedefed type */
8455 /* XXX: test storage specifiers ? */
8456 sym
= sym_push(v
, &type
, 0, 0);
8457 sym
->type
.t
|= VT_TYPEDEF
;
8458 } else if ((type
.t
& VT_BTYPE
) == VT_FUNC
) {
8459 /* external function definition */
8460 external_sym(v
, &type
, 0);
8462 /* not lvalue if array */
8464 if (!(type
.t
& VT_ARRAY
))
8465 r
|= lvalue_type(type
.t
);
8466 has_init
= (tok
== '=');
8467 if ((btype
.t
& VT_EXTERN
) ||
8468 ((type
.t
& VT_ARRAY
) && (type
.t
& VT_STATIC
) &&
8469 !has_init
&& l
== VT_CONST
&& type
.ref
->c
< 0)) {
8470 /* external variable */
8471 /* NOTE: as GCC, uninitialized global static
8472 arrays of null size are considered as
8474 external_sym(v
, &type
, r
);
8476 if (type
.t
& VT_STATIC
)
8482 decl_initializer_alloc(&type
, &ad
, r
,
8496 /* better than nothing, but needs extension to handle '-E' option
8498 static void preprocess_init(TCCState
*s1
)
8500 s1
->include_stack_ptr
= s1
->include_stack
;
8501 /* XXX: move that before to avoid having to initialize
8502 file->ifdef_stack_ptr ? */
8503 s1
->ifdef_stack_ptr
= s1
->ifdef_stack
;
8504 file
->ifdef_stack_ptr
= s1
->ifdef_stack_ptr
;
8506 /* XXX: not ANSI compliant: bound checking says error */
8510 /* compile the C file opened in 'file'. Return non zero if errors. */
8511 static int tcc_compile(TCCState
*s1
)
8515 volatile int section_sym
;
8518 printf("%s: **** new file\n", file
->filename
);
8520 preprocess_init(s1
);
8523 anon_sym
= SYM_FIRST_ANOM
;
8525 /* file info: full path + filename */
8526 section_sym
= 0; /* avoid warning */
8528 section_sym
= put_elf_sym(symtab_section
, 0, 0,
8529 ELF32_ST_INFO(STB_LOCAL
, STT_SECTION
), 0,
8530 text_section
->sh_num
, NULL
);
8531 getcwd(buf
, sizeof(buf
));
8532 pstrcat(buf
, sizeof(buf
), "/");
8533 put_stabs_r(buf
, N_SO
, 0, 0,
8534 text_section
->data_offset
, text_section
, section_sym
);
8535 put_stabs_r(file
->filename
, N_SO
, 0, 0,
8536 text_section
->data_offset
, text_section
, section_sym
);
8538 /* an elf symbol of type STT_FILE must be put so that STB_LOCAL
8539 symbols can be safely used */
8540 put_elf_sym(symtab_section
, 0, 0,
8541 ELF32_ST_INFO(STB_LOCAL
, STT_FILE
), 0,
8542 SHN_ABS
, file
->filename
);
8544 /* define some often used types */
8545 int_type
.t
= VT_INT
;
8547 char_pointer_type
.t
= VT_BYTE
;
8548 mk_pointer(&char_pointer_type
);
8550 func_old_type
.t
= VT_FUNC
;
8551 func_old_type
.ref
= sym_push(SYM_FIELD
, &int_type
, FUNC_CDECL
, FUNC_OLD
);
8554 /* define 'void *alloca(unsigned int)' builtin function */
8559 sym
= sym_push(p
, mk_pointer(VT_VOID
), FUNC_CDECL
, FUNC_NEW
);
8560 s1
= sym_push(SYM_FIELD
, VT_UNSIGNED
| VT_INT
, 0, 0);
8563 sym_push(TOK_alloca
, VT_FUNC
| (p
<< VT_STRUCT_SHIFT
), VT_CONST
, 0);
8567 define_start
= define_stack
;
8569 if (setjmp(s1
->error_jmp_buf
) == 0) {
8571 s1
->error_set_jmp_enabled
= 1;
8573 ch
= file
->buf_ptr
[0];
8574 tok_flags
= TOK_FLAG_BOL
| TOK_FLAG_BOF
;
8575 parse_flags
= PARSE_FLAG_PREPROCESS
| PARSE_FLAG_TOK_NUM
;
8579 expect("declaration");
8581 /* end of translation unit info */
8583 put_stabs_r(NULL
, N_SO
, 0, 0,
8584 text_section
->data_offset
, text_section
, section_sym
);
8587 s1
->error_set_jmp_enabled
= 0;
8589 /* reset define stack, but leave -Dsymbols (may be incorrect if
8590 they are undefined) */
8591 free_defines(define_start
);
8593 sym_pop(&global_stack
, NULL
);
8595 return s1
->nb_errors
!= 0 ? -1 : 0;
8599 int tcc_compile_string(TCCState
*s
, const char *str
)
8601 BufferedFile bf1
, *bf
= &bf1
;
8605 /* init file structure */
8607 /* XXX: avoid copying */
8609 buf
= tcc_malloc(len
+ 1);
8612 memcpy(buf
, str
, len
);
8615 bf
->buf_end
= buf
+ len
;
8616 pstrcpy(bf
->filename
, sizeof(bf
->filename
), "<string>");
8620 ret
= tcc_compile(s
);
8624 /* currently, no need to close */
8629 /* define a preprocessor symbol. A value can also be provided with the '=' operator */
8630 void tcc_define_symbol(TCCState
*s1
, const char *sym
, const char *value
)
8632 BufferedFile bf1
, *bf
= &bf1
;
8634 pstrcpy(bf
->buffer
, IO_BUF_SIZE
, sym
);
8635 pstrcat(bf
->buffer
, IO_BUF_SIZE
, " ");
8639 pstrcat(bf
->buffer
, IO_BUF_SIZE
, value
);
8641 /* init file structure */
8643 bf
->buf_ptr
= bf
->buffer
;
8644 bf
->buf_end
= bf
->buffer
+ strlen(bf
->buffer
);
8645 *bf
->buf_end
= CH_EOB
;
8646 bf
->filename
[0] = '\0';
8650 s1
->include_stack_ptr
= s1
->include_stack
;
8652 /* parse with define parser */
8653 ch
= file
->buf_ptr
[0];
8659 /* undefine a preprocessor symbol */
8660 void tcc_undefine_symbol(TCCState
*s1
, const char *sym
)
8664 ts
= tok_alloc(sym
, strlen(sym
));
8665 s
= define_find(ts
->tok
);
8666 /* undefine symbol by putting an invalid name */
8671 #ifdef CONFIG_TCC_ASM
8673 #include "i386-asm.c"
8677 static void asm_instr(void)
8679 error("inline asm() not supported");
8685 /* print the position in the source file of PC value 'pc' by reading
8686 the stabs debug information */
8687 static void rt_printline(unsigned long wanted_pc
)
8689 Stab_Sym
*sym
, *sym_end
;
8690 char func_name
[128], last_func_name
[128];
8691 unsigned long func_addr
, last_pc
, pc
;
8692 const char *incl_files
[INCLUDE_STACK_SIZE
];
8693 int incl_index
, len
, last_line_num
, i
;
8694 const char *str
, *p
;
8696 fprintf(stderr
, "0x%08lx:", wanted_pc
);
8698 func_name
[0] = '\0';
8701 last_func_name
[0] = '\0';
8702 last_pc
= 0xffffffff;
8704 sym
= (Stab_Sym
*)stab_section
->data
+ 1;
8705 sym_end
= (Stab_Sym
*)(stab_section
->data
+ stab_section
->data_offset
);
8706 while (sym
< sym_end
) {
8707 switch(sym
->n_type
) {
8708 /* function start or end */
8710 if (sym
->n_strx
== 0) {
8711 /* we test if between last line and end of function */
8712 pc
= sym
->n_value
+ func_addr
;
8713 if (wanted_pc
>= last_pc
&& wanted_pc
< pc
)
8715 func_name
[0] = '\0';
8718 str
= stabstr_section
->data
+ sym
->n_strx
;
8719 p
= strchr(str
, ':');
8721 pstrcpy(func_name
, sizeof(func_name
), str
);
8724 if (len
> sizeof(func_name
) - 1)
8725 len
= sizeof(func_name
) - 1;
8726 memcpy(func_name
, str
, len
);
8727 func_name
[len
] = '\0';
8729 func_addr
= sym
->n_value
;
8732 /* line number info */
8734 pc
= sym
->n_value
+ func_addr
;
8735 if (wanted_pc
>= last_pc
&& wanted_pc
< pc
)
8738 last_line_num
= sym
->n_desc
;
8740 strcpy(last_func_name
, func_name
);
8744 str
= stabstr_section
->data
+ sym
->n_strx
;
8746 if (incl_index
< INCLUDE_STACK_SIZE
) {
8747 incl_files
[incl_index
++] = str
;
8755 if (sym
->n_strx
== 0) {
8756 incl_index
= 0; /* end of translation unit */
8758 str
= stabstr_section
->data
+ sym
->n_strx
;
8759 /* do not add path */
8761 if (len
> 0 && str
[len
- 1] != '/')
8769 /* second pass: we try symtab symbols (no line number info) */
8772 Elf32_Sym
*sym
, *sym_end
;
8775 sym_end
= (Elf32_Sym
*)(symtab_section
->data
+ symtab_section
->data_offset
);
8776 for(sym
= (Elf32_Sym
*)symtab_section
->data
+ 1;
8779 type
= ELF32_ST_TYPE(sym
->st_info
);
8780 if (type
== STT_FUNC
) {
8781 if (wanted_pc
>= sym
->st_value
&&
8782 wanted_pc
< sym
->st_value
+ sym
->st_size
) {
8783 pstrcpy(last_func_name
, sizeof(last_func_name
),
8784 strtab_section
->data
+ sym
->st_name
);
8790 /* did not find any info: */
8791 fprintf(stderr
, " ???\n");
8794 if (last_func_name
[0] != '\0') {
8795 fprintf(stderr
, " %s()", last_func_name
);
8797 if (incl_index
> 0) {
8798 fprintf(stderr
, " (%s:%d",
8799 incl_files
[incl_index
- 1], last_line_num
);
8800 for(i
= incl_index
- 2; i
>= 0; i
--)
8801 fprintf(stderr
, ", included from %s", incl_files
[i
]);
8802 fprintf(stderr
, ")");
8804 fprintf(stderr
, "\n");
8811 /* fix for glibc 2.1 */
8817 /* return the PC at frame level 'level'. Return non zero if not found */
8818 static int rt_get_caller_pc(unsigned long *paddr
,
8819 ucontext_t
*uc
, int level
)
8826 *paddr
= uc
->uc_mcontext
.mc_eip
;
8828 *paddr
= uc
->uc_mcontext
.gregs
[REG_EIP
];
8833 fp
= uc
->uc_mcontext
.mc_ebp
;
8835 fp
= uc
->uc_mcontext
.gregs
[REG_EBP
];
8837 for(i
=1;i
<level
;i
++) {
8838 /* XXX: check address validity with program info */
8839 if (fp
<= 0x1000 || fp
>= 0xc0000000)
8841 fp
= ((unsigned long *)fp
)[0];
8843 *paddr
= ((unsigned long *)fp
)[1];
8848 #error add arch specific rt_get_caller_pc()
8851 /* emit a run time error at position 'pc' */
8852 void rt_error(ucontext_t
*uc
, const char *fmt
, ...)
8859 fprintf(stderr
, "Runtime error: ");
8860 vfprintf(stderr
, fmt
, ap
);
8861 fprintf(stderr
, "\n");
8862 for(i
=0;i
<num_callers
;i
++) {
8863 if (rt_get_caller_pc(&pc
, uc
, i
) < 0)
8866 fprintf(stderr
, "at ");
8868 fprintf(stderr
, "by ");
8875 /* signal handler for fatal errors */
8876 static void sig_error(int signum
, siginfo_t
*siginf
, void *puc
)
8878 ucontext_t
*uc
= puc
;
8882 switch(siginf
->si_code
) {
8885 rt_error(uc
, "division by zero");
8888 rt_error(uc
, "floating point exception");
8894 if (rt_bound_error_msg
&& *rt_bound_error_msg
)
8895 rt_error(uc
, *rt_bound_error_msg
);
8897 rt_error(uc
, "dereferencing invalid pointer");
8900 rt_error(uc
, "illegal instruction");
8903 rt_error(uc
, "abort() called");
8906 rt_error(uc
, "caught signal %d", signum
);
8913 /* do all relocations (needed before using tcc_get_symbol()) */
8914 int tcc_relocate(TCCState
*s1
)
8921 tcc_add_runtime(s1
);
8923 relocate_common_syms();
8925 /* compute relocation address : section are relocated in place. We
8926 also alloc the bss space */
8927 for(i
= 1; i
< s1
->nb_sections
; i
++) {
8928 s
= s1
->sections
[i
];
8929 if (s
->sh_flags
& SHF_ALLOC
) {
8930 if (s
->sh_type
== SHT_NOBITS
)
8931 s
->data
= tcc_mallocz(s
->data_offset
);
8932 s
->sh_addr
= (unsigned long)s
->data
;
8936 relocate_syms(s1
, 1);
8938 if (s1
->nb_errors
!= 0)
8941 /* relocate each section */
8942 for(i
= 1; i
< s1
->nb_sections
; i
++) {
8943 s
= s1
->sections
[i
];
8945 relocate_section(s1
, s
);
8950 /* launch the compiled program with the given arguments */
8951 int tcc_run(TCCState
*s1
, int argc
, char **argv
)
8953 int (*prog_main
)(int, char **);
8955 if (tcc_relocate(s1
) < 0)
8958 prog_main
= tcc_get_symbol(s1
, "main");
8962 error("debug mode currently not available for Windows");
8964 struct sigaction sigact
;
8965 /* install TCC signal handlers to print debug info on fatal
8967 sigact
.sa_flags
= SA_SIGINFO
| SA_RESETHAND
;
8968 sigact
.sa_sigaction
= sig_error
;
8969 sigemptyset(&sigact
.sa_mask
);
8970 sigaction(SIGFPE
, &sigact
, NULL
);
8971 sigaction(SIGILL
, &sigact
, NULL
);
8972 sigaction(SIGSEGV
, &sigact
, NULL
);
8973 sigaction(SIGBUS
, &sigact
, NULL
);
8974 sigaction(SIGABRT
, &sigact
, NULL
);
8978 #ifdef CONFIG_TCC_BCHECK
8979 if (do_bounds_check
) {
8980 void (*bound_init
)(void);
8982 /* set error function */
8983 rt_bound_error_msg
= (void *)tcc_get_symbol(s1
, "__bound_error_msg");
8985 /* XXX: use .init section so that it also work in binary ? */
8986 bound_init
= (void *)tcc_get_symbol(s1
, "__bound_init");
8990 return (*prog_main
)(argc
, argv
);
8993 TCCState
*tcc_new(void)
9000 s
= tcc_mallocz(sizeof(TCCState
));
9004 s
->output_type
= TCC_OUTPUT_MEMORY
;
9006 /* init isid table */
9008 isidnum_table
[i
] = isid(i
) || isnum(i
);
9010 /* add all tokens */
9012 memset(hash_ident
, 0, TOK_HASH_SIZE
* sizeof(TokenSym
*));
9014 tok_ident
= TOK_IDENT
;
9023 ts
= tok_alloc(p
, r
- p
- 1);
9027 /* we add dummy defines for some special macros to speed up tests
9028 and to have working defined() */
9029 define_push(TOK___LINE__
, MACRO_OBJ
, NULL
, NULL
);
9030 define_push(TOK___FILE__
, MACRO_OBJ
, NULL
, NULL
);
9031 define_push(TOK___DATE__
, MACRO_OBJ
, NULL
, NULL
);
9032 define_push(TOK___TIME__
, MACRO_OBJ
, NULL
, NULL
);
9034 /* standard defines */
9035 tcc_define_symbol(s
, "__STDC__", NULL
);
9036 #if defined(TCC_TARGET_I386)
9037 tcc_define_symbol(s
, "__i386__", NULL
);
9040 tcc_define_symbol(s
, "__linux__", NULL
);
9041 tcc_define_symbol(s
, "linux", NULL
);
9043 /* tiny C specific defines */
9044 tcc_define_symbol(s
, "__TINYC__", NULL
);
9046 /* tiny C & gcc defines */
9047 tcc_define_symbol(s
, "__SIZE_TYPE__", "unsigned int");
9048 tcc_define_symbol(s
, "__PTRDIFF_TYPE__", "int");
9049 tcc_define_symbol(s
, "__WCHAR_TYPE__", "int");
9051 /* default library paths */
9052 tcc_add_library_path(s
, "/usr/local/lib");
9053 tcc_add_library_path(s
, "/usr/lib");
9054 tcc_add_library_path(s
, "/lib");
9056 /* no section zero */
9057 dynarray_add((void ***)&s
->sections
, &s
->nb_sections
, NULL
);
9059 /* create standard sections */
9060 text_section
= new_section(s
, ".text", SHT_PROGBITS
, SHF_ALLOC
| SHF_EXECINSTR
);
9061 data_section
= new_section(s
, ".data", SHT_PROGBITS
, SHF_ALLOC
| SHF_WRITE
);
9062 bss_section
= new_section(s
, ".bss", SHT_NOBITS
, SHF_ALLOC
| SHF_WRITE
);
9064 /* symbols are always generated for linking stage */
9065 symtab_section
= new_symtab(s
, ".symtab", SHT_SYMTAB
, 0,
9067 ".hashtab", SHF_PRIVATE
);
9068 strtab_section
= symtab_section
->link
;
9070 /* private symbol table for dynamic symbols */
9071 s
->dynsymtab_section
= new_symtab(s
, ".dynsymtab", SHT_SYMTAB
, SHF_PRIVATE
,
9073 ".dynhashtab", SHF_PRIVATE
);
9077 void tcc_delete(TCCState
*s1
)
9081 /* free -D defines */
9085 n
= tok_ident
- TOK_IDENT
;
9086 for(i
= 0; i
< n
; i
++)
9087 tcc_free(table_ident
[i
]);
9088 tcc_free(table_ident
);
9090 /* free all sections */
9092 free_section(symtab_section
->hash
);
9094 free_section(s1
->dynsymtab_section
->hash
);
9095 free_section(s1
->dynsymtab_section
->link
);
9096 free_section(s1
->dynsymtab_section
);
9098 for(i
= 1; i
< s1
->nb_sections
; i
++)
9099 free_section(s1
->sections
[i
]);
9100 tcc_free(s1
->sections
);
9102 /* free loaded dlls array */
9103 for(i
= 0; i
< s1
->nb_loaded_dlls
; i
++)
9104 tcc_free(s1
->loaded_dlls
[i
]);
9105 tcc_free(s1
->loaded_dlls
);
9108 for(i
= 0; i
< s1
->nb_library_paths
; i
++)
9109 tcc_free(s1
->library_paths
[i
]);
9110 tcc_free(s1
->library_paths
);
9112 /* cached includes */
9113 for(i
= 0; i
< s1
->nb_cached_includes
; i
++)
9114 tcc_free(s1
->cached_includes
[i
]);
9115 tcc_free(s1
->cached_includes
);
9117 for(i
= 0; i
< s1
->nb_include_paths
; i
++)
9118 tcc_free(s1
->include_paths
[i
]);
9119 tcc_free(s1
->include_paths
);
9121 for(i
= 0; i
< s1
->nb_sysinclude_paths
; i
++)
9122 tcc_free(s1
->sysinclude_paths
[i
]);
9123 tcc_free(s1
->sysinclude_paths
);
9128 int tcc_add_include_path(TCCState
*s1
, const char *pathname
)
9132 pathname1
= tcc_strdup(pathname
);
9133 dynarray_add((void ***)&s1
->include_paths
, &s1
->nb_include_paths
, pathname1
);
9137 int tcc_add_sysinclude_path(TCCState
*s1
, const char *pathname
)
9141 pathname1
= tcc_strdup(pathname
);
9142 dynarray_add((void ***)&s1
->sysinclude_paths
, &s1
->nb_sysinclude_paths
, pathname1
);
9146 static int tcc_add_file_internal(TCCState
*s1
, const char *filename
, int flags
)
9148 const char *ext
, *filename1
;
9151 BufferedFile
*saved_file
;
9153 /* find source file type with extension */
9154 filename1
= strrchr(filename
, '/');
9158 filename1
= filename
;
9159 ext
= strrchr(filename1
, '.');
9165 file
= tcc_open(s1
, filename
);
9167 if (flags
& AFF_PRINT_ERROR
) {
9168 error_noabort("file '%s' not found", filename
);
9174 if (!ext
|| !strcmp(ext
, "c")) {
9175 /* C file assumed */
9176 ret
= tcc_compile(s1
);
9178 #ifdef CONFIG_TCC_ASM
9179 if (!strcmp(ext
, "S")) {
9180 /* preprocessed assembler */
9181 ret
= tcc_assemble(s1
, 1);
9182 } else if (!strcmp(ext
, "s")) {
9183 /* non preprocessed assembler */
9184 ret
= tcc_assemble(s1
, 0);
9189 /* assume executable format: auto guess file type */
9190 if (read(fd
, &ehdr
, sizeof(ehdr
)) != sizeof(ehdr
)) {
9191 error_noabort("could not read header");
9194 lseek(fd
, 0, SEEK_SET
);
9196 if (ehdr
.e_ident
[0] == ELFMAG0
&&
9197 ehdr
.e_ident
[1] == ELFMAG1
&&
9198 ehdr
.e_ident
[2] == ELFMAG2
&&
9199 ehdr
.e_ident
[3] == ELFMAG3
) {
9200 file
->line_num
= 0; /* do not display line number if error */
9201 if (ehdr
.e_type
== ET_REL
) {
9202 ret
= tcc_load_object_file(s1
, fd
, 0);
9203 } else if (ehdr
.e_type
== ET_DYN
) {
9204 ret
= tcc_load_dll(s1
, fd
, filename
,
9205 (flags
& AFF_REFERENCED_DLL
) != 0);
9207 error_noabort("unrecognized ELF file");
9210 } else if (memcmp((char *)&ehdr
, ARMAG
, 8) == 0) {
9211 file
->line_num
= 0; /* do not display line number if error */
9212 ret
= tcc_load_archive(s1
, fd
);
9214 /* as GNU ld, consider it is an ld script if not recognized */
9215 ret
= tcc_load_ldscript(s1
);
9217 error_noabort("unrecognized file type");
9232 int tcc_add_file(TCCState
*s
, const char *filename
)
9234 return tcc_add_file_internal(s
, filename
, AFF_PRINT_ERROR
);
9237 int tcc_add_library_path(TCCState
*s
, const char *pathname
)
9241 pathname1
= tcc_strdup(pathname
);
9242 dynarray_add((void ***)&s
->library_paths
, &s
->nb_library_paths
, pathname1
);
9246 /* find and load a dll. Return non zero if not found */
9247 /* XXX: add '-rpath' option support ? */
9248 static int tcc_add_dll(TCCState
*s
, const char *filename
, int flags
)
9253 for(i
= 0; i
< s
->nb_library_paths
; i
++) {
9254 snprintf(buf
, sizeof(buf
), "%s/%s",
9255 s
->library_paths
[i
], filename
);
9256 if (tcc_add_file_internal(s
, buf
, flags
) == 0)
9262 /* the library name is the same as the argument of the '-l' option */
9263 int tcc_add_library(TCCState
*s
, const char *libraryname
)
9269 /* first we look for the dynamic library if not static linking */
9270 if (!s
->static_link
) {
9271 snprintf(buf
, sizeof(buf
), "lib%s.so", libraryname
);
9272 /* if we output to memory, then we simply we dlopen(). */
9273 if (s
->output_type
== TCC_OUTPUT_MEMORY
) {
9274 /* Since the libc is already loaded, we don't need to load it again */
9275 if (!strcmp(libraryname
, "c"))
9277 h
= dlopen(buf
, RTLD_GLOBAL
| RTLD_LAZY
);
9281 if (tcc_add_dll(s
, buf
, 0) == 0)
9286 /* then we look for the static library */
9287 for(i
= 0; i
< s
->nb_library_paths
; i
++) {
9288 snprintf(buf
, sizeof(buf
), "%s/lib%s.a",
9289 s
->library_paths
[i
], libraryname
);
9290 if (tcc_add_file_internal(s
, buf
, 0) == 0)
9296 int tcc_add_symbol(TCCState
*s
, const char *name
, unsigned long val
)
9298 add_elf_sym(symtab_section
, val
, 0,
9299 ELF32_ST_INFO(STB_GLOBAL
, STT_NOTYPE
),
9304 int tcc_set_output_type(TCCState
*s
, int output_type
)
9308 s
->output_type
= output_type
;
9311 /* default include paths */
9312 /* XXX: reverse order needed if -isystem support */
9313 tcc_add_sysinclude_path(s
, "/usr/local/include");
9314 tcc_add_sysinclude_path(s
, "/usr/include");
9315 snprintf(buf
, sizeof(buf
), "%s/include", tcc_lib_path
);
9316 tcc_add_sysinclude_path(s
, buf
);
9319 /* if bound checking, then add corresponding sections */
9320 #ifdef CONFIG_TCC_BCHECK
9321 if (do_bounds_check
) {
9323 tcc_define_symbol(s
, "__BOUNDS_CHECKING_ON", NULL
);
9324 /* create bounds sections */
9325 bounds_section
= new_section(s
, ".bounds",
9326 SHT_PROGBITS
, SHF_ALLOC
);
9327 lbounds_section
= new_section(s
, ".lbounds",
9328 SHT_PROGBITS
, SHF_ALLOC
);
9332 /* add debug sections */
9335 stab_section
= new_section(s
, ".stab", SHT_PROGBITS
, 0);
9336 stab_section
->sh_entsize
= sizeof(Stab_Sym
);
9337 stabstr_section
= new_section(s
, ".stabstr", SHT_STRTAB
, 0);
9338 put_elf_str(stabstr_section
, "");
9339 stab_section
->link
= stabstr_section
;
9340 /* put first entry */
9341 put_stabs("", 0, 0, 0, 0);
9344 /* add libc crt1/crti objects */
9345 if (output_type
== TCC_OUTPUT_EXE
||
9346 output_type
== TCC_OUTPUT_DLL
) {
9347 if (output_type
!= TCC_OUTPUT_DLL
)
9348 tcc_add_file(s
, CONFIG_TCC_CRT_PREFIX
"/crt1.o");
9349 tcc_add_file(s
, CONFIG_TCC_CRT_PREFIX
"/crti.o");
9354 #if !defined(LIBTCC)
9356 static int64_t getclock_us(void)
9361 return (tb
.time
* 1000LL + tb
.millitm
) * 1000LL;
9364 gettimeofday(&tv
, NULL
);
9365 return tv
.tv_sec
* 1000000LL + tv
.tv_usec
;
9371 printf("tcc version 0.9.16 - Tiny C Compiler - Copyright (C) 2001, 2002 Fabrice Bellard\n"
9372 "usage: tcc [-c] [-o outfile] [-Bdir] [-bench] [-Idir] [-Dsym[=val]] [-Usym]\n"
9373 " [-g] [-b] [-bt N] [-Ldir] [-llib] [-shared] [-static]\n"
9374 " [--] infile1 [infile2... --] [infile_args...]\n"
9376 "General options:\n"
9377 " -c compile only - generate an object file\n"
9378 " -o outfile set output filename\n"
9379 " -- allows multiples input files if no -o option given. Also\n"
9380 " separate input files from runtime arguments\n"
9381 " -Bdir set tcc internal library path\n"
9382 " -bench output compilation statistics\n"
9383 "Preprocessor options:\n"
9384 " -Idir add include path 'dir'\n"
9385 " -Dsym[=val] define 'sym' with value 'val'\n"
9386 " -Usym undefine 'sym'\n"
9388 " -Ldir add library path 'dir'\n"
9389 " -llib link with dynamic or static library 'lib'\n"
9390 " -shared generate a shared library\n"
9391 " -static static linking\n"
9392 " -r relocatable output\n"
9393 "Debugger options:\n"
9394 " -g generate runtime debug info\n"
9395 #ifdef CONFIG_TCC_BCHECK
9396 " -b compile with built-in memory and bounds checker (implies -g)\n"
9398 " -bt N show N callers in stack traces\n"
9402 #define TCC_OPTION_HAS_ARG 0x0001
9403 #define TCC_OPTION_NOSEP 0x0002 /* cannot have space before option and arg */
9405 typedef struct TCCOption
{
9433 TCC_OPTION_nostdinc
,
9434 TCC_OPTION_print_search_dirs
,
9435 TCC_OPTION_rdynamic
,
9438 static const TCCOption tcc_options
[] = {
9439 { "h", TCC_OPTION_HELP
, 0 },
9440 { "?", TCC_OPTION_HELP
, 0 },
9441 { "-", TCC_OPTION_MARKER
, 0 },
9442 { "I", TCC_OPTION_I
, TCC_OPTION_HAS_ARG
},
9443 { "D", TCC_OPTION_D
, TCC_OPTION_HAS_ARG
},
9444 { "U", TCC_OPTION_U
, TCC_OPTION_HAS_ARG
},
9445 { "L", TCC_OPTION_L
, TCC_OPTION_HAS_ARG
},
9446 { "B", TCC_OPTION_B
, TCC_OPTION_HAS_ARG
},
9447 { "l", TCC_OPTION_l
, TCC_OPTION_HAS_ARG
| TCC_OPTION_NOSEP
},
9448 { "bench", TCC_OPTION_bench
, 0 },
9449 { "bt", TCC_OPTION_bt
, TCC_OPTION_HAS_ARG
},
9450 #ifdef CONFIG_TCC_BCHECK
9451 { "b", TCC_OPTION_b
, 0 },
9453 { "g", TCC_OPTION_g
, 0 },
9454 { "c", TCC_OPTION_c
, 0 },
9455 { "static", TCC_OPTION_static
, 0 },
9456 { "shared", TCC_OPTION_shared
, 0 },
9457 { "o", TCC_OPTION_o
, TCC_OPTION_HAS_ARG
},
9458 { "rdynamic", TCC_OPTION_rdynamic
, 0 }, /* currently ignored */
9459 { "r", TCC_OPTION_r
, 0 },
9460 { "W", TCC_OPTION_W
, TCC_OPTION_HAS_ARG
| TCC_OPTION_NOSEP
},
9461 { "O", TCC_OPTION_O
, TCC_OPTION_HAS_ARG
| TCC_OPTION_NOSEP
},
9462 { "m", TCC_OPTION_m
, TCC_OPTION_HAS_ARG
},
9463 { "f", TCC_OPTION_f
, TCC_OPTION_HAS_ARG
| TCC_OPTION_NOSEP
},
9464 { "nostdinc", TCC_OPTION_nostdinc
, 0 },
9465 { "print-search-dirs", TCC_OPTION_print_search_dirs
, 0 },
9469 int main(int argc
, char **argv
)
9472 int optind
, output_type
, multiple_files
, i
, reloc_output
;
9475 int nb_files
, nb_libraries
, nb_objfiles
, dminus
, ret
;
9476 char objfilename
[1024];
9477 int64_t start_time
= 0;
9478 const TCCOption
*popt
;
9479 const char *optarg
, *p1
, *r1
, *outfile
;
9480 int print_search_dirs
;
9483 output_type
= TCC_OUTPUT_MEMORY
;
9493 print_search_dirs
= 0;
9495 if (optind
>= argc
) {
9496 if (nb_files
== 0 && !print_search_dirs
)
9503 /* add a new file */
9504 dynarray_add((void ***)&files
, &nb_files
, r
);
9505 if (!multiple_files
) {
9507 /* argv[0] will be this file */
9511 /* find option in table (match only the first chars */
9516 error("invalid option -- '%s'", r
);
9529 if (popt
->flags
& TCC_OPTION_HAS_ARG
) {
9530 if (*r1
!= '\0' || (popt
->flags
& TCC_OPTION_NOSEP
)) {
9534 error("argument to '%s' is missing", r
);
9535 optarg
= argv
[optind
++];
9543 switch(popt
->index
) {
9544 case TCC_OPTION_HELP
:
9548 case TCC_OPTION_MARKER
:
9549 /* '--' enables multiple files input and also ends several
9551 if (dminus
&& multiple_files
) {
9552 optind
--; /* argv[0] will be '--' */
9558 if (tcc_add_include_path(s
, optarg
) < 0)
9559 error("too many include paths");
9564 sym
= (char *)optarg
;
9565 value
= strchr(sym
, '=');
9570 tcc_define_symbol(s
, sym
, value
);
9574 tcc_undefine_symbol(s
, optarg
);
9577 tcc_add_library_path(s
, optarg
);
9580 /* set tcc utilities path (mainly for tcc development) */
9581 tcc_lib_path
= optarg
;
9584 dynarray_add((void ***)&files
, &nb_files
, r
);
9587 case TCC_OPTION_bench
:
9591 num_callers
= atoi(optarg
);
9593 #ifdef CONFIG_TCC_BCHECK
9595 do_bounds_check
= 1;
9604 output_type
= TCC_OUTPUT_OBJ
;
9606 case TCC_OPTION_static
:
9609 case TCC_OPTION_shared
:
9610 output_type
= TCC_OUTPUT_DLL
;
9617 /* generate a .o merging several output files */
9619 output_type
= TCC_OUTPUT_OBJ
;
9621 case TCC_OPTION_nostdinc
:
9624 case TCC_OPTION_print_search_dirs
:
9625 print_search_dirs
= 1;
9633 if (print_search_dirs
) {
9634 /* enough for Linux kernel */
9635 printf("install: %s/\n", tcc_lib_path
);
9639 nb_objfiles
= nb_files
- nb_libraries
;
9641 /* if outfile provided without other options, we output an
9643 if (outfile
&& output_type
== TCC_OUTPUT_MEMORY
)
9644 output_type
= TCC_OUTPUT_EXE
;
9646 /* check -c consistency : only single file handled. XXX: checks file type */
9647 if (output_type
== TCC_OUTPUT_OBJ
&& !reloc_output
) {
9648 /* accepts only a single input file */
9649 if (nb_objfiles
!= 1)
9650 error("cannot specify multiple files with -c");
9651 if (nb_libraries
!= 0)
9652 error("cannot specify libraries with -c");
9655 /* compute default outfile name */
9656 if (output_type
!= TCC_OUTPUT_MEMORY
&& !outfile
) {
9657 if (output_type
== TCC_OUTPUT_OBJ
&& !reloc_output
) {
9659 /* add .o extension */
9660 pstrcpy(objfilename
, sizeof(objfilename
) - 1, files
[0]);
9661 ext
= strrchr(objfilename
, '.');
9663 goto default_outfile
;
9664 strcpy(ext
+ 1, "o");
9667 pstrcpy(objfilename
, sizeof(objfilename
), "a.out");
9669 outfile
= objfilename
;
9673 start_time
= getclock_us();
9676 tcc_set_output_type(s
, output_type
);
9678 /* compile or add each files or library */
9679 for(i
= 0;i
< nb_files
; i
++) {
9680 const char *filename
;
9682 filename
= files
[i
];
9683 if (filename
[0] == '-') {
9684 if (tcc_add_library(s
, filename
+ 2) < 0)
9685 error("cannot find %s", filename
);
9687 if (tcc_add_file(s
, filename
) < 0) {
9694 /* free all files */
9699 total_time
= (double)(getclock_us() - start_time
) / 1000000.0;
9700 if (total_time
< 0.001)
9702 if (total_bytes
< 1)
9704 printf("%d idents, %d lines, %d bytes, %0.3f s, %d lines/s, %0.1f MB/s\n",
9705 tok_ident
- TOK_IDENT
, total_lines
, total_bytes
,
9706 total_time
, (int)(total_lines
/ total_time
),
9707 total_bytes
/ total_time
/ 1000000.0);
9710 if (s
->output_type
!= TCC_OUTPUT_MEMORY
) {
9711 tcc_output_file(s
, outfile
);
9714 ret
= tcc_run(s
, argc
- optind
, argv
+ optind
);
9717 /* XXX: cannot do it with bound checking because of the malloc hooks */
9718 if (!do_bounds_check
)
9723 printf("memory: %d bytes, max = %d bytes\n", mem_cur_size
, mem_max_size
);