Recognize C11' _Alignof
[tinycc.git] / libtcc.c
blobdf7adabc00fdc9172a493d4f499741ac61b24033
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 (s1->error_set_jmp_enabled) {
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, int filetype)
626 Sym *define_start;
627 int is_asm;
629 define_start = define_stack;
630 is_asm = !!(filetype & (AFF_TYPE_ASM|AFF_TYPE_ASMPP));
631 tccelf_begin_file(s1);
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 tccelf_end_file(s1);
659 return s1->nb_errors != 0 ? -1 : 0;
662 LIBTCCAPI int tcc_compile_string(TCCState *s, const char *str)
664 int len, ret;
666 len = strlen(str);
667 tcc_open_bf(s, "<string>", len);
668 memcpy(file->buffer, str, len);
669 ret = tcc_compile(s, s->filetype);
670 tcc_close();
671 return ret;
674 /* define a preprocessor symbol. A value can also be provided with the '=' operator */
675 LIBTCCAPI void tcc_define_symbol(TCCState *s1, const char *sym, const char *value)
677 int len1, len2;
678 /* default value */
679 if (!value)
680 value = "1";
681 len1 = strlen(sym);
682 len2 = strlen(value);
684 /* init file structure */
685 tcc_open_bf(s1, "<define>", len1 + len2 + 1);
686 memcpy(file->buffer, sym, len1);
687 file->buffer[len1] = ' ';
688 memcpy(file->buffer + len1 + 1, value, len2);
690 /* parse with define parser */
691 next_nomacro();
692 parse_define();
693 tcc_close();
696 /* undefine a preprocessor symbol */
697 LIBTCCAPI void tcc_undefine_symbol(TCCState *s1, const char *sym)
699 TokenSym *ts;
700 Sym *s;
701 ts = tok_alloc(sym, strlen(sym));
702 s = define_find(ts->tok);
703 /* undefine symbol by putting an invalid name */
704 if (s)
705 define_undef(s);
708 /* cleanup all static data used during compilation */
709 static void tcc_cleanup(void)
711 if (NULL == tcc_state)
712 return;
713 while (file)
714 tcc_close();
715 tccpp_delete(tcc_state);
716 tcc_state = NULL;
717 /* free sym_pools */
718 dynarray_reset(&sym_pools, &nb_sym_pools);
719 /* reset symbol stack */
720 sym_free_first = NULL;
723 LIBTCCAPI TCCState *tcc_new(void)
725 TCCState *s;
727 tcc_cleanup();
729 s = tcc_mallocz(sizeof(TCCState));
730 if (!s)
731 return NULL;
732 tcc_state = s;
733 ++nb_states;
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 #ifdef TCC_TARGET_MACHO
1020 if (0 == obj_type && 0 == strcmp(tcc_fileextension(filename), ".dylib"))
1021 obj_type = AFF_BINTYPE_DYN;
1022 #endif
1024 switch (obj_type) {
1025 case AFF_BINTYPE_REL:
1026 ret = tcc_load_object_file(s1, fd, 0);
1027 break;
1028 #ifndef TCC_TARGET_PE
1029 case AFF_BINTYPE_DYN:
1030 if (s1->output_type == TCC_OUTPUT_MEMORY) {
1031 ret = 0;
1032 #ifdef TCC_IS_NATIVE
1033 if (NULL == dlopen(filename, RTLD_GLOBAL | RTLD_LAZY))
1034 ret = -1;
1035 #endif
1036 } else {
1037 ret = tcc_load_dll(s1, fd, filename,
1038 (flags & AFF_REFERENCED_DLL) != 0);
1040 break;
1041 #endif
1042 case AFF_BINTYPE_AR:
1043 ret = tcc_load_archive(s1, fd, !(flags & AFF_WHOLE_ARCHIVE));
1044 break;
1045 #ifdef TCC_TARGET_COFF
1046 case AFF_BINTYPE_C67:
1047 ret = tcc_load_coff(s1, fd);
1048 break;
1049 #endif
1050 default:
1051 #ifdef TCC_TARGET_PE
1052 ret = pe_load_file(s1, filename, fd);
1053 #else
1054 /* as GNU ld, consider it is an ld script if not recognized */
1055 ret = tcc_load_ldscript(s1);
1056 #endif
1057 if (ret < 0)
1058 tcc_error_noabort("unrecognized file type");
1059 break;
1061 } else {
1062 ret = tcc_compile(s1, flags);
1064 tcc_close();
1065 return ret;
1068 LIBTCCAPI int tcc_add_file(TCCState *s, const char *filename)
1070 int filetype = s->filetype;
1071 if (0 == (filetype & AFF_TYPE_MASK)) {
1072 /* use a file extension to detect a filetype */
1073 const char *ext = tcc_fileextension(filename);
1074 if (ext[0]) {
1075 ext++;
1076 if (!strcmp(ext, "S"))
1077 filetype = AFF_TYPE_ASMPP;
1078 else if (!strcmp(ext, "s"))
1079 filetype = AFF_TYPE_ASM;
1080 else if (!PATHCMP(ext, "c") || !PATHCMP(ext, "i"))
1081 filetype = AFF_TYPE_C;
1082 else
1083 filetype |= AFF_TYPE_BIN;
1084 } else {
1085 filetype = AFF_TYPE_C;
1088 return tcc_add_file_internal(s, filename, filetype | AFF_PRINT_ERROR);
1091 LIBTCCAPI int tcc_add_library_path(TCCState *s, const char *pathname)
1093 tcc_split_path(s, &s->library_paths, &s->nb_library_paths, pathname);
1094 return 0;
1097 static int tcc_add_library_internal(TCCState *s, const char *fmt,
1098 const char *filename, int flags, char **paths, int nb_paths)
1100 char buf[1024];
1101 int i;
1103 for(i = 0; i < nb_paths; i++) {
1104 snprintf(buf, sizeof(buf), fmt, paths[i], filename);
1105 if (tcc_add_file_internal(s, buf, flags | AFF_TYPE_BIN) == 0)
1106 return 0;
1108 return -1;
1111 /* find and load a dll. Return non zero if not found */
1112 /* XXX: add '-rpath' option support ? */
1113 ST_FUNC int tcc_add_dll(TCCState *s, const char *filename, int flags)
1115 return tcc_add_library_internal(s, "%s/%s", filename, flags,
1116 s->library_paths, s->nb_library_paths);
1119 ST_FUNC int tcc_add_crt(TCCState *s, const char *filename)
1121 if (-1 == tcc_add_library_internal(s, "%s/%s",
1122 filename, 0, s->crt_paths, s->nb_crt_paths))
1123 tcc_error_noabort("file '%s' not found", filename);
1124 return 0;
1127 /* the library name is the same as the argument of the '-l' option */
1128 LIBTCCAPI int tcc_add_library(TCCState *s, const char *libraryname)
1130 #if defined TCC_TARGET_PE
1131 const char *libs[] = { "%s/%s.def", "%s/lib%s.def", "%s/%s.dll", "%s/lib%s.dll", "%s/lib%s.a", NULL };
1132 const char **pp = s->static_link ? libs + 4 : libs;
1133 #elif defined TCC_TARGET_MACHO
1134 const char *libs[] = { "%s/lib%s.dylib", "%s/lib%s.a", NULL };
1135 const char **pp = s->static_link ? libs + 1 : libs;
1136 #else
1137 const char *libs[] = { "%s/lib%s.so", "%s/lib%s.a", NULL };
1138 const char **pp = s->static_link ? libs + 1 : libs;
1139 #endif
1140 int flags = s->filetype & AFF_WHOLE_ARCHIVE;
1141 while (*pp) {
1142 if (0 == tcc_add_library_internal(s, *pp,
1143 libraryname, flags, s->library_paths, s->nb_library_paths))
1144 return 0;
1145 ++pp;
1147 return -1;
1150 PUB_FUNC int tcc_add_library_err(TCCState *s, const char *libname)
1152 int ret = tcc_add_library(s, libname);
1153 if (ret < 0)
1154 tcc_error_noabort("library '%s' not found", libname);
1155 return ret;
1158 /* handle #pragma comment(lib,) */
1159 ST_FUNC void tcc_add_pragma_libs(TCCState *s1)
1161 int i;
1162 for (i = 0; i < s1->nb_pragma_libs; i++)
1163 tcc_add_library_err(s1, s1->pragma_libs[i]);
1166 LIBTCCAPI int tcc_add_symbol(TCCState *s, const char *name, const void *val)
1168 #ifdef TCC_TARGET_PE
1169 /* On x86_64 'val' might not be reachable with a 32bit offset.
1170 So it is handled here as if it were in a DLL. */
1171 pe_putimport(s, 0, name, (uintptr_t)val);
1172 #else
1173 set_elf_sym(symtab_section, (uintptr_t)val, 0,
1174 ELFW(ST_INFO)(STB_GLOBAL, STT_NOTYPE), 0,
1175 SHN_ABS, name);
1176 #endif
1177 return 0;
1180 LIBTCCAPI void tcc_set_lib_path(TCCState *s, const char *path)
1182 tcc_free(s->tcc_lib_path);
1183 s->tcc_lib_path = tcc_strdup(path);
1186 #define WD_ALL 0x0001 /* warning is activated when using -Wall */
1187 #define FD_INVERT 0x0002 /* invert value before storing */
1189 typedef struct FlagDef {
1190 uint16_t offset;
1191 uint16_t flags;
1192 const char *name;
1193 } FlagDef;
1195 static int no_flag(const char **pp)
1197 const char *p = *pp;
1198 if (*p != 'n' || *++p != 'o' || *++p != '-')
1199 return 0;
1200 *pp = p + 1;
1201 return 1;
1204 ST_FUNC int set_flag(TCCState *s, const FlagDef *flags, const char *name)
1206 int value, ret;
1207 const FlagDef *p;
1208 const char *r;
1210 value = 1;
1211 r = name;
1212 if (no_flag(&r))
1213 value = 0;
1215 for (ret = -1, p = flags; p->name; ++p) {
1216 if (ret) {
1217 if (strcmp(r, p->name))
1218 continue;
1219 } else {
1220 if (0 == (p->flags & WD_ALL))
1221 continue;
1223 if (p->offset) {
1224 *(int*)((char *)s + p->offset) =
1225 p->flags & FD_INVERT ? !value : value;
1226 if (ret)
1227 return 0;
1228 } else {
1229 ret = 0;
1232 return ret;
1235 static int strstart(const char *val, const char **str)
1237 const char *p, *q;
1238 p = *str;
1239 q = val;
1240 while (*q) {
1241 if (*p != *q)
1242 return 0;
1243 p++;
1244 q++;
1246 *str = p;
1247 return 1;
1250 /* Like strstart, but automatically takes into account that ld options can
1252 * - start with double or single dash (e.g. '--soname' or '-soname')
1253 * - arguments can be given as separate or after '=' (e.g. '-Wl,-soname,x.so'
1254 * or '-Wl,-soname=x.so')
1256 * you provide `val` always in 'option[=]' form (no leading -)
1258 static int link_option(const char *str, const char *val, const char **ptr)
1260 const char *p, *q;
1261 int ret;
1263 /* there should be 1 or 2 dashes */
1264 if (*str++ != '-')
1265 return 0;
1266 if (*str == '-')
1267 str++;
1269 /* then str & val should match (potentially up to '=') */
1270 p = str;
1271 q = val;
1273 ret = 1;
1274 if (q[0] == '?') {
1275 ++q;
1276 if (no_flag(&p))
1277 ret = -1;
1280 while (*q != '\0' && *q != '=') {
1281 if (*p != *q)
1282 return 0;
1283 p++;
1284 q++;
1287 /* '=' near eos means ',' or '=' is ok */
1288 if (*q == '=') {
1289 if (*p == 0)
1290 *ptr = p;
1291 if (*p != ',' && *p != '=')
1292 return 0;
1293 p++;
1294 } else if (*p) {
1295 return 0;
1297 *ptr = p;
1298 return ret;
1301 static const char *skip_linker_arg(const char **str)
1303 const char *s1 = *str;
1304 const char *s2 = strchr(s1, ',');
1305 *str = s2 ? s2++ : (s2 = s1 + strlen(s1));
1306 return s2;
1309 static void copy_linker_arg(char **pp, const char *s, int sep)
1311 const char *q = s;
1312 char *p = *pp;
1313 int l = 0;
1314 if (p && sep)
1315 p[l = strlen(p)] = sep, ++l;
1316 skip_linker_arg(&q);
1317 pstrncpy(l + (*pp = tcc_realloc(p, q - s + l + 1)), s, q - s);
1320 /* set linker options */
1321 static int tcc_set_linker(TCCState *s, const char *option)
1323 while (*option) {
1325 const char *p = NULL;
1326 char *end = NULL;
1327 int ignoring = 0;
1328 int ret;
1330 if (link_option(option, "Bsymbolic", &p)) {
1331 s->symbolic = 1;
1332 } else if (link_option(option, "nostdlib", &p)) {
1333 s->nostdlib = 1;
1334 } else if (link_option(option, "fini=", &p)) {
1335 copy_linker_arg(&s->fini_symbol, p, 0);
1336 ignoring = 1;
1337 } else if (link_option(option, "image-base=", &p)
1338 || link_option(option, "Ttext=", &p)) {
1339 s->text_addr = strtoull(p, &end, 16);
1340 s->has_text_addr = 1;
1341 } else if (link_option(option, "init=", &p)) {
1342 copy_linker_arg(&s->init_symbol, p, 0);
1343 ignoring = 1;
1344 } else if (link_option(option, "oformat=", &p)) {
1345 #if defined(TCC_TARGET_PE)
1346 if (strstart("pe-", &p)) {
1347 #elif PTR_SIZE == 8
1348 if (strstart("elf64-", &p)) {
1349 #else
1350 if (strstart("elf32-", &p)) {
1351 #endif
1352 s->output_format = TCC_OUTPUT_FORMAT_ELF;
1353 } else if (!strcmp(p, "binary")) {
1354 s->output_format = TCC_OUTPUT_FORMAT_BINARY;
1355 #ifdef TCC_TARGET_COFF
1356 } else if (!strcmp(p, "coff")) {
1357 s->output_format = TCC_OUTPUT_FORMAT_COFF;
1358 #endif
1359 } else
1360 goto err;
1362 } else if (link_option(option, "as-needed", &p)) {
1363 ignoring = 1;
1364 } else if (link_option(option, "O", &p)) {
1365 ignoring = 1;
1366 } else if (link_option(option, "export-all-symbols", &p)) {
1367 s->rdynamic = 1;
1368 } else if (link_option(option, "export-dynamic", &p)) {
1369 s->rdynamic = 1;
1370 } else if (link_option(option, "rpath=", &p)) {
1371 copy_linker_arg(&s->rpath, p, ':');
1372 } else if (link_option(option, "enable-new-dtags", &p)) {
1373 s->enable_new_dtags = 1;
1374 } else if (link_option(option, "section-alignment=", &p)) {
1375 s->section_align = strtoul(p, &end, 16);
1376 } else if (link_option(option, "soname=", &p)) {
1377 copy_linker_arg(&s->soname, p, 0);
1378 #ifdef TCC_TARGET_PE
1379 } else if (link_option(option, "large-address-aware", &p)) {
1380 s->pe_characteristics |= 0x20;
1381 } else if (link_option(option, "file-alignment=", &p)) {
1382 s->pe_file_align = strtoul(p, &end, 16);
1383 } else if (link_option(option, "stack=", &p)) {
1384 s->pe_stack_size = strtoul(p, &end, 10);
1385 } else if (link_option(option, "subsystem=", &p)) {
1386 #if defined(TCC_TARGET_I386) || defined(TCC_TARGET_X86_64)
1387 if (!strcmp(p, "native")) {
1388 s->pe_subsystem = 1;
1389 } else if (!strcmp(p, "console")) {
1390 s->pe_subsystem = 3;
1391 } else if (!strcmp(p, "gui") || !strcmp(p, "windows")) {
1392 s->pe_subsystem = 2;
1393 } else if (!strcmp(p, "posix")) {
1394 s->pe_subsystem = 7;
1395 } else if (!strcmp(p, "efiapp")) {
1396 s->pe_subsystem = 10;
1397 } else if (!strcmp(p, "efiboot")) {
1398 s->pe_subsystem = 11;
1399 } else if (!strcmp(p, "efiruntime")) {
1400 s->pe_subsystem = 12;
1401 } else if (!strcmp(p, "efirom")) {
1402 s->pe_subsystem = 13;
1403 #elif defined(TCC_TARGET_ARM)
1404 if (!strcmp(p, "wince")) {
1405 s->pe_subsystem = 9;
1406 #endif
1407 } else
1408 goto err;
1409 #endif
1410 } else if (ret = link_option(option, "?whole-archive", &p), ret) {
1411 if (ret > 0)
1412 s->filetype |= AFF_WHOLE_ARCHIVE;
1413 else
1414 s->filetype &= ~AFF_WHOLE_ARCHIVE;
1415 } else if (p) {
1416 return 0;
1417 } else {
1418 err:
1419 tcc_error("unsupported linker option '%s'", option);
1422 if (ignoring && s->warn_unsupported)
1423 tcc_warning("unsupported linker option '%s'", option);
1425 option = skip_linker_arg(&p);
1427 return 1;
1430 typedef struct TCCOption {
1431 const char *name;
1432 uint16_t index;
1433 uint16_t flags;
1434 } TCCOption;
1436 enum {
1437 TCC_OPTION_HELP,
1438 TCC_OPTION_HELP2,
1439 TCC_OPTION_v,
1440 TCC_OPTION_I,
1441 TCC_OPTION_D,
1442 TCC_OPTION_U,
1443 TCC_OPTION_P,
1444 TCC_OPTION_L,
1445 TCC_OPTION_B,
1446 TCC_OPTION_l,
1447 TCC_OPTION_bench,
1448 TCC_OPTION_bt,
1449 TCC_OPTION_b,
1450 TCC_OPTION_g,
1451 TCC_OPTION_c,
1452 TCC_OPTION_dumpversion,
1453 TCC_OPTION_d,
1454 TCC_OPTION_static,
1455 TCC_OPTION_std,
1456 TCC_OPTION_shared,
1457 TCC_OPTION_soname,
1458 TCC_OPTION_o,
1459 TCC_OPTION_r,
1460 TCC_OPTION_s,
1461 TCC_OPTION_traditional,
1462 TCC_OPTION_Wl,
1463 TCC_OPTION_Wp,
1464 TCC_OPTION_W,
1465 TCC_OPTION_O,
1466 TCC_OPTION_mfloat_abi,
1467 TCC_OPTION_m,
1468 TCC_OPTION_f,
1469 TCC_OPTION_isystem,
1470 TCC_OPTION_iwithprefix,
1471 TCC_OPTION_include,
1472 TCC_OPTION_nostdinc,
1473 TCC_OPTION_nostdlib,
1474 TCC_OPTION_print_search_dirs,
1475 TCC_OPTION_rdynamic,
1476 TCC_OPTION_param,
1477 TCC_OPTION_pedantic,
1478 TCC_OPTION_pthread,
1479 TCC_OPTION_run,
1480 TCC_OPTION_w,
1481 TCC_OPTION_pipe,
1482 TCC_OPTION_E,
1483 TCC_OPTION_MD,
1484 TCC_OPTION_MF,
1485 TCC_OPTION_x,
1486 TCC_OPTION_ar,
1487 TCC_OPTION_impdef
1490 #define TCC_OPTION_HAS_ARG 0x0001
1491 #define TCC_OPTION_NOSEP 0x0002 /* cannot have space before option and arg */
1493 static const TCCOption tcc_options[] = {
1494 { "h", TCC_OPTION_HELP, 0 },
1495 { "-help", TCC_OPTION_HELP, 0 },
1496 { "?", TCC_OPTION_HELP, 0 },
1497 { "hh", TCC_OPTION_HELP2, 0 },
1498 { "v", TCC_OPTION_v, TCC_OPTION_HAS_ARG | TCC_OPTION_NOSEP },
1499 { "I", TCC_OPTION_I, TCC_OPTION_HAS_ARG },
1500 { "D", TCC_OPTION_D, TCC_OPTION_HAS_ARG },
1501 { "U", TCC_OPTION_U, TCC_OPTION_HAS_ARG },
1502 { "P", TCC_OPTION_P, TCC_OPTION_HAS_ARG | TCC_OPTION_NOSEP },
1503 { "L", TCC_OPTION_L, TCC_OPTION_HAS_ARG },
1504 { "B", TCC_OPTION_B, TCC_OPTION_HAS_ARG },
1505 { "l", TCC_OPTION_l, TCC_OPTION_HAS_ARG },
1506 { "bench", TCC_OPTION_bench, 0 },
1507 #ifdef CONFIG_TCC_BACKTRACE
1508 { "bt", TCC_OPTION_bt, TCC_OPTION_HAS_ARG },
1509 #endif
1510 #ifdef CONFIG_TCC_BCHECK
1511 { "b", TCC_OPTION_b, 0 },
1512 #endif
1513 { "g", TCC_OPTION_g, TCC_OPTION_HAS_ARG | TCC_OPTION_NOSEP },
1514 { "c", TCC_OPTION_c, 0 },
1515 { "dumpversion", TCC_OPTION_dumpversion, 0},
1516 { "d", TCC_OPTION_d, TCC_OPTION_HAS_ARG | TCC_OPTION_NOSEP },
1517 { "static", TCC_OPTION_static, 0 },
1518 { "std", TCC_OPTION_std, TCC_OPTION_HAS_ARG | TCC_OPTION_NOSEP },
1519 { "shared", TCC_OPTION_shared, 0 },
1520 { "soname", TCC_OPTION_soname, TCC_OPTION_HAS_ARG },
1521 { "o", TCC_OPTION_o, TCC_OPTION_HAS_ARG },
1522 { "-param", TCC_OPTION_param, TCC_OPTION_HAS_ARG },
1523 { "pedantic", TCC_OPTION_pedantic, 0},
1524 { "pthread", TCC_OPTION_pthread, 0},
1525 { "run", TCC_OPTION_run, TCC_OPTION_HAS_ARG | TCC_OPTION_NOSEP },
1526 { "rdynamic", TCC_OPTION_rdynamic, 0 },
1527 { "r", TCC_OPTION_r, 0 },
1528 { "s", TCC_OPTION_s, 0 },
1529 { "traditional", TCC_OPTION_traditional, 0 },
1530 { "Wl,", TCC_OPTION_Wl, TCC_OPTION_HAS_ARG | TCC_OPTION_NOSEP },
1531 { "Wp,", TCC_OPTION_Wp, TCC_OPTION_HAS_ARG | TCC_OPTION_NOSEP },
1532 { "W", TCC_OPTION_W, TCC_OPTION_HAS_ARG | TCC_OPTION_NOSEP },
1533 { "O", TCC_OPTION_O, TCC_OPTION_HAS_ARG | TCC_OPTION_NOSEP },
1534 #ifdef TCC_TARGET_ARM
1535 { "mfloat-abi", TCC_OPTION_mfloat_abi, TCC_OPTION_HAS_ARG },
1536 #endif
1537 { "m", TCC_OPTION_m, TCC_OPTION_HAS_ARG | TCC_OPTION_NOSEP },
1538 { "f", TCC_OPTION_f, TCC_OPTION_HAS_ARG | TCC_OPTION_NOSEP },
1539 { "isystem", TCC_OPTION_isystem, TCC_OPTION_HAS_ARG },
1540 { "include", TCC_OPTION_include, TCC_OPTION_HAS_ARG },
1541 { "nostdinc", TCC_OPTION_nostdinc, 0 },
1542 { "nostdlib", TCC_OPTION_nostdlib, 0 },
1543 { "print-search-dirs", TCC_OPTION_print_search_dirs, 0 },
1544 { "w", TCC_OPTION_w, 0 },
1545 { "pipe", TCC_OPTION_pipe, 0},
1546 { "E", TCC_OPTION_E, 0},
1547 { "MD", TCC_OPTION_MD, 0},
1548 { "MF", TCC_OPTION_MF, TCC_OPTION_HAS_ARG },
1549 { "x", TCC_OPTION_x, TCC_OPTION_HAS_ARG },
1550 { "ar", TCC_OPTION_ar, 0},
1551 #ifdef TCC_TARGET_PE
1552 { "impdef", TCC_OPTION_impdef, 0},
1553 #endif
1554 { NULL, 0, 0 },
1557 static const FlagDef options_W[] = {
1558 { 0, 0, "all" },
1559 { offsetof(TCCState, warn_unsupported), 0, "unsupported" },
1560 { offsetof(TCCState, warn_write_strings), 0, "write-strings" },
1561 { offsetof(TCCState, warn_error), 0, "error" },
1562 { offsetof(TCCState, warn_gcc_compat), 0, "gcc-compat" },
1563 { offsetof(TCCState, warn_implicit_function_declaration), WD_ALL,
1564 "implicit-function-declaration" },
1565 { 0, 0, NULL }
1568 static const FlagDef options_f[] = {
1569 { offsetof(TCCState, char_is_unsigned), 0, "unsigned-char" },
1570 { offsetof(TCCState, char_is_unsigned), FD_INVERT, "signed-char" },
1571 { offsetof(TCCState, nocommon), FD_INVERT, "common" },
1572 { offsetof(TCCState, leading_underscore), 0, "leading-underscore" },
1573 { offsetof(TCCState, ms_extensions), 0, "ms-extensions" },
1574 { offsetof(TCCState, dollars_in_identifiers), 0, "dollars-in-identifiers" },
1575 { 0, 0, NULL }
1578 static const FlagDef options_m[] = {
1579 { offsetof(TCCState, ms_bitfields), 0, "ms-bitfields" },
1580 #ifdef TCC_TARGET_X86_64
1581 { offsetof(TCCState, nosse), FD_INVERT, "sse" },
1582 #endif
1583 { 0, 0, NULL }
1586 static void parse_option_D(TCCState *s1, const char *optarg)
1588 char *sym = tcc_strdup(optarg);
1589 char *value = strchr(sym, '=');
1590 if (value)
1591 *value++ = '\0';
1592 tcc_define_symbol(s1, sym, value);
1593 tcc_free(sym);
1596 static void args_parser_add_file(TCCState *s, const char* filename, int filetype)
1598 struct filespec *f = tcc_malloc(sizeof *f + strlen(filename));
1599 f->type = filetype;
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 | (s->filetype & ~AFF_TYPE_MASK));
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 x = 0;
1901 if (*optarg == 'c')
1902 x = AFF_TYPE_C;
1903 else if (*optarg == 'a')
1904 x = AFF_TYPE_ASMPP;
1905 else if (*optarg == 'b')
1906 x = AFF_TYPE_BIN;
1907 else if (*optarg == 'n')
1908 x = AFF_TYPE_NONE;
1909 else
1910 tcc_warning("unsupported language '%s'", optarg);
1911 s->filetype = x | (s->filetype & ~AFF_TYPE_MASK);
1912 break;
1913 case TCC_OPTION_O:
1914 last_o = atoi(optarg);
1915 break;
1916 case TCC_OPTION_print_search_dirs:
1917 x = OPT_PRINT_DIRS;
1918 goto extra_action;
1919 case TCC_OPTION_impdef:
1920 x = OPT_IMPDEF;
1921 goto extra_action;
1922 case TCC_OPTION_ar:
1923 x = OPT_AR;
1924 extra_action:
1925 arg_start = optind - 1;
1926 if (arg_start != noaction)
1927 tcc_error("cannot parse %s here", r);
1928 tool = x;
1929 break;
1930 case TCC_OPTION_traditional:
1931 case TCC_OPTION_pedantic:
1932 case TCC_OPTION_pipe:
1933 case TCC_OPTION_s:
1934 /* ignored */
1935 break;
1936 default:
1937 unsupported_option:
1938 if (s->warn_unsupported)
1939 tcc_warning("unsupported option '%s'", r);
1940 break;
1943 if (last_o > 0)
1944 tcc_define_symbol(s, "__OPTIMIZE__", NULL);
1945 if (linker_arg.size) {
1946 r = linker_arg.data;
1947 goto arg_err;
1949 *pargc = argc - arg_start;
1950 *pargv = argv + arg_start;
1951 if (tool)
1952 return tool;
1953 if (optind != noaction)
1954 return 0;
1955 if (s->verbose == 2)
1956 return OPT_PRINT_DIRS;
1957 if (s->verbose)
1958 return OPT_V;
1959 return OPT_HELP;
1962 LIBTCCAPI void tcc_set_options(TCCState *s, const char *r)
1964 char **argv = NULL;
1965 int argc = 0;
1966 args_parser_make_argv(r, &argc, &argv);
1967 tcc_parse_args(s, &argc, &argv, 0);
1968 dynarray_reset(&argv, &argc);
1971 PUB_FUNC void tcc_print_stats(TCCState *s, unsigned total_time)
1973 if (total_time < 1)
1974 total_time = 1;
1975 if (total_bytes < 1)
1976 total_bytes = 1;
1977 fprintf(stderr, "* %d idents, %d lines, %d bytes\n"
1978 "* %0.3f s, %u lines/s, %0.1f MB/s\n",
1979 tok_ident - TOK_IDENT, total_lines, total_bytes,
1980 (double)total_time/1000,
1981 (unsigned)total_lines*1000/total_time,
1982 (double)total_bytes/1000/total_time);
1983 #ifdef MEM_DEBUG
1984 fprintf(stderr, "* %d bytes memory used\n", mem_max_size);
1985 #endif