fix for the "Reduce allocations overhead"
[tinycc.git] / libtcc.c
blob75a37c3d400670a95a6adb9cd66c3509cc7dcbe8
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_ARM64
49 #include "arm64-gen.c"
50 #endif
51 #ifdef TCC_TARGET_C67
52 #include "c67-gen.c"
53 #endif
54 #ifdef TCC_TARGET_X86_64
55 #include "x86_64-gen.c"
56 #endif
57 #ifdef CONFIG_TCC_ASM
58 #include "tccasm.c"
59 #if defined TCC_TARGET_I386 || defined TCC_TARGET_X86_64
60 #include "i386-asm.c"
61 #endif
62 #endif
63 #ifdef TCC_TARGET_COFF
64 #include "tcccoff.c"
65 #endif
66 #ifdef TCC_TARGET_PE
67 #include "tccpe.c"
68 #endif
69 #endif /* ONE_SOURCE */
71 /********************************************************/
72 #ifndef CONFIG_TCC_ASM
73 ST_FUNC void asm_instr(void)
75 tcc_error("inline asm() not supported");
77 ST_FUNC void asm_global_instr(void)
79 tcc_error("inline asm() not supported");
81 #endif
83 /********************************************************/
84 #ifdef _WIN32
85 static char *normalize_slashes(char *path)
87 char *p;
88 for (p = path; *p; ++p)
89 if (*p == '\\')
90 *p = '/';
91 return path;
94 static HMODULE tcc_module;
96 /* on win32, we suppose the lib and includes are at the location of 'tcc.exe' */
97 static void tcc_set_lib_path_w32(TCCState *s)
99 char path[1024], *p;
100 GetModuleFileNameA(tcc_module, path, sizeof path);
101 p = tcc_basename(normalize_slashes(strlwr(path)));
102 if (p - 5 > path && 0 == strncmp(p - 5, "/bin/", 5))
103 p -= 5;
104 else if (p > path)
105 p--;
106 *p = 0;
107 tcc_set_lib_path(s, path);
110 #ifdef TCC_TARGET_PE
111 static void tcc_add_systemdir(TCCState *s)
113 char buf[1000];
114 GetSystemDirectory(buf, sizeof buf);
115 tcc_add_library_path(s, normalize_slashes(buf));
117 #endif
119 #ifndef CONFIG_TCC_STATIC
120 void dlclose(void *p)
122 FreeLibrary((HMODULE)p);
124 #endif
126 #ifdef LIBTCC_AS_DLL
127 BOOL WINAPI DllMain (HINSTANCE hDll, DWORD dwReason, LPVOID lpReserved)
129 if (DLL_PROCESS_ATTACH == dwReason)
130 tcc_module = hDll;
131 return TRUE;
133 #endif
134 #endif
136 /********************************************************/
137 /* copy a string and truncate it. */
138 PUB_FUNC char *pstrcpy(char *buf, int buf_size, const char *s)
140 char *q, *q_end;
141 int c;
143 if (buf_size > 0) {
144 q = buf;
145 q_end = buf + buf_size - 1;
146 while (q < q_end) {
147 c = *s++;
148 if (c == '\0')
149 break;
150 *q++ = c;
152 *q = '\0';
154 return buf;
157 /* strcat and truncate. */
158 PUB_FUNC char *pstrcat(char *buf, int buf_size, const char *s)
160 int len;
161 len = strlen(buf);
162 if (len < buf_size)
163 pstrcpy(buf + len, buf_size - len, s);
164 return buf;
167 PUB_FUNC char *pstrncpy(char *out, const char *in, size_t num)
169 memcpy(out, in, num);
170 out[num] = '\0';
171 return out;
174 /* extract the basename of a file */
175 PUB_FUNC char *tcc_basename(const char *name)
177 char *p = strchr(name, 0);
178 while (p > name && !IS_DIRSEP(p[-1]))
179 --p;
180 return p;
183 /* extract extension part of a file
185 * (if no extension, return pointer to end-of-string)
187 PUB_FUNC char *tcc_fileextension (const char *name)
189 char *b = tcc_basename(name);
190 char *e = strrchr(b, '.');
191 return e ? e : strchr(b, 0);
194 /********************************************************/
195 /* memory management */
197 #undef free
198 #undef malloc
199 #undef realloc
201 #ifndef MEM_DEBUG
203 PUB_FUNC void tcc_free(void *ptr)
205 free(ptr);
208 PUB_FUNC void *tcc_malloc(unsigned long size)
210 void *ptr;
211 ptr = malloc(size);
212 if (!ptr && size)
213 tcc_error("memory full (malloc)");
214 return ptr;
217 PUB_FUNC void *tcc_mallocz(unsigned long size)
219 void *ptr;
220 ptr = tcc_malloc(size);
221 memset(ptr, 0, size);
222 return ptr;
225 PUB_FUNC void *tcc_realloc(void *ptr, unsigned long size)
227 void *ptr1;
228 ptr1 = realloc(ptr, size);
229 if (!ptr1 && size)
230 tcc_error("memory full (realloc)");
231 return ptr1;
234 PUB_FUNC char *tcc_strdup(const char *str)
236 char *ptr;
237 ptr = tcc_malloc(strlen(str) + 1);
238 strcpy(ptr, str);
239 return ptr;
242 PUB_FUNC void tcc_memstats(int bench)
246 #else
248 #define MEM_DEBUG_MAGIC1 0xFEEDDEB1
249 #define MEM_DEBUG_MAGIC2 0xFEEDDEB2
250 #define MEM_DEBUG_FILE_LEN 15
252 struct mem_debug_header {
253 size_t magic1;
254 size_t size;
255 struct mem_debug_header *prev;
256 struct mem_debug_header *next;
257 size_t line_num;
258 char file_name[MEM_DEBUG_FILE_LEN + 1];
259 size_t magic2;
262 typedef struct mem_debug_header mem_debug_header_t;
264 static mem_debug_header_t *mem_debug_chain;
265 static size_t mem_cur_size;
266 static size_t mem_max_size;
268 PUB_FUNC void *tcc_malloc_debug(unsigned long size, const char *file, int line)
270 void *ptr;
271 int ofs;
273 mem_debug_header_t *header;
275 ptr = malloc(sizeof(mem_debug_header_t) + size);
276 if (!ptr)
277 tcc_error("memory full (malloc)");
279 mem_cur_size += size;
280 if (mem_cur_size > mem_max_size)
281 mem_max_size = mem_cur_size;
283 header = (mem_debug_header_t *)ptr;
285 header->magic1 = MEM_DEBUG_MAGIC1;
286 header->magic2 = MEM_DEBUG_MAGIC2;
287 header->size = size;
288 header->line_num = line;
290 ofs = strlen(file) - MEM_DEBUG_FILE_LEN;
291 strncpy(header->file_name, file + (ofs > 0 ? ofs : 0), MEM_DEBUG_FILE_LEN);
292 header->file_name[MEM_DEBUG_FILE_LEN] = 0;
294 header->next = mem_debug_chain;
295 header->prev = NULL;
297 if (header->next)
298 header->next->prev = header;
300 mem_debug_chain = header;
302 ptr = (char *)ptr + sizeof(mem_debug_header_t);
303 return ptr;
306 PUB_FUNC void tcc_free_debug(void *ptr)
308 mem_debug_header_t *header;
310 if (!ptr)
311 return;
313 ptr = (char *)ptr - sizeof(mem_debug_header_t);
314 header = (mem_debug_header_t *)ptr;
315 if (header->magic1 != MEM_DEBUG_MAGIC1 ||
316 header->magic2 != MEM_DEBUG_MAGIC2 ||
317 header->size == (size_t)-1 )
319 tcc_error("tcc_free check failed");
322 mem_cur_size -= header->size;
323 header->size = (size_t)-1;
325 if (header->next)
326 header->next->prev = header->prev;
328 if (header->prev)
329 header->prev->next = header->next;
331 if (header == mem_debug_chain)
332 mem_debug_chain = header->next;
334 free(ptr);
338 PUB_FUNC void *tcc_mallocz_debug(unsigned long size, const char *file, int line)
340 void *ptr;
341 ptr = tcc_malloc_debug(size,file,line);
342 memset(ptr, 0, size);
343 return ptr;
346 PUB_FUNC void *tcc_realloc_debug(void *ptr, unsigned long size, const char *file, int line)
348 mem_debug_header_t *header;
349 int mem_debug_chain_update = 0;
351 if (!ptr) {
352 ptr = tcc_malloc_debug(size, file, line);
353 return ptr;
356 ptr = (char *)ptr - sizeof(mem_debug_header_t);
357 header = (mem_debug_header_t *)ptr;
358 if (header->magic1 != MEM_DEBUG_MAGIC1 ||
359 header->magic2 != MEM_DEBUG_MAGIC2 ||
360 header->size == (size_t)-1 )
362 check_error:
363 tcc_error("tcc_realloc check failed");
366 mem_debug_chain_update = (header == mem_debug_chain);
368 mem_cur_size -= header->size;
369 ptr = realloc(ptr, sizeof(mem_debug_header_t) + size);
370 if (!ptr)
371 tcc_error("memory full (realloc)");
373 header = (mem_debug_header_t *)ptr;
374 if (header->magic1 != MEM_DEBUG_MAGIC1 ||
375 header->magic2 != MEM_DEBUG_MAGIC2)
377 goto check_error;
380 mem_cur_size += size;
381 if (mem_cur_size > mem_max_size)
382 mem_max_size = mem_cur_size;
384 header->size = size;
385 if (header->next)
386 header->next->prev = header;
388 if (header->prev)
389 header->prev->next = header;
391 if (mem_debug_chain_update)
392 mem_debug_chain = header;
394 ptr = (char *)ptr + sizeof(mem_debug_header_t);
395 return ptr;
398 PUB_FUNC char *tcc_strdup_debug(const char *str, const char *file, int line)
400 char *ptr;
401 ptr = tcc_malloc_debug(strlen(str) + 1, file, line);
402 strcpy(ptr, str);
403 return ptr;
406 PUB_FUNC void tcc_memstats(int bench)
408 if (mem_cur_size) {
409 mem_debug_header_t *header = mem_debug_chain;
411 fprintf(stderr, "MEM_DEBUG: mem_leak= %d bytes, mem_max_size= %d bytes\n",
412 mem_cur_size, mem_max_size);
414 while (header) {
415 fprintf(stderr, " file %s, line %u: %u bytes\n",
416 header->file_name, header->line_num, header->size);
417 header = header->next;
420 else if (bench)
421 fprintf(stderr, "mem_max_size= %d bytes\n", mem_max_size);
424 #undef MEM_DEBUG_MAGIC1
425 #undef MEM_DEBUG_MAGIC2
426 #undef MEM_DEBUG_FILE_LEN
428 #endif
430 #define free(p) use_tcc_free(p)
431 #define malloc(s) use_tcc_malloc(s)
432 #define realloc(p, s) use_tcc_realloc(p, s)
434 /********************************************************/
435 /* dynarrays */
437 ST_FUNC void dynarray_add(void ***ptab, int *nb_ptr, void *data)
439 int nb, nb_alloc;
440 void **pp;
442 nb = *nb_ptr;
443 pp = *ptab;
444 /* every power of two we double array size */
445 if ((nb & (nb - 1)) == 0) {
446 if (!nb)
447 nb_alloc = 1;
448 else
449 nb_alloc = nb * 2;
450 pp = tcc_realloc(pp, nb_alloc * sizeof(void *));
451 *ptab = pp;
453 pp[nb++] = data;
454 *nb_ptr = nb;
457 ST_FUNC void dynarray_reset(void *pp, int *n)
459 void **p;
460 for (p = *(void***)pp; *n; ++p, --*n)
461 if (*p)
462 tcc_free(*p);
463 tcc_free(*(void**)pp);
464 *(void**)pp = NULL;
467 static void tcc_split_path(TCCState *s, void ***p_ary, int *p_nb_ary, const char *in)
469 const char *p;
470 do {
471 int c;
472 CString str;
474 cstr_new(&str);
475 for (p = in; c = *p, c != '\0' && c != PATHSEP; ++p) {
476 if (c == '{' && p[1] && p[2] == '}') {
477 c = p[1], p += 2;
478 if (c == 'B')
479 cstr_cat(&str, s->tcc_lib_path, -1);
480 } else {
481 cstr_ccat(&str, c);
484 cstr_ccat(&str, '\0');
485 dynarray_add(p_ary, p_nb_ary, tcc_strdup(str.data));
486 cstr_free(&str);
487 in = p+1;
488 } while (*p);
491 /********************************************************/
493 ST_FUNC Section *new_section(TCCState *s1, const char *name, int sh_type, int sh_flags)
495 Section *sec;
497 sec = tcc_mallocz(sizeof(Section) + strlen(name));
498 strcpy(sec->name, name);
499 sec->sh_type = sh_type;
500 sec->sh_flags = sh_flags;
501 switch(sh_type) {
502 case SHT_HASH:
503 case SHT_REL:
504 case SHT_RELA:
505 case SHT_DYNSYM:
506 case SHT_SYMTAB:
507 case SHT_DYNAMIC:
508 sec->sh_addralign = 4;
509 break;
510 case SHT_STRTAB:
511 sec->sh_addralign = 1;
512 break;
513 default:
514 sec->sh_addralign = PTR_SIZE; /* gcc/pcc default aligment */
515 break;
518 if (sh_flags & SHF_PRIVATE) {
519 dynarray_add((void ***)&s1->priv_sections, &s1->nb_priv_sections, sec);
520 } else {
521 sec->sh_num = s1->nb_sections;
522 dynarray_add((void ***)&s1->sections, &s1->nb_sections, sec);
525 return sec;
528 static void free_section(Section *s)
530 tcc_free(s->data);
533 /* realloc section and set its content to zero */
534 ST_FUNC void section_realloc(Section *sec, unsigned long new_size)
536 unsigned long size;
537 unsigned char *data;
539 size = sec->data_allocated;
540 if (size == 0)
541 size = 1;
542 while (size < new_size)
543 size = size * 2;
544 data = tcc_realloc(sec->data, size);
545 memset(data + sec->data_allocated, 0, size - sec->data_allocated);
546 sec->data = data;
547 sec->data_allocated = size;
550 /* reserve at least 'size' bytes in section 'sec' from
551 sec->data_offset. */
552 ST_FUNC void *section_ptr_add(Section *sec, addr_t size)
554 size_t offset, offset1;
556 offset = sec->data_offset;
557 offset1 = offset + size;
558 if (offset1 > sec->data_allocated)
559 section_realloc(sec, offset1);
560 sec->data_offset = offset1;
561 return sec->data + offset;
564 /* reserve at least 'size' bytes from section start */
565 ST_FUNC void section_reserve(Section *sec, unsigned long size)
567 if (size > sec->data_allocated)
568 section_realloc(sec, size);
569 if (size > sec->data_offset)
570 sec->data_offset = size;
573 /* return a reference to a section, and create it if it does not
574 exists */
575 ST_FUNC Section *find_section(TCCState *s1, const char *name)
577 Section *sec;
578 int i;
579 for(i = 1; i < s1->nb_sections; i++) {
580 sec = s1->sections[i];
581 if (!strcmp(name, sec->name))
582 return sec;
584 /* sections are created as PROGBITS */
585 return new_section(s1, name, SHT_PROGBITS, SHF_ALLOC);
588 /* update sym->c so that it points to an external symbol in section
589 'section' with value 'value' */
590 ST_FUNC void put_extern_sym2(Sym *sym, Section *section,
591 addr_t value, unsigned long size,
592 int can_add_underscore)
594 int sym_type, sym_bind, sh_num, info, other;
595 ElfW(Sym) *esym;
596 const char *name;
597 char buf1[256];
599 #ifdef CONFIG_TCC_BCHECK
600 char buf[32];
601 #endif
603 if (section == NULL)
604 sh_num = SHN_UNDEF;
605 else if (section == SECTION_ABS)
606 sh_num = SHN_ABS;
607 else
608 sh_num = section->sh_num;
610 if ((sym->type.t & VT_BTYPE) == VT_FUNC) {
611 sym_type = STT_FUNC;
612 } else if ((sym->type.t & VT_BTYPE) == VT_VOID) {
613 sym_type = STT_NOTYPE;
614 } else {
615 sym_type = STT_OBJECT;
618 if (sym->type.t & VT_STATIC)
619 sym_bind = STB_LOCAL;
620 else {
621 if (sym->type.t & VT_WEAK)
622 sym_bind = STB_WEAK;
623 else
624 sym_bind = STB_GLOBAL;
627 if (!sym->c) {
628 name = get_tok_str(sym->v, NULL);
629 #ifdef CONFIG_TCC_BCHECK
630 if (tcc_state->do_bounds_check) {
631 /* XXX: avoid doing that for statics ? */
632 /* if bound checking is activated, we change some function
633 names by adding the "__bound" prefix */
634 switch(sym->v) {
635 #ifdef TCC_TARGET_PE
636 /* XXX: we rely only on malloc hooks */
637 case TOK_malloc:
638 case TOK_free:
639 case TOK_realloc:
640 case TOK_memalign:
641 case TOK_calloc:
642 #endif
643 case TOK_memcpy:
644 case TOK_memmove:
645 case TOK_memset:
646 case TOK_strlen:
647 case TOK_strcpy:
648 case TOK_alloca:
649 strcpy(buf, "__bound_");
650 strcat(buf, name);
651 name = buf;
652 break;
655 #endif
656 other = 0;
658 #ifdef TCC_TARGET_PE
659 if (sym->type.t & VT_EXPORT)
660 other |= ST_PE_EXPORT;
661 if (sym_type == STT_FUNC && sym->type.ref) {
662 Sym *ref = sym->type.ref;
663 if (ref->a.func_export)
664 other |= ST_PE_EXPORT;
665 if (ref->a.func_call == FUNC_STDCALL && can_add_underscore) {
666 sprintf(buf1, "_%s@%d", name, ref->a.func_args * PTR_SIZE);
667 name = buf1;
668 other |= ST_PE_STDCALL;
669 can_add_underscore = 0;
671 } else {
672 if (find_elf_sym(tcc_state->dynsymtab_section, name))
673 other |= ST_PE_IMPORT;
674 if (sym->type.t & VT_IMPORT)
675 other |= ST_PE_IMPORT;
677 #else
678 if (! (sym->type.t & VT_STATIC))
679 other = (sym->type.t & VT_VIS_MASK) >> VT_VIS_SHIFT;
680 #endif
681 if (tcc_state->leading_underscore && can_add_underscore) {
682 buf1[0] = '_';
683 pstrcpy(buf1 + 1, sizeof(buf1) - 1, name);
684 name = buf1;
686 if (sym->asm_label) {
687 name = get_tok_str(sym->asm_label, NULL);
689 info = ELFW(ST_INFO)(sym_bind, sym_type);
690 sym->c = add_elf_sym(symtab_section, value, size, info, other, sh_num, name);
691 } else {
692 esym = &((ElfW(Sym) *)symtab_section->data)[sym->c];
693 esym->st_value = value;
694 esym->st_size = size;
695 esym->st_shndx = sh_num;
699 ST_FUNC void put_extern_sym(Sym *sym, Section *section,
700 addr_t value, unsigned long size)
702 put_extern_sym2(sym, section, value, size, 1);
705 /* add a new relocation entry to symbol 'sym' in section 's' */
706 ST_FUNC void greloca(Section *s, Sym *sym, unsigned long offset, int type,
707 addr_t addend)
709 int c = 0;
710 if (sym) {
711 if (0 == sym->c)
712 put_extern_sym(sym, NULL, 0, 0);
713 c = sym->c;
715 /* now we can add ELF relocation info */
716 put_elf_reloca(symtab_section, s, offset, type, c, addend);
719 ST_FUNC void greloc(Section *s, Sym *sym, unsigned long offset, int type)
721 greloca(s, sym, offset, type, 0);
724 /********************************************************/
726 static void strcat_vprintf(char *buf, int buf_size, const char *fmt, va_list ap)
728 int len;
729 len = strlen(buf);
730 vsnprintf(buf + len, buf_size - len, fmt, ap);
733 static void strcat_printf(char *buf, int buf_size, const char *fmt, ...)
735 va_list ap;
736 va_start(ap, fmt);
737 strcat_vprintf(buf, buf_size, fmt, ap);
738 va_end(ap);
741 static void error1(TCCState *s1, int is_warning, const char *fmt, va_list ap)
743 char buf[2048];
744 BufferedFile **pf, *f;
746 buf[0] = '\0';
747 /* use upper file if inline ":asm:" or token ":paste:" */
748 for (f = file; f && f->filename[0] == ':'; f = f->prev)
750 if (f) {
751 for(pf = s1->include_stack; pf < s1->include_stack_ptr; pf++)
752 strcat_printf(buf, sizeof(buf), "In file included from %s:%d:\n",
753 (*pf)->filename, (*pf)->line_num);
754 if (f->line_num > 0) {
755 strcat_printf(buf, sizeof(buf), "%s:%d: ",
756 f->filename, f->line_num);
757 } else {
758 strcat_printf(buf, sizeof(buf), "%s: ",
759 f->filename);
761 } else {
762 strcat_printf(buf, sizeof(buf), "tcc: ");
764 if (is_warning)
765 strcat_printf(buf, sizeof(buf), "warning: ");
766 else
767 strcat_printf(buf, sizeof(buf), "error: ");
768 strcat_vprintf(buf, sizeof(buf), fmt, ap);
770 if (!s1->error_func) {
771 /* default case: stderr */
772 if (s1->ppfp) /* print a newline during tcc -E */
773 fprintf(s1->ppfp, "\n"), fflush(s1->ppfp);
774 fprintf(stderr, "%s\n", buf);
775 fflush(stderr); /* print error/warning now (win32) */
776 } else {
777 s1->error_func(s1->error_opaque, buf);
779 if (!is_warning || s1->warn_error)
780 s1->nb_errors++;
783 LIBTCCAPI void tcc_set_error_func(TCCState *s, void *error_opaque,
784 void (*error_func)(void *opaque, const char *msg))
786 s->error_opaque = error_opaque;
787 s->error_func = error_func;
790 /* error without aborting current compilation */
791 PUB_FUNC void tcc_error_noabort(const char *fmt, ...)
793 TCCState *s1 = tcc_state;
794 va_list ap;
796 va_start(ap, fmt);
797 error1(s1, 0, fmt, ap);
798 va_end(ap);
801 PUB_FUNC void tcc_error(const char *fmt, ...)
803 TCCState *s1 = tcc_state;
804 va_list ap;
806 va_start(ap, fmt);
807 error1(s1, 0, fmt, ap);
808 va_end(ap);
809 /* better than nothing: in some cases, we accept to handle errors */
810 if (s1->error_set_jmp_enabled) {
811 longjmp(s1->error_jmp_buf, 1);
812 } else {
813 /* XXX: eliminate this someday */
814 exit(1);
818 PUB_FUNC void tcc_warning(const char *fmt, ...)
820 TCCState *s1 = tcc_state;
821 va_list ap;
823 if (s1->warn_none)
824 return;
826 va_start(ap, fmt);
827 error1(s1, 1, fmt, ap);
828 va_end(ap);
831 /********************************************************/
832 /* I/O layer */
834 ST_FUNC void tcc_open_bf(TCCState *s1, const char *filename, int initlen)
836 BufferedFile *bf;
837 int buflen = initlen ? initlen : IO_BUF_SIZE;
839 bf = tcc_mallocz(sizeof(BufferedFile) + buflen);
840 bf->buf_ptr = bf->buffer;
841 bf->buf_end = bf->buffer + initlen;
842 bf->buf_end[0] = CH_EOB; /* put eob symbol */
843 pstrcpy(bf->filename, sizeof(bf->filename), filename);
844 #ifdef _WIN32
845 normalize_slashes(bf->filename);
846 #endif
847 bf->line_num = 1;
848 bf->ifdef_stack_ptr = s1->ifdef_stack_ptr;
849 bf->fd = -1;
850 bf->prev = file;
851 file = bf;
854 ST_FUNC void tcc_close(void)
856 BufferedFile *bf = file;
857 if (bf->fd > 0) {
858 close(bf->fd);
859 total_lines += bf->line_num;
861 file = bf->prev;
862 tcc_free(bf);
865 ST_FUNC int tcc_open(TCCState *s1, const char *filename)
867 int fd;
868 if (strcmp(filename, "-") == 0)
869 fd = 0, filename = "<stdin>";
870 else
871 fd = open(filename, O_RDONLY | O_BINARY);
872 if ((s1->verbose == 2 && fd >= 0) || s1->verbose == 3)
873 printf("%s %*s%s\n", fd < 0 ? "nf":"->",
874 (int)(s1->include_stack_ptr - s1->include_stack), "", filename);
875 if (fd < 0)
876 return -1;
878 tcc_open_bf(s1, filename, 0);
879 file->fd = fd;
880 return fd;
883 /* compile the C file opened in 'file'. Return non zero if errors. */
884 static int tcc_compile(TCCState *s1)
886 Sym *define_start;
887 char buf[512];
888 volatile int section_sym;
890 #ifdef INC_DEBUG
891 printf("%s: **** new file\n", file->filename);
892 #endif
893 preprocess_init(s1);
895 cur_text_section = NULL;
896 funcname = "";
897 anon_sym = SYM_FIRST_ANOM;
899 /* file info: full path + filename */
900 section_sym = 0; /* avoid warning */
901 if (s1->do_debug) {
902 section_sym = put_elf_sym(symtab_section, 0, 0,
903 ELFW(ST_INFO)(STB_LOCAL, STT_SECTION), 0,
904 text_section->sh_num, NULL);
905 getcwd(buf, sizeof(buf));
906 #ifdef _WIN32
907 normalize_slashes(buf);
908 #endif
909 pstrcat(buf, sizeof(buf), "/");
910 put_stabs_r(buf, N_SO, 0, 0,
911 text_section->data_offset, text_section, section_sym);
912 put_stabs_r(file->filename, N_SO, 0, 0,
913 text_section->data_offset, text_section, section_sym);
915 /* an elf symbol of type STT_FILE must be put so that STB_LOCAL
916 symbols can be safely used */
917 put_elf_sym(symtab_section, 0, 0,
918 ELFW(ST_INFO)(STB_LOCAL, STT_FILE), 0,
919 SHN_ABS, file->filename);
921 /* define some often used types */
922 int_type.t = VT_INT;
924 char_pointer_type.t = VT_BYTE;
925 mk_pointer(&char_pointer_type);
927 #if PTR_SIZE == 4
928 size_type.t = VT_INT;
929 #else
930 size_type.t = VT_LLONG;
931 #endif
933 func_old_type.t = VT_FUNC;
934 func_old_type.ref = sym_push(SYM_FIELD, &int_type, FUNC_CDECL, FUNC_OLD);
935 #ifdef TCC_TARGET_ARM
936 arm_init(s1);
937 #endif
939 #if 0
940 /* define 'void *alloca(unsigned int)' builtin function */
942 Sym *s1;
944 p = anon_sym++;
945 sym = sym_push(p, mk_pointer(VT_VOID), FUNC_CDECL, FUNC_NEW);
946 s1 = sym_push(SYM_FIELD, VT_UNSIGNED | VT_INT, 0, 0);
947 s1->next = NULL;
948 sym->next = s1;
949 sym_push(TOK_alloca, VT_FUNC | (p << VT_STRUCT_SHIFT), VT_CONST, 0);
951 #endif
953 define_start = define_stack;
954 nocode_wanted = 1;
956 if (setjmp(s1->error_jmp_buf) == 0) {
957 s1->nb_errors = 0;
958 s1->error_set_jmp_enabled = 1;
960 ch = file->buf_ptr[0];
961 tok_flags = TOK_FLAG_BOL | TOK_FLAG_BOF;
962 parse_flags = PARSE_FLAG_PREPROCESS | PARSE_FLAG_TOK_NUM | PARSE_FLAG_TOK_STR;
963 next();
964 decl(VT_CONST);
965 if (tok != TOK_EOF)
966 expect("declaration");
967 check_vstack();
969 /* end of translation unit info */
970 if (s1->do_debug) {
971 put_stabs_r(NULL, N_SO, 0, 0,
972 text_section->data_offset, text_section, section_sym);
976 s1->error_set_jmp_enabled = 0;
978 /* reset define stack, but leave -Dsymbols (may be incorrect if
979 they are undefined) */
980 free_defines(define_start);
982 gen_inline_functions();
984 sym_pop(&global_stack, NULL);
985 sym_pop(&local_stack, NULL);
987 return s1->nb_errors != 0 ? -1 : 0;
990 LIBTCCAPI int tcc_compile_string(TCCState *s, const char *str)
992 int len, ret;
994 len = strlen(str);
995 tcc_open_bf(s, "<string>", len);
996 memcpy(file->buffer, str, len);
997 ret = tcc_compile(s);
998 tcc_close();
999 return ret;
1002 /* define a preprocessor symbol. A value can also be provided with the '=' operator */
1003 LIBTCCAPI void tcc_define_symbol(TCCState *s1, const char *sym, const char *value)
1005 int len1, len2;
1006 /* default value */
1007 if (!value)
1008 value = "1";
1009 len1 = strlen(sym);
1010 len2 = strlen(value);
1012 /* init file structure */
1013 tcc_open_bf(s1, "<define>", len1 + len2 + 1);
1014 memcpy(file->buffer, sym, len1);
1015 file->buffer[len1] = ' ';
1016 memcpy(file->buffer + len1 + 1, value, len2);
1018 /* parse with define parser */
1019 ch = file->buf_ptr[0];
1020 next_nomacro();
1021 parse_define();
1023 tcc_close();
1026 /* undefine a preprocessor symbol */
1027 LIBTCCAPI void tcc_undefine_symbol(TCCState *s1, const char *sym)
1029 TokenSym *ts;
1030 Sym *s;
1031 ts = tok_alloc(sym, strlen(sym));
1032 s = define_find(ts->tok);
1033 /* undefine symbol by putting an invalid name */
1034 if (s)
1035 define_undef(s);
1038 /* cleanup all static data used during compilation */
1039 static void tcc_cleanup(void)
1041 if (NULL == tcc_state)
1042 return;
1043 tcc_state = NULL;
1045 preprocess_delete();
1047 /* free sym_pools */
1048 dynarray_reset(&sym_pools, &nb_sym_pools);
1049 /* reset symbol stack */
1050 sym_free_first = NULL;
1053 LIBTCCAPI TCCState *tcc_new(void)
1055 TCCState *s;
1056 char buffer[100];
1057 int a,b,c;
1059 tcc_cleanup();
1061 s = tcc_mallocz(sizeof(TCCState));
1062 if (!s)
1063 return NULL;
1064 tcc_state = s;
1065 #ifdef _WIN32
1066 tcc_set_lib_path_w32(s);
1067 #else
1068 tcc_set_lib_path(s, CONFIG_TCCDIR);
1069 #endif
1070 s->output_type = 0;
1071 preprocess_new();
1072 s->include_stack_ptr = s->include_stack;
1074 /* we add dummy defines for some special macros to speed up tests
1075 and to have working defined() */
1076 define_push(TOK___LINE__, MACRO_OBJ, NULL, NULL);
1077 define_push(TOK___FILE__, MACRO_OBJ, NULL, NULL);
1078 define_push(TOK___DATE__, MACRO_OBJ, NULL, NULL);
1079 define_push(TOK___TIME__, MACRO_OBJ, NULL, NULL);
1081 /* define __TINYC__ 92X */
1082 sscanf(TCC_VERSION, "%d.%d.%d", &a, &b, &c);
1083 sprintf(buffer, "%d", a*10000 + b*100 + c);
1084 tcc_define_symbol(s, "__TINYC__", buffer);
1086 /* standard defines */
1087 tcc_define_symbol(s, "__STDC__", NULL);
1088 tcc_define_symbol(s, "__STDC_VERSION__", "199901L");
1089 tcc_define_symbol(s, "__STDC_HOSTED__", NULL);
1091 /* target defines */
1092 #if defined(TCC_TARGET_I386)
1093 tcc_define_symbol(s, "__i386__", NULL);
1094 tcc_define_symbol(s, "__i386", NULL);
1095 tcc_define_symbol(s, "i386", NULL);
1096 #elif defined(TCC_TARGET_X86_64)
1097 tcc_define_symbol(s, "__x86_64__", NULL);
1098 #elif defined(TCC_TARGET_ARM)
1099 tcc_define_symbol(s, "__ARM_ARCH_4__", NULL);
1100 tcc_define_symbol(s, "__arm_elf__", NULL);
1101 tcc_define_symbol(s, "__arm_elf", NULL);
1102 tcc_define_symbol(s, "arm_elf", NULL);
1103 tcc_define_symbol(s, "__arm__", NULL);
1104 tcc_define_symbol(s, "__arm", NULL);
1105 tcc_define_symbol(s, "arm", NULL);
1106 tcc_define_symbol(s, "__APCS_32__", NULL);
1107 tcc_define_symbol(s, "__ARMEL__", NULL);
1108 #if defined(TCC_ARM_EABI)
1109 tcc_define_symbol(s, "__ARM_EABI__", NULL);
1110 #endif
1111 #if defined(TCC_ARM_HARDFLOAT)
1112 s->float_abi = ARM_HARD_FLOAT;
1113 tcc_define_symbol(s, "__ARM_PCS_VFP", NULL);
1114 #else
1115 s->float_abi = ARM_SOFTFP_FLOAT;
1116 #endif
1117 #elif defined(TCC_TARGET_ARM64)
1118 tcc_define_symbol(s, "__aarch64__", NULL);
1119 #endif
1121 #ifdef TCC_TARGET_PE
1122 tcc_define_symbol(s, "_WIN32", NULL);
1123 # ifdef TCC_TARGET_X86_64
1124 tcc_define_symbol(s, "_WIN64", NULL);
1125 # endif
1126 #else
1127 tcc_define_symbol(s, "__unix__", NULL);
1128 tcc_define_symbol(s, "__unix", NULL);
1129 tcc_define_symbol(s, "unix", NULL);
1130 # if defined(__linux__)
1131 tcc_define_symbol(s, "__linux__", NULL);
1132 tcc_define_symbol(s, "__linux", NULL);
1133 # endif
1134 # if defined(__FreeBSD__)
1135 # define str(s) #s
1136 tcc_define_symbol(s, "__FreeBSD__", str( __FreeBSD__));
1137 # undef str
1138 # endif
1139 # if defined(__FreeBSD_kernel__)
1140 tcc_define_symbol(s, "__FreeBSD_kernel__", NULL);
1141 # endif
1142 #endif
1143 # if defined(__NetBSD__)
1144 # define str(s) #s
1145 tcc_define_symbol(s, "__NetBSD__", str( __NetBSD__));
1146 # undef str
1147 # endif
1149 /* TinyCC & gcc defines */
1150 #if defined TCC_TARGET_PE && defined TCC_TARGET_X86_64
1151 tcc_define_symbol(s, "__SIZE_TYPE__", "unsigned long long");
1152 tcc_define_symbol(s, "__PTRDIFF_TYPE__", "long long");
1153 #else
1154 tcc_define_symbol(s, "__SIZE_TYPE__", "unsigned long");
1155 tcc_define_symbol(s, "__PTRDIFF_TYPE__", "long");
1156 #endif
1158 #ifdef TCC_TARGET_PE
1159 tcc_define_symbol(s, "__WCHAR_TYPE__", "unsigned short");
1160 tcc_define_symbol(s, "__WINT_TYPE__", "unsigned short");
1161 #else
1162 tcc_define_symbol(s, "__WCHAR_TYPE__", "int");
1163 /* wint_t is unsigned int by default, but (signed) int on BSDs
1164 and unsigned short on windows. Other OSes might have still
1165 other conventions, sigh. */
1166 #if defined(__FreeBSD__) || defined (__FreeBSD_kernel__) || defined(__NetBSD__)
1167 tcc_define_symbol(s, "__WINT_TYPE__", "int");
1168 #else
1169 tcc_define_symbol(s, "__WINT_TYPE__", "unsigned int");
1170 #endif
1171 #endif
1173 #ifndef TCC_TARGET_PE
1174 /* glibc defines */
1175 tcc_define_symbol(s, "__REDIRECT(name, proto, alias)", "name proto __asm__ (#alias)");
1176 tcc_define_symbol(s, "__REDIRECT_NTH(name, proto, alias)", "name proto __asm__ (#alias) __THROW");
1177 /* paths for crt objects */
1178 tcc_split_path(s, (void ***)&s->crt_paths, &s->nb_crt_paths, CONFIG_TCC_CRTPREFIX);
1179 #endif
1181 /* no section zero */
1182 dynarray_add((void ***)&s->sections, &s->nb_sections, NULL);
1184 /* create standard sections */
1185 text_section = new_section(s, ".text", SHT_PROGBITS, SHF_ALLOC | SHF_EXECINSTR);
1186 data_section = new_section(s, ".data", SHT_PROGBITS, SHF_ALLOC | SHF_WRITE);
1187 bss_section = new_section(s, ".bss", SHT_NOBITS, SHF_ALLOC | SHF_WRITE);
1189 /* symbols are always generated for linking stage */
1190 symtab_section = new_symtab(s, ".symtab", SHT_SYMTAB, 0,
1191 ".strtab",
1192 ".hashtab", SHF_PRIVATE);
1193 strtab_section = symtab_section->link;
1194 s->symtab = symtab_section;
1196 /* private symbol table for dynamic symbols */
1197 s->dynsymtab_section = new_symtab(s, ".dynsymtab", SHT_SYMTAB, SHF_PRIVATE,
1198 ".dynstrtab",
1199 ".dynhashtab", SHF_PRIVATE);
1200 s->alacarte_link = 1;
1201 s->nocommon = 1;
1202 s->warn_implicit_function_declaration = 1;
1204 #ifdef CHAR_IS_UNSIGNED
1205 s->char_is_unsigned = 1;
1206 #endif
1207 /* enable this if you want symbols with leading underscore on windows: */
1208 #if 0 /* def TCC_TARGET_PE */
1209 s->leading_underscore = 1;
1210 #endif
1211 #ifdef TCC_TARGET_I386
1212 s->seg_size = 32;
1213 #endif
1214 #ifdef TCC_IS_NATIVE
1215 s->runtime_main = "main";
1216 #endif
1217 return s;
1220 LIBTCCAPI void tcc_delete(TCCState *s1)
1222 int i;
1223 int bench = s1->do_bench;
1225 tcc_cleanup();
1227 /* close a preprocessor output */
1228 if (s1->ppfp && s1->ppfp != stdout)
1229 fclose(s1->ppfp);
1230 if (s1->dffp && s1->dffp != s1->ppfp)
1231 fclose(s1->dffp);
1233 /* free all sections */
1234 for(i = 1; i < s1->nb_sections; i++)
1235 free_section(s1->sections[i]);
1236 dynarray_reset(&s1->sections, &s1->nb_sections);
1238 for(i = 0; i < s1->nb_priv_sections; i++)
1239 free_section(s1->priv_sections[i]);
1240 dynarray_reset(&s1->priv_sections, &s1->nb_priv_sections);
1242 /* free any loaded DLLs */
1243 #ifdef TCC_IS_NATIVE
1244 for ( i = 0; i < s1->nb_loaded_dlls; i++) {
1245 DLLReference *ref = s1->loaded_dlls[i];
1246 if ( ref->handle )
1247 dlclose(ref->handle);
1249 #endif
1251 /* free loaded dlls array */
1252 dynarray_reset(&s1->loaded_dlls, &s1->nb_loaded_dlls);
1254 /* free library paths */
1255 dynarray_reset(&s1->library_paths, &s1->nb_library_paths);
1256 dynarray_reset(&s1->crt_paths, &s1->nb_crt_paths);
1258 /* free include paths */
1259 dynarray_reset(&s1->cached_includes, &s1->nb_cached_includes);
1260 dynarray_reset(&s1->include_paths, &s1->nb_include_paths);
1261 dynarray_reset(&s1->sysinclude_paths, &s1->nb_sysinclude_paths);
1263 tcc_free(s1->tcc_lib_path);
1264 tcc_free(s1->soname);
1265 tcc_free(s1->rpath);
1266 tcc_free(s1->init_symbol);
1267 tcc_free(s1->fini_symbol);
1268 tcc_free(s1->outfile);
1269 tcc_free(s1->deps_outfile);
1270 dynarray_reset(&s1->files, &s1->nb_files);
1271 dynarray_reset(&s1->target_deps, &s1->nb_target_deps);
1272 dynarray_reset(&s1->pragma_libs, &s1->nb_pragma_libs);
1274 #ifdef TCC_IS_NATIVE
1275 # ifdef HAVE_SELINUX
1276 munmap (s1->write_mem, s1->mem_size);
1277 munmap (s1->runtime_mem, s1->mem_size);
1278 # else
1279 tcc_free(s1->runtime_mem);
1280 # endif
1281 #endif
1283 tcc_free(s1->sym_attrs);
1284 tcc_free(s1);
1285 tcc_memstats(bench);
1288 LIBTCCAPI int tcc_add_include_path(TCCState *s, const char *pathname)
1290 tcc_split_path(s, (void ***)&s->include_paths, &s->nb_include_paths, pathname);
1291 return 0;
1294 LIBTCCAPI int tcc_add_sysinclude_path(TCCState *s, const char *pathname)
1296 tcc_split_path(s, (void ***)&s->sysinclude_paths, &s->nb_sysinclude_paths, pathname);
1297 return 0;
1300 ST_FUNC int tcc_add_file_internal(TCCState *s1, const char *filename, int flags, int filetype)
1302 ElfW(Ehdr) ehdr;
1303 int fd, ret, size;
1305 parse_flags = 0;
1306 #ifdef CONFIG_TCC_ASM
1307 /* if .S file, define __ASSEMBLER__ like gcc does */
1308 if ((filetype == TCC_FILETYPE_ASM) || (filetype == TCC_FILETYPE_ASM_PP)) {
1309 tcc_define_symbol(s1, "__ASSEMBLER__", NULL);
1310 parse_flags = PARSE_FLAG_ASM_FILE;
1312 #endif
1314 /* open the file */
1315 ret = tcc_open(s1, filename);
1316 if (ret < 0) {
1317 if (flags & AFF_PRINT_ERROR)
1318 tcc_error_noabort("file '%s' not found", filename);
1319 return ret;
1322 /* update target deps */
1323 dynarray_add((void ***)&s1->target_deps, &s1->nb_target_deps,
1324 tcc_strdup(filename));
1326 if (flags & AFF_PREPROCESS) {
1327 ret = tcc_preprocess(s1);
1328 goto the_end;
1331 if (filetype == TCC_FILETYPE_C) {
1332 /* C file assumed */
1333 ret = tcc_compile(s1);
1334 goto the_end;
1337 #ifdef CONFIG_TCC_ASM
1338 if (filetype == TCC_FILETYPE_ASM_PP) {
1339 /* non preprocessed assembler */
1340 ret = tcc_assemble(s1, 1);
1341 goto the_end;
1344 if (filetype == TCC_FILETYPE_ASM) {
1345 /* preprocessed assembler */
1346 ret = tcc_assemble(s1, 0);
1347 goto the_end;
1349 #endif
1351 fd = file->fd;
1352 /* assume executable format: auto guess file type */
1353 size = read(fd, &ehdr, sizeof(ehdr));
1354 lseek(fd, 0, SEEK_SET);
1355 if (size <= 0) {
1356 tcc_error_noabort("could not read header");
1357 goto the_end;
1360 if (size == sizeof(ehdr) &&
1361 ehdr.e_ident[0] == ELFMAG0 &&
1362 ehdr.e_ident[1] == ELFMAG1 &&
1363 ehdr.e_ident[2] == ELFMAG2 &&
1364 ehdr.e_ident[3] == ELFMAG3) {
1366 /* do not display line number if error */
1367 file->line_num = 0;
1368 if (ehdr.e_type == ET_REL) {
1369 ret = tcc_load_object_file(s1, fd, 0);
1370 goto the_end;
1373 #ifndef TCC_TARGET_PE
1374 if (ehdr.e_type == ET_DYN) {
1375 if (s1->output_type == TCC_OUTPUT_MEMORY) {
1376 #ifdef TCC_IS_NATIVE
1377 void *h;
1378 h = dlopen(filename, RTLD_GLOBAL | RTLD_LAZY);
1379 if (h)
1380 #endif
1381 ret = 0;
1382 } else {
1383 ret = tcc_load_dll(s1, fd, filename,
1384 (flags & AFF_REFERENCED_DLL) != 0);
1386 goto the_end;
1388 #endif
1389 tcc_error_noabort("unrecognized ELF file");
1390 goto the_end;
1393 if (memcmp((char *)&ehdr, ARMAG, 8) == 0) {
1394 file->line_num = 0; /* do not display line number if error */
1395 ret = tcc_load_archive(s1, fd);
1396 goto the_end;
1399 #ifdef TCC_TARGET_COFF
1400 if (*(uint16_t *)(&ehdr) == COFF_C67_MAGIC) {
1401 ret = tcc_load_coff(s1, fd);
1402 goto the_end;
1404 #endif
1406 #ifdef TCC_TARGET_PE
1407 ret = pe_load_file(s1, filename, fd);
1408 #else
1409 /* as GNU ld, consider it is an ld script if not recognized */
1410 ret = tcc_load_ldscript(s1);
1411 #endif
1412 if (ret < 0)
1413 tcc_error_noabort("unrecognized file type");
1415 the_end:
1416 tcc_close();
1417 return ret;
1420 LIBTCCAPI int tcc_add_file(TCCState *s, const char *filename, int filetype)
1422 if (s->output_type == TCC_OUTPUT_PREPROCESS)
1423 return tcc_add_file_internal(s, filename, AFF_PRINT_ERROR | AFF_PREPROCESS, filetype);
1424 else
1425 return tcc_add_file_internal(s, filename, AFF_PRINT_ERROR, filetype);
1428 LIBTCCAPI int tcc_add_library_path(TCCState *s, const char *pathname)
1430 tcc_split_path(s, (void ***)&s->library_paths, &s->nb_library_paths, pathname);
1431 return 0;
1434 static int tcc_add_library_internal(TCCState *s, const char *fmt,
1435 const char *filename, int flags, char **paths, int nb_paths)
1437 char buf[1024];
1438 int i;
1440 for(i = 0; i < nb_paths; i++) {
1441 snprintf(buf, sizeof(buf), fmt, paths[i], filename);
1442 if (tcc_add_file_internal(s, buf, flags, TCC_FILETYPE_BINARY) == 0)
1443 return 0;
1445 return -1;
1448 #ifndef TCC_TARGET_PE
1449 /* find and load a dll. Return non zero if not found */
1450 /* XXX: add '-rpath' option support ? */
1451 ST_FUNC int tcc_add_dll(TCCState *s, const char *filename, int flags)
1453 return tcc_add_library_internal(s, "%s/%s", filename, flags,
1454 s->library_paths, s->nb_library_paths);
1456 #endif
1458 ST_FUNC int tcc_add_crt(TCCState *s, const char *filename)
1460 if (-1 == tcc_add_library_internal(s, "%s/%s",
1461 filename, 0, s->crt_paths, s->nb_crt_paths))
1462 tcc_error_noabort("file '%s' not found", filename);
1463 return 0;
1466 /* the library name is the same as the argument of the '-l' option */
1467 LIBTCCAPI int tcc_add_library(TCCState *s, const char *libraryname)
1469 #ifdef TCC_TARGET_PE
1470 const char *libs[] = { "%s/%s.def", "%s/lib%s.def", "%s/%s.dll", "%s/lib%s.dll", "%s/lib%s.a", NULL };
1471 const char **pp = s->static_link ? libs + 4 : libs;
1472 #else
1473 const char *libs[] = { "%s/lib%s.so", "%s/lib%s.a", NULL };
1474 const char **pp = s->static_link ? libs + 1 : libs;
1475 #endif
1476 while (*pp) {
1477 if (0 == tcc_add_library_internal(s, *pp,
1478 libraryname, 0, s->library_paths, s->nb_library_paths))
1479 return 0;
1480 ++pp;
1482 return -1;
1485 PUB_FUNC int tcc_add_library_err(TCCState *s, const char *libname)
1487 int ret = tcc_add_library(s, libname);
1488 if (ret < 0)
1489 tcc_error_noabort("cannot find library 'lib%s'", libname);
1490 return ret;
1493 /* habdle #pragma comment(lib,) */
1494 ST_FUNC void tcc_add_pragma_libs(TCCState *s1)
1496 int i;
1497 for (i = 0; i < s1->nb_pragma_libs; i++)
1498 tcc_add_library_err(s1, s1->pragma_libs[i]);
1501 LIBTCCAPI int tcc_add_symbol(TCCState *s, const char *name, const void *val)
1503 #ifdef TCC_TARGET_PE
1504 /* On x86_64 'val' might not be reachable with a 32bit offset.
1505 So it is handled here as if it were in a DLL. */
1506 pe_putimport(s, 0, name, (uintptr_t)val);
1507 #else
1508 add_elf_sym(symtab_section, (uintptr_t)val, 0,
1509 ELFW(ST_INFO)(STB_GLOBAL, STT_NOTYPE), 0,
1510 SHN_ABS, name);
1511 #endif
1512 return 0;
1516 /* Windows stat* ( https://msdn.microsoft.com/en-us/library/14h5k7ff.aspx ):
1517 * - st_gid, st_ino, st_uid: only valid on "unix" file systems (not FAT, NTFS, etc)
1518 * - st_atime, st_ctime: not valid on FAT, valid on NTFS.
1519 * - Other fields should be reasonably compatible (and S_ISDIR should work).
1521 * BY_HANDLE_FILE_INFORMATION ( https://msdn.microsoft.com/en-us/library/windows/desktop/aa363788%28v=vs.85%29.aspx ):
1522 * - File index (combined nFileIndexHigh and nFileIndexLow) _may_ change when the file is opened.
1523 * - But on NTFS: it's guaranteed to be the same value until the file is deleted.
1524 * - On windows server 2012 there's a 128b file id, and the 64b one via
1525 * nFileIndex* is not guaranteed to be unique.
1527 * - MS Docs suggest to that volume number with the file index could be used to
1528 * check if two handles refer to the same file.
1530 #ifndef _WIN32
1531 typedef struct stat file_info_t;
1532 #else
1533 typedef BY_HANDLE_FILE_INFORMATION file_info_t;
1534 #endif
1536 int get_file_info(const char *fname, file_info_t *out_info)
1538 #ifndef _WIN32
1539 return stat(fname, out_info);
1540 #else
1541 int rv = 1;
1542 HANDLE h = CreateFile(fname, GENERIC_READ, FILE_SHARE_READ, NULL, OPEN_EXISTING,
1543 FILE_ATTRIBUTE_NORMAL|FILE_FLAG_BACKUP_SEMANTICS, NULL);
1545 if (h != INVALID_HANDLE_VALUE) {
1546 rv = !GetFileInformationByHandle(h, out_info);
1547 CloseHandle(h);
1549 return rv;
1550 #endif
1553 int is_dir(file_info_t *info)
1555 #ifndef _WIN32
1556 return S_ISDIR(info->st_mode);
1557 #else
1558 return (info->dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) ==
1559 FILE_ATTRIBUTE_DIRECTORY;
1560 #endif
1563 int is_same_file(const file_info_t *fi1, const file_info_t *fi2)
1565 #ifndef _WIN32
1566 return fi1->st_dev == fi2->st_dev &&
1567 fi1->st_ino == fi2->st_ino;
1568 #else
1569 return fi1->dwVolumeSerialNumber == fi2->dwVolumeSerialNumber &&
1570 fi1->nFileIndexHigh == fi2->nFileIndexHigh &&
1571 fi1->nFileIndexLow == fi2->nFileIndexLow;
1572 #endif
1575 static void
1576 tcc_normalize_inc_dirs_aux(file_info_t *stats, size_t *pnum, char **path)
1578 size_t i, num = *pnum;
1579 if (get_file_info(*path, &stats[num]) || !is_dir(&stats[num]))
1580 goto remove;
1581 for (i = 0; i < num; i++)
1582 if (is_same_file(&stats[i], &stats[num]))
1583 goto remove;
1584 *pnum = num + 1;
1585 return;
1586 remove:
1587 tcc_free(*path);
1588 *path = 0;
1591 /* Remove non-existent and duplicate directories from include paths. */
1592 ST_FUNC void tcc_normalize_inc_dirs(TCCState *s)
1594 file_info_t *stats =
1595 tcc_malloc(((size_t)s->nb_sysinclude_paths + s->nb_include_paths) *
1596 sizeof(*stats));
1597 size_t i, num = 0;
1598 for (i = 0; i < s->nb_sysinclude_paths; i++)
1599 tcc_normalize_inc_dirs_aux(stats, &num, &s->sysinclude_paths[i]);
1600 for (i = 0; i < s->nb_include_paths; i++)
1601 tcc_normalize_inc_dirs_aux(stats, &num, &s->include_paths[i]);
1602 tcc_free(stats);
1605 LIBTCCAPI int tcc_set_output_type(TCCState *s, int output_type)
1607 s->output_type = output_type;
1609 if (s->output_type == TCC_OUTPUT_PREPROCESS) {
1610 if (!s->outfile) {
1611 s->ppfp = stdout;
1612 } else {
1613 s->ppfp = fopen(s->outfile, "w");
1614 if (!s->ppfp)
1615 tcc_error("could not write '%s'", s->outfile);
1617 s->dffp = s->ppfp;
1618 if (s->dflag == 'M')
1619 s->ppfp = NULL;
1621 if (s->option_C && !s->ppfp)
1622 s->option_C = 0;
1624 if (!s->nostdinc) {
1625 /* default include paths */
1626 /* -isystem paths have already been handled */
1627 tcc_add_sysinclude_path(s, CONFIG_TCC_SYSINCLUDEPATHS);
1630 /* if bound checking, then add corresponding sections */
1631 #ifdef CONFIG_TCC_BCHECK
1632 if (s->do_bounds_check) {
1633 /* define symbol */
1634 tcc_define_symbol(s, "__BOUNDS_CHECKING_ON", NULL);
1635 /* create bounds sections */
1636 bounds_section = new_section(s, ".bounds",
1637 SHT_PROGBITS, SHF_ALLOC);
1638 lbounds_section = new_section(s, ".lbounds",
1639 SHT_PROGBITS, SHF_ALLOC);
1641 #endif
1643 if (s->char_is_unsigned) {
1644 tcc_define_symbol(s, "__CHAR_UNSIGNED__", NULL);
1647 /* add debug sections */
1648 if (s->do_debug) {
1649 /* stab symbols */
1650 stab_section = new_section(s, ".stab", SHT_PROGBITS, 0);
1651 stab_section->sh_entsize = sizeof(Stab_Sym);
1652 stabstr_section = new_section(s, ".stabstr", SHT_STRTAB, 0);
1653 put_elf_str(stabstr_section, "");
1654 stab_section->link = stabstr_section;
1655 /* put first entry */
1656 put_stabs("", 0, 0, 0, 0);
1659 tcc_add_library_path(s, CONFIG_TCC_LIBPATHS);
1660 #ifdef TCC_TARGET_PE
1661 # ifdef _WIN32
1662 tcc_add_systemdir(s);
1663 # endif
1664 #else
1665 /* add libc crt1/crti objects */
1666 if ((output_type == TCC_OUTPUT_EXE || output_type == TCC_OUTPUT_DLL) &&
1667 !s->nostdlib) {
1668 if (output_type != TCC_OUTPUT_DLL)
1669 tcc_add_crt(s, "crt1.o");
1670 tcc_add_crt(s, "crti.o");
1672 #endif
1674 #ifdef CONFIG_TCC_BCHECK
1675 if (s->do_bounds_check && (output_type == TCC_OUTPUT_EXE))
1677 /* force a bcheck.o linking */
1678 addr_t func = TOK___bound_init;
1679 Sym *sym = external_global_sym(func, &func_old_type, 0);
1680 if (!sym->c)
1681 put_extern_sym(sym, NULL, 0, 0);
1683 #endif
1685 if (s->normalize_inc_dirs)
1686 tcc_normalize_inc_dirs(s);
1687 if (s->output_type == TCC_OUTPUT_PREPROCESS)
1688 print_defines();
1690 return 0;
1693 LIBTCCAPI void tcc_set_lib_path(TCCState *s, const char *path)
1695 tcc_free(s->tcc_lib_path);
1696 s->tcc_lib_path = tcc_strdup(path);
1699 #define WD_ALL 0x0001 /* warning is activated when using -Wall */
1700 #define FD_INVERT 0x0002 /* invert value before storing */
1702 typedef struct FlagDef {
1703 uint16_t offset;
1704 uint16_t flags;
1705 const char *name;
1706 } FlagDef;
1708 static const FlagDef warning_defs[] = {
1709 { offsetof(TCCState, warn_unsupported), 0, "unsupported" },
1710 { offsetof(TCCState, warn_write_strings), 0, "write-strings" },
1711 { offsetof(TCCState, warn_error), 0, "error" },
1712 { offsetof(TCCState, warn_implicit_function_declaration), WD_ALL,
1713 "implicit-function-declaration" },
1716 ST_FUNC int set_flag(TCCState *s, const FlagDef *flags, int nb_flags,
1717 const char *name, int value)
1719 int i;
1720 const FlagDef *p;
1721 const char *r;
1723 r = name;
1724 if (r[0] == 'n' && r[1] == 'o' && r[2] == '-') {
1725 r += 3;
1726 value = !value;
1728 for(i = 0, p = flags; i < nb_flags; i++, p++) {
1729 if (!strcmp(r, p->name))
1730 goto found;
1732 return -1;
1733 found:
1734 if (p->flags & FD_INVERT)
1735 value = !value;
1736 *(int *)((uint8_t *)s + p->offset) = value;
1737 return 0;
1740 /* set/reset a warning */
1741 static int tcc_set_warning(TCCState *s, const char *warning_name, int value)
1743 int i;
1744 const FlagDef *p;
1746 if (!strcmp(warning_name, "all")) {
1747 for(i = 0, p = warning_defs; i < countof(warning_defs); i++, p++) {
1748 if (p->flags & WD_ALL)
1749 *(int *)((uint8_t *)s + p->offset) = 1;
1751 return 0;
1752 } else {
1753 return set_flag(s, warning_defs, countof(warning_defs),
1754 warning_name, value);
1758 static const FlagDef flag_defs[] = {
1759 { offsetof(TCCState, char_is_unsigned), 0, "unsigned-char" },
1760 { offsetof(TCCState, char_is_unsigned), FD_INVERT, "signed-char" },
1761 { offsetof(TCCState, nocommon), FD_INVERT, "common" },
1762 { offsetof(TCCState, leading_underscore), 0, "leading-underscore" },
1763 { offsetof(TCCState, ms_extensions), 0, "ms-extensions" },
1764 { offsetof(TCCState, old_struct_init_code), 0, "old-struct-init-code" },
1765 { offsetof(TCCState, dollars_in_identifiers), 0, "dollars-in-identifiers" },
1766 { offsetof(TCCState, normalize_inc_dirs), 0, "normalize-inc-dirs" },
1769 /* set/reset a flag */
1770 static int tcc_set_flag(TCCState *s, const char *flag_name, int value)
1772 return set_flag(s, flag_defs, countof(flag_defs),
1773 flag_name, value);
1777 static int strstart(const char *val, const char **str)
1779 const char *p, *q;
1780 p = *str;
1781 q = val;
1782 while (*q) {
1783 if (*p != *q)
1784 return 0;
1785 p++;
1786 q++;
1788 *str = p;
1789 return 1;
1792 /* Like strstart, but automatically takes into account that ld options can
1794 * - start with double or single dash (e.g. '--soname' or '-soname')
1795 * - arguments can be given as separate or after '=' (e.g. '-Wl,-soname,x.so'
1796 * or '-Wl,-soname=x.so')
1798 * you provide `val` always in 'option[=]' form (no leading -)
1800 static int link_option(const char *str, const char *val, const char **ptr)
1802 const char *p, *q;
1804 /* there should be 1 or 2 dashes */
1805 if (*str++ != '-')
1806 return 0;
1807 if (*str == '-')
1808 str++;
1810 /* then str & val should match (potentialy up to '=') */
1811 p = str;
1812 q = val;
1814 while (*q != '\0' && *q != '=') {
1815 if (*p != *q)
1816 return 0;
1817 p++;
1818 q++;
1821 /* '=' near eos means ',' or '=' is ok */
1822 if (*q == '=') {
1823 if (*p != ',' && *p != '=')
1824 return 0;
1825 p++;
1826 q++;
1829 if (ptr)
1830 *ptr = p;
1831 return 1;
1834 static const char *skip_linker_arg(const char **str)
1836 const char *s1 = *str;
1837 const char *s2 = strchr(s1, ',');
1838 *str = s2 ? s2++ : (s2 = s1 + strlen(s1));
1839 return s2;
1842 static char *copy_linker_arg(const char *p)
1844 const char *q = p;
1845 skip_linker_arg(&q);
1846 return pstrncpy(tcc_malloc(q - p + 1), p, q - p);
1849 /* set linker options */
1850 static int tcc_set_linker(TCCState *s, const char *option)
1852 while (option && *option) {
1854 const char *p = option;
1855 char *end = NULL;
1856 int ignoring = 0;
1858 if (link_option(option, "Bsymbolic", &p)) {
1859 s->symbolic = 1;
1860 } else if (link_option(option, "nostdlib", &p)) {
1861 s->nostdlib = 1;
1862 } else if (link_option(option, "fini=", &p)) {
1863 s->fini_symbol = copy_linker_arg(p);
1864 ignoring = 1;
1865 } else if (link_option(option, "image-base=", &p)
1866 || link_option(option, "Ttext=", &p)) {
1867 s->text_addr = strtoull(p, &end, 16);
1868 s->has_text_addr = 1;
1869 } else if (link_option(option, "init=", &p)) {
1870 s->init_symbol = copy_linker_arg(p);
1871 ignoring = 1;
1872 } else if (link_option(option, "oformat=", &p)) {
1873 #if defined(TCC_TARGET_PE)
1874 if (strstart("pe-", &p)) {
1875 #elif defined(TCC_TARGET_ARM64) || defined(TCC_TARGET_X86_64)
1876 if (strstart("elf64-", &p)) {
1877 #else
1878 if (strstart("elf32-", &p)) {
1879 #endif
1880 s->output_format = TCC_OUTPUT_FORMAT_ELF;
1881 } else if (!strcmp(p, "binary")) {
1882 s->output_format = TCC_OUTPUT_FORMAT_BINARY;
1883 #ifdef TCC_TARGET_COFF
1884 } else if (!strcmp(p, "coff")) {
1885 s->output_format = TCC_OUTPUT_FORMAT_COFF;
1886 #endif
1887 } else
1888 goto err;
1890 } else if (link_option(option, "as-needed", &p)) {
1891 ignoring = 1;
1892 } else if (link_option(option, "O", &p)) {
1893 ignoring = 1;
1894 } else if (link_option(option, "rpath=", &p)) {
1895 s->rpath = copy_linker_arg(p);
1896 } else if (link_option(option, "section-alignment=", &p)) {
1897 s->section_align = strtoul(p, &end, 16);
1898 } else if (link_option(option, "soname=", &p)) {
1899 s->soname = copy_linker_arg(p);
1900 #ifdef TCC_TARGET_PE
1901 } else if (link_option(option, "file-alignment=", &p)) {
1902 s->pe_file_align = strtoul(p, &end, 16);
1903 } else if (link_option(option, "stack=", &p)) {
1904 s->pe_stack_size = strtoul(p, &end, 10);
1905 } else if (link_option(option, "subsystem=", &p)) {
1906 #if defined(TCC_TARGET_I386) || defined(TCC_TARGET_X86_64)
1907 if (!strcmp(p, "native")) {
1908 s->pe_subsystem = 1;
1909 } else if (!strcmp(p, "console")) {
1910 s->pe_subsystem = 3;
1911 } else if (!strcmp(p, "gui")) {
1912 s->pe_subsystem = 2;
1913 } else if (!strcmp(p, "posix")) {
1914 s->pe_subsystem = 7;
1915 } else if (!strcmp(p, "efiapp")) {
1916 s->pe_subsystem = 10;
1917 } else if (!strcmp(p, "efiboot")) {
1918 s->pe_subsystem = 11;
1919 } else if (!strcmp(p, "efiruntime")) {
1920 s->pe_subsystem = 12;
1921 } else if (!strcmp(p, "efirom")) {
1922 s->pe_subsystem = 13;
1923 #elif defined(TCC_TARGET_ARM)
1924 if (!strcmp(p, "wince")) {
1925 s->pe_subsystem = 9;
1926 #endif
1927 } else
1928 goto err;
1929 #endif
1930 } else
1931 goto err;
1933 if (ignoring && s->warn_unsupported) err: {
1934 char buf[100], *e;
1935 pstrcpy(buf, sizeof buf, e = copy_linker_arg(option)), tcc_free(e);
1936 if (ignoring)
1937 tcc_warning("unsupported linker option '%s'", buf);
1938 else
1939 tcc_error("unsupported linker option '%s'", buf);
1941 option = skip_linker_arg(&p);
1943 return 0;
1946 typedef struct TCCOption {
1947 const char *name;
1948 uint16_t index;
1949 uint16_t flags;
1950 } TCCOption;
1952 enum {
1953 TCC_OPTION_HELP,
1954 TCC_OPTION_I,
1955 TCC_OPTION_D,
1956 TCC_OPTION_U,
1957 TCC_OPTION_P,
1958 TCC_OPTION_L,
1959 TCC_OPTION_B,
1960 TCC_OPTION_l,
1961 TCC_OPTION_bench,
1962 TCC_OPTION_bt,
1963 TCC_OPTION_b,
1964 TCC_OPTION_g,
1965 TCC_OPTION_c,
1966 TCC_OPTION_C,
1967 TCC_OPTION_dumpversion,
1968 TCC_OPTION_d,
1969 TCC_OPTION_float_abi,
1970 TCC_OPTION_static,
1971 TCC_OPTION_std,
1972 TCC_OPTION_shared,
1973 TCC_OPTION_soname,
1974 TCC_OPTION_o,
1975 TCC_OPTION_r,
1976 TCC_OPTION_s,
1977 TCC_OPTION_traditional,
1978 TCC_OPTION_Wl,
1979 TCC_OPTION_W,
1980 TCC_OPTION_O,
1981 TCC_OPTION_m,
1982 TCC_OPTION_f,
1983 TCC_OPTION_isystem,
1984 TCC_OPTION_iwithprefix,
1985 TCC_OPTION_nostdinc,
1986 TCC_OPTION_nostdlib,
1987 TCC_OPTION_print_search_dirs,
1988 TCC_OPTION_rdynamic,
1989 TCC_OPTION_pedantic,
1990 TCC_OPTION_pthread,
1991 TCC_OPTION_run,
1992 TCC_OPTION_v,
1993 TCC_OPTION_w,
1994 TCC_OPTION_pipe,
1995 TCC_OPTION_E,
1996 TCC_OPTION_MD,
1997 TCC_OPTION_MF,
1998 TCC_OPTION_x
2001 #define TCC_OPTION_HAS_ARG 0x0001
2002 #define TCC_OPTION_NOSEP 0x0002 /* cannot have space before option and arg */
2004 static const TCCOption tcc_options[] = {
2005 { "h", TCC_OPTION_HELP, 0 },
2006 { "-help", TCC_OPTION_HELP, 0 },
2007 { "?", TCC_OPTION_HELP, 0 },
2008 { "I", TCC_OPTION_I, TCC_OPTION_HAS_ARG },
2009 { "D", TCC_OPTION_D, TCC_OPTION_HAS_ARG },
2010 { "U", TCC_OPTION_U, TCC_OPTION_HAS_ARG },
2011 { "P", TCC_OPTION_P, TCC_OPTION_HAS_ARG | TCC_OPTION_NOSEP },
2012 { "L", TCC_OPTION_L, TCC_OPTION_HAS_ARG },
2013 { "B", TCC_OPTION_B, TCC_OPTION_HAS_ARG },
2014 { "l", TCC_OPTION_l, TCC_OPTION_HAS_ARG | TCC_OPTION_NOSEP },
2015 { "bench", TCC_OPTION_bench, 0 },
2016 #ifdef CONFIG_TCC_BACKTRACE
2017 { "bt", TCC_OPTION_bt, TCC_OPTION_HAS_ARG },
2018 #endif
2019 #ifdef CONFIG_TCC_BCHECK
2020 { "b", TCC_OPTION_b, 0 },
2021 #endif
2022 { "g", TCC_OPTION_g, TCC_OPTION_HAS_ARG | TCC_OPTION_NOSEP },
2023 { "c", TCC_OPTION_c, 0 },
2024 { "C", TCC_OPTION_C, 0 },
2025 { "dumpversion", TCC_OPTION_dumpversion, 0},
2026 { "d", TCC_OPTION_d, TCC_OPTION_HAS_ARG | TCC_OPTION_NOSEP },
2027 #ifdef TCC_TARGET_ARM
2028 { "mfloat-abi", TCC_OPTION_float_abi, TCC_OPTION_HAS_ARG },
2029 #endif
2030 { "static", TCC_OPTION_static, 0 },
2031 { "std", TCC_OPTION_std, TCC_OPTION_HAS_ARG | TCC_OPTION_NOSEP },
2032 { "shared", TCC_OPTION_shared, 0 },
2033 { "soname", TCC_OPTION_soname, TCC_OPTION_HAS_ARG },
2034 { "o", TCC_OPTION_o, TCC_OPTION_HAS_ARG },
2035 { "pedantic", TCC_OPTION_pedantic, 0},
2036 { "pthread", TCC_OPTION_pthread, 0},
2037 { "run", TCC_OPTION_run, TCC_OPTION_HAS_ARG | TCC_OPTION_NOSEP },
2038 { "rdynamic", TCC_OPTION_rdynamic, 0 },
2039 { "r", TCC_OPTION_r, 0 },
2040 { "s", TCC_OPTION_s, 0 },
2041 { "traditional", TCC_OPTION_traditional, 0 },
2042 { "Wl,", TCC_OPTION_Wl, TCC_OPTION_HAS_ARG | TCC_OPTION_NOSEP },
2043 { "W", TCC_OPTION_W, TCC_OPTION_HAS_ARG | TCC_OPTION_NOSEP },
2044 { "O", TCC_OPTION_O, TCC_OPTION_HAS_ARG | TCC_OPTION_NOSEP },
2045 { "m", TCC_OPTION_m, TCC_OPTION_HAS_ARG },
2046 { "f", TCC_OPTION_f, TCC_OPTION_HAS_ARG | TCC_OPTION_NOSEP },
2047 { "isystem", TCC_OPTION_isystem, TCC_OPTION_HAS_ARG },
2048 { "iwithprefix", TCC_OPTION_iwithprefix, TCC_OPTION_HAS_ARG },
2049 { "nostdinc", TCC_OPTION_nostdinc, 0 },
2050 { "nostdlib", TCC_OPTION_nostdlib, 0 },
2051 { "print-search-dirs", TCC_OPTION_print_search_dirs, 0 },
2052 { "v", TCC_OPTION_v, TCC_OPTION_HAS_ARG | TCC_OPTION_NOSEP },
2053 { "w", TCC_OPTION_w, 0 },
2054 { "pipe", TCC_OPTION_pipe, 0},
2055 { "E", TCC_OPTION_E, 0},
2056 { "MD", TCC_OPTION_MD, 0},
2057 { "MF", TCC_OPTION_MF, TCC_OPTION_HAS_ARG },
2058 { "x", TCC_OPTION_x, TCC_OPTION_HAS_ARG },
2059 { NULL, 0, 0 },
2062 static void parse_option_D(TCCState *s1, const char *optarg)
2064 char *sym = tcc_strdup(optarg);
2065 char *value = strchr(sym, '=');
2066 if (value)
2067 *value++ = '\0';
2068 tcc_define_symbol(s1, sym, value);
2069 tcc_free(sym);
2072 static void args_parser_add_file(TCCState *s, const char* filename, int filetype)
2074 int len = strlen(filename);
2075 char *p = tcc_malloc(len + 2);
2076 if (filetype) {
2077 *p = filetype;
2079 else {
2080 /* use a file extension to detect a filetype */
2081 const char *ext = tcc_fileextension(filename);
2082 if (ext[0]) {
2083 ext++;
2084 if (!strcmp(ext, "S"))
2085 *p = TCC_FILETYPE_ASM_PP;
2086 else
2087 if (!strcmp(ext, "s"))
2088 *p = TCC_FILETYPE_ASM;
2089 else
2090 if (!PATHCMP(ext, "c") || !PATHCMP(ext, "i"))
2091 *p = TCC_FILETYPE_C;
2092 else
2093 *p = TCC_FILETYPE_BINARY;
2095 else {
2096 *p = TCC_FILETYPE_C;
2099 strcpy(p+1, filename);
2100 dynarray_add((void ***)&s->files, &s->nb_files, p);
2103 ST_FUNC int tcc_parse_args1(TCCState *s, int argc, char **argv)
2105 const TCCOption *popt;
2106 const char *optarg, *r;
2107 int optind = 0;
2108 ParseArgsState *pas = s->parse_args_state;
2110 while (optind < argc) {
2112 r = argv[optind++];
2113 if (r[0] != '-' || r[1] == '\0') {
2114 /* handle list files */
2115 if (r[0] == '@' && r[1]) {
2116 char buf[sizeof file->filename], *p;
2117 char **argv = NULL;
2118 int argc = 0;
2119 FILE *fp;
2121 fp = fopen(r + 1, "rb");
2122 if (fp == NULL)
2123 tcc_error("list file '%s' not found", r + 1);
2124 while (fgets(buf, sizeof buf, fp)) {
2125 p = trimfront(trimback(buf, strchr(buf, 0)));
2126 if (0 == *p || ';' == *p)
2127 continue;
2128 dynarray_add((void ***)&argv, &argc, tcc_strdup(p));
2130 fclose(fp);
2131 tcc_parse_args1(s, argc, argv);
2132 dynarray_reset(&argv, &argc);
2133 } else {
2134 args_parser_add_file(s, r, pas->filetype);
2135 if (pas->run) {
2136 optind--;
2137 /* argv[0] will be this file */
2138 break;
2141 continue;
2144 /* find option in table */
2145 for(popt = tcc_options; ; ++popt) {
2146 const char *p1 = popt->name;
2147 const char *r1 = r + 1;
2148 if (p1 == NULL)
2149 tcc_error("invalid option -- '%s'", r);
2150 if (!strstart(p1, &r1))
2151 continue;
2152 optarg = r1;
2153 if (popt->flags & TCC_OPTION_HAS_ARG) {
2154 if (*r1 == '\0' && !(popt->flags & TCC_OPTION_NOSEP)) {
2155 if (optind >= argc)
2156 tcc_error("argument to '%s' is missing", r);
2157 optarg = argv[optind++];
2159 } else if (*r1 != '\0')
2160 continue;
2161 break;
2164 switch(popt->index) {
2165 case TCC_OPTION_HELP:
2166 return 0;
2167 case TCC_OPTION_I:
2168 tcc_add_include_path(s, optarg);
2169 break;
2170 case TCC_OPTION_D:
2171 parse_option_D(s, optarg);
2172 break;
2173 case TCC_OPTION_U:
2174 tcc_undefine_symbol(s, optarg);
2175 break;
2176 case TCC_OPTION_L:
2177 tcc_add_library_path(s, optarg);
2178 break;
2179 case TCC_OPTION_B:
2180 /* set tcc utilities path (mainly for tcc development) */
2181 tcc_set_lib_path(s, optarg);
2182 break;
2183 case TCC_OPTION_l:
2184 args_parser_add_file(s, r, TCC_FILETYPE_BINARY);
2185 s->nb_libraries++;
2186 break;
2187 case TCC_OPTION_pthread:
2188 parse_option_D(s, "_REENTRANT");
2189 pas->pthread = 1;
2190 break;
2191 case TCC_OPTION_bench:
2192 s->do_bench = 1;
2193 break;
2194 #ifdef CONFIG_TCC_BACKTRACE
2195 case TCC_OPTION_bt:
2196 tcc_set_num_callers(atoi(optarg));
2197 break;
2198 #endif
2199 #ifdef CONFIG_TCC_BCHECK
2200 case TCC_OPTION_b:
2201 s->do_bounds_check = 1;
2202 s->do_debug = 1;
2203 break;
2204 #endif
2205 case TCC_OPTION_g:
2206 s->do_debug = 1;
2207 break;
2208 case TCC_OPTION_c:
2209 if (s->output_type)
2210 tcc_warning("-c: some compiler action already specified (%d)", s->output_type);
2211 s->output_type = TCC_OUTPUT_OBJ;
2212 break;
2213 case TCC_OPTION_C:
2214 s->option_C = 1;
2215 break;
2216 case TCC_OPTION_d:
2217 if (*optarg == 'D' || *optarg == 'M')
2218 s->dflag = *optarg;
2219 else {
2220 if (s->warn_unsupported)
2221 goto unsupported_option;
2222 tcc_error("invalid option -- '%s'", r);
2224 break;
2225 #ifdef TCC_TARGET_ARM
2226 case TCC_OPTION_float_abi:
2227 /* tcc doesn't support soft float yet */
2228 if (!strcmp(optarg, "softfp")) {
2229 s->float_abi = ARM_SOFTFP_FLOAT;
2230 tcc_undefine_symbol(s, "__ARM_PCS_VFP");
2231 } else if (!strcmp(optarg, "hard"))
2232 s->float_abi = ARM_HARD_FLOAT;
2233 else
2234 tcc_error("unsupported float abi '%s'", optarg);
2235 break;
2236 #endif
2237 case TCC_OPTION_static:
2238 s->static_link = 1;
2239 break;
2240 case TCC_OPTION_std:
2241 /* silently ignore, a current purpose:
2242 allow to use a tcc as a reference compiler for "make test" */
2243 break;
2244 case TCC_OPTION_shared:
2245 if (s->output_type)
2246 tcc_warning("-shared: some compiler action already specified (%d)", s->output_type);
2247 s->output_type = TCC_OUTPUT_DLL;
2248 break;
2249 case TCC_OPTION_soname:
2250 s->soname = tcc_strdup(optarg);
2251 break;
2252 case TCC_OPTION_m:
2253 s->option_m = tcc_strdup(optarg);
2254 break;
2255 case TCC_OPTION_o:
2256 if (s->outfile) {
2257 tcc_warning("multiple -o option");
2258 tcc_free(s->outfile);
2260 s->outfile = tcc_strdup(optarg);
2261 break;
2262 case TCC_OPTION_r:
2263 /* generate a .o merging several output files */
2264 if (s->output_type)
2265 tcc_warning("-r: some compiler action already specified (%d)", s->output_type);
2266 s->option_r = 1;
2267 s->output_type = TCC_OUTPUT_OBJ;
2268 break;
2269 case TCC_OPTION_isystem:
2270 tcc_add_sysinclude_path(s, optarg);
2271 break;
2272 case TCC_OPTION_iwithprefix:
2273 if (1) {
2274 char buf[1024];
2275 int buf_size = sizeof(buf)-1;
2276 char *p = &buf[0];
2278 char *sysroot = "{B}/";
2279 int len = strlen(sysroot);
2280 if (len > buf_size)
2281 len = buf_size;
2282 strncpy(p, sysroot, len);
2283 p += len;
2284 buf_size -= len;
2286 len = strlen(optarg);
2287 if (len > buf_size)
2288 len = buf_size;
2289 strncpy(p, optarg, len+1);
2290 tcc_add_sysinclude_path(s, buf);
2292 break;
2293 case TCC_OPTION_nostdinc:
2294 s->nostdinc = 1;
2295 break;
2296 case TCC_OPTION_nostdlib:
2297 s->nostdlib = 1;
2298 break;
2299 case TCC_OPTION_print_search_dirs:
2300 s->print_search_dirs = 1;
2301 break;
2302 case TCC_OPTION_run:
2303 if (s->output_type)
2304 tcc_warning("-run: some compiler action already specified (%d)", s->output_type);
2305 s->output_type = TCC_OUTPUT_MEMORY;
2306 tcc_set_options(s, optarg);
2307 pas->run = 1;
2308 break;
2309 case TCC_OPTION_v:
2310 do ++s->verbose; while (*optarg++ == 'v');
2311 break;
2312 case TCC_OPTION_f:
2313 if (tcc_set_flag(s, optarg, 1) < 0 && s->warn_unsupported)
2314 goto unsupported_option;
2315 break;
2316 case TCC_OPTION_W:
2317 if (tcc_set_warning(s, optarg, 1) < 0 &&
2318 s->warn_unsupported)
2319 goto unsupported_option;
2320 break;
2321 case TCC_OPTION_w:
2322 s->warn_none = 1;
2323 break;
2324 case TCC_OPTION_rdynamic:
2325 s->rdynamic = 1;
2326 break;
2327 case TCC_OPTION_Wl:
2328 if (pas->linker_arg.size)
2329 --pas->linker_arg.size, cstr_ccat(&pas->linker_arg, ',');
2330 cstr_cat(&pas->linker_arg, optarg, 0);
2331 break;
2332 case TCC_OPTION_E:
2333 if (s->output_type)
2334 tcc_warning("-E: some compiler action already specified (%d)", s->output_type);
2335 s->output_type = TCC_OUTPUT_PREPROCESS;
2336 break;
2337 case TCC_OPTION_P:
2338 s->Pflag = atoi(optarg) + 1;
2339 break;
2340 case TCC_OPTION_MD:
2341 s->gen_deps = 1;
2342 break;
2343 case TCC_OPTION_MF:
2344 s->deps_outfile = tcc_strdup(optarg);
2345 break;
2346 case TCC_OPTION_dumpversion:
2347 printf ("%s\n", TCC_VERSION);
2348 exit(0);
2349 case TCC_OPTION_s:
2350 s->do_strip = 1;
2351 break;
2352 case TCC_OPTION_traditional:
2353 break;
2354 case TCC_OPTION_x:
2355 if (*optarg == 'c')
2356 pas->filetype = TCC_FILETYPE_C;
2357 else
2358 if (*optarg == 'a')
2359 pas->filetype = TCC_FILETYPE_ASM_PP;
2360 else
2361 if (*optarg == 'n')
2362 pas->filetype = 0;
2363 else
2364 tcc_warning("unsupported language '%s'", optarg);
2365 break;
2366 case TCC_OPTION_O:
2367 if (1) {
2368 int opt = atoi(optarg);
2369 char *sym = "__OPTIMIZE__";
2370 if (opt)
2371 tcc_define_symbol(s, sym, 0);
2372 else
2373 tcc_undefine_symbol(s, sym);
2375 break;
2376 case TCC_OPTION_pedantic:
2377 case TCC_OPTION_pipe:
2378 /* ignored */
2379 break;
2380 default:
2381 if (s->warn_unsupported) {
2382 unsupported_option:
2383 tcc_warning("unsupported option '%s'", r);
2385 break;
2388 return optind;
2391 PUB_FUNC int tcc_parse_args(TCCState *s, int argc, char **argv)
2393 ParseArgsState *pas;
2394 int ret, is_allocated = 0;
2396 if (!s->parse_args_state) {
2397 s->parse_args_state = tcc_mallocz(sizeof(ParseArgsState));
2398 cstr_new(&s->parse_args_state->linker_arg);
2399 is_allocated = 1;
2401 pas = s->parse_args_state;
2403 ret = tcc_parse_args1(s, argc, argv);
2405 if (s->output_type == 0)
2406 s->output_type = TCC_OUTPUT_EXE;
2408 if (pas->pthread && s->output_type != TCC_OUTPUT_OBJ)
2409 tcc_set_options(s, "-lpthread");
2411 if (s->output_type == TCC_OUTPUT_EXE)
2412 tcc_set_linker(s, (const char *)pas->linker_arg.data);
2414 if (is_allocated) {
2415 cstr_free(&pas->linker_arg);
2416 tcc_free(pas);
2417 s->parse_args_state = NULL;
2419 return ret;
2422 LIBTCCAPI int tcc_set_options(TCCState *s, const char *str)
2424 const char *s1;
2425 char **argv, *arg;
2426 int argc, len;
2427 int ret;
2429 argc = 0, argv = NULL;
2430 for(;;) {
2431 while (is_space(*str))
2432 str++;
2433 if (*str == '\0')
2434 break;
2435 s1 = str;
2436 while (*str != '\0' && !is_space(*str))
2437 str++;
2438 len = str - s1;
2439 arg = tcc_malloc(len + 1);
2440 pstrncpy(arg, s1, len);
2441 dynarray_add((void ***)&argv, &argc, arg);
2443 ret = tcc_parse_args(s, argc, argv);
2444 dynarray_reset(&argv, &argc);
2445 return ret;
2448 PUB_FUNC void tcc_print_stats(TCCState *s, int64_t total_time)
2450 double tt;
2451 tt = (double)total_time / 1000000.0;
2452 if (tt < 0.001)
2453 tt = 0.001;
2454 if (total_bytes < 1)
2455 total_bytes = 1;
2456 fprintf(stderr, "%d idents, %d lines, %d bytes, %0.3f s, %d lines/s, %0.1f MB/s\n",
2457 tok_ident - TOK_IDENT, total_lines, total_bytes,
2458 tt, (int)(total_lines / tt),
2459 total_bytes / tt / 1000000.0);
2462 PUB_FUNC void tcc_set_environment(TCCState *s)
2464 char * path;
2466 path = getenv("C_INCLUDE_PATH");
2467 if(path != NULL) {
2468 tcc_add_include_path(s, path);
2470 path = getenv("CPATH");
2471 if(path != NULL) {
2472 tcc_add_include_path(s, path);
2474 path = getenv("LIBRARY_PATH");
2475 if(path != NULL) {
2476 tcc_add_library_path(s, path);