tcc -vv/--print-search-dirs: print more info
[tinycc.git] / libtcc.c
blob968c6e4afb74009c6c687756ecafec369ea9a1ca
1 /*
2 * TCC - Tiny C Compiler
3 *
4 * Copyright (c) 2001-2004 Fabrice Bellard
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 #include "tcc.h"
23 /********************************************************/
24 /* global variables */
26 /* use GNU C extensions */
27 ST_DATA int gnu_ext = 1;
29 /* use TinyCC extensions */
30 ST_DATA int tcc_ext = 1;
32 /* XXX: get rid of this ASAP */
33 ST_DATA struct TCCState *tcc_state;
35 /********************************************************/
37 #ifdef ONE_SOURCE
38 #include "tccpp.c"
39 #include "tccgen.c"
40 #include "tccelf.c"
41 #include "tccrun.c"
42 #ifdef TCC_TARGET_I386
43 #include "i386-gen.c"
44 #endif
45 #ifdef TCC_TARGET_ARM
46 #include "arm-gen.c"
47 #endif
48 #ifdef TCC_TARGET_C67
49 #include "c67-gen.c"
50 #endif
51 #ifdef TCC_TARGET_X86_64
52 #include "x86_64-gen.c"
53 #endif
54 #ifdef CONFIG_TCC_ASM
55 #include "tccasm.c"
56 #if defined TCC_TARGET_I386 || defined TCC_TARGET_X86_64
57 #include "i386-asm.c"
58 #endif
59 #endif
60 #ifdef TCC_TARGET_COFF
61 #include "tcccoff.c"
62 #endif
63 #ifdef TCC_TARGET_PE
64 #include "tccpe.c"
65 #endif
66 #endif /* ONE_SOURCE */
68 /********************************************************/
69 #ifndef CONFIG_TCC_ASM
70 ST_FUNC void asm_instr(void)
72 tcc_error("inline asm() not supported");
74 ST_FUNC void asm_global_instr(void)
76 tcc_error("inline asm() not supported");
78 #endif
80 /********************************************************/
82 #ifdef _WIN32
83 static char *normalize_slashes(char *path)
85 char *p;
86 for (p = path; *p; ++p)
87 if (*p == '\\')
88 *p = '/';
89 return path;
92 static HMODULE tcc_module;
94 /* on win32, we suppose the lib and includes are at the location of 'tcc.exe' */
95 static void tcc_set_lib_path_w32(TCCState *s)
97 char path[1024], *p;
98 GetModuleFileNameA(tcc_module, path, sizeof path);
99 p = tcc_basename(normalize_slashes(strlwr(path)));
100 if (p - 5 > path && 0 == strncmp(p - 5, "/bin/", 5))
101 p -= 5;
102 else if (p > path)
103 p--;
104 *p = 0;
105 tcc_set_lib_path(s, path);
108 #ifdef TCC_TARGET_PE
109 static void tcc_add_systemdir(TCCState *s)
111 char buf[1000];
112 GetSystemDirectory(buf, sizeof buf);
113 tcc_add_library_path(s, normalize_slashes(buf));
115 #endif
117 #ifndef CONFIG_TCC_STATIC
118 void dlclose(void *p)
120 FreeLibrary((HMODULE)p);
122 #endif
124 #ifdef LIBTCC_AS_DLL
125 BOOL WINAPI DllMain (HANDLE hDll, DWORD dwReason, LPVOID lpReserved)
127 if (DLL_PROCESS_ATTACH == dwReason)
128 tcc_module = hDll;
129 return TRUE;
131 #endif
132 #endif
134 /********************************************************/
135 /* copy a string and truncate it. */
136 PUB_FUNC char *pstrcpy(char *buf, int buf_size, const char *s)
138 char *q, *q_end;
139 int c;
141 if (buf_size > 0) {
142 q = buf;
143 q_end = buf + buf_size - 1;
144 while (q < q_end) {
145 c = *s++;
146 if (c == '\0')
147 break;
148 *q++ = c;
150 *q = '\0';
152 return buf;
155 /* strcat and truncate. */
156 PUB_FUNC char *pstrcat(char *buf, int buf_size, const char *s)
158 int len;
159 len = strlen(buf);
160 if (len < buf_size)
161 pstrcpy(buf + len, buf_size - len, s);
162 return buf;
165 PUB_FUNC char *pstrncpy(char *out, const char *in, size_t num)
167 memcpy(out, in, num);
168 out[num] = '\0';
169 return out;
172 /* extract the basename of a file */
173 PUB_FUNC char *tcc_basename(const char *name)
175 char *p = strchr(name, 0);
176 while (p > name && !IS_DIRSEP(p[-1]))
177 --p;
178 return p;
181 /* extract extension part of a file
183 * (if no extension, return pointer to end-of-string)
185 PUB_FUNC char *tcc_fileextension (const char *name)
187 char *b = tcc_basename(name);
188 char *e = strrchr(b, '.');
189 return e ? e : strchr(b, 0);
192 /********************************************************/
193 /* memory management */
195 #undef free
196 #undef malloc
197 #undef realloc
199 #ifdef MEM_DEBUG
200 int mem_cur_size;
201 int mem_max_size;
202 unsigned malloc_usable_size(void*);
203 #endif
205 PUB_FUNC void tcc_free(void *ptr)
207 #ifdef MEM_DEBUG
208 mem_cur_size -= malloc_usable_size(ptr);
209 #endif
210 free(ptr);
213 PUB_FUNC void *tcc_malloc(unsigned long size)
215 void *ptr;
216 ptr = malloc(size);
217 if (!ptr && size)
218 tcc_error("memory full");
219 #ifdef MEM_DEBUG
220 mem_cur_size += malloc_usable_size(ptr);
221 if (mem_cur_size > mem_max_size)
222 mem_max_size = mem_cur_size;
223 #endif
224 return ptr;
227 PUB_FUNC void *tcc_mallocz(unsigned long size)
229 void *ptr;
230 ptr = tcc_malloc(size);
231 memset(ptr, 0, size);
232 return ptr;
235 PUB_FUNC void *tcc_realloc(void *ptr, unsigned long size)
237 void *ptr1;
238 #ifdef MEM_DEBUG
239 mem_cur_size -= malloc_usable_size(ptr);
240 #endif
241 ptr1 = realloc(ptr, size);
242 if (!ptr1 && size)
243 tcc_error("memory full");
244 #ifdef MEM_DEBUG
245 /* NOTE: count not correct if alloc error, but not critical */
246 mem_cur_size += malloc_usable_size(ptr1);
247 if (mem_cur_size > mem_max_size)
248 mem_max_size = mem_cur_size;
249 #endif
250 return ptr1;
253 PUB_FUNC char *tcc_strdup(const char *str)
255 char *ptr;
256 ptr = tcc_malloc(strlen(str) + 1);
257 strcpy(ptr, str);
258 return ptr;
261 PUB_FUNC void tcc_memstats(void)
263 #ifdef MEM_DEBUG
264 printf("memory in use: %d\n", mem_cur_size);
265 #endif
268 #define free(p) use_tcc_free(p)
269 #define malloc(s) use_tcc_malloc(s)
270 #define realloc(p, s) use_tcc_realloc(p, s)
272 /********************************************************/
273 /* dynarrays */
275 PUB_FUNC void dynarray_add(void ***ptab, int *nb_ptr, void *data)
277 int nb, nb_alloc;
278 void **pp;
280 nb = *nb_ptr;
281 pp = *ptab;
282 /* every power of two we double array size */
283 if ((nb & (nb - 1)) == 0) {
284 if (!nb)
285 nb_alloc = 1;
286 else
287 nb_alloc = nb * 2;
288 pp = tcc_realloc(pp, nb_alloc * sizeof(void *));
289 *ptab = pp;
291 pp[nb++] = data;
292 *nb_ptr = nb;
295 PUB_FUNC void dynarray_reset(void *pp, int *n)
297 void **p;
298 for (p = *(void***)pp; *n; ++p, --*n)
299 if (*p)
300 tcc_free(*p);
301 tcc_free(*(void**)pp);
302 *(void**)pp = NULL;
305 static void tcc_split_path(TCCState *s, void ***p_ary, int *p_nb_ary, const char *in)
307 const char *p;
308 do {
309 int c;
310 CString str;
312 cstr_new(&str);
313 for (p = in; c = *p, c != '\0' && c != PATHSEP; ++p) {
314 if (c == '{' && p[1] && p[2] == '}') {
315 c = p[1], p += 2;
316 if (c == 'B')
317 cstr_cat(&str, s->tcc_lib_path);
318 } else {
319 cstr_ccat(&str, c);
322 cstr_ccat(&str, '\0');
323 dynarray_add(p_ary, p_nb_ary, str.data);
324 in = p+1;
325 } while (*p);
328 /********************************************************/
330 ST_FUNC Section *new_section(TCCState *s1, const char *name, int sh_type, int sh_flags)
332 Section *sec;
334 sec = tcc_mallocz(sizeof(Section) + strlen(name));
335 strcpy(sec->name, name);
336 sec->sh_type = sh_type;
337 sec->sh_flags = sh_flags;
338 switch(sh_type) {
339 case SHT_HASH:
340 case SHT_REL:
341 case SHT_RELA:
342 case SHT_DYNSYM:
343 case SHT_SYMTAB:
344 case SHT_DYNAMIC:
345 sec->sh_addralign = 4;
346 break;
347 case SHT_STRTAB:
348 sec->sh_addralign = 1;
349 break;
350 default:
351 sec->sh_addralign = 32; /* default conservative alignment */
352 break;
355 if (sh_flags & SHF_PRIVATE) {
356 dynarray_add((void ***)&s1->priv_sections, &s1->nb_priv_sections, sec);
357 } else {
358 sec->sh_num = s1->nb_sections;
359 dynarray_add((void ***)&s1->sections, &s1->nb_sections, sec);
362 return sec;
365 static void free_section(Section *s)
367 tcc_free(s->data);
370 /* realloc section and set its content to zero */
371 ST_FUNC void section_realloc(Section *sec, unsigned long new_size)
373 unsigned long size;
374 unsigned char *data;
376 size = sec->data_allocated;
377 if (size == 0)
378 size = 1;
379 while (size < new_size)
380 size = size * 2;
381 data = tcc_realloc(sec->data, size);
382 memset(data + sec->data_allocated, 0, size - sec->data_allocated);
383 sec->data = data;
384 sec->data_allocated = size;
387 /* reserve at least 'size' bytes in section 'sec' from
388 sec->data_offset. */
389 ST_FUNC void *section_ptr_add(Section *sec, unsigned long size)
391 unsigned long offset, offset1;
393 offset = sec->data_offset;
394 offset1 = offset + size;
395 if (offset1 > sec->data_allocated)
396 section_realloc(sec, offset1);
397 sec->data_offset = offset1;
398 return sec->data + offset;
401 /* reserve at least 'size' bytes from section start */
402 ST_FUNC void section_reserve(Section *sec, unsigned long size)
404 if (size > sec->data_allocated)
405 section_realloc(sec, size);
406 if (size > sec->data_offset)
407 sec->data_offset = size;
410 /* return a reference to a section, and create it if it does not
411 exists */
412 ST_FUNC Section *find_section(TCCState *s1, const char *name)
414 Section *sec;
415 int i;
416 for(i = 1; i < s1->nb_sections; i++) {
417 sec = s1->sections[i];
418 if (!strcmp(name, sec->name))
419 return sec;
421 /* sections are created as PROGBITS */
422 return new_section(s1, name, SHT_PROGBITS, SHF_ALLOC);
425 /* update sym->c so that it points to an external symbol in section
426 'section' with value 'value' */
427 ST_FUNC void put_extern_sym2(Sym *sym, Section *section,
428 addr_t value, unsigned long size,
429 int can_add_underscore)
431 int sym_type, sym_bind, sh_num, info, other;
432 ElfW(Sym) *esym;
433 const char *name;
434 char buf1[256];
436 if (section == NULL)
437 sh_num = SHN_UNDEF;
438 else if (section == SECTION_ABS)
439 sh_num = SHN_ABS;
440 else
441 sh_num = section->sh_num;
443 if ((sym->type.t & VT_BTYPE) == VT_FUNC) {
444 sym_type = STT_FUNC;
445 } else if ((sym->type.t & VT_BTYPE) == VT_VOID) {
446 sym_type = STT_NOTYPE;
447 } else {
448 sym_type = STT_OBJECT;
451 if (sym->type.t & VT_STATIC)
452 sym_bind = STB_LOCAL;
453 else {
454 if (sym->type.t & VT_WEAK)
455 sym_bind = STB_WEAK;
456 else
457 sym_bind = STB_GLOBAL;
460 if (!sym->c) {
461 name = get_tok_str(sym->v, NULL);
462 #ifdef CONFIG_TCC_BCHECK
463 if (tcc_state->do_bounds_check) {
464 char buf[32];
466 /* XXX: avoid doing that for statics ? */
467 /* if bound checking is activated, we change some function
468 names by adding the "__bound" prefix */
469 switch(sym->v) {
470 #ifdef TCC_TARGET_PE
471 /* XXX: we rely only on malloc hooks */
472 case TOK_malloc:
473 case TOK_free:
474 case TOK_realloc:
475 case TOK_memalign:
476 case TOK_calloc:
477 #endif
478 case TOK_memcpy:
479 case TOK_memmove:
480 case TOK_memset:
481 case TOK_strlen:
482 case TOK_strcpy:
483 case TOK_alloca:
484 strcpy(buf, "__bound_");
485 strcat(buf, name);
486 name = buf;
487 break;
490 #endif
491 other = 0;
493 #ifdef TCC_TARGET_PE
494 if (sym->type.t & VT_EXPORT)
495 other |= 1;
496 if (sym_type == STT_FUNC && sym->type.ref) {
497 int attr = sym->type.ref->r;
498 if (FUNC_EXPORT(attr))
499 other |= 1;
500 if (FUNC_CALL(attr) == FUNC_STDCALL && can_add_underscore) {
501 sprintf(buf1, "_%s@%d", name, FUNC_ARGS(attr) * PTR_SIZE);
502 name = buf1;
503 other |= 2;
504 can_add_underscore = 0;
506 } else {
507 if (find_elf_sym(tcc_state->dynsymtab_section, name))
508 other |= 4;
509 if (sym->type.t & VT_IMPORT)
510 other |= 4;
512 #endif
513 if (tcc_state->leading_underscore && can_add_underscore) {
514 buf1[0] = '_';
515 pstrcpy(buf1 + 1, sizeof(buf1) - 1, name);
516 name = buf1;
518 if (sym->asm_label) {
519 name = sym->asm_label;
521 info = ELFW(ST_INFO)(sym_bind, sym_type);
522 sym->c = add_elf_sym(symtab_section, value, size, info, other, sh_num, name);
523 } else {
524 esym = &((ElfW(Sym) *)symtab_section->data)[sym->c];
525 esym->st_value = value;
526 esym->st_size = size;
527 esym->st_shndx = sh_num;
531 ST_FUNC void put_extern_sym(Sym *sym, Section *section,
532 addr_t value, unsigned long size)
534 put_extern_sym2(sym, section, value, size, 1);
537 /* add a new relocation entry to symbol 'sym' in section 's' */
538 ST_FUNC void greloc(Section *s, Sym *sym, unsigned long offset, int type)
540 int c = 0;
541 if (sym) {
542 if (0 == sym->c)
543 put_extern_sym(sym, NULL, 0, 0);
544 c = sym->c;
546 /* now we can add ELF relocation info */
547 put_elf_reloc(symtab_section, s, offset, type, c);
550 /********************************************************/
552 static void strcat_vprintf(char *buf, int buf_size, const char *fmt, va_list ap)
554 int len;
555 len = strlen(buf);
556 vsnprintf(buf + len, buf_size - len, fmt, ap);
559 static void strcat_printf(char *buf, int buf_size, const char *fmt, ...)
561 va_list ap;
562 va_start(ap, fmt);
563 strcat_vprintf(buf, buf_size, fmt, ap);
564 va_end(ap);
567 static void error1(TCCState *s1, int is_warning, const char *fmt, va_list ap)
569 char buf[2048];
570 BufferedFile **f;
572 buf[0] = '\0';
573 if (file) {
574 for(f = s1->include_stack; f < s1->include_stack_ptr; f++)
575 strcat_printf(buf, sizeof(buf), "In file included from %s:%d:\n",
576 (*f)->filename, (*f)->line_num);
577 if (file->line_num > 0) {
578 strcat_printf(buf, sizeof(buf),
579 "%s:%d: ", file->filename, file->line_num);
580 } else {
581 strcat_printf(buf, sizeof(buf),
582 "%s: ", file->filename);
584 } else {
585 strcat_printf(buf, sizeof(buf),
586 "tcc: ");
588 if (is_warning)
589 strcat_printf(buf, sizeof(buf), "warning: ");
590 else
591 strcat_printf(buf, sizeof(buf), "error: ");
592 strcat_vprintf(buf, sizeof(buf), fmt, ap);
594 if (!s1->error_func) {
595 /* default case: stderr */
596 fprintf(stderr, "%s\n", buf);
597 } else {
598 s1->error_func(s1->error_opaque, buf);
600 if (!is_warning || s1->warn_error)
601 s1->nb_errors++;
604 LIBTCCAPI void tcc_set_error_func(TCCState *s, void *error_opaque,
605 void (*error_func)(void *opaque, const char *msg))
607 s->error_opaque = error_opaque;
608 s->error_func = error_func;
611 /* error without aborting current compilation */
612 PUB_FUNC void tcc_error_noabort(const char *fmt, ...)
614 TCCState *s1 = tcc_state;
615 va_list ap;
617 va_start(ap, fmt);
618 error1(s1, 0, fmt, ap);
619 va_end(ap);
622 PUB_FUNC void tcc_error(const char *fmt, ...)
624 TCCState *s1 = tcc_state;
625 va_list ap;
627 va_start(ap, fmt);
628 error1(s1, 0, fmt, ap);
629 va_end(ap);
630 /* better than nothing: in some cases, we accept to handle errors */
631 if (s1->error_set_jmp_enabled) {
632 longjmp(s1->error_jmp_buf, 1);
633 } else {
634 /* XXX: eliminate this someday */
635 exit(1);
639 PUB_FUNC void tcc_warning(const char *fmt, ...)
641 TCCState *s1 = tcc_state;
642 va_list ap;
644 if (s1->warn_none)
645 return;
647 va_start(ap, fmt);
648 error1(s1, 1, fmt, ap);
649 va_end(ap);
652 /********************************************************/
653 /* I/O layer */
655 ST_FUNC void tcc_open_bf(TCCState *s1, const char *filename, int initlen)
657 BufferedFile *bf;
658 int buflen = initlen ? initlen : IO_BUF_SIZE;
660 bf = tcc_malloc(sizeof(BufferedFile) + buflen);
661 bf->buf_ptr = bf->buffer;
662 bf->buf_end = bf->buffer + initlen;
663 bf->buf_end[0] = CH_EOB; /* put eob symbol */
664 pstrcpy(bf->filename, sizeof(bf->filename), filename);
665 #ifdef _WIN32
666 normalize_slashes(bf->filename);
667 #endif
668 bf->line_num = 1;
669 bf->ifndef_macro = 0;
670 bf->ifdef_stack_ptr = s1->ifdef_stack_ptr;
671 bf->fd = -1;
672 bf->prev = file;
673 file = bf;
676 ST_FUNC void tcc_close(void)
678 BufferedFile *bf = file;
679 if (bf->fd > 0) {
680 close(bf->fd);
681 total_lines += bf->line_num;
683 file = bf->prev;
684 tcc_free(bf);
687 ST_FUNC int tcc_open(TCCState *s1, const char *filename)
689 int fd;
690 if (strcmp(filename, "-") == 0)
691 fd = 0, filename = "stdin";
692 else
693 fd = open(filename, O_RDONLY | O_BINARY);
694 if ((s1->verbose == 2 && fd >= 0) || s1->verbose == 3)
695 printf("%s %*s%s\n", fd < 0 ? "nf":"->",
696 (int)(s1->include_stack_ptr - s1->include_stack), "", filename);
697 if (fd < 0)
698 return -1;
700 tcc_open_bf(s1, filename, 0);
701 file->fd = fd;
702 return fd;
705 /* compile the C file opened in 'file'. Return non zero if errors. */
706 static int tcc_compile(TCCState *s1)
708 Sym *define_start;
709 SValue *pvtop;
710 char buf[512];
711 volatile int section_sym;
713 #ifdef INC_DEBUG
714 printf("%s: **** new file\n", file->filename);
715 #endif
716 preprocess_init(s1);
718 cur_text_section = NULL;
719 funcname = "";
720 anon_sym = SYM_FIRST_ANOM;
722 /* file info: full path + filename */
723 section_sym = 0; /* avoid warning */
724 if (s1->do_debug) {
725 section_sym = put_elf_sym(symtab_section, 0, 0,
726 ELFW(ST_INFO)(STB_LOCAL, STT_SECTION), 0,
727 text_section->sh_num, NULL);
728 getcwd(buf, sizeof(buf));
729 #ifdef _WIN32
730 normalize_slashes(buf);
731 #endif
732 pstrcat(buf, sizeof(buf), "/");
733 put_stabs_r(buf, N_SO, 0, 0,
734 text_section->data_offset, text_section, section_sym);
735 put_stabs_r(file->filename, N_SO, 0, 0,
736 text_section->data_offset, text_section, section_sym);
738 /* an elf symbol of type STT_FILE must be put so that STB_LOCAL
739 symbols can be safely used */
740 put_elf_sym(symtab_section, 0, 0,
741 ELFW(ST_INFO)(STB_LOCAL, STT_FILE), 0,
742 SHN_ABS, file->filename);
744 /* define some often used types */
745 int_type.t = VT_INT;
747 char_pointer_type.t = VT_BYTE;
748 mk_pointer(&char_pointer_type);
750 #if PTR_SIZE == 4
751 size_type.t = VT_INT;
752 #else
753 size_type.t = VT_LLONG;
754 #endif
756 func_old_type.t = VT_FUNC;
757 func_old_type.ref = sym_push(SYM_FIELD, &int_type, FUNC_CDECL, FUNC_OLD);
758 #ifdef TCC_TARGET_ARM
759 arm_init_types();
760 #endif
762 #if 0
763 /* define 'void *alloca(unsigned int)' builtin function */
765 Sym *s1;
767 p = anon_sym++;
768 sym = sym_push(p, mk_pointer(VT_VOID), FUNC_CDECL, FUNC_NEW);
769 s1 = sym_push(SYM_FIELD, VT_UNSIGNED | VT_INT, 0, 0);
770 s1->next = NULL;
771 sym->next = s1;
772 sym_push(TOK_alloca, VT_FUNC | (p << VT_STRUCT_SHIFT), VT_CONST, 0);
774 #endif
776 define_start = define_stack;
777 nocode_wanted = 1;
779 if (setjmp(s1->error_jmp_buf) == 0) {
780 s1->nb_errors = 0;
781 s1->error_set_jmp_enabled = 1;
783 ch = file->buf_ptr[0];
784 tok_flags = TOK_FLAG_BOL | TOK_FLAG_BOF;
785 parse_flags = PARSE_FLAG_PREPROCESS | PARSE_FLAG_TOK_NUM;
786 pvtop = vtop;
787 next();
788 decl(VT_CONST);
789 if (tok != TOK_EOF)
790 expect("declaration");
791 if (pvtop != vtop)
792 tcc_warning("internal compiler error: vstack leak? (%d)", vtop - pvtop);
794 /* end of translation unit info */
795 if (s1->do_debug) {
796 put_stabs_r(NULL, N_SO, 0, 0,
797 text_section->data_offset, text_section, section_sym);
801 s1->error_set_jmp_enabled = 0;
803 /* reset define stack, but leave -Dsymbols (may be incorrect if
804 they are undefined) */
805 free_defines(define_start);
807 gen_inline_functions();
809 sym_pop(&global_stack, NULL);
810 sym_pop(&local_stack, NULL);
812 return s1->nb_errors != 0 ? -1 : 0;
815 LIBTCCAPI int tcc_compile_string(TCCState *s, const char *str)
817 int len, ret;
818 len = strlen(str);
820 tcc_open_bf(s, "<string>", len);
821 memcpy(file->buffer, str, len);
822 ret = tcc_compile(s);
823 tcc_close();
824 return ret;
827 /* define a preprocessor symbol. A value can also be provided with the '=' operator */
828 LIBTCCAPI void tcc_define_symbol(TCCState *s1, const char *sym, const char *value)
830 int len1, len2;
831 /* default value */
832 if (!value)
833 value = "1";
834 len1 = strlen(sym);
835 len2 = strlen(value);
837 /* init file structure */
838 tcc_open_bf(s1, "<define>", len1 + len2 + 1);
839 memcpy(file->buffer, sym, len1);
840 file->buffer[len1] = ' ';
841 memcpy(file->buffer + len1 + 1, value, len2);
843 /* parse with define parser */
844 ch = file->buf_ptr[0];
845 next_nomacro();
846 parse_define();
848 tcc_close();
851 /* undefine a preprocessor symbol */
852 LIBTCCAPI void tcc_undefine_symbol(TCCState *s1, const char *sym)
854 TokenSym *ts;
855 Sym *s;
856 ts = tok_alloc(sym, strlen(sym));
857 s = define_find(ts->tok);
858 /* undefine symbol by putting an invalid name */
859 if (s)
860 define_undef(s);
863 static void tcc_cleanup(void)
865 int i, n;
867 if (NULL == tcc_state)
868 return;
869 tcc_state = NULL;
871 /* free -D defines */
872 free_defines(NULL);
874 /* free tokens */
875 n = tok_ident - TOK_IDENT;
876 for(i = 0; i < n; i++)
877 tcc_free(table_ident[i]);
878 tcc_free(table_ident);
880 /* free sym_pools */
881 dynarray_reset(&sym_pools, &nb_sym_pools);
882 /* string buffer */
883 cstr_free(&tokcstr);
884 /* reset symbol stack */
885 sym_free_first = NULL;
886 /* cleanup from error/setjmp */
887 macro_ptr = NULL;
890 LIBTCCAPI TCCState *tcc_new(void)
892 TCCState *s;
893 char buffer[100];
894 int a,b,c;
896 tcc_cleanup();
898 s = tcc_mallocz(sizeof(TCCState));
899 if (!s)
900 return NULL;
901 tcc_state = s;
902 #ifdef _WIN32
903 tcc_set_lib_path_w32(s);
904 #else
905 tcc_set_lib_path(s, CONFIG_TCCDIR);
906 #endif
907 s->output_type = TCC_OUTPUT_MEMORY;
908 preprocess_new();
909 s->include_stack_ptr = s->include_stack;
911 /* we add dummy defines for some special macros to speed up tests
912 and to have working defined() */
913 define_push(TOK___LINE__, MACRO_OBJ, NULL, NULL);
914 define_push(TOK___FILE__, MACRO_OBJ, NULL, NULL);
915 define_push(TOK___DATE__, MACRO_OBJ, NULL, NULL);
916 define_push(TOK___TIME__, MACRO_OBJ, NULL, NULL);
918 /* standard defines */
919 tcc_define_symbol(s, "__STDC__", NULL);
920 tcc_define_symbol(s, "__STDC_VERSION__", "199901L");
921 #if defined(TCC_TARGET_I386)
922 tcc_define_symbol(s, "__i386__", NULL);
923 tcc_define_symbol(s, "__i386", NULL);
924 tcc_define_symbol(s, "i386", NULL);
925 #endif
926 #if defined(TCC_TARGET_X86_64)
927 tcc_define_symbol(s, "__x86_64__", NULL);
928 #endif
929 #if defined(TCC_TARGET_ARM)
930 tcc_define_symbol(s, "__ARM_ARCH_4__", NULL);
931 tcc_define_symbol(s, "__arm_elf__", NULL);
932 tcc_define_symbol(s, "__arm_elf", NULL);
933 tcc_define_symbol(s, "arm_elf", NULL);
934 tcc_define_symbol(s, "__arm__", NULL);
935 tcc_define_symbol(s, "__arm", NULL);
936 tcc_define_symbol(s, "arm", NULL);
937 tcc_define_symbol(s, "__APCS_32__", NULL);
938 #endif
939 #ifdef TCC_TARGET_PE
940 tcc_define_symbol(s, "_WIN32", NULL);
941 #ifdef TCC_TARGET_X86_64
942 tcc_define_symbol(s, "_WIN64", NULL);
943 #endif
944 #else
945 tcc_define_symbol(s, "__unix__", NULL);
946 tcc_define_symbol(s, "__unix", NULL);
947 tcc_define_symbol(s, "unix", NULL);
948 #if defined(__FreeBSD__)
949 #define str(s) #s
950 tcc_define_symbol(s, "__FreeBSD__", str( __FreeBSD__));
951 #undef str
952 #endif
953 #if defined(__FreeBSD_kernel__)
954 tcc_define_symbol(s, "__FreeBSD_kernel__", NULL);
955 #endif
956 #if defined(__linux)
957 tcc_define_symbol(s, "__linux__", NULL);
958 tcc_define_symbol(s, "__linux", NULL);
959 #endif
960 #endif
961 /* tiny C specific defines */
962 sscanf(TCC_VERSION, "%d.%d.%d", &a, &b, &c);
963 sprintf(buffer, "%d", a*10000 + b*100 + c);
964 tcc_define_symbol(s, "__TINYC__", buffer);
966 /* tiny C & gcc defines */
967 #if defined TCC_TARGET_PE && defined TCC_TARGET_X86_64
968 tcc_define_symbol(s, "__SIZE_TYPE__", "unsigned long long");
969 tcc_define_symbol(s, "__PTRDIFF_TYPE__", "long long");
970 #else
971 tcc_define_symbol(s, "__SIZE_TYPE__", "unsigned long");
972 tcc_define_symbol(s, "__PTRDIFF_TYPE__", "long");
973 #endif
975 #ifdef TCC_TARGET_PE
976 tcc_define_symbol(s, "__WCHAR_TYPE__", "unsigned short");
977 #else
978 tcc_define_symbol(s, "__WCHAR_TYPE__", "int");
979 #endif
981 /* glibc defines */
982 tcc_define_symbol(s, "__REDIRECT(name, proto, alias)", "name proto __asm__ (#alias)");
983 tcc_define_symbol(s, "__REDIRECT_NTH(name, proto, alias)", "name proto __asm__ (#alias) __THROW");
985 #ifndef TCC_TARGET_PE
986 /* default library paths */
987 tcc_add_library_path(s, CONFIG_TCC_LIBPATHS);
988 /* paths for crt objects */
989 tcc_split_path(s, (void ***)&s->crt_paths, &s->nb_crt_paths, CONFIG_TCC_CRTPREFIX);
990 #endif
992 /* no section zero */
993 dynarray_add((void ***)&s->sections, &s->nb_sections, NULL);
995 /* create standard sections */
996 text_section = new_section(s, ".text", SHT_PROGBITS, SHF_ALLOC | SHF_EXECINSTR);
997 data_section = new_section(s, ".data", SHT_PROGBITS, SHF_ALLOC | SHF_WRITE);
998 bss_section = new_section(s, ".bss", SHT_NOBITS, SHF_ALLOC | SHF_WRITE);
1000 /* symbols are always generated for linking stage */
1001 symtab_section = new_symtab(s, ".symtab", SHT_SYMTAB, 0,
1002 ".strtab",
1003 ".hashtab", SHF_PRIVATE);
1004 strtab_section = symtab_section->link;
1005 s->symtab = symtab_section;
1007 /* private symbol table for dynamic symbols */
1008 s->dynsymtab_section = new_symtab(s, ".dynsymtab", SHT_SYMTAB, SHF_PRIVATE,
1009 ".dynstrtab",
1010 ".dynhashtab", SHF_PRIVATE);
1011 s->alacarte_link = 1;
1012 s->nocommon = 1;
1014 #ifdef CHAR_IS_UNSIGNED
1015 s->char_is_unsigned = 1;
1016 #endif
1017 /* enable this if you want symbols with leading underscore on windows: */
1018 #if defined(TCC_TARGET_PE) && 0
1019 s->leading_underscore = 1;
1020 #endif
1021 if (s->section_align == 0)
1022 s->section_align = ELF_PAGE_SIZE;
1023 #ifdef TCC_TARGET_I386
1024 s->seg_size = 32;
1025 #endif
1026 return s;
1029 LIBTCCAPI void tcc_delete(TCCState *s1)
1031 int i;
1033 tcc_cleanup();
1035 /* free all sections */
1036 for(i = 1; i < s1->nb_sections; i++)
1037 free_section(s1->sections[i]);
1038 dynarray_reset(&s1->sections, &s1->nb_sections);
1040 for(i = 0; i < s1->nb_priv_sections; i++)
1041 free_section(s1->priv_sections[i]);
1042 dynarray_reset(&s1->priv_sections, &s1->nb_priv_sections);
1044 /* free any loaded DLLs */
1045 for ( i = 0; i < s1->nb_loaded_dlls; i++) {
1046 DLLReference *ref = s1->loaded_dlls[i];
1047 if ( ref->handle )
1048 dlclose(ref->handle);
1051 /* free loaded dlls array */
1052 dynarray_reset(&s1->loaded_dlls, &s1->nb_loaded_dlls);
1054 /* free library paths */
1055 dynarray_reset(&s1->library_paths, &s1->nb_library_paths);
1056 dynarray_reset(&s1->crt_paths, &s1->nb_crt_paths);
1058 /* free include paths */
1059 dynarray_reset(&s1->cached_includes, &s1->nb_cached_includes);
1060 dynarray_reset(&s1->include_paths, &s1->nb_include_paths);
1061 dynarray_reset(&s1->sysinclude_paths, &s1->nb_sysinclude_paths);
1063 dynarray_reset(&s1->target_deps, &s1->nb_target_deps);
1065 tcc_free(s1->tcc_lib_path);
1067 #ifdef HAVE_SELINUX
1068 munmap (s1->write_mem, s1->mem_size);
1069 munmap (s1->runtime_mem, s1->mem_size);
1070 #else
1071 tcc_free(s1->runtime_mem);
1072 #endif
1073 tcc_free(s1);
1076 LIBTCCAPI int tcc_add_include_path(TCCState *s, const char *pathname)
1078 tcc_split_path(s, (void ***)&s->include_paths, &s->nb_include_paths, pathname);
1079 return 0;
1082 LIBTCCAPI int tcc_add_sysinclude_path(TCCState *s, const char *pathname)
1084 tcc_split_path(s, (void ***)&s->sysinclude_paths, &s->nb_sysinclude_paths, pathname);
1085 return 0;
1088 ST_FUNC int tcc_add_file_internal(TCCState *s1, const char *filename, int flags)
1090 const char *ext;
1091 ElfW(Ehdr) ehdr;
1092 int fd, ret, size;
1094 /* find source file type with extension */
1095 ext = tcc_fileextension(filename);
1096 if (ext[0])
1097 ext++;
1099 #ifdef CONFIG_TCC_ASM
1100 /* if .S file, define __ASSEMBLER__ like gcc does */
1101 if (!strcmp(ext, "S"))
1102 tcc_define_symbol(s1, "__ASSEMBLER__", NULL);
1103 #endif
1105 /* open the file */
1106 ret = tcc_open(s1, filename);
1107 if (ret < 0) {
1108 if (flags & AFF_PRINT_ERROR)
1109 tcc_error_noabort("file '%s' not found", filename);
1110 return ret;
1113 /* update target deps */
1114 dynarray_add((void ***)&s1->target_deps, &s1->nb_target_deps,
1115 tcc_strdup(filename));
1117 if (flags & AFF_PREPROCESS) {
1118 ret = tcc_preprocess(s1);
1119 goto the_end;
1122 if (!ext[0] || !PATHCMP(ext, "c")) {
1123 /* C file assumed */
1124 ret = tcc_compile(s1);
1125 goto the_end;
1128 #ifdef CONFIG_TCC_ASM
1129 if (!strcmp(ext, "S")) {
1130 /* preprocessed assembler */
1131 ret = tcc_assemble(s1, 1);
1132 goto the_end;
1135 if (!strcmp(ext, "s")) {
1136 /* non preprocessed assembler */
1137 ret = tcc_assemble(s1, 0);
1138 goto the_end;
1140 #endif
1142 fd = file->fd;
1143 /* assume executable format: auto guess file type */
1144 size = read(fd, &ehdr, sizeof(ehdr));
1145 lseek(fd, 0, SEEK_SET);
1146 if (size <= 0) {
1147 tcc_error_noabort("could not read header");
1148 goto the_end;
1151 if (size == sizeof(ehdr) &&
1152 ehdr.e_ident[0] == ELFMAG0 &&
1153 ehdr.e_ident[1] == ELFMAG1 &&
1154 ehdr.e_ident[2] == ELFMAG2 &&
1155 ehdr.e_ident[3] == ELFMAG3) {
1157 /* do not display line number if error */
1158 file->line_num = 0;
1159 if (ehdr.e_type == ET_REL) {
1160 ret = tcc_load_object_file(s1, fd, 0);
1161 goto the_end;
1164 #ifndef TCC_TARGET_PE
1165 if (ehdr.e_type == ET_DYN) {
1166 if (s1->output_type == TCC_OUTPUT_MEMORY) {
1167 #ifdef TCC_IS_NATIVE
1168 void *h;
1169 h = dlopen(filename, RTLD_GLOBAL | RTLD_LAZY);
1170 if (h)
1171 #endif
1172 ret = 0;
1173 } else {
1174 ret = tcc_load_dll(s1, fd, filename,
1175 (flags & AFF_REFERENCED_DLL) != 0);
1177 goto the_end;
1179 #endif
1180 tcc_error_noabort("unrecognized ELF file");
1181 goto the_end;
1184 if (memcmp((char *)&ehdr, ARMAG, 8) == 0) {
1185 file->line_num = 0; /* do not display line number if error */
1186 ret = tcc_load_archive(s1, fd);
1187 goto the_end;
1190 #ifdef TCC_TARGET_COFF
1191 if (*(uint16_t *)(&ehdr) == COFF_C67_MAGIC) {
1192 ret = tcc_load_coff(s1, fd);
1193 goto the_end;
1195 #endif
1197 #ifdef TCC_TARGET_PE
1198 ret = pe_load_file(s1, filename, fd);
1199 #else
1200 /* as GNU ld, consider it is an ld script if not recognized */
1201 ret = tcc_load_ldscript(s1);
1202 #endif
1203 if (ret < 0)
1204 tcc_error_noabort("unrecognized file type");
1206 the_end:
1207 tcc_close();
1208 return ret;
1211 LIBTCCAPI int tcc_add_file(TCCState *s, const char *filename)
1213 if (s->output_type == TCC_OUTPUT_PREPROCESS)
1214 return tcc_add_file_internal(s, filename, AFF_PRINT_ERROR | AFF_PREPROCESS);
1215 else
1216 return tcc_add_file_internal(s, filename, AFF_PRINT_ERROR);
1219 LIBTCCAPI int tcc_add_library_path(TCCState *s, const char *pathname)
1221 tcc_split_path(s, (void ***)&s->library_paths, &s->nb_library_paths, pathname);
1222 return 0;
1225 static int tcc_add_library_internal(TCCState *s, const char *fmt,
1226 const char *filename, int flags, char **paths, int nb_paths)
1228 char buf[1024];
1229 int i;
1231 for(i = 0; i < nb_paths; i++) {
1232 snprintf(buf, sizeof(buf), fmt, paths[i], filename);
1233 if (tcc_add_file_internal(s, buf, flags) == 0)
1234 return 0;
1236 return -1;
1239 #ifndef TCC_TARGET_PE
1240 /* find and load a dll. Return non zero if not found */
1241 /* XXX: add '-rpath' option support ? */
1242 ST_FUNC int tcc_add_dll(TCCState *s, const char *filename, int flags)
1244 return tcc_add_library_internal(s, "%s/%s", filename, flags,
1245 s->library_paths, s->nb_library_paths);
1247 #endif
1249 ST_FUNC int tcc_add_crt(TCCState *s, const char *filename)
1251 if (-1 == tcc_add_library_internal(s, "%s/%s",
1252 filename, 0, s->crt_paths, s->nb_crt_paths))
1253 tcc_error_noabort("file '%s' not found", filename);
1254 return 0;
1257 /* the library name is the same as the argument of the '-l' option */
1258 LIBTCCAPI int tcc_add_library(TCCState *s, const char *libraryname)
1260 #ifdef TCC_TARGET_PE
1261 const char *libs[] = { "%s/%s.def", "%s/lib%s.def", "%s/%s.dll", "%s/lib%s.dll", "%s/lib%s.a", NULL };
1262 const char **pp = s->static_link ? libs + 4 : libs;
1263 #else
1264 const char *libs[] = { "%s/lib%s.so", "%s/lib%s.a", NULL };
1265 const char **pp = s->static_link ? libs + 1 : libs;
1266 #endif
1267 while (*pp) {
1268 if (0 == tcc_add_library_internal(s, *pp,
1269 libraryname, 0, s->library_paths, s->nb_library_paths))
1270 return 0;
1271 ++pp;
1273 return -1;
1276 LIBTCCAPI int tcc_add_symbol(TCCState *s, const char *name, const void *val)
1278 #ifdef TCC_TARGET_PE
1279 pe_putimport(s, 0, name, (uintptr_t)val);
1280 #else
1281 add_elf_sym(symtab_section, (uintptr_t)val, 0,
1282 ELFW(ST_INFO)(STB_GLOBAL, STT_NOTYPE), 0,
1283 SHN_ABS, name);
1284 #endif
1285 return 0;
1288 LIBTCCAPI int tcc_set_output_type(TCCState *s, int output_type)
1290 s->output_type = output_type;
1292 if (!s->nostdinc) {
1293 /* default include paths */
1294 /* -isystem paths have already been handled */
1295 tcc_add_sysinclude_path(s, CONFIG_TCC_SYSINCLUDEPATHS);
1298 /* if bound checking, then add corresponding sections */
1299 #ifdef CONFIG_TCC_BCHECK
1300 if (s->do_bounds_check) {
1301 /* define symbol */
1302 tcc_define_symbol(s, "__BOUNDS_CHECKING_ON", NULL);
1303 /* create bounds sections */
1304 bounds_section = new_section(s, ".bounds",
1305 SHT_PROGBITS, SHF_ALLOC);
1306 lbounds_section = new_section(s, ".lbounds",
1307 SHT_PROGBITS, SHF_ALLOC);
1309 #endif
1311 if (s->char_is_unsigned) {
1312 tcc_define_symbol(s, "__CHAR_UNSIGNED__", NULL);
1315 /* add debug sections */
1316 if (s->do_debug) {
1317 /* stab symbols */
1318 stab_section = new_section(s, ".stab", SHT_PROGBITS, 0);
1319 stab_section->sh_entsize = sizeof(Stab_Sym);
1320 stabstr_section = new_section(s, ".stabstr", SHT_STRTAB, 0);
1321 put_elf_str(stabstr_section, "");
1322 stab_section->link = stabstr_section;
1323 /* put first entry */
1324 put_stabs("", 0, 0, 0, 0);
1327 #ifdef TCC_TARGET_PE
1328 tcc_add_library_path(s, CONFIG_TCC_LIBPATHS);
1329 # ifdef _WIN32
1330 tcc_add_systemdir(s);
1331 # endif
1332 #else
1333 /* add libc crt1/crti objects */
1334 if ((output_type == TCC_OUTPUT_EXE || output_type == TCC_OUTPUT_DLL) &&
1335 !s->nostdlib) {
1336 if (output_type != TCC_OUTPUT_DLL)
1337 tcc_add_crt(s, "crt1.o");
1338 tcc_add_crt(s, "crti.o");
1340 #endif
1341 return 0;
1344 #define WD_ALL 0x0001 /* warning is activated when using -Wall */
1345 #define FD_INVERT 0x0002 /* invert value before storing */
1347 typedef struct FlagDef {
1348 uint16_t offset;
1349 uint16_t flags;
1350 const char *name;
1351 } FlagDef;
1353 static const FlagDef warning_defs[] = {
1354 { offsetof(TCCState, warn_unsupported), 0, "unsupported" },
1355 { offsetof(TCCState, warn_write_strings), 0, "write-strings" },
1356 { offsetof(TCCState, warn_error), 0, "error" },
1357 { offsetof(TCCState, warn_implicit_function_declaration), WD_ALL,
1358 "implicit-function-declaration" },
1361 ST_FUNC int set_flag(TCCState *s, const FlagDef *flags, int nb_flags,
1362 const char *name, int value)
1364 int i;
1365 const FlagDef *p;
1366 const char *r;
1368 r = name;
1369 if (r[0] == 'n' && r[1] == 'o' && r[2] == '-') {
1370 r += 3;
1371 value = !value;
1373 for(i = 0, p = flags; i < nb_flags; i++, p++) {
1374 if (!strcmp(r, p->name))
1375 goto found;
1377 return -1;
1378 found:
1379 if (p->flags & FD_INVERT)
1380 value = !value;
1381 *(int *)((uint8_t *)s + p->offset) = value;
1382 return 0;
1385 /* enable debug */
1386 LIBTCCAPI void tcc_enable_debug(TCCState *s)
1388 s->do_debug = 1;
1391 /* set/reset a warning */
1392 LIBTCCAPI int tcc_set_warning(TCCState *s, const char *warning_name, int value)
1394 int i;
1395 const FlagDef *p;
1397 if (!strcmp(warning_name, "all")) {
1398 for(i = 0, p = warning_defs; i < countof(warning_defs); i++, p++) {
1399 if (p->flags & WD_ALL)
1400 *(int *)((uint8_t *)s + p->offset) = 1;
1402 return 0;
1403 } else {
1404 return set_flag(s, warning_defs, countof(warning_defs),
1405 warning_name, value);
1409 static const FlagDef flag_defs[] = {
1410 { offsetof(TCCState, char_is_unsigned), 0, "unsigned-char" },
1411 { offsetof(TCCState, char_is_unsigned), FD_INVERT, "signed-char" },
1412 { offsetof(TCCState, nocommon), FD_INVERT, "common" },
1413 { offsetof(TCCState, leading_underscore), 0, "leading-underscore" },
1416 /* set/reset a flag */
1417 PUB_FUNC int tcc_set_flag(TCCState *s, const char *flag_name, int value)
1419 return set_flag(s, flag_defs, countof(flag_defs),
1420 flag_name, value);
1424 static int strstart(const char *str, const char *val, char **ptr)
1426 const char *p, *q;
1427 p = str;
1428 q = val;
1429 while (*q != '\0') {
1430 if (*p != *q)
1431 return 0;
1432 p++;
1433 q++;
1435 if (ptr)
1436 *ptr = (char *) p;
1437 return 1;
1441 /* Like strstart, but automatically takes into account that ld options can
1443 * - start with double or single dash (e.g. '--soname' or '-soname')
1444 * - arguments can be given as separate or after '=' (e.g. '-Wl,-soname,x.so'
1445 * or '-Wl,-soname=x.so')
1447 * you provide `val` always in 'option[=]' form (no leading -)
1449 static int link_option(const char *str, const char *val, char **ptr)
1451 const char *p, *q;
1453 /* there should be 1 or 2 dashes */
1454 if (*str++ != '-')
1455 return 0;
1456 if (*str == '-')
1457 str++;
1459 /* then str & val should match (potentialy up to '=') */
1460 p = str;
1461 q = val;
1463 while (*q != '\0' && *q != '=') {
1464 if (*p != *q)
1465 return 0;
1466 p++;
1467 q++;
1470 /* '=' near eos means ',' or '=' is ok */
1471 if (*q == '=') {
1472 if (*p != ',' && *p != '=')
1473 return 0;
1474 p++;
1475 q++;
1478 if (ptr)
1479 *ptr = (char *) p;
1480 return 1;
1484 /* set linker options */
1485 PUB_FUNC const char * tcc_set_linker(TCCState *s, char *option, int multi)
1487 char *p = option;
1488 char *end;
1490 while (option && *option) {
1491 end = NULL;
1492 if (link_option(option, "Bsymbolic", &p)) {
1493 s->symbolic = 1;
1494 } else if (link_option(option, "nostdlib", &p)) {
1495 s->nostdlib = 1;
1496 } else if (link_option(option, "fini=", &p)) {
1497 s->fini_symbol = p;
1498 if (s->warn_unsupported)
1499 tcc_warning("ignoring -fini %s", p);
1500 } else if (link_option(option, "image-base=", &p)) {
1501 s->text_addr = strtoull(p, &end, 16);
1502 s->has_text_addr = 1;
1503 } else if (link_option(option, "init=", &p)) {
1504 s->init_symbol = p;
1505 if (s->warn_unsupported)
1506 tcc_warning("ignoring -init %s", p);
1507 } else if (link_option(option, "oformat=", &p)) {
1508 #if defined(TCC_TARGET_PE)
1509 if (strstart(p, "pe-", NULL)) {
1510 #else
1511 #if defined(TCC_TARGET_X86_64)
1512 if (strstart(p, "elf64-", NULL)) {
1513 #else
1514 if (strstart(p, "elf32-", NULL)) {
1515 #endif
1516 #endif
1517 s->output_format = TCC_OUTPUT_FORMAT_ELF;
1518 } else if (!strcmp(p, "binary")) {
1519 s->output_format = TCC_OUTPUT_FORMAT_BINARY;
1520 } else
1521 #ifdef TCC_TARGET_COFF
1522 if (!strcmp(p, "coff")) {
1523 s->output_format = TCC_OUTPUT_FORMAT_COFF;
1524 } else
1525 #endif
1527 return p;
1530 } else if (link_option(option, "rpath=", &p)) {
1531 s->rpath = p;
1532 } else if (link_option(option, "section-alignment=", &p)) {
1533 s->section_align = strtoul(p, &end, 16);
1534 } else if (link_option(option, "soname=", &p)) {
1535 s->soname = p;
1536 multi = 0;
1537 #ifdef TCC_TARGET_PE
1538 } else if (link_option(option, "file-alignment=", &p)) {
1539 s->pe_file_align = strtoul(p, &end, 16);
1540 } else if (link_option(option, "stack=", &p)) {
1541 s->pe_stack_size = strtoul(p, &end, 10);
1542 } else if (link_option(option, "subsystem=", &p)) {
1543 #if defined(TCC_TARGET_I386) || defined(TCC_TARGET_X86_64)
1544 if (!strcmp(p, "native")) {
1545 s->pe_subsystem = 1;
1546 } else if (!strcmp(p, "console")) {
1547 s->pe_subsystem = 3;
1548 } else if (!strcmp(p, "gui")) {
1549 s->pe_subsystem = 2;
1550 } else if (!strcmp(p, "posix")) {
1551 s->pe_subsystem = 7;
1552 } else if (!strcmp(p, "efiapp")) {
1553 s->pe_subsystem = 10;
1554 } else if (!strcmp(p, "efiboot")) {
1555 s->pe_subsystem = 11;
1556 } else if (!strcmp(p, "efiruntime")) {
1557 s->pe_subsystem = 12;
1558 } else if (!strcmp(p, "efirom")) {
1559 s->pe_subsystem = 13;
1560 #elif defined(TCC_TARGET_ARM)
1561 if (!strcmp(p, "wince")) {
1562 s->pe_subsystem = 9;
1563 #endif
1564 } else {
1565 return p;
1567 #endif
1569 } else if (link_option(option, "Ttext=", &p)) {
1570 s->text_addr = strtoull(p, &end, 16);
1571 s->has_text_addr = 1;
1572 } else {
1573 char *comma_ptr = strchr(option, ',');
1574 if (comma_ptr)
1575 *comma_ptr = '\0';
1576 return option;
1579 if (multi) {
1580 option = NULL;
1581 p = strchr( (end) ? end : p, ',');
1582 if (p) {
1583 *p = 0; /* terminate last option */
1584 option = ++p;
1586 } else
1587 option = NULL;
1589 return NULL;
1592 /* set CONFIG_TCCDIR at runtime */
1593 LIBTCCAPI void tcc_set_lib_path(TCCState *s, const char *path)
1595 tcc_free(s->tcc_lib_path);
1596 s->tcc_lib_path = tcc_strdup(path);
1599 PUB_FUNC char *tcc_default_target(TCCState *s, const char *default_file)
1601 char buf[1024];
1602 char *ext;
1603 const char *name = "a";
1605 if (default_file && strcmp(default_file, "-"))
1606 name = tcc_basename(default_file);
1607 pstrcpy(buf, sizeof(buf), name);
1608 ext = tcc_fileextension(buf);
1609 #ifdef TCC_TARGET_PE
1610 if (s->output_type == TCC_OUTPUT_DLL)
1611 strcpy(ext, ".dll");
1612 else
1613 if (s->output_type == TCC_OUTPUT_EXE)
1614 strcpy(ext, ".exe");
1615 else
1616 #endif
1617 if (( (s->output_type == TCC_OUTPUT_OBJ && !s->reloc_output) ||
1618 (s->output_type == TCC_OUTPUT_PREPROCESS) )
1619 && *ext)
1620 strcpy(ext, ".o");
1621 else
1622 strcpy(buf, "a.out");
1624 return tcc_strdup(buf);
1628 PUB_FUNC void tcc_gen_makedeps(TCCState *s, const char *target, const char *filename)
1630 FILE *depout;
1631 char buf[1024], *ext;
1632 int i;
1634 if (!filename) {
1635 /* compute filename automatically
1636 * dir/file.o -> dir/file.d */
1637 pstrcpy(buf, sizeof(buf), target);
1638 ext = tcc_fileextension(buf);
1639 pstrcpy(ext, sizeof(buf) - (ext-buf), ".d");
1640 filename = buf;
1643 if (s->verbose)
1644 printf("<- %s\n", filename);
1646 /* XXX return err codes instead of error() ? */
1647 depout = fopen(filename, "w");
1648 if (!depout)
1649 tcc_error("could not open '%s'", filename);
1651 fprintf(depout, "%s : \\\n", target);
1652 for (i=0; i<s->nb_target_deps; ++i)
1653 fprintf(depout, " %s \\\n", s->target_deps[i]);
1654 fprintf(depout, "\n");
1655 fclose(depout);
1658 PUB_FUNC void tcc_print_stats(TCCState *s, int64_t total_time)
1660 double tt;
1661 tt = (double)total_time / 1000000.0;
1662 if (tt < 0.001)
1663 tt = 0.001;
1664 if (total_bytes < 1)
1665 total_bytes = 1;
1666 printf("%d idents, %d lines, %d bytes, %0.3f s, %d lines/s, %0.1f MB/s\n",
1667 tok_ident - TOK_IDENT, total_lines, total_bytes,
1668 tt, (int)(total_lines / tt),
1669 total_bytes / tt / 1000000.0);
1672 static void print_paths(const char *msg, char **paths, int nb_paths)
1674 int i;
1675 printf("%s:\n%s", msg, nb_paths ? "" : " -\n");
1676 for(i = 0; i < nb_paths; i++)
1677 printf(" %s\n", paths[i]);
1680 PUB_FUNC void tcc_display_info(TCCState *s, int what)
1682 switch (what) {
1683 case 0:
1684 printf("tcc version %s ("
1685 #ifdef TCC_TARGET_I386
1686 "i386"
1687 # ifdef TCC_TARGET_PE
1688 " Win32"
1689 # endif
1690 #elif defined TCC_TARGET_X86_64
1691 "x86-64"
1692 # ifdef TCC_TARGET_PE
1693 " Win64"
1694 # endif
1695 #elif defined TCC_TARGET_ARM
1696 "ARM"
1697 # ifdef TCC_ARM_HARDFLOAT
1698 " Hard Float"
1699 # endif
1700 # ifdef TCC_TARGET_PE
1701 " WinCE"
1702 # endif
1703 #endif
1704 #ifndef TCC_TARGET_PE
1705 # ifdef __linux
1706 " Linux"
1707 # endif
1708 #endif
1709 ")\n", TCC_VERSION);
1710 break;
1711 case 1:
1712 printf("install: %s/\n", s->tcc_lib_path);
1713 /* print_paths("programs", NULL, 0); */
1714 print_paths("crt", s->crt_paths, s->nb_crt_paths);
1715 print_paths("libraries", s->library_paths, s->nb_library_paths);
1716 print_paths("include", s->sysinclude_paths, s->nb_sysinclude_paths);
1717 break;