Update Changelog from git changelog entries
[tinycc.git] / libtcc.c
blob601999eafbd7d836e9360d3bf104fb2bb926fb23
1 /*
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
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 (malloc)");
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 (realloc)");
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 sym_type = STT_OBJECT;
450 if (sym->type.t & VT_STATIC)
451 sym_bind = STB_LOCAL;
452 else {
453 if (sym->type.t & VT_WEAK)
454 sym_bind = STB_WEAK;
455 else
456 sym_bind = STB_GLOBAL;
459 if (!sym->c) {
460 name = get_tok_str(sym->v, NULL);
461 #ifdef CONFIG_TCC_BCHECK
462 if (tcc_state->do_bounds_check) {
463 char buf[32];
465 /* XXX: avoid doing that for statics ? */
466 /* if bound checking is activated, we change some function
467 names by adding the "__bound" prefix */
468 switch(sym->v) {
469 #ifdef TCC_TARGET_PE
470 /* XXX: we rely only on malloc hooks */
471 case TOK_malloc:
472 case TOK_free:
473 case TOK_realloc:
474 case TOK_memalign:
475 case TOK_calloc:
476 #endif
477 case TOK_memcpy:
478 case TOK_memmove:
479 case TOK_memset:
480 case TOK_strlen:
481 case TOK_strcpy:
482 case TOK_alloca:
483 strcpy(buf, "__bound_");
484 strcat(buf, name);
485 name = buf;
486 break;
489 #endif
490 other = 0;
492 #ifdef TCC_TARGET_PE
493 if (sym->type.t & VT_EXPORT)
494 other |= 1;
495 if (sym_type == STT_FUNC && sym->type.ref) {
496 Sym *ref = sym->type.ref;
497 if (ref->a.func_export)
498 other |= 1;
499 if (ref->a.func_call == FUNC_STDCALL && can_add_underscore) {
500 sprintf(buf1, "_%s@%d", name, ref->a.func_args * PTR_SIZE);
501 name = buf1;
502 other |= 2;
503 can_add_underscore = 0;
505 } else {
506 if (find_elf_sym(tcc_state->dynsymtab_section, name))
507 other |= 4;
508 if (sym->type.t & VT_IMPORT)
509 other |= 4;
511 #endif
512 if (tcc_state->leading_underscore && can_add_underscore) {
513 buf1[0] = '_';
514 pstrcpy(buf1 + 1, sizeof(buf1) - 1, name);
515 name = buf1;
517 if (sym->asm_label) {
518 name = sym->asm_label;
520 info = ELFW(ST_INFO)(sym_bind, sym_type);
521 sym->c = add_elf_sym(symtab_section, value, size, info, other, sh_num, name);
522 } else {
523 esym = &((ElfW(Sym) *)symtab_section->data)[sym->c];
524 esym->st_value = value;
525 esym->st_size = size;
526 esym->st_shndx = sh_num;
530 ST_FUNC void put_extern_sym(Sym *sym, Section *section,
531 addr_t value, unsigned long size)
533 put_extern_sym2(sym, section, value, size, 1);
536 /* add a new relocation entry to symbol 'sym' in section 's' */
537 ST_FUNC void greloc(Section *s, Sym *sym, unsigned long offset, int type)
539 int c = 0;
540 if (sym) {
541 if (0 == sym->c)
542 put_extern_sym(sym, NULL, 0, 0);
543 c = sym->c;
545 /* now we can add ELF relocation info */
546 put_elf_reloc(symtab_section, s, offset, type, c);
549 /********************************************************/
551 static void strcat_vprintf(char *buf, int buf_size, const char *fmt, va_list ap)
553 int len;
554 len = strlen(buf);
555 vsnprintf(buf + len, buf_size - len, fmt, ap);
558 static void strcat_printf(char *buf, int buf_size, const char *fmt, ...)
560 va_list ap;
561 va_start(ap, fmt);
562 strcat_vprintf(buf, buf_size, fmt, ap);
563 va_end(ap);
566 static void error1(TCCState *s1, int is_warning, const char *fmt, va_list ap)
568 char buf[2048];
569 BufferedFile **pf, *f;
571 buf[0] = '\0';
572 /* use upper file if inline ":asm:" or token ":paste:" */
573 for (f = file; f && f->filename[0] == ':'; f = f->prev)
575 if (f) {
576 for(pf = s1->include_stack; pf < s1->include_stack_ptr; pf++)
577 strcat_printf(buf, sizeof(buf), "In file included from %s:%d:\n",
578 (*pf)->filename, (*pf)->line_num);
579 if (f->line_num > 0) {
580 strcat_printf(buf, sizeof(buf), "%s:%d: ",
581 f->filename, f->line_num);
582 } else {
583 strcat_printf(buf, sizeof(buf), "%s: ",
584 f->filename);
586 } else {
587 strcat_printf(buf, sizeof(buf), "tcc: ");
589 if (is_warning)
590 strcat_printf(buf, sizeof(buf), "warning: ");
591 else
592 strcat_printf(buf, sizeof(buf), "error: ");
593 strcat_vprintf(buf, sizeof(buf), fmt, ap);
595 if (!s1->error_func) {
596 /* default case: stderr */
597 fprintf(stderr, "%s\n", buf);
598 } else {
599 s1->error_func(s1->error_opaque, buf);
601 if (!is_warning || s1->warn_error)
602 s1->nb_errors++;
605 LIBTCCAPI void tcc_set_error_func(TCCState *s, void *error_opaque,
606 void (*error_func)(void *opaque, const char *msg))
608 s->error_opaque = error_opaque;
609 s->error_func = error_func;
612 /* error without aborting current compilation */
613 PUB_FUNC void tcc_error_noabort(const char *fmt, ...)
615 TCCState *s1 = tcc_state;
616 va_list ap;
618 va_start(ap, fmt);
619 error1(s1, 0, fmt, ap);
620 va_end(ap);
623 PUB_FUNC void tcc_error(const char *fmt, ...)
625 TCCState *s1 = tcc_state;
626 va_list ap;
628 va_start(ap, fmt);
629 error1(s1, 0, fmt, ap);
630 va_end(ap);
631 /* better than nothing: in some cases, we accept to handle errors */
632 if (s1->error_set_jmp_enabled) {
633 longjmp(s1->error_jmp_buf, 1);
634 } else {
635 /* XXX: eliminate this someday */
636 exit(1);
640 PUB_FUNC void tcc_warning(const char *fmt, ...)
642 TCCState *s1 = tcc_state;
643 va_list ap;
645 if (s1->warn_none)
646 return;
648 va_start(ap, fmt);
649 error1(s1, 1, fmt, ap);
650 va_end(ap);
653 /********************************************************/
654 /* I/O layer */
656 ST_FUNC void tcc_open_bf(TCCState *s1, const char *filename, int initlen)
658 BufferedFile *bf;
659 int buflen = initlen ? initlen : IO_BUF_SIZE;
661 bf = tcc_malloc(sizeof(BufferedFile) + buflen);
662 bf->buf_ptr = bf->buffer;
663 bf->buf_end = bf->buffer + initlen;
664 bf->buf_end[0] = CH_EOB; /* put eob symbol */
665 pstrcpy(bf->filename, sizeof(bf->filename), filename);
666 #ifdef _WIN32
667 normalize_slashes(bf->filename);
668 #endif
669 bf->line_num = 1;
670 bf->ifndef_macro = 0;
671 bf->ifdef_stack_ptr = s1->ifdef_stack_ptr;
672 bf->fd = -1;
673 bf->prev = file;
674 file = bf;
677 ST_FUNC void tcc_close(void)
679 BufferedFile *bf = file;
680 if (bf->fd > 0) {
681 close(bf->fd);
682 total_lines += bf->line_num;
684 file = bf->prev;
685 tcc_free(bf);
688 ST_FUNC int tcc_open(TCCState *s1, const char *filename)
690 int fd;
691 if (strcmp(filename, "-") == 0)
692 fd = 0, filename = "stdin";
693 else
694 fd = open(filename, O_RDONLY | O_BINARY);
695 if ((s1->verbose == 2 && fd >= 0) || s1->verbose == 3)
696 printf("%s %*s%s\n", fd < 0 ? "nf":"->",
697 (int)(s1->include_stack_ptr - s1->include_stack), "", filename);
698 if (fd < 0)
699 return -1;
701 tcc_open_bf(s1, filename, 0);
702 file->fd = fd;
703 return fd;
706 /* compile the C file opened in 'file'. Return non zero if errors. */
707 static int tcc_compile(TCCState *s1)
709 Sym *define_start;
710 SValue *pvtop;
711 char buf[512];
712 volatile int section_sym;
714 #ifdef INC_DEBUG
715 printf("%s: **** new file\n", file->filename);
716 #endif
717 preprocess_init(s1);
719 cur_text_section = NULL;
720 funcname = "";
721 anon_sym = SYM_FIRST_ANOM;
723 /* file info: full path + filename */
724 section_sym = 0; /* avoid warning */
725 if (s1->do_debug) {
726 section_sym = put_elf_sym(symtab_section, 0, 0,
727 ELFW(ST_INFO)(STB_LOCAL, STT_SECTION), 0,
728 text_section->sh_num, NULL);
729 getcwd(buf, sizeof(buf));
730 #ifdef _WIN32
731 normalize_slashes(buf);
732 #endif
733 pstrcat(buf, sizeof(buf), "/");
734 put_stabs_r(buf, N_SO, 0, 0,
735 text_section->data_offset, text_section, section_sym);
736 put_stabs_r(file->filename, N_SO, 0, 0,
737 text_section->data_offset, text_section, section_sym);
739 /* an elf symbol of type STT_FILE must be put so that STB_LOCAL
740 symbols can be safely used */
741 put_elf_sym(symtab_section, 0, 0,
742 ELFW(ST_INFO)(STB_LOCAL, STT_FILE), 0,
743 SHN_ABS, file->filename);
745 /* define some often used types */
746 int_type.t = VT_INT;
748 char_pointer_type.t = VT_BYTE;
749 mk_pointer(&char_pointer_type);
751 #if PTR_SIZE == 4
752 size_type.t = VT_INT;
753 #else
754 size_type.t = VT_LLONG;
755 #endif
757 func_old_type.t = VT_FUNC;
758 func_old_type.ref = sym_push(SYM_FIELD, &int_type, FUNC_CDECL, FUNC_OLD);
759 #ifdef TCC_TARGET_ARM
760 arm_init(s1);
761 #endif
763 #if 0
764 /* define 'void *alloca(unsigned int)' builtin function */
766 Sym *s1;
768 p = anon_sym++;
769 sym = sym_push(p, mk_pointer(VT_VOID), FUNC_CDECL, FUNC_NEW);
770 s1 = sym_push(SYM_FIELD, VT_UNSIGNED | VT_INT, 0, 0);
771 s1->next = NULL;
772 sym->next = s1;
773 sym_push(TOK_alloca, VT_FUNC | (p << VT_STRUCT_SHIFT), VT_CONST, 0);
775 #endif
777 define_start = define_stack;
778 nocode_wanted = 1;
780 if (setjmp(s1->error_jmp_buf) == 0) {
781 s1->nb_errors = 0;
782 s1->error_set_jmp_enabled = 1;
784 ch = file->buf_ptr[0];
785 tok_flags = TOK_FLAG_BOL | TOK_FLAG_BOF;
786 parse_flags = PARSE_FLAG_PREPROCESS | PARSE_FLAG_TOK_NUM;
787 pvtop = vtop;
788 next();
789 decl(VT_CONST);
790 if (tok != TOK_EOF)
791 expect("declaration");
792 if (pvtop != vtop)
793 tcc_warning("internal compiler error: vstack leak? (%d)", vtop - pvtop);
795 /* end of translation unit info */
796 if (s1->do_debug) {
797 put_stabs_r(NULL, N_SO, 0, 0,
798 text_section->data_offset, text_section, section_sym);
802 s1->error_set_jmp_enabled = 0;
804 /* reset define stack, but leave -Dsymbols (may be incorrect if
805 they are undefined) */
806 free_defines(define_start);
808 gen_inline_functions();
810 sym_pop(&global_stack, NULL);
811 sym_pop(&local_stack, NULL);
813 return s1->nb_errors != 0 ? -1 : 0;
816 LIBTCCAPI int tcc_compile_string(TCCState *s, const char *str)
818 int len, ret;
819 len = strlen(str);
821 tcc_open_bf(s, "<string>", len);
822 memcpy(file->buffer, str, len);
823 ret = tcc_compile(s);
824 tcc_close();
825 return ret;
828 /* define a preprocessor symbol. A value can also be provided with the '=' operator */
829 LIBTCCAPI void tcc_define_symbol(TCCState *s1, const char *sym, const char *value)
831 int len1, len2;
832 /* default value */
833 if (!value)
834 value = "1";
835 len1 = strlen(sym);
836 len2 = strlen(value);
838 /* init file structure */
839 tcc_open_bf(s1, "<define>", len1 + len2 + 1);
840 memcpy(file->buffer, sym, len1);
841 file->buffer[len1] = ' ';
842 memcpy(file->buffer + len1 + 1, value, len2);
844 /* parse with define parser */
845 ch = file->buf_ptr[0];
846 next_nomacro();
847 parse_define();
849 tcc_close();
852 /* undefine a preprocessor symbol */
853 LIBTCCAPI void tcc_undefine_symbol(TCCState *s1, const char *sym)
855 TokenSym *ts;
856 Sym *s;
857 ts = tok_alloc(sym, strlen(sym));
858 s = define_find(ts->tok);
859 /* undefine symbol by putting an invalid name */
860 if (s)
861 define_undef(s);
864 /* cleanup all static data used during compilation */
865 static void tcc_cleanup(void)
867 int i, n;
868 if (NULL == tcc_state)
869 return;
870 tcc_state = NULL;
872 /* free -D defines */
873 free_defines(NULL);
875 /* free tokens */
876 n = tok_ident - TOK_IDENT;
877 for(i = 0; i < n; i++)
878 tcc_free(table_ident[i]);
879 tcc_free(table_ident);
881 /* free sym_pools */
882 dynarray_reset(&sym_pools, &nb_sym_pools);
883 /* string buffer */
884 cstr_free(&tokcstr);
885 /* reset symbol stack */
886 sym_free_first = NULL;
887 /* cleanup from error/setjmp */
888 macro_ptr = NULL;
891 LIBTCCAPI TCCState *tcc_new(void)
893 TCCState *s;
894 char buffer[100];
895 int a,b,c;
897 tcc_cleanup();
899 s = tcc_mallocz(sizeof(TCCState));
900 if (!s)
901 return NULL;
902 tcc_state = s;
903 #ifdef _WIN32
904 tcc_set_lib_path_w32(s);
905 #else
906 tcc_set_lib_path(s, CONFIG_TCCDIR);
907 #endif
908 s->output_type = TCC_OUTPUT_MEMORY;
909 preprocess_new();
910 s->include_stack_ptr = s->include_stack;
912 /* we add dummy defines for some special macros to speed up tests
913 and to have working defined() */
914 define_push(TOK___LINE__, MACRO_OBJ, NULL, NULL);
915 define_push(TOK___FILE__, MACRO_OBJ, NULL, NULL);
916 define_push(TOK___DATE__, MACRO_OBJ, NULL, NULL);
917 define_push(TOK___TIME__, MACRO_OBJ, NULL, NULL);
919 /* define __TINYC__ 92X */
920 sscanf(TCC_VERSION, "%d.%d.%d", &a, &b, &c);
921 sprintf(buffer, "%d", a*10000 + b*100 + c);
922 tcc_define_symbol(s, "__TINYC__", buffer);
924 /* standard defines */
925 tcc_define_symbol(s, "__STDC__", NULL);
926 tcc_define_symbol(s, "__STDC_VERSION__", "199901L");
927 tcc_define_symbol(s, "__STDC_HOSTED__", NULL);
929 /* target defines */
930 #if defined(TCC_TARGET_I386)
931 tcc_define_symbol(s, "__i386__", NULL);
932 tcc_define_symbol(s, "__i386", NULL);
933 tcc_define_symbol(s, "i386", NULL);
934 #elif defined(TCC_TARGET_X86_64)
935 tcc_define_symbol(s, "__x86_64__", NULL);
936 #elif defined(TCC_TARGET_ARM)
937 tcc_define_symbol(s, "__ARM_ARCH_4__", NULL);
938 tcc_define_symbol(s, "__arm_elf__", NULL);
939 tcc_define_symbol(s, "__arm_elf", NULL);
940 tcc_define_symbol(s, "arm_elf", NULL);
941 tcc_define_symbol(s, "__arm__", NULL);
942 tcc_define_symbol(s, "__arm", NULL);
943 tcc_define_symbol(s, "arm", NULL);
944 tcc_define_symbol(s, "__APCS_32__", NULL);
945 tcc_define_symbol(s, "__ARMEL__", NULL);
946 #if defined(TCC_ARM_EABI)
947 tcc_define_symbol(s, "__ARM_EABI__", NULL);
948 #endif
949 #if defined(TCC_ARM_HARDFLOAT)
950 s->float_abi = ARM_HARD_FLOAT;
951 tcc_define_symbol(s, "__ARM_PCS_VFP", NULL);
952 #else
953 s->float_abi = ARM_SOFTFP_FLOAT;
954 #endif
955 #endif
957 #ifdef TCC_TARGET_PE
958 tcc_define_symbol(s, "_WIN32", NULL);
959 # ifdef TCC_TARGET_X86_64
960 tcc_define_symbol(s, "_WIN64", NULL);
961 # endif
962 #else
963 tcc_define_symbol(s, "__unix__", NULL);
964 tcc_define_symbol(s, "__unix", NULL);
965 tcc_define_symbol(s, "unix", NULL);
966 # if defined(__linux)
967 tcc_define_symbol(s, "__linux__", NULL);
968 tcc_define_symbol(s, "__linux", NULL);
969 # endif
970 # if defined(__FreeBSD__)
971 # define str(s) #s
972 tcc_define_symbol(s, "__FreeBSD__", str( __FreeBSD__));
973 # undef str
974 # endif
975 # if defined(__FreeBSD_kernel__)
976 tcc_define_symbol(s, "__FreeBSD_kernel__", NULL);
977 # endif
978 #endif
980 /* TinyCC & gcc defines */
981 #if defined TCC_TARGET_PE && defined TCC_TARGET_X86_64
982 tcc_define_symbol(s, "__SIZE_TYPE__", "unsigned long long");
983 tcc_define_symbol(s, "__PTRDIFF_TYPE__", "long long");
984 #else
985 tcc_define_symbol(s, "__SIZE_TYPE__", "unsigned long");
986 tcc_define_symbol(s, "__PTRDIFF_TYPE__", "long");
987 #endif
989 #ifdef TCC_TARGET_PE
990 tcc_define_symbol(s, "__WCHAR_TYPE__", "unsigned short");
991 #else
992 tcc_define_symbol(s, "__WCHAR_TYPE__", "int");
993 #endif
995 #ifndef TCC_TARGET_PE
996 /* glibc defines */
997 tcc_define_symbol(s, "__REDIRECT(name, proto, alias)", "name proto __asm__ (#alias)");
998 tcc_define_symbol(s, "__REDIRECT_NTH(name, proto, alias)", "name proto __asm__ (#alias) __THROW");
999 /* paths for crt objects */
1000 tcc_split_path(s, (void ***)&s->crt_paths, &s->nb_crt_paths, CONFIG_TCC_CRTPREFIX);
1001 #endif
1003 /* no section zero */
1004 dynarray_add((void ***)&s->sections, &s->nb_sections, NULL);
1006 /* create standard sections */
1007 text_section = new_section(s, ".text", SHT_PROGBITS, SHF_ALLOC | SHF_EXECINSTR);
1008 data_section = new_section(s, ".data", SHT_PROGBITS, SHF_ALLOC | SHF_WRITE);
1009 bss_section = new_section(s, ".bss", SHT_NOBITS, SHF_ALLOC | SHF_WRITE);
1011 /* symbols are always generated for linking stage */
1012 symtab_section = new_symtab(s, ".symtab", SHT_SYMTAB, 0,
1013 ".strtab",
1014 ".hashtab", SHF_PRIVATE);
1015 strtab_section = symtab_section->link;
1016 s->symtab = symtab_section;
1018 /* private symbol table for dynamic symbols */
1019 s->dynsymtab_section = new_symtab(s, ".dynsymtab", SHT_SYMTAB, SHF_PRIVATE,
1020 ".dynstrtab",
1021 ".dynhashtab", SHF_PRIVATE);
1022 s->alacarte_link = 1;
1023 s->nocommon = 1;
1024 s->section_align = ELF_PAGE_SIZE;
1026 #ifdef CHAR_IS_UNSIGNED
1027 s->char_is_unsigned = 1;
1028 #endif
1029 /* enable this if you want symbols with leading underscore on windows: */
1030 #if 0 /* def TCC_TARGET_PE */
1031 s->leading_underscore = 1;
1032 #endif
1033 #ifdef TCC_TARGET_I386
1034 s->seg_size = 32;
1035 #endif
1036 #ifdef TCC_IS_NATIVE
1037 s->runtime_main = "main";
1038 #endif
1039 return s;
1042 LIBTCCAPI void tcc_delete(TCCState *s1)
1044 int i;
1046 tcc_cleanup();
1048 /* free all sections */
1049 for(i = 1; i < s1->nb_sections; i++)
1050 free_section(s1->sections[i]);
1051 dynarray_reset(&s1->sections, &s1->nb_sections);
1053 for(i = 0; i < s1->nb_priv_sections; i++)
1054 free_section(s1->priv_sections[i]);
1055 dynarray_reset(&s1->priv_sections, &s1->nb_priv_sections);
1057 /* free any loaded DLLs */
1058 #ifdef TCC_IS_NATIVE
1059 for ( i = 0; i < s1->nb_loaded_dlls; i++) {
1060 DLLReference *ref = s1->loaded_dlls[i];
1061 if ( ref->handle )
1062 dlclose(ref->handle);
1064 #endif
1066 /* free loaded dlls array */
1067 dynarray_reset(&s1->loaded_dlls, &s1->nb_loaded_dlls);
1069 /* free library paths */
1070 dynarray_reset(&s1->library_paths, &s1->nb_library_paths);
1071 dynarray_reset(&s1->crt_paths, &s1->nb_crt_paths);
1073 /* free include paths */
1074 dynarray_reset(&s1->cached_includes, &s1->nb_cached_includes);
1075 dynarray_reset(&s1->include_paths, &s1->nb_include_paths);
1076 dynarray_reset(&s1->sysinclude_paths, &s1->nb_sysinclude_paths);
1078 tcc_free(s1->tcc_lib_path);
1079 tcc_free(s1->soname);
1080 tcc_free(s1->rpath);
1081 tcc_free(s1->init_symbol);
1082 tcc_free(s1->fini_symbol);
1083 tcc_free(s1->outfile);
1084 tcc_free(s1->deps_outfile);
1085 dynarray_reset(&s1->files, &s1->nb_files);
1086 dynarray_reset(&s1->target_deps, &s1->nb_target_deps);
1088 #ifdef TCC_IS_NATIVE
1089 # ifdef HAVE_SELINUX
1090 munmap (s1->write_mem, s1->mem_size);
1091 munmap (s1->runtime_mem, s1->mem_size);
1092 # else
1093 tcc_free(s1->runtime_mem);
1094 # endif
1095 #endif
1097 if(s1->sym_attrs) tcc_free(s1->sym_attrs);
1099 tcc_free(s1);
1102 LIBTCCAPI int tcc_add_include_path(TCCState *s, const char *pathname)
1104 tcc_split_path(s, (void ***)&s->include_paths, &s->nb_include_paths, pathname);
1105 return 0;
1108 LIBTCCAPI int tcc_add_sysinclude_path(TCCState *s, const char *pathname)
1110 tcc_split_path(s, (void ***)&s->sysinclude_paths, &s->nb_sysinclude_paths, pathname);
1111 return 0;
1114 ST_FUNC int tcc_add_file_internal(TCCState *s1, const char *filename, int flags)
1116 const char *ext;
1117 ElfW(Ehdr) ehdr;
1118 int fd, ret, size;
1120 /* find source file type with extension */
1121 ext = tcc_fileextension(filename);
1122 if (ext[0])
1123 ext++;
1125 #ifdef CONFIG_TCC_ASM
1126 /* if .S file, define __ASSEMBLER__ like gcc does */
1127 if (!strcmp(ext, "S"))
1128 tcc_define_symbol(s1, "__ASSEMBLER__", NULL);
1129 #endif
1131 /* open the file */
1132 ret = tcc_open(s1, filename);
1133 if (ret < 0) {
1134 if (flags & AFF_PRINT_ERROR)
1135 tcc_error_noabort("file '%s' not found", filename);
1136 return ret;
1139 /* update target deps */
1140 dynarray_add((void ***)&s1->target_deps, &s1->nb_target_deps,
1141 tcc_strdup(filename));
1143 if (flags & AFF_PREPROCESS) {
1144 ret = tcc_preprocess(s1);
1145 goto the_end;
1148 if (!ext[0] || !PATHCMP(ext, "c")) {
1149 /* C file assumed */
1150 ret = tcc_compile(s1);
1151 goto the_end;
1154 #ifdef CONFIG_TCC_ASM
1155 if (!strcmp(ext, "S")) {
1156 /* preprocessed assembler */
1157 ret = tcc_assemble(s1, 1);
1158 goto the_end;
1161 if (!strcmp(ext, "s")) {
1162 /* non preprocessed assembler */
1163 ret = tcc_assemble(s1, 0);
1164 goto the_end;
1166 #endif
1168 fd = file->fd;
1169 /* assume executable format: auto guess file type */
1170 size = read(fd, &ehdr, sizeof(ehdr));
1171 lseek(fd, 0, SEEK_SET);
1172 if (size <= 0) {
1173 tcc_error_noabort("could not read header");
1174 goto the_end;
1177 if (size == sizeof(ehdr) &&
1178 ehdr.e_ident[0] == ELFMAG0 &&
1179 ehdr.e_ident[1] == ELFMAG1 &&
1180 ehdr.e_ident[2] == ELFMAG2 &&
1181 ehdr.e_ident[3] == ELFMAG3) {
1183 /* do not display line number if error */
1184 file->line_num = 0;
1185 if (ehdr.e_type == ET_REL) {
1186 ret = tcc_load_object_file(s1, fd, 0);
1187 goto the_end;
1190 #ifndef TCC_TARGET_PE
1191 if (ehdr.e_type == ET_DYN) {
1192 if (s1->output_type == TCC_OUTPUT_MEMORY) {
1193 #ifdef TCC_IS_NATIVE
1194 void *h;
1195 h = dlopen(filename, RTLD_GLOBAL | RTLD_LAZY);
1196 if (h)
1197 #endif
1198 ret = 0;
1199 } else {
1200 ret = tcc_load_dll(s1, fd, filename,
1201 (flags & AFF_REFERENCED_DLL) != 0);
1203 goto the_end;
1205 #endif
1206 tcc_error_noabort("unrecognized ELF file");
1207 goto the_end;
1210 if (memcmp((char *)&ehdr, ARMAG, 8) == 0) {
1211 file->line_num = 0; /* do not display line number if error */
1212 ret = tcc_load_archive(s1, fd);
1213 goto the_end;
1216 #ifdef TCC_TARGET_COFF
1217 if (*(uint16_t *)(&ehdr) == COFF_C67_MAGIC) {
1218 ret = tcc_load_coff(s1, fd);
1219 goto the_end;
1221 #endif
1223 #ifdef TCC_TARGET_PE
1224 ret = pe_load_file(s1, filename, fd);
1225 #else
1226 /* as GNU ld, consider it is an ld script if not recognized */
1227 ret = tcc_load_ldscript(s1);
1228 #endif
1229 if (ret < 0)
1230 tcc_error_noabort("unrecognized file type");
1232 the_end:
1233 tcc_close();
1234 return ret;
1237 LIBTCCAPI int tcc_add_file(TCCState *s, const char *filename)
1239 if (s->output_type == TCC_OUTPUT_PREPROCESS)
1240 return tcc_add_file_internal(s, filename, AFF_PRINT_ERROR | AFF_PREPROCESS);
1241 else
1242 return tcc_add_file_internal(s, filename, AFF_PRINT_ERROR);
1245 LIBTCCAPI int tcc_add_library_path(TCCState *s, const char *pathname)
1247 tcc_split_path(s, (void ***)&s->library_paths, &s->nb_library_paths, pathname);
1248 return 0;
1251 static int tcc_add_library_internal(TCCState *s, const char *fmt,
1252 const char *filename, int flags, char **paths, int nb_paths)
1254 char buf[1024];
1255 int i;
1257 for(i = 0; i < nb_paths; i++) {
1258 snprintf(buf, sizeof(buf), fmt, paths[i], filename);
1259 if (tcc_add_file_internal(s, buf, flags) == 0)
1260 return 0;
1262 return -1;
1265 /* find and load a dll. Return non zero if not found */
1266 /* XXX: add '-rpath' option support ? */
1267 ST_FUNC int tcc_add_dll(TCCState *s, const char *filename, int flags)
1269 return tcc_add_library_internal(s, "%s/%s", filename, flags,
1270 s->library_paths, s->nb_library_paths);
1273 ST_FUNC int tcc_add_crt(TCCState *s, const char *filename)
1275 if (-1 == tcc_add_library_internal(s, "%s/%s",
1276 filename, 0, s->crt_paths, s->nb_crt_paths))
1277 tcc_error_noabort("file '%s' not found", filename);
1278 return 0;
1281 /* the library name is the same as the argument of the '-l' option */
1282 LIBTCCAPI int tcc_add_library(TCCState *s, const char *libraryname)
1284 #ifdef TCC_TARGET_PE
1285 const char *libs[] = { "%s/%s.def", "%s/lib%s.def", "%s/%s.dll", "%s/lib%s.dll", "%s/lib%s.a", NULL };
1286 const char **pp = s->static_link ? libs + 4 : libs;
1287 #else
1288 const char *libs[] = { "%s/lib%s.so", "%s/lib%s.a", NULL };
1289 const char **pp = s->static_link ? libs + 1 : libs;
1290 #endif
1291 while (*pp) {
1292 if (0 == tcc_add_library_internal(s, *pp,
1293 libraryname, 0, s->library_paths, s->nb_library_paths))
1294 return 0;
1295 ++pp;
1297 return -1;
1300 LIBTCCAPI int tcc_add_symbol(TCCState *s, const char *name, const void *val)
1302 #ifdef TCC_TARGET_PE
1303 /* On x86_64 'val' might not be reachable with a 32bit offset.
1304 So it is handled here as if it were in a DLL. */
1305 pe_putimport(s, 0, name, (uintptr_t)val);
1306 #else
1307 /* XXX: Same problem on linux but currently "solved" elsewhere
1308 via the rather dirty 'runtime_plt_and_got' hack. */
1309 add_elf_sym(symtab_section, (uintptr_t)val, 0,
1310 ELFW(ST_INFO)(STB_GLOBAL, STT_NOTYPE), 0,
1311 SHN_ABS, name);
1312 #endif
1313 return 0;
1316 LIBTCCAPI int tcc_set_output_type(TCCState *s, int output_type)
1318 s->output_type = output_type;
1320 if (!s->nostdinc) {
1321 /* default include paths */
1322 /* -isystem paths have already been handled */
1323 tcc_add_sysinclude_path(s, CONFIG_TCC_SYSINCLUDEPATHS);
1326 /* if bound checking, then add corresponding sections */
1327 #ifdef CONFIG_TCC_BCHECK
1328 if (s->do_bounds_check) {
1329 /* define symbol */
1330 tcc_define_symbol(s, "__BOUNDS_CHECKING_ON", NULL);
1331 /* create bounds sections */
1332 bounds_section = new_section(s, ".bounds",
1333 SHT_PROGBITS, SHF_ALLOC);
1334 lbounds_section = new_section(s, ".lbounds",
1335 SHT_PROGBITS, SHF_ALLOC);
1337 #endif
1339 if (s->char_is_unsigned) {
1340 tcc_define_symbol(s, "__CHAR_UNSIGNED__", NULL);
1343 /* add debug sections */
1344 if (s->do_debug) {
1345 /* stab symbols */
1346 stab_section = new_section(s, ".stab", SHT_PROGBITS, 0);
1347 stab_section->sh_entsize = sizeof(Stab_Sym);
1348 stabstr_section = new_section(s, ".stabstr", SHT_STRTAB, 0);
1349 put_elf_str(stabstr_section, "");
1350 stab_section->link = stabstr_section;
1351 /* put first entry */
1352 put_stabs("", 0, 0, 0, 0);
1355 tcc_add_library_path(s, CONFIG_TCC_LIBPATHS);
1356 #ifdef TCC_TARGET_PE
1357 # ifdef _WIN32
1358 tcc_add_systemdir(s);
1359 # endif
1360 #else
1361 /* add libc crt1/crti objects */
1362 if ((output_type == TCC_OUTPUT_EXE || output_type == TCC_OUTPUT_DLL) &&
1363 !s->nostdlib) {
1364 if (output_type != TCC_OUTPUT_DLL)
1365 tcc_add_crt(s, "crt1.o");
1366 tcc_add_crt(s, "crti.o");
1368 #endif
1369 return 0;
1372 LIBTCCAPI void tcc_set_lib_path(TCCState *s, const char *path)
1374 tcc_free(s->tcc_lib_path);
1375 s->tcc_lib_path = tcc_strdup(path);
1378 #define WD_ALL 0x0001 /* warning is activated when using -Wall */
1379 #define FD_INVERT 0x0002 /* invert value before storing */
1381 typedef struct FlagDef {
1382 uint16_t offset;
1383 uint16_t flags;
1384 const char *name;
1385 } FlagDef;
1387 static const FlagDef warning_defs[] = {
1388 { offsetof(TCCState, warn_unsupported), 0, "unsupported" },
1389 { offsetof(TCCState, warn_write_strings), 0, "write-strings" },
1390 { offsetof(TCCState, warn_error), 0, "error" },
1391 { offsetof(TCCState, warn_implicit_function_declaration), WD_ALL,
1392 "implicit-function-declaration" },
1395 ST_FUNC int set_flag(TCCState *s, const FlagDef *flags, int nb_flags,
1396 const char *name, int value)
1398 int i;
1399 const FlagDef *p;
1400 const char *r;
1402 r = name;
1403 if (r[0] == 'n' && r[1] == 'o' && r[2] == '-') {
1404 r += 3;
1405 value = !value;
1407 for(i = 0, p = flags; i < nb_flags; i++, p++) {
1408 if (!strcmp(r, p->name))
1409 goto found;
1411 return -1;
1412 found:
1413 if (p->flags & FD_INVERT)
1414 value = !value;
1415 *(int *)((uint8_t *)s + p->offset) = value;
1416 return 0;
1419 /* set/reset a warning */
1420 static int tcc_set_warning(TCCState *s, const char *warning_name, int value)
1422 int i;
1423 const FlagDef *p;
1425 if (!strcmp(warning_name, "all")) {
1426 for(i = 0, p = warning_defs; i < countof(warning_defs); i++, p++) {
1427 if (p->flags & WD_ALL)
1428 *(int *)((uint8_t *)s + p->offset) = 1;
1430 return 0;
1431 } else {
1432 return set_flag(s, warning_defs, countof(warning_defs),
1433 warning_name, value);
1437 static const FlagDef flag_defs[] = {
1438 { offsetof(TCCState, char_is_unsigned), 0, "unsigned-char" },
1439 { offsetof(TCCState, char_is_unsigned), FD_INVERT, "signed-char" },
1440 { offsetof(TCCState, nocommon), FD_INVERT, "common" },
1441 { offsetof(TCCState, leading_underscore), 0, "leading-underscore" },
1444 /* set/reset a flag */
1445 static int tcc_set_flag(TCCState *s, const char *flag_name, int value)
1447 return set_flag(s, flag_defs, countof(flag_defs),
1448 flag_name, value);
1452 static int strstart(const char *val, const char **str)
1454 const char *p, *q;
1455 p = *str;
1456 q = val;
1457 while (*q) {
1458 if (*p != *q)
1459 return 0;
1460 p++;
1461 q++;
1463 *str = p;
1464 return 1;
1467 /* Like strstart, but automatically takes into account that ld options can
1469 * - start with double or single dash (e.g. '--soname' or '-soname')
1470 * - arguments can be given as separate or after '=' (e.g. '-Wl,-soname,x.so'
1471 * or '-Wl,-soname=x.so')
1473 * you provide `val` always in 'option[=]' form (no leading -)
1475 static int link_option(const char *str, const char *val, const char **ptr)
1477 const char *p, *q;
1479 /* there should be 1 or 2 dashes */
1480 if (*str++ != '-')
1481 return 0;
1482 if (*str == '-')
1483 str++;
1485 /* then str & val should match (potentialy up to '=') */
1486 p = str;
1487 q = val;
1489 while (*q != '\0' && *q != '=') {
1490 if (*p != *q)
1491 return 0;
1492 p++;
1493 q++;
1496 /* '=' near eos means ',' or '=' is ok */
1497 if (*q == '=') {
1498 if (*p != ',' && *p != '=')
1499 return 0;
1500 p++;
1501 q++;
1504 if (ptr)
1505 *ptr = p;
1506 return 1;
1509 static const char *skip_linker_arg(const char **str)
1511 const char *s1 = *str;
1512 const char *s2 = strchr(s1, ',');
1513 *str = s2 ? s2++ : (s2 = s1 + strlen(s1));
1514 return s2;
1517 static char *copy_linker_arg(const char *p)
1519 const char *q = p;
1520 skip_linker_arg(&q);
1521 return pstrncpy(tcc_malloc(q - p + 1), p, q - p);
1524 /* set linker options */
1525 static int tcc_set_linker(TCCState *s, const char *option)
1527 while (option && *option) {
1529 const char *p = option;
1530 char *end = NULL;
1531 int ignoring = 0;
1533 if (link_option(option, "Bsymbolic", &p)) {
1534 s->symbolic = 1;
1535 } else if (link_option(option, "nostdlib", &p)) {
1536 s->nostdlib = 1;
1537 } else if (link_option(option, "fini=", &p)) {
1538 s->fini_symbol = copy_linker_arg(p);
1539 ignoring = 1;
1540 } else if (link_option(option, "image-base=", &p)
1541 || link_option(option, "Ttext=", &p)) {
1542 s->text_addr = strtoull(p, &end, 16);
1543 s->has_text_addr = 1;
1544 } else if (link_option(option, "init=", &p)) {
1545 s->init_symbol = copy_linker_arg(p);
1546 ignoring = 1;
1547 } else if (link_option(option, "oformat=", &p)) {
1548 #if defined(TCC_TARGET_PE)
1549 if (strstart("pe-", &p)) {
1550 #elif defined(TCC_TARGET_X86_64)
1551 if (strstart("elf64-", &p)) {
1552 #else
1553 if (strstart("elf32-", &p)) {
1554 #endif
1555 s->output_format = TCC_OUTPUT_FORMAT_ELF;
1556 } else if (!strcmp(p, "binary")) {
1557 s->output_format = TCC_OUTPUT_FORMAT_BINARY;
1558 #ifdef TCC_TARGET_COFF
1559 } else if (!strcmp(p, "coff")) {
1560 s->output_format = TCC_OUTPUT_FORMAT_COFF;
1561 #endif
1562 } else
1563 goto err;
1565 } else if (link_option(option, "as-needed", &p)) {
1566 ignoring = 1;
1567 } else if (link_option(option, "O", &p)) {
1568 ignoring = 1;
1569 } else if (link_option(option, "rpath=", &p)) {
1570 s->rpath = copy_linker_arg(p);
1571 } else if (link_option(option, "section-alignment=", &p)) {
1572 s->section_align = strtoul(p, &end, 16);
1573 } else if (link_option(option, "soname=", &p)) {
1574 s->soname = copy_linker_arg(p);
1575 #ifdef TCC_TARGET_PE
1576 } else if (link_option(option, "file-alignment=", &p)) {
1577 s->pe_file_align = strtoul(p, &end, 16);
1578 } else if (link_option(option, "stack=", &p)) {
1579 s->pe_stack_size = strtoul(p, &end, 10);
1580 } else if (link_option(option, "subsystem=", &p)) {
1581 #if defined(TCC_TARGET_I386) || defined(TCC_TARGET_X86_64)
1582 if (!strcmp(p, "native")) {
1583 s->pe_subsystem = 1;
1584 } else if (!strcmp(p, "console")) {
1585 s->pe_subsystem = 3;
1586 } else if (!strcmp(p, "gui")) {
1587 s->pe_subsystem = 2;
1588 } else if (!strcmp(p, "posix")) {
1589 s->pe_subsystem = 7;
1590 } else if (!strcmp(p, "efiapp")) {
1591 s->pe_subsystem = 10;
1592 } else if (!strcmp(p, "efiboot")) {
1593 s->pe_subsystem = 11;
1594 } else if (!strcmp(p, "efiruntime")) {
1595 s->pe_subsystem = 12;
1596 } else if (!strcmp(p, "efirom")) {
1597 s->pe_subsystem = 13;
1598 #elif defined(TCC_TARGET_ARM)
1599 if (!strcmp(p, "wince")) {
1600 s->pe_subsystem = 9;
1601 #endif
1602 } else
1603 goto err;
1604 #endif
1605 } else
1606 goto err;
1608 if (ignoring && s->warn_unsupported) err: {
1609 char buf[100], *e;
1610 pstrcpy(buf, sizeof buf, e = copy_linker_arg(option)), tcc_free(e);
1611 if (ignoring)
1612 tcc_warning("unsupported linker option '%s'", buf);
1613 else
1614 tcc_error("unsupported linker option '%s'", buf);
1616 option = skip_linker_arg(&p);
1618 return 0;
1621 typedef struct TCCOption {
1622 const char *name;
1623 uint16_t index;
1624 uint16_t flags;
1625 } TCCOption;
1627 enum {
1628 TCC_OPTION_HELP,
1629 TCC_OPTION_I,
1630 TCC_OPTION_D,
1631 TCC_OPTION_U,
1632 TCC_OPTION_L,
1633 TCC_OPTION_B,
1634 TCC_OPTION_l,
1635 TCC_OPTION_bench,
1636 TCC_OPTION_bt,
1637 TCC_OPTION_b,
1638 TCC_OPTION_g,
1639 TCC_OPTION_c,
1640 TCC_OPTION_float_abi,
1641 TCC_OPTION_static,
1642 TCC_OPTION_shared,
1643 TCC_OPTION_soname,
1644 TCC_OPTION_o,
1645 TCC_OPTION_r,
1646 TCC_OPTION_s,
1647 TCC_OPTION_Wl,
1648 TCC_OPTION_W,
1649 TCC_OPTION_O,
1650 TCC_OPTION_m,
1651 TCC_OPTION_f,
1652 TCC_OPTION_isystem,
1653 TCC_OPTION_nostdinc,
1654 TCC_OPTION_nostdlib,
1655 TCC_OPTION_print_search_dirs,
1656 TCC_OPTION_rdynamic,
1657 TCC_OPTION_pedantic,
1658 TCC_OPTION_pthread,
1659 TCC_OPTION_run,
1660 TCC_OPTION_norunsrc,
1661 TCC_OPTION_v,
1662 TCC_OPTION_w,
1663 TCC_OPTION_pipe,
1664 TCC_OPTION_E,
1665 TCC_OPTION_MD,
1666 TCC_OPTION_MF,
1667 TCC_OPTION_x,
1668 TCC_OPTION_dumpversion,
1671 #define TCC_OPTION_HAS_ARG 0x0001
1672 #define TCC_OPTION_NOSEP 0x0002 /* cannot have space before option and arg */
1674 static const TCCOption tcc_options[] = {
1675 { "h", TCC_OPTION_HELP, 0 },
1676 { "-help", TCC_OPTION_HELP, 0 },
1677 { "?", TCC_OPTION_HELP, 0 },
1678 { "I", TCC_OPTION_I, TCC_OPTION_HAS_ARG },
1679 { "D", TCC_OPTION_D, TCC_OPTION_HAS_ARG },
1680 { "U", TCC_OPTION_U, TCC_OPTION_HAS_ARG },
1681 { "L", TCC_OPTION_L, TCC_OPTION_HAS_ARG },
1682 { "B", TCC_OPTION_B, TCC_OPTION_HAS_ARG },
1683 { "l", TCC_OPTION_l, TCC_OPTION_HAS_ARG | TCC_OPTION_NOSEP },
1684 { "bench", TCC_OPTION_bench, 0 },
1685 #ifdef CONFIG_TCC_BACKTRACE
1686 { "bt", TCC_OPTION_bt, TCC_OPTION_HAS_ARG },
1687 #endif
1688 #ifdef CONFIG_TCC_BCHECK
1689 { "b", TCC_OPTION_b, 0 },
1690 #endif
1691 { "g", TCC_OPTION_g, TCC_OPTION_HAS_ARG | TCC_OPTION_NOSEP },
1692 { "c", TCC_OPTION_c, 0 },
1693 #ifdef TCC_TARGET_ARM
1694 { "mfloat-abi", TCC_OPTION_float_abi, TCC_OPTION_HAS_ARG },
1695 #endif
1696 { "static", TCC_OPTION_static, 0 },
1697 { "shared", TCC_OPTION_shared, 0 },
1698 { "soname", TCC_OPTION_soname, TCC_OPTION_HAS_ARG },
1699 { "o", TCC_OPTION_o, TCC_OPTION_HAS_ARG },
1700 { "pedantic", TCC_OPTION_pedantic, 0},
1701 { "pthread", TCC_OPTION_pthread, 0},
1702 { "run", TCC_OPTION_run, TCC_OPTION_HAS_ARG | TCC_OPTION_NOSEP },
1703 { "norunsrc", TCC_OPTION_norunsrc, 0 },
1704 { "rdynamic", TCC_OPTION_rdynamic, 0 },
1705 { "r", TCC_OPTION_r, 0 },
1706 { "s", TCC_OPTION_s, 0 },
1707 { "Wl,", TCC_OPTION_Wl, TCC_OPTION_HAS_ARG | TCC_OPTION_NOSEP },
1708 { "W", TCC_OPTION_W, TCC_OPTION_HAS_ARG | TCC_OPTION_NOSEP },
1709 { "O", TCC_OPTION_O, TCC_OPTION_HAS_ARG | TCC_OPTION_NOSEP },
1710 { "m", TCC_OPTION_m, TCC_OPTION_HAS_ARG },
1711 { "f", TCC_OPTION_f, TCC_OPTION_HAS_ARG | TCC_OPTION_NOSEP },
1712 { "isystem", TCC_OPTION_isystem, TCC_OPTION_HAS_ARG },
1713 { "nostdinc", TCC_OPTION_nostdinc, 0 },
1714 { "nostdlib", TCC_OPTION_nostdlib, 0 },
1715 { "print-search-dirs", TCC_OPTION_print_search_dirs, 0 },
1716 { "v", TCC_OPTION_v, TCC_OPTION_HAS_ARG | TCC_OPTION_NOSEP },
1717 { "w", TCC_OPTION_w, 0 },
1718 { "pipe", TCC_OPTION_pipe, 0},
1719 { "E", TCC_OPTION_E, 0},
1720 { "MD", TCC_OPTION_MD, 0},
1721 { "MF", TCC_OPTION_MF, TCC_OPTION_HAS_ARG },
1722 { "x", TCC_OPTION_x, TCC_OPTION_HAS_ARG },
1723 { "dumpversion", TCC_OPTION_dumpversion, 0},
1724 { NULL, 0, 0 },
1727 static void parse_option_D(TCCState *s1, const char *optarg)
1729 char *sym = tcc_strdup(optarg);
1730 char *value = strchr(sym, '=');
1731 if (value)
1732 *value++ = '\0';
1733 tcc_define_symbol(s1, sym, value);
1734 tcc_free(sym);
1737 PUB_FUNC int tcc_parse_args(TCCState *s, int argc, char **argv)
1739 const TCCOption *popt;
1740 const char *optarg, *r;
1741 int run = 0;
1742 int norunsrc = 0;
1743 int pthread = 0;
1744 int optind = 0;
1746 /* collect -Wl options for input such as "-Wl,-rpath -Wl,<path>" */
1747 CString linker_arg;
1748 cstr_new(&linker_arg);
1750 while (optind < argc) {
1752 r = argv[optind++];
1753 if (r[0] != '-' || r[1] == '\0') {
1754 /* add a new file */
1755 if (!run || !norunsrc)
1756 dynarray_add((void ***)&s->files, &s->nb_files, tcc_strdup(r));
1757 if (run) {
1758 optind--;
1759 /* argv[0] will be this file */
1760 break;
1762 continue;
1765 /* find option in table */
1766 for(popt = tcc_options; ; ++popt) {
1767 const char *p1 = popt->name;
1768 const char *r1 = r + 1;
1769 if (p1 == NULL)
1770 tcc_error("invalid option -- '%s'", r);
1771 if (!strstart(p1, &r1))
1772 continue;
1773 optarg = r1;
1774 if (popt->flags & TCC_OPTION_HAS_ARG) {
1775 if (*r1 == '\0' && !(popt->flags & TCC_OPTION_NOSEP)) {
1776 if (optind >= argc)
1777 tcc_error("argument to '%s' is missing", r);
1778 optarg = argv[optind++];
1780 } else if (*r1 != '\0')
1781 continue;
1782 break;
1785 switch(popt->index) {
1786 case TCC_OPTION_HELP:
1787 return 0;
1788 case TCC_OPTION_I:
1789 if (tcc_add_include_path(s, optarg) < 0)
1790 tcc_error("too many include paths");
1791 break;
1792 case TCC_OPTION_D:
1793 parse_option_D(s, optarg);
1794 break;
1795 case TCC_OPTION_U:
1796 tcc_undefine_symbol(s, optarg);
1797 break;
1798 case TCC_OPTION_L:
1799 tcc_add_library_path(s, optarg);
1800 break;
1801 case TCC_OPTION_B:
1802 /* set tcc utilities path (mainly for tcc development) */
1803 tcc_set_lib_path(s, optarg);
1804 break;
1805 case TCC_OPTION_l:
1806 dynarray_add((void ***)&s->files, &s->nb_files, tcc_strdup(r));
1807 s->nb_libraries++;
1808 break;
1809 case TCC_OPTION_pthread:
1810 parse_option_D(s, "_REENTRANT");
1811 pthread = 1;
1812 break;
1813 case TCC_OPTION_bench:
1814 s->do_bench = 1;
1815 break;
1816 #ifdef CONFIG_TCC_BACKTRACE
1817 case TCC_OPTION_bt:
1818 tcc_set_num_callers(atoi(optarg));
1819 break;
1820 #endif
1821 #ifdef CONFIG_TCC_BCHECK
1822 case TCC_OPTION_b:
1823 s->do_bounds_check = 1;
1824 s->do_debug = 1;
1825 break;
1826 #endif
1827 case TCC_OPTION_g:
1828 s->do_debug = 1;
1829 break;
1830 case TCC_OPTION_c:
1831 s->output_type = TCC_OUTPUT_OBJ;
1832 break;
1833 #ifdef TCC_TARGET_ARM
1834 case TCC_OPTION_float_abi:
1835 /* tcc doesn't support soft float yet */
1836 if (!strcmp(optarg, "softfp")) {
1837 s->float_abi = ARM_SOFTFP_FLOAT;
1838 tcc_undefine_symbol(s, "__ARM_PCS_VFP");
1839 } else if (!strcmp(optarg, "hard"))
1840 s->float_abi = ARM_HARD_FLOAT;
1841 else
1842 tcc_error("unsupported float abi '%s'", optarg);
1843 break;
1844 #endif
1845 case TCC_OPTION_static:
1846 s->static_link = 1;
1847 break;
1848 case TCC_OPTION_shared:
1849 s->output_type = TCC_OUTPUT_DLL;
1850 break;
1851 case TCC_OPTION_soname:
1852 s->soname = tcc_strdup(optarg);
1853 break;
1854 case TCC_OPTION_m:
1855 s->option_m = tcc_strdup(optarg);
1856 break;
1857 case TCC_OPTION_o:
1858 s->outfile = tcc_strdup(optarg);
1859 break;
1860 case TCC_OPTION_r:
1861 /* generate a .o merging several output files */
1862 s->option_r = 1;
1863 s->output_type = TCC_OUTPUT_OBJ;
1864 break;
1865 case TCC_OPTION_isystem:
1866 tcc_add_sysinclude_path(s, optarg);
1867 break;
1868 case TCC_OPTION_nostdinc:
1869 s->nostdinc = 1;
1870 break;
1871 case TCC_OPTION_nostdlib:
1872 s->nostdlib = 1;
1873 break;
1874 case TCC_OPTION_print_search_dirs:
1875 s->print_search_dirs = 1;
1876 break;
1877 case TCC_OPTION_run:
1878 s->output_type = TCC_OUTPUT_MEMORY;
1879 tcc_set_options(s, optarg);
1880 run = 1;
1881 break;
1882 case TCC_OPTION_norunsrc:
1883 norunsrc = 1;
1884 break;
1885 case TCC_OPTION_v:
1886 do ++s->verbose; while (*optarg++ == 'v');
1887 break;
1888 case TCC_OPTION_f:
1889 if (tcc_set_flag(s, optarg, 1) < 0 && s->warn_unsupported)
1890 goto unsupported_option;
1891 break;
1892 case TCC_OPTION_W:
1893 if (tcc_set_warning(s, optarg, 1) < 0 &&
1894 s->warn_unsupported)
1895 goto unsupported_option;
1896 break;
1897 case TCC_OPTION_w:
1898 s->warn_none = 1;
1899 break;
1900 case TCC_OPTION_rdynamic:
1901 s->rdynamic = 1;
1902 break;
1903 case TCC_OPTION_Wl:
1904 if (linker_arg.size)
1905 --linker_arg.size, cstr_ccat(&linker_arg, ',');
1906 cstr_cat(&linker_arg, optarg);
1907 cstr_ccat(&linker_arg, '\0');
1908 break;
1909 case TCC_OPTION_E:
1910 s->output_type = TCC_OUTPUT_PREPROCESS;
1911 break;
1912 case TCC_OPTION_MD:
1913 s->gen_deps = 1;
1914 break;
1915 case TCC_OPTION_MF:
1916 s->deps_outfile = tcc_strdup(optarg);
1917 break;
1918 case TCC_OPTION_dumpversion:
1919 printf ("%s\n", TCC_VERSION);
1920 exit(0);
1921 case TCC_OPTION_O:
1922 case TCC_OPTION_pedantic:
1923 case TCC_OPTION_pipe:
1924 case TCC_OPTION_s:
1925 case TCC_OPTION_x:
1926 /* ignored */
1927 break;
1928 default:
1929 if (s->warn_unsupported) {
1930 unsupported_option:
1931 tcc_warning("unsupported option '%s'", r);
1933 break;
1937 if (pthread && s->output_type != TCC_OUTPUT_OBJ)
1938 tcc_set_options(s, "-lpthread");
1940 tcc_set_linker(s, (const char *)linker_arg.data);
1941 cstr_free(&linker_arg);
1943 return optind;
1946 LIBTCCAPI int tcc_set_options(TCCState *s, const char *str)
1948 const char *s1;
1949 char **argv, *arg;
1950 int argc, len;
1951 int ret;
1953 argc = 0, argv = NULL;
1954 for(;;) {
1955 while (is_space(*str))
1956 str++;
1957 if (*str == '\0')
1958 break;
1959 s1 = str;
1960 while (*str != '\0' && !is_space(*str))
1961 str++;
1962 len = str - s1;
1963 arg = tcc_malloc(len + 1);
1964 pstrncpy(arg, s1, len);
1965 dynarray_add((void ***)&argv, &argc, arg);
1967 ret = tcc_parse_args(s, argc, argv);
1968 dynarray_reset(&argv, &argc);
1969 return ret;
1972 PUB_FUNC void tcc_print_stats(TCCState *s, int64_t total_time)
1974 double tt;
1975 tt = (double)total_time / 1000000.0;
1976 if (tt < 0.001)
1977 tt = 0.001;
1978 if (total_bytes < 1)
1979 total_bytes = 1;
1980 printf("%d idents, %d lines, %d bytes, %0.3f s, %d lines/s, %0.1f MB/s\n",
1981 tok_ident - TOK_IDENT, total_lines, total_bytes,
1982 tt, (int)(total_lines / tt),
1983 total_bytes / tt / 1000000.0);
1986 PUB_FUNC void tcc_set_environment(TCCState *s)
1988 char * path;
1990 path = getenv("C_INCLUDE_PATH");
1991 if(path != NULL) {
1992 tcc_add_include_path(s, path);
1994 path = getenv("CPATH");
1995 if(path != NULL) {
1996 tcc_add_include_path(s, path);
1998 path = getenv("LIBRARY_PATH");
1999 if(path != NULL) {
2000 tcc_add_library_path(s, path);