Fix another corner case with C/asm symtable
[tinycc.git] / libtcc.c
blob092c0ba325b2d617060cba06744087da87905e8f
1 /*
2 * TCC - Tiny C Compiler
4 * Copyright (c) 2001-2004 Fabrice Bellard
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 #include "tcc.h"
23 /********************************************************/
24 /* global variables */
26 /* use GNU C extensions */
27 ST_DATA int gnu_ext = 1;
29 /* use TinyCC extensions */
30 ST_DATA int tcc_ext = 1;
32 /* XXX: get rid of this ASAP */
33 ST_DATA struct TCCState *tcc_state;
35 static int nb_states;
37 /********************************************************/
39 #if ONE_SOURCE
40 #include "tccpp.c"
41 #include "tccgen.c"
42 #include "tccelf.c"
43 #include "tccrun.c"
44 #ifdef TCC_TARGET_I386
45 #include "i386-gen.c"
46 #include "i386-link.c"
47 #include "i386-asm.c"
48 #endif
49 #ifdef TCC_TARGET_ARM
50 #include "arm-gen.c"
51 #include "arm-link.c"
52 #include "arm-asm.c"
53 #endif
54 #ifdef TCC_TARGET_ARM64
55 #include "arm64-gen.c"
56 #include "arm64-link.c"
57 #endif
58 #ifdef TCC_TARGET_C67
59 #include "c67-gen.c"
60 #include "c67-link.c"
61 #include "tcccoff.c"
62 #endif
63 #ifdef TCC_TARGET_X86_64
64 #include "x86_64-gen.c"
65 #include "x86_64-link.c"
66 #include "i386-asm.c"
67 #endif
68 #ifdef CONFIG_TCC_ASM
69 #include "tccasm.c"
70 #endif
71 #ifdef TCC_TARGET_PE
72 #include "tccpe.c"
73 #endif
74 #endif /* ONE_SOURCE */
76 /********************************************************/
77 #ifndef CONFIG_TCC_ASM
78 ST_FUNC void asm_instr(void)
80 tcc_error("inline asm() not supported");
82 ST_FUNC void asm_global_instr(void)
84 tcc_error("inline asm() not supported");
86 #endif
88 /********************************************************/
89 #ifdef _WIN32
90 ST_FUNC char *normalize_slashes(char *path)
92 char *p;
93 for (p = path; *p; ++p)
94 if (*p == '\\')
95 *p = '/';
96 return path;
99 static HMODULE tcc_module;
101 /* on win32, we suppose the lib and includes are at the location of 'tcc.exe' */
102 static void tcc_set_lib_path_w32(TCCState *s)
104 char path[1024], *p;
105 GetModuleFileNameA(tcc_module, path, sizeof path);
106 p = tcc_basename(normalize_slashes(strlwr(path)));
107 if (p > path)
108 --p;
109 *p = 0;
110 tcc_set_lib_path(s, path);
113 #ifdef TCC_TARGET_PE
114 static void tcc_add_systemdir(TCCState *s)
116 char buf[1000];
117 GetSystemDirectory(buf, sizeof buf);
118 tcc_add_library_path(s, normalize_slashes(buf));
120 #endif
122 #ifdef LIBTCC_AS_DLL
123 BOOL WINAPI DllMain (HINSTANCE 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 ST_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 ST_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 ST_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 #ifndef MEM_DEBUG
199 PUB_FUNC void tcc_free(void *ptr)
201 free(ptr);
204 PUB_FUNC void *tcc_malloc(unsigned long size)
206 void *ptr;
207 ptr = malloc(size);
208 if (!ptr && size)
209 tcc_error("memory full (malloc)");
210 return ptr;
213 PUB_FUNC void *tcc_mallocz(unsigned long size)
215 void *ptr;
216 ptr = tcc_malloc(size);
217 memset(ptr, 0, size);
218 return ptr;
221 PUB_FUNC void *tcc_realloc(void *ptr, unsigned long size)
223 void *ptr1;
224 ptr1 = realloc(ptr, size);
225 if (!ptr1 && size)
226 tcc_error("memory full (realloc)");
227 return ptr1;
230 PUB_FUNC char *tcc_strdup(const char *str)
232 char *ptr;
233 ptr = tcc_malloc(strlen(str) + 1);
234 strcpy(ptr, str);
235 return ptr;
238 PUB_FUNC void tcc_memcheck(void)
242 #else
244 #define MEM_DEBUG_MAGIC1 0xFEEDDEB1
245 #define MEM_DEBUG_MAGIC2 0xFEEDDEB2
246 #define MEM_DEBUG_MAGIC3 0xFEEDDEB3
247 #define MEM_DEBUG_FILE_LEN 40
248 #define MEM_DEBUG_CHECK3(header) \
249 ((mem_debug_header_t*)((char*)header + header->size))->magic3
250 #define MEM_USER_PTR(header) \
251 ((char *)header + offsetof(mem_debug_header_t, magic3))
252 #define MEM_HEADER_PTR(ptr) \
253 (mem_debug_header_t *)((char*)ptr - offsetof(mem_debug_header_t, magic3))
255 struct mem_debug_header {
256 unsigned magic1;
257 unsigned size;
258 struct mem_debug_header *prev;
259 struct mem_debug_header *next;
260 int line_num;
261 char file_name[MEM_DEBUG_FILE_LEN + 1];
262 unsigned magic2;
263 ALIGNED(16) unsigned magic3;
266 typedef struct mem_debug_header mem_debug_header_t;
268 static mem_debug_header_t *mem_debug_chain;
269 static unsigned mem_cur_size;
270 static unsigned mem_max_size;
272 static mem_debug_header_t *malloc_check(void *ptr, const char *msg)
274 mem_debug_header_t * header = MEM_HEADER_PTR(ptr);
275 if (header->magic1 != MEM_DEBUG_MAGIC1 ||
276 header->magic2 != MEM_DEBUG_MAGIC2 ||
277 MEM_DEBUG_CHECK3(header) != MEM_DEBUG_MAGIC3 ||
278 header->size == (unsigned)-1) {
279 fprintf(stderr, "%s check failed\n", msg);
280 if (header->magic1 == MEM_DEBUG_MAGIC1)
281 fprintf(stderr, "%s:%u: block allocated here.\n",
282 header->file_name, header->line_num);
283 exit(1);
285 return header;
288 PUB_FUNC void *tcc_malloc_debug(unsigned long size, const char *file, int line)
290 int ofs;
291 mem_debug_header_t *header;
293 header = malloc(sizeof(mem_debug_header_t) + size);
294 if (!header)
295 tcc_error("memory full (malloc)");
297 header->magic1 = MEM_DEBUG_MAGIC1;
298 header->magic2 = MEM_DEBUG_MAGIC2;
299 header->size = size;
300 MEM_DEBUG_CHECK3(header) = MEM_DEBUG_MAGIC3;
301 header->line_num = line;
302 ofs = strlen(file) - MEM_DEBUG_FILE_LEN;
303 strncpy(header->file_name, file + (ofs > 0 ? ofs : 0), MEM_DEBUG_FILE_LEN);
304 header->file_name[MEM_DEBUG_FILE_LEN] = 0;
306 header->next = mem_debug_chain;
307 header->prev = NULL;
308 if (header->next)
309 header->next->prev = header;
310 mem_debug_chain = header;
312 mem_cur_size += size;
313 if (mem_cur_size > mem_max_size)
314 mem_max_size = mem_cur_size;
316 return MEM_USER_PTR(header);
319 PUB_FUNC void tcc_free_debug(void *ptr)
321 mem_debug_header_t *header;
322 if (!ptr)
323 return;
324 header = malloc_check(ptr, "tcc_free");
325 mem_cur_size -= header->size;
326 header->size = (unsigned)-1;
327 if (header->next)
328 header->next->prev = header->prev;
329 if (header->prev)
330 header->prev->next = header->next;
331 if (header == mem_debug_chain)
332 mem_debug_chain = header->next;
333 free(header);
336 PUB_FUNC void *tcc_mallocz_debug(unsigned long size, const char *file, int line)
338 void *ptr;
339 ptr = tcc_malloc_debug(size,file,line);
340 memset(ptr, 0, size);
341 return ptr;
344 PUB_FUNC void *tcc_realloc_debug(void *ptr, unsigned long size, const char *file, int line)
346 mem_debug_header_t *header;
347 int mem_debug_chain_update = 0;
348 if (!ptr)
349 return tcc_malloc_debug(size, file, line);
350 header = malloc_check(ptr, "tcc_realloc");
351 mem_cur_size -= header->size;
352 mem_debug_chain_update = (header == mem_debug_chain);
353 header = realloc(header, sizeof(mem_debug_header_t) + size);
354 if (!header)
355 tcc_error("memory full (realloc)");
356 header->size = size;
357 MEM_DEBUG_CHECK3(header) = MEM_DEBUG_MAGIC3;
358 if (header->next)
359 header->next->prev = header;
360 if (header->prev)
361 header->prev->next = header;
362 if (mem_debug_chain_update)
363 mem_debug_chain = header;
364 mem_cur_size += size;
365 if (mem_cur_size > mem_max_size)
366 mem_max_size = mem_cur_size;
367 return MEM_USER_PTR(header);
370 PUB_FUNC char *tcc_strdup_debug(const char *str, const char *file, int line)
372 char *ptr;
373 ptr = tcc_malloc_debug(strlen(str) + 1, file, line);
374 strcpy(ptr, str);
375 return ptr;
378 PUB_FUNC void tcc_memcheck(void)
380 if (mem_cur_size) {
381 mem_debug_header_t *header = mem_debug_chain;
382 fprintf(stderr, "MEM_DEBUG: mem_leak= %d bytes, mem_max_size= %d bytes\n",
383 mem_cur_size, mem_max_size);
384 while (header) {
385 fprintf(stderr, "%s:%u: error: %u bytes leaked\n",
386 header->file_name, header->line_num, header->size);
387 header = header->next;
389 #if MEM_DEBUG-0 == 2
390 exit(2);
391 #endif
394 #endif /* MEM_DEBUG */
396 #define free(p) use_tcc_free(p)
397 #define malloc(s) use_tcc_malloc(s)
398 #define realloc(p, s) use_tcc_realloc(p, s)
400 /********************************************************/
401 /* dynarrays */
403 ST_FUNC void dynarray_add(void *ptab, int *nb_ptr, void *data)
405 int nb, nb_alloc;
406 void **pp;
408 nb = *nb_ptr;
409 pp = *(void ***)ptab;
410 /* every power of two we double array size */
411 if ((nb & (nb - 1)) == 0) {
412 if (!nb)
413 nb_alloc = 1;
414 else
415 nb_alloc = nb * 2;
416 pp = tcc_realloc(pp, nb_alloc * sizeof(void *));
417 *(void***)ptab = pp;
419 pp[nb++] = data;
420 *nb_ptr = nb;
423 ST_FUNC void dynarray_reset(void *pp, int *n)
425 void **p;
426 for (p = *(void***)pp; *n; ++p, --*n)
427 if (*p)
428 tcc_free(*p);
429 tcc_free(*(void**)pp);
430 *(void**)pp = NULL;
433 static void tcc_split_path(TCCState *s, void *p_ary, int *p_nb_ary, const char *in)
435 const char *p;
436 do {
437 int c;
438 CString str;
440 cstr_new(&str);
441 for (p = in; c = *p, c != '\0' && c != PATHSEP[0]; ++p) {
442 if (c == '{' && p[1] && p[2] == '}') {
443 c = p[1], p += 2;
444 if (c == 'B')
445 cstr_cat(&str, s->tcc_lib_path, -1);
446 } else {
447 cstr_ccat(&str, c);
450 if (str.size) {
451 cstr_ccat(&str, '\0');
452 dynarray_add(p_ary, p_nb_ary, tcc_strdup(str.data));
454 cstr_free(&str);
455 in = p+1;
456 } while (*p);
459 /********************************************************/
461 static void strcat_vprintf(char *buf, int buf_size, const char *fmt, va_list ap)
463 int len;
464 len = strlen(buf);
465 vsnprintf(buf + len, buf_size - len, fmt, ap);
468 static void strcat_printf(char *buf, int buf_size, const char *fmt, ...)
470 va_list ap;
471 va_start(ap, fmt);
472 strcat_vprintf(buf, buf_size, fmt, ap);
473 va_end(ap);
476 static void error1(TCCState *s1, int is_warning, const char *fmt, va_list ap)
478 char buf[2048];
479 BufferedFile **pf, *f;
481 buf[0] = '\0';
482 /* use upper file if inline ":asm:" or token ":paste:" */
483 for (f = file; f && f->filename[0] == ':'; f = f->prev)
485 if (f) {
486 for(pf = s1->include_stack; pf < s1->include_stack_ptr; pf++)
487 strcat_printf(buf, sizeof(buf), "In file included from %s:%d:\n",
488 (*pf)->filename, (*pf)->line_num);
489 if (f->line_num > 0) {
490 strcat_printf(buf, sizeof(buf), "%s:%d: ",
491 f->filename, f->line_num - !!(tok_flags & TOK_FLAG_BOL));
492 } else {
493 strcat_printf(buf, sizeof(buf), "%s: ",
494 f->filename);
496 } else {
497 strcat_printf(buf, sizeof(buf), "tcc: ");
499 if (is_warning)
500 strcat_printf(buf, sizeof(buf), "warning: ");
501 else
502 strcat_printf(buf, sizeof(buf), "error: ");
503 strcat_vprintf(buf, sizeof(buf), fmt, ap);
505 if (!s1->error_func) {
506 /* default case: stderr */
507 if (s1->output_type == TCC_OUTPUT_PREPROCESS && s1->ppfp == stdout)
508 /* print a newline during tcc -E */
509 printf("\n"), fflush(stdout);
510 fflush(stdout); /* flush -v output */
511 fprintf(stderr, "%s\n", buf);
512 fflush(stderr); /* print error/warning now (win32) */
513 } else {
514 s1->error_func(s1->error_opaque, buf);
516 if (!is_warning || s1->warn_error)
517 s1->nb_errors++;
520 LIBTCCAPI void tcc_set_error_func(TCCState *s, void *error_opaque,
521 void (*error_func)(void *opaque, const char *msg))
523 s->error_opaque = error_opaque;
524 s->error_func = error_func;
527 /* error without aborting current compilation */
528 PUB_FUNC void tcc_error_noabort(const char *fmt, ...)
530 TCCState *s1 = tcc_state;
531 va_list ap;
533 va_start(ap, fmt);
534 error1(s1, 0, fmt, ap);
535 va_end(ap);
538 PUB_FUNC void tcc_error(const char *fmt, ...)
540 TCCState *s1 = tcc_state;
541 va_list ap;
543 va_start(ap, fmt);
544 error1(s1, 0, fmt, ap);
545 va_end(ap);
546 /* better than nothing: in some cases, we accept to handle errors */
547 if (s1->error_set_jmp_enabled) {
548 longjmp(s1->error_jmp_buf, 1);
549 } else {
550 /* XXX: eliminate this someday */
551 exit(1);
555 PUB_FUNC void tcc_warning(const char *fmt, ...)
557 TCCState *s1 = tcc_state;
558 va_list ap;
560 if (s1->warn_none)
561 return;
563 va_start(ap, fmt);
564 error1(s1, 1, fmt, ap);
565 va_end(ap);
568 /********************************************************/
569 /* I/O layer */
571 ST_FUNC void tcc_open_bf(TCCState *s1, const char *filename, int initlen)
573 BufferedFile *bf;
574 int buflen = initlen ? initlen : IO_BUF_SIZE;
576 bf = tcc_mallocz(sizeof(BufferedFile) + buflen);
577 bf->buf_ptr = bf->buffer;
578 bf->buf_end = bf->buffer + initlen;
579 bf->buf_end[0] = CH_EOB; /* put eob symbol */
580 pstrcpy(bf->filename, sizeof(bf->filename), filename);
581 bf->true_filename = bf->filename;
582 bf->line_num = 1;
583 bf->ifdef_stack_ptr = s1->ifdef_stack_ptr;
584 bf->fd = -1;
585 bf->prev = file;
586 file = bf;
587 tok_flags = TOK_FLAG_BOL | TOK_FLAG_BOF;
590 ST_FUNC void tcc_close(void)
592 BufferedFile *bf = file;
593 if (bf->fd > 0) {
594 close(bf->fd);
595 total_lines += bf->line_num;
597 if (bf->true_filename != bf->filename)
598 tcc_free(bf->true_filename);
599 file = bf->prev;
600 tcc_free(bf);
603 ST_FUNC int tcc_open(TCCState *s1, const char *filename)
605 int fd;
606 if (strcmp(filename, "-") == 0)
607 fd = 0, filename = "<stdin>";
608 else
609 fd = open(filename, O_RDONLY | O_BINARY);
610 if ((s1->verbose == 2 && fd >= 0) || s1->verbose == 3)
611 printf("%s %*s%s\n", fd < 0 ? "nf":"->",
612 (int)(s1->include_stack_ptr - s1->include_stack), "", filename);
613 if (fd < 0)
614 return -1;
615 tcc_open_bf(s1, filename, 0);
616 #ifdef _WIN32
617 normalize_slashes(file->filename);
618 #endif
619 file->fd = fd;
620 return fd;
623 /* compile the file opened in 'file'. Return non zero if errors. */
624 static int tcc_compile(TCCState *s1)
626 Sym *define_start;
627 int filetype, is_asm;
629 define_start = define_stack;
630 filetype = s1->filetype;
631 is_asm = filetype == AFF_TYPE_ASM || filetype == AFF_TYPE_ASMPP;
633 if (setjmp(s1->error_jmp_buf) == 0) {
634 s1->nb_errors = 0;
635 s1->error_set_jmp_enabled = 1;
637 preprocess_start(s1, is_asm);
638 if (s1->output_type == TCC_OUTPUT_PREPROCESS) {
639 tcc_preprocess(s1);
640 } else if (is_asm) {
641 #ifdef CONFIG_TCC_ASM
642 tcc_assemble(s1, filetype == AFF_TYPE_ASMPP);
643 #else
644 tcc_error_noabort("asm not supported");
645 #endif
646 } else {
647 tccgen_compile(s1);
650 s1->error_set_jmp_enabled = 0;
652 preprocess_end(s1);
653 free_inline_functions(s1);
654 /* reset define stack, but keep -D and built-ins */
655 free_defines(define_start);
656 sym_pop(&global_stack, NULL, 0);
657 sym_pop(&local_stack, NULL, 0);
658 return s1->nb_errors != 0 ? -1 : 0;
661 LIBTCCAPI int tcc_compile_string(TCCState *s, const char *str)
663 int len, ret;
665 len = strlen(str);
666 tcc_open_bf(s, "<string>", len);
667 memcpy(file->buffer, str, len);
668 ret = tcc_compile(s);
669 tcc_close();
670 return ret;
673 /* define a preprocessor symbol. A value can also be provided with the '=' operator */
674 LIBTCCAPI void tcc_define_symbol(TCCState *s1, const char *sym, const char *value)
676 int len1, len2;
677 /* default value */
678 if (!value)
679 value = "1";
680 len1 = strlen(sym);
681 len2 = strlen(value);
683 /* init file structure */
684 tcc_open_bf(s1, "<define>", len1 + len2 + 1);
685 memcpy(file->buffer, sym, len1);
686 file->buffer[len1] = ' ';
687 memcpy(file->buffer + len1 + 1, value, len2);
689 /* parse with define parser */
690 next_nomacro();
691 parse_define();
692 tcc_close();
695 /* undefine a preprocessor symbol */
696 LIBTCCAPI void tcc_undefine_symbol(TCCState *s1, const char *sym)
698 TokenSym *ts;
699 Sym *s;
700 ts = tok_alloc(sym, strlen(sym));
701 s = define_find(ts->tok);
702 /* undefine symbol by putting an invalid name */
703 if (s)
704 define_undef(s);
707 /* cleanup all static data used during compilation */
708 static void tcc_cleanup(void)
710 if (NULL == tcc_state)
711 return;
712 while (file)
713 tcc_close();
714 tccpp_delete(tcc_state);
715 tcc_state = NULL;
716 /* free sym_pools */
717 dynarray_reset(&sym_pools, &nb_sym_pools);
718 /* reset symbol stack */
719 sym_free_first = NULL;
722 LIBTCCAPI TCCState *tcc_new(void)
724 TCCState *s;
726 tcc_cleanup();
728 s = tcc_mallocz(sizeof(TCCState));
729 if (!s)
730 return NULL;
731 tcc_state = s;
732 ++nb_states;
734 s->alacarte_link = 1;
735 s->nocommon = 1;
736 s->warn_implicit_function_declaration = 1;
737 s->ms_extensions = 1;
739 #ifdef CHAR_IS_UNSIGNED
740 s->char_is_unsigned = 1;
741 #endif
742 #ifdef TCC_TARGET_I386
743 s->seg_size = 32;
744 #endif
745 /* enable this if you want symbols with leading underscore on windows: */
746 #if 0 /* def TCC_TARGET_PE */
747 s->leading_underscore = 1;
748 #endif
749 #ifdef _WIN32
750 tcc_set_lib_path_w32(s);
751 #else
752 tcc_set_lib_path(s, CONFIG_TCCDIR);
753 #endif
754 tccelf_new(s);
755 tccpp_new(s);
757 /* we add dummy defines for some special macros to speed up tests
758 and to have working defined() */
759 define_push(TOK___LINE__, MACRO_OBJ, NULL, NULL);
760 define_push(TOK___FILE__, MACRO_OBJ, NULL, NULL);
761 define_push(TOK___DATE__, MACRO_OBJ, NULL, NULL);
762 define_push(TOK___TIME__, MACRO_OBJ, NULL, NULL);
763 define_push(TOK___COUNTER__, MACRO_OBJ, NULL, NULL);
765 /* define __TINYC__ 92X */
766 char buffer[32]; int a,b,c;
767 sscanf(TCC_VERSION, "%d.%d.%d", &a, &b, &c);
768 sprintf(buffer, "%d", a*10000 + b*100 + c);
769 tcc_define_symbol(s, "__TINYC__", buffer);
772 /* standard defines */
773 tcc_define_symbol(s, "__STDC__", NULL);
774 tcc_define_symbol(s, "__STDC_VERSION__", "199901L");
775 tcc_define_symbol(s, "__STDC_HOSTED__", NULL);
777 /* target defines */
778 #if defined(TCC_TARGET_I386)
779 tcc_define_symbol(s, "__i386__", NULL);
780 tcc_define_symbol(s, "__i386", NULL);
781 tcc_define_symbol(s, "i386", NULL);
782 #elif defined(TCC_TARGET_X86_64)
783 tcc_define_symbol(s, "__x86_64__", NULL);
784 #elif defined(TCC_TARGET_ARM)
785 tcc_define_symbol(s, "__ARM_ARCH_4__", NULL);
786 tcc_define_symbol(s, "__arm_elf__", NULL);
787 tcc_define_symbol(s, "__arm_elf", NULL);
788 tcc_define_symbol(s, "arm_elf", NULL);
789 tcc_define_symbol(s, "__arm__", NULL);
790 tcc_define_symbol(s, "__arm", NULL);
791 tcc_define_symbol(s, "arm", NULL);
792 tcc_define_symbol(s, "__APCS_32__", NULL);
793 tcc_define_symbol(s, "__ARMEL__", NULL);
794 #if defined(TCC_ARM_EABI)
795 tcc_define_symbol(s, "__ARM_EABI__", NULL);
796 #endif
797 #if defined(TCC_ARM_HARDFLOAT)
798 s->float_abi = ARM_HARD_FLOAT;
799 tcc_define_symbol(s, "__ARM_PCS_VFP", NULL);
800 #else
801 s->float_abi = ARM_SOFTFP_FLOAT;
802 #endif
803 #elif defined(TCC_TARGET_ARM64)
804 tcc_define_symbol(s, "__aarch64__", NULL);
805 #elif defined TCC_TARGET_C67
806 tcc_define_symbol(s, "__C67__", NULL);
807 #endif
809 #ifdef TCC_TARGET_PE
810 tcc_define_symbol(s, "_WIN32", NULL);
811 # ifdef TCC_TARGET_X86_64
812 tcc_define_symbol(s, "_WIN64", NULL);
813 # endif
814 #else
815 tcc_define_symbol(s, "__unix__", NULL);
816 tcc_define_symbol(s, "__unix", NULL);
817 tcc_define_symbol(s, "unix", NULL);
818 # if defined(__linux__)
819 tcc_define_symbol(s, "__linux__", NULL);
820 tcc_define_symbol(s, "__linux", NULL);
821 # endif
822 # if defined(__FreeBSD__)
823 tcc_define_symbol(s, "__FreeBSD__", "__FreeBSD__");
824 /* No 'Thread Storage Local' on FreeBSD with tcc */
825 tcc_define_symbol(s, "__NO_TLS", NULL);
826 # endif
827 # if defined(__FreeBSD_kernel__)
828 tcc_define_symbol(s, "__FreeBSD_kernel__", NULL);
829 # endif
830 # if defined(__NetBSD__)
831 tcc_define_symbol(s, "__NetBSD__", "__NetBSD__");
832 # endif
833 # if defined(__OpenBSD__)
834 tcc_define_symbol(s, "__OpenBSD__", "__OpenBSD__");
835 # endif
836 #endif
838 /* TinyCC & gcc defines */
839 #if PTR_SIZE == 4
840 /* 32bit systems. */
841 tcc_define_symbol(s, "__SIZE_TYPE__", "unsigned int");
842 tcc_define_symbol(s, "__PTRDIFF_TYPE__", "int");
843 tcc_define_symbol(s, "__ILP32__", NULL);
844 #elif LONG_SIZE == 4
845 /* 64bit Windows. */
846 tcc_define_symbol(s, "__SIZE_TYPE__", "unsigned long long");
847 tcc_define_symbol(s, "__PTRDIFF_TYPE__", "long long");
848 tcc_define_symbol(s, "__LLP64__", NULL);
849 #else
850 /* Other 64bit systems. */
851 tcc_define_symbol(s, "__SIZE_TYPE__", "unsigned long");
852 tcc_define_symbol(s, "__PTRDIFF_TYPE__", "long");
853 tcc_define_symbol(s, "__LP64__", NULL);
854 #endif
856 #ifdef TCC_TARGET_PE
857 tcc_define_symbol(s, "__WCHAR_TYPE__", "unsigned short");
858 tcc_define_symbol(s, "__WINT_TYPE__", "unsigned short");
859 #else
860 tcc_define_symbol(s, "__WCHAR_TYPE__", "int");
861 /* wint_t is unsigned int by default, but (signed) int on BSDs
862 and unsigned short on windows. Other OSes might have still
863 other conventions, sigh. */
864 # if defined(__FreeBSD__) || defined (__FreeBSD_kernel__) \
865 || defined(__NetBSD__) || defined(__OpenBSD__)
866 tcc_define_symbol(s, "__WINT_TYPE__", "int");
867 # ifdef __FreeBSD__
868 /* define __GNUC__ to have some useful stuff from sys/cdefs.h
869 that are unconditionally used in FreeBSDs other system headers :/ */
870 tcc_define_symbol(s, "__GNUC__", "2");
871 tcc_define_symbol(s, "__GNUC_MINOR__", "7");
872 tcc_define_symbol(s, "__builtin_alloca", "alloca");
873 # endif
874 # else
875 tcc_define_symbol(s, "__WINT_TYPE__", "unsigned int");
876 /* glibc defines */
877 tcc_define_symbol(s, "__REDIRECT(name, proto, alias)",
878 "name proto __asm__ (#alias)");
879 tcc_define_symbol(s, "__REDIRECT_NTH(name, proto, alias)",
880 "name proto __asm__ (#alias) __THROW");
881 # endif
882 # if defined(TCC_MUSL)
883 tcc_define_symbol(s, "__DEFINED_va_list", "");
884 tcc_define_symbol(s, "__DEFINED___isoc_va_list", "");
885 tcc_define_symbol(s, "__isoc_va_list", "void *");
886 # endif /* TCC_MUSL */
887 /* Some GCC builtins that are simple to express as macros. */
888 tcc_define_symbol(s, "__builtin_extract_return_addr(x)", "x");
889 #endif /* ndef TCC_TARGET_PE */
890 return s;
893 LIBTCCAPI void tcc_delete(TCCState *s1)
895 tcc_cleanup();
897 /* free sections */
898 tccelf_delete(s1);
900 /* free library paths */
901 dynarray_reset(&s1->library_paths, &s1->nb_library_paths);
902 dynarray_reset(&s1->crt_paths, &s1->nb_crt_paths);
904 /* free include paths */
905 dynarray_reset(&s1->cached_includes, &s1->nb_cached_includes);
906 dynarray_reset(&s1->include_paths, &s1->nb_include_paths);
907 dynarray_reset(&s1->sysinclude_paths, &s1->nb_sysinclude_paths);
908 dynarray_reset(&s1->cmd_include_files, &s1->nb_cmd_include_files);
910 tcc_free(s1->tcc_lib_path);
911 tcc_free(s1->soname);
912 tcc_free(s1->rpath);
913 tcc_free(s1->init_symbol);
914 tcc_free(s1->fini_symbol);
915 tcc_free(s1->outfile);
916 tcc_free(s1->deps_outfile);
917 dynarray_reset(&s1->files, &s1->nb_files);
918 dynarray_reset(&s1->target_deps, &s1->nb_target_deps);
919 dynarray_reset(&s1->pragma_libs, &s1->nb_pragma_libs);
920 dynarray_reset(&s1->argv, &s1->argc);
922 #ifdef TCC_IS_NATIVE
923 /* free runtime memory */
924 tcc_run_free(s1);
925 #endif
927 tcc_free(s1);
928 if (0 == --nb_states)
929 tcc_memcheck();
932 LIBTCCAPI int tcc_set_output_type(TCCState *s, int output_type)
934 s->output_type = output_type;
936 /* always elf for objects */
937 if (output_type == TCC_OUTPUT_OBJ)
938 s->output_format = TCC_OUTPUT_FORMAT_ELF;
940 if (s->char_is_unsigned)
941 tcc_define_symbol(s, "__CHAR_UNSIGNED__", NULL);
943 if (!s->nostdinc) {
944 /* default include paths */
945 /* -isystem paths have already been handled */
946 tcc_add_sysinclude_path(s, CONFIG_TCC_SYSINCLUDEPATHS);
949 #ifdef CONFIG_TCC_BCHECK
950 if (s->do_bounds_check) {
951 /* if bound checking, then add corresponding sections */
952 tccelf_bounds_new(s);
953 /* define symbol */
954 tcc_define_symbol(s, "__BOUNDS_CHECKING_ON", NULL);
956 #endif
957 if (s->do_debug) {
958 /* add debug sections */
959 tccelf_stab_new(s);
962 tcc_add_library_path(s, CONFIG_TCC_LIBPATHS);
964 #ifdef TCC_TARGET_PE
965 # ifdef _WIN32
966 if (!s->nostdlib && output_type != TCC_OUTPUT_OBJ)
967 tcc_add_systemdir(s);
968 # endif
969 #else
970 /* paths for crt objects */
971 tcc_split_path(s, &s->crt_paths, &s->nb_crt_paths, CONFIG_TCC_CRTPREFIX);
972 /* add libc crt1/crti objects */
973 if ((output_type == TCC_OUTPUT_EXE || output_type == TCC_OUTPUT_DLL) &&
974 !s->nostdlib) {
975 if (output_type != TCC_OUTPUT_DLL)
976 tcc_add_crt(s, "crt1.o");
977 tcc_add_crt(s, "crti.o");
979 #endif
980 return 0;
983 LIBTCCAPI int tcc_add_include_path(TCCState *s, const char *pathname)
985 tcc_split_path(s, &s->include_paths, &s->nb_include_paths, pathname);
986 return 0;
989 LIBTCCAPI int tcc_add_sysinclude_path(TCCState *s, const char *pathname)
991 tcc_split_path(s, &s->sysinclude_paths, &s->nb_sysinclude_paths, pathname);
992 return 0;
995 ST_FUNC int tcc_add_file_internal(TCCState *s1, const char *filename, int flags)
997 int ret;
999 /* open the file */
1000 ret = tcc_open(s1, filename);
1001 if (ret < 0) {
1002 if (flags & AFF_PRINT_ERROR)
1003 tcc_error_noabort("file '%s' not found", filename);
1004 return ret;
1007 /* update target deps */
1008 dynarray_add(&s1->target_deps, &s1->nb_target_deps,
1009 tcc_strdup(filename));
1011 if (flags & AFF_TYPE_BIN) {
1012 ElfW(Ehdr) ehdr;
1013 int fd, obj_type;
1015 fd = file->fd;
1016 obj_type = tcc_object_type(fd, &ehdr);
1017 lseek(fd, 0, SEEK_SET);
1019 /* do not display line number if error */
1020 file->line_num = 0;
1022 #ifdef TCC_TARGET_MACHO
1023 if (0 == obj_type && 0 == strcmp(tcc_fileextension(filename), ".dylib"))
1024 obj_type = AFF_BINTYPE_DYN;
1025 #endif
1027 switch (obj_type) {
1028 case AFF_BINTYPE_REL:
1029 ret = tcc_load_object_file(s1, fd, 0);
1030 break;
1031 #ifndef TCC_TARGET_PE
1032 case AFF_BINTYPE_DYN:
1033 if (s1->output_type == TCC_OUTPUT_MEMORY) {
1034 ret = 0;
1035 #ifdef TCC_IS_NATIVE
1036 if (NULL == dlopen(filename, RTLD_GLOBAL | RTLD_LAZY))
1037 ret = -1;
1038 #endif
1039 } else {
1040 ret = tcc_load_dll(s1, fd, filename,
1041 (flags & AFF_REFERENCED_DLL) != 0);
1043 break;
1044 #endif
1045 case AFF_BINTYPE_AR:
1046 ret = tcc_load_archive(s1, fd);
1047 break;
1048 #ifdef TCC_TARGET_COFF
1049 case AFF_BINTYPE_C67:
1050 ret = tcc_load_coff(s1, fd);
1051 break;
1052 #endif
1053 default:
1054 #ifdef TCC_TARGET_PE
1055 ret = pe_load_file(s1, filename, fd);
1056 #else
1057 /* as GNU ld, consider it is an ld script if not recognized */
1058 ret = tcc_load_ldscript(s1);
1059 #endif
1060 if (ret < 0)
1061 tcc_error_noabort("unrecognized file type");
1062 break;
1064 } else {
1065 ret = tcc_compile(s1);
1067 tcc_close();
1068 return ret;
1071 LIBTCCAPI int tcc_add_file(TCCState *s, const char *filename)
1073 int filetype = s->filetype;
1074 int flags = AFF_PRINT_ERROR;
1075 if (filetype == 0) {
1076 /* use a file extension to detect a filetype */
1077 const char *ext = tcc_fileextension(filename);
1078 if (ext[0]) {
1079 ext++;
1080 if (!strcmp(ext, "S"))
1081 filetype = AFF_TYPE_ASMPP;
1082 else if (!strcmp(ext, "s"))
1083 filetype = AFF_TYPE_ASM;
1084 else if (!PATHCMP(ext, "c") || !PATHCMP(ext, "i"))
1085 filetype = AFF_TYPE_C;
1086 else
1087 flags |= AFF_TYPE_BIN;
1088 } else {
1089 filetype = AFF_TYPE_C;
1091 s->filetype = filetype;
1093 return tcc_add_file_internal(s, filename, flags);
1096 LIBTCCAPI int tcc_add_library_path(TCCState *s, const char *pathname)
1098 tcc_split_path(s, &s->library_paths, &s->nb_library_paths, pathname);
1099 return 0;
1102 static int tcc_add_library_internal(TCCState *s, const char *fmt,
1103 const char *filename, int flags, char **paths, int nb_paths)
1105 char buf[1024];
1106 int i;
1108 for(i = 0; i < nb_paths; i++) {
1109 snprintf(buf, sizeof(buf), fmt, paths[i], filename);
1110 if (tcc_add_file_internal(s, buf, flags | AFF_TYPE_BIN) == 0)
1111 return 0;
1113 return -1;
1116 /* find and load a dll. Return non zero if not found */
1117 /* XXX: add '-rpath' option support ? */
1118 ST_FUNC int tcc_add_dll(TCCState *s, const char *filename, int flags)
1120 return tcc_add_library_internal(s, "%s/%s", filename, flags,
1121 s->library_paths, s->nb_library_paths);
1124 ST_FUNC int tcc_add_crt(TCCState *s, const char *filename)
1126 if (-1 == tcc_add_library_internal(s, "%s/%s",
1127 filename, 0, s->crt_paths, s->nb_crt_paths))
1128 tcc_error_noabort("file '%s' not found", filename);
1129 return 0;
1132 /* the library name is the same as the argument of the '-l' option */
1133 LIBTCCAPI int tcc_add_library(TCCState *s, const char *libraryname)
1135 #if defined TCC_TARGET_PE
1136 const char *libs[] = { "%s/%s.def", "%s/lib%s.def", "%s/%s.dll", "%s/lib%s.dll", "%s/lib%s.a", NULL };
1137 const char **pp = s->static_link ? libs + 4 : libs;
1138 #elif defined TCC_TARGET_MACHO
1139 const char *libs[] = { "%s/lib%s.dylib", "%s/lib%s.a", NULL };
1140 const char **pp = s->static_link ? libs + 1 : libs;
1141 #else
1142 const char *libs[] = { "%s/lib%s.so", "%s/lib%s.a", NULL };
1143 const char **pp = s->static_link ? libs + 1 : libs;
1144 #endif
1145 while (*pp) {
1146 if (0 == tcc_add_library_internal(s, *pp,
1147 libraryname, 0, s->library_paths, s->nb_library_paths))
1148 return 0;
1149 ++pp;
1151 return -1;
1154 PUB_FUNC int tcc_add_library_err(TCCState *s, const char *libname)
1156 int ret = tcc_add_library(s, libname);
1157 if (ret < 0)
1158 tcc_error_noabort("library '%s' not found", libname);
1159 return ret;
1162 /* handle #pragma comment(lib,) */
1163 ST_FUNC void tcc_add_pragma_libs(TCCState *s1)
1165 int i;
1166 for (i = 0; i < s1->nb_pragma_libs; i++)
1167 tcc_add_library_err(s1, s1->pragma_libs[i]);
1170 LIBTCCAPI int tcc_add_symbol(TCCState *s, const char *name, const void *val)
1172 #ifdef TCC_TARGET_PE
1173 /* On x86_64 'val' might not be reachable with a 32bit offset.
1174 So it is handled here as if it were in a DLL. */
1175 pe_putimport(s, 0, name, (uintptr_t)val);
1176 #else
1177 set_elf_sym(symtab_section, (uintptr_t)val, 0,
1178 ELFW(ST_INFO)(STB_GLOBAL, STT_NOTYPE), 0,
1179 SHN_ABS, name);
1180 #endif
1181 return 0;
1184 LIBTCCAPI void tcc_set_lib_path(TCCState *s, const char *path)
1186 tcc_free(s->tcc_lib_path);
1187 s->tcc_lib_path = tcc_strdup(path);
1190 #define WD_ALL 0x0001 /* warning is activated when using -Wall */
1191 #define FD_INVERT 0x0002 /* invert value before storing */
1193 typedef struct FlagDef {
1194 uint16_t offset;
1195 uint16_t flags;
1196 const char *name;
1197 } FlagDef;
1199 static int no_flag(const char **pp)
1201 const char *p = *pp;
1202 if (*p != 'n' || *++p != 'o' || *++p != '-')
1203 return 0;
1204 *pp = p + 1;
1205 return 1;
1208 ST_FUNC int set_flag(TCCState *s, const FlagDef *flags, const char *name)
1210 int value, ret;
1211 const FlagDef *p;
1212 const char *r;
1214 value = 1;
1215 r = name;
1216 if (no_flag(&r))
1217 value = 0;
1219 for (ret = -1, p = flags; p->name; ++p) {
1220 if (ret) {
1221 if (strcmp(r, p->name))
1222 continue;
1223 } else {
1224 if (0 == (p->flags & WD_ALL))
1225 continue;
1227 if (p->offset) {
1228 *(int*)((char *)s + p->offset) =
1229 p->flags & FD_INVERT ? !value : value;
1230 if (ret)
1231 return 0;
1232 } else {
1233 ret = 0;
1236 return ret;
1239 static int strstart(const char *val, const char **str)
1241 const char *p, *q;
1242 p = *str;
1243 q = val;
1244 while (*q) {
1245 if (*p != *q)
1246 return 0;
1247 p++;
1248 q++;
1250 *str = p;
1251 return 1;
1254 /* Like strstart, but automatically takes into account that ld options can
1256 * - start with double or single dash (e.g. '--soname' or '-soname')
1257 * - arguments can be given as separate or after '=' (e.g. '-Wl,-soname,x.so'
1258 * or '-Wl,-soname=x.so')
1260 * you provide `val` always in 'option[=]' form (no leading -)
1262 static int link_option(const char *str, const char *val, const char **ptr)
1264 const char *p, *q;
1265 int ret;
1267 /* there should be 1 or 2 dashes */
1268 if (*str++ != '-')
1269 return 0;
1270 if (*str == '-')
1271 str++;
1273 /* then str & val should match (potentially up to '=') */
1274 p = str;
1275 q = val;
1277 ret = 1;
1278 if (q[0] == '?') {
1279 ++q;
1280 if (no_flag(&p))
1281 ret = -1;
1284 while (*q != '\0' && *q != '=') {
1285 if (*p != *q)
1286 return 0;
1287 p++;
1288 q++;
1291 /* '=' near eos means ',' or '=' is ok */
1292 if (*q == '=') {
1293 if (*p == 0)
1294 *ptr = p;
1295 if (*p != ',' && *p != '=')
1296 return 0;
1297 p++;
1298 } else if (*p) {
1299 return 0;
1301 *ptr = p;
1302 return ret;
1305 static const char *skip_linker_arg(const char **str)
1307 const char *s1 = *str;
1308 const char *s2 = strchr(s1, ',');
1309 *str = s2 ? s2++ : (s2 = s1 + strlen(s1));
1310 return s2;
1313 static void copy_linker_arg(char **pp, const char *s, int sep)
1315 const char *q = s;
1316 char *p = *pp;
1317 int l = 0;
1318 if (p && sep)
1319 p[l = strlen(p)] = sep, ++l;
1320 skip_linker_arg(&q);
1321 pstrncpy(l + (*pp = tcc_realloc(p, q - s + l + 1)), s, q - s);
1324 /* set linker options */
1325 static int tcc_set_linker(TCCState *s, const char *option)
1327 while (*option) {
1329 const char *p = NULL;
1330 char *end = NULL;
1331 int ignoring = 0;
1332 int ret;
1334 if (link_option(option, "Bsymbolic", &p)) {
1335 s->symbolic = 1;
1336 } else if (link_option(option, "nostdlib", &p)) {
1337 s->nostdlib = 1;
1338 } else if (link_option(option, "fini=", &p)) {
1339 copy_linker_arg(&s->fini_symbol, p, 0);
1340 ignoring = 1;
1341 } else if (link_option(option, "image-base=", &p)
1342 || link_option(option, "Ttext=", &p)) {
1343 s->text_addr = strtoull(p, &end, 16);
1344 s->has_text_addr = 1;
1345 } else if (link_option(option, "init=", &p)) {
1346 copy_linker_arg(&s->init_symbol, p, 0);
1347 ignoring = 1;
1348 } else if (link_option(option, "oformat=", &p)) {
1349 #if defined(TCC_TARGET_PE)
1350 if (strstart("pe-", &p)) {
1351 #elif PTR_SIZE == 8
1352 if (strstart("elf64-", &p)) {
1353 #else
1354 if (strstart("elf32-", &p)) {
1355 #endif
1356 s->output_format = TCC_OUTPUT_FORMAT_ELF;
1357 } else if (!strcmp(p, "binary")) {
1358 s->output_format = TCC_OUTPUT_FORMAT_BINARY;
1359 #ifdef TCC_TARGET_COFF
1360 } else if (!strcmp(p, "coff")) {
1361 s->output_format = TCC_OUTPUT_FORMAT_COFF;
1362 #endif
1363 } else
1364 goto err;
1366 } else if (link_option(option, "as-needed", &p)) {
1367 ignoring = 1;
1368 } else if (link_option(option, "O", &p)) {
1369 ignoring = 1;
1370 } else if (link_option(option, "export-all-symbols", &p)) {
1371 s->rdynamic = 1;
1372 } else if (link_option(option, "rpath=", &p)) {
1373 copy_linker_arg(&s->rpath, p, ':');
1374 } else if (link_option(option, "enable-new-dtags", &p)) {
1375 s->enable_new_dtags = 1;
1376 } else if (link_option(option, "section-alignment=", &p)) {
1377 s->section_align = strtoul(p, &end, 16);
1378 } else if (link_option(option, "soname=", &p)) {
1379 copy_linker_arg(&s->soname, p, 0);
1380 #ifdef TCC_TARGET_PE
1381 } else if (link_option(option, "large-address-aware", &p)) {
1382 s->pe_characteristics |= 0x20;
1383 } else if (link_option(option, "file-alignment=", &p)) {
1384 s->pe_file_align = strtoul(p, &end, 16);
1385 } else if (link_option(option, "stack=", &p)) {
1386 s->pe_stack_size = strtoul(p, &end, 10);
1387 } else if (link_option(option, "subsystem=", &p)) {
1388 #if defined(TCC_TARGET_I386) || defined(TCC_TARGET_X86_64)
1389 if (!strcmp(p, "native")) {
1390 s->pe_subsystem = 1;
1391 } else if (!strcmp(p, "console")) {
1392 s->pe_subsystem = 3;
1393 } else if (!strcmp(p, "gui") || !strcmp(p, "windows")) {
1394 s->pe_subsystem = 2;
1395 } else if (!strcmp(p, "posix")) {
1396 s->pe_subsystem = 7;
1397 } else if (!strcmp(p, "efiapp")) {
1398 s->pe_subsystem = 10;
1399 } else if (!strcmp(p, "efiboot")) {
1400 s->pe_subsystem = 11;
1401 } else if (!strcmp(p, "efiruntime")) {
1402 s->pe_subsystem = 12;
1403 } else if (!strcmp(p, "efirom")) {
1404 s->pe_subsystem = 13;
1405 #elif defined(TCC_TARGET_ARM)
1406 if (!strcmp(p, "wince")) {
1407 s->pe_subsystem = 9;
1408 #endif
1409 } else
1410 goto err;
1411 #endif
1412 } else if (ret = link_option(option, "?whole-archive", &p), ret) {
1413 s->alacarte_link = ret < 0;
1414 } else if (p) {
1415 return 0;
1416 } else {
1417 err:
1418 tcc_error("unsupported linker option '%s'", option);
1421 if (ignoring && s->warn_unsupported)
1422 tcc_warning("unsupported linker option '%s'", option);
1424 option = skip_linker_arg(&p);
1426 return 1;
1429 typedef struct TCCOption {
1430 const char *name;
1431 uint16_t index;
1432 uint16_t flags;
1433 } TCCOption;
1435 enum {
1436 TCC_OPTION_HELP,
1437 TCC_OPTION_HELP2,
1438 TCC_OPTION_v,
1439 TCC_OPTION_I,
1440 TCC_OPTION_D,
1441 TCC_OPTION_U,
1442 TCC_OPTION_P,
1443 TCC_OPTION_L,
1444 TCC_OPTION_B,
1445 TCC_OPTION_l,
1446 TCC_OPTION_bench,
1447 TCC_OPTION_bt,
1448 TCC_OPTION_b,
1449 TCC_OPTION_g,
1450 TCC_OPTION_c,
1451 TCC_OPTION_dumpversion,
1452 TCC_OPTION_d,
1453 TCC_OPTION_static,
1454 TCC_OPTION_std,
1455 TCC_OPTION_shared,
1456 TCC_OPTION_soname,
1457 TCC_OPTION_o,
1458 TCC_OPTION_r,
1459 TCC_OPTION_s,
1460 TCC_OPTION_traditional,
1461 TCC_OPTION_Wl,
1462 TCC_OPTION_Wp,
1463 TCC_OPTION_W,
1464 TCC_OPTION_O,
1465 TCC_OPTION_mfloat_abi,
1466 TCC_OPTION_m,
1467 TCC_OPTION_f,
1468 TCC_OPTION_isystem,
1469 TCC_OPTION_iwithprefix,
1470 TCC_OPTION_include,
1471 TCC_OPTION_nostdinc,
1472 TCC_OPTION_nostdlib,
1473 TCC_OPTION_print_search_dirs,
1474 TCC_OPTION_rdynamic,
1475 TCC_OPTION_param,
1476 TCC_OPTION_pedantic,
1477 TCC_OPTION_pthread,
1478 TCC_OPTION_run,
1479 TCC_OPTION_w,
1480 TCC_OPTION_pipe,
1481 TCC_OPTION_E,
1482 TCC_OPTION_MD,
1483 TCC_OPTION_MF,
1484 TCC_OPTION_x,
1485 TCC_OPTION_ar,
1486 TCC_OPTION_impdef
1489 #define TCC_OPTION_HAS_ARG 0x0001
1490 #define TCC_OPTION_NOSEP 0x0002 /* cannot have space before option and arg */
1492 static const TCCOption tcc_options[] = {
1493 { "h", TCC_OPTION_HELP, 0 },
1494 { "-help", TCC_OPTION_HELP, 0 },
1495 { "?", TCC_OPTION_HELP, 0 },
1496 { "hh", TCC_OPTION_HELP2, 0 },
1497 { "v", TCC_OPTION_v, TCC_OPTION_HAS_ARG | TCC_OPTION_NOSEP },
1498 { "I", TCC_OPTION_I, TCC_OPTION_HAS_ARG },
1499 { "D", TCC_OPTION_D, TCC_OPTION_HAS_ARG },
1500 { "U", TCC_OPTION_U, TCC_OPTION_HAS_ARG },
1501 { "P", TCC_OPTION_P, TCC_OPTION_HAS_ARG | TCC_OPTION_NOSEP },
1502 { "L", TCC_OPTION_L, TCC_OPTION_HAS_ARG },
1503 { "B", TCC_OPTION_B, TCC_OPTION_HAS_ARG },
1504 { "l", TCC_OPTION_l, TCC_OPTION_HAS_ARG | TCC_OPTION_NOSEP },
1505 { "bench", TCC_OPTION_bench, 0 },
1506 #ifdef CONFIG_TCC_BACKTRACE
1507 { "bt", TCC_OPTION_bt, TCC_OPTION_HAS_ARG },
1508 #endif
1509 #ifdef CONFIG_TCC_BCHECK
1510 { "b", TCC_OPTION_b, 0 },
1511 #endif
1512 { "g", TCC_OPTION_g, TCC_OPTION_HAS_ARG | TCC_OPTION_NOSEP },
1513 { "c", TCC_OPTION_c, 0 },
1514 { "dumpversion", TCC_OPTION_dumpversion, 0},
1515 { "d", TCC_OPTION_d, TCC_OPTION_HAS_ARG | TCC_OPTION_NOSEP },
1516 { "static", TCC_OPTION_static, 0 },
1517 { "std", TCC_OPTION_std, TCC_OPTION_HAS_ARG | TCC_OPTION_NOSEP },
1518 { "shared", TCC_OPTION_shared, 0 },
1519 { "soname", TCC_OPTION_soname, TCC_OPTION_HAS_ARG },
1520 { "o", TCC_OPTION_o, TCC_OPTION_HAS_ARG },
1521 { "-param", TCC_OPTION_param, TCC_OPTION_HAS_ARG },
1522 { "pedantic", TCC_OPTION_pedantic, 0},
1523 { "pthread", TCC_OPTION_pthread, 0},
1524 { "run", TCC_OPTION_run, TCC_OPTION_HAS_ARG | TCC_OPTION_NOSEP },
1525 { "rdynamic", TCC_OPTION_rdynamic, 0 },
1526 { "r", TCC_OPTION_r, 0 },
1527 { "s", TCC_OPTION_s, 0 },
1528 { "traditional", TCC_OPTION_traditional, 0 },
1529 { "Wl,", TCC_OPTION_Wl, TCC_OPTION_HAS_ARG | TCC_OPTION_NOSEP },
1530 { "Wp,", TCC_OPTION_Wp, TCC_OPTION_HAS_ARG | TCC_OPTION_NOSEP },
1531 { "W", TCC_OPTION_W, TCC_OPTION_HAS_ARG | TCC_OPTION_NOSEP },
1532 { "O", TCC_OPTION_O, TCC_OPTION_HAS_ARG | TCC_OPTION_NOSEP },
1533 #ifdef TCC_TARGET_ARM
1534 { "mfloat-abi", TCC_OPTION_mfloat_abi, TCC_OPTION_HAS_ARG },
1535 #endif
1536 { "m", TCC_OPTION_m, TCC_OPTION_HAS_ARG | TCC_OPTION_NOSEP },
1537 { "f", TCC_OPTION_f, TCC_OPTION_HAS_ARG | TCC_OPTION_NOSEP },
1538 { "isystem", TCC_OPTION_isystem, TCC_OPTION_HAS_ARG },
1539 { "include", TCC_OPTION_include, TCC_OPTION_HAS_ARG },
1540 { "nostdinc", TCC_OPTION_nostdinc, 0 },
1541 { "nostdlib", TCC_OPTION_nostdlib, 0 },
1542 { "print-search-dirs", TCC_OPTION_print_search_dirs, 0 },
1543 { "w", TCC_OPTION_w, 0 },
1544 { "pipe", TCC_OPTION_pipe, 0},
1545 { "E", TCC_OPTION_E, 0},
1546 { "MD", TCC_OPTION_MD, 0},
1547 { "MF", TCC_OPTION_MF, TCC_OPTION_HAS_ARG },
1548 { "x", TCC_OPTION_x, TCC_OPTION_HAS_ARG },
1549 { "ar", TCC_OPTION_ar, 0},
1550 #ifdef TCC_TARGET_PE
1551 { "impdef", TCC_OPTION_impdef, 0},
1552 #endif
1553 { NULL, 0, 0 },
1556 static const FlagDef options_W[] = {
1557 { 0, 0, "all" },
1558 { offsetof(TCCState, warn_unsupported), 0, "unsupported" },
1559 { offsetof(TCCState, warn_write_strings), 0, "write-strings" },
1560 { offsetof(TCCState, warn_error), 0, "error" },
1561 { offsetof(TCCState, warn_gcc_compat), 0, "gcc-compat" },
1562 { offsetof(TCCState, warn_implicit_function_declaration), WD_ALL,
1563 "implicit-function-declaration" },
1564 { 0, 0, NULL }
1567 static const FlagDef options_f[] = {
1568 { offsetof(TCCState, char_is_unsigned), 0, "unsigned-char" },
1569 { offsetof(TCCState, char_is_unsigned), FD_INVERT, "signed-char" },
1570 { offsetof(TCCState, nocommon), FD_INVERT, "common" },
1571 { offsetof(TCCState, leading_underscore), 0, "leading-underscore" },
1572 { offsetof(TCCState, ms_extensions), 0, "ms-extensions" },
1573 { offsetof(TCCState, dollars_in_identifiers), 0, "dollars-in-identifiers" },
1574 { 0, 0, NULL }
1577 static const FlagDef options_m[] = {
1578 { offsetof(TCCState, ms_bitfields), 0, "ms-bitfields" },
1579 #ifdef TCC_TARGET_X86_64
1580 { offsetof(TCCState, nosse), FD_INVERT, "sse" },
1581 #endif
1582 { 0, 0, NULL }
1585 static void parse_option_D(TCCState *s1, const char *optarg)
1587 char *sym = tcc_strdup(optarg);
1588 char *value = strchr(sym, '=');
1589 if (value)
1590 *value++ = '\0';
1591 tcc_define_symbol(s1, sym, value);
1592 tcc_free(sym);
1595 static void args_parser_add_file(TCCState *s, const char* filename, int filetype)
1597 struct filespec *f = tcc_malloc(sizeof *f + strlen(filename));
1598 f->type = filetype;
1599 f->alacarte = s->alacarte_link;
1600 strcpy(f->name, filename);
1601 dynarray_add(&s->files, &s->nb_files, f);
1604 static int args_parser_make_argv(const char *r, int *argc, char ***argv)
1606 int ret = 0, q, c;
1607 CString str;
1608 for(;;) {
1609 while (c = (unsigned char)*r, c && c <= ' ')
1610 ++r;
1611 if (c == 0)
1612 break;
1613 q = 0;
1614 cstr_new(&str);
1615 while (c = (unsigned char)*r, c) {
1616 ++r;
1617 if (c == '\\' && (*r == '"' || *r == '\\')) {
1618 c = *r++;
1619 } else if (c == '"') {
1620 q = !q;
1621 continue;
1622 } else if (q == 0 && c <= ' ') {
1623 break;
1625 cstr_ccat(&str, c);
1627 cstr_ccat(&str, 0);
1628 //printf("<%s>\n", str.data), fflush(stdout);
1629 dynarray_add(argv, argc, tcc_strdup(str.data));
1630 cstr_free(&str);
1631 ++ret;
1633 return ret;
1636 /* read list file */
1637 static void args_parser_listfile(TCCState *s,
1638 const char *filename, int optind, int *pargc, char ***pargv)
1640 int fd, i;
1641 size_t len;
1642 char *p;
1643 int argc = 0;
1644 char **argv = NULL;
1646 fd = open(filename, O_RDONLY | O_BINARY);
1647 if (fd < 0)
1648 tcc_error("listfile '%s' not found", filename);
1650 len = lseek(fd, 0, SEEK_END);
1651 p = tcc_malloc(len + 1), p[len] = 0;
1652 lseek(fd, 0, SEEK_SET), read(fd, p, len), close(fd);
1654 for (i = 0; i < *pargc; ++i)
1655 if (i == optind)
1656 args_parser_make_argv(p, &argc, &argv);
1657 else
1658 dynarray_add(&argv, &argc, tcc_strdup((*pargv)[i]));
1660 tcc_free(p);
1661 dynarray_reset(&s->argv, &s->argc);
1662 *pargc = s->argc = argc, *pargv = s->argv = argv;
1665 PUB_FUNC int tcc_parse_args(TCCState *s, int *pargc, char ***pargv, int optind)
1667 const TCCOption *popt;
1668 const char *optarg, *r;
1669 const char *run = NULL;
1670 int last_o = -1;
1671 int x;
1672 CString linker_arg; /* collect -Wl options */
1673 int tool = 0, arg_start = 0, noaction = optind;
1674 char **argv = *pargv;
1675 int argc = *pargc;
1677 cstr_new(&linker_arg);
1679 while (optind < argc) {
1680 r = argv[optind];
1681 if (r[0] == '@' && r[1] != '\0') {
1682 args_parser_listfile(s, r + 1, optind, &argc, &argv);
1683 continue;
1685 optind++;
1686 if (tool) {
1687 if (r[0] == '-' && r[1] == 'v' && r[2] == 0)
1688 ++s->verbose;
1689 continue;
1691 reparse:
1692 if (r[0] != '-' || r[1] == '\0') {
1693 if (r[0] != '@') /* allow "tcc file(s) -run @ args ..." */
1694 args_parser_add_file(s, r, s->filetype);
1695 if (run) {
1696 tcc_set_options(s, run);
1697 arg_start = optind - 1;
1698 break;
1700 continue;
1703 /* find option in table */
1704 for(popt = tcc_options; ; ++popt) {
1705 const char *p1 = popt->name;
1706 const char *r1 = r + 1;
1707 if (p1 == NULL)
1708 tcc_error("invalid option -- '%s'", r);
1709 if (!strstart(p1, &r1))
1710 continue;
1711 optarg = r1;
1712 if (popt->flags & TCC_OPTION_HAS_ARG) {
1713 if (*r1 == '\0' && !(popt->flags & TCC_OPTION_NOSEP)) {
1714 if (optind >= argc)
1715 arg_err:
1716 tcc_error("argument to '%s' is missing", r);
1717 optarg = argv[optind++];
1719 } else if (*r1 != '\0')
1720 continue;
1721 break;
1724 switch(popt->index) {
1725 case TCC_OPTION_HELP:
1726 return OPT_HELP;
1727 case TCC_OPTION_HELP2:
1728 return OPT_HELP2;
1729 case TCC_OPTION_I:
1730 tcc_add_include_path(s, optarg);
1731 break;
1732 case TCC_OPTION_D:
1733 parse_option_D(s, optarg);
1734 break;
1735 case TCC_OPTION_U:
1736 tcc_undefine_symbol(s, optarg);
1737 break;
1738 case TCC_OPTION_L:
1739 tcc_add_library_path(s, optarg);
1740 break;
1741 case TCC_OPTION_B:
1742 /* set tcc utilities path (mainly for tcc development) */
1743 tcc_set_lib_path(s, optarg);
1744 break;
1745 case TCC_OPTION_l:
1746 args_parser_add_file(s, optarg, AFF_TYPE_LIB);
1747 s->nb_libraries++;
1748 break;
1749 case TCC_OPTION_pthread:
1750 parse_option_D(s, "_REENTRANT");
1751 s->option_pthread = 1;
1752 break;
1753 case TCC_OPTION_bench:
1754 s->do_bench = 1;
1755 break;
1756 #ifdef CONFIG_TCC_BACKTRACE
1757 case TCC_OPTION_bt:
1758 tcc_set_num_callers(atoi(optarg));
1759 break;
1760 #endif
1761 #ifdef CONFIG_TCC_BCHECK
1762 case TCC_OPTION_b:
1763 s->do_bounds_check = 1;
1764 s->do_debug = 1;
1765 break;
1766 #endif
1767 case TCC_OPTION_g:
1768 s->do_debug = 1;
1769 break;
1770 case TCC_OPTION_c:
1771 x = TCC_OUTPUT_OBJ;
1772 set_output_type:
1773 if (s->output_type)
1774 tcc_warning("-%s: overriding compiler action already specified", popt->name);
1775 s->output_type = x;
1776 break;
1777 case TCC_OPTION_d:
1778 if (*optarg == 'D')
1779 s->dflag = 3;
1780 else if (*optarg == 'M')
1781 s->dflag = 7;
1782 else if (*optarg == 't')
1783 s->dflag = 16;
1784 else if (isnum(*optarg))
1785 g_debug = atoi(optarg);
1786 else
1787 goto unsupported_option;
1788 break;
1789 case TCC_OPTION_static:
1790 s->static_link = 1;
1791 break;
1792 case TCC_OPTION_std:
1793 /* silently ignore, a current purpose:
1794 allow to use a tcc as a reference compiler for "make test" */
1795 break;
1796 case TCC_OPTION_shared:
1797 x = TCC_OUTPUT_DLL;
1798 goto set_output_type;
1799 case TCC_OPTION_soname:
1800 s->soname = tcc_strdup(optarg);
1801 break;
1802 case TCC_OPTION_o:
1803 if (s->outfile) {
1804 tcc_warning("multiple -o option");
1805 tcc_free(s->outfile);
1807 s->outfile = tcc_strdup(optarg);
1808 break;
1809 case TCC_OPTION_r:
1810 /* generate a .o merging several output files */
1811 s->option_r = 1;
1812 x = TCC_OUTPUT_OBJ;
1813 goto set_output_type;
1814 case TCC_OPTION_isystem:
1815 tcc_add_sysinclude_path(s, optarg);
1816 break;
1817 case TCC_OPTION_include:
1818 dynarray_add(&s->cmd_include_files,
1819 &s->nb_cmd_include_files, tcc_strdup(optarg));
1820 break;
1821 case TCC_OPTION_nostdinc:
1822 s->nostdinc = 1;
1823 break;
1824 case TCC_OPTION_nostdlib:
1825 s->nostdlib = 1;
1826 break;
1827 case TCC_OPTION_run:
1828 #ifndef TCC_IS_NATIVE
1829 tcc_error("-run is not available in a cross compiler");
1830 #endif
1831 run = optarg;
1832 x = TCC_OUTPUT_MEMORY;
1833 goto set_output_type;
1834 case TCC_OPTION_v:
1835 do ++s->verbose; while (*optarg++ == 'v');
1836 ++noaction;
1837 break;
1838 case TCC_OPTION_f:
1839 if (set_flag(s, options_f, optarg) < 0)
1840 goto unsupported_option;
1841 break;
1842 #ifdef TCC_TARGET_ARM
1843 case TCC_OPTION_mfloat_abi:
1844 /* tcc doesn't support soft float yet */
1845 if (!strcmp(optarg, "softfp")) {
1846 s->float_abi = ARM_SOFTFP_FLOAT;
1847 tcc_undefine_symbol(s, "__ARM_PCS_VFP");
1848 } else if (!strcmp(optarg, "hard"))
1849 s->float_abi = ARM_HARD_FLOAT;
1850 else
1851 tcc_error("unsupported float abi '%s'", optarg);
1852 break;
1853 #endif
1854 case TCC_OPTION_m:
1855 if (set_flag(s, options_m, optarg) < 0) {
1856 if (x = atoi(optarg), x != 32 && x != 64)
1857 goto unsupported_option;
1858 if (PTR_SIZE != x/8)
1859 return x;
1860 ++noaction;
1862 break;
1863 case TCC_OPTION_W:
1864 if (set_flag(s, options_W, optarg) < 0)
1865 goto unsupported_option;
1866 break;
1867 case TCC_OPTION_w:
1868 s->warn_none = 1;
1869 break;
1870 case TCC_OPTION_rdynamic:
1871 s->rdynamic = 1;
1872 break;
1873 case TCC_OPTION_Wl:
1874 if (linker_arg.size)
1875 --linker_arg.size, cstr_ccat(&linker_arg, ',');
1876 cstr_cat(&linker_arg, optarg, 0);
1877 if (tcc_set_linker(s, linker_arg.data))
1878 cstr_free(&linker_arg);
1879 break;
1880 case TCC_OPTION_Wp:
1881 r = optarg;
1882 goto reparse;
1883 case TCC_OPTION_E:
1884 x = TCC_OUTPUT_PREPROCESS;
1885 goto set_output_type;
1886 case TCC_OPTION_P:
1887 s->Pflag = atoi(optarg) + 1;
1888 break;
1889 case TCC_OPTION_MD:
1890 s->gen_deps = 1;
1891 break;
1892 case TCC_OPTION_MF:
1893 s->deps_outfile = tcc_strdup(optarg);
1894 break;
1895 case TCC_OPTION_dumpversion:
1896 printf ("%s\n", TCC_VERSION);
1897 exit(0);
1898 break;
1899 case TCC_OPTION_x:
1900 if (*optarg == 'c')
1901 s->filetype = AFF_TYPE_C;
1902 else if (*optarg == 'a')
1903 s->filetype = AFF_TYPE_ASMPP;
1904 else if (*optarg == 'n')
1905 s->filetype = AFF_TYPE_NONE;
1906 else
1907 tcc_warning("unsupported language '%s'", optarg);
1908 break;
1909 case TCC_OPTION_O:
1910 last_o = atoi(optarg);
1911 break;
1912 case TCC_OPTION_print_search_dirs:
1913 x = OPT_PRINT_DIRS;
1914 goto extra_action;
1915 case TCC_OPTION_impdef:
1916 x = OPT_IMPDEF;
1917 goto extra_action;
1918 case TCC_OPTION_ar:
1919 x = OPT_AR;
1920 extra_action:
1921 arg_start = optind - 1;
1922 if (arg_start != noaction)
1923 tcc_error("cannot parse %s here", r);
1924 tool = x;
1925 break;
1926 case TCC_OPTION_traditional:
1927 case TCC_OPTION_pedantic:
1928 case TCC_OPTION_pipe:
1929 case TCC_OPTION_s:
1930 /* ignored */
1931 break;
1932 default:
1933 unsupported_option:
1934 if (s->warn_unsupported)
1935 tcc_warning("unsupported option '%s'", r);
1936 break;
1939 if (last_o > 0)
1940 tcc_define_symbol(s, "__OPTIMIZE__", NULL);
1941 if (linker_arg.size) {
1942 r = linker_arg.data;
1943 goto arg_err;
1945 *pargc = argc - arg_start;
1946 *pargv = argv + arg_start;
1947 if (tool)
1948 return tool;
1949 if (optind != noaction)
1950 return 0;
1951 if (s->verbose == 2)
1952 return OPT_PRINT_DIRS;
1953 if (s->verbose)
1954 return OPT_V;
1955 return OPT_HELP;
1958 LIBTCCAPI void tcc_set_options(TCCState *s, const char *r)
1960 char **argv = NULL;
1961 int argc = 0;
1962 args_parser_make_argv(r, &argc, &argv);
1963 tcc_parse_args(s, &argc, &argv, 0);
1964 dynarray_reset(&argv, &argc);
1967 PUB_FUNC void tcc_print_stats(TCCState *s, unsigned total_time)
1969 if (total_time < 1)
1970 total_time = 1;
1971 if (total_bytes < 1)
1972 total_bytes = 1;
1973 fprintf(stderr, "* %d idents, %d lines, %d bytes\n"
1974 "* %0.3f s, %u lines/s, %0.1f MB/s\n",
1975 tok_ident - TOK_IDENT, total_lines, total_bytes,
1976 (double)total_time/1000,
1977 (unsigned)total_lines*1000/total_time,
1978 (double)total_bytes/1000/total_time);
1979 #ifdef MEM_DEBUG
1980 fprintf(stderr, "* %d bytes memory used\n", mem_max_size);
1981 #endif