tcctok.h: fix ifdef target/host confusion
[tinycc.git] / libtcc.c
blob2f77721b7802e01db385a84722fa9d1865456fb3
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 #ifdef CONFIG_TCC_BACKTRACE
36 ST_DATA int num_callers = 6;
37 ST_DATA const char **rt_bound_error_msg;
38 ST_DATA void *rt_prog_main;
39 #endif
41 /********************************************************/
43 #ifndef NOTALLINONE
44 #include "tccpp.c"
45 #include "tccgen.c"
46 #include "tccelf.c"
47 #include "tccrun.c"
48 #ifdef TCC_TARGET_I386
49 #include "i386-gen.c"
50 #endif
51 #ifdef TCC_TARGET_ARM
52 #include "arm-gen.c"
53 #endif
54 #ifdef TCC_TARGET_C67
55 #include "c67-gen.c"
56 #endif
57 #ifdef TCC_TARGET_X86_64
58 #include "x86_64-gen.c"
59 #endif
60 #ifdef CONFIG_TCC_ASM
61 #include "tccasm.c"
62 #if defined TCC_TARGET_I386 || defined TCC_TARGET_X86_64
63 #include "i386-asm.c"
64 #endif
65 #endif
66 #ifdef TCC_TARGET_COFF
67 #include "tcccoff.c"
68 #endif
69 #ifdef TCC_TARGET_PE
70 #include "tccpe.c"
71 #endif
72 #endif /* ALL_IN_ONE */
74 /********************************************************/
75 #ifndef CONFIG_TCC_ASM
76 ST_FUNC void asm_instr(void)
78 error("inline asm() not supported");
80 ST_FUNC void asm_global_instr(void)
82 error("inline asm() not supported");
84 #endif
86 /********************************************************/
88 #ifdef _WIN32
89 static char *normalize_slashes(char *path)
91 char *p;
92 for (p = path; *p; ++p)
93 if (*p == '\\')
94 *p = '/';
95 return path;
98 static HMODULE tcc_module;
100 /* on win32, we suppose the lib and includes are at the location of 'tcc.exe' */
101 static void tcc_set_lib_path_w32(TCCState *s)
103 char path[1024], *p;
104 GetModuleFileNameA(tcc_module, path, sizeof path);
105 p = tcc_basename(normalize_slashes(strlwr(path)));
106 if (p - 5 > path && 0 == strncmp(p - 5, "/bin/", 5))
107 p -= 5;
108 else if (p > path)
109 p--;
110 *p = 0;
111 tcc_set_lib_path(s, path);
114 #ifndef CONFIG_TCC_STATIC
115 void dlclose(void *p)
117 FreeLibrary((HMODULE)p);
119 #endif
121 #ifdef LIBTCC_AS_DLL
122 BOOL WINAPI DllMain (HANDLE hDll, DWORD dwReason, LPVOID lpReserved)
124 if (DLL_PROCESS_ATTACH == dwReason)
125 tcc_module = hDll;
126 return TRUE;
128 #endif
129 #endif
131 /********************************************************/
132 /* copy a string and truncate it. */
133 PUB_FUNC char *pstrcpy(char *buf, int buf_size, const char *s)
135 char *q, *q_end;
136 int c;
138 if (buf_size > 0) {
139 q = buf;
140 q_end = buf + buf_size - 1;
141 while (q < q_end) {
142 c = *s++;
143 if (c == '\0')
144 break;
145 *q++ = c;
147 *q = '\0';
149 return buf;
152 /* strcat and truncate. */
153 PUB_FUNC char *pstrcat(char *buf, int buf_size, const char *s)
155 int len;
156 len = strlen(buf);
157 if (len < buf_size)
158 pstrcpy(buf + len, buf_size - len, s);
159 return buf;
162 /* extract the basename of a file */
163 PUB_FUNC char *tcc_basename(const char *name)
165 char *p = strchr(name, 0);
166 while (p > name && !IS_PATHSEP(p[-1]))
167 --p;
168 return p;
171 /* extract extension part of a file
173 * (if no extension, return pointer to end-of-string)
175 PUB_FUNC char *tcc_fileextension (const char *name)
177 char *b = tcc_basename(name);
178 char *e = strrchr(b, '.');
179 return e ? e : strchr(b, 0);
182 /********************************************************/
183 /* memory management */
185 #undef free
186 #undef malloc
187 #undef realloc
189 #ifdef MEM_DEBUG
190 int mem_cur_size;
191 int mem_max_size;
192 unsigned malloc_usable_size(void*);
193 #endif
195 PUB_FUNC void tcc_free(void *ptr)
197 #ifdef MEM_DEBUG
198 mem_cur_size -= malloc_usable_size(ptr);
199 #endif
200 free(ptr);
203 PUB_FUNC void *tcc_malloc(unsigned long size)
205 void *ptr;
206 ptr = malloc(size);
207 if (!ptr && size)
208 error("memory full");
209 #ifdef MEM_DEBUG
210 mem_cur_size += malloc_usable_size(ptr);
211 if (mem_cur_size > mem_max_size)
212 mem_max_size = mem_cur_size;
213 #endif
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 #ifdef MEM_DEBUG
229 mem_cur_size -= malloc_usable_size(ptr);
230 #endif
231 ptr1 = realloc(ptr, size);
232 #ifdef MEM_DEBUG
233 /* NOTE: count not correct if alloc error, but not critical */
234 mem_cur_size += malloc_usable_size(ptr1);
235 if (mem_cur_size > mem_max_size)
236 mem_max_size = mem_cur_size;
237 #endif
238 return ptr1;
241 PUB_FUNC char *tcc_strdup(const char *str)
243 char *ptr;
244 ptr = tcc_malloc(strlen(str) + 1);
245 strcpy(ptr, str);
246 return ptr;
249 PUB_FUNC void tcc_memstats(void)
251 #ifdef MEM_DEBUG
252 printf("memory in use: %d\n", mem_cur_size);
253 #endif
256 #define free(p) use_tcc_free(p)
257 #define malloc(s) use_tcc_malloc(s)
258 #define realloc(p, s) use_tcc_realloc(p, s)
260 /********************************************************/
261 /* dynarrays */
263 PUB_FUNC void dynarray_add(void ***ptab, int *nb_ptr, void *data)
265 int nb, nb_alloc;
266 void **pp;
268 nb = *nb_ptr;
269 pp = *ptab;
270 /* every power of two we double array size */
271 if ((nb & (nb - 1)) == 0) {
272 if (!nb)
273 nb_alloc = 1;
274 else
275 nb_alloc = nb * 2;
276 pp = tcc_realloc(pp, nb_alloc * sizeof(void *));
277 if (!pp)
278 error("memory full");
279 *ptab = pp;
281 pp[nb++] = data;
282 *nb_ptr = nb;
285 PUB_FUNC void dynarray_reset(void *pp, int *n)
287 void **p;
288 for (p = *(void***)pp; *n; ++p, --*n)
289 if (*p)
290 tcc_free(*p);
291 tcc_free(*(void**)pp);
292 *(void**)pp = NULL;
295 /* we use our own 'finite' function to avoid potential problems with
296 non standard math libs */
297 /* XXX: endianness dependent */
298 ST_FUNC int ieee_finite(double d)
300 int *p = (int *)&d;
301 return ((unsigned)((p[1] | 0x800fffff) + 1)) >> 31;
304 /********************************************************/
306 ST_FUNC Section *new_section(TCCState *s1, const char *name, int sh_type, int sh_flags)
308 Section *sec;
310 sec = tcc_mallocz(sizeof(Section) + strlen(name));
311 strcpy(sec->name, name);
312 sec->sh_type = sh_type;
313 sec->sh_flags = sh_flags;
314 switch(sh_type) {
315 case SHT_HASH:
316 case SHT_REL:
317 case SHT_RELA:
318 case SHT_DYNSYM:
319 case SHT_SYMTAB:
320 case SHT_DYNAMIC:
321 sec->sh_addralign = 4;
322 break;
323 case SHT_STRTAB:
324 sec->sh_addralign = 1;
325 break;
326 default:
327 sec->sh_addralign = 32; /* default conservative alignment */
328 break;
331 if (sh_flags & SHF_PRIVATE) {
332 dynarray_add((void ***)&s1->priv_sections, &s1->nb_priv_sections, sec);
333 } else {
334 sec->sh_num = s1->nb_sections;
335 dynarray_add((void ***)&s1->sections, &s1->nb_sections, sec);
338 return sec;
341 static void free_section(Section *s)
343 tcc_free(s->data);
346 /* realloc section and set its content to zero */
347 ST_FUNC void section_realloc(Section *sec, unsigned long new_size)
349 unsigned long size;
350 unsigned char *data;
352 size = sec->data_allocated;
353 if (size == 0)
354 size = 1;
355 while (size < new_size)
356 size = size * 2;
357 data = tcc_realloc(sec->data, size);
358 if (!data)
359 error("memory full");
360 memset(data + sec->data_allocated, 0, size - sec->data_allocated);
361 sec->data = data;
362 sec->data_allocated = size;
365 /* reserve at least 'size' bytes in section 'sec' from
366 sec->data_offset. */
367 ST_FUNC void *section_ptr_add(Section *sec, unsigned long size)
369 unsigned long offset, offset1;
371 offset = sec->data_offset;
372 offset1 = offset + size;
373 if (offset1 > sec->data_allocated)
374 section_realloc(sec, offset1);
375 sec->data_offset = offset1;
376 return sec->data + offset;
379 /* reserve at least 'size' bytes from section start */
380 ST_FUNC void section_reserve(Section *sec, unsigned long size)
382 if (size > sec->data_allocated)
383 section_realloc(sec, size);
384 if (size > sec->data_offset)
385 sec->data_offset = size;
388 /* return a reference to a section, and create it if it does not
389 exists */
390 ST_FUNC Section *find_section(TCCState *s1, const char *name)
392 Section *sec;
393 int i;
394 for(i = 1; i < s1->nb_sections; i++) {
395 sec = s1->sections[i];
396 if (!strcmp(name, sec->name))
397 return sec;
399 /* sections are created as PROGBITS */
400 return new_section(s1, name, SHT_PROGBITS, SHF_ALLOC);
403 /* update sym->c so that it points to an external symbol in section
404 'section' with value 'value' */
405 ST_FUNC void put_extern_sym2(Sym *sym, Section *section,
406 unsigned long value, unsigned long size,
407 int can_add_underscore)
409 int sym_type, sym_bind, sh_num, info, other;
410 ElfW(Sym) *esym;
411 const char *name;
412 char buf1[256];
414 if (section == NULL)
415 sh_num = SHN_UNDEF;
416 else if (section == SECTION_ABS)
417 sh_num = SHN_ABS;
418 else
419 sh_num = section->sh_num;
421 if ((sym->type.t & VT_BTYPE) == VT_FUNC) {
422 sym_type = STT_FUNC;
423 } else if ((sym->type.t & VT_BTYPE) == VT_VOID) {
424 sym_type = STT_NOTYPE;
425 } else {
426 sym_type = STT_OBJECT;
429 if (sym->type.t & VT_STATIC)
430 sym_bind = STB_LOCAL;
431 else {
432 if (sym->type.t & VT_WEAK)
433 sym_bind = STB_WEAK;
434 else
435 sym_bind = STB_GLOBAL;
438 if (!sym->c) {
439 name = get_tok_str(sym->v, NULL);
440 #ifdef CONFIG_TCC_BCHECK
441 if (tcc_state->do_bounds_check) {
442 char buf[32];
444 /* XXX: avoid doing that for statics ? */
445 /* if bound checking is activated, we change some function
446 names by adding the "__bound" prefix */
447 switch(sym->v) {
448 #ifdef TCC_TARGET_PE
449 /* XXX: we rely only on malloc hooks */
450 case TOK_malloc:
451 case TOK_free:
452 case TOK_realloc:
453 case TOK_memalign:
454 case TOK_calloc:
455 #endif
456 case TOK_memcpy:
457 case TOK_memmove:
458 case TOK_memset:
459 case TOK_strlen:
460 case TOK_strcpy:
461 case TOK_alloca:
462 strcpy(buf, "__bound_");
463 strcat(buf, name);
464 name = buf;
465 break;
468 #endif
469 other = 0;
471 #ifdef TCC_TARGET_PE
472 if (sym->type.t & VT_EXPORT)
473 other |= 1;
474 if (sym_type == STT_FUNC && sym->type.ref) {
475 int attr = sym->type.ref->r;
476 if (FUNC_EXPORT(attr))
477 other |= 1;
478 if (FUNC_CALL(attr) == FUNC_STDCALL && can_add_underscore) {
479 sprintf(buf1, "_%s@%d", name, FUNC_ARGS(attr) * PTR_SIZE);
480 name = buf1;
481 other |= 2;
482 can_add_underscore = 0;
484 } else {
485 if (find_elf_sym(tcc_state->dynsymtab_section, name))
486 other |= 4;
487 if (sym->type.t & VT_IMPORT)
488 other |= 4;
490 #endif
491 if (tcc_state->leading_underscore && can_add_underscore) {
492 buf1[0] = '_';
493 pstrcpy(buf1 + 1, sizeof(buf1) - 1, name);
494 name = buf1;
496 if (sym->asm_label) {
497 name = sym->asm_label;
499 info = ELFW(ST_INFO)(sym_bind, sym_type);
500 sym->c = add_elf_sym(symtab_section, value, size, info, other, sh_num, name);
501 } else {
502 esym = &((ElfW(Sym) *)symtab_section->data)[sym->c];
503 esym->st_value = value;
504 esym->st_size = size;
505 esym->st_shndx = sh_num;
509 ST_FUNC void put_extern_sym(Sym *sym, Section *section,
510 unsigned long value, unsigned long size)
512 put_extern_sym2(sym, section, value, size, 1);
515 /* add a new relocation entry to symbol 'sym' in section 's' */
516 ST_FUNC void greloc(Section *s, Sym *sym, unsigned long offset, int type)
518 int c = 0;
519 if (sym) {
520 if (0 == sym->c)
521 put_extern_sym(sym, NULL, 0, 0);
522 c = sym->c;
524 /* now we can add ELF relocation info */
525 put_elf_reloc(symtab_section, s, offset, type, c);
528 /********************************************************/
530 static void strcat_vprintf(char *buf, int buf_size, const char *fmt, va_list ap)
532 int len;
533 len = strlen(buf);
534 vsnprintf(buf + len, buf_size - len, fmt, ap);
537 static void strcat_printf(char *buf, int buf_size, const char *fmt, ...)
539 va_list ap;
540 va_start(ap, fmt);
541 strcat_vprintf(buf, buf_size, fmt, ap);
542 va_end(ap);
545 static void error1(TCCState *s1, int is_warning, const char *fmt, va_list ap)
547 char buf[2048];
548 BufferedFile **f;
550 buf[0] = '\0';
551 if (file) {
552 for(f = s1->include_stack; f < s1->include_stack_ptr; f++)
553 strcat_printf(buf, sizeof(buf), "In file included from %s:%d:\n",
554 (*f)->filename, (*f)->line_num);
555 if (file->line_num > 0) {
556 strcat_printf(buf, sizeof(buf),
557 "%s:%d: ", file->filename, file->line_num);
558 } else {
559 strcat_printf(buf, sizeof(buf),
560 "%s: ", file->filename);
562 } else {
563 strcat_printf(buf, sizeof(buf),
564 "tcc: ");
566 if (is_warning)
567 strcat_printf(buf, sizeof(buf), "warning: ");
568 else
569 strcat_printf(buf, sizeof(buf), "error: ");
570 strcat_vprintf(buf, sizeof(buf), fmt, ap);
572 if (!s1->error_func) {
573 /* default case: stderr */
574 fprintf(stderr, "%s\n", buf);
575 } else {
576 s1->error_func(s1->error_opaque, buf);
578 if (!is_warning || s1->warn_error)
579 s1->nb_errors++;
582 LIBTCCAPI void tcc_set_error_func(TCCState *s, void *error_opaque,
583 void (*error_func)(void *opaque, const char *msg))
585 s->error_opaque = error_opaque;
586 s->error_func = error_func;
589 /* error without aborting current compilation */
590 PUB_FUNC void error_noabort(const char *fmt, ...)
592 TCCState *s1 = tcc_state;
593 va_list ap;
595 va_start(ap, fmt);
596 error1(s1, 0, fmt, ap);
597 va_end(ap);
600 PUB_FUNC void error(const char *fmt, ...)
602 TCCState *s1 = tcc_state;
603 va_list ap;
605 va_start(ap, fmt);
606 error1(s1, 0, fmt, ap);
607 va_end(ap);
608 /* better than nothing: in some cases, we accept to handle errors */
609 if (s1->error_set_jmp_enabled) {
610 longjmp(s1->error_jmp_buf, 1);
611 } else {
612 /* XXX: eliminate this someday */
613 exit(1);
617 PUB_FUNC void expect(const char *msg)
619 error("%s expected", msg);
622 PUB_FUNC void warning(const char *fmt, ...)
624 TCCState *s1 = tcc_state;
625 va_list ap;
627 if (s1->warn_none)
628 return;
630 va_start(ap, fmt);
631 error1(s1, 1, fmt, ap);
632 va_end(ap);
635 /********************************************************/
636 /* I/O layer */
638 ST_FUNC void tcc_open_bf(TCCState *s1, const char *filename, int initlen)
640 BufferedFile *bf;
641 int buflen = initlen ? initlen : IO_BUF_SIZE;
643 bf = tcc_malloc(sizeof(BufferedFile) + buflen);
644 bf->buf_ptr = bf->buffer;
645 bf->buf_end = bf->buffer + initlen;
646 bf->buf_end[0] = CH_EOB; /* put eob symbol */
647 pstrcpy(bf->filename, sizeof(bf->filename), filename);
648 #ifdef _WIN32
649 normalize_slashes(bf->filename);
650 #endif
651 bf->line_num = 1;
652 bf->ifndef_macro = 0;
653 bf->ifdef_stack_ptr = s1->ifdef_stack_ptr;
654 bf->fd = -1;
655 bf->prev = file;
656 file = bf;
659 ST_FUNC void tcc_close(void)
661 BufferedFile *bf = file;
662 if (bf->fd > 0) {
663 close(bf->fd);
664 total_lines += bf->line_num;
666 file = bf->prev;
667 tcc_free(bf);
670 ST_FUNC int tcc_open(TCCState *s1, const char *filename)
672 int fd;
673 if (strcmp(filename, "-") == 0)
674 fd = 0, filename = "stdin";
675 else
676 fd = open(filename, O_RDONLY | O_BINARY);
677 if ((s1->verbose == 2 && fd >= 0) || s1->verbose == 3)
678 printf("%s %*s%s\n", fd < 0 ? "nf":"->",
679 (int)(s1->include_stack_ptr - s1->include_stack), "", filename);
680 if (fd < 0)
681 return -1;
683 tcc_open_bf(s1, filename, 0);
684 file->fd = fd;
685 return fd;
688 /* compile the C file opened in 'file'. Return non zero if errors. */
689 static int tcc_compile(TCCState *s1)
691 Sym *define_start;
692 SValue *pvtop;
693 char buf[512];
694 volatile int section_sym;
696 #ifdef INC_DEBUG
697 printf("%s: **** new file\n", file->filename);
698 #endif
699 preprocess_init(s1);
701 cur_text_section = NULL;
702 funcname = "";
703 anon_sym = SYM_FIRST_ANOM;
705 /* file info: full path + filename */
706 section_sym = 0; /* avoid warning */
707 if (s1->do_debug) {
708 section_sym = put_elf_sym(symtab_section, 0, 0,
709 ELFW(ST_INFO)(STB_LOCAL, STT_SECTION), 0,
710 text_section->sh_num, NULL);
711 getcwd(buf, sizeof(buf));
712 #ifdef _WIN32
713 normalize_slashes(buf);
714 #endif
715 pstrcat(buf, sizeof(buf), "/");
716 put_stabs_r(buf, N_SO, 0, 0,
717 text_section->data_offset, text_section, section_sym);
718 put_stabs_r(file->filename, N_SO, 0, 0,
719 text_section->data_offset, text_section, section_sym);
721 /* an elf symbol of type STT_FILE must be put so that STB_LOCAL
722 symbols can be safely used */
723 put_elf_sym(symtab_section, 0, 0,
724 ELFW(ST_INFO)(STB_LOCAL, STT_FILE), 0,
725 SHN_ABS, file->filename);
727 /* define some often used types */
728 int_type.t = VT_INT;
730 char_pointer_type.t = VT_BYTE;
731 mk_pointer(&char_pointer_type);
733 func_old_type.t = VT_FUNC;
734 func_old_type.ref = sym_push(SYM_FIELD, &int_type, FUNC_CDECL, FUNC_OLD);
736 #if defined(TCC_ARM_EABI) && defined(TCC_ARM_VFP)
737 float_type.t = VT_FLOAT;
738 double_type.t = VT_DOUBLE;
740 func_float_type.t = VT_FUNC;
741 func_float_type.ref = sym_push(SYM_FIELD, &float_type, FUNC_CDECL, FUNC_OLD);
742 func_double_type.t = VT_FUNC;
743 func_double_type.ref = sym_push(SYM_FIELD, &double_type, FUNC_CDECL, FUNC_OLD);
744 #endif
746 #if 0
747 /* define 'void *alloca(unsigned int)' builtin function */
749 Sym *s1;
751 p = anon_sym++;
752 sym = sym_push(p, mk_pointer(VT_VOID), FUNC_CDECL, FUNC_NEW);
753 s1 = sym_push(SYM_FIELD, VT_UNSIGNED | VT_INT, 0, 0);
754 s1->next = NULL;
755 sym->next = s1;
756 sym_push(TOK_alloca, VT_FUNC | (p << VT_STRUCT_SHIFT), VT_CONST, 0);
758 #endif
760 define_start = define_stack;
761 nocode_wanted = 1;
762 pvtop = vtop;
764 if (setjmp(s1->error_jmp_buf) == 0) {
765 s1->nb_errors = 0;
766 s1->error_set_jmp_enabled = 1;
768 ch = file->buf_ptr[0];
769 tok_flags = TOK_FLAG_BOL | TOK_FLAG_BOF;
770 parse_flags = PARSE_FLAG_PREPROCESS | PARSE_FLAG_TOK_NUM;
771 next();
772 decl(VT_CONST);
773 if (tok != TOK_EOF)
774 expect("declaration");
776 /* end of translation unit info */
777 if (s1->do_debug) {
778 put_stabs_r(NULL, N_SO, 0, 0,
779 text_section->data_offset, text_section, section_sym);
782 s1->error_set_jmp_enabled = 0;
784 /* reset define stack, but leave -Dsymbols (may be incorrect if
785 they are undefined) */
786 free_defines(define_start);
788 gen_inline_functions();
790 sym_pop(&global_stack, NULL);
791 sym_pop(&local_stack, NULL);
792 if (pvtop != vtop)
793 warning("internal compiler error: vstack leak? (%d)", vtop - pvtop);
795 return s1->nb_errors != 0 ? -1 : 0;
798 LIBTCCAPI int tcc_compile_string(TCCState *s, const char *str)
800 int len, ret;
801 len = strlen(str);
803 tcc_open_bf(s, "<string>", len);
804 memcpy(file->buffer, str, len);
805 ret = tcc_compile(s);
806 tcc_close();
807 return ret;
810 /* define a preprocessor symbol. A value can also be provided with the '=' operator */
811 LIBTCCAPI void tcc_define_symbol(TCCState *s1, const char *sym, const char *value)
813 int len1, len2;
814 /* default value */
815 if (!value)
816 value = "1";
817 len1 = strlen(sym);
818 len2 = strlen(value);
820 /* init file structure */
821 tcc_open_bf(s1, "<define>", len1 + len2 + 1);
822 memcpy(file->buffer, sym, len1);
823 file->buffer[len1] = ' ';
824 memcpy(file->buffer + len1 + 1, value, len2);
826 /* parse with define parser */
827 ch = file->buf_ptr[0];
828 next_nomacro();
829 parse_define();
831 tcc_close();
834 /* undefine a preprocessor symbol */
835 LIBTCCAPI void tcc_undefine_symbol(TCCState *s1, const char *sym)
837 TokenSym *ts;
838 Sym *s;
839 ts = tok_alloc(sym, strlen(sym));
840 s = define_find(ts->tok);
841 /* undefine symbol by putting an invalid name */
842 if (s)
843 define_undef(s);
846 static void tcc_cleanup(void)
848 int i, n;
850 if (NULL == tcc_state)
851 return;
852 tcc_state = NULL;
854 /* free -D defines */
855 free_defines(NULL);
857 /* free tokens */
858 n = tok_ident - TOK_IDENT;
859 for(i = 0; i < n; i++)
860 tcc_free(table_ident[i]);
861 tcc_free(table_ident);
863 /* free sym_pools */
864 dynarray_reset(&sym_pools, &nb_sym_pools);
865 /* string buffer */
866 cstr_free(&tokcstr);
867 /* reset symbol stack */
868 sym_free_first = NULL;
869 /* cleanup from error/setjmp */
870 macro_ptr = NULL;
873 LIBTCCAPI TCCState *tcc_new(void)
875 TCCState *s;
876 char buffer[100];
877 int a,b,c;
879 tcc_cleanup();
881 s = tcc_mallocz(sizeof(TCCState));
882 if (!s)
883 return NULL;
884 tcc_state = s;
885 #ifdef _WIN32
886 tcc_set_lib_path_w32(s);
887 #else
888 tcc_set_lib_path(s, CONFIG_TCCDIR);
889 #endif
890 s->output_type = TCC_OUTPUT_MEMORY;
891 preprocess_new();
892 s->include_stack_ptr = s->include_stack;
894 /* we add dummy defines for some special macros to speed up tests
895 and to have working defined() */
896 define_push(TOK___LINE__, MACRO_OBJ, NULL, NULL);
897 define_push(TOK___FILE__, MACRO_OBJ, NULL, NULL);
898 define_push(TOK___DATE__, MACRO_OBJ, NULL, NULL);
899 define_push(TOK___TIME__, MACRO_OBJ, NULL, NULL);
901 /* standard defines */
902 tcc_define_symbol(s, "__STDC__", NULL);
903 tcc_define_symbol(s, "__STDC_VERSION__", "199901L");
904 #if defined(TCC_TARGET_I386)
905 tcc_define_symbol(s, "__i386__", NULL);
906 tcc_define_symbol(s, "__i386", NULL);
907 tcc_define_symbol(s, "i386", NULL);
908 #endif
909 #if defined(TCC_TARGET_X86_64)
910 tcc_define_symbol(s, "__x86_64__", NULL);
911 #endif
912 #if defined(TCC_TARGET_ARM)
913 tcc_define_symbol(s, "__ARM_ARCH_4__", NULL);
914 tcc_define_symbol(s, "__arm_elf__", NULL);
915 tcc_define_symbol(s, "__arm_elf", NULL);
916 tcc_define_symbol(s, "arm_elf", NULL);
917 tcc_define_symbol(s, "__arm__", NULL);
918 tcc_define_symbol(s, "__arm", NULL);
919 tcc_define_symbol(s, "arm", NULL);
920 tcc_define_symbol(s, "__APCS_32__", NULL);
921 #endif
922 #ifdef TCC_TARGET_PE
923 tcc_define_symbol(s, "_WIN32", NULL);
924 #ifdef TCC_TARGET_X86_64
925 tcc_define_symbol(s, "_WIN64", NULL);
926 #endif
927 #else
928 tcc_define_symbol(s, "__unix__", NULL);
929 tcc_define_symbol(s, "__unix", NULL);
930 tcc_define_symbol(s, "unix", NULL);
931 #if defined(__FreeBSD__)
932 #define str(s) #s
933 tcc_define_symbol(s, "__FreeBSD__", str( __FreeBSD__));
934 #undef str
935 #endif
936 #if defined(__FreeBSD_kernel__)
937 tcc_define_symbol(s, "__FreeBSD_kernel__", NULL);
938 #endif
939 #if defined(__linux)
940 tcc_define_symbol(s, "__linux__", NULL);
941 tcc_define_symbol(s, "__linux", NULL);
942 #endif
943 #endif
944 /* tiny C specific defines */
945 sscanf(TCC_VERSION, "%d.%d.%d", &a, &b, &c);
946 sprintf(buffer, "%d", a*10000 + b*100 + c);
947 tcc_define_symbol(s, "__TINYC__", buffer);
949 /* tiny C & gcc defines */
950 #if defined TCC_TARGET_PE && defined TCC_TARGET_X86_64
951 tcc_define_symbol(s, "__SIZE_TYPE__", "unsigned long long");
952 tcc_define_symbol(s, "__PTRDIFF_TYPE__", "long long");
953 #else
954 tcc_define_symbol(s, "__SIZE_TYPE__", "unsigned long");
955 tcc_define_symbol(s, "__PTRDIFF_TYPE__", "long");
956 #endif
958 #ifdef TCC_TARGET_PE
959 tcc_define_symbol(s, "__WCHAR_TYPE__", "unsigned short");
960 #else
961 tcc_define_symbol(s, "__WCHAR_TYPE__", "int");
962 #endif
964 /* glibc defines */
965 tcc_define_symbol(s, "__REDIRECT_NTH(name, proto, alias)", "name proto __asm__ (#alias) __THROW");
967 #ifndef TCC_TARGET_PE
968 /* default library paths */
969 tcc_add_library_path(s, CONFIG_TCC_CRT_PREFIX);
970 tcc_add_library_path(s, CONFIG_SYSROOT CONFIG_TCC_LDDIR);
971 tcc_add_library_path(s, CONFIG_SYSROOT "/usr/local"CONFIG_TCC_LDDIR);
972 #endif
974 /* no section zero */
975 dynarray_add((void ***)&s->sections, &s->nb_sections, NULL);
977 /* create standard sections */
978 text_section = new_section(s, ".text", SHT_PROGBITS, SHF_ALLOC | SHF_EXECINSTR);
979 data_section = new_section(s, ".data", SHT_PROGBITS, SHF_ALLOC | SHF_WRITE);
980 bss_section = new_section(s, ".bss", SHT_NOBITS, SHF_ALLOC | SHF_WRITE);
982 /* symbols are always generated for linking stage */
983 symtab_section = new_symtab(s, ".symtab", SHT_SYMTAB, 0,
984 ".strtab",
985 ".hashtab", SHF_PRIVATE);
986 strtab_section = symtab_section->link;
988 /* private symbol table for dynamic symbols */
989 s->dynsymtab_section = new_symtab(s, ".dynsymtab", SHT_SYMTAB, SHF_PRIVATE,
990 ".dynstrtab",
991 ".dynhashtab", SHF_PRIVATE);
992 s->alacarte_link = 1;
993 s->nocommon = 1;
995 #ifdef CHAR_IS_UNSIGNED
996 s->char_is_unsigned = 1;
997 #endif
998 /* enable this if you want symbols with leading underscore on windows: */
999 #if defined(TCC_TARGET_PE) && 0
1000 s->leading_underscore = 1;
1001 #endif
1002 if (s->section_align == 0)
1003 s->section_align = ELF_PAGE_SIZE;
1004 #ifdef TCC_TARGET_I386
1005 s->seg_size = 32;
1006 #endif
1007 return s;
1010 LIBTCCAPI void tcc_delete(TCCState *s1)
1012 int i;
1014 tcc_cleanup();
1016 /* free all sections */
1017 for(i = 1; i < s1->nb_sections; i++)
1018 free_section(s1->sections[i]);
1019 dynarray_reset(&s1->sections, &s1->nb_sections);
1021 for(i = 0; i < s1->nb_priv_sections; i++)
1022 free_section(s1->priv_sections[i]);
1023 dynarray_reset(&s1->priv_sections, &s1->nb_priv_sections);
1025 /* free any loaded DLLs */
1026 for ( i = 0; i < s1->nb_loaded_dlls; i++) {
1027 DLLReference *ref = s1->loaded_dlls[i];
1028 if ( ref->handle )
1029 dlclose(ref->handle);
1032 /* free loaded dlls array */
1033 dynarray_reset(&s1->loaded_dlls, &s1->nb_loaded_dlls);
1035 /* free library paths */
1036 dynarray_reset(&s1->library_paths, &s1->nb_library_paths);
1038 /* free include paths */
1039 dynarray_reset(&s1->cached_includes, &s1->nb_cached_includes);
1040 dynarray_reset(&s1->include_paths, &s1->nb_include_paths);
1041 dynarray_reset(&s1->sysinclude_paths, &s1->nb_sysinclude_paths);
1043 tcc_free(s1->tcc_lib_path);
1045 dynarray_reset(&s1->input_files, &s1->nb_input_files);
1046 dynarray_reset(&s1->input_libs, &s1->nb_input_libs);
1047 dynarray_reset(&s1->target_deps, &s1->nb_target_deps);
1049 #ifdef HAVE_SELINUX
1050 munmap (s1->write_mem, s1->mem_size);
1051 munmap (s1->runtime_mem, s1->mem_size);
1052 #else
1053 tcc_free(s1->runtime_mem);
1054 #endif
1055 tcc_free(s1);
1058 LIBTCCAPI int tcc_add_include_path(TCCState *s1, const char *pathname)
1060 char *pathname1;
1062 pathname1 = tcc_strdup(pathname);
1063 dynarray_add((void ***)&s1->include_paths, &s1->nb_include_paths, pathname1);
1064 return 0;
1067 LIBTCCAPI int tcc_add_sysinclude_path(TCCState *s1, const char *pathname)
1069 char *pathname1;
1071 pathname1 = tcc_strdup(pathname);
1072 dynarray_add((void ***)&s1->sysinclude_paths, &s1->nb_sysinclude_paths, pathname1);
1073 return 0;
1076 ST_FUNC int tcc_add_file_internal(TCCState *s1, const char *filename, int flags)
1078 const char *ext;
1079 ElfW(Ehdr) ehdr;
1080 int fd, ret, size;
1082 /* find source file type with extension */
1083 ext = tcc_fileextension(filename);
1084 if (ext[0])
1085 ext++;
1087 #ifdef CONFIG_TCC_ASM
1088 /* if .S file, define __ASSEMBLER__ like gcc does */
1089 if (!strcmp(ext, "S"))
1090 tcc_define_symbol(s1, "__ASSEMBLER__", NULL);
1091 #endif
1093 /* open the file */
1094 ret = tcc_open(s1, filename);
1095 if (ret < 0) {
1096 if (flags & AFF_PRINT_ERROR)
1097 error_noabort("file '%s' not found", filename);
1098 return ret;
1101 /* update target deps */
1102 dynarray_add((void ***)&s1->target_deps, &s1->nb_target_deps,
1103 tcc_strdup(filename));
1105 if (flags & AFF_PREPROCESS) {
1106 ret = tcc_preprocess(s1);
1107 goto the_end;
1110 if (!ext[0] || !PATHCMP(ext, "c")) {
1111 /* C file assumed */
1112 ret = tcc_compile(s1);
1113 goto the_end;
1116 #ifdef CONFIG_TCC_ASM
1117 if (!strcmp(ext, "S")) {
1118 /* preprocessed assembler */
1119 ret = tcc_assemble(s1, 1);
1120 goto the_end;
1123 if (!strcmp(ext, "s")) {
1124 /* non preprocessed assembler */
1125 ret = tcc_assemble(s1, 0);
1126 goto the_end;
1128 #endif
1130 fd = file->fd;
1131 /* assume executable format: auto guess file type */
1132 size = read(fd, &ehdr, sizeof(ehdr));
1133 lseek(fd, 0, SEEK_SET);
1134 if (size <= 0) {
1135 error_noabort("could not read header");
1136 goto the_end;
1139 if (size == sizeof(ehdr) &&
1140 ehdr.e_ident[0] == ELFMAG0 &&
1141 ehdr.e_ident[1] == ELFMAG1 &&
1142 ehdr.e_ident[2] == ELFMAG2 &&
1143 ehdr.e_ident[3] == ELFMAG3) {
1145 /* do not display line number if error */
1146 file->line_num = 0;
1147 if (ehdr.e_type == ET_REL) {
1148 ret = tcc_load_object_file(s1, fd, 0);
1149 goto the_end;
1152 #ifndef TCC_TARGET_PE
1153 if (ehdr.e_type == ET_DYN) {
1154 if (s1->output_type == TCC_OUTPUT_MEMORY) {
1155 void *h;
1156 h = dlopen(filename, RTLD_GLOBAL | RTLD_LAZY);
1157 if (h)
1158 ret = 0;
1159 } else {
1160 ret = tcc_load_dll(s1, fd, filename,
1161 (flags & AFF_REFERENCED_DLL) != 0);
1163 goto the_end;
1165 #endif
1166 error_noabort("unrecognized ELF file");
1167 goto the_end;
1170 if (memcmp((char *)&ehdr, ARMAG, 8) == 0) {
1171 file->line_num = 0; /* do not display line number if error */
1172 ret = tcc_load_archive(s1, fd);
1173 goto the_end;
1176 #ifdef TCC_TARGET_COFF
1177 if (*(uint16_t *)(&ehdr) == COFF_C67_MAGIC) {
1178 ret = tcc_load_coff(s1, fd);
1179 goto the_end;
1181 #endif
1183 #ifdef TCC_TARGET_PE
1184 ret = pe_load_file(s1, filename, fd);
1185 #else
1186 /* as GNU ld, consider it is an ld script if not recognized */
1187 ret = tcc_load_ldscript(s1);
1188 #endif
1189 if (ret < 0)
1190 error_noabort("unrecognized file type");
1192 the_end:
1193 tcc_close();
1194 return ret;
1197 LIBTCCAPI int tcc_add_file(TCCState *s, const char *filename)
1199 dynarray_add((void ***)&s->input_files, &s->nb_input_files, tcc_strdup(filename));
1201 if (s->output_type == TCC_OUTPUT_PREPROCESS)
1202 return tcc_add_file_internal(s, filename, AFF_PRINT_ERROR | AFF_PREPROCESS);
1203 else
1204 return tcc_add_file_internal(s, filename, AFF_PRINT_ERROR);
1207 LIBTCCAPI int tcc_add_library_path(TCCState *s, const char *pathname)
1209 char *pathname1;
1211 pathname1 = tcc_strdup(pathname);
1212 dynarray_add((void ***)&s->library_paths, &s->nb_library_paths, pathname1);
1213 return 0;
1216 /* find and load a dll. Return non zero if not found */
1217 /* XXX: add '-rpath' option support ? */
1218 ST_FUNC int tcc_add_dll(TCCState *s, const char *filename, int flags)
1220 char buf[1024];
1221 int i;
1223 for(i = 0; i < s->nb_library_paths; i++) {
1224 snprintf(buf, sizeof(buf), "%s/%s",
1225 s->library_paths[i], filename);
1226 if (tcc_add_file_internal(s, buf, flags) == 0)
1227 return 0;
1229 return -1;
1232 /* the library name is the same as the argument of the '-l' option */
1233 LIBTCCAPI int tcc_add_library(TCCState *s, const char *libraryname)
1235 char buf[1024];
1236 int i;
1238 dynarray_add((void ***)&s->input_libs, &s->nb_input_libs, tcc_strdup(libraryname));
1240 /* first we look for the dynamic library if not static linking */
1241 if (!s->static_link) {
1242 #ifdef TCC_TARGET_PE
1243 if (pe_add_dll(s, libraryname) == 0)
1244 return 0;
1245 #else
1246 snprintf(buf, sizeof(buf), "lib%s.so", libraryname);
1247 if (tcc_add_dll(s, buf, 0) == 0)
1248 return 0;
1249 #endif
1251 /* then we look for the static library */
1252 for(i = 0; i < s->nb_library_paths; i++) {
1253 snprintf(buf, sizeof(buf), "%s/lib%s.a",
1254 s->library_paths[i], libraryname);
1255 if (tcc_add_file_internal(s, buf, 0) == 0)
1256 return 0;
1258 return -1;
1261 LIBTCCAPI int tcc_add_symbol(TCCState *s, const char *name, const void *val)
1263 #ifdef TCC_TARGET_PE
1264 pe_putimport(s, 0, name, val);
1265 #else
1266 add_elf_sym(symtab_section, (uplong)val, 0,
1267 ELFW(ST_INFO)(STB_GLOBAL, STT_NOTYPE), 0,
1268 SHN_ABS, name);
1269 #endif
1270 return 0;
1273 LIBTCCAPI int tcc_set_output_type(TCCState *s, int output_type)
1275 char buf[1024];
1277 s->output_type = output_type;
1279 if (!s->nostdinc) {
1280 /* default include paths */
1281 /* -isystem paths have already been handled */
1282 #ifndef TCC_TARGET_PE
1283 tcc_add_sysinclude_path(s, CONFIG_SYSROOT "/usr/local/include");
1284 tcc_add_sysinclude_path(s, CONFIG_SYSROOT "/usr/include");
1285 #endif
1286 snprintf(buf, sizeof(buf), "%s/include", s->tcc_lib_path);
1287 tcc_add_sysinclude_path(s, buf);
1288 #ifdef TCC_TARGET_PE
1289 snprintf(buf, sizeof(buf), "%s/include/winapi", s->tcc_lib_path);
1290 tcc_add_sysinclude_path(s, buf);
1291 #endif
1294 /* if bound checking, then add corresponding sections */
1295 #ifdef CONFIG_TCC_BCHECK
1296 if (s->do_bounds_check) {
1297 /* define symbol */
1298 tcc_define_symbol(s, "__BOUNDS_CHECKING_ON", NULL);
1299 /* create bounds sections */
1300 bounds_section = new_section(s, ".bounds",
1301 SHT_PROGBITS, SHF_ALLOC);
1302 lbounds_section = new_section(s, ".lbounds",
1303 SHT_PROGBITS, SHF_ALLOC);
1305 #endif
1307 if (s->char_is_unsigned) {
1308 tcc_define_symbol(s, "__CHAR_UNSIGNED__", NULL);
1311 /* add debug sections */
1312 if (s->do_debug) {
1313 /* stab symbols */
1314 stab_section = new_section(s, ".stab", SHT_PROGBITS, 0);
1315 stab_section->sh_entsize = sizeof(Stab_Sym);
1316 stabstr_section = new_section(s, ".stabstr", SHT_STRTAB, 0);
1317 put_elf_str(stabstr_section, "");
1318 stab_section->link = stabstr_section;
1319 /* put first entry */
1320 put_stabs("", 0, 0, 0, 0);
1323 /* add libc crt1/crti objects */
1324 #ifndef TCC_TARGET_PE
1325 if ((output_type == TCC_OUTPUT_EXE || output_type == TCC_OUTPUT_DLL) &&
1326 !s->nostdlib) {
1327 if (output_type != TCC_OUTPUT_DLL)
1328 tcc_add_file(s, CONFIG_TCC_CRT_PREFIX "/crt1.o");
1329 tcc_add_file(s, CONFIG_TCC_CRT_PREFIX "/crti.o");
1331 #endif
1333 #ifdef TCC_TARGET_PE
1334 #ifdef CONFIG_TCC_CROSSLIB
1335 snprintf(buf, sizeof(buf), "%s/" CONFIG_TCC_CROSSLIB, s->tcc_lib_path);
1336 tcc_add_library_path(s, buf);
1337 #endif
1338 snprintf(buf, sizeof(buf), "%s/lib", s->tcc_lib_path);
1339 tcc_add_library_path(s, buf);
1340 #ifdef _WIN32
1341 if (GetSystemDirectory(buf, sizeof buf))
1342 tcc_add_library_path(s, buf);
1343 #endif
1344 #endif
1346 return 0;
1349 #define WD_ALL 0x0001 /* warning is activated when using -Wall */
1350 #define FD_INVERT 0x0002 /* invert value before storing */
1352 typedef struct FlagDef {
1353 uint16_t offset;
1354 uint16_t flags;
1355 const char *name;
1356 } FlagDef;
1358 static const FlagDef warning_defs[] = {
1359 { offsetof(TCCState, warn_unsupported), 0, "unsupported" },
1360 { offsetof(TCCState, warn_write_strings), 0, "write-strings" },
1361 { offsetof(TCCState, warn_error), 0, "error" },
1362 { offsetof(TCCState, warn_implicit_function_declaration), WD_ALL,
1363 "implicit-function-declaration" },
1366 ST_FUNC int set_flag(TCCState *s, const FlagDef *flags, int nb_flags,
1367 const char *name, int value)
1369 int i;
1370 const FlagDef *p;
1371 const char *r;
1373 r = name;
1374 if (r[0] == 'n' && r[1] == 'o' && r[2] == '-') {
1375 r += 3;
1376 value = !value;
1378 for(i = 0, p = flags; i < nb_flags; i++, p++) {
1379 if (!strcmp(r, p->name))
1380 goto found;
1382 return -1;
1383 found:
1384 if (p->flags & FD_INVERT)
1385 value = !value;
1386 *(int *)((uint8_t *)s + p->offset) = value;
1387 return 0;
1390 /* set/reset a warning */
1391 LIBTCCAPI int tcc_set_warning(TCCState *s, const char *warning_name, int value)
1393 int i;
1394 const FlagDef *p;
1396 if (!strcmp(warning_name, "all")) {
1397 for(i = 0, p = warning_defs; i < countof(warning_defs); i++, p++) {
1398 if (p->flags & WD_ALL)
1399 *(int *)((uint8_t *)s + p->offset) = 1;
1401 return 0;
1402 } else {
1403 return set_flag(s, warning_defs, countof(warning_defs),
1404 warning_name, value);
1408 static const FlagDef flag_defs[] = {
1409 { offsetof(TCCState, char_is_unsigned), 0, "unsigned-char" },
1410 { offsetof(TCCState, char_is_unsigned), FD_INVERT, "signed-char" },
1411 { offsetof(TCCState, nocommon), FD_INVERT, "common" },
1412 { offsetof(TCCState, leading_underscore), 0, "leading-underscore" },
1415 /* set/reset a flag */
1416 PUB_FUNC int tcc_set_flag(TCCState *s, const char *flag_name, int value)
1418 return set_flag(s, flag_defs, countof(flag_defs),
1419 flag_name, value);
1423 static int strstart(const char *str, const char *val, char **ptr)
1425 const char *p, *q;
1426 p = str;
1427 q = val;
1428 while (*q != '\0') {
1429 if (*p != *q)
1430 return 0;
1431 p++;
1432 q++;
1434 if (ptr)
1435 *ptr = (char *) p;
1436 return 1;
1440 /* Like strstart, but automatically takes into account that ld options can
1442 * - start with double or single dash (e.g. '--soname' or '-soname')
1443 * - arguments can be given as separate or after '=' (e.g. '-Wl,-soname,x.so'
1444 * or '-Wl,-soname=x.so')
1446 * you provide `val` always in 'option[=]' form (no leading -)
1448 static int link_option(const char *str, const char *val, char **ptr)
1450 const char *p, *q;
1452 /* there should be 1 or 2 dashes */
1453 if (*str++ != '-')
1454 return 0;
1455 if (*str == '-')
1456 str++;
1458 /* then str & val should match (potentialy up to '=') */
1459 p = str;
1460 q = val;
1462 while (*q != '\0' && *q != '=') {
1463 if (*p != *q)
1464 return 0;
1465 p++;
1466 q++;
1469 /* '=' near eos means ',' or '=' is ok */
1470 if (*q == '=') {
1471 if (*p != ',' && *p != '=')
1472 return 0;
1473 p++;
1474 q++;
1477 if (ptr)
1478 *ptr = (char *) p;
1479 return 1;
1483 /* set linker options */
1484 PUB_FUNC const char * tcc_set_linker(TCCState *s, char *option, int multi)
1486 char *p = option;
1487 char *end;
1489 while (option && *option) {
1490 end = NULL;
1491 if (link_option(option, "Bsymbolic", &p)) {
1492 s->symbolic = TRUE;
1493 #ifdef TCC_TARGET_PE
1494 } else if (link_option(option, "file-alignment=", &p)) {
1495 s->pe_file_align = strtoul(p, &end, 16);
1496 #endif
1497 } else if (link_option(option, "fini=", &p)) {
1498 s->fini_symbol = p;
1499 if (s->warn_unsupported)
1500 warning("ignoring -fini %s", p);
1502 } else if (link_option(option, "image-base=", &p)) {
1503 s->text_addr = strtoul(p, &end, 16);
1504 s->has_text_addr = 1;
1505 } else if (link_option(option, "init=", &p)) {
1506 s->init_symbol = p;
1507 if (s->warn_unsupported)
1508 warning("ignoring -init %s", p);
1510 } else if (link_option(option, "oformat=", &p)) {
1511 #if defined(TCC_TARGET_PE)
1512 if (strstart(p, "pe-", NULL)) {
1513 #else
1514 #if defined(TCC_TARGET_X86_64)
1515 if (strstart(p, "elf64-", NULL)) {
1516 #else
1517 if (strstart(p, "elf32-", NULL)) {
1518 #endif
1519 #endif
1520 s->output_format = TCC_OUTPUT_FORMAT_ELF;
1521 } else if (!strcmp(p, "binary")) {
1522 s->output_format = TCC_OUTPUT_FORMAT_BINARY;
1523 } else
1524 #ifdef TCC_TARGET_COFF
1525 if (!strcmp(p, "coff")) {
1526 s->output_format = TCC_OUTPUT_FORMAT_COFF;
1527 } else
1528 #endif
1530 return p;
1533 } else if (link_option(option, "rpath=", &p)) {
1534 s->rpath = p;
1535 } else if (link_option(option, "section-alignment=", &p)) {
1536 s->section_align = strtoul(p, &end, 16);
1537 } else if (link_option(option, "soname=", &p)) {
1538 s->soname = p;
1539 multi = 0;
1540 #ifdef TCC_TARGET_PE
1541 } else if (link_option(option, "subsystem=", &p)) {
1542 #if defined(TCC_TARGET_I386) || defined(TCC_TARGET_X86_64)
1543 if (!strcmp(p, "native")) {
1544 s->pe_subsystem = 1;
1545 } else if (!strcmp(p, "console")) {
1546 s->pe_subsystem = 3;
1547 } else if (!strcmp(p, "gui")) {
1548 s->pe_subsystem = 2;
1549 } else if (!strcmp(p, "posix")) {
1550 s->pe_subsystem = 7;
1551 } else if (!strcmp(p, "efiapp")) {
1552 s->pe_subsystem = 10;
1553 } else if (!strcmp(p, "efiboot")) {
1554 s->pe_subsystem = 11;
1555 } else if (!strcmp(p, "efiruntime")) {
1556 s->pe_subsystem = 12;
1557 } else if (!strcmp(p, "efirom")) {
1558 s->pe_subsystem = 13;
1559 #elif defined(TCC_TARGET_ARM)
1560 if (!strcmp(p, "wince")) {
1561 s->pe_subsystem = 9;
1562 #endif
1563 } else {
1564 return p;
1566 #endif
1568 } else if (link_option(option, "Ttext=", &p)) {
1569 s->text_addr = strtoul(p, &end, 16);
1570 s->has_text_addr = 1;
1572 } else {
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 void set_num_callers(int n)
1612 #ifdef CONFIG_TCC_BACKTRACE
1613 num_callers = n;
1614 #endif
1618 LIBTCCAPI const char *tcc_default_target(TCCState *s)
1620 /* FIXME will break in multithreaded case */
1621 static char outfile_default[1024];
1623 char *ext;
1624 const char *name =
1625 strcmp(s->input_files[0], "-") == 0 ? "a"
1626 : tcc_basename(s->input_files[0]);
1627 pstrcpy(outfile_default, sizeof(outfile_default), name);
1628 ext = tcc_fileextension(outfile_default);
1629 #ifdef TCC_TARGET_PE
1630 if (s->output_type == TCC_OUTPUT_DLL)
1631 strcpy(ext, ".dll");
1632 else
1633 if (s->output_type == TCC_OUTPUT_EXE)
1634 strcpy(ext, ".exe");
1635 else
1636 #endif
1637 if (( (s->output_type == TCC_OUTPUT_OBJ && !s->reloc_output) ||
1638 (s->output_type == TCC_OUTPUT_PREPROCESS) )
1639 && *ext)
1640 strcpy(ext, ".o");
1641 else
1642 pstrcpy(outfile_default, sizeof(outfile_default), "a.out");
1644 return outfile_default;
1648 LIBTCCAPI void tcc_gen_makedeps(TCCState *s, const char *target, const char *filename)
1650 FILE *depout;
1651 char buf[1024], *ext;
1652 int i;
1654 if (!target)
1655 target = tcc_default_target(s);
1657 if (!filename) {
1658 /* compute filename automatically
1659 * dir/file.o -> dir/file.d */
1660 pstrcpy(buf, sizeof(buf), target);
1661 ext = tcc_fileextension(buf);
1662 pstrcpy(ext, sizeof(buf) - (ext-buf), ".d");
1663 filename = buf;
1666 if (s->verbose)
1667 printf("<- %s\n", filename);
1669 /* XXX return err codes instead of error() ? */
1670 depout = fopen(filename, "w");
1671 if (!depout)
1672 error("could not open '%s'", filename);
1674 fprintf(depout, "%s : \\\n", target);
1675 for (i=0; i<s->nb_target_deps; ++i)
1676 fprintf(depout, "\t%s \\\n", s->target_deps[i]);
1677 fprintf(depout, "\n");
1678 fclose(depout);