libtcc: tcc_get_symbol uses the TCCState parameter
[tinycc.git] / libtcc.c
blobc6b8d382a8ff1415cca24c0cad12aa6fd0f20a70
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 static void tcc_add_systemdir(TCCState *s)
110 char buf[1000];
111 GetSystemDirectory(buf, sizeof buf);
112 tcc_add_library_path(s, normalize_slashes(buf));
115 #ifndef CONFIG_TCC_STATIC
116 void dlclose(void *p)
118 FreeLibrary((HMODULE)p);
120 #endif
122 #ifdef LIBTCC_AS_DLL
123 BOOL WINAPI DllMain (HANDLE hDll, DWORD dwReason, LPVOID lpReserved)
125 if (DLL_PROCESS_ATTACH == dwReason)
126 tcc_module = hDll;
127 return TRUE;
129 #endif
130 #endif
132 /********************************************************/
133 /* copy a string and truncate it. */
134 PUB_FUNC char *pstrcpy(char *buf, int buf_size, const char *s)
136 char *q, *q_end;
137 int c;
139 if (buf_size > 0) {
140 q = buf;
141 q_end = buf + buf_size - 1;
142 while (q < q_end) {
143 c = *s++;
144 if (c == '\0')
145 break;
146 *q++ = c;
148 *q = '\0';
150 return buf;
153 /* strcat and truncate. */
154 PUB_FUNC char *pstrcat(char *buf, int buf_size, const char *s)
156 int len;
157 len = strlen(buf);
158 if (len < buf_size)
159 pstrcpy(buf + len, buf_size - len, s);
160 return buf;
163 PUB_FUNC char *pstrncpy(char *out, const char *in, size_t num)
165 memcpy(out, in, num);
166 out[num] = '\0';
167 return out;
170 /* extract the basename of a file */
171 PUB_FUNC char *tcc_basename(const char *name)
173 char *p = strchr(name, 0);
174 while (p > name && !IS_DIRSEP(p[-1]))
175 --p;
176 return p;
179 /* extract extension part of a file
181 * (if no extension, return pointer to end-of-string)
183 PUB_FUNC char *tcc_fileextension (const char *name)
185 char *b = tcc_basename(name);
186 char *e = strrchr(b, '.');
187 return e ? e : strchr(b, 0);
190 /********************************************************/
191 /* memory management */
193 #undef free
194 #undef malloc
195 #undef realloc
197 #ifdef MEM_DEBUG
198 int mem_cur_size;
199 int mem_max_size;
200 unsigned malloc_usable_size(void*);
201 #endif
203 PUB_FUNC void tcc_free(void *ptr)
205 #ifdef MEM_DEBUG
206 mem_cur_size -= malloc_usable_size(ptr);
207 #endif
208 free(ptr);
211 PUB_FUNC void *tcc_malloc(unsigned long size)
213 void *ptr;
214 ptr = malloc(size);
215 if (!ptr && size)
216 tcc_error("memory full");
217 #ifdef MEM_DEBUG
218 mem_cur_size += malloc_usable_size(ptr);
219 if (mem_cur_size > mem_max_size)
220 mem_max_size = mem_cur_size;
221 #endif
222 return ptr;
225 PUB_FUNC void *tcc_mallocz(unsigned long size)
227 void *ptr;
228 ptr = tcc_malloc(size);
229 memset(ptr, 0, size);
230 return ptr;
233 PUB_FUNC void *tcc_realloc(void *ptr, unsigned long size)
235 void *ptr1;
236 #ifdef MEM_DEBUG
237 mem_cur_size -= malloc_usable_size(ptr);
238 #endif
239 ptr1 = realloc(ptr, size);
240 if (!ptr1 && size)
241 tcc_error("memory full");
242 #ifdef MEM_DEBUG
243 /* NOTE: count not correct if alloc error, but not critical */
244 mem_cur_size += malloc_usable_size(ptr1);
245 if (mem_cur_size > mem_max_size)
246 mem_max_size = mem_cur_size;
247 #endif
248 return ptr1;
251 PUB_FUNC char *tcc_strdup(const char *str)
253 char *ptr;
254 ptr = tcc_malloc(strlen(str) + 1);
255 strcpy(ptr, str);
256 return ptr;
259 PUB_FUNC void tcc_memstats(void)
261 #ifdef MEM_DEBUG
262 printf("memory in use: %d\n", mem_cur_size);
263 #endif
266 #define free(p) use_tcc_free(p)
267 #define malloc(s) use_tcc_malloc(s)
268 #define realloc(p, s) use_tcc_realloc(p, s)
270 /********************************************************/
271 /* dynarrays */
273 PUB_FUNC void dynarray_add(void ***ptab, int *nb_ptr, void *data)
275 int nb, nb_alloc;
276 void **pp;
278 nb = *nb_ptr;
279 pp = *ptab;
280 /* every power of two we double array size */
281 if ((nb & (nb - 1)) == 0) {
282 if (!nb)
283 nb_alloc = 1;
284 else
285 nb_alloc = nb * 2;
286 pp = tcc_realloc(pp, nb_alloc * sizeof(void *));
287 *ptab = pp;
289 pp[nb++] = data;
290 *nb_ptr = nb;
293 PUB_FUNC void dynarray_reset(void *pp, int *n)
295 void **p;
296 for (p = *(void***)pp; *n; ++p, --*n)
297 if (*p)
298 tcc_free(*p);
299 tcc_free(*(void**)pp);
300 *(void**)pp = NULL;
303 static void tcc_split_path(TCCState *s, void ***p_ary, int *p_nb_ary, const char *in)
305 const char *p;
306 do {
307 int c;
308 CString str;
310 cstr_new(&str);
311 for (p = in; c = *p, c != '\0' && c != PATHSEP; ++p) {
312 if (c == '{' && p[1] && p[2] == '}') {
313 c = p[1], p += 2;
314 if (c == 'B')
315 cstr_cat(&str, s->tcc_lib_path);
316 } else {
317 cstr_ccat(&str, c);
320 cstr_ccat(&str, '\0');
321 dynarray_add(p_ary, p_nb_ary, str.data);
322 in = p+1;
323 } while (*p);
326 /********************************************************/
328 ST_FUNC Section *new_section(TCCState *s1, const char *name, int sh_type, int sh_flags)
330 Section *sec;
332 sec = tcc_mallocz(sizeof(Section) + strlen(name));
333 strcpy(sec->name, name);
334 sec->sh_type = sh_type;
335 sec->sh_flags = sh_flags;
336 switch(sh_type) {
337 case SHT_HASH:
338 case SHT_REL:
339 case SHT_RELA:
340 case SHT_DYNSYM:
341 case SHT_SYMTAB:
342 case SHT_DYNAMIC:
343 sec->sh_addralign = 4;
344 break;
345 case SHT_STRTAB:
346 sec->sh_addralign = 1;
347 break;
348 default:
349 sec->sh_addralign = 32; /* default conservative alignment */
350 break;
353 if (sh_flags & SHF_PRIVATE) {
354 dynarray_add((void ***)&s1->priv_sections, &s1->nb_priv_sections, sec);
355 } else {
356 sec->sh_num = s1->nb_sections;
357 dynarray_add((void ***)&s1->sections, &s1->nb_sections, sec);
360 return sec;
363 static void free_section(Section *s)
365 tcc_free(s->data);
368 /* realloc section and set its content to zero */
369 ST_FUNC void section_realloc(Section *sec, unsigned long new_size)
371 unsigned long size;
372 unsigned char *data;
374 size = sec->data_allocated;
375 if (size == 0)
376 size = 1;
377 while (size < new_size)
378 size = size * 2;
379 data = tcc_realloc(sec->data, size);
380 memset(data + sec->data_allocated, 0, size - sec->data_allocated);
381 sec->data = data;
382 sec->data_allocated = size;
385 /* reserve at least 'size' bytes in section 'sec' from
386 sec->data_offset. */
387 ST_FUNC void *section_ptr_add(Section *sec, unsigned long size)
389 unsigned long offset, offset1;
391 offset = sec->data_offset;
392 offset1 = offset + size;
393 if (offset1 > sec->data_allocated)
394 section_realloc(sec, offset1);
395 sec->data_offset = offset1;
396 return sec->data + offset;
399 /* reserve at least 'size' bytes from section start */
400 ST_FUNC void section_reserve(Section *sec, unsigned long size)
402 if (size > sec->data_allocated)
403 section_realloc(sec, size);
404 if (size > sec->data_offset)
405 sec->data_offset = size;
408 /* return a reference to a section, and create it if it does not
409 exists */
410 ST_FUNC Section *find_section(TCCState *s1, const char *name)
412 Section *sec;
413 int i;
414 for(i = 1; i < s1->nb_sections; i++) {
415 sec = s1->sections[i];
416 if (!strcmp(name, sec->name))
417 return sec;
419 /* sections are created as PROGBITS */
420 return new_section(s1, name, SHT_PROGBITS, SHF_ALLOC);
423 /* update sym->c so that it points to an external symbol in section
424 'section' with value 'value' */
425 ST_FUNC void put_extern_sym2(Sym *sym, Section *section,
426 uplong value, unsigned long size,
427 int can_add_underscore)
429 int sym_type, sym_bind, sh_num, info, other;
430 ElfW(Sym) *esym;
431 const char *name;
432 char buf1[256];
434 if (section == NULL)
435 sh_num = SHN_UNDEF;
436 else if (section == SECTION_ABS)
437 sh_num = SHN_ABS;
438 else
439 sh_num = section->sh_num;
441 if ((sym->type.t & VT_BTYPE) == VT_FUNC) {
442 sym_type = STT_FUNC;
443 } else if ((sym->type.t & VT_BTYPE) == VT_VOID) {
444 sym_type = STT_NOTYPE;
445 } else {
446 sym_type = STT_OBJECT;
449 if (sym->type.t & VT_STATIC)
450 sym_bind = STB_LOCAL;
451 else {
452 if (sym->type.t & VT_WEAK)
453 sym_bind = STB_WEAK;
454 else
455 sym_bind = STB_GLOBAL;
458 if (!sym->c) {
459 name = get_tok_str(sym->v, NULL);
460 #ifdef CONFIG_TCC_BCHECK
461 if (tcc_state->do_bounds_check) {
462 char buf[32];
464 /* XXX: avoid doing that for statics ? */
465 /* if bound checking is activated, we change some function
466 names by adding the "__bound" prefix */
467 switch(sym->v) {
468 #ifdef TCC_TARGET_PE
469 /* XXX: we rely only on malloc hooks */
470 case TOK_malloc:
471 case TOK_free:
472 case TOK_realloc:
473 case TOK_memalign:
474 case TOK_calloc:
475 #endif
476 case TOK_memcpy:
477 case TOK_memmove:
478 case TOK_memset:
479 case TOK_strlen:
480 case TOK_strcpy:
481 case TOK_alloca:
482 strcpy(buf, "__bound_");
483 strcat(buf, name);
484 name = buf;
485 break;
488 #endif
489 other = 0;
491 #ifdef TCC_TARGET_PE
492 if (sym->type.t & VT_EXPORT)
493 other |= 1;
494 if (sym_type == STT_FUNC && sym->type.ref) {
495 int attr = sym->type.ref->r;
496 if (FUNC_EXPORT(attr))
497 other |= 1;
498 if (FUNC_CALL(attr) == FUNC_STDCALL && can_add_underscore) {
499 sprintf(buf1, "_%s@%d", name, FUNC_ARGS(attr) * PTR_SIZE);
500 name = buf1;
501 other |= 2;
502 can_add_underscore = 0;
504 } else {
505 if (find_elf_sym(tcc_state->dynsymtab_section, name))
506 other |= 4;
507 if (sym->type.t & VT_IMPORT)
508 other |= 4;
510 #endif
511 if (tcc_state->leading_underscore && can_add_underscore) {
512 buf1[0] = '_';
513 pstrcpy(buf1 + 1, sizeof(buf1) - 1, name);
514 name = buf1;
516 if (sym->asm_label) {
517 name = sym->asm_label;
519 info = ELFW(ST_INFO)(sym_bind, sym_type);
520 sym->c = add_elf_sym(symtab_section, value, size, info, other, sh_num, name);
521 } else {
522 esym = &((ElfW(Sym) *)symtab_section->data)[sym->c];
523 esym->st_value = value;
524 esym->st_size = size;
525 esym->st_shndx = sh_num;
529 ST_FUNC void put_extern_sym(Sym *sym, Section *section,
530 uplong value, unsigned long size)
532 put_extern_sym2(sym, section, value, size, 1);
535 /* add a new relocation entry to symbol 'sym' in section 's' */
536 ST_FUNC void greloc(Section *s, Sym *sym, unsigned long offset, int type)
538 int c = 0;
539 if (sym) {
540 if (0 == sym->c)
541 put_extern_sym(sym, NULL, 0, 0);
542 c = sym->c;
544 /* now we can add ELF relocation info */
545 put_elf_reloc(symtab_section, s, offset, type, c);
548 /********************************************************/
550 static void strcat_vprintf(char *buf, int buf_size, const char *fmt, va_list ap)
552 int len;
553 len = strlen(buf);
554 vsnprintf(buf + len, buf_size - len, fmt, ap);
557 static void strcat_printf(char *buf, int buf_size, const char *fmt, ...)
559 va_list ap;
560 va_start(ap, fmt);
561 strcat_vprintf(buf, buf_size, fmt, ap);
562 va_end(ap);
565 static void error1(TCCState *s1, int is_warning, const char *fmt, va_list ap)
567 char buf[2048];
568 BufferedFile **f;
570 buf[0] = '\0';
571 if (file) {
572 for(f = s1->include_stack; f < s1->include_stack_ptr; f++)
573 strcat_printf(buf, sizeof(buf), "In file included from %s:%d:\n",
574 (*f)->filename, (*f)->line_num);
575 if (file->line_num > 0) {
576 strcat_printf(buf, sizeof(buf),
577 "%s:%d: ", file->filename, file->line_num);
578 } else {
579 strcat_printf(buf, sizeof(buf),
580 "%s: ", file->filename);
582 } else {
583 strcat_printf(buf, sizeof(buf),
584 "tcc: ");
586 if (is_warning)
587 strcat_printf(buf, sizeof(buf), "warning: ");
588 else
589 strcat_printf(buf, sizeof(buf), "error: ");
590 strcat_vprintf(buf, sizeof(buf), fmt, ap);
592 if (!s1->error_func) {
593 /* default case: stderr */
594 fprintf(stderr, "%s\n", buf);
595 } else {
596 s1->error_func(s1->error_opaque, buf);
598 if (!is_warning || s1->warn_error)
599 s1->nb_errors++;
602 LIBTCCAPI void tcc_set_error_func(TCCState *s, void *error_opaque,
603 void (*error_func)(void *opaque, const char *msg))
605 s->error_opaque = error_opaque;
606 s->error_func = error_func;
609 /* error without aborting current compilation */
610 PUB_FUNC void tcc_error_noabort(const char *fmt, ...)
612 TCCState *s1 = tcc_state;
613 va_list ap;
615 va_start(ap, fmt);
616 error1(s1, 0, fmt, ap);
617 va_end(ap);
620 PUB_FUNC void tcc_error(const char *fmt, ...)
622 TCCState *s1 = tcc_state;
623 va_list ap;
625 va_start(ap, fmt);
626 error1(s1, 0, fmt, ap);
627 va_end(ap);
628 /* better than nothing: in some cases, we accept to handle errors */
629 if (s1->error_set_jmp_enabled) {
630 longjmp(s1->error_jmp_buf, 1);
631 } else {
632 /* XXX: eliminate this someday */
633 exit(1);
637 PUB_FUNC void tcc_warning(const char *fmt, ...)
639 TCCState *s1 = tcc_state;
640 va_list ap;
642 if (s1->warn_none)
643 return;
645 va_start(ap, fmt);
646 error1(s1, 1, fmt, ap);
647 va_end(ap);
650 /********************************************************/
651 /* I/O layer */
653 ST_FUNC void tcc_open_bf(TCCState *s1, const char *filename, int initlen)
655 BufferedFile *bf;
656 int buflen = initlen ? initlen : IO_BUF_SIZE;
658 bf = tcc_malloc(sizeof(BufferedFile) + buflen);
659 bf->buf_ptr = bf->buffer;
660 bf->buf_end = bf->buffer + initlen;
661 bf->buf_end[0] = CH_EOB; /* put eob symbol */
662 pstrcpy(bf->filename, sizeof(bf->filename), filename);
663 #ifdef _WIN32
664 normalize_slashes(bf->filename);
665 #endif
666 bf->line_num = 1;
667 bf->ifndef_macro = 0;
668 bf->ifdef_stack_ptr = s1->ifdef_stack_ptr;
669 bf->fd = -1;
670 bf->prev = file;
671 file = bf;
674 ST_FUNC void tcc_close(void)
676 BufferedFile *bf = file;
677 if (bf->fd > 0) {
678 close(bf->fd);
679 total_lines += bf->line_num;
681 file = bf->prev;
682 tcc_free(bf);
685 ST_FUNC int tcc_open(TCCState *s1, const char *filename)
687 int fd;
688 if (strcmp(filename, "-") == 0)
689 fd = 0, filename = "stdin";
690 else
691 fd = open(filename, O_RDONLY | O_BINARY);
692 if ((s1->verbose == 2 && fd >= 0) || s1->verbose == 3)
693 printf("%s %*s%s\n", fd < 0 ? "nf":"->",
694 (int)(s1->include_stack_ptr - s1->include_stack), "", filename);
695 if (fd < 0)
696 return -1;
698 tcc_open_bf(s1, filename, 0);
699 file->fd = fd;
700 return fd;
703 /* compile the C file opened in 'file'. Return non zero if errors. */
704 static int tcc_compile(TCCState *s1)
706 Sym *define_start;
707 SValue *pvtop;
708 char buf[512];
709 volatile int section_sym;
711 #ifdef INC_DEBUG
712 printf("%s: **** new file\n", file->filename);
713 #endif
714 preprocess_init(s1);
716 cur_text_section = NULL;
717 funcname = "";
718 anon_sym = SYM_FIRST_ANOM;
720 /* file info: full path + filename */
721 section_sym = 0; /* avoid warning */
722 if (s1->do_debug) {
723 section_sym = put_elf_sym(symtab_section, 0, 0,
724 ELFW(ST_INFO)(STB_LOCAL, STT_SECTION), 0,
725 text_section->sh_num, NULL);
726 getcwd(buf, sizeof(buf));
727 #ifdef _WIN32
728 normalize_slashes(buf);
729 #endif
730 pstrcat(buf, sizeof(buf), "/");
731 put_stabs_r(buf, N_SO, 0, 0,
732 text_section->data_offset, text_section, section_sym);
733 put_stabs_r(file->filename, N_SO, 0, 0,
734 text_section->data_offset, text_section, section_sym);
736 /* an elf symbol of type STT_FILE must be put so that STB_LOCAL
737 symbols can be safely used */
738 put_elf_sym(symtab_section, 0, 0,
739 ELFW(ST_INFO)(STB_LOCAL, STT_FILE), 0,
740 SHN_ABS, file->filename);
742 /* define some often used types */
743 int_type.t = VT_INT;
745 char_pointer_type.t = VT_BYTE;
746 mk_pointer(&char_pointer_type);
748 func_old_type.t = VT_FUNC;
749 func_old_type.ref = sym_push(SYM_FIELD, &int_type, FUNC_CDECL, FUNC_OLD);
751 #if defined(TCC_ARM_EABI) && defined(TCC_ARM_VFP)
752 float_type.t = VT_FLOAT;
753 double_type.t = VT_DOUBLE;
755 func_float_type.t = VT_FUNC;
756 func_float_type.ref = sym_push(SYM_FIELD, &float_type, FUNC_CDECL, FUNC_OLD);
757 func_double_type.t = VT_FUNC;
758 func_double_type.ref = sym_push(SYM_FIELD, &double_type, FUNC_CDECL, FUNC_OLD);
759 #endif
761 #if 0
762 /* define 'void *alloca(unsigned int)' builtin function */
764 Sym *s1;
766 p = anon_sym++;
767 sym = sym_push(p, mk_pointer(VT_VOID), FUNC_CDECL, FUNC_NEW);
768 s1 = sym_push(SYM_FIELD, VT_UNSIGNED | VT_INT, 0, 0);
769 s1->next = NULL;
770 sym->next = s1;
771 sym_push(TOK_alloca, VT_FUNC | (p << VT_STRUCT_SHIFT), VT_CONST, 0);
773 #endif
775 define_start = define_stack;
776 nocode_wanted = 1;
778 if (setjmp(s1->error_jmp_buf) == 0) {
779 s1->nb_errors = 0;
780 s1->error_set_jmp_enabled = 1;
782 ch = file->buf_ptr[0];
783 tok_flags = TOK_FLAG_BOL | TOK_FLAG_BOF;
784 parse_flags = PARSE_FLAG_PREPROCESS | PARSE_FLAG_TOK_NUM;
785 pvtop = vtop;
786 next();
787 decl(VT_CONST);
788 if (tok != TOK_EOF)
789 expect("declaration");
790 if (pvtop != vtop)
791 tcc_warning("internal compiler error: vstack leak? (%d)", vtop - pvtop);
793 /* end of translation unit info */
794 if (s1->do_debug) {
795 put_stabs_r(NULL, N_SO, 0, 0,
796 text_section->data_offset, text_section, section_sym);
800 s1->error_set_jmp_enabled = 0;
802 /* reset define stack, but leave -Dsymbols (may be incorrect if
803 they are undefined) */
804 free_defines(define_start);
806 gen_inline_functions();
808 sym_pop(&global_stack, NULL);
809 sym_pop(&local_stack, NULL);
811 return s1->nb_errors != 0 ? -1 : 0;
814 LIBTCCAPI int tcc_compile_string(TCCState *s, const char *str)
816 int len, ret;
817 len = strlen(str);
819 tcc_open_bf(s, "<string>", len);
820 memcpy(file->buffer, str, len);
821 ret = tcc_compile(s);
822 tcc_close();
823 return ret;
826 /* define a preprocessor symbol. A value can also be provided with the '=' operator */
827 LIBTCCAPI void tcc_define_symbol(TCCState *s1, const char *sym, const char *value)
829 int len1, len2;
830 /* default value */
831 if (!value)
832 value = "1";
833 len1 = strlen(sym);
834 len2 = strlen(value);
836 /* init file structure */
837 tcc_open_bf(s1, "<define>", len1 + len2 + 1);
838 memcpy(file->buffer, sym, len1);
839 file->buffer[len1] = ' ';
840 memcpy(file->buffer + len1 + 1, value, len2);
842 /* parse with define parser */
843 ch = file->buf_ptr[0];
844 next_nomacro();
845 parse_define();
847 tcc_close();
850 /* undefine a preprocessor symbol */
851 LIBTCCAPI void tcc_undefine_symbol(TCCState *s1, const char *sym)
853 TokenSym *ts;
854 Sym *s;
855 ts = tok_alloc(sym, strlen(sym));
856 s = define_find(ts->tok);
857 /* undefine symbol by putting an invalid name */
858 if (s)
859 define_undef(s);
862 static void tcc_cleanup(void)
864 int i, n;
866 if (NULL == tcc_state)
867 return;
868 tcc_state = NULL;
870 /* free -D defines */
871 free_defines(NULL);
873 /* free tokens */
874 n = tok_ident - TOK_IDENT;
875 for(i = 0; i < n; i++)
876 tcc_free(table_ident[i]);
877 tcc_free(table_ident);
879 /* free sym_pools */
880 dynarray_reset(&sym_pools, &nb_sym_pools);
881 /* string buffer */
882 cstr_free(&tokcstr);
883 /* reset symbol stack */
884 sym_free_first = NULL;
885 /* cleanup from error/setjmp */
886 macro_ptr = NULL;
889 LIBTCCAPI TCCState *tcc_new(void)
891 TCCState *s;
892 char buffer[100];
893 int a,b,c;
895 tcc_cleanup();
897 s = tcc_mallocz(sizeof(TCCState));
898 if (!s)
899 return NULL;
900 tcc_state = s;
901 #ifdef _WIN32
902 tcc_set_lib_path_w32(s);
903 #else
904 tcc_set_lib_path(s, CONFIG_TCCDIR);
905 #endif
906 s->output_type = TCC_OUTPUT_MEMORY;
907 preprocess_new();
908 s->include_stack_ptr = s->include_stack;
910 /* we add dummy defines for some special macros to speed up tests
911 and to have working defined() */
912 define_push(TOK___LINE__, MACRO_OBJ, NULL, NULL);
913 define_push(TOK___FILE__, MACRO_OBJ, NULL, NULL);
914 define_push(TOK___DATE__, MACRO_OBJ, NULL, NULL);
915 define_push(TOK___TIME__, MACRO_OBJ, NULL, NULL);
917 /* standard defines */
918 tcc_define_symbol(s, "__STDC__", NULL);
919 tcc_define_symbol(s, "__STDC_VERSION__", "199901L");
920 #if defined(TCC_TARGET_I386)
921 tcc_define_symbol(s, "__i386__", NULL);
922 tcc_define_symbol(s, "__i386", NULL);
923 tcc_define_symbol(s, "i386", NULL);
924 #endif
925 #if defined(TCC_TARGET_X86_64)
926 tcc_define_symbol(s, "__x86_64__", NULL);
927 #endif
928 #if defined(TCC_TARGET_ARM)
929 tcc_define_symbol(s, "__ARM_ARCH_4__", NULL);
930 tcc_define_symbol(s, "__arm_elf__", NULL);
931 tcc_define_symbol(s, "__arm_elf", NULL);
932 tcc_define_symbol(s, "arm_elf", NULL);
933 tcc_define_symbol(s, "__arm__", NULL);
934 tcc_define_symbol(s, "__arm", NULL);
935 tcc_define_symbol(s, "arm", NULL);
936 tcc_define_symbol(s, "__APCS_32__", NULL);
937 #endif
938 #ifdef TCC_TARGET_PE
939 tcc_define_symbol(s, "_WIN32", NULL);
940 #ifdef TCC_TARGET_X86_64
941 tcc_define_symbol(s, "_WIN64", NULL);
942 #endif
943 #else
944 tcc_define_symbol(s, "__unix__", NULL);
945 tcc_define_symbol(s, "__unix", NULL);
946 tcc_define_symbol(s, "unix", NULL);
947 #if defined(__FreeBSD__)
948 #define str(s) #s
949 tcc_define_symbol(s, "__FreeBSD__", str( __FreeBSD__));
950 #undef str
951 #endif
952 #if defined(__FreeBSD_kernel__)
953 tcc_define_symbol(s, "__FreeBSD_kernel__", NULL);
954 #endif
955 #if defined(__linux)
956 tcc_define_symbol(s, "__linux__", NULL);
957 tcc_define_symbol(s, "__linux", NULL);
958 #endif
959 #endif
960 /* tiny C specific defines */
961 sscanf(TCC_VERSION, "%d.%d.%d", &a, &b, &c);
962 sprintf(buffer, "%d", a*10000 + b*100 + c);
963 tcc_define_symbol(s, "__TINYC__", buffer);
965 /* tiny C & gcc defines */
966 #if defined TCC_TARGET_PE && defined TCC_TARGET_X86_64
967 tcc_define_symbol(s, "__SIZE_TYPE__", "unsigned long long");
968 tcc_define_symbol(s, "__PTRDIFF_TYPE__", "long long");
969 #else
970 tcc_define_symbol(s, "__SIZE_TYPE__", "unsigned long");
971 tcc_define_symbol(s, "__PTRDIFF_TYPE__", "long");
972 #endif
974 #ifdef TCC_TARGET_PE
975 tcc_define_symbol(s, "__WCHAR_TYPE__", "unsigned short");
976 #else
977 tcc_define_symbol(s, "__WCHAR_TYPE__", "int");
978 #endif
980 /* glibc defines */
981 tcc_define_symbol(s, "__REDIRECT(name, proto, alias)", "name proto __asm__ (#alias)");
982 tcc_define_symbol(s, "__REDIRECT_NTH(name, proto, alias)", "name proto __asm__ (#alias) __THROW");
984 #ifndef TCC_TARGET_PE
985 /* default library paths */
986 tcc_add_library_path(s, CONFIG_TCC_LIBPATHS);
987 /* paths for crt objects */
988 tcc_split_path(s, (void ***)&s->crt_paths, &s->nb_crt_paths, CONFIG_TCC_CRTPREFIX);
989 #endif
991 /* no section zero */
992 dynarray_add((void ***)&s->sections, &s->nb_sections, NULL);
994 /* create standard sections */
995 text_section = new_section(s, ".text", SHT_PROGBITS, SHF_ALLOC | SHF_EXECINSTR);
996 data_section = new_section(s, ".data", SHT_PROGBITS, SHF_ALLOC | SHF_WRITE);
997 bss_section = new_section(s, ".bss", SHT_NOBITS, SHF_ALLOC | SHF_WRITE);
999 /* symbols are always generated for linking stage */
1000 symtab_section = new_symtab(s, ".symtab", SHT_SYMTAB, 0,
1001 ".strtab",
1002 ".hashtab", SHF_PRIVATE);
1003 strtab_section = symtab_section->link;
1004 s->symtab = symtab_section;
1006 /* private symbol table for dynamic symbols */
1007 s->dynsymtab_section = new_symtab(s, ".dynsymtab", SHT_SYMTAB, SHF_PRIVATE,
1008 ".dynstrtab",
1009 ".dynhashtab", SHF_PRIVATE);
1010 s->alacarte_link = 1;
1011 s->nocommon = 1;
1013 #ifdef CHAR_IS_UNSIGNED
1014 s->char_is_unsigned = 1;
1015 #endif
1016 /* enable this if you want symbols with leading underscore on windows: */
1017 #if defined(TCC_TARGET_PE) && 0
1018 s->leading_underscore = 1;
1019 #endif
1020 if (s->section_align == 0)
1021 s->section_align = ELF_PAGE_SIZE;
1022 #ifdef TCC_TARGET_I386
1023 s->seg_size = 32;
1024 #endif
1025 return s;
1028 LIBTCCAPI void tcc_delete(TCCState *s1)
1030 int i;
1032 tcc_cleanup();
1034 /* free all sections */
1035 for(i = 1; i < s1->nb_sections; i++)
1036 free_section(s1->sections[i]);
1037 dynarray_reset(&s1->sections, &s1->nb_sections);
1039 for(i = 0; i < s1->nb_priv_sections; i++)
1040 free_section(s1->priv_sections[i]);
1041 dynarray_reset(&s1->priv_sections, &s1->nb_priv_sections);
1043 /* free any loaded DLLs */
1044 for ( i = 0; i < s1->nb_loaded_dlls; i++) {
1045 DLLReference *ref = s1->loaded_dlls[i];
1046 if ( ref->handle )
1047 dlclose(ref->handle);
1050 /* free loaded dlls array */
1051 dynarray_reset(&s1->loaded_dlls, &s1->nb_loaded_dlls);
1053 /* free library paths */
1054 dynarray_reset(&s1->library_paths, &s1->nb_library_paths);
1055 dynarray_reset(&s1->crt_paths, &s1->nb_crt_paths);
1057 /* free include paths */
1058 dynarray_reset(&s1->cached_includes, &s1->nb_cached_includes);
1059 dynarray_reset(&s1->include_paths, &s1->nb_include_paths);
1060 dynarray_reset(&s1->sysinclude_paths, &s1->nb_sysinclude_paths);
1062 dynarray_reset(&s1->target_deps, &s1->nb_target_deps);
1064 tcc_free(s1->tcc_lib_path);
1066 #ifdef HAVE_SELINUX
1067 munmap (s1->write_mem, s1->mem_size);
1068 munmap (s1->runtime_mem, s1->mem_size);
1069 #else
1070 tcc_free(s1->runtime_mem);
1071 #endif
1072 tcc_free(s1);
1075 LIBTCCAPI int tcc_add_include_path(TCCState *s, const char *pathname)
1077 tcc_split_path(s, (void ***)&s->include_paths, &s->nb_include_paths, pathname);
1078 return 0;
1081 LIBTCCAPI int tcc_add_sysinclude_path(TCCState *s, const char *pathname)
1083 tcc_split_path(s, (void ***)&s->sysinclude_paths, &s->nb_sysinclude_paths, pathname);
1084 return 0;
1087 ST_FUNC int tcc_add_file_internal(TCCState *s1, const char *filename, int flags)
1089 const char *ext;
1090 ElfW(Ehdr) ehdr;
1091 int fd, ret, size;
1093 /* find source file type with extension */
1094 ext = tcc_fileextension(filename);
1095 if (ext[0])
1096 ext++;
1098 #ifdef CONFIG_TCC_ASM
1099 /* if .S file, define __ASSEMBLER__ like gcc does */
1100 if (!strcmp(ext, "S"))
1101 tcc_define_symbol(s1, "__ASSEMBLER__", NULL);
1102 #endif
1104 /* open the file */
1105 ret = tcc_open(s1, filename);
1106 if (ret < 0) {
1107 if (flags & AFF_PRINT_ERROR)
1108 tcc_error_noabort("file '%s' not found", filename);
1109 return ret;
1112 /* update target deps */
1113 dynarray_add((void ***)&s1->target_deps, &s1->nb_target_deps,
1114 tcc_strdup(filename));
1116 if (flags & AFF_PREPROCESS) {
1117 ret = tcc_preprocess(s1);
1118 goto the_end;
1121 if (!ext[0] || !PATHCMP(ext, "c")) {
1122 /* C file assumed */
1123 ret = tcc_compile(s1);
1124 goto the_end;
1127 #ifdef CONFIG_TCC_ASM
1128 if (!strcmp(ext, "S")) {
1129 /* preprocessed assembler */
1130 ret = tcc_assemble(s1, 1);
1131 goto the_end;
1134 if (!strcmp(ext, "s")) {
1135 /* non preprocessed assembler */
1136 ret = tcc_assemble(s1, 0);
1137 goto the_end;
1139 #endif
1141 fd = file->fd;
1142 /* assume executable format: auto guess file type */
1143 size = read(fd, &ehdr, sizeof(ehdr));
1144 lseek(fd, 0, SEEK_SET);
1145 if (size <= 0) {
1146 tcc_error_noabort("could not read header");
1147 goto the_end;
1150 if (size == sizeof(ehdr) &&
1151 ehdr.e_ident[0] == ELFMAG0 &&
1152 ehdr.e_ident[1] == ELFMAG1 &&
1153 ehdr.e_ident[2] == ELFMAG2 &&
1154 ehdr.e_ident[3] == ELFMAG3) {
1156 /* do not display line number if error */
1157 file->line_num = 0;
1158 if (ehdr.e_type == ET_REL) {
1159 ret = tcc_load_object_file(s1, fd, 0);
1160 goto the_end;
1163 #ifndef TCC_TARGET_PE
1164 if (ehdr.e_type == ET_DYN) {
1165 if (s1->output_type == TCC_OUTPUT_MEMORY) {
1166 void *h;
1167 h = dlopen(filename, RTLD_GLOBAL | RTLD_LAZY);
1168 if (h)
1169 ret = 0;
1170 } else {
1171 ret = tcc_load_dll(s1, fd, filename,
1172 (flags & AFF_REFERENCED_DLL) != 0);
1174 goto the_end;
1176 #endif
1177 tcc_error_noabort("unrecognized ELF file");
1178 goto the_end;
1181 if (memcmp((char *)&ehdr, ARMAG, 8) == 0) {
1182 file->line_num = 0; /* do not display line number if error */
1183 ret = tcc_load_archive(s1, fd);
1184 goto the_end;
1187 #ifdef TCC_TARGET_COFF
1188 if (*(uint16_t *)(&ehdr) == COFF_C67_MAGIC) {
1189 ret = tcc_load_coff(s1, fd);
1190 goto the_end;
1192 #endif
1194 #ifdef TCC_TARGET_PE
1195 ret = pe_load_file(s1, filename, fd);
1196 #else
1197 /* as GNU ld, consider it is an ld script if not recognized */
1198 ret = tcc_load_ldscript(s1);
1199 #endif
1200 if (ret < 0)
1201 tcc_error_noabort("unrecognized file type");
1203 the_end:
1204 tcc_close();
1205 return ret;
1208 LIBTCCAPI int tcc_add_file(TCCState *s, const char *filename)
1210 if (s->output_type == TCC_OUTPUT_PREPROCESS)
1211 return tcc_add_file_internal(s, filename, AFF_PRINT_ERROR | AFF_PREPROCESS);
1212 else
1213 return tcc_add_file_internal(s, filename, AFF_PRINT_ERROR);
1216 LIBTCCAPI int tcc_add_library_path(TCCState *s, const char *pathname)
1218 tcc_split_path(s, (void ***)&s->library_paths, &s->nb_library_paths, pathname);
1219 return 0;
1222 static int tcc_add_library_internal(TCCState *s, const char *fmt,
1223 const char *filename, int flags, char **paths, int nb_paths)
1225 char buf[1024];
1226 int i;
1228 for(i = 0; i < nb_paths; i++) {
1229 snprintf(buf, sizeof(buf), fmt, paths[i], filename);
1230 if (tcc_add_file_internal(s, buf, flags) == 0)
1231 return 0;
1233 return -1;
1236 #ifndef TCC_TARGET_PE
1237 /* find and load a dll. Return non zero if not found */
1238 /* XXX: add '-rpath' option support ? */
1239 ST_FUNC int tcc_add_dll(TCCState *s, const char *filename, int flags)
1241 return tcc_add_library_internal(s, "%s/%s", filename, flags,
1242 s->library_paths, s->nb_library_paths);
1244 #endif
1246 ST_FUNC int tcc_add_crt(TCCState *s, const char *filename)
1248 if (-1 == tcc_add_library_internal(s, "%s/%s",
1249 filename, 0, s->crt_paths, s->nb_crt_paths))
1250 tcc_error_noabort("file '%s' not found", filename);
1251 return 0;
1254 /* the library name is the same as the argument of the '-l' option */
1255 LIBTCCAPI int tcc_add_library(TCCState *s, const char *libraryname)
1257 #ifdef TCC_TARGET_PE
1258 const char *libs[] = { "%s/%s.def", "%s/lib%s.def", "%s/%s.dll", "%s/lib%s.dll", "%s/lib%s.a", NULL };
1259 const char **pp = s->static_link ? libs + 4 : libs;
1260 #else
1261 const char *libs[] = { "%s/lib%s.so", "%s/lib%s.a", NULL };
1262 const char **pp = s->static_link ? libs + 1 : libs;
1263 #endif
1264 while (*pp) {
1265 if (0 == tcc_add_library_internal(s, *pp,
1266 libraryname, 0, s->library_paths, s->nb_library_paths))
1267 return 0;
1268 ++pp;
1270 return -1;
1273 LIBTCCAPI int tcc_add_symbol(TCCState *s, const char *name, const void *val)
1275 #ifdef TCC_TARGET_PE
1276 pe_putimport(s, 0, name, val);
1277 #else
1278 add_elf_sym(symtab_section, (uplong)val, 0,
1279 ELFW(ST_INFO)(STB_GLOBAL, STT_NOTYPE), 0,
1280 SHN_ABS, name);
1281 #endif
1282 return 0;
1285 LIBTCCAPI int tcc_set_output_type(TCCState *s, int output_type)
1287 s->output_type = output_type;
1289 if (!s->nostdinc) {
1290 /* default include paths */
1291 /* -isystem paths have already been handled */
1292 tcc_add_sysinclude_path(s, CONFIG_TCC_SYSINCLUDEPATHS);
1295 /* if bound checking, then add corresponding sections */
1296 #ifdef CONFIG_TCC_BCHECK
1297 if (s->do_bounds_check) {
1298 /* define symbol */
1299 tcc_define_symbol(s, "__BOUNDS_CHECKING_ON", NULL);
1300 /* create bounds sections */
1301 bounds_section = new_section(s, ".bounds",
1302 SHT_PROGBITS, SHF_ALLOC);
1303 lbounds_section = new_section(s, ".lbounds",
1304 SHT_PROGBITS, SHF_ALLOC);
1306 #endif
1308 if (s->char_is_unsigned) {
1309 tcc_define_symbol(s, "__CHAR_UNSIGNED__", NULL);
1312 /* add debug sections */
1313 if (s->do_debug) {
1314 /* stab symbols */
1315 stab_section = new_section(s, ".stab", SHT_PROGBITS, 0);
1316 stab_section->sh_entsize = sizeof(Stab_Sym);
1317 stabstr_section = new_section(s, ".stabstr", SHT_STRTAB, 0);
1318 put_elf_str(stabstr_section, "");
1319 stab_section->link = stabstr_section;
1320 /* put first entry */
1321 put_stabs("", 0, 0, 0, 0);
1324 #ifdef TCC_TARGET_PE
1325 tcc_add_library_path(s, CONFIG_TCC_LIBPATHS);
1326 # ifdef _WIN32
1327 tcc_add_systemdir(s);
1328 # endif
1329 #else
1330 /* add libc crt1/crti objects */
1331 if ((output_type == TCC_OUTPUT_EXE || output_type == TCC_OUTPUT_DLL) &&
1332 !s->nostdlib) {
1333 if (output_type != TCC_OUTPUT_DLL)
1334 tcc_add_crt(s, "crt1.o");
1335 tcc_add_crt(s, "crti.o");
1337 #endif
1338 return 0;
1341 #define WD_ALL 0x0001 /* warning is activated when using -Wall */
1342 #define FD_INVERT 0x0002 /* invert value before storing */
1344 typedef struct FlagDef {
1345 uint16_t offset;
1346 uint16_t flags;
1347 const char *name;
1348 } FlagDef;
1350 static const FlagDef warning_defs[] = {
1351 { offsetof(TCCState, warn_unsupported), 0, "unsupported" },
1352 { offsetof(TCCState, warn_write_strings), 0, "write-strings" },
1353 { offsetof(TCCState, warn_error), 0, "error" },
1354 { offsetof(TCCState, warn_implicit_function_declaration), WD_ALL,
1355 "implicit-function-declaration" },
1358 ST_FUNC int set_flag(TCCState *s, const FlagDef *flags, int nb_flags,
1359 const char *name, int value)
1361 int i;
1362 const FlagDef *p;
1363 const char *r;
1365 r = name;
1366 if (r[0] == 'n' && r[1] == 'o' && r[2] == '-') {
1367 r += 3;
1368 value = !value;
1370 for(i = 0, p = flags; i < nb_flags; i++, p++) {
1371 if (!strcmp(r, p->name))
1372 goto found;
1374 return -1;
1375 found:
1376 if (p->flags & FD_INVERT)
1377 value = !value;
1378 *(int *)((uint8_t *)s + p->offset) = value;
1379 return 0;
1382 /* enable debug */
1383 LIBTCCAPI void tcc_enable_debug(TCCState *s)
1385 s->do_debug = 1;
1388 /* set/reset a warning */
1389 LIBTCCAPI int tcc_set_warning(TCCState *s, const char *warning_name, int value)
1391 int i;
1392 const FlagDef *p;
1394 if (!strcmp(warning_name, "all")) {
1395 for(i = 0, p = warning_defs; i < countof(warning_defs); i++, p++) {
1396 if (p->flags & WD_ALL)
1397 *(int *)((uint8_t *)s + p->offset) = 1;
1399 return 0;
1400 } else {
1401 return set_flag(s, warning_defs, countof(warning_defs),
1402 warning_name, value);
1406 static const FlagDef flag_defs[] = {
1407 { offsetof(TCCState, char_is_unsigned), 0, "unsigned-char" },
1408 { offsetof(TCCState, char_is_unsigned), FD_INVERT, "signed-char" },
1409 { offsetof(TCCState, nocommon), FD_INVERT, "common" },
1410 { offsetof(TCCState, leading_underscore), 0, "leading-underscore" },
1413 /* set/reset a flag */
1414 PUB_FUNC int tcc_set_flag(TCCState *s, const char *flag_name, int value)
1416 return set_flag(s, flag_defs, countof(flag_defs),
1417 flag_name, value);
1421 static int strstart(const char *str, const char *val, char **ptr)
1423 const char *p, *q;
1424 p = str;
1425 q = val;
1426 while (*q != '\0') {
1427 if (*p != *q)
1428 return 0;
1429 p++;
1430 q++;
1432 if (ptr)
1433 *ptr = (char *) p;
1434 return 1;
1438 /* Like strstart, but automatically takes into account that ld options can
1440 * - start with double or single dash (e.g. '--soname' or '-soname')
1441 * - arguments can be given as separate or after '=' (e.g. '-Wl,-soname,x.so'
1442 * or '-Wl,-soname=x.so')
1444 * you provide `val` always in 'option[=]' form (no leading -)
1446 static int link_option(const char *str, const char *val, char **ptr)
1448 const char *p, *q;
1450 /* there should be 1 or 2 dashes */
1451 if (*str++ != '-')
1452 return 0;
1453 if (*str == '-')
1454 str++;
1456 /* then str & val should match (potentialy up to '=') */
1457 p = str;
1458 q = val;
1460 while (*q != '\0' && *q != '=') {
1461 if (*p != *q)
1462 return 0;
1463 p++;
1464 q++;
1467 /* '=' near eos means ',' or '=' is ok */
1468 if (*q == '=') {
1469 if (*p != ',' && *p != '=')
1470 return 0;
1471 p++;
1472 q++;
1475 if (ptr)
1476 *ptr = (char *) p;
1477 return 1;
1481 /* set linker options */
1482 PUB_FUNC const char * tcc_set_linker(TCCState *s, char *option, int multi)
1484 char *p = option;
1485 char *end;
1487 while (option && *option) {
1488 end = NULL;
1489 if (link_option(option, "Bsymbolic", &p)) {
1490 s->symbolic = TRUE;
1491 } else if (link_option(option, "nostdlib", &p)) {
1492 s->nostdlib = TRUE;
1493 } else if (link_option(option, "fini=", &p)) {
1494 s->fini_symbol = p;
1495 if (s->warn_unsupported)
1496 tcc_warning("ignoring -fini %s", p);
1497 } else if (link_option(option, "image-base=", &p)) {
1498 s->text_addr = strtoull(p, &end, 16);
1499 s->has_text_addr = 1;
1500 } else if (link_option(option, "init=", &p)) {
1501 s->init_symbol = p;
1502 if (s->warn_unsupported)
1503 tcc_warning("ignoring -init %s", p);
1504 } else if (link_option(option, "oformat=", &p)) {
1505 #if defined(TCC_TARGET_PE)
1506 if (strstart(p, "pe-", NULL)) {
1507 #else
1508 #if defined(TCC_TARGET_X86_64)
1509 if (strstart(p, "elf64-", NULL)) {
1510 #else
1511 if (strstart(p, "elf32-", NULL)) {
1512 #endif
1513 #endif
1514 s->output_format = TCC_OUTPUT_FORMAT_ELF;
1515 } else if (!strcmp(p, "binary")) {
1516 s->output_format = TCC_OUTPUT_FORMAT_BINARY;
1517 } else
1518 #ifdef TCC_TARGET_COFF
1519 if (!strcmp(p, "coff")) {
1520 s->output_format = TCC_OUTPUT_FORMAT_COFF;
1521 } else
1522 #endif
1524 return p;
1527 } else if (link_option(option, "rpath=", &p)) {
1528 s->rpath = p;
1529 } else if (link_option(option, "section-alignment=", &p)) {
1530 s->section_align = strtoul(p, &end, 16);
1531 } else if (link_option(option, "soname=", &p)) {
1532 s->soname = p;
1533 multi = 0;
1534 #ifdef TCC_TARGET_PE
1535 } else if (link_option(option, "file-alignment=", &p)) {
1536 s->pe_file_align = strtoul(p, &end, 16);
1537 } else if (link_option(option, "stack=", &p)) {
1538 s->pe_stack_size = strtoul(p, &end, 10);
1539 } else if (link_option(option, "subsystem=", &p)) {
1540 #if defined(TCC_TARGET_I386) || defined(TCC_TARGET_X86_64)
1541 if (!strcmp(p, "native")) {
1542 s->pe_subsystem = 1;
1543 } else if (!strcmp(p, "console")) {
1544 s->pe_subsystem = 3;
1545 } else if (!strcmp(p, "gui")) {
1546 s->pe_subsystem = 2;
1547 } else if (!strcmp(p, "posix")) {
1548 s->pe_subsystem = 7;
1549 } else if (!strcmp(p, "efiapp")) {
1550 s->pe_subsystem = 10;
1551 } else if (!strcmp(p, "efiboot")) {
1552 s->pe_subsystem = 11;
1553 } else if (!strcmp(p, "efiruntime")) {
1554 s->pe_subsystem = 12;
1555 } else if (!strcmp(p, "efirom")) {
1556 s->pe_subsystem = 13;
1557 #elif defined(TCC_TARGET_ARM)
1558 if (!strcmp(p, "wince")) {
1559 s->pe_subsystem = 9;
1560 #endif
1561 } else {
1562 return p;
1564 #endif
1566 } else if (link_option(option, "Ttext=", &p)) {
1567 s->text_addr = strtoull(p, &end, 16);
1568 s->has_text_addr = 1;
1569 } else {
1570 char *comma_ptr = strchr(option, ',');
1571 if (comma_ptr)
1572 *comma_ptr = '\0';
1573 return option;
1576 if (multi) {
1577 option = NULL;
1578 p = strchr( (end) ? end : p, ',');
1579 if (p) {
1580 *p = 0; /* terminate last option */
1581 option = ++p;
1583 } else
1584 option = NULL;
1586 return NULL;
1589 PUB_FUNC void tcc_print_stats(TCCState *s, int64_t total_time)
1591 double tt;
1592 tt = (double)total_time / 1000000.0;
1593 if (tt < 0.001)
1594 tt = 0.001;
1595 if (total_bytes < 1)
1596 total_bytes = 1;
1597 printf("%d idents, %d lines, %d bytes, %0.3f s, %d lines/s, %0.1f MB/s\n",
1598 tok_ident - TOK_IDENT, total_lines, total_bytes,
1599 tt, (int)(total_lines / tt),
1600 total_bytes / tt / 1000000.0);
1603 /* set CONFIG_TCCDIR at runtime */
1604 LIBTCCAPI void tcc_set_lib_path(TCCState *s, const char *path)
1606 tcc_free(s->tcc_lib_path);
1607 s->tcc_lib_path = tcc_strdup(path);
1610 PUB_FUNC char *tcc_default_target(TCCState *s, const char *default_file)
1612 char buf[1024];
1613 char *ext;
1614 const char *name = "a";
1616 if (default_file && strcmp(default_file, "-"))
1617 name = tcc_basename(default_file);
1618 pstrcpy(buf, sizeof(buf), name);
1619 ext = tcc_fileextension(buf);
1620 #ifdef TCC_TARGET_PE
1621 if (s->output_type == TCC_OUTPUT_DLL)
1622 strcpy(ext, ".dll");
1623 else
1624 if (s->output_type == TCC_OUTPUT_EXE)
1625 strcpy(ext, ".exe");
1626 else
1627 #endif
1628 if (( (s->output_type == TCC_OUTPUT_OBJ && !s->reloc_output) ||
1629 (s->output_type == TCC_OUTPUT_PREPROCESS) )
1630 && *ext)
1631 strcpy(ext, ".o");
1632 else
1633 pstrcpy(buf, sizeof(buf), "a.out");
1635 return tcc_strdup(buf);
1639 PUB_FUNC void tcc_gen_makedeps(TCCState *s, const char *target, const char *filename)
1641 FILE *depout;
1642 char buf[1024], *ext;
1643 int i;
1645 if (!filename) {
1646 /* compute filename automatically
1647 * dir/file.o -> dir/file.d */
1648 pstrcpy(buf, sizeof(buf), target);
1649 ext = tcc_fileextension(buf);
1650 pstrcpy(ext, sizeof(buf) - (ext-buf), ".d");
1651 filename = buf;
1654 if (s->verbose)
1655 printf("<- %s\n", filename);
1657 /* XXX return err codes instead of error() ? */
1658 depout = fopen(filename, "w");
1659 if (!depout)
1660 tcc_error("could not open '%s'", filename);
1662 fprintf(depout, "%s : \\\n", target);
1663 for (i=0; i<s->nb_target_deps; ++i)
1664 fprintf(depout, "\t%s \\\n", s->target_deps[i]);
1665 fprintf(depout, "\n");
1666 fclose(depout);