Add support for thread-local storage variables
[tinycc.git] / libtcc.c
blobfbea50bd12d0e4f32925e69ee495cdccc4d3bdbc
1 /*
2 * TCC - Tiny C Compiler
3 *
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
21 #include "tcc.h"
23 /********************************************************/
24 /* global variables */
26 /* use GNU C extensions */
27 ST_DATA int gnu_ext = 1;
29 /* use TinyCC extensions */
30 ST_DATA int tcc_ext = 1;
32 /* XXX: get rid of this ASAP */
33 ST_DATA struct TCCState *tcc_state;
35 /********************************************************/
37 #ifdef ONE_SOURCE
38 #include "tccpp.c"
39 #include "tccgen.c"
40 #include "tccelf.c"
41 #include "tccrun.c"
42 #ifdef TCC_TARGET_I386
43 #include "i386-gen.c"
44 #endif
45 #ifdef TCC_TARGET_ARM
46 #include "arm-gen.c"
47 #endif
48 #ifdef TCC_TARGET_C67
49 #include "c67-gen.c"
50 #endif
51 #ifdef TCC_TARGET_X86_64
52 #include "x86_64-gen.c"
53 #endif
54 #ifdef CONFIG_TCC_ASM
55 #include "tccasm.c"
56 #if defined TCC_TARGET_I386 || defined TCC_TARGET_X86_64
57 #include "i386-asm.c"
58 #endif
59 #endif
60 #ifdef TCC_TARGET_COFF
61 #include "tcccoff.c"
62 #endif
63 #ifdef TCC_TARGET_PE
64 #include "tccpe.c"
65 #endif
66 #endif /* ONE_SOURCE */
68 /********************************************************/
69 #ifndef CONFIG_TCC_ASM
70 ST_FUNC void asm_instr(void)
72 tcc_error("inline asm() not supported");
74 ST_FUNC void asm_global_instr(void)
76 tcc_error("inline asm() not supported");
78 #endif
80 /********************************************************/
81 #ifdef _WIN32
82 static char *normalize_slashes(char *path)
84 char *p;
85 for (p = path; *p; ++p)
86 if (*p == '\\')
87 *p = '/';
88 return path;
91 static HMODULE tcc_module;
93 /* on win32, we suppose the lib and includes are at the location of 'tcc.exe' */
94 static void tcc_set_lib_path_w32(TCCState *s)
96 char path[1024], *p;
97 GetModuleFileNameA(tcc_module, path, sizeof path);
98 p = tcc_basename(normalize_slashes(strlwr(path)));
99 if (p - 5 > path && 0 == strncmp(p - 5, "/bin/", 5))
100 p -= 5;
101 else if (p > path)
102 p--;
103 *p = 0;
104 tcc_set_lib_path(s, path);
107 #ifdef TCC_TARGET_PE
108 static void tcc_add_systemdir(TCCState *s)
110 char buf[1000];
111 GetSystemDirectory(buf, sizeof buf);
112 tcc_add_library_path(s, normalize_slashes(buf));
114 #endif
116 #ifndef CONFIG_TCC_STATIC
117 void dlclose(void *p)
119 FreeLibrary((HMODULE)p);
121 #endif
123 #ifdef LIBTCC_AS_DLL
124 BOOL WINAPI DllMain (HANDLE hDll, DWORD dwReason, LPVOID lpReserved)
126 if (DLL_PROCESS_ATTACH == dwReason)
127 tcc_module = hDll;
128 return TRUE;
130 #endif
131 #endif
133 /********************************************************/
134 /* copy a string and truncate it. */
135 PUB_FUNC char *pstrcpy(char *buf, int buf_size, const char *s)
137 char *q, *q_end;
138 int c;
140 if (buf_size > 0) {
141 q = buf;
142 q_end = buf + buf_size - 1;
143 while (q < q_end) {
144 c = *s++;
145 if (c == '\0')
146 break;
147 *q++ = c;
149 *q = '\0';
151 return buf;
154 /* strcat and truncate. */
155 PUB_FUNC char *pstrcat(char *buf, int buf_size, const char *s)
157 int len;
158 len = strlen(buf);
159 if (len < buf_size)
160 pstrcpy(buf + len, buf_size - len, s);
161 return buf;
164 PUB_FUNC char *pstrncpy(char *out, const char *in, size_t num)
166 memcpy(out, in, num);
167 out[num] = '\0';
168 return out;
171 /* extract the basename of a file */
172 PUB_FUNC char *tcc_basename(const char *name)
174 char *p = strchr(name, 0);
175 while (p > name && !IS_DIRSEP(p[-1]))
176 --p;
177 return p;
180 /* extract extension part of a file
182 * (if no extension, return pointer to end-of-string)
184 PUB_FUNC char *tcc_fileextension (const char *name)
186 char *b = tcc_basename(name);
187 char *e = strrchr(b, '.');
188 return e ? e : strchr(b, 0);
191 /********************************************************/
192 /* memory management */
194 #undef free
195 #undef malloc
196 #undef realloc
198 #ifdef MEM_DEBUG
199 ST_DATA int mem_cur_size;
200 ST_DATA int mem_max_size;
201 unsigned malloc_usable_size(void*);
202 #endif
204 PUB_FUNC void tcc_free(void *ptr)
206 #ifdef MEM_DEBUG
207 mem_cur_size -= malloc_usable_size(ptr);
208 #endif
209 free(ptr);
212 PUB_FUNC void *tcc_malloc(unsigned long size)
214 void *ptr;
215 ptr = malloc(size);
216 if (!ptr && size)
217 tcc_error("memory full");
218 #ifdef MEM_DEBUG
219 mem_cur_size += malloc_usable_size(ptr);
220 if (mem_cur_size > mem_max_size)
221 mem_max_size = mem_cur_size;
222 #endif
223 return ptr;
226 PUB_FUNC void *tcc_mallocz(unsigned long size)
228 void *ptr;
229 ptr = tcc_malloc(size);
230 memset(ptr, 0, size);
231 return ptr;
234 PUB_FUNC void *tcc_realloc(void *ptr, unsigned long size)
236 void *ptr1;
237 #ifdef MEM_DEBUG
238 mem_cur_size -= malloc_usable_size(ptr);
239 #endif
240 ptr1 = realloc(ptr, size);
241 if (!ptr1 && size)
242 tcc_error("memory full");
243 #ifdef MEM_DEBUG
244 /* NOTE: count not correct if alloc error, but not critical */
245 mem_cur_size += malloc_usable_size(ptr1);
246 if (mem_cur_size > mem_max_size)
247 mem_max_size = mem_cur_size;
248 #endif
249 return ptr1;
252 PUB_FUNC char *tcc_strdup(const char *str)
254 char *ptr;
255 ptr = tcc_malloc(strlen(str) + 1);
256 strcpy(ptr, str);
257 return ptr;
260 PUB_FUNC void tcc_memstats(void)
262 #ifdef MEM_DEBUG
263 printf("memory: %d bytes, max = %d bytes\n", mem_cur_size, mem_max_size);
264 #endif
267 #define free(p) use_tcc_free(p)
268 #define malloc(s) use_tcc_malloc(s)
269 #define realloc(p, s) use_tcc_realloc(p, s)
271 /********************************************************/
272 /* dynarrays */
274 ST_FUNC void dynarray_add(void ***ptab, int *nb_ptr, void *data)
276 int nb, nb_alloc;
277 void **pp;
279 nb = *nb_ptr;
280 pp = *ptab;
281 /* every power of two we double array size */
282 if ((nb & (nb - 1)) == 0) {
283 if (!nb)
284 nb_alloc = 1;
285 else
286 nb_alloc = nb * 2;
287 pp = tcc_realloc(pp, nb_alloc * sizeof(void *));
288 *ptab = pp;
290 pp[nb++] = data;
291 *nb_ptr = nb;
294 ST_FUNC void dynarray_reset(void *pp, int *n)
296 void **p;
297 for (p = *(void***)pp; *n; ++p, --*n)
298 if (*p)
299 tcc_free(*p);
300 tcc_free(*(void**)pp);
301 *(void**)pp = NULL;
304 static void tcc_split_path(TCCState *s, void ***p_ary, int *p_nb_ary, const char *in)
306 const char *p;
307 do {
308 int c;
309 CString str;
311 cstr_new(&str);
312 for (p = in; c = *p, c != '\0' && c != PATHSEP; ++p) {
313 if (c == '{' && p[1] && p[2] == '}') {
314 c = p[1], p += 2;
315 if (c == 'B')
316 cstr_cat(&str, s->tcc_lib_path);
317 } else {
318 cstr_ccat(&str, c);
321 cstr_ccat(&str, '\0');
322 dynarray_add(p_ary, p_nb_ary, str.data);
323 in = p+1;
324 } while (*p);
327 /********************************************************/
329 ST_FUNC Section *new_section(TCCState *s1, const char *name, int sh_type, int sh_flags)
331 Section *sec;
333 sec = tcc_mallocz(sizeof(Section) + strlen(name));
334 strcpy(sec->name, name);
335 sec->sh_type = sh_type;
336 sec->sh_flags = sh_flags;
337 switch(sh_type) {
338 case SHT_HASH:
339 case SHT_REL:
340 case SHT_RELA:
341 case SHT_DYNSYM:
342 case SHT_SYMTAB:
343 case SHT_DYNAMIC:
344 sec->sh_addralign = 4;
345 break;
346 case SHT_STRTAB:
347 sec->sh_addralign = 1;
348 break;
349 default:
350 sec->sh_addralign = 32; /* default conservative alignment */
351 break;
354 if (sh_flags & SHF_PRIVATE) {
355 dynarray_add((void ***)&s1->priv_sections, &s1->nb_priv_sections, sec);
356 } else {
357 sec->sh_num = s1->nb_sections;
358 dynarray_add((void ***)&s1->sections, &s1->nb_sections, sec);
361 return sec;
364 static void free_section(Section *s)
366 tcc_free(s->data);
369 /* realloc section and set its content to zero */
370 ST_FUNC void section_realloc(Section *sec, unsigned long new_size)
372 unsigned long size;
373 unsigned char *data;
375 size = sec->data_allocated;
376 if (size == 0)
377 size = 1;
378 while (size < new_size)
379 size = size * 2;
380 data = tcc_realloc(sec->data, size);
381 memset(data + sec->data_allocated, 0, size - sec->data_allocated);
382 sec->data = data;
383 sec->data_allocated = size;
386 /* reserve at least 'size' bytes in section 'sec' from
387 sec->data_offset. */
388 ST_FUNC void *section_ptr_add(Section *sec, unsigned long size)
390 unsigned long offset, offset1;
392 offset = sec->data_offset;
393 offset1 = offset + size;
394 if (offset1 > sec->data_allocated)
395 section_realloc(sec, offset1);
396 sec->data_offset = offset1;
397 return sec->data + offset;
400 /* reserve at least 'size' bytes from section start */
401 ST_FUNC void section_reserve(Section *sec, unsigned long size)
403 if (size > sec->data_allocated)
404 section_realloc(sec, size);
405 if (size > sec->data_offset)
406 sec->data_offset = size;
409 /* return a reference to a section, and create it if it does not
410 exists */
411 ST_FUNC Section *find_section(TCCState *s1, const char *name)
413 Section *sec;
414 int i;
415 for(i = 1; i < s1->nb_sections; i++) {
416 sec = s1->sections[i];
417 if (!strcmp(name, sec->name))
418 return sec;
420 /* sections are created as PROGBITS */
421 return new_section(s1, name, SHT_PROGBITS, SHF_ALLOC);
424 /* update sym->c so that it points to an external symbol in section
425 'section' with value 'value' */
426 ST_FUNC void put_extern_sym2(Sym *sym, Section *section,
427 addr_t value, unsigned long size,
428 int can_add_underscore)
430 int sym_type, sym_bind, sh_num, info, other;
431 ElfW(Sym) *esym;
432 const char *name;
433 char buf1[256];
435 if (section == NULL)
436 sh_num = SHN_UNDEF;
437 else if (section == SECTION_ABS)
438 sh_num = SHN_ABS;
439 else
440 sh_num = section->sh_num;
442 if ((sym->type.t & VT_BTYPE) == VT_FUNC) {
443 sym_type = STT_FUNC;
444 } else if ((sym->type.t & VT_BTYPE) == VT_VOID) {
445 sym_type = STT_NOTYPE;
446 } else {
447 if (section && section->sh_flags & SHF_TLS)
448 sym_type = STT_TLS;
449 else
450 sym_type = STT_OBJECT;
453 if (sym->type.t & VT_STATIC)
454 sym_bind = STB_LOCAL;
455 else {
456 if (sym->type.t & VT_WEAK)
457 sym_bind = STB_WEAK;
458 else
459 sym_bind = STB_GLOBAL;
462 if (!sym->c) {
463 name = get_tok_str(sym->v, NULL);
464 #ifdef CONFIG_TCC_BCHECK
465 if (tcc_state->do_bounds_check) {
466 char buf[32];
468 /* XXX: avoid doing that for statics ? */
469 /* if bound checking is activated, we change some function
470 names by adding the "__bound" prefix */
471 switch(sym->v) {
472 #ifdef TCC_TARGET_PE
473 /* XXX: we rely only on malloc hooks */
474 case TOK_malloc:
475 case TOK_free:
476 case TOK_realloc:
477 case TOK_memalign:
478 case TOK_calloc:
479 #endif
480 case TOK_memcpy:
481 case TOK_memmove:
482 case TOK_memset:
483 case TOK_strlen:
484 case TOK_strcpy:
485 case TOK_alloca:
486 strcpy(buf, "__bound_");
487 strcat(buf, name);
488 name = buf;
489 break;
492 #endif
493 other = 0;
495 #ifdef TCC_TARGET_PE
496 if (sym->type.t & VT_EXPORT)
497 other |= 1;
498 if (sym_type == STT_FUNC && sym->type.ref) {
499 int attr = sym->type.ref->r;
500 if (FUNC_EXPORT(attr))
501 other |= 1;
502 if (FUNC_CALL(attr) == FUNC_STDCALL && can_add_underscore) {
503 sprintf(buf1, "_%s@%d", name, FUNC_ARGS(attr) * PTR_SIZE);
504 name = buf1;
505 other |= 2;
506 can_add_underscore = 0;
508 } else {
509 if (find_elf_sym(tcc_state->dynsymtab_section, name))
510 other |= 4;
511 if (sym->type.t & VT_IMPORT)
512 other |= 4;
514 #endif
515 if (tcc_state->leading_underscore && can_add_underscore) {
516 buf1[0] = '_';
517 pstrcpy(buf1 + 1, sizeof(buf1) - 1, name);
518 name = buf1;
520 if (sym->asm_label) {
521 name = sym->asm_label;
523 info = ELFW(ST_INFO)(sym_bind, sym_type);
524 sym->c = add_elf_sym(symtab_section, value, size, info, other, sh_num, name);
525 } else {
526 esym = &((ElfW(Sym) *)symtab_section->data)[sym->c];
527 esym->st_value = value;
528 esym->st_size = size;
529 esym->st_shndx = sh_num;
533 ST_FUNC void put_extern_sym(Sym *sym, Section *section,
534 addr_t value, unsigned long size)
536 put_extern_sym2(sym, section, value, size, 1);
539 /* add a new relocation entry to symbol 'sym' in section 's' */
540 ST_FUNC void greloc(Section *s, Sym *sym, unsigned long offset, int type)
542 int c = 0;
543 if (sym) {
544 if (0 == sym->c)
545 put_extern_sym(sym, NULL, 0, 0);
546 c = sym->c;
548 /* now we can add ELF relocation info */
549 put_elf_reloc(symtab_section, s, offset, type, c);
552 /********************************************************/
554 static void strcat_vprintf(char *buf, int buf_size, const char *fmt, va_list ap)
556 int len;
557 len = strlen(buf);
558 vsnprintf(buf + len, buf_size - len, fmt, ap);
561 static void strcat_printf(char *buf, int buf_size, const char *fmt, ...)
563 va_list ap;
564 va_start(ap, fmt);
565 strcat_vprintf(buf, buf_size, fmt, ap);
566 va_end(ap);
569 static void error1(TCCState *s1, int is_warning, const char *fmt, va_list ap)
571 char buf[2048];
572 BufferedFile **pf, *f;
574 buf[0] = '\0';
575 /* use upper file if inline ":asm:" or token ":paste:" */
576 for (f = file; f && f->filename[0] == ':'; f = f->prev)
578 if (f) {
579 for(pf = s1->include_stack; pf < s1->include_stack_ptr; pf++)
580 strcat_printf(buf, sizeof(buf), "In file included from %s:%d:\n",
581 (*pf)->filename, (*pf)->line_num);
582 if (f->line_num > 0) {
583 strcat_printf(buf, sizeof(buf), "%s:%d: ",
584 f->filename, f->line_num);
585 } else {
586 strcat_printf(buf, sizeof(buf), "%s: ",
587 f->filename);
589 } else {
590 strcat_printf(buf, sizeof(buf), "tcc: ");
592 if (is_warning)
593 strcat_printf(buf, sizeof(buf), "warning: ");
594 else
595 strcat_printf(buf, sizeof(buf), "error: ");
596 strcat_vprintf(buf, sizeof(buf), fmt, ap);
598 if (!s1->error_func) {
599 /* default case: stderr */
600 fprintf(stderr, "%s\n", buf);
601 } else {
602 s1->error_func(s1->error_opaque, buf);
604 if (!is_warning || s1->warn_error)
605 s1->nb_errors++;
608 LIBTCCAPI void tcc_set_error_func(TCCState *s, void *error_opaque,
609 void (*error_func)(void *opaque, const char *msg))
611 s->error_opaque = error_opaque;
612 s->error_func = error_func;
615 /* error without aborting current compilation */
616 PUB_FUNC void tcc_error_noabort(const char *fmt, ...)
618 TCCState *s1 = tcc_state;
619 va_list ap;
621 va_start(ap, fmt);
622 error1(s1, 0, fmt, ap);
623 va_end(ap);
626 PUB_FUNC void tcc_error(const char *fmt, ...)
628 TCCState *s1 = tcc_state;
629 va_list ap;
631 va_start(ap, fmt);
632 error1(s1, 0, fmt, ap);
633 va_end(ap);
634 /* better than nothing: in some cases, we accept to handle errors */
635 if (s1->error_set_jmp_enabled) {
636 longjmp(s1->error_jmp_buf, 1);
637 } else {
638 /* XXX: eliminate this someday */
639 exit(1);
643 PUB_FUNC void tcc_warning(const char *fmt, ...)
645 TCCState *s1 = tcc_state;
646 va_list ap;
648 if (s1->warn_none)
649 return;
651 va_start(ap, fmt);
652 error1(s1, 1, fmt, ap);
653 va_end(ap);
656 /********************************************************/
657 /* I/O layer */
659 ST_FUNC void tcc_open_bf(TCCState *s1, const char *filename, int initlen)
661 BufferedFile *bf;
662 int buflen = initlen ? initlen : IO_BUF_SIZE;
664 bf = tcc_malloc(sizeof(BufferedFile) + buflen);
665 bf->buf_ptr = bf->buffer;
666 bf->buf_end = bf->buffer + initlen;
667 bf->buf_end[0] = CH_EOB; /* put eob symbol */
668 pstrcpy(bf->filename, sizeof(bf->filename), filename);
669 #ifdef _WIN32
670 normalize_slashes(bf->filename);
671 #endif
672 bf->line_num = 1;
673 bf->ifndef_macro = 0;
674 bf->ifdef_stack_ptr = s1->ifdef_stack_ptr;
675 bf->fd = -1;
676 bf->prev = file;
677 file = bf;
680 ST_FUNC void tcc_close(void)
682 BufferedFile *bf = file;
683 if (bf->fd > 0) {
684 close(bf->fd);
685 total_lines += bf->line_num;
687 file = bf->prev;
688 tcc_free(bf);
691 ST_FUNC int tcc_open(TCCState *s1, const char *filename)
693 int fd;
694 if (strcmp(filename, "-") == 0)
695 fd = 0, filename = "stdin";
696 else
697 fd = open(filename, O_RDONLY | O_BINARY);
698 if ((s1->verbose == 2 && fd >= 0) || s1->verbose == 3)
699 printf("%s %*s%s\n", fd < 0 ? "nf":"->",
700 (int)(s1->include_stack_ptr - s1->include_stack), "", filename);
701 if (fd < 0)
702 return -1;
704 tcc_open_bf(s1, filename, 0);
705 file->fd = fd;
706 return fd;
709 /* compile the C file opened in 'file'. Return non zero if errors. */
710 static int tcc_compile(TCCState *s1)
712 Sym *define_start;
713 SValue *pvtop;
714 char buf[512];
715 volatile int section_sym;
717 #ifdef INC_DEBUG
718 printf("%s: **** new file\n", file->filename);
719 #endif
720 preprocess_init(s1);
722 cur_text_section = NULL;
723 funcname = "";
724 anon_sym = SYM_FIRST_ANOM;
726 /* file info: full path + filename */
727 section_sym = 0; /* avoid warning */
728 if (s1->do_debug) {
729 section_sym = put_elf_sym(symtab_section, 0, 0,
730 ELFW(ST_INFO)(STB_LOCAL, STT_SECTION), 0,
731 text_section->sh_num, NULL);
732 getcwd(buf, sizeof(buf));
733 #ifdef _WIN32
734 normalize_slashes(buf);
735 #endif
736 pstrcat(buf, sizeof(buf), "/");
737 put_stabs_r(buf, N_SO, 0, 0,
738 text_section->data_offset, text_section, section_sym);
739 put_stabs_r(file->filename, N_SO, 0, 0,
740 text_section->data_offset, text_section, section_sym);
742 /* an elf symbol of type STT_FILE must be put so that STB_LOCAL
743 symbols can be safely used */
744 put_elf_sym(symtab_section, 0, 0,
745 ELFW(ST_INFO)(STB_LOCAL, STT_FILE), 0,
746 SHN_ABS, file->filename);
748 /* define some often used types */
749 int_type.t = VT_INT;
751 char_pointer_type.t = VT_BYTE;
752 mk_pointer(&char_pointer_type);
754 #if PTR_SIZE == 4
755 size_type.t = VT_INT;
756 #else
757 size_type.t = VT_LLONG;
758 #endif
760 func_old_type.t = VT_FUNC;
761 func_old_type.ref = sym_push(SYM_FIELD, &int_type, FUNC_CDECL, FUNC_OLD);
762 #ifdef TCC_TARGET_ARM
763 arm_init_types();
764 #endif
766 #if 0
767 /* define 'void *alloca(unsigned int)' builtin function */
769 Sym *s1;
771 p = anon_sym++;
772 sym = sym_push(p, mk_pointer(VT_VOID), FUNC_CDECL, FUNC_NEW);
773 s1 = sym_push(SYM_FIELD, VT_UNSIGNED | VT_INT, 0, 0);
774 s1->next = NULL;
775 sym->next = s1;
776 sym_push(TOK_alloca, VT_FUNC | (p << VT_STRUCT_SHIFT), VT_CONST, 0);
778 #endif
780 define_start = define_stack;
781 nocode_wanted = 1;
783 if (setjmp(s1->error_jmp_buf) == 0) {
784 s1->nb_errors = 0;
785 s1->error_set_jmp_enabled = 1;
787 ch = file->buf_ptr[0];
788 tok_flags = TOK_FLAG_BOL | TOK_FLAG_BOF;
789 parse_flags = PARSE_FLAG_PREPROCESS | PARSE_FLAG_TOK_NUM;
790 pvtop = vtop;
791 next();
792 decl(VT_CONST);
793 if (tok != TOK_EOF)
794 expect("declaration");
795 if (pvtop != vtop)
796 tcc_warning("internal compiler error: vstack leak? (%d)", vtop - pvtop);
798 /* end of translation unit info */
799 if (s1->do_debug) {
800 put_stabs_r(NULL, N_SO, 0, 0,
801 text_section->data_offset, text_section, section_sym);
805 s1->error_set_jmp_enabled = 0;
807 /* reset define stack, but leave -Dsymbols (may be incorrect if
808 they are undefined) */
809 free_defines(define_start);
811 gen_inline_functions();
813 sym_pop(&global_stack, NULL);
814 sym_pop(&local_stack, NULL);
816 return s1->nb_errors != 0 ? -1 : 0;
819 LIBTCCAPI int tcc_compile_string(TCCState *s, const char *str)
821 int len, ret;
822 len = strlen(str);
824 tcc_open_bf(s, "<string>", len);
825 memcpy(file->buffer, str, len);
826 ret = tcc_compile(s);
827 tcc_close();
828 return ret;
831 /* define a preprocessor symbol. A value can also be provided with the '=' operator */
832 LIBTCCAPI void tcc_define_symbol(TCCState *s1, const char *sym, const char *value)
834 int len1, len2;
835 /* default value */
836 if (!value)
837 value = "1";
838 len1 = strlen(sym);
839 len2 = strlen(value);
841 /* init file structure */
842 tcc_open_bf(s1, "<define>", len1 + len2 + 1);
843 memcpy(file->buffer, sym, len1);
844 file->buffer[len1] = ' ';
845 memcpy(file->buffer + len1 + 1, value, len2);
847 /* parse with define parser */
848 ch = file->buf_ptr[0];
849 next_nomacro();
850 parse_define();
852 tcc_close();
855 /* undefine a preprocessor symbol */
856 LIBTCCAPI void tcc_undefine_symbol(TCCState *s1, const char *sym)
858 TokenSym *ts;
859 Sym *s;
860 ts = tok_alloc(sym, strlen(sym));
861 s = define_find(ts->tok);
862 /* undefine symbol by putting an invalid name */
863 if (s)
864 define_undef(s);
867 /* cleanup all static data used during compilation */
868 static void tcc_cleanup(void)
870 int i, n;
871 if (NULL == tcc_state)
872 return;
873 tcc_state = NULL;
875 /* free -D defines */
876 free_defines(NULL);
878 /* free tokens */
879 n = tok_ident - TOK_IDENT;
880 for(i = 0; i < n; i++)
881 tcc_free(table_ident[i]);
882 tcc_free(table_ident);
884 /* free sym_pools */
885 dynarray_reset(&sym_pools, &nb_sym_pools);
886 /* string buffer */
887 cstr_free(&tokcstr);
888 /* reset symbol stack */
889 sym_free_first = NULL;
890 /* cleanup from error/setjmp */
891 macro_ptr = NULL;
894 LIBTCCAPI TCCState *tcc_new(void)
896 TCCState *s;
897 char buffer[100];
898 int a,b,c;
900 tcc_cleanup();
902 s = tcc_mallocz(sizeof(TCCState));
903 if (!s)
904 return NULL;
905 tcc_state = s;
906 #ifdef _WIN32
907 tcc_set_lib_path_w32(s);
908 #else
909 tcc_set_lib_path(s, CONFIG_TCCDIR);
910 #endif
911 s->output_type = TCC_OUTPUT_MEMORY;
912 preprocess_new();
913 s->include_stack_ptr = s->include_stack;
915 /* we add dummy defines for some special macros to speed up tests
916 and to have working defined() */
917 define_push(TOK___LINE__, MACRO_OBJ, NULL, NULL);
918 define_push(TOK___FILE__, MACRO_OBJ, NULL, NULL);
919 define_push(TOK___DATE__, MACRO_OBJ, NULL, NULL);
920 define_push(TOK___TIME__, MACRO_OBJ, NULL, NULL);
922 /* define __TINYC__ 92X */
923 sscanf(TCC_VERSION, "%d.%d.%d", &a, &b, &c);
924 sprintf(buffer, "%d", a*10000 + b*100 + c);
925 tcc_define_symbol(s, "__TINYC__", buffer);
927 /* standard defines */
928 tcc_define_symbol(s, "__STDC__", NULL);
929 tcc_define_symbol(s, "__STDC_VERSION__", "199901L");
930 tcc_define_symbol(s, "__STDC_HOSTED__", NULL);
932 /* target defines */
933 #if defined(TCC_TARGET_I386)
934 tcc_define_symbol(s, "__i386__", NULL);
935 tcc_define_symbol(s, "__i386", NULL);
936 tcc_define_symbol(s, "i386", NULL);
937 #elif defined(TCC_TARGET_X86_64)
938 tcc_define_symbol(s, "__x86_64__", NULL);
939 #elif defined(TCC_TARGET_ARM)
940 tcc_define_symbol(s, "__ARM_ARCH_4__", NULL);
941 tcc_define_symbol(s, "__arm_elf__", NULL);
942 tcc_define_symbol(s, "__arm_elf", NULL);
943 tcc_define_symbol(s, "arm_elf", NULL);
944 tcc_define_symbol(s, "__arm__", NULL);
945 tcc_define_symbol(s, "__arm", NULL);
946 tcc_define_symbol(s, "arm", NULL);
947 tcc_define_symbol(s, "__APCS_32__", NULL);
948 #if defined(TCC_ARM_HARDFLOAT)
949 tcc_define_symbol(s, "__ARM_PCS_VFP", NULL);
950 #endif
951 #endif
953 #ifdef TCC_TARGET_PE
954 tcc_define_symbol(s, "_WIN32", NULL);
955 # ifdef TCC_TARGET_X86_64
956 tcc_define_symbol(s, "_WIN64", NULL);
957 # endif
958 #else
959 tcc_define_symbol(s, "__unix__", NULL);
960 tcc_define_symbol(s, "__unix", NULL);
961 tcc_define_symbol(s, "unix", NULL);
962 # if defined(__linux)
963 tcc_define_symbol(s, "__linux__", NULL);
964 tcc_define_symbol(s, "__linux", NULL);
965 # endif
966 # if defined(__FreeBSD__)
967 # define str(s) #s
968 tcc_define_symbol(s, "__FreeBSD__", str( __FreeBSD__));
969 # undef str
970 # endif
971 # if defined(__FreeBSD_kernel__)
972 tcc_define_symbol(s, "__FreeBSD_kernel__", NULL);
973 # endif
974 #endif
976 /* TinyCC & gcc defines */
977 #if defined TCC_TARGET_PE && defined TCC_TARGET_X86_64
978 tcc_define_symbol(s, "__SIZE_TYPE__", "unsigned long long");
979 tcc_define_symbol(s, "__PTRDIFF_TYPE__", "long long");
980 #else
981 tcc_define_symbol(s, "__SIZE_TYPE__", "unsigned long");
982 tcc_define_symbol(s, "__PTRDIFF_TYPE__", "long");
983 #endif
985 #ifdef TCC_TARGET_PE
986 tcc_define_symbol(s, "__WCHAR_TYPE__", "unsigned short");
987 #else
988 tcc_define_symbol(s, "__WCHAR_TYPE__", "int");
989 #endif
991 #ifndef TCC_TARGET_PE
992 /* glibc defines */
993 tcc_define_symbol(s, "__REDIRECT(name, proto, alias)", "name proto __asm__ (#alias)");
994 tcc_define_symbol(s, "__REDIRECT_NTH(name, proto, alias)", "name proto __asm__ (#alias) __THROW");
995 /* paths for crt objects */
996 tcc_split_path(s, (void ***)&s->crt_paths, &s->nb_crt_paths, CONFIG_TCC_CRTPREFIX);
997 #endif
999 /* no section zero */
1000 dynarray_add((void ***)&s->sections, &s->nb_sections, NULL);
1002 /* create standard sections */
1003 text_section = new_section(s, ".text", SHT_PROGBITS, SHF_ALLOC | SHF_EXECINSTR);
1004 data_section = new_section(s, ".data", SHT_PROGBITS, SHF_ALLOC | SHF_WRITE);
1005 bss_section = new_section(s, ".bss", SHT_NOBITS, SHF_ALLOC | SHF_WRITE);
1007 /* symbols are always generated for linking stage */
1008 symtab_section = new_symtab(s, ".symtab", SHT_SYMTAB, 0,
1009 ".strtab",
1010 ".hashtab", SHF_PRIVATE);
1011 strtab_section = symtab_section->link;
1012 s->symtab = symtab_section;
1014 /* private symbol table for dynamic symbols */
1015 s->dynsymtab_section = new_symtab(s, ".dynsymtab", SHT_SYMTAB, SHF_PRIVATE,
1016 ".dynstrtab",
1017 ".dynhashtab", SHF_PRIVATE);
1018 s->alacarte_link = 1;
1019 s->nocommon = 1;
1020 s->section_align = ELF_PAGE_SIZE;
1022 #ifdef CHAR_IS_UNSIGNED
1023 s->char_is_unsigned = 1;
1024 #endif
1025 /* enable this if you want symbols with leading underscore on windows: */
1026 #if 0 /* def TCC_TARGET_PE */
1027 s->leading_underscore = 1;
1028 #endif
1029 #ifdef TCC_TARGET_I386
1030 s->seg_size = 32;
1031 #endif
1032 s->runtime_main = "main";
1033 return s;
1036 LIBTCCAPI void tcc_delete(TCCState *s1)
1038 int i;
1040 tcc_cleanup();
1042 /* free all sections */
1043 for(i = 1; i < s1->nb_sections; i++)
1044 free_section(s1->sections[i]);
1045 dynarray_reset(&s1->sections, &s1->nb_sections);
1047 for(i = 0; i < s1->nb_priv_sections; i++)
1048 free_section(s1->priv_sections[i]);
1049 dynarray_reset(&s1->priv_sections, &s1->nb_priv_sections);
1051 /* free any loaded DLLs */
1052 #ifdef TCC_IS_NATIVE
1053 for ( i = 0; i < s1->nb_loaded_dlls; i++) {
1054 DLLReference *ref = s1->loaded_dlls[i];
1055 if ( ref->handle )
1056 dlclose(ref->handle);
1058 #endif
1060 /* free loaded dlls array */
1061 dynarray_reset(&s1->loaded_dlls, &s1->nb_loaded_dlls);
1063 /* free library paths */
1064 dynarray_reset(&s1->library_paths, &s1->nb_library_paths);
1065 dynarray_reset(&s1->crt_paths, &s1->nb_crt_paths);
1067 /* free include paths */
1068 dynarray_reset(&s1->cached_includes, &s1->nb_cached_includes);
1069 dynarray_reset(&s1->include_paths, &s1->nb_include_paths);
1070 dynarray_reset(&s1->sysinclude_paths, &s1->nb_sysinclude_paths);
1072 tcc_free(s1->tcc_lib_path);
1073 tcc_free(s1->soname);
1074 tcc_free(s1->rpath);
1075 tcc_free(s1->init_symbol);
1076 tcc_free(s1->fini_symbol);
1077 tcc_free(s1->outfile);
1078 tcc_free(s1->deps_outfile);
1079 dynarray_reset(&s1->files, &s1->nb_files);
1080 dynarray_reset(&s1->target_deps, &s1->nb_target_deps);
1082 #ifdef TCC_IS_NATIVE
1083 # ifdef HAVE_SELINUX
1084 munmap (s1->write_mem, s1->mem_size);
1085 munmap (s1->runtime_mem, s1->mem_size);
1086 # else
1087 tcc_free(s1->runtime_mem);
1088 # endif
1089 #endif
1091 tcc_free(s1);
1094 LIBTCCAPI int tcc_add_include_path(TCCState *s, const char *pathname)
1096 tcc_split_path(s, (void ***)&s->include_paths, &s->nb_include_paths, pathname);
1097 return 0;
1100 LIBTCCAPI int tcc_add_sysinclude_path(TCCState *s, const char *pathname)
1102 tcc_split_path(s, (void ***)&s->sysinclude_paths, &s->nb_sysinclude_paths, pathname);
1103 return 0;
1106 ST_FUNC int tcc_add_file_internal(TCCState *s1, const char *filename, int flags)
1108 const char *ext;
1109 ElfW(Ehdr) ehdr;
1110 int fd, ret, size;
1112 /* find source file type with extension */
1113 ext = tcc_fileextension(filename);
1114 if (ext[0])
1115 ext++;
1117 #ifdef CONFIG_TCC_ASM
1118 /* if .S file, define __ASSEMBLER__ like gcc does */
1119 if (!strcmp(ext, "S"))
1120 tcc_define_symbol(s1, "__ASSEMBLER__", NULL);
1121 #endif
1123 /* open the file */
1124 ret = tcc_open(s1, filename);
1125 if (ret < 0) {
1126 if (flags & AFF_PRINT_ERROR)
1127 tcc_error_noabort("file '%s' not found", filename);
1128 return ret;
1131 /* update target deps */
1132 dynarray_add((void ***)&s1->target_deps, &s1->nb_target_deps,
1133 tcc_strdup(filename));
1135 if (flags & AFF_PREPROCESS) {
1136 ret = tcc_preprocess(s1);
1137 goto the_end;
1140 if (!ext[0] || !PATHCMP(ext, "c")) {
1141 /* C file assumed */
1142 ret = tcc_compile(s1);
1143 goto the_end;
1146 #ifdef CONFIG_TCC_ASM
1147 if (!strcmp(ext, "S")) {
1148 /* preprocessed assembler */
1149 ret = tcc_assemble(s1, 1);
1150 goto the_end;
1153 if (!strcmp(ext, "s")) {
1154 /* non preprocessed assembler */
1155 ret = tcc_assemble(s1, 0);
1156 goto the_end;
1158 #endif
1160 fd = file->fd;
1161 /* assume executable format: auto guess file type */
1162 size = read(fd, &ehdr, sizeof(ehdr));
1163 lseek(fd, 0, SEEK_SET);
1164 if (size <= 0) {
1165 tcc_error_noabort("could not read header");
1166 goto the_end;
1169 if (size == sizeof(ehdr) &&
1170 ehdr.e_ident[0] == ELFMAG0 &&
1171 ehdr.e_ident[1] == ELFMAG1 &&
1172 ehdr.e_ident[2] == ELFMAG2 &&
1173 ehdr.e_ident[3] == ELFMAG3) {
1175 /* do not display line number if error */
1176 file->line_num = 0;
1177 if (ehdr.e_type == ET_REL) {
1178 ret = tcc_load_object_file(s1, fd, 0);
1179 goto the_end;
1182 #ifndef TCC_TARGET_PE
1183 if (ehdr.e_type == ET_DYN) {
1184 if (s1->output_type == TCC_OUTPUT_MEMORY) {
1185 #ifdef TCC_IS_NATIVE
1186 void *h;
1187 h = dlopen(filename, RTLD_GLOBAL | RTLD_LAZY);
1188 if (h)
1189 #endif
1190 ret = 0;
1191 } else {
1192 ret = tcc_load_dll(s1, fd, filename,
1193 (flags & AFF_REFERENCED_DLL) != 0);
1195 goto the_end;
1197 #endif
1198 tcc_error_noabort("unrecognized ELF file");
1199 goto the_end;
1202 if (memcmp((char *)&ehdr, ARMAG, 8) == 0) {
1203 file->line_num = 0; /* do not display line number if error */
1204 ret = tcc_load_archive(s1, fd);
1205 goto the_end;
1208 #ifdef TCC_TARGET_COFF
1209 if (*(uint16_t *)(&ehdr) == COFF_C67_MAGIC) {
1210 ret = tcc_load_coff(s1, fd);
1211 goto the_end;
1213 #endif
1215 #ifdef TCC_TARGET_PE
1216 ret = pe_load_file(s1, filename, fd);
1217 #else
1218 /* as GNU ld, consider it is an ld script if not recognized */
1219 ret = tcc_load_ldscript(s1);
1220 #endif
1221 if (ret < 0)
1222 tcc_error_noabort("unrecognized file type");
1224 the_end:
1225 tcc_close();
1226 return ret;
1229 LIBTCCAPI int tcc_add_file(TCCState *s, const char *filename)
1231 if (s->output_type == TCC_OUTPUT_PREPROCESS)
1232 return tcc_add_file_internal(s, filename, AFF_PRINT_ERROR | AFF_PREPROCESS);
1233 else
1234 return tcc_add_file_internal(s, filename, AFF_PRINT_ERROR);
1237 LIBTCCAPI int tcc_add_library_path(TCCState *s, const char *pathname)
1239 tcc_split_path(s, (void ***)&s->library_paths, &s->nb_library_paths, pathname);
1240 return 0;
1243 static int tcc_add_library_internal(TCCState *s, const char *fmt,
1244 const char *filename, int flags, char **paths, int nb_paths)
1246 char buf[1024];
1247 int i;
1249 for(i = 0; i < nb_paths; i++) {
1250 snprintf(buf, sizeof(buf), fmt, paths[i], filename);
1251 if (tcc_add_file_internal(s, buf, flags) == 0)
1252 return 0;
1254 return -1;
1257 /* find and load a dll. Return non zero if not found */
1258 /* XXX: add '-rpath' option support ? */
1259 ST_FUNC int tcc_add_dll(TCCState *s, const char *filename, int flags)
1261 return tcc_add_library_internal(s, "%s/%s", filename, flags,
1262 s->library_paths, s->nb_library_paths);
1265 ST_FUNC int tcc_add_crt(TCCState *s, const char *filename)
1267 if (-1 == tcc_add_library_internal(s, "%s/%s",
1268 filename, 0, s->crt_paths, s->nb_crt_paths))
1269 tcc_error_noabort("file '%s' not found", filename);
1270 return 0;
1273 /* the library name is the same as the argument of the '-l' option */
1274 LIBTCCAPI int tcc_add_library(TCCState *s, const char *libraryname)
1276 #ifdef TCC_TARGET_PE
1277 const char *libs[] = { "%s/%s.def", "%s/lib%s.def", "%s/%s.dll", "%s/lib%s.dll", "%s/lib%s.a", NULL };
1278 const char **pp = s->static_link ? libs + 4 : libs;
1279 #else
1280 const char *libs[] = { "%s/lib%s.so", "%s/lib%s.a", NULL };
1281 const char **pp = s->static_link ? libs + 1 : libs;
1282 #endif
1283 while (*pp) {
1284 if (0 == tcc_add_library_internal(s, *pp,
1285 libraryname, 0, s->library_paths, s->nb_library_paths))
1286 return 0;
1287 ++pp;
1289 return -1;
1292 LIBTCCAPI int tcc_add_symbol(TCCState *s, const char *name, const void *val)
1294 #ifdef TCC_TARGET_PE
1295 /* On x86_64 'val' might not be reachable with a 32bit offset.
1296 So it is handled here as if it were in a DLL. */
1297 pe_putimport(s, 0, name, (uintptr_t)val);
1298 #else
1299 /* XXX: Same problem on linux but currently "solved" elsewhere
1300 via the rather dirty 'runtime_plt_and_got' hack. */
1301 add_elf_sym(symtab_section, (uintptr_t)val, 0,
1302 ELFW(ST_INFO)(STB_GLOBAL, STT_NOTYPE), 0,
1303 SHN_ABS, name);
1304 #endif
1305 return 0;
1308 LIBTCCAPI int tcc_set_output_type(TCCState *s, int output_type)
1310 s->output_type = output_type;
1312 if (!s->nostdinc) {
1313 /* default include paths */
1314 /* -isystem paths have already been handled */
1315 tcc_add_sysinclude_path(s, CONFIG_TCC_SYSINCLUDEPATHS);
1318 /* if bound checking, then add corresponding sections */
1319 #ifdef CONFIG_TCC_BCHECK
1320 if (s->do_bounds_check) {
1321 /* define symbol */
1322 tcc_define_symbol(s, "__BOUNDS_CHECKING_ON", NULL);
1323 /* create bounds sections */
1324 bounds_section = new_section(s, ".bounds",
1325 SHT_PROGBITS, SHF_ALLOC);
1326 lbounds_section = new_section(s, ".lbounds",
1327 SHT_PROGBITS, SHF_ALLOC);
1329 #endif
1331 if (s->char_is_unsigned) {
1332 tcc_define_symbol(s, "__CHAR_UNSIGNED__", NULL);
1335 /* add debug sections */
1336 if (s->do_debug) {
1337 /* stab symbols */
1338 stab_section = new_section(s, ".stab", SHT_PROGBITS, 0);
1339 stab_section->sh_entsize = sizeof(Stab_Sym);
1340 stabstr_section = new_section(s, ".stabstr", SHT_STRTAB, 0);
1341 put_elf_str(stabstr_section, "");
1342 stab_section->link = stabstr_section;
1343 /* put first entry */
1344 put_stabs("", 0, 0, 0, 0);
1347 tcc_add_library_path(s, CONFIG_TCC_LIBPATHS);
1348 #ifdef TCC_TARGET_PE
1349 # ifdef _WIN32
1350 tcc_add_systemdir(s);
1351 # endif
1352 #else
1353 /* add libc crt1/crti objects */
1354 if ((output_type == TCC_OUTPUT_EXE || output_type == TCC_OUTPUT_DLL) &&
1355 !s->nostdlib) {
1356 if (output_type != TCC_OUTPUT_DLL)
1357 tcc_add_crt(s, "crt1.o");
1358 tcc_add_crt(s, "crti.o");
1360 #endif
1361 return 0;
1364 LIBTCCAPI void tcc_set_lib_path(TCCState *s, const char *path)
1366 tcc_free(s->tcc_lib_path);
1367 s->tcc_lib_path = tcc_strdup(path);
1370 #define WD_ALL 0x0001 /* warning is activated when using -Wall */
1371 #define FD_INVERT 0x0002 /* invert value before storing */
1373 typedef struct FlagDef {
1374 uint16_t offset;
1375 uint16_t flags;
1376 const char *name;
1377 } FlagDef;
1379 static const FlagDef warning_defs[] = {
1380 { offsetof(TCCState, warn_unsupported), 0, "unsupported" },
1381 { offsetof(TCCState, warn_write_strings), 0, "write-strings" },
1382 { offsetof(TCCState, warn_error), 0, "error" },
1383 { offsetof(TCCState, warn_implicit_function_declaration), WD_ALL,
1384 "implicit-function-declaration" },
1387 ST_FUNC int set_flag(TCCState *s, const FlagDef *flags, int nb_flags,
1388 const char *name, int value)
1390 int i;
1391 const FlagDef *p;
1392 const char *r;
1394 r = name;
1395 if (r[0] == 'n' && r[1] == 'o' && r[2] == '-') {
1396 r += 3;
1397 value = !value;
1399 for(i = 0, p = flags; i < nb_flags; i++, p++) {
1400 if (!strcmp(r, p->name))
1401 goto found;
1403 return -1;
1404 found:
1405 if (p->flags & FD_INVERT)
1406 value = !value;
1407 *(int *)((uint8_t *)s + p->offset) = value;
1408 return 0;
1411 /* set/reset a warning */
1412 static int tcc_set_warning(TCCState *s, const char *warning_name, int value)
1414 int i;
1415 const FlagDef *p;
1417 if (!strcmp(warning_name, "all")) {
1418 for(i = 0, p = warning_defs; i < countof(warning_defs); i++, p++) {
1419 if (p->flags & WD_ALL)
1420 *(int *)((uint8_t *)s + p->offset) = 1;
1422 return 0;
1423 } else {
1424 return set_flag(s, warning_defs, countof(warning_defs),
1425 warning_name, value);
1429 static const FlagDef flag_defs[] = {
1430 { offsetof(TCCState, char_is_unsigned), 0, "unsigned-char" },
1431 { offsetof(TCCState, char_is_unsigned), FD_INVERT, "signed-char" },
1432 { offsetof(TCCState, nocommon), FD_INVERT, "common" },
1433 { offsetof(TCCState, leading_underscore), 0, "leading-underscore" },
1436 /* set/reset a flag */
1437 static int tcc_set_flag(TCCState *s, const char *flag_name, int value)
1439 return set_flag(s, flag_defs, countof(flag_defs),
1440 flag_name, value);
1444 static int strstart(const char *val, const char **str)
1446 const char *p, *q;
1447 p = *str;
1448 q = val;
1449 while (*q) {
1450 if (*p != *q)
1451 return 0;
1452 p++;
1453 q++;
1455 *str = p;
1456 return 1;
1459 /* Like strstart, but automatically takes into account that ld options can
1461 * - start with double or single dash (e.g. '--soname' or '-soname')
1462 * - arguments can be given as separate or after '=' (e.g. '-Wl,-soname,x.so'
1463 * or '-Wl,-soname=x.so')
1465 * you provide `val` always in 'option[=]' form (no leading -)
1467 static int link_option(const char *str, const char *val, const char **ptr)
1469 const char *p, *q;
1471 /* there should be 1 or 2 dashes */
1472 if (*str++ != '-')
1473 return 0;
1474 if (*str == '-')
1475 str++;
1477 /* then str & val should match (potentialy up to '=') */
1478 p = str;
1479 q = val;
1481 while (*q != '\0' && *q != '=') {
1482 if (*p != *q)
1483 return 0;
1484 p++;
1485 q++;
1488 /* '=' near eos means ',' or '=' is ok */
1489 if (*q == '=') {
1490 if (*p != ',' && *p != '=')
1491 return 0;
1492 p++;
1493 q++;
1496 if (ptr)
1497 *ptr = p;
1498 return 1;
1501 static const char *skip_linker_arg(const char **str)
1503 const char *s1 = *str;
1504 const char *s2 = strchr(s1, ',');
1505 *str = s2 ? s2++ : (s2 = s1 + strlen(s1));
1506 return s2;
1509 static char *copy_linker_arg(const char *p)
1511 const char *q = p;
1512 skip_linker_arg(&q);
1513 return pstrncpy(tcc_malloc(q - p + 1), p, q - p);
1516 /* set linker options */
1517 static int tcc_set_linker(TCCState *s, const char *option)
1519 while (option && *option) {
1521 const char *p = option;
1522 char *end = NULL;
1523 int ignoring = 0;
1525 if (link_option(option, "Bsymbolic", &p)) {
1526 s->symbolic = 1;
1527 } else if (link_option(option, "nostdlib", &p)) {
1528 s->nostdlib = 1;
1529 } else if (link_option(option, "fini=", &p)) {
1530 s->fini_symbol = copy_linker_arg(p);
1531 ignoring = 1;
1532 } else if (link_option(option, "image-base=", &p)
1533 || link_option(option, "Ttext=", &p)) {
1534 s->text_addr = strtoull(p, &end, 16);
1535 s->has_text_addr = 1;
1536 } else if (link_option(option, "init=", &p)) {
1537 s->init_symbol = copy_linker_arg(p);
1538 ignoring = 1;
1539 } else if (link_option(option, "oformat=", &p)) {
1540 #if defined(TCC_TARGET_PE)
1541 if (strstart("pe-", &p)) {
1542 #elif defined(TCC_TARGET_X86_64)
1543 if (strstart("elf64-", &p)) {
1544 #else
1545 if (strstart("elf32-", &p)) {
1546 #endif
1547 s->output_format = TCC_OUTPUT_FORMAT_ELF;
1548 } else if (!strcmp(p, "binary")) {
1549 s->output_format = TCC_OUTPUT_FORMAT_BINARY;
1550 #ifdef TCC_TARGET_COFF
1551 } else if (!strcmp(p, "coff")) {
1552 s->output_format = TCC_OUTPUT_FORMAT_COFF;
1553 #endif
1554 } else
1555 goto err;
1557 } else if (link_option(option, "rpath=", &p)) {
1558 s->rpath = copy_linker_arg(p);
1559 } else if (link_option(option, "section-alignment=", &p)) {
1560 s->section_align = strtoul(p, &end, 16);
1561 } else if (link_option(option, "soname=", &p)) {
1562 s->soname = copy_linker_arg(p);
1563 #ifdef TCC_TARGET_PE
1564 } else if (link_option(option, "file-alignment=", &p)) {
1565 s->pe_file_align = strtoul(p, &end, 16);
1566 } else if (link_option(option, "stack=", &p)) {
1567 s->pe_stack_size = strtoul(p, &end, 10);
1568 } else if (link_option(option, "subsystem=", &p)) {
1569 #if defined(TCC_TARGET_I386) || defined(TCC_TARGET_X86_64)
1570 if (!strcmp(p, "native")) {
1571 s->pe_subsystem = 1;
1572 } else if (!strcmp(p, "console")) {
1573 s->pe_subsystem = 3;
1574 } else if (!strcmp(p, "gui")) {
1575 s->pe_subsystem = 2;
1576 } else if (!strcmp(p, "posix")) {
1577 s->pe_subsystem = 7;
1578 } else if (!strcmp(p, "efiapp")) {
1579 s->pe_subsystem = 10;
1580 } else if (!strcmp(p, "efiboot")) {
1581 s->pe_subsystem = 11;
1582 } else if (!strcmp(p, "efiruntime")) {
1583 s->pe_subsystem = 12;
1584 } else if (!strcmp(p, "efirom")) {
1585 s->pe_subsystem = 13;
1586 #elif defined(TCC_TARGET_ARM)
1587 if (!strcmp(p, "wince")) {
1588 s->pe_subsystem = 9;
1589 #endif
1590 } else
1591 goto err;
1592 #endif
1593 } else
1594 goto err;
1596 if (ignoring && s->warn_unsupported) err: {
1597 char buf[100], *e;
1598 pstrcpy(buf, sizeof buf, e = copy_linker_arg(option)), tcc_free(e);
1599 if (ignoring)
1600 tcc_warning("unsupported linker option '%s'", buf);
1601 else
1602 tcc_error("unsupported linker option '%s'", buf);
1604 option = skip_linker_arg(&p);
1606 return 0;
1609 typedef struct TCCOption {
1610 const char *name;
1611 uint16_t index;
1612 uint16_t flags;
1613 } TCCOption;
1615 enum {
1616 TCC_OPTION_HELP,
1617 TCC_OPTION_I,
1618 TCC_OPTION_D,
1619 TCC_OPTION_U,
1620 TCC_OPTION_L,
1621 TCC_OPTION_B,
1622 TCC_OPTION_l,
1623 TCC_OPTION_bench,
1624 TCC_OPTION_bt,
1625 TCC_OPTION_b,
1626 TCC_OPTION_g,
1627 TCC_OPTION_c,
1628 TCC_OPTION_static,
1629 TCC_OPTION_shared,
1630 TCC_OPTION_soname,
1631 TCC_OPTION_o,
1632 TCC_OPTION_r,
1633 TCC_OPTION_s,
1634 TCC_OPTION_Wl,
1635 TCC_OPTION_W,
1636 TCC_OPTION_O,
1637 TCC_OPTION_m,
1638 TCC_OPTION_f,
1639 TCC_OPTION_isystem,
1640 TCC_OPTION_nostdinc,
1641 TCC_OPTION_nostdlib,
1642 TCC_OPTION_print_search_dirs,
1643 TCC_OPTION_rdynamic,
1644 TCC_OPTION_pedantic,
1645 TCC_OPTION_pthread,
1646 TCC_OPTION_run,
1647 TCC_OPTION_norunsrc,
1648 TCC_OPTION_v,
1649 TCC_OPTION_w,
1650 TCC_OPTION_pipe,
1651 TCC_OPTION_E,
1652 TCC_OPTION_MD,
1653 TCC_OPTION_MF,
1654 TCC_OPTION_x,
1655 TCC_OPTION_dumpversion,
1658 #define TCC_OPTION_HAS_ARG 0x0001
1659 #define TCC_OPTION_NOSEP 0x0002 /* cannot have space before option and arg */
1661 static const TCCOption tcc_options[] = {
1662 { "h", TCC_OPTION_HELP, 0 },
1663 { "-help", TCC_OPTION_HELP, 0 },
1664 { "?", TCC_OPTION_HELP, 0 },
1665 { "I", TCC_OPTION_I, TCC_OPTION_HAS_ARG },
1666 { "D", TCC_OPTION_D, TCC_OPTION_HAS_ARG },
1667 { "U", TCC_OPTION_U, TCC_OPTION_HAS_ARG },
1668 { "L", TCC_OPTION_L, TCC_OPTION_HAS_ARG },
1669 { "B", TCC_OPTION_B, TCC_OPTION_HAS_ARG },
1670 { "l", TCC_OPTION_l, TCC_OPTION_HAS_ARG | TCC_OPTION_NOSEP },
1671 { "bench", TCC_OPTION_bench, 0 },
1672 #ifdef CONFIG_TCC_BACKTRACE
1673 { "bt", TCC_OPTION_bt, TCC_OPTION_HAS_ARG },
1674 #endif
1675 #ifdef CONFIG_TCC_BCHECK
1676 { "b", TCC_OPTION_b, 0 },
1677 #endif
1678 { "g", TCC_OPTION_g, TCC_OPTION_HAS_ARG | TCC_OPTION_NOSEP },
1679 { "c", TCC_OPTION_c, 0 },
1680 { "static", TCC_OPTION_static, 0 },
1681 { "shared", TCC_OPTION_shared, 0 },
1682 { "soname", TCC_OPTION_soname, TCC_OPTION_HAS_ARG },
1683 { "o", TCC_OPTION_o, TCC_OPTION_HAS_ARG },
1684 { "pedantic", TCC_OPTION_pedantic, 0},
1685 { "pthread", TCC_OPTION_pthread, 0},
1686 { "run", TCC_OPTION_run, TCC_OPTION_HAS_ARG | TCC_OPTION_NOSEP },
1687 { "norunsrc", TCC_OPTION_norunsrc, 0 },
1688 { "rdynamic", TCC_OPTION_rdynamic, 0 },
1689 { "r", TCC_OPTION_r, 0 },
1690 { "s", TCC_OPTION_s, 0 },
1691 { "Wl,", TCC_OPTION_Wl, TCC_OPTION_HAS_ARG | TCC_OPTION_NOSEP },
1692 { "W", TCC_OPTION_W, TCC_OPTION_HAS_ARG | TCC_OPTION_NOSEP },
1693 { "O", TCC_OPTION_O, TCC_OPTION_HAS_ARG | TCC_OPTION_NOSEP },
1694 { "m", TCC_OPTION_m, TCC_OPTION_HAS_ARG },
1695 { "f", TCC_OPTION_f, TCC_OPTION_HAS_ARG | TCC_OPTION_NOSEP },
1696 { "isystem", TCC_OPTION_isystem, TCC_OPTION_HAS_ARG },
1697 { "nostdinc", TCC_OPTION_nostdinc, 0 },
1698 { "nostdlib", TCC_OPTION_nostdlib, 0 },
1699 { "print-search-dirs", TCC_OPTION_print_search_dirs, 0 },
1700 { "v", TCC_OPTION_v, TCC_OPTION_HAS_ARG | TCC_OPTION_NOSEP },
1701 { "w", TCC_OPTION_w, 0 },
1702 { "pipe", TCC_OPTION_pipe, 0},
1703 { "E", TCC_OPTION_E, 0},
1704 { "MD", TCC_OPTION_MD, 0},
1705 { "MF", TCC_OPTION_MF, TCC_OPTION_HAS_ARG },
1706 { "x", TCC_OPTION_x, TCC_OPTION_HAS_ARG },
1707 { "dumpversion", TCC_OPTION_dumpversion, 0},
1708 { NULL, 0, 0 },
1711 static void parse_option_D(TCCState *s1, const char *optarg)
1713 char *sym = tcc_strdup(optarg);
1714 char *value = strchr(sym, '=');
1715 if (value)
1716 *value++ = '\0';
1717 tcc_define_symbol(s1, sym, value);
1718 tcc_free(sym);
1721 PUB_FUNC int tcc_parse_args(TCCState *s, int argc, char **argv)
1723 const TCCOption *popt;
1724 const char *optarg, *r;
1725 int run = 0;
1726 int norunsrc = 0;
1727 int pthread = 0;
1728 int optind = 0;
1730 /* collect -Wl options for input such as "-Wl,-rpath -Wl,<path>" */
1731 CString linker_arg;
1732 cstr_new(&linker_arg);
1734 while (optind < argc) {
1736 r = argv[optind++];
1737 if (r[0] != '-' || r[1] == '\0') {
1738 /* add a new file */
1739 if (!run || !norunsrc)
1740 dynarray_add((void ***)&s->files, &s->nb_files, tcc_strdup(r));
1741 if (run) {
1742 optind--;
1743 /* argv[0] will be this file */
1744 break;
1746 continue;
1749 /* find option in table */
1750 for(popt = tcc_options; ; ++popt) {
1751 const char *p1 = popt->name;
1752 const char *r1 = r + 1;
1753 if (p1 == NULL)
1754 tcc_error("invalid option -- '%s'", r);
1755 if (!strstart(p1, &r1))
1756 continue;
1757 optarg = r1;
1758 if (popt->flags & TCC_OPTION_HAS_ARG) {
1759 if (*r1 == '\0' && !(popt->flags & TCC_OPTION_NOSEP)) {
1760 if (optind >= argc)
1761 tcc_error("argument to '%s' is missing", r);
1762 optarg = argv[optind++];
1764 } else if (*r1 != '\0')
1765 continue;
1766 break;
1769 switch(popt->index) {
1770 case TCC_OPTION_HELP:
1771 return 0;
1772 case TCC_OPTION_I:
1773 if (tcc_add_include_path(s, optarg) < 0)
1774 tcc_error("too many include paths");
1775 break;
1776 case TCC_OPTION_D:
1777 parse_option_D(s, optarg);
1778 break;
1779 case TCC_OPTION_U:
1780 tcc_undefine_symbol(s, optarg);
1781 break;
1782 case TCC_OPTION_L:
1783 tcc_add_library_path(s, optarg);
1784 break;
1785 case TCC_OPTION_B:
1786 /* set tcc utilities path (mainly for tcc development) */
1787 tcc_set_lib_path(s, optarg);
1788 break;
1789 case TCC_OPTION_l:
1790 dynarray_add((void ***)&s->files, &s->nb_files, tcc_strdup(r));
1791 s->nb_libraries++;
1792 break;
1793 case TCC_OPTION_pthread:
1794 parse_option_D(s, "_REENTRANT");
1795 pthread = 1;
1796 break;
1797 case TCC_OPTION_bench:
1798 s->do_bench = 1;
1799 break;
1800 #ifdef CONFIG_TCC_BACKTRACE
1801 case TCC_OPTION_bt:
1802 tcc_set_num_callers(atoi(optarg));
1803 break;
1804 #endif
1805 #ifdef CONFIG_TCC_BCHECK
1806 case TCC_OPTION_b:
1807 s->do_bounds_check = 1;
1808 s->do_debug = 1;
1809 break;
1810 #endif
1811 case TCC_OPTION_g:
1812 s->do_debug = 1;
1813 break;
1814 case TCC_OPTION_c:
1815 s->output_type = TCC_OUTPUT_OBJ;
1816 break;
1817 case TCC_OPTION_static:
1818 s->static_link = 1;
1819 break;
1820 case TCC_OPTION_shared:
1821 s->output_type = TCC_OUTPUT_DLL;
1822 break;
1823 case TCC_OPTION_soname:
1824 s->soname = tcc_strdup(optarg);
1825 break;
1826 case TCC_OPTION_m:
1827 s->option_m = tcc_strdup(optarg);
1828 break;
1829 case TCC_OPTION_o:
1830 s->outfile = tcc_strdup(optarg);
1831 break;
1832 case TCC_OPTION_r:
1833 /* generate a .o merging several output files */
1834 s->option_r = 1;
1835 s->output_type = TCC_OUTPUT_OBJ;
1836 break;
1837 case TCC_OPTION_isystem:
1838 tcc_add_sysinclude_path(s, optarg);
1839 break;
1840 case TCC_OPTION_nostdinc:
1841 s->nostdinc = 1;
1842 break;
1843 case TCC_OPTION_nostdlib:
1844 s->nostdlib = 1;
1845 break;
1846 case TCC_OPTION_print_search_dirs:
1847 s->print_search_dirs = 1;
1848 break;
1849 case TCC_OPTION_run:
1850 s->output_type = TCC_OUTPUT_MEMORY;
1851 tcc_set_options(s, optarg);
1852 run = 1;
1853 break;
1854 case TCC_OPTION_norunsrc:
1855 norunsrc = 1;
1856 break;
1857 case TCC_OPTION_v:
1858 do ++s->verbose; while (*optarg++ == 'v');
1859 break;
1860 case TCC_OPTION_f:
1861 if (tcc_set_flag(s, optarg, 1) < 0 && s->warn_unsupported)
1862 goto unsupported_option;
1863 break;
1864 case TCC_OPTION_W:
1865 if (tcc_set_warning(s, optarg, 1) < 0 &&
1866 s->warn_unsupported)
1867 goto unsupported_option;
1868 break;
1869 case TCC_OPTION_w:
1870 s->warn_none = 1;
1871 break;
1872 case TCC_OPTION_rdynamic:
1873 s->rdynamic = 1;
1874 break;
1875 case TCC_OPTION_Wl:
1876 if (linker_arg.size)
1877 --linker_arg.size, cstr_ccat(&linker_arg, ',');
1878 cstr_cat(&linker_arg, optarg);
1879 cstr_ccat(&linker_arg, '\0');
1880 break;
1881 case TCC_OPTION_E:
1882 s->output_type = TCC_OUTPUT_PREPROCESS;
1883 break;
1884 case TCC_OPTION_MD:
1885 s->gen_deps = 1;
1886 break;
1887 case TCC_OPTION_MF:
1888 s->deps_outfile = tcc_strdup(optarg);
1889 break;
1890 case TCC_OPTION_dumpversion:
1891 printf ("%s\n", TCC_VERSION);
1892 exit(0);
1893 case TCC_OPTION_O:
1894 case TCC_OPTION_pedantic:
1895 case TCC_OPTION_pipe:
1896 case TCC_OPTION_s:
1897 case TCC_OPTION_x:
1898 /* ignored */
1899 break;
1900 default:
1901 if (s->warn_unsupported) {
1902 unsupported_option:
1903 tcc_warning("unsupported option '%s'", r);
1905 break;
1909 if (pthread && s->output_type != TCC_OUTPUT_OBJ)
1910 tcc_set_options(s, "-lpthread");
1912 tcc_set_linker(s, (const char *)linker_arg.data);
1913 cstr_free(&linker_arg);
1915 return optind;
1918 LIBTCCAPI int tcc_set_options(TCCState *s, const char *str)
1920 const char *s1;
1921 char **argv, *arg;
1922 int argc, len;
1923 int ret;
1925 argc = 0, argv = NULL;
1926 for(;;) {
1927 while (is_space(*str))
1928 str++;
1929 if (*str == '\0')
1930 break;
1931 s1 = str;
1932 while (*str != '\0' && !is_space(*str))
1933 str++;
1934 len = str - s1;
1935 arg = tcc_malloc(len + 1);
1936 pstrncpy(arg, s1, len);
1937 dynarray_add((void ***)&argv, &argc, arg);
1939 ret = tcc_parse_args(s, argc, argv);
1940 dynarray_reset(&argv, &argc);
1941 return ret;
1944 PUB_FUNC void tcc_print_stats(TCCState *s, int64_t total_time)
1946 double tt;
1947 tt = (double)total_time / 1000000.0;
1948 if (tt < 0.001)
1949 tt = 0.001;
1950 if (total_bytes < 1)
1951 total_bytes = 1;
1952 printf("%d idents, %d lines, %d bytes, %0.3f s, %d lines/s, %0.1f MB/s\n",
1953 tok_ident - TOK_IDENT, total_lines, total_bytes,
1954 tt, (int)(total_lines / tt),
1955 total_bytes / tt / 1000000.0);
1958 PUB_FUNC void tcc_set_environment(TCCState *s)
1960 char * path;
1962 path = getenv("C_INCLUDE_PATH");
1963 if(path != NULL) {
1964 tcc_add_include_path(s, path);
1966 path = getenv("CPATH");
1967 if(path != NULL) {
1968 tcc_add_include_path(s, path);
1970 path = getenv("LIBRARY_PATH");
1971 if(path != NULL) {
1972 tcc_add_library_path(s, path);