2 * TCC - Tiny C Compiler
4 * Copyright (c) 2001-2004 Fabrice Bellard
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 /********************************************************/
24 /* global variables */
26 /* display benchmark infos */
31 static struct BufferedFile
*file
;
34 static CString tokcstr
; /* current parsed string, if any */
35 /* additional informations about token */
37 #define TOK_FLAG_BOL 0x0001 /* beginning of line before */
38 #define TOK_FLAG_BOF 0x0002 /* beginning of file before */
39 #define TOK_FLAG_ENDIF 0x0004 /* a endif was found matching starting #ifdef */
40 #define TOK_FLAG_EOF 0x0008 /* end of file */
42 static int *macro_ptr
, *macro_ptr_allocated
;
43 static int *unget_saved_macro_ptr
;
44 static int unget_saved_buffer
[TOK_MAX_SIZE
+ 1];
45 static int unget_buffer_enabled
;
46 static int parse_flags
;
47 #define PARSE_FLAG_PREPROCESS 0x0001 /* activate preprocessing */
48 #define PARSE_FLAG_TOK_NUM 0x0002 /* return numbers instead of TOK_PPNUM */
49 #define PARSE_FLAG_LINEFEED 0x0004 /* line feed is returned as a
50 token. line feed is also
52 #define PARSE_FLAG_ASM_COMMENTS 0x0008 /* '#' can be used for line comment */
53 #define PARSE_FLAG_SPACES 0x0010 /* next() returns space tokens (for -E) */
55 static Section
*text_section
, *data_section
, *bss_section
; /* predefined sections */
56 static Section
*cur_text_section
; /* current section where function code is
59 static Section
*last_text_section
; /* to handle .previous asm directive */
61 /* bound check related sections */
62 static Section
*bounds_section
; /* contains global data bound description */
63 static Section
*lbounds_section
; /* contains local data bound description */
65 static Section
*symtab_section
, *strtab_section
;
68 static Section
*stab_section
, *stabstr_section
;
70 /* loc : local variable index
71 ind : output code index
73 anon_sym: anonymous symbol index
75 static int rsym
, anon_sym
, ind
, loc
;
76 /* expression generation modifiers */
77 static int const_wanted
; /* true if constant wanted */
78 static int nocode_wanted
; /* true if no code generation wanted for an expression */
79 static int global_expr
; /* true if compound literals must be allocated
80 globally (used during initializers parsing */
81 static CType func_vt
; /* current function return type (used by return
84 static int last_line_num
, last_ind
, func_ind
; /* debug last line number and pc */
86 static TokenSym
**table_ident
;
87 static TokenSym
*hash_ident
[TOK_HASH_SIZE
];
88 static char token_buf
[STRING_MAX_SIZE
+ 1];
89 static char *funcname
;
90 static Sym
*global_stack
, *local_stack
;
91 static Sym
*define_stack
;
92 static Sym
*global_label_stack
, *local_label_stack
;
93 /* symbol allocator */
94 #define SYM_POOL_NB (8192 / sizeof(Sym))
95 static Sym
*sym_free_first
;
96 static void **sym_pools
;
97 static int nb_sym_pools
;
99 static SValue vstack
[VSTACK_SIZE
], *vtop
;
100 /* some predefined types */
101 static CType char_pointer_type
, func_old_type
, int_type
;
103 /* use GNU C extensions */
104 static int gnu_ext
= 1;
106 /* use Tiny C extensions */
107 static int tcc_ext
= 1;
109 /* max number of callers shown if error */
110 #ifdef CONFIG_TCC_BACKTRACE
112 const char **rt_bound_error_msg
;
115 /* XXX: get rid of this ASAP */
116 static struct TCCState
*tcc_state
;
118 /********************************************************/
119 /* function prototypes */
122 static void next(void);
123 char *get_tok_str(int v
, CValue
*cv
);
126 static void parse_expr_type(CType
*type
);
127 static void expr_type(CType
*type
);
128 static void unary_type(CType
*type
);
129 static void block(int *bsym
, int *csym
, int *case_sym
, int *def_sym
,
130 int case_reg
, int is_expr
);
131 static int expr_const(void);
132 static void expr_eq(void);
133 static void gexpr(void);
134 static void gen_inline_functions(void);
135 static void decl(int l
);
136 static void decl_initializer(CType
*type
, Section
*sec
, unsigned long c
,
137 int first
, int size_only
);
138 static void decl_initializer_alloc(CType
*type
, AttributeDef
*ad
, int r
,
139 int has_init
, int v
, int scope
);
141 void gv2(int rc1
, int rc2
);
142 void move_reg(int r
, int s
);
143 void save_regs(int n
);
144 void save_reg(int r
);
149 int get_reg_ex(int rc
,int rc2
);
152 void force_charshort_cast(int t
);
153 static void gen_cast(CType
*type
);
155 static Sym
*sym_find(int v
);
156 static Sym
*sym_push(int v
, CType
*type
, int r
, int c
);
159 static int type_size(CType
*type
, int *a
);
160 static inline CType
*pointed_type(CType
*type
);
161 static int pointed_size(CType
*type
);
162 static int lvalue_type(int t
);
163 static int parse_btype(CType
*type
, AttributeDef
*ad
);
164 static void type_decl(CType
*type
, AttributeDef
*ad
, int *v
, int td
);
165 static int compare_types(CType
*type1
, CType
*type2
, int unqualified
);
166 static int is_compatible_types(CType
*type1
, CType
*type2
);
167 static int is_compatible_parameter_types(CType
*type1
, CType
*type2
);
169 int ieee_finite(double d
);
171 void vpushll(long long v
);
174 void lexpand_nr(void);
175 static void vpush_global_sym(CType
*type
, int v
);
176 void vset(CType
*type
, int r
, int v
);
177 void type_to_str(char *buf
, int buf_size
,
178 CType
*type
, const char *varstr
);
179 static Sym
*get_sym_ref(CType
*type
, Section
*sec
,
180 unsigned long offset
, unsigned long size
);
181 static Sym
*external_global_sym(int v
, CType
*type
, int r
);
183 /* section generation */
184 static void section_realloc(Section
*sec
, unsigned long new_size
);
185 static void *section_ptr_add(Section
*sec
, unsigned long size
);
186 static void put_extern_sym(Sym
*sym
, Section
*section
,
187 unsigned long value
, unsigned long size
);
188 static void greloc(Section
*s
, Sym
*sym
, unsigned long addr
, int type
);
189 static int put_elf_str(Section
*s
, const char *sym
);
190 static int put_elf_sym(Section
*s
,
191 unsigned long value
, unsigned long size
,
192 int info
, int other
, int shndx
, const char *name
);
193 static int add_elf_sym(Section
*s
, unsigned long value
, unsigned long size
,
194 int info
, int other
, int sh_num
, const char *name
);
195 static void put_elf_reloc(Section
*symtab
, Section
*s
, unsigned long offset
,
196 int type
, int symbol
);
197 static void put_stabs(const char *str
, int type
, int other
, int desc
,
198 unsigned long value
);
199 static void put_stabs_r(const char *str
, int type
, int other
, int desc
,
200 unsigned long value
, Section
*sec
, int sym_index
);
201 static void put_stabn(int type
, int other
, int desc
, int value
);
202 static void put_stabd(int type
, int other
, int desc
);
203 static int tcc_add_dll(TCCState
*s
, const char *filename
, int flags
);
205 #define AFF_PRINT_ERROR 0x0001 /* print error if file not found */
206 #define AFF_REFERENCED_DLL 0x0002 /* load a referenced dll from another dll */
207 #define AFF_PREPROCESS 0x0004 /* preprocess file */
208 static int tcc_add_file_internal(TCCState
*s
, const char *filename
, int flags
);
211 int tcc_output_coff(TCCState
*s1
, FILE *f
);
214 void *resolve_sym(TCCState
*s1
, const char *sym
, int type
);
215 int pe_load_def_file(struct TCCState
*s1
, int fd
);
216 int pe_test_res_file(void *v
, int size
);
217 int pe_load_res_file(struct TCCState
*s1
, int fd
);
218 void pe_add_runtime(struct TCCState
*s1
);
219 void pe_guess_outfile(char *objfilename
, int output_type
);
220 int pe_output_file(struct TCCState
*s1
, const char *filename
);
223 #ifdef CONFIG_TCC_ASM
224 static void asm_expr(TCCState
*s1
, ExprValue
*pe
);
225 static int asm_int_expr(TCCState
*s1
);
226 static int find_constraint(ASMOperand
*operands
, int nb_operands
,
227 const char *name
, const char **pp
);
229 static int tcc_assemble(TCCState
*s1
, int do_preprocess
);
232 static void asm_instr(void);
233 static void asm_global_instr(void);
235 /********************************************************/
236 /* global variables */
238 #ifdef TCC_TARGET_I386
239 #include "i386-gen.c"
242 #ifdef TCC_TARGET_ARM
246 #ifdef TCC_TARGET_C67
250 #ifdef TCC_TARGET_X86_64
251 #include "x86_64-gen.c"
254 #ifdef CONFIG_TCC_STATIC
256 #define RTLD_LAZY 0x001
257 #define RTLD_NOW 0x002
258 #define RTLD_GLOBAL 0x100
259 #define RTLD_DEFAULT NULL
261 /* dummy function for profiling */
262 void *dlopen(const char *filename
, int flag
)
267 void dlclose(void *p
)
271 const char *dlerror(void)
276 typedef struct TCCSyms
{
281 #define TCCSYM(a) { #a, &a, },
283 /* add the symbol you want here if no dynamic linking is done */
284 static TCCSyms tcc_syms
[] = {
285 #if !defined(CONFIG_TCCBOOT)
294 void *resolve_sym(TCCState
*s1
, const char *symbol
, int type
)
298 while (p
->str
!= NULL
) {
299 if (!strcmp(p
->str
, symbol
))
306 #elif !defined(_WIN32)
310 void *resolve_sym(TCCState
*s1
, const char *sym
, int type
)
312 return dlsym(RTLD_DEFAULT
, sym
);
317 /********************************************************/
319 /* we use our own 'finite' function to avoid potential problems with
320 non standard math libs */
321 /* XXX: endianness dependent */
322 int ieee_finite(double d
)
325 return ((unsigned)((p
[1] | 0x800fffff) + 1)) >> 31;
328 /* copy a string and truncate it. */
329 char *pstrcpy(char *buf
, int buf_size
, const char *s
)
336 q_end
= buf
+ buf_size
- 1;
348 /* strcat and truncate. */
349 char *pstrcat(char *buf
, int buf_size
, const char *s
)
354 pstrcpy(buf
+ len
, buf_size
- len
, s
);
358 /* extract the basename of a file */
359 char *tcc_basename(const char *name
)
361 char *p
= strchr(name
, 0);
362 while (p
> name
&& !IS_PATHSEP(p
[-1]))
367 char *tcc_fileextension (const char *name
)
369 char *b
= tcc_basename(name
);
370 char *e
= strrchr(b
, '.');
371 return e
? e
: strchr(b
, 0);
375 char *normalize_slashes(char *path
)
378 for (p
= path
; *p
; ++p
)
384 void tcc_set_lib_path_w32(TCCState
*s
)
386 /* on win32, we suppose the lib and includes are at the location
389 GetModuleFileNameA(NULL
, path
, sizeof path
);
390 p
= tcc_basename(normalize_slashes(strlwr(path
)));
391 if (p
- 5 > path
&& 0 == strncmp(p
- 5, "/bin/", 5))
396 tcc_set_lib_path(s
, path
);
400 void set_pages_executable(void *ptr
, unsigned long length
)
403 unsigned long old_protect
;
404 VirtualProtect(ptr
, length
, PAGE_EXECUTE_READWRITE
, &old_protect
);
406 unsigned long start
, end
;
407 start
= (unsigned long)ptr
& ~(PAGESIZE
- 1);
408 end
= (unsigned long)ptr
+ length
;
409 end
= (end
+ PAGESIZE
- 1) & ~(PAGESIZE
- 1);
410 mprotect((void *)start
, end
- start
, PROT_READ
| PROT_WRITE
| PROT_EXEC
);
414 /* memory management */
418 unsigned malloc_usable_size(void*);
421 void tcc_free(void *ptr
)
424 mem_cur_size
-= malloc_usable_size(ptr
);
429 void *tcc_malloc(unsigned long size
)
434 error("memory full");
436 mem_cur_size
+= malloc_usable_size(ptr
);
437 if (mem_cur_size
> mem_max_size
)
438 mem_max_size
= mem_cur_size
;
443 void *tcc_mallocz(unsigned long size
)
446 ptr
= tcc_malloc(size
);
447 memset(ptr
, 0, size
);
451 void *tcc_realloc(void *ptr
, unsigned long size
)
455 mem_cur_size
-= malloc_usable_size(ptr
);
457 ptr1
= realloc(ptr
, size
);
459 /* NOTE: count not correct if alloc error, but not critical */
460 mem_cur_size
+= malloc_usable_size(ptr1
);
461 if (mem_cur_size
> mem_max_size
)
462 mem_max_size
= mem_cur_size
;
467 char *tcc_strdup(const char *str
)
470 ptr
= tcc_malloc(strlen(str
) + 1);
475 #define free(p) use_tcc_free(p)
476 #define malloc(s) use_tcc_malloc(s)
477 #define realloc(p, s) use_tcc_realloc(p, s)
479 void dynarray_add(void ***ptab
, int *nb_ptr
, void *data
)
486 /* every power of two we double array size */
487 if ((nb
& (nb
- 1)) == 0) {
492 pp
= tcc_realloc(pp
, nb_alloc
* sizeof(void *));
494 error("memory full");
501 void dynarray_reset(void *pp
, int *n
)
504 for (p
= *(void***)pp
; *n
; ++p
, --*n
)
507 tcc_free(*(void**)pp
);
511 /* symbol allocator */
512 static Sym
*__sym_malloc(void)
514 Sym
*sym_pool
, *sym
, *last_sym
;
517 sym_pool
= tcc_malloc(SYM_POOL_NB
* sizeof(Sym
));
518 dynarray_add(&sym_pools
, &nb_sym_pools
, sym_pool
);
520 last_sym
= sym_free_first
;
522 for(i
= 0; i
< SYM_POOL_NB
; i
++) {
523 sym
->next
= last_sym
;
527 sym_free_first
= last_sym
;
531 static inline Sym
*sym_malloc(void)
534 sym
= sym_free_first
;
536 sym
= __sym_malloc();
537 sym_free_first
= sym
->next
;
541 static inline void sym_free(Sym
*sym
)
543 sym
->next
= sym_free_first
;
544 sym_free_first
= sym
;
547 Section
*new_section(TCCState
*s1
, const char *name
, int sh_type
, int sh_flags
)
551 sec
= tcc_mallocz(sizeof(Section
) + strlen(name
));
552 strcpy(sec
->name
, name
);
553 sec
->sh_type
= sh_type
;
554 sec
->sh_flags
= sh_flags
;
562 sec
->sh_addralign
= 4;
565 sec
->sh_addralign
= 1;
568 sec
->sh_addralign
= 32; /* default conservative alignment */
572 if (sh_flags
& SHF_PRIVATE
) {
573 dynarray_add((void ***)&s1
->priv_sections
, &s1
->nb_priv_sections
, sec
);
575 sec
->sh_num
= s1
->nb_sections
;
576 dynarray_add((void ***)&s1
->sections
, &s1
->nb_sections
, sec
);
582 static void free_section(Section
*s
)
587 /* realloc section and set its content to zero */
588 static void section_realloc(Section
*sec
, unsigned long new_size
)
593 size
= sec
->data_allocated
;
596 while (size
< new_size
)
598 data
= tcc_realloc(sec
->data
, size
);
600 error("memory full");
601 memset(data
+ sec
->data_allocated
, 0, size
- sec
->data_allocated
);
603 sec
->data_allocated
= size
;
606 /* reserve at least 'size' bytes in section 'sec' from
608 static void *section_ptr_add(Section
*sec
, unsigned long size
)
610 unsigned long offset
, offset1
;
612 offset
= sec
->data_offset
;
613 offset1
= offset
+ size
;
614 if (offset1
> sec
->data_allocated
)
615 section_realloc(sec
, offset1
);
616 sec
->data_offset
= offset1
;
617 return sec
->data
+ offset
;
620 /* return a reference to a section, and create it if it does not
622 Section
*find_section(TCCState
*s1
, const char *name
)
626 for(i
= 1; i
< s1
->nb_sections
; i
++) {
627 sec
= s1
->sections
[i
];
628 if (!strcmp(name
, sec
->name
))
631 /* sections are created as PROGBITS */
632 return new_section(s1
, name
, SHT_PROGBITS
, SHF_ALLOC
);
635 /* update sym->c so that it points to an external symbol in section
636 'section' with value 'value' */
637 static void put_extern_sym2(Sym
*sym
, Section
*section
,
638 unsigned long value
, unsigned long size
,
639 int can_add_underscore
)
641 int sym_type
, sym_bind
, sh_num
, info
, other
, attr
;
648 else if (section
== SECTION_ABS
)
651 sh_num
= section
->sh_num
;
655 if ((sym
->type
.t
& VT_BTYPE
) == VT_FUNC
) {
659 attr
= sym
->type
.ref
->r
;
660 if (FUNC_EXPORT(attr
))
662 if (FUNC_CALL(attr
) == FUNC_STDCALL
)
666 sym_type
= STT_OBJECT
;
669 if (sym
->type
.t
& VT_STATIC
)
670 sym_bind
= STB_LOCAL
;
672 sym_bind
= STB_GLOBAL
;
675 name
= get_tok_str(sym
->v
, NULL
);
676 #ifdef CONFIG_TCC_BCHECK
677 if (tcc_state
->do_bounds_check
) {
680 /* XXX: avoid doing that for statics ? */
681 /* if bound checking is activated, we change some function
682 names by adding the "__bound" prefix */
685 /* XXX: we rely only on malloc hooks */
698 strcpy(buf
, "__bound_");
707 if ((other
& 2) && can_add_underscore
) {
708 sprintf(buf1
, "_%s@%d", name
, FUNC_ARGS(attr
));
712 if (tcc_state
->leading_underscore
&& can_add_underscore
) {
714 pstrcpy(buf1
+ 1, sizeof(buf1
) - 1, name
);
717 info
= ELFW(ST_INFO
)(sym_bind
, sym_type
);
718 sym
->c
= add_elf_sym(symtab_section
, value
, size
, info
, other
, sh_num
, name
);
720 esym
= &((ElfW(Sym
) *)symtab_section
->data
)[sym
->c
];
721 esym
->st_value
= value
;
722 esym
->st_size
= size
;
723 esym
->st_shndx
= sh_num
;
724 esym
->st_other
|= other
;
728 static void put_extern_sym(Sym
*sym
, Section
*section
,
729 unsigned long value
, unsigned long size
)
731 put_extern_sym2(sym
, section
, value
, size
, 1);
734 /* add a new relocation entry to symbol 'sym' in section 's' */
735 static void greloc(Section
*s
, Sym
*sym
, unsigned long offset
, int type
)
738 put_extern_sym(sym
, NULL
, 0, 0);
739 /* now we can add ELF relocation info */
740 put_elf_reloc(symtab_section
, s
, offset
, type
, sym
->c
);
743 static inline int isid(int c
)
745 return (c
>= 'a' && c
<= 'z') ||
746 (c
>= 'A' && c
<= 'Z') ||
750 static inline int isnum(int c
)
752 return c
>= '0' && c
<= '9';
755 static inline int isoct(int c
)
757 return c
>= '0' && c
<= '7';
760 static inline int toup(int c
)
762 if (c
>= 'a' && c
<= 'z')
763 return c
- 'a' + 'A';
768 static void strcat_vprintf(char *buf
, int buf_size
, const char *fmt
, va_list ap
)
772 vsnprintf(buf
+ len
, buf_size
- len
, fmt
, ap
);
775 static void strcat_printf(char *buf
, int buf_size
, const char *fmt
, ...)
779 strcat_vprintf(buf
, buf_size
, fmt
, ap
);
783 void error1(TCCState
*s1
, int is_warning
, const char *fmt
, va_list ap
)
790 for(f
= s1
->include_stack
; f
< s1
->include_stack_ptr
; f
++)
791 strcat_printf(buf
, sizeof(buf
), "In file included from %s:%d:\n",
792 (*f
)->filename
, (*f
)->line_num
);
793 if (file
->line_num
> 0) {
794 strcat_printf(buf
, sizeof(buf
),
795 "%s:%d: ", file
->filename
, file
->line_num
);
797 strcat_printf(buf
, sizeof(buf
),
798 "%s: ", file
->filename
);
801 strcat_printf(buf
, sizeof(buf
),
805 strcat_printf(buf
, sizeof(buf
), "warning: ");
806 strcat_vprintf(buf
, sizeof(buf
), fmt
, ap
);
808 if (!s1
->error_func
) {
809 /* default case: stderr */
810 fprintf(stderr
, "%s\n", buf
);
812 s1
->error_func(s1
->error_opaque
, buf
);
814 if (!is_warning
|| s1
->warn_error
)
818 void tcc_set_error_func(TCCState
*s
, void *error_opaque
,
819 void (*error_func
)(void *opaque
, const char *msg
))
821 s
->error_opaque
= error_opaque
;
822 s
->error_func
= error_func
;
825 /* error without aborting current compilation */
826 void error_noabort(const char *fmt
, ...)
828 TCCState
*s1
= tcc_state
;
832 error1(s1
, 0, fmt
, ap
);
836 void error(const char *fmt
, ...)
838 TCCState
*s1
= tcc_state
;
842 error1(s1
, 0, fmt
, ap
);
844 /* better than nothing: in some cases, we accept to handle errors */
845 if (s1
->error_set_jmp_enabled
) {
846 longjmp(s1
->error_jmp_buf
, 1);
848 /* XXX: eliminate this someday */
853 void expect(const char *msg
)
855 error("%s expected", msg
);
858 void warning(const char *fmt
, ...)
860 TCCState
*s1
= tcc_state
;
867 error1(s1
, 1, fmt
, ap
);
874 error("'%c' expected", c
);
878 static void test_lvalue(void)
880 if (!(vtop
->r
& VT_LVAL
))
884 /* CString handling */
886 static void cstr_realloc(CString
*cstr
, int new_size
)
891 size
= cstr
->size_allocated
;
893 size
= 8; /* no need to allocate a too small first string */
894 while (size
< new_size
)
896 data
= tcc_realloc(cstr
->data_allocated
, size
);
898 error("memory full");
899 cstr
->data_allocated
= data
;
900 cstr
->size_allocated
= size
;
905 static inline void cstr_ccat(CString
*cstr
, int ch
)
908 size
= cstr
->size
+ 1;
909 if (size
> cstr
->size_allocated
)
910 cstr_realloc(cstr
, size
);
911 ((unsigned char *)cstr
->data
)[size
- 1] = ch
;
915 static void cstr_cat(CString
*cstr
, const char *str
)
927 /* add a wide char */
928 static void cstr_wccat(CString
*cstr
, int ch
)
931 size
= cstr
->size
+ sizeof(nwchar_t
);
932 if (size
> cstr
->size_allocated
)
933 cstr_realloc(cstr
, size
);
934 *(nwchar_t
*)(((unsigned char *)cstr
->data
) + size
- sizeof(nwchar_t
)) = ch
;
938 static void cstr_new(CString
*cstr
)
940 memset(cstr
, 0, sizeof(CString
));
943 /* free string and reset it to NULL */
944 static void cstr_free(CString
*cstr
)
946 tcc_free(cstr
->data_allocated
);
950 #define cstr_reset(cstr) cstr_free(cstr)
953 static void add_char(CString
*cstr
, int c
)
955 if (c
== '\'' || c
== '\"' || c
== '\\') {
956 /* XXX: could be more precise if char or string */
957 cstr_ccat(cstr
, '\\');
959 if (c
>= 32 && c
<= 126) {
962 cstr_ccat(cstr
, '\\');
964 cstr_ccat(cstr
, 'n');
966 cstr_ccat(cstr
, '0' + ((c
>> 6) & 7));
967 cstr_ccat(cstr
, '0' + ((c
>> 3) & 7));
968 cstr_ccat(cstr
, '0' + (c
& 7));
973 /* push, without hashing */
974 static Sym
*sym_push2(Sym
**ps
, int v
, int t
, long c
)
988 /* find a symbol and return its associated structure. 's' is the top
989 of the symbol stack */
990 static Sym
*sym_find2(Sym
*s
, int v
)
1000 /* structure lookup */
1001 static inline Sym
*struct_find(int v
)
1004 if ((unsigned)v
>= (unsigned)(tok_ident
- TOK_IDENT
))
1006 return table_ident
[v
]->sym_struct
;
1009 /* find an identifier */
1010 static inline Sym
*sym_find(int v
)
1013 if ((unsigned)v
>= (unsigned)(tok_ident
- TOK_IDENT
))
1015 return table_ident
[v
]->sym_identifier
;
1018 /* push a given symbol on the symbol stack */
1019 static Sym
*sym_push(int v
, CType
*type
, int r
, int c
)
1028 s
= sym_push2(ps
, v
, type
->t
, c
);
1029 s
->type
.ref
= type
->ref
;
1031 /* don't record fields or anonymous symbols */
1033 if (!(v
& SYM_FIELD
) && (v
& ~SYM_STRUCT
) < SYM_FIRST_ANOM
) {
1034 /* record symbol in token array */
1035 ts
= table_ident
[(v
& ~SYM_STRUCT
) - TOK_IDENT
];
1037 ps
= &ts
->sym_struct
;
1039 ps
= &ts
->sym_identifier
;
1046 /* push a global identifier */
1047 static Sym
*global_identifier_push(int v
, int t
, int c
)
1050 s
= sym_push2(&global_stack
, v
, t
, c
);
1051 /* don't record anonymous symbol */
1052 if (v
< SYM_FIRST_ANOM
) {
1053 ps
= &table_ident
[v
- TOK_IDENT
]->sym_identifier
;
1054 /* modify the top most local identifier, so that
1055 sym_identifier will point to 's' when popped */
1057 ps
= &(*ps
)->prev_tok
;
1064 /* pop symbols until top reaches 'b' */
1065 static void sym_pop(Sym
**ptop
, Sym
*b
)
1075 /* remove symbol in token array */
1077 if (!(v
& SYM_FIELD
) && (v
& ~SYM_STRUCT
) < SYM_FIRST_ANOM
) {
1078 ts
= table_ident
[(v
& ~SYM_STRUCT
) - TOK_IDENT
];
1080 ps
= &ts
->sym_struct
;
1082 ps
= &ts
->sym_identifier
;
1093 BufferedFile
*tcc_open(TCCState
*s1
, const char *filename
)
1098 if (strcmp(filename
, "-") == 0)
1099 fd
= 0, filename
= "stdin";
1101 fd
= open(filename
, O_RDONLY
| O_BINARY
);
1102 if ((s1
->verbose
== 2 && fd
>= 0) || s1
->verbose
== 3)
1103 printf("%s %*s%s\n", fd
< 0 ? "nf":"->",
1104 (s1
->include_stack_ptr
- s1
->include_stack
), "", filename
);
1107 bf
= tcc_malloc(sizeof(BufferedFile
));
1109 bf
->buf_ptr
= bf
->buffer
;
1110 bf
->buf_end
= bf
->buffer
;
1111 bf
->buffer
[0] = CH_EOB
; /* put eob symbol */
1112 pstrcpy(bf
->filename
, sizeof(bf
->filename
), filename
);
1114 normalize_slashes(bf
->filename
);
1117 bf
->ifndef_macro
= 0;
1118 bf
->ifdef_stack_ptr
= s1
->ifdef_stack_ptr
;
1119 // printf("opening '%s'\n", filename);
1123 void tcc_close(BufferedFile
*bf
)
1125 total_lines
+= bf
->line_num
;
1134 /* compile the C file opened in 'file'. Return non zero if errors. */
1135 static int tcc_compile(TCCState
*s1
)
1139 volatile int section_sym
;
1142 printf("%s: **** new file\n", file
->filename
);
1144 preprocess_init(s1
);
1146 cur_text_section
= NULL
;
1148 anon_sym
= SYM_FIRST_ANOM
;
1150 /* file info: full path + filename */
1151 section_sym
= 0; /* avoid warning */
1153 section_sym
= put_elf_sym(symtab_section
, 0, 0,
1154 ELFW(ST_INFO
)(STB_LOCAL
, STT_SECTION
), 0,
1155 text_section
->sh_num
, NULL
);
1156 getcwd(buf
, sizeof(buf
));
1158 normalize_slashes(buf
);
1160 pstrcat(buf
, sizeof(buf
), "/");
1161 put_stabs_r(buf
, N_SO
, 0, 0,
1162 text_section
->data_offset
, text_section
, section_sym
);
1163 put_stabs_r(file
->filename
, N_SO
, 0, 0,
1164 text_section
->data_offset
, text_section
, section_sym
);
1166 /* an elf symbol of type STT_FILE must be put so that STB_LOCAL
1167 symbols can be safely used */
1168 put_elf_sym(symtab_section
, 0, 0,
1169 ELFW(ST_INFO
)(STB_LOCAL
, STT_FILE
), 0,
1170 SHN_ABS
, file
->filename
);
1172 /* define some often used types */
1173 int_type
.t
= VT_INT
;
1175 char_pointer_type
.t
= VT_BYTE
;
1176 mk_pointer(&char_pointer_type
);
1178 func_old_type
.t
= VT_FUNC
;
1179 func_old_type
.ref
= sym_push(SYM_FIELD
, &int_type
, FUNC_CDECL
, FUNC_OLD
);
1181 #if defined(TCC_ARM_EABI) && defined(TCC_ARM_VFP)
1182 float_type
.t
= VT_FLOAT
;
1183 double_type
.t
= VT_DOUBLE
;
1185 func_float_type
.t
= VT_FUNC
;
1186 func_float_type
.ref
= sym_push(SYM_FIELD
, &float_type
, FUNC_CDECL
, FUNC_OLD
);
1187 func_double_type
.t
= VT_FUNC
;
1188 func_double_type
.ref
= sym_push(SYM_FIELD
, &double_type
, FUNC_CDECL
, FUNC_OLD
);
1192 /* define 'void *alloca(unsigned int)' builtin function */
1197 sym
= sym_push(p
, mk_pointer(VT_VOID
), FUNC_CDECL
, FUNC_NEW
);
1198 s1
= sym_push(SYM_FIELD
, VT_UNSIGNED
| VT_INT
, 0, 0);
1201 sym_push(TOK_alloca
, VT_FUNC
| (p
<< VT_STRUCT_SHIFT
), VT_CONST
, 0);
1205 define_start
= define_stack
;
1208 if (setjmp(s1
->error_jmp_buf
) == 0) {
1210 s1
->error_set_jmp_enabled
= 1;
1212 ch
= file
->buf_ptr
[0];
1213 tok_flags
= TOK_FLAG_BOL
| TOK_FLAG_BOF
;
1214 parse_flags
= PARSE_FLAG_PREPROCESS
| PARSE_FLAG_TOK_NUM
;
1218 expect("declaration");
1220 /* end of translation unit info */
1222 put_stabs_r(NULL
, N_SO
, 0, 0,
1223 text_section
->data_offset
, text_section
, section_sym
);
1226 s1
->error_set_jmp_enabled
= 0;
1228 /* reset define stack, but leave -Dsymbols (may be incorrect if
1229 they are undefined) */
1230 free_defines(define_start
);
1232 gen_inline_functions();
1234 sym_pop(&global_stack
, NULL
);
1235 sym_pop(&local_stack
, NULL
);
1237 return s1
->nb_errors
!= 0 ? -1 : 0;
1240 int tcc_compile_string(TCCState
*s
, const char *str
)
1242 BufferedFile bf1
, *bf
= &bf1
;
1246 /* init file structure */
1248 /* XXX: avoid copying */
1250 buf
= tcc_malloc(len
+ 1);
1253 memcpy(buf
, str
, len
);
1256 bf
->buf_end
= buf
+ len
;
1257 pstrcpy(bf
->filename
, sizeof(bf
->filename
), "<string>");
1260 ret
= tcc_compile(s
);
1264 /* currently, no need to close */
1268 /* define a preprocessor symbol. A value can also be provided with the '=' operator */
1269 void tcc_define_symbol(TCCState
*s1
, const char *sym
, const char *value
)
1271 BufferedFile bf1
, *bf
= &bf1
;
1273 pstrcpy(bf
->buffer
, IO_BUF_SIZE
, sym
);
1274 pstrcat(bf
->buffer
, IO_BUF_SIZE
, " ");
1278 pstrcat(bf
->buffer
, IO_BUF_SIZE
, value
);
1280 /* init file structure */
1282 bf
->buf_ptr
= bf
->buffer
;
1283 bf
->buf_end
= bf
->buffer
+ strlen(bf
->buffer
);
1284 *bf
->buf_end
= CH_EOB
;
1285 bf
->filename
[0] = '\0';
1289 s1
->include_stack_ptr
= s1
->include_stack
;
1291 /* parse with define parser */
1292 ch
= file
->buf_ptr
[0];
1298 /* undefine a preprocessor symbol */
1299 void tcc_undefine_symbol(TCCState
*s1
, const char *sym
)
1303 ts
= tok_alloc(sym
, strlen(sym
));
1304 s
= define_find(ts
->tok
);
1305 /* undefine symbol by putting an invalid name */
1310 #ifdef CONFIG_TCC_ASM
1312 #ifdef TCC_TARGET_I386
1313 #include "i386-asm.c"
1318 static void asm_instr(void)
1320 error("inline asm() not supported");
1322 static void asm_global_instr(void)
1324 error("inline asm() not supported");
1330 #ifdef TCC_TARGET_COFF
1331 #include "tcccoff.c"
1334 #ifdef TCC_TARGET_PE
1338 #ifdef CONFIG_TCC_BACKTRACE
1339 /* print the position in the source file of PC value 'pc' by reading
1340 the stabs debug information */
1341 static void rt_printline(unsigned long wanted_pc
)
1343 Stab_Sym
*sym
, *sym_end
;
1344 char func_name
[128], last_func_name
[128];
1345 unsigned long func_addr
, last_pc
, pc
;
1346 const char *incl_files
[INCLUDE_STACK_SIZE
];
1347 int incl_index
, len
, last_line_num
, i
;
1348 const char *str
, *p
;
1350 fprintf(stderr
, "0x%08lx:", wanted_pc
);
1352 func_name
[0] = '\0';
1355 last_func_name
[0] = '\0';
1356 last_pc
= 0xffffffff;
1358 sym
= (Stab_Sym
*)stab_section
->data
+ 1;
1359 sym_end
= (Stab_Sym
*)(stab_section
->data
+ stab_section
->data_offset
);
1360 while (sym
< sym_end
) {
1361 switch(sym
->n_type
) {
1362 /* function start or end */
1364 if (sym
->n_strx
== 0) {
1365 /* we test if between last line and end of function */
1366 pc
= sym
->n_value
+ func_addr
;
1367 if (wanted_pc
>= last_pc
&& wanted_pc
< pc
)
1369 func_name
[0] = '\0';
1372 str
= stabstr_section
->data
+ sym
->n_strx
;
1373 p
= strchr(str
, ':');
1375 pstrcpy(func_name
, sizeof(func_name
), str
);
1378 if (len
> sizeof(func_name
) - 1)
1379 len
= sizeof(func_name
) - 1;
1380 memcpy(func_name
, str
, len
);
1381 func_name
[len
] = '\0';
1383 func_addr
= sym
->n_value
;
1386 /* line number info */
1388 pc
= sym
->n_value
+ func_addr
;
1389 if (wanted_pc
>= last_pc
&& wanted_pc
< pc
)
1392 last_line_num
= sym
->n_desc
;
1394 strcpy(last_func_name
, func_name
);
1398 str
= stabstr_section
->data
+ sym
->n_strx
;
1400 if (incl_index
< INCLUDE_STACK_SIZE
) {
1401 incl_files
[incl_index
++] = str
;
1409 if (sym
->n_strx
== 0) {
1410 incl_index
= 0; /* end of translation unit */
1412 str
= stabstr_section
->data
+ sym
->n_strx
;
1413 /* do not add path */
1415 if (len
> 0 && str
[len
- 1] != '/')
1423 /* second pass: we try symtab symbols (no line number info) */
1426 ElfW(Sym
) *sym
, *sym_end
;
1429 sym_end
= (ElfW(Sym
) *)(symtab_section
->data
+ symtab_section
->data_offset
);
1430 for(sym
= (ElfW(Sym
) *)symtab_section
->data
+ 1;
1433 type
= ELFW(ST_TYPE
)(sym
->st_info
);
1434 if (type
== STT_FUNC
) {
1435 if (wanted_pc
>= sym
->st_value
&&
1436 wanted_pc
< sym
->st_value
+ sym
->st_size
) {
1437 pstrcpy(last_func_name
, sizeof(last_func_name
),
1438 strtab_section
->data
+ sym
->st_name
);
1444 /* did not find any info: */
1445 fprintf(stderr
, " ???\n");
1448 if (last_func_name
[0] != '\0') {
1449 fprintf(stderr
, " %s()", last_func_name
);
1451 if (incl_index
> 0) {
1452 fprintf(stderr
, " (%s:%d",
1453 incl_files
[incl_index
- 1], last_line_num
);
1454 for(i
= incl_index
- 2; i
>= 0; i
--)
1455 fprintf(stderr
, ", included from %s", incl_files
[i
]);
1456 fprintf(stderr
, ")");
1458 fprintf(stderr
, "\n");
1462 /* fix for glibc 2.1 */
1468 /* return the PC at frame level 'level'. Return non zero if not found */
1469 static int rt_get_caller_pc(unsigned long *paddr
,
1470 ucontext_t
*uc
, int level
)
1476 #if defined(__FreeBSD__)
1477 *paddr
= uc
->uc_mcontext
.mc_eip
;
1478 #elif defined(__dietlibc__)
1479 *paddr
= uc
->uc_mcontext
.eip
;
1481 *paddr
= uc
->uc_mcontext
.gregs
[REG_EIP
];
1485 #if defined(__FreeBSD__)
1486 fp
= uc
->uc_mcontext
.mc_ebp
;
1487 #elif defined(__dietlibc__)
1488 fp
= uc
->uc_mcontext
.ebp
;
1490 fp
= uc
->uc_mcontext
.gregs
[REG_EBP
];
1492 for(i
=1;i
<level
;i
++) {
1493 /* XXX: check address validity with program info */
1494 if (fp
<= 0x1000 || fp
>= 0xc0000000)
1496 fp
= ((unsigned long *)fp
)[0];
1498 *paddr
= ((unsigned long *)fp
)[1];
1502 #elif defined(__x86_64__)
1503 /* return the PC at frame level 'level'. Return non zero if not found */
1504 static int rt_get_caller_pc(unsigned long *paddr
,
1505 ucontext_t
*uc
, int level
)
1511 /* XXX: only support linux */
1512 *paddr
= uc
->uc_mcontext
.gregs
[REG_RIP
];
1515 fp
= uc
->uc_mcontext
.gregs
[REG_RBP
];
1516 for(i
=1;i
<level
;i
++) {
1517 /* XXX: check address validity with program info */
1520 fp
= ((unsigned long *)fp
)[0];
1522 *paddr
= ((unsigned long *)fp
)[1];
1527 #warning add arch specific rt_get_caller_pc()
1528 static int rt_get_caller_pc(unsigned long *paddr
,
1529 ucontext_t
*uc
, int level
)
1535 /* emit a run time error at position 'pc' */
1536 void rt_error(ucontext_t
*uc
, const char *fmt
, ...)
1543 fprintf(stderr
, "Runtime error: ");
1544 vfprintf(stderr
, fmt
, ap
);
1545 fprintf(stderr
, "\n");
1546 for(i
=0;i
<num_callers
;i
++) {
1547 if (rt_get_caller_pc(&pc
, uc
, i
) < 0)
1550 fprintf(stderr
, "at ");
1552 fprintf(stderr
, "by ");
1559 /* signal handler for fatal errors */
1560 static void sig_error(int signum
, siginfo_t
*siginf
, void *puc
)
1562 ucontext_t
*uc
= puc
;
1566 switch(siginf
->si_code
) {
1569 rt_error(uc
, "division by zero");
1572 rt_error(uc
, "floating point exception");
1578 if (rt_bound_error_msg
&& *rt_bound_error_msg
)
1579 rt_error(uc
, *rt_bound_error_msg
);
1581 rt_error(uc
, "dereferencing invalid pointer");
1584 rt_error(uc
, "illegal instruction");
1587 rt_error(uc
, "abort() called");
1590 rt_error(uc
, "caught signal %d", signum
);
1598 /* copy code into memory passed in by the caller and do all relocations
1599 (needed before using tcc_get_symbol()).
1600 returns -1 on error and required size if ptr is NULL */
1601 int tcc_relocate(TCCState
*s1
, void *ptr
)
1604 unsigned long offset
, length
, mem
;
1607 if (0 == s1
->runtime_added
) {
1608 s1
->runtime_added
= 1;
1610 #ifdef TCC_TARGET_PE
1612 relocate_common_syms();
1613 tcc_add_linker_symbols(s1
);
1615 tcc_add_runtime(s1
);
1616 relocate_common_syms();
1617 tcc_add_linker_symbols(s1
);
1618 build_got_entries(s1
);
1622 offset
= 0, mem
= (unsigned long)ptr
;
1623 for(i
= 1; i
< s1
->nb_sections
; i
++) {
1624 s
= s1
->sections
[i
];
1625 if (0 == (s
->sh_flags
& SHF_ALLOC
))
1627 length
= s
->data_offset
;
1628 s
->sh_addr
= mem
? (mem
+ offset
+ 15) & ~15 : 0;
1629 offset
= (offset
+ length
+ 15) & ~15;
1632 /* relocate symbols */
1633 relocate_syms(s1
, 1);
1637 #ifdef TCC_TARGET_X86_64
1638 s1
->runtime_plt_and_got_offset
= 0;
1639 s1
->runtime_plt_and_got
= (char *)(mem
+ offset
);
1640 /* double the size of the buffer for got and plt entries
1641 XXX: calculate exact size for them? */
1648 /* relocate each section */
1649 for(i
= 1; i
< s1
->nb_sections
; i
++) {
1650 s
= s1
->sections
[i
];
1652 relocate_section(s1
, s
);
1655 for(i
= 1; i
< s1
->nb_sections
; i
++) {
1656 s
= s1
->sections
[i
];
1657 if (0 == (s
->sh_flags
& SHF_ALLOC
))
1659 length
= s
->data_offset
;
1660 // printf("%-12s %08x %04x\n", s->name, s->sh_addr, length);
1661 ptr
= (void*)s
->sh_addr
;
1662 if (NULL
== s
->data
|| s
->sh_type
== SHT_NOBITS
)
1663 memset(ptr
, 0, length
);
1665 memcpy(ptr
, s
->data
, length
);
1666 /* mark executable sections as executable in memory */
1667 if (s
->sh_flags
& SHF_EXECINSTR
)
1668 set_pages_executable(ptr
, length
);
1670 #ifdef TCC_TARGET_X86_64
1671 set_pages_executable(s1
->runtime_plt_and_got
,
1672 s1
->runtime_plt_and_got_offset
);
1677 /* launch the compiled program with the given arguments */
1678 int tcc_run(TCCState
*s1
, int argc
, char **argv
)
1680 int (*prog_main
)(int, char **);
1684 ret
= tcc_relocate(s1
, NULL
);
1687 ptr
= tcc_malloc(ret
);
1688 tcc_relocate(s1
, ptr
);
1690 prog_main
= tcc_get_symbol_err(s1
, "main");
1693 #ifdef CONFIG_TCC_BACKTRACE
1694 struct sigaction sigact
;
1695 /* install TCC signal handlers to print debug info on fatal
1697 sigact
.sa_flags
= SA_SIGINFO
| SA_RESETHAND
;
1698 sigact
.sa_sigaction
= sig_error
;
1699 sigemptyset(&sigact
.sa_mask
);
1700 sigaction(SIGFPE
, &sigact
, NULL
);
1701 sigaction(SIGILL
, &sigact
, NULL
);
1702 sigaction(SIGSEGV
, &sigact
, NULL
);
1703 sigaction(SIGBUS
, &sigact
, NULL
);
1704 sigaction(SIGABRT
, &sigact
, NULL
);
1706 error("debug mode not available");
1710 #ifdef CONFIG_TCC_BCHECK
1711 if (s1
->do_bounds_check
) {
1712 void (*bound_init
)(void);
1714 /* set error function */
1715 rt_bound_error_msg
= tcc_get_symbol_err(s1
, "__bound_error_msg");
1717 /* XXX: use .init section so that it also work in binary ? */
1718 bound_init
= (void *)tcc_get_symbol_err(s1
, "__bound_init");
1722 ret
= (*prog_main
)(argc
, argv
);
1727 void tcc_memstats(void)
1730 printf("memory in use: %d\n", mem_cur_size
);
1734 static void tcc_cleanup(void)
1738 if (NULL
== tcc_state
)
1742 /* free -D defines */
1746 n
= tok_ident
- TOK_IDENT
;
1747 for(i
= 0; i
< n
; i
++)
1748 tcc_free(table_ident
[i
]);
1749 tcc_free(table_ident
);
1751 /* free sym_pools */
1752 dynarray_reset(&sym_pools
, &nb_sym_pools
);
1754 cstr_free(&tokcstr
);
1755 /* reset symbol stack */
1756 sym_free_first
= NULL
;
1757 /* cleanup from error/setjmp */
1761 TCCState
*tcc_new(void)
1767 s
= tcc_mallocz(sizeof(TCCState
));
1771 s
->output_type
= TCC_OUTPUT_MEMORY
;
1772 s
->tcc_lib_path
= CONFIG_TCCDIR
;
1776 /* we add dummy defines for some special macros to speed up tests
1777 and to have working defined() */
1778 define_push(TOK___LINE__
, MACRO_OBJ
, NULL
, NULL
);
1779 define_push(TOK___FILE__
, MACRO_OBJ
, NULL
, NULL
);
1780 define_push(TOK___DATE__
, MACRO_OBJ
, NULL
, NULL
);
1781 define_push(TOK___TIME__
, MACRO_OBJ
, NULL
, NULL
);
1783 /* standard defines */
1784 tcc_define_symbol(s
, "__STDC__", NULL
);
1785 tcc_define_symbol(s
, "__STDC_VERSION__", "199901L");
1786 #if defined(TCC_TARGET_I386)
1787 tcc_define_symbol(s
, "__i386__", NULL
);
1789 #if defined(TCC_TARGET_X86_64)
1790 tcc_define_symbol(s
, "__x86_64__", NULL
);
1792 #if defined(TCC_TARGET_ARM)
1793 tcc_define_symbol(s
, "__ARM_ARCH_4__", NULL
);
1794 tcc_define_symbol(s
, "__arm_elf__", NULL
);
1795 tcc_define_symbol(s
, "__arm_elf", NULL
);
1796 tcc_define_symbol(s
, "arm_elf", NULL
);
1797 tcc_define_symbol(s
, "__arm__", NULL
);
1798 tcc_define_symbol(s
, "__arm", NULL
);
1799 tcc_define_symbol(s
, "arm", NULL
);
1800 tcc_define_symbol(s
, "__APCS_32__", NULL
);
1802 #ifdef TCC_TARGET_PE
1803 tcc_define_symbol(s
, "_WIN32", NULL
);
1805 tcc_define_symbol(s
, "__unix__", NULL
);
1806 tcc_define_symbol(s
, "__unix", NULL
);
1807 #if defined(__linux)
1808 tcc_define_symbol(s
, "__linux__", NULL
);
1809 tcc_define_symbol(s
, "__linux", NULL
);
1812 /* tiny C specific defines */
1813 tcc_define_symbol(s
, "__TINYC__", NULL
);
1815 /* tiny C & gcc defines */
1816 tcc_define_symbol(s
, "__SIZE_TYPE__", "unsigned int");
1817 tcc_define_symbol(s
, "__PTRDIFF_TYPE__", "int");
1818 #ifdef TCC_TARGET_PE
1819 tcc_define_symbol(s
, "__WCHAR_TYPE__", "unsigned short");
1821 tcc_define_symbol(s
, "__WCHAR_TYPE__", "int");
1824 #ifndef TCC_TARGET_PE
1825 /* default library paths */
1826 tcc_add_library_path(s
, CONFIG_SYSROOT
"/usr/local/lib");
1827 tcc_add_library_path(s
, CONFIG_SYSROOT
"/usr/lib");
1828 tcc_add_library_path(s
, CONFIG_SYSROOT
"/lib");
1831 /* no section zero */
1832 dynarray_add((void ***)&s
->sections
, &s
->nb_sections
, NULL
);
1834 /* create standard sections */
1835 text_section
= new_section(s
, ".text", SHT_PROGBITS
, SHF_ALLOC
| SHF_EXECINSTR
);
1836 data_section
= new_section(s
, ".data", SHT_PROGBITS
, SHF_ALLOC
| SHF_WRITE
);
1837 bss_section
= new_section(s
, ".bss", SHT_NOBITS
, SHF_ALLOC
| SHF_WRITE
);
1839 /* symbols are always generated for linking stage */
1840 symtab_section
= new_symtab(s
, ".symtab", SHT_SYMTAB
, 0,
1842 ".hashtab", SHF_PRIVATE
);
1843 strtab_section
= symtab_section
->link
;
1845 /* private symbol table for dynamic symbols */
1846 s
->dynsymtab_section
= new_symtab(s
, ".dynsymtab", SHT_SYMTAB
, SHF_PRIVATE
,
1848 ".dynhashtab", SHF_PRIVATE
);
1849 s
->alacarte_link
= 1;
1851 #ifdef CHAR_IS_UNSIGNED
1852 s
->char_is_unsigned
= 1;
1854 #if defined(TCC_TARGET_PE) && 0
1855 /* XXX: currently the PE linker is not ready to support that */
1856 s
->leading_underscore
= 1;
1861 void tcc_delete(TCCState
*s1
)
1867 /* free all sections */
1868 for(i
= 1; i
< s1
->nb_sections
; i
++)
1869 free_section(s1
->sections
[i
]);
1870 dynarray_reset(&s1
->sections
, &s1
->nb_sections
);
1872 for(i
= 0; i
< s1
->nb_priv_sections
; i
++)
1873 free_section(s1
->priv_sections
[i
]);
1874 dynarray_reset(&s1
->priv_sections
, &s1
->nb_priv_sections
);
1876 /* free any loaded DLLs */
1877 for ( i
= 0; i
< s1
->nb_loaded_dlls
; i
++) {
1878 DLLReference
*ref
= s1
->loaded_dlls
[i
];
1880 dlclose(ref
->handle
);
1883 /* free loaded dlls array */
1884 dynarray_reset(&s1
->loaded_dlls
, &s1
->nb_loaded_dlls
);
1886 /* free library paths */
1887 dynarray_reset(&s1
->library_paths
, &s1
->nb_library_paths
);
1889 /* free include paths */
1890 dynarray_reset(&s1
->cached_includes
, &s1
->nb_cached_includes
);
1891 dynarray_reset(&s1
->include_paths
, &s1
->nb_include_paths
);
1892 dynarray_reset(&s1
->sysinclude_paths
, &s1
->nb_sysinclude_paths
);
1897 int tcc_add_include_path(TCCState
*s1
, const char *pathname
)
1901 pathname1
= tcc_strdup(pathname
);
1902 dynarray_add((void ***)&s1
->include_paths
, &s1
->nb_include_paths
, pathname1
);
1906 int tcc_add_sysinclude_path(TCCState
*s1
, const char *pathname
)
1910 pathname1
= tcc_strdup(pathname
);
1911 dynarray_add((void ***)&s1
->sysinclude_paths
, &s1
->nb_sysinclude_paths
, pathname1
);
1915 static int tcc_add_file_internal(TCCState
*s1
, const char *filename
, int flags
)
1920 BufferedFile
*saved_file
;
1922 /* find source file type with extension */
1923 ext
= tcc_fileextension(filename
);
1929 file
= tcc_open(s1
, filename
);
1931 if (flags
& AFF_PRINT_ERROR
) {
1932 error_noabort("file '%s' not found", filename
);
1938 if (flags
& AFF_PREPROCESS
) {
1939 ret
= tcc_preprocess(s1
);
1940 } else if (!ext
[0] || !PATHCMP(ext
, "c")) {
1941 /* C file assumed */
1942 ret
= tcc_compile(s1
);
1944 #ifdef CONFIG_TCC_ASM
1945 if (!strcmp(ext
, "S")) {
1946 /* preprocessed assembler */
1947 ret
= tcc_assemble(s1
, 1);
1948 } else if (!strcmp(ext
, "s")) {
1949 /* non preprocessed assembler */
1950 ret
= tcc_assemble(s1
, 0);
1953 #ifdef TCC_TARGET_PE
1954 if (!PATHCMP(ext
, "def")) {
1955 ret
= pe_load_def_file(s1
, file
->fd
);
1960 /* assume executable format: auto guess file type */
1961 ret
= read(fd
, &ehdr
, sizeof(ehdr
));
1962 lseek(fd
, 0, SEEK_SET
);
1964 error_noabort("could not read header");
1966 } else if (ret
!= sizeof(ehdr
)) {
1967 goto try_load_script
;
1970 if (ehdr
.e_ident
[0] == ELFMAG0
&&
1971 ehdr
.e_ident
[1] == ELFMAG1
&&
1972 ehdr
.e_ident
[2] == ELFMAG2
&&
1973 ehdr
.e_ident
[3] == ELFMAG3
) {
1974 file
->line_num
= 0; /* do not display line number if error */
1975 if (ehdr
.e_type
== ET_REL
) {
1976 ret
= tcc_load_object_file(s1
, fd
, 0);
1977 } else if (ehdr
.e_type
== ET_DYN
) {
1978 if (s1
->output_type
== TCC_OUTPUT_MEMORY
) {
1979 #ifdef TCC_TARGET_PE
1983 h
= dlopen(filename
, RTLD_GLOBAL
| RTLD_LAZY
);
1990 ret
= tcc_load_dll(s1
, fd
, filename
,
1991 (flags
& AFF_REFERENCED_DLL
) != 0);
1994 error_noabort("unrecognized ELF file");
1997 } else if (memcmp((char *)&ehdr
, ARMAG
, 8) == 0) {
1998 file
->line_num
= 0; /* do not display line number if error */
1999 ret
= tcc_load_archive(s1
, fd
);
2001 #ifdef TCC_TARGET_COFF
2002 if (*(uint16_t *)(&ehdr
) == COFF_C67_MAGIC
) {
2003 ret
= tcc_load_coff(s1
, fd
);
2006 #ifdef TCC_TARGET_PE
2007 if (pe_test_res_file(&ehdr
, ret
)) {
2008 ret
= pe_load_res_file(s1
, fd
);
2012 /* as GNU ld, consider it is an ld script if not recognized */
2014 ret
= tcc_load_ldscript(s1
);
2016 error_noabort("unrecognized file type");
2031 int tcc_add_file(TCCState
*s
, const char *filename
)
2033 if (s
->output_type
== TCC_OUTPUT_PREPROCESS
)
2034 return tcc_add_file_internal(s
, filename
, AFF_PRINT_ERROR
| AFF_PREPROCESS
);
2036 return tcc_add_file_internal(s
, filename
, AFF_PRINT_ERROR
);
2039 int tcc_add_library_path(TCCState
*s
, const char *pathname
)
2043 pathname1
= tcc_strdup(pathname
);
2044 dynarray_add((void ***)&s
->library_paths
, &s
->nb_library_paths
, pathname1
);
2048 /* find and load a dll. Return non zero if not found */
2049 /* XXX: add '-rpath' option support ? */
2050 static int tcc_add_dll(TCCState
*s
, const char *filename
, int flags
)
2055 for(i
= 0; i
< s
->nb_library_paths
; i
++) {
2056 snprintf(buf
, sizeof(buf
), "%s/%s",
2057 s
->library_paths
[i
], filename
);
2058 if (tcc_add_file_internal(s
, buf
, flags
) == 0)
2064 /* the library name is the same as the argument of the '-l' option */
2065 int tcc_add_library(TCCState
*s
, const char *libraryname
)
2070 /* first we look for the dynamic library if not static linking */
2071 if (!s
->static_link
) {
2072 #ifdef TCC_TARGET_PE
2073 snprintf(buf
, sizeof(buf
), "%s.def", libraryname
);
2075 snprintf(buf
, sizeof(buf
), "lib%s.so", libraryname
);
2077 if (tcc_add_dll(s
, buf
, 0) == 0)
2081 /* then we look for the static library */
2082 for(i
= 0; i
< s
->nb_library_paths
; i
++) {
2083 snprintf(buf
, sizeof(buf
), "%s/lib%s.a",
2084 s
->library_paths
[i
], libraryname
);
2085 if (tcc_add_file_internal(s
, buf
, 0) == 0)
2091 int tcc_add_symbol(TCCState
*s
, const char *name
, void *val
)
2093 add_elf_sym(symtab_section
, (unsigned long)val
, 0,
2094 ELFW(ST_INFO
)(STB_GLOBAL
, STT_NOTYPE
), 0,
2099 int tcc_set_output_type(TCCState
*s
, int output_type
)
2103 s
->output_type
= output_type
;
2106 /* default include paths */
2107 /* XXX: reverse order needed if -isystem support */
2108 #ifndef TCC_TARGET_PE
2109 tcc_add_sysinclude_path(s
, CONFIG_SYSROOT
"/usr/local/include");
2110 tcc_add_sysinclude_path(s
, CONFIG_SYSROOT
"/usr/include");
2112 snprintf(buf
, sizeof(buf
), "%s/include", s
->tcc_lib_path
);
2113 tcc_add_sysinclude_path(s
, buf
);
2114 #ifdef TCC_TARGET_PE
2115 snprintf(buf
, sizeof(buf
), "%s/include/winapi", s
->tcc_lib_path
);
2116 tcc_add_sysinclude_path(s
, buf
);
2120 /* if bound checking, then add corresponding sections */
2121 #ifdef CONFIG_TCC_BCHECK
2122 if (s
->do_bounds_check
) {
2124 tcc_define_symbol(s
, "__BOUNDS_CHECKING_ON", NULL
);
2125 /* create bounds sections */
2126 bounds_section
= new_section(s
, ".bounds",
2127 SHT_PROGBITS
, SHF_ALLOC
);
2128 lbounds_section
= new_section(s
, ".lbounds",
2129 SHT_PROGBITS
, SHF_ALLOC
);
2133 if (s
->char_is_unsigned
) {
2134 tcc_define_symbol(s
, "__CHAR_UNSIGNED__", NULL
);
2137 /* add debug sections */
2140 stab_section
= new_section(s
, ".stab", SHT_PROGBITS
, 0);
2141 stab_section
->sh_entsize
= sizeof(Stab_Sym
);
2142 stabstr_section
= new_section(s
, ".stabstr", SHT_STRTAB
, 0);
2143 put_elf_str(stabstr_section
, "");
2144 stab_section
->link
= stabstr_section
;
2145 /* put first entry */
2146 put_stabs("", 0, 0, 0, 0);
2149 /* add libc crt1/crti objects */
2150 #ifndef TCC_TARGET_PE
2151 if ((output_type
== TCC_OUTPUT_EXE
|| output_type
== TCC_OUTPUT_DLL
) &&
2153 if (output_type
!= TCC_OUTPUT_DLL
)
2154 tcc_add_file(s
, CONFIG_TCC_CRT_PREFIX
"/crt1.o");
2155 tcc_add_file(s
, CONFIG_TCC_CRT_PREFIX
"/crti.o");
2159 #ifdef TCC_TARGET_PE
2160 snprintf(buf
, sizeof(buf
), "%s/lib", s
->tcc_lib_path
);
2161 tcc_add_library_path(s
, buf
);
2167 #define WD_ALL 0x0001 /* warning is activated when using -Wall */
2168 #define FD_INVERT 0x0002 /* invert value before storing */
2170 typedef struct FlagDef
{
2176 static const FlagDef warning_defs
[] = {
2177 { offsetof(TCCState
, warn_unsupported
), 0, "unsupported" },
2178 { offsetof(TCCState
, warn_write_strings
), 0, "write-strings" },
2179 { offsetof(TCCState
, warn_error
), 0, "error" },
2180 { offsetof(TCCState
, warn_implicit_function_declaration
), WD_ALL
,
2181 "implicit-function-declaration" },
2184 static int set_flag(TCCState
*s
, const FlagDef
*flags
, int nb_flags
,
2185 const char *name
, int value
)
2192 if (r
[0] == 'n' && r
[1] == 'o' && r
[2] == '-') {
2196 for(i
= 0, p
= flags
; i
< nb_flags
; i
++, p
++) {
2197 if (!strcmp(r
, p
->name
))
2202 if (p
->flags
& FD_INVERT
)
2204 *(int *)((uint8_t *)s
+ p
->offset
) = value
;
2209 /* set/reset a warning */
2210 int tcc_set_warning(TCCState
*s
, const char *warning_name
, int value
)
2215 if (!strcmp(warning_name
, "all")) {
2216 for(i
= 0, p
= warning_defs
; i
< countof(warning_defs
); i
++, p
++) {
2217 if (p
->flags
& WD_ALL
)
2218 *(int *)((uint8_t *)s
+ p
->offset
) = 1;
2222 return set_flag(s
, warning_defs
, countof(warning_defs
),
2223 warning_name
, value
);
2227 static const FlagDef flag_defs
[] = {
2228 { offsetof(TCCState
, char_is_unsigned
), 0, "unsigned-char" },
2229 { offsetof(TCCState
, char_is_unsigned
), FD_INVERT
, "signed-char" },
2230 { offsetof(TCCState
, nocommon
), FD_INVERT
, "common" },
2231 { offsetof(TCCState
, leading_underscore
), 0, "leading-underscore" },
2234 /* set/reset a flag */
2235 int tcc_set_flag(TCCState
*s
, const char *flag_name
, int value
)
2237 return set_flag(s
, flag_defs
, countof(flag_defs
),
2241 /* set CONFIG_TCCDIR at runtime */
2242 void tcc_set_lib_path(TCCState
*s
, const char *path
)
2244 s
->tcc_lib_path
= tcc_strdup(path
);
2247 void tcc_print_stats(TCCState
*s
, int64_t total_time
)
2250 tt
= (double)total_time
/ 1000000.0;
2253 if (total_bytes
< 1)
2255 printf("%d idents, %d lines, %d bytes, %0.3f s, %d lines/s, %0.1f MB/s\n",
2256 tok_ident
- TOK_IDENT
, total_lines
, total_bytes
,
2257 tt
, (int)(total_lines
/ tt
),
2258 total_bytes
/ tt
/ 1000000.0);