FreeBSD: start to reintroduce support - WIP
[tinycc.git] / libtcc.c
blobedac4bcf6efa581dc9838013f2ec6478a29bb58e
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 #if !defined ONE_SOURCE || ONE_SOURCE
22 #include "tccpp.c"
23 #include "tccgen.c"
24 #include "tccelf.c"
25 #include "tccrun.c"
26 #ifdef TCC_TARGET_I386
27 #include "i386-gen.c"
28 #include "i386-link.c"
29 #include "i386-asm.c"
30 #elif defined(TCC_TARGET_ARM)
31 #include "arm-gen.c"
32 #include "arm-link.c"
33 #include "arm-asm.c"
34 #elif defined(TCC_TARGET_ARM64)
35 #include "arm64-gen.c"
36 #include "arm64-link.c"
37 #include "arm-asm.c"
38 #elif defined(TCC_TARGET_C67)
39 #include "c67-gen.c"
40 #include "c67-link.c"
41 #include "tcccoff.c"
42 #elif defined(TCC_TARGET_X86_64)
43 #include "x86_64-gen.c"
44 #include "x86_64-link.c"
45 #include "i386-asm.c"
46 #elif defined(TCC_TARGET_RISCV64)
47 #include "riscv64-gen.c"
48 #include "riscv64-link.c"
49 #include "riscv64-asm.c"
50 #else
51 #error unknown target
52 #endif
53 #ifdef CONFIG_TCC_ASM
54 #include "tccasm.c"
55 #endif
56 #ifdef TCC_TARGET_PE
57 #include "tccpe.c"
58 #endif
59 #ifdef TCC_TARGET_MACHO
60 #include "tccmacho.c"
61 #endif
62 #endif /* ONE_SOURCE */
64 #include "tcc.h"
66 /********************************************************/
67 /* global variables */
69 /* XXX: get rid of this ASAP (or maybe not) */
70 ST_DATA struct TCCState *tcc_state;
72 #ifdef MEM_DEBUG
73 static int nb_states;
74 #endif
76 /********************************************************/
77 #ifdef _WIN32
78 ST_FUNC char *normalize_slashes(char *path)
80 char *p;
81 for (p = path; *p; ++p)
82 if (*p == '\\')
83 *p = '/';
84 return path;
87 static HMODULE tcc_module;
89 /* on win32, we suppose the lib and includes are at the location of 'tcc.exe' */
90 static void tcc_set_lib_path_w32(TCCState *s)
92 char path[1024], *p;
93 GetModuleFileNameA(tcc_module, path, sizeof path);
94 p = tcc_basename(normalize_slashes(strlwr(path)));
95 if (p > path)
96 --p;
97 *p = 0;
98 tcc_set_lib_path(s, path);
101 #ifdef TCC_TARGET_PE
102 static void tcc_add_systemdir(TCCState *s)
104 char buf[1000];
105 GetSystemDirectory(buf, sizeof buf);
106 tcc_add_library_path(s, normalize_slashes(buf));
108 #endif
110 #ifdef LIBTCC_AS_DLL
111 BOOL WINAPI DllMain (HINSTANCE hDll, DWORD dwReason, LPVOID lpReserved)
113 if (DLL_PROCESS_ATTACH == dwReason)
114 tcc_module = hDll;
115 return TRUE;
117 #endif
118 #endif
120 /********************************************************/
121 #ifndef CONFIG_TCC_SEMLOCK
122 #define WAIT_SEM()
123 #define POST_SEM()
124 #elif defined _WIN32
125 static int tcc_sem_init;
126 static CRITICAL_SECTION tcc_cr;
127 static void wait_sem(void)
129 if (!tcc_sem_init)
130 InitializeCriticalSection(&tcc_cr), tcc_sem_init = 1;
131 EnterCriticalSection(&tcc_cr);
133 #define WAIT_SEM() wait_sem()
134 #define POST_SEM() LeaveCriticalSection(&tcc_cr);
135 #elif defined __APPLE__
136 /* Half-compatible MacOS doesn't have non-shared (process local)
137 semaphores. Use the dispatch framework for lightweight locks. */
138 #include <dispatch/dispatch.h>
139 static int tcc_sem_init;
140 static dispatch_semaphore_t tcc_sem;
141 static void wait_sem(void)
143 if (!tcc_sem_init)
144 tcc_sem = dispatch_semaphore_create(1), tcc_sem_init = 1;
145 dispatch_semaphore_wait(tcc_sem, DISPATCH_TIME_FOREVER);
147 #define WAIT_SEM() wait_sem()
148 #define POST_SEM() dispatch_semaphore_signal(tcc_sem)
149 #else
150 #include <semaphore.h>
151 static int tcc_sem_init;
152 static sem_t tcc_sem;
153 static void wait_sem(void)
155 if (!tcc_sem_init)
156 sem_init(&tcc_sem, 0, 1), tcc_sem_init = 1;
157 while (sem_wait (&tcc_sem) < 0 && errno == EINTR);
159 #define WAIT_SEM() wait_sem()
160 #define POST_SEM() sem_post(&tcc_sem)
161 #endif
163 /********************************************************/
164 /* copy a string and truncate it. */
165 ST_FUNC char *pstrcpy(char *buf, size_t buf_size, const char *s)
167 char *q, *q_end;
168 int c;
170 if (buf_size > 0) {
171 q = buf;
172 q_end = buf + buf_size - 1;
173 while (q < q_end) {
174 c = *s++;
175 if (c == '\0')
176 break;
177 *q++ = c;
179 *q = '\0';
181 return buf;
184 /* strcat and truncate. */
185 ST_FUNC char *pstrcat(char *buf, size_t buf_size, const char *s)
187 size_t len;
188 len = strlen(buf);
189 if (len < buf_size)
190 pstrcpy(buf + len, buf_size - len, s);
191 return buf;
194 ST_FUNC char *pstrncpy(char *out, const char *in, size_t num)
196 memcpy(out, in, num);
197 out[num] = '\0';
198 return out;
201 /* extract the basename of a file */
202 PUB_FUNC char *tcc_basename(const char *name)
204 char *p = strchr(name, 0);
205 while (p > name && !IS_DIRSEP(p[-1]))
206 --p;
207 return p;
210 /* extract extension part of a file
212 * (if no extension, return pointer to end-of-string)
214 PUB_FUNC char *tcc_fileextension (const char *name)
216 char *b = tcc_basename(name);
217 char *e = strrchr(b, '.');
218 return e ? e : strchr(b, 0);
221 /********************************************************/
222 /* memory management */
224 #undef free
225 #undef malloc
226 #undef realloc
228 #ifndef MEM_DEBUG
230 PUB_FUNC void tcc_free(void *ptr)
232 free(ptr);
235 PUB_FUNC void *tcc_malloc(unsigned long size)
237 void *ptr;
238 ptr = malloc(size);
239 if (!ptr && size)
240 _tcc_error("memory full (malloc)");
241 return ptr;
244 PUB_FUNC void *tcc_mallocz(unsigned long size)
246 void *ptr;
247 ptr = tcc_malloc(size);
248 if (size)
249 memset(ptr, 0, size);
250 return ptr;
253 PUB_FUNC void *tcc_realloc(void *ptr, unsigned long size)
255 void *ptr1;
256 ptr1 = realloc(ptr, size);
257 if (!ptr1 && size)
258 _tcc_error("memory full (realloc)");
259 return ptr1;
262 PUB_FUNC char *tcc_strdup(const char *str)
264 char *ptr;
265 ptr = tcc_malloc(strlen(str) + 1);
266 strcpy(ptr, str);
267 return ptr;
270 #else
272 #define MEM_DEBUG_MAGIC1 0xFEEDDEB1
273 #define MEM_DEBUG_MAGIC2 0xFEEDDEB2
274 #define MEM_DEBUG_MAGIC3 0xFEEDDEB3
275 #define MEM_DEBUG_FILE_LEN 40
276 #define MEM_DEBUG_CHECK3(header) \
277 ((mem_debug_header_t*)((char*)header + header->size))->magic3
278 #define MEM_USER_PTR(header) \
279 ((char *)header + offsetof(mem_debug_header_t, magic3))
280 #define MEM_HEADER_PTR(ptr) \
281 (mem_debug_header_t *)((char*)ptr - offsetof(mem_debug_header_t, magic3))
283 struct mem_debug_header {
284 unsigned magic1;
285 unsigned size;
286 struct mem_debug_header *prev;
287 struct mem_debug_header *next;
288 int line_num;
289 char file_name[MEM_DEBUG_FILE_LEN + 1];
290 unsigned magic2;
291 ALIGNED(16) unsigned magic3;
294 typedef struct mem_debug_header mem_debug_header_t;
296 static mem_debug_header_t *mem_debug_chain;
297 static unsigned mem_cur_size;
298 static unsigned mem_max_size;
300 static mem_debug_header_t *malloc_check(void *ptr, const char *msg)
302 mem_debug_header_t * header = MEM_HEADER_PTR(ptr);
303 if (header->magic1 != MEM_DEBUG_MAGIC1 ||
304 header->magic2 != MEM_DEBUG_MAGIC2 ||
305 MEM_DEBUG_CHECK3(header) != MEM_DEBUG_MAGIC3 ||
306 header->size == (unsigned)-1) {
307 fprintf(stderr, "%s check failed\n", msg);
308 if (header->magic1 == MEM_DEBUG_MAGIC1)
309 fprintf(stderr, "%s:%u: block allocated here.\n",
310 header->file_name, header->line_num);
311 exit(1);
313 return header;
316 PUB_FUNC void *tcc_malloc_debug(unsigned long size, const char *file, int line)
318 int ofs;
319 mem_debug_header_t *header;
321 header = malloc(sizeof(mem_debug_header_t) + size);
322 if (!header)
323 _tcc_error("memory full (malloc)");
325 header->magic1 = MEM_DEBUG_MAGIC1;
326 header->magic2 = MEM_DEBUG_MAGIC2;
327 header->size = size;
328 MEM_DEBUG_CHECK3(header) = MEM_DEBUG_MAGIC3;
329 header->line_num = line;
330 ofs = strlen(file) - MEM_DEBUG_FILE_LEN;
331 strncpy(header->file_name, file + (ofs > 0 ? ofs : 0), MEM_DEBUG_FILE_LEN);
332 header->file_name[MEM_DEBUG_FILE_LEN] = 0;
334 header->next = mem_debug_chain;
335 header->prev = NULL;
336 if (header->next)
337 header->next->prev = header;
338 mem_debug_chain = header;
340 mem_cur_size += size;
341 if (mem_cur_size > mem_max_size)
342 mem_max_size = mem_cur_size;
344 return MEM_USER_PTR(header);
347 PUB_FUNC void tcc_free_debug(void *ptr)
349 mem_debug_header_t *header;
350 if (!ptr)
351 return;
352 header = malloc_check(ptr, "tcc_free");
353 mem_cur_size -= header->size;
354 header->size = (unsigned)-1;
355 if (header->next)
356 header->next->prev = header->prev;
357 if (header->prev)
358 header->prev->next = header->next;
359 if (header == mem_debug_chain)
360 mem_debug_chain = header->next;
361 free(header);
364 PUB_FUNC void *tcc_mallocz_debug(unsigned long size, const char *file, int line)
366 void *ptr;
367 ptr = tcc_malloc_debug(size,file,line);
368 memset(ptr, 0, size);
369 return ptr;
372 PUB_FUNC void *tcc_realloc_debug(void *ptr, unsigned long size, const char *file, int line)
374 mem_debug_header_t *header;
375 int mem_debug_chain_update = 0;
376 if (!ptr)
377 return tcc_malloc_debug(size, file, line);
378 header = malloc_check(ptr, "tcc_realloc");
379 mem_cur_size -= header->size;
380 mem_debug_chain_update = (header == mem_debug_chain);
381 header = realloc(header, sizeof(mem_debug_header_t) + size);
382 if (!header)
383 _tcc_error("memory full (realloc)");
384 header->size = size;
385 MEM_DEBUG_CHECK3(header) = MEM_DEBUG_MAGIC3;
386 if (header->next)
387 header->next->prev = header;
388 if (header->prev)
389 header->prev->next = header;
390 if (mem_debug_chain_update)
391 mem_debug_chain = header;
392 mem_cur_size += size;
393 if (mem_cur_size > mem_max_size)
394 mem_max_size = mem_cur_size;
395 return MEM_USER_PTR(header);
398 PUB_FUNC char *tcc_strdup_debug(const char *str, const char *file, int line)
400 char *ptr;
401 ptr = tcc_malloc_debug(strlen(str) + 1, file, line);
402 strcpy(ptr, str);
403 return ptr;
406 PUB_FUNC void tcc_memcheck(void)
408 if (mem_cur_size) {
409 mem_debug_header_t *header = mem_debug_chain;
410 fprintf(stderr, "MEM_DEBUG: mem_leak= %d bytes, mem_max_size= %d bytes\n",
411 mem_cur_size, mem_max_size);
412 while (header) {
413 fprintf(stderr, "%s:%u: error: %u bytes leaked\n",
414 header->file_name, header->line_num, header->size);
415 header = header->next;
417 #if MEM_DEBUG-0 == 2
418 exit(2);
419 #endif
422 #endif /* MEM_DEBUG */
424 #define free(p) use_tcc_free(p)
425 #define malloc(s) use_tcc_malloc(s)
426 #define realloc(p, s) use_tcc_realloc(p, s)
428 /********************************************************/
429 /* dynarrays */
431 ST_FUNC void dynarray_add(void *ptab, int *nb_ptr, void *data)
433 int nb, nb_alloc;
434 void **pp;
436 nb = *nb_ptr;
437 pp = *(void ***)ptab;
438 /* every power of two we double array size */
439 if ((nb & (nb - 1)) == 0) {
440 if (!nb)
441 nb_alloc = 1;
442 else
443 nb_alloc = nb * 2;
444 pp = tcc_realloc(pp, nb_alloc * sizeof(void *));
445 *(void***)ptab = pp;
447 pp[nb++] = data;
448 *nb_ptr = nb;
451 ST_FUNC void dynarray_reset(void *pp, int *n)
453 void **p;
454 for (p = *(void***)pp; *n; ++p, --*n)
455 if (*p)
456 tcc_free(*p);
457 tcc_free(*(void**)pp);
458 *(void**)pp = NULL;
461 static void tcc_split_path(TCCState *s, void *p_ary, int *p_nb_ary, const char *in)
463 const char *p;
464 do {
465 int c;
466 CString str;
468 cstr_new(&str);
469 for (p = in; c = *p, c != '\0' && c != PATHSEP[0]; ++p) {
470 if (c == '{' && p[1] && p[2] == '}') {
471 c = p[1], p += 2;
472 if (c == 'B')
473 cstr_cat(&str, s->tcc_lib_path, -1);
474 if (c == 'f' && file) {
475 /* substitute current file's dir */
476 const char *f = file->true_filename;
477 const char *b = tcc_basename(f);
478 if (b > f)
479 cstr_cat(&str, f, b - f - 1);
480 else
481 cstr_cat(&str, ".", 1);
483 } else {
484 cstr_ccat(&str, c);
487 if (str.size) {
488 cstr_ccat(&str, '\0');
489 dynarray_add(p_ary, p_nb_ary, tcc_strdup(str.data));
491 cstr_free(&str);
492 in = p+1;
493 } while (*p);
496 /********************************************************/
498 static void strcat_vprintf(char *buf, int buf_size, const char *fmt, va_list ap)
500 int len;
501 len = strlen(buf);
502 vsnprintf(buf + len, buf_size - len, fmt, ap);
505 static void strcat_printf(char *buf, int buf_size, const char *fmt, ...)
507 va_list ap;
508 va_start(ap, fmt);
509 strcat_vprintf(buf, buf_size, fmt, ap);
510 va_end(ap);
513 #define ERROR_WARN 0
514 #define ERROR_NOABORT 1
515 #define ERROR_ERROR 2
517 PUB_FUNC void tcc_enter_state(TCCState *s1)
519 WAIT_SEM();
520 tcc_state = s1;
523 PUB_FUNC void tcc_exit_state(void)
525 tcc_state = NULL;
526 POST_SEM();
529 static void error1(int mode, const char *fmt, va_list ap)
531 char buf[2048];
532 BufferedFile **pf, *f;
533 TCCState *s1 = tcc_state;
535 buf[0] = '\0';
536 if (s1 == NULL)
537 /* can happen only if called from tcc_malloc(): 'out of memory' */
538 goto no_file;
540 if (s1 && !s1->error_set_jmp_enabled)
541 /* tcc_state just was set by tcc_enter_state() */
542 tcc_exit_state();
544 if (mode == ERROR_WARN) {
545 if (s1->warn_none)
546 return;
547 if (s1->warn_error)
548 mode = ERROR_ERROR;
551 f = NULL;
552 if (s1->error_set_jmp_enabled) { /* we're called while parsing a file */
553 /* use upper file if inline ":asm:" or token ":paste:" */
554 for (f = file; f && f->filename[0] == ':'; f = f->prev)
557 if (f) {
558 for(pf = s1->include_stack; pf < s1->include_stack_ptr; pf++)
559 strcat_printf(buf, sizeof(buf), "In file included from %s:%d:\n",
560 (*pf)->filename, (*pf)->line_num);
561 strcat_printf(buf, sizeof(buf), "%s:%d: ",
562 f->filename, f->line_num - !!(tok_flags & TOK_FLAG_BOL));
563 } else if (s1->current_filename) {
564 strcat_printf(buf, sizeof(buf), "%s: ", s1->current_filename);
567 no_file:
568 if (0 == buf[0])
569 strcat_printf(buf, sizeof(buf), "tcc: ");
570 if (mode == ERROR_WARN)
571 strcat_printf(buf, sizeof(buf), "warning: ");
572 else
573 strcat_printf(buf, sizeof(buf), "error: ");
574 strcat_vprintf(buf, sizeof(buf), fmt, ap);
575 if (!s1 || !s1->error_func) {
576 /* default case: stderr */
577 if (s1 && s1->output_type == TCC_OUTPUT_PREPROCESS && s1->ppfp == stdout)
578 /* print a newline during tcc -E */
579 printf("\n"), fflush(stdout);
580 fflush(stdout); /* flush -v output */
581 fprintf(stderr, "%s\n", buf);
582 fflush(stderr); /* print error/warning now (win32) */
583 } else {
584 s1->error_func(s1->error_opaque, buf);
586 if (s1) {
587 if (mode != ERROR_WARN)
588 s1->nb_errors++;
589 if (mode != ERROR_ERROR)
590 return;
591 if (s1->error_set_jmp_enabled)
592 longjmp(s1->error_jmp_buf, 1);
594 exit(1);
597 LIBTCCAPI void tcc_set_error_func(TCCState *s, void *error_opaque, TCCErrorFunc error_func)
599 s->error_opaque = error_opaque;
600 s->error_func = error_func;
603 LIBTCCAPI TCCErrorFunc tcc_get_error_func(TCCState *s)
605 return s->error_func;
608 LIBTCCAPI void *tcc_get_error_opaque(TCCState *s)
610 return s->error_opaque;
613 /* error without aborting current compilation */
614 PUB_FUNC void _tcc_error_noabort(const char *fmt, ...)
616 va_list ap;
617 va_start(ap, fmt);
618 error1(ERROR_NOABORT, fmt, ap);
619 va_end(ap);
622 PUB_FUNC void _tcc_error(const char *fmt, ...)
624 va_list ap;
625 va_start(ap, fmt);
626 for (;;) error1(ERROR_ERROR, fmt, ap);
629 PUB_FUNC void _tcc_warning(const char *fmt, ...)
631 va_list ap;
632 va_start(ap, fmt);
633 error1(ERROR_WARN, fmt, ap);
634 va_end(ap);
637 /********************************************************/
638 /* I/O layer */
640 ST_FUNC void tcc_open_bf(TCCState *s1, const char *filename, int initlen)
642 BufferedFile *bf;
643 int buflen = initlen ? initlen : IO_BUF_SIZE;
645 bf = tcc_mallocz(sizeof(BufferedFile) + buflen);
646 bf->buf_ptr = bf->buffer;
647 bf->buf_end = bf->buffer + initlen;
648 bf->buf_end[0] = CH_EOB; /* put eob symbol */
649 pstrcpy(bf->filename, sizeof(bf->filename), filename);
650 #ifdef _WIN32
651 normalize_slashes(bf->filename);
652 #endif
653 bf->true_filename = bf->filename;
654 bf->line_num = 1;
655 bf->ifdef_stack_ptr = s1->ifdef_stack_ptr;
656 bf->fd = -1;
657 bf->prev = file;
658 file = bf;
659 tok_flags = TOK_FLAG_BOL | TOK_FLAG_BOF;
662 ST_FUNC void tcc_close(void)
664 TCCState *s1 = tcc_state;
665 BufferedFile *bf = file;
666 if (bf->fd > 0) {
667 close(bf->fd);
668 total_lines += bf->line_num;
670 if (bf->true_filename != bf->filename)
671 tcc_free(bf->true_filename);
672 file = bf->prev;
673 tcc_free(bf);
676 static int _tcc_open(TCCState *s1, const char *filename)
678 int fd;
679 if (strcmp(filename, "-") == 0)
680 fd = 0, filename = "<stdin>";
681 else
682 fd = open(filename, O_RDONLY | O_BINARY);
683 if ((s1->verbose == 2 && fd >= 0) || s1->verbose == 3)
684 printf("%s %*s%s\n", fd < 0 ? "nf":"->",
685 (int)(s1->include_stack_ptr - s1->include_stack), "", filename);
686 return fd;
689 ST_FUNC int tcc_open(TCCState *s1, const char *filename)
691 int fd = _tcc_open(s1, filename);
692 if (fd < 0)
693 return -1;
694 tcc_open_bf(s1, filename, 0);
695 file->fd = fd;
696 return 0;
699 /* compile the file opened in 'file'. Return non zero if errors. */
700 static int tcc_compile(TCCState *s1, int filetype, const char *str, int fd)
702 /* Here we enter the code section where we use the global variables for
703 parsing and code generation (tccpp.c, tccgen.c, <target>-gen.c).
704 Other threads need to wait until we're done.
706 Alternatively we could use thread local storage for those global
707 variables, which may or may not have advantages */
709 tcc_enter_state(s1);
711 if (setjmp(s1->error_jmp_buf) == 0) {
712 s1->error_set_jmp_enabled = 1;
713 s1->nb_errors = 0;
715 if (fd == -1) {
716 int len = strlen(str);
717 tcc_open_bf(s1, "<string>", len);
718 memcpy(file->buffer, str, len);
719 } else {
720 tcc_open_bf(s1, str, 0);
721 file->fd = fd;
724 tccelf_begin_file(s1);
725 preprocess_start(s1, filetype);
726 tccgen_init(s1);
727 if (s1->output_type == TCC_OUTPUT_PREPROCESS) {
728 tcc_preprocess(s1);
729 } else if (filetype & (AFF_TYPE_ASM | AFF_TYPE_ASMPP)) {
730 #ifdef CONFIG_TCC_ASM
731 tcc_assemble(s1, !!(filetype & AFF_TYPE_ASMPP));
732 #else
733 tcc_error_noabort("asm not supported");
734 #endif
735 } else {
736 tccgen_compile(s1);
739 s1->error_set_jmp_enabled = 0;
740 tccgen_finish(s1);
741 preprocess_end(s1);
742 tcc_exit_state();
744 tccelf_end_file(s1);
745 return s1->nb_errors != 0 ? -1 : 0;
748 LIBTCCAPI int tcc_compile_string(TCCState *s, const char *str)
750 return tcc_compile(s, s->filetype, str, -1);
753 /* define a preprocessor symbol. value can be NULL, sym can be "sym=val" */
754 LIBTCCAPI void tcc_define_symbol(TCCState *s1, const char *sym, const char *value)
756 const char *eq;
757 if (NULL == (eq = strchr(sym, '=')))
758 eq = strchr(sym, 0);
759 if (NULL == value)
760 value = *eq ? eq + 1 : "1";
761 cstr_printf(&s1->cmdline_defs, "#define %.*s %s\n", (int)(eq-sym), sym, value);
764 /* undefine a preprocessor symbol */
765 LIBTCCAPI void tcc_undefine_symbol(TCCState *s1, const char *sym)
767 cstr_printf(&s1->cmdline_defs, "#undef %s\n", sym);
771 LIBTCCAPI TCCState *tcc_new(void)
773 TCCState *s;
775 s = tcc_mallocz(sizeof(TCCState));
776 if (!s)
777 return NULL;
778 #ifdef MEM_DEBUG
779 ++nb_states;
780 #endif
782 #undef gnu_ext
784 s->gnu_ext = 1;
785 s->tcc_ext = 1;
786 s->nocommon = 1;
787 s->dollars_in_identifiers = 1; /*on by default like in gcc/clang*/
788 s->cversion = 199901; /* default unless -std=c11 is supplied */
789 s->warn_implicit_function_declaration = 1;
790 s->ms_extensions = 1;
792 #ifdef CHAR_IS_UNSIGNED
793 s->char_is_unsigned = 1;
794 #endif
795 #ifdef TCC_TARGET_I386
796 s->seg_size = 32;
797 #endif
798 /* enable this if you want symbols with leading underscore on windows: */
799 #if defined TCC_TARGET_MACHO /* || defined TCC_TARGET_PE */
800 s->leading_underscore = 1;
801 #endif
802 s->ppfp = stdout;
803 /* might be used in error() before preprocess_start() */
804 s->include_stack_ptr = s->include_stack;
806 tccelf_new(s);
808 #ifdef _WIN32
809 tcc_set_lib_path_w32(s);
810 #else
811 tcc_set_lib_path(s, CONFIG_TCCDIR);
812 #endif
815 /* define __TINYC__ 92X */
816 char buffer[32]; int a,b,c;
817 sscanf(TCC_VERSION, "%d.%d.%d", &a, &b, &c);
818 sprintf(buffer, "%d", a*10000 + b*100 + c);
819 tcc_define_symbol(s, "__TINYC__", buffer);
822 /* standard defines */
823 tcc_define_symbol(s, "__STDC__", NULL);
824 tcc_define_symbol(s, "__STDC_VERSION__", "199901L");
825 tcc_define_symbol(s, "__STDC_HOSTED__", NULL);
827 /* target defines */
828 #if defined(TCC_TARGET_I386)
829 tcc_define_symbol(s, "__i386__", NULL);
830 tcc_define_symbol(s, "__i386", NULL);
831 tcc_define_symbol(s, "i386", NULL);
832 #elif defined(TCC_TARGET_X86_64)
833 tcc_define_symbol(s, "__x86_64__", NULL);
834 #elif defined(TCC_TARGET_ARM)
835 tcc_define_symbol(s, "__ARM_ARCH_4__", NULL);
836 tcc_define_symbol(s, "__arm_elf__", NULL);
837 tcc_define_symbol(s, "__arm_elf", NULL);
838 tcc_define_symbol(s, "arm_elf", NULL);
839 tcc_define_symbol(s, "__arm__", NULL);
840 tcc_define_symbol(s, "__arm", NULL);
841 tcc_define_symbol(s, "arm", NULL);
842 tcc_define_symbol(s, "__APCS_32__", NULL);
843 tcc_define_symbol(s, "__ARMEL__", NULL);
844 #if defined(TCC_ARM_EABI)
845 tcc_define_symbol(s, "__ARM_EABI__", NULL);
846 #endif
847 #if defined(TCC_ARM_HARDFLOAT)
848 s->float_abi = ARM_HARD_FLOAT;
849 tcc_define_symbol(s, "__ARM_PCS_VFP", NULL);
850 #else
851 s->float_abi = ARM_SOFTFP_FLOAT;
852 #endif
853 #elif defined(TCC_TARGET_ARM64)
854 tcc_define_symbol(s, "__aarch64__", NULL);
855 #elif defined TCC_TARGET_C67
856 tcc_define_symbol(s, "__C67__", NULL);
857 #elif defined TCC_TARGET_RISCV64
858 tcc_define_symbol(s, "__riscv", NULL);
859 tcc_define_symbol(s, "__riscv_xlen", "64");
860 tcc_define_symbol(s, "__riscv_flen", "64");
861 tcc_define_symbol(s, "__riscv_div", NULL);
862 tcc_define_symbol(s, "__riscv_mul", NULL);
863 tcc_define_symbol(s, "__riscv_fdiv", NULL);
864 tcc_define_symbol(s, "__riscv_fsqrt", NULL);
865 tcc_define_symbol(s, "__riscv_float_abi_double", NULL);
866 #endif
868 #ifdef TCC_TARGET_PE
869 tcc_define_symbol(s, "_WIN32", NULL);
870 tcc_define_symbol(s, "__declspec(x)", "__attribute__((x))");
871 tcc_define_symbol(s, "__cdecl", "");
872 # ifdef TCC_TARGET_X86_64
873 tcc_define_symbol(s, "_WIN64", NULL);
874 # endif
875 #else
876 tcc_define_symbol(s, "__unix__", NULL);
877 tcc_define_symbol(s, "__unix", NULL);
878 tcc_define_symbol(s, "unix", NULL);
879 # if defined(__linux__)
880 tcc_define_symbol(s, "__linux__", NULL);
881 tcc_define_symbol(s, "__linux", NULL);
882 # endif
883 # if defined(__FreeBSD__)
884 tcc_define_symbol(s, "__FreeBSD__", "__FreeBSD__");
885 /* No 'Thread Storage Local' on FreeBSD with tcc */
886 tcc_define_symbol(s, "__NO_TLS", NULL);
887 # endif
888 # if defined(__FreeBSD_kernel__)
889 tcc_define_symbol(s, "__FreeBSD_kernel__", NULL);
890 # endif
891 # if defined(__NetBSD__)
892 tcc_define_symbol(s, "__NetBSD__", "__NetBSD__");
893 # endif
894 # if defined(__OpenBSD__)
895 tcc_define_symbol(s, "__OpenBSD__", "1");
896 tcc_define_symbol(s, "_ANSI_LIBRARY", "1");
897 tcc_define_symbol(s, "__GNUC__", "4");
898 tcc_define_symbol(s, "__builtin_alloca", "alloca"); /* as we claim GNUC */
899 /* used by math.h */
900 tcc_define_symbol(s, "__builtin_huge_val()", "1e500");
901 tcc_define_symbol(s, "__builtin_huge_valf()", "1e50f");
902 tcc_define_symbol(s, "__builtin_huge_vall()", "1e5000L");
903 tcc_define_symbol(s, "__builtin_nanf(ignored_string)", "(0.0F/0.0F)");
904 # endif
905 #endif
907 /* TinyCC & gcc defines */
908 #if PTR_SIZE == 4
909 /* 32bit systems. */
910 tcc_define_symbol(s, "__SIZE_TYPE__", "unsigned int");
911 tcc_define_symbol(s, "__PTRDIFF_TYPE__", "int");
912 tcc_define_symbol(s, "__ILP32__", NULL);
913 #elif LONG_SIZE == 4
914 /* 64bit Windows. */
915 tcc_define_symbol(s, "__SIZE_TYPE__", "unsigned long long");
916 tcc_define_symbol(s, "__PTRDIFF_TYPE__", "long long");
917 tcc_define_symbol(s, "__LLP64__", NULL);
918 #else
919 /* Other 64bit systems. */
920 tcc_define_symbol(s, "__SIZE_TYPE__", "unsigned long");
921 tcc_define_symbol(s, "__PTRDIFF_TYPE__", "long");
922 tcc_define_symbol(s, "__LP64__", NULL);
923 #endif
924 tcc_define_symbol(s, "__SIZEOF_POINTER__", PTR_SIZE == 4 ? "4" : "8");
926 #ifdef TCC_TARGET_PE
927 tcc_define_symbol(s, "__WCHAR_TYPE__", "unsigned short");
928 tcc_define_symbol(s, "__WINT_TYPE__", "unsigned short");
929 #else
930 tcc_define_symbol(s, "__WCHAR_TYPE__", "int");
931 /* wint_t is unsigned int by default, but (signed) int on BSDs
932 and unsigned short on windows. Other OSes might have still
933 other conventions, sigh. */
934 # if defined(__FreeBSD__) || defined (__FreeBSD_kernel__) \
935 || defined(__NetBSD__) || defined(__OpenBSD__)
936 tcc_define_symbol(s, "__WINT_TYPE__", "int");
937 # ifdef __FreeBSD__
938 /* define __GNUC__ to have some useful stuff from sys/cdefs.h
939 that are unconditionally used in FreeBSDs other system headers :/ */
940 tcc_define_symbol(s, "__GNUC__", "9");
941 tcc_define_symbol(s, "__GNUC_MINOR__", "3");
942 tcc_define_symbol(s, "__GNUC_PATCHLEVEL__", "0");
943 tcc_define_symbol(s, "__amd64__", "1");
944 tcc_define_symbol(s, "__builtin_alloca", "alloca");
945 # endif
946 # else
947 tcc_define_symbol(s, "__WINT_TYPE__", "unsigned int");
948 /* glibc defines */
949 tcc_define_symbol(s, "__REDIRECT(name, proto, alias)",
950 "name proto __asm__ (#alias)");
951 tcc_define_symbol(s, "__REDIRECT_NTH(name, proto, alias)",
952 "name proto __asm__ (#alias) __THROW");
953 # endif
954 /* Some GCC builtins that are simple to express as macros. */
955 tcc_define_symbol(s, "__builtin_extract_return_addr(x)", "x");
956 #endif /* ndef TCC_TARGET_PE */
957 #ifdef TCC_TARGET_MACHO
958 /* emulate APPLE-GCC to make libc's headerfiles compile: */
959 tcc_define_symbol(s, "__APPLE__", "1");
960 tcc_define_symbol(s, "__GNUC__", "4"); /* darwin emits warning on GCC<4 */
961 tcc_define_symbol(s, "__APPLE_CC__", "1"); /* for <TargetConditionals.h> */
962 tcc_define_symbol(s, "_DONT_USE_CTYPE_INLINE_", "1");
963 tcc_define_symbol(s, "__builtin_alloca", "alloca"); /* as we claim GNUC */
964 /* used by math.h */
965 tcc_define_symbol(s, "__builtin_huge_val()", "1e500");
966 tcc_define_symbol(s, "__builtin_huge_valf()", "1e50f");
967 tcc_define_symbol(s, "__builtin_huge_vall()", "1e5000L");
968 tcc_define_symbol(s, "__builtin_nanf(ignored_string)", "__nan()");
969 /* used by _fd_def.h */
970 tcc_define_symbol(s, "__builtin_bzero(p, ignored_size)", "bzero(p, sizeof(*(p)))");
971 /* used by floats.h to implement FLT_ROUNDS C99 macro. 1 == to nearest */
972 tcc_define_symbol(s, "__builtin_flt_rounds()", "1");
974 /* avoids usage of GCC/clang specific builtins in libc-headerfiles: */
975 tcc_define_symbol(s, "__FINITE_MATH_ONLY__", "1");
976 tcc_define_symbol(s, "_FORTIFY_SOURCE", "0");
977 #endif /* ndef TCC_TARGET_MACHO */
979 #if LONG_SIZE == 4
980 tcc_define_symbol(s, "__SIZEOF_LONG__", "4");
981 tcc_define_symbol(s, "__LONG_MAX__", "0x7fffffffL");
982 #else
983 tcc_define_symbol(s, "__SIZEOF_LONG__", "8");
984 tcc_define_symbol(s, "__LONG_MAX__", "0x7fffffffffffffffL");
985 #endif
986 tcc_define_symbol(s, "__SIZEOF_INT__", "4");
987 tcc_define_symbol(s, "__SIZEOF_LONG_LONG__", "8");
988 tcc_define_symbol(s, "__CHAR_BIT__", "8");
989 tcc_define_symbol(s, "__ORDER_LITTLE_ENDIAN__", "1234");
990 tcc_define_symbol(s, "__ORDER_BIG_ENDIAN__", "4321");
991 tcc_define_symbol(s, "__BYTE_ORDER__", "__ORDER_LITTLE_ENDIAN__");
992 tcc_define_symbol(s, "__INT_MAX__", "0x7fffffff");
993 tcc_define_symbol(s, "__LONG_LONG_MAX__", "0x7fffffffffffffffLL");
994 tcc_define_symbol(s, "__builtin_offsetof(type,field)", "((__SIZE_TYPE__) &((type *)0)->field)");
995 return s;
998 LIBTCCAPI void tcc_delete(TCCState *s1)
1000 /* free sections */
1001 tccelf_delete(s1);
1003 /* free library paths */
1004 dynarray_reset(&s1->library_paths, &s1->nb_library_paths);
1005 dynarray_reset(&s1->crt_paths, &s1->nb_crt_paths);
1007 /* free include paths */
1008 dynarray_reset(&s1->include_paths, &s1->nb_include_paths);
1009 dynarray_reset(&s1->sysinclude_paths, &s1->nb_sysinclude_paths);
1011 tcc_free(s1->tcc_lib_path);
1012 tcc_free(s1->soname);
1013 tcc_free(s1->rpath);
1014 tcc_free(s1->init_symbol);
1015 tcc_free(s1->fini_symbol);
1016 tcc_free(s1->outfile);
1017 tcc_free(s1->deps_outfile);
1018 dynarray_reset(&s1->files, &s1->nb_files);
1019 dynarray_reset(&s1->target_deps, &s1->nb_target_deps);
1020 dynarray_reset(&s1->pragma_libs, &s1->nb_pragma_libs);
1021 dynarray_reset(&s1->argv, &s1->argc);
1023 cstr_free(&s1->cmdline_defs);
1024 cstr_free(&s1->cmdline_incl);
1025 #ifdef TCC_IS_NATIVE
1026 /* free runtime memory */
1027 tcc_run_free(s1);
1028 #endif
1030 tcc_free(s1);
1031 #ifdef MEM_DEBUG
1032 if (0 == --nb_states)
1033 tcc_memcheck();
1034 #endif
1037 LIBTCCAPI int tcc_set_output_type(TCCState *s, int output_type)
1039 s->output_type = output_type;
1041 /* always elf for objects */
1042 if (output_type == TCC_OUTPUT_OBJ)
1043 s->output_format = TCC_OUTPUT_FORMAT_ELF;
1045 if (s->char_is_unsigned)
1046 tcc_define_symbol(s, "__CHAR_UNSIGNED__", NULL);
1048 if (s->cversion == 201112) {
1049 tcc_undefine_symbol(s, "__STDC_VERSION__");
1050 tcc_define_symbol(s, "__STDC_VERSION__", "201112L");
1051 tcc_define_symbol(s, "__STDC_NO_ATOMICS__", NULL);
1052 tcc_define_symbol(s, "__STDC_NO_COMPLEX__", NULL);
1053 tcc_define_symbol(s, "__STDC_NO_THREADS__", NULL);
1054 #ifndef TCC_TARGET_PE
1055 /* on Linux, this conflicts with a define introduced by
1056 /usr/include/stdc-predef.h included by glibc libs
1057 tcc_define_symbol(s, "__STDC_ISO_10646__", "201605L"); */
1058 tcc_define_symbol(s, "__STDC_UTF_16__", NULL);
1059 tcc_define_symbol(s, "__STDC_UTF_32__", NULL);
1060 #endif
1063 if (s->optimize > 0)
1064 tcc_define_symbol(s, "__OPTIMIZE__", NULL);
1066 if (s->option_pthread)
1067 tcc_define_symbol(s, "_REENTRANT", NULL);
1069 if (s->leading_underscore)
1070 tcc_define_symbol(s, "__leading_underscore", NULL);
1072 if (!s->nostdinc) {
1073 /* default include paths */
1074 /* -isystem paths have already been handled */
1075 tcc_add_sysinclude_path(s, CONFIG_TCC_SYSINCLUDEPATHS);
1078 #ifdef CONFIG_TCC_BCHECK
1079 if (s->do_bounds_check) {
1080 /* if bound checking, then add corresponding sections */
1081 tccelf_bounds_new(s);
1082 /* define symbol */
1083 tcc_define_symbol(s, "__BOUNDS_CHECKING_ON", NULL);
1085 #endif
1086 if (s->do_debug) {
1087 /* add debug sections */
1088 tccelf_stab_new(s);
1091 tcc_add_library_path(s, CONFIG_TCC_LIBPATHS);
1093 #ifdef TCC_TARGET_PE
1094 # ifdef _WIN32
1095 if (!s->nostdlib && output_type != TCC_OUTPUT_OBJ)
1096 tcc_add_systemdir(s);
1097 # endif
1098 #else
1099 /* paths for crt objects */
1100 tcc_split_path(s, &s->crt_paths, &s->nb_crt_paths, CONFIG_TCC_CRTPREFIX);
1101 /* add libc crt1/crti objects */
1102 if ((output_type == TCC_OUTPUT_EXE || output_type == TCC_OUTPUT_DLL) &&
1103 !s->nostdlib) {
1104 #if defined(__OpenBSD__)
1105 if (output_type != TCC_OUTPUT_DLL)
1106 tcc_add_crt(s, "crt0.o");
1107 tcc_add_crt(s, "crtbegin.o");
1108 #elif !defined(TCC_TARGET_MACHO)
1109 /* Mach-O with LC_MAIN doesn't need any crt startup code. */
1110 if (output_type != TCC_OUTPUT_DLL)
1111 tcc_add_crt(s, "crt1.o");
1112 tcc_add_crt(s, "crti.o");
1113 #endif
1115 #endif
1116 return 0;
1119 LIBTCCAPI int tcc_add_include_path(TCCState *s, const char *pathname)
1121 tcc_split_path(s, &s->include_paths, &s->nb_include_paths, pathname);
1122 return 0;
1125 LIBTCCAPI int tcc_add_sysinclude_path(TCCState *s, const char *pathname)
1127 tcc_split_path(s, &s->sysinclude_paths, &s->nb_sysinclude_paths, pathname);
1128 return 0;
1131 ST_FUNC int tcc_add_file_internal(TCCState *s1, const char *filename, int flags)
1133 int fd, ret;
1135 /* open the file */
1136 fd = _tcc_open(s1, filename);
1137 if (fd < 0) {
1138 if (flags & AFF_PRINT_ERROR)
1139 tcc_error_noabort("file '%s' not found", filename);
1140 return -1;
1143 s1->current_filename = filename;
1144 if (flags & AFF_TYPE_BIN) {
1145 ElfW(Ehdr) ehdr;
1146 int obj_type;
1148 obj_type = tcc_object_type(fd, &ehdr);
1149 lseek(fd, 0, SEEK_SET);
1151 #ifdef TCC_TARGET_MACHO
1152 if (0 == obj_type && 0 == strcmp(tcc_fileextension(filename), ".dylib"))
1153 obj_type = AFF_BINTYPE_DYN;
1154 #endif
1156 switch (obj_type) {
1157 case AFF_BINTYPE_REL:
1158 ret = tcc_load_object_file(s1, fd, 0);
1159 break;
1160 #ifndef TCC_TARGET_PE
1161 case AFF_BINTYPE_DYN:
1162 if (s1->output_type == TCC_OUTPUT_MEMORY) {
1163 ret = 0;
1164 #ifdef TCC_IS_NATIVE
1165 if (NULL == dlopen(filename, RTLD_GLOBAL | RTLD_LAZY))
1166 ret = -1;
1167 #endif
1168 } else {
1169 #ifndef TCC_TARGET_MACHO
1170 ret = tcc_load_dll(s1, fd, filename,
1171 (flags & AFF_REFERENCED_DLL) != 0);
1172 #else
1173 ret = macho_load_dll(s1, fd, filename,
1174 (flags & AFF_REFERENCED_DLL) != 0);
1175 #endif
1177 break;
1178 #endif
1179 case AFF_BINTYPE_AR:
1180 ret = tcc_load_archive(s1, fd, !(flags & AFF_WHOLE_ARCHIVE));
1181 break;
1182 #ifdef TCC_TARGET_COFF
1183 case AFF_BINTYPE_C67:
1184 ret = tcc_load_coff(s1, fd);
1185 break;
1186 #endif
1187 default:
1188 #ifdef TCC_TARGET_PE
1189 ret = pe_load_file(s1, filename, fd);
1190 #elif defined(TCC_TARGET_MACHO)
1191 ret = -1;
1192 #else
1193 /* as GNU ld, consider it is an ld script if not recognized */
1194 ret = tcc_load_ldscript(s1, fd);
1195 #endif
1196 if (ret < 0)
1197 tcc_error_noabort("%s: unrecognized file type %d", filename,
1198 obj_type);
1199 break;
1201 close(fd);
1202 } else {
1203 /* update target deps */
1204 dynarray_add(&s1->target_deps, &s1->nb_target_deps, tcc_strdup(filename));
1205 ret = tcc_compile(s1, flags, filename, fd);
1207 s1->current_filename = NULL;
1208 return ret;
1211 LIBTCCAPI int tcc_add_file(TCCState *s, const char *filename)
1213 int filetype = s->filetype;
1214 if (0 == (filetype & AFF_TYPE_MASK)) {
1215 /* use a file extension to detect a filetype */
1216 const char *ext = tcc_fileextension(filename);
1217 if (ext[0]) {
1218 ext++;
1219 if (!strcmp(ext, "S"))
1220 filetype = AFF_TYPE_ASMPP;
1221 else if (!strcmp(ext, "s"))
1222 filetype = AFF_TYPE_ASM;
1223 else if (!PATHCMP(ext, "c") || !PATHCMP(ext, "i"))
1224 filetype = AFF_TYPE_C;
1225 else
1226 filetype |= AFF_TYPE_BIN;
1227 } else {
1228 filetype = AFF_TYPE_C;
1231 return tcc_add_file_internal(s, filename, filetype | AFF_PRINT_ERROR);
1234 LIBTCCAPI int tcc_add_library_path(TCCState *s, const char *pathname)
1236 tcc_split_path(s, &s->library_paths, &s->nb_library_paths, pathname);
1237 return 0;
1240 static int tcc_add_library_internal(TCCState *s, const char *fmt,
1241 const char *filename, int flags, char **paths, int nb_paths)
1243 char buf[1024];
1244 int i;
1246 for(i = 0; i < nb_paths; i++) {
1247 snprintf(buf, sizeof(buf), fmt, paths[i], filename);
1248 if (tcc_add_file_internal(s, buf, flags | AFF_TYPE_BIN) == 0)
1249 return 0;
1251 return -1;
1254 #ifndef TCC_TARGET_MACHO
1255 /* find and load a dll. Return non zero if not found */
1256 /* XXX: add '-rpath' option support ? */
1257 ST_FUNC int tcc_add_dll(TCCState *s, const char *filename, int flags)
1259 return tcc_add_library_internal(s, "%s/%s", filename, flags,
1260 s->library_paths, s->nb_library_paths);
1262 #endif
1264 #if !defined TCC_TARGET_PE && !defined TCC_TARGET_MACHO
1265 ST_FUNC int tcc_add_crt(TCCState *s1, const char *filename)
1267 if (-1 == tcc_add_library_internal(s1, "%s/%s",
1268 filename, 0, s1->crt_paths, s1->nb_crt_paths))
1269 tcc_error_noabort("file '%s' not found", filename);
1270 return 0;
1272 #endif
1274 /* the library name is the same as the argument of the '-l' option */
1275 LIBTCCAPI int tcc_add_library(TCCState *s, const char *libraryname)
1277 #if defined TCC_TARGET_PE
1278 const char *libs[] = { "%s/%s.def", "%s/lib%s.def", "%s/%s.dll", "%s/lib%s.dll", "%s/lib%s.a", NULL };
1279 const char **pp = s->static_link ? libs + 4 : libs;
1280 #elif defined TCC_TARGET_MACHO
1281 const char *libs[] = { "%s/lib%s.dylib", "%s/lib%s.a", NULL };
1282 const char **pp = s->static_link ? libs + 1 : libs;
1283 #else
1284 const char *libs[] = { "%s/lib%s.so", "%s/lib%s.a", NULL };
1285 const char **pp = s->static_link ? libs + 1 : libs;
1286 #endif
1287 int flags = s->filetype & AFF_WHOLE_ARCHIVE;
1288 while (*pp) {
1289 if (0 == tcc_add_library_internal(s, *pp,
1290 libraryname, flags, s->library_paths, s->nb_library_paths))
1291 return 0;
1292 ++pp;
1294 return -1;
1297 PUB_FUNC int tcc_add_library_err(TCCState *s1, const char *libname)
1299 int ret = tcc_add_library(s1, libname);
1300 if (ret < 0)
1301 tcc_error_noabort("library '%s' not found", libname);
1302 return ret;
1305 /* handle #pragma comment(lib,) */
1306 ST_FUNC void tcc_add_pragma_libs(TCCState *s1)
1308 int i;
1309 for (i = 0; i < s1->nb_pragma_libs; i++)
1310 tcc_add_library_err(s1, s1->pragma_libs[i]);
1313 LIBTCCAPI int tcc_add_symbol(TCCState *s1, const char *name, const void *val)
1315 #ifdef TCC_TARGET_PE
1316 /* On x86_64 'val' might not be reachable with a 32bit offset.
1317 So it is handled here as if it were in a DLL. */
1318 pe_putimport(s1, 0, name, (uintptr_t)val);
1319 #else
1320 char buf[256];
1321 if (s1->leading_underscore) {
1322 buf[0] = '_';
1323 pstrcpy(buf + 1, sizeof(buf) - 1, name);
1324 name = buf;
1326 set_global_sym(s1, name, NULL, (addr_t)(uintptr_t)val); /* NULL: SHN_ABS */
1327 #endif
1328 return 0;
1331 LIBTCCAPI void tcc_set_lib_path(TCCState *s, const char *path)
1333 tcc_free(s->tcc_lib_path);
1334 s->tcc_lib_path = tcc_strdup(path);
1337 #define WD_ALL 0x0001 /* warning is activated when using -Wall */
1338 #define FD_INVERT 0x0002 /* invert value before storing */
1340 typedef struct FlagDef {
1341 uint16_t offset;
1342 uint16_t flags;
1343 const char *name;
1344 } FlagDef;
1346 static int no_flag(const char **pp)
1348 const char *p = *pp;
1349 if (*p != 'n' || *++p != 'o' || *++p != '-')
1350 return 0;
1351 *pp = p + 1;
1352 return 1;
1355 ST_FUNC int set_flag(TCCState *s, const FlagDef *flags, const char *name)
1357 int value, ret;
1358 const FlagDef *p;
1359 const char *r;
1361 value = 1;
1362 r = name;
1363 if (no_flag(&r))
1364 value = 0;
1366 for (ret = -1, p = flags; p->name; ++p) {
1367 if (ret) {
1368 if (strcmp(r, p->name))
1369 continue;
1370 } else {
1371 if (0 == (p->flags & WD_ALL))
1372 continue;
1374 if (p->offset) {
1375 *((unsigned char *)s + p->offset) =
1376 p->flags & FD_INVERT ? !value : value;
1377 if (ret)
1378 return 0;
1379 } else {
1380 ret = 0;
1383 return ret;
1386 static int strstart(const char *val, const char **str)
1388 const char *p, *q;
1389 p = *str;
1390 q = val;
1391 while (*q) {
1392 if (*p != *q)
1393 return 0;
1394 p++;
1395 q++;
1397 *str = p;
1398 return 1;
1401 /* Like strstart, but automatically takes into account that ld options can
1403 * - start with double or single dash (e.g. '--soname' or '-soname')
1404 * - arguments can be given as separate or after '=' (e.g. '-Wl,-soname,x.so'
1405 * or '-Wl,-soname=x.so')
1407 * you provide `val` always in 'option[=]' form (no leading -)
1409 static int link_option(const char *str, const char *val, const char **ptr)
1411 const char *p, *q;
1412 int ret;
1414 /* there should be 1 or 2 dashes */
1415 if (*str++ != '-')
1416 return 0;
1417 if (*str == '-')
1418 str++;
1420 /* then str & val should match (potentially up to '=') */
1421 p = str;
1422 q = val;
1424 ret = 1;
1425 if (q[0] == '?') {
1426 ++q;
1427 if (no_flag(&p))
1428 ret = -1;
1431 while (*q != '\0' && *q != '=') {
1432 if (*p != *q)
1433 return 0;
1434 p++;
1435 q++;
1438 /* '=' near eos means ',' or '=' is ok */
1439 if (*q == '=') {
1440 if (*p == 0)
1441 *ptr = p;
1442 if (*p != ',' && *p != '=')
1443 return 0;
1444 p++;
1445 } else if (*p) {
1446 return 0;
1448 *ptr = p;
1449 return ret;
1452 static const char *skip_linker_arg(const char **str)
1454 const char *s1 = *str;
1455 const char *s2 = strchr(s1, ',');
1456 *str = s2 ? s2++ : (s2 = s1 + strlen(s1));
1457 return s2;
1460 static void copy_linker_arg(char **pp, const char *s, int sep)
1462 const char *q = s;
1463 char *p = *pp;
1464 int l = 0;
1465 if (p && sep)
1466 p[l = strlen(p)] = sep, ++l;
1467 skip_linker_arg(&q);
1468 pstrncpy(l + (*pp = tcc_realloc(p, q - s + l + 1)), s, q - s);
1471 /* set linker options */
1472 static int tcc_set_linker(TCCState *s, const char *option)
1474 TCCState *s1 = s;
1475 while (*option) {
1477 const char *p = NULL;
1478 char *end = NULL;
1479 int ignoring = 0;
1480 int ret;
1482 if (link_option(option, "Bsymbolic", &p)) {
1483 s->symbolic = 1;
1484 } else if (link_option(option, "nostdlib", &p)) {
1485 s->nostdlib = 1;
1486 } else if (link_option(option, "fini=", &p)) {
1487 copy_linker_arg(&s->fini_symbol, p, 0);
1488 ignoring = 1;
1489 } else if (link_option(option, "image-base=", &p)
1490 || link_option(option, "Ttext=", &p)) {
1491 s->text_addr = strtoull(p, &end, 16);
1492 s->has_text_addr = 1;
1493 } else if (link_option(option, "init=", &p)) {
1494 copy_linker_arg(&s->init_symbol, p, 0);
1495 ignoring = 1;
1496 } else if (link_option(option, "oformat=", &p)) {
1497 #if defined(TCC_TARGET_PE)
1498 if (strstart("pe-", &p)) {
1499 #elif PTR_SIZE == 8
1500 if (strstart("elf64-", &p)) {
1501 #else
1502 if (strstart("elf32-", &p)) {
1503 #endif
1504 s->output_format = TCC_OUTPUT_FORMAT_ELF;
1505 } else if (!strcmp(p, "binary")) {
1506 s->output_format = TCC_OUTPUT_FORMAT_BINARY;
1507 #ifdef TCC_TARGET_COFF
1508 } else if (!strcmp(p, "coff")) {
1509 s->output_format = TCC_OUTPUT_FORMAT_COFF;
1510 #endif
1511 } else
1512 goto err;
1514 } else if (link_option(option, "as-needed", &p)) {
1515 ignoring = 1;
1516 } else if (link_option(option, "O", &p)) {
1517 ignoring = 1;
1518 } else if (link_option(option, "export-all-symbols", &p)) {
1519 s->rdynamic = 1;
1520 } else if (link_option(option, "export-dynamic", &p)) {
1521 s->rdynamic = 1;
1522 } else if (link_option(option, "rpath=", &p)) {
1523 copy_linker_arg(&s->rpath, p, ':');
1524 } else if (link_option(option, "enable-new-dtags", &p)) {
1525 s->enable_new_dtags = 1;
1526 } else if (link_option(option, "section-alignment=", &p)) {
1527 s->section_align = strtoul(p, &end, 16);
1528 } else if (link_option(option, "soname=", &p)) {
1529 copy_linker_arg(&s->soname, p, 0);
1530 #ifdef TCC_TARGET_PE
1531 } else if (link_option(option, "large-address-aware", &p)) {
1532 s->pe_characteristics |= 0x20;
1533 } else if (link_option(option, "file-alignment=", &p)) {
1534 s->pe_file_align = strtoul(p, &end, 16);
1535 } else if (link_option(option, "stack=", &p)) {
1536 s->pe_stack_size = strtoul(p, &end, 10);
1537 } else if (link_option(option, "subsystem=", &p)) {
1538 #if defined(TCC_TARGET_I386) || defined(TCC_TARGET_X86_64)
1539 if (!strcmp(p, "native")) {
1540 s->pe_subsystem = 1;
1541 } else if (!strcmp(p, "console")) {
1542 s->pe_subsystem = 3;
1543 } else if (!strcmp(p, "gui") || !strcmp(p, "windows")) {
1544 s->pe_subsystem = 2;
1545 } else if (!strcmp(p, "posix")) {
1546 s->pe_subsystem = 7;
1547 } else if (!strcmp(p, "efiapp")) {
1548 s->pe_subsystem = 10;
1549 } else if (!strcmp(p, "efiboot")) {
1550 s->pe_subsystem = 11;
1551 } else if (!strcmp(p, "efiruntime")) {
1552 s->pe_subsystem = 12;
1553 } else if (!strcmp(p, "efirom")) {
1554 s->pe_subsystem = 13;
1555 #elif defined(TCC_TARGET_ARM)
1556 if (!strcmp(p, "wince")) {
1557 s->pe_subsystem = 9;
1558 #endif
1559 } else
1560 goto err;
1561 #endif
1562 } else if (ret = link_option(option, "?whole-archive", &p), ret) {
1563 if (ret > 0)
1564 s->filetype |= AFF_WHOLE_ARCHIVE;
1565 else
1566 s->filetype &= ~AFF_WHOLE_ARCHIVE;
1567 } else if (p) {
1568 return 0;
1569 } else {
1570 err:
1571 tcc_error("unsupported linker option '%s'", option);
1574 if (ignoring && s->warn_unsupported)
1575 tcc_warning("unsupported linker option '%s'", option);
1577 option = skip_linker_arg(&p);
1579 return 1;
1582 typedef struct TCCOption {
1583 const char *name;
1584 uint16_t index;
1585 uint16_t flags;
1586 } TCCOption;
1588 enum {
1589 TCC_OPTION_HELP,
1590 TCC_OPTION_HELP2,
1591 TCC_OPTION_v,
1592 TCC_OPTION_I,
1593 TCC_OPTION_D,
1594 TCC_OPTION_U,
1595 TCC_OPTION_P,
1596 TCC_OPTION_L,
1597 TCC_OPTION_B,
1598 TCC_OPTION_l,
1599 TCC_OPTION_bench,
1600 TCC_OPTION_bt,
1601 TCC_OPTION_b,
1602 TCC_OPTION_ba,
1603 TCC_OPTION_g,
1604 TCC_OPTION_c,
1605 TCC_OPTION_dumpversion,
1606 TCC_OPTION_d,
1607 TCC_OPTION_static,
1608 TCC_OPTION_std,
1609 TCC_OPTION_shared,
1610 TCC_OPTION_soname,
1611 TCC_OPTION_o,
1612 TCC_OPTION_r,
1613 TCC_OPTION_s,
1614 TCC_OPTION_traditional,
1615 TCC_OPTION_Wl,
1616 TCC_OPTION_Wp,
1617 TCC_OPTION_W,
1618 TCC_OPTION_O,
1619 TCC_OPTION_mfloat_abi,
1620 TCC_OPTION_m,
1621 TCC_OPTION_f,
1622 TCC_OPTION_isystem,
1623 TCC_OPTION_iwithprefix,
1624 TCC_OPTION_include,
1625 TCC_OPTION_nostdinc,
1626 TCC_OPTION_nostdlib,
1627 TCC_OPTION_print_search_dirs,
1628 TCC_OPTION_rdynamic,
1629 TCC_OPTION_param,
1630 TCC_OPTION_pedantic,
1631 TCC_OPTION_pthread,
1632 TCC_OPTION_run,
1633 TCC_OPTION_w,
1634 TCC_OPTION_pipe,
1635 TCC_OPTION_E,
1636 TCC_OPTION_MD,
1637 TCC_OPTION_MF,
1638 TCC_OPTION_x,
1639 TCC_OPTION_ar,
1640 TCC_OPTION_impdef,
1641 TCC_OPTION_C
1644 #define TCC_OPTION_HAS_ARG 0x0001
1645 #define TCC_OPTION_NOSEP 0x0002 /* cannot have space before option and arg */
1647 static const TCCOption tcc_options[] = {
1648 { "h", TCC_OPTION_HELP, 0 },
1649 { "-help", TCC_OPTION_HELP, 0 },
1650 { "?", TCC_OPTION_HELP, 0 },
1651 { "hh", TCC_OPTION_HELP2, 0 },
1652 { "v", TCC_OPTION_v, TCC_OPTION_HAS_ARG | TCC_OPTION_NOSEP },
1653 { "-version", TCC_OPTION_v, 0 }, /* handle as verbose, also prints version*/
1654 { "I", TCC_OPTION_I, TCC_OPTION_HAS_ARG },
1655 { "D", TCC_OPTION_D, TCC_OPTION_HAS_ARG },
1656 { "U", TCC_OPTION_U, TCC_OPTION_HAS_ARG },
1657 { "P", TCC_OPTION_P, TCC_OPTION_HAS_ARG | TCC_OPTION_NOSEP },
1658 { "L", TCC_OPTION_L, TCC_OPTION_HAS_ARG },
1659 { "B", TCC_OPTION_B, TCC_OPTION_HAS_ARG },
1660 { "l", TCC_OPTION_l, TCC_OPTION_HAS_ARG },
1661 { "bench", TCC_OPTION_bench, 0 },
1662 #ifdef CONFIG_TCC_BACKTRACE
1663 { "bt", TCC_OPTION_bt, TCC_OPTION_HAS_ARG | TCC_OPTION_NOSEP },
1664 #endif
1665 #ifdef CONFIG_TCC_BCHECK
1666 { "b", TCC_OPTION_b, 0 },
1667 #endif
1668 { "g", TCC_OPTION_g, TCC_OPTION_HAS_ARG | TCC_OPTION_NOSEP },
1669 { "c", TCC_OPTION_c, 0 },
1670 { "dumpversion", TCC_OPTION_dumpversion, 0},
1671 { "d", TCC_OPTION_d, TCC_OPTION_HAS_ARG | TCC_OPTION_NOSEP },
1672 { "static", TCC_OPTION_static, 0 },
1673 { "std", TCC_OPTION_std, TCC_OPTION_HAS_ARG | TCC_OPTION_NOSEP },
1674 { "shared", TCC_OPTION_shared, 0 },
1675 { "soname", TCC_OPTION_soname, TCC_OPTION_HAS_ARG },
1676 { "o", TCC_OPTION_o, TCC_OPTION_HAS_ARG },
1677 { "-param", TCC_OPTION_param, TCC_OPTION_HAS_ARG },
1678 { "pedantic", TCC_OPTION_pedantic, 0},
1679 { "pthread", TCC_OPTION_pthread, 0},
1680 { "run", TCC_OPTION_run, TCC_OPTION_HAS_ARG | TCC_OPTION_NOSEP },
1681 { "rdynamic", TCC_OPTION_rdynamic, 0 },
1682 { "r", TCC_OPTION_r, 0 },
1683 { "s", TCC_OPTION_s, 0 },
1684 { "traditional", TCC_OPTION_traditional, 0 },
1685 { "Wl,", TCC_OPTION_Wl, TCC_OPTION_HAS_ARG | TCC_OPTION_NOSEP },
1686 { "Wp,", TCC_OPTION_Wp, TCC_OPTION_HAS_ARG | TCC_OPTION_NOSEP },
1687 { "W", TCC_OPTION_W, TCC_OPTION_HAS_ARG | TCC_OPTION_NOSEP },
1688 { "O", TCC_OPTION_O, TCC_OPTION_HAS_ARG | TCC_OPTION_NOSEP },
1689 #ifdef TCC_TARGET_ARM
1690 { "mfloat-abi", TCC_OPTION_mfloat_abi, TCC_OPTION_HAS_ARG },
1691 #endif
1692 { "m", TCC_OPTION_m, TCC_OPTION_HAS_ARG | TCC_OPTION_NOSEP },
1693 { "f", TCC_OPTION_f, TCC_OPTION_HAS_ARG | TCC_OPTION_NOSEP },
1694 { "isystem", TCC_OPTION_isystem, TCC_OPTION_HAS_ARG },
1695 { "include", TCC_OPTION_include, TCC_OPTION_HAS_ARG },
1696 { "nostdinc", TCC_OPTION_nostdinc, 0 },
1697 { "nostdlib", TCC_OPTION_nostdlib, 0 },
1698 { "print-search-dirs", TCC_OPTION_print_search_dirs, 0 },
1699 { "w", TCC_OPTION_w, 0 },
1700 { "pipe", TCC_OPTION_pipe, 0},
1701 { "E", TCC_OPTION_E, 0},
1702 { "MD", TCC_OPTION_MD, 0},
1703 { "MF", TCC_OPTION_MF, TCC_OPTION_HAS_ARG },
1704 { "x", TCC_OPTION_x, TCC_OPTION_HAS_ARG },
1705 { "ar", TCC_OPTION_ar, 0},
1706 #ifdef TCC_TARGET_PE
1707 { "impdef", TCC_OPTION_impdef, 0},
1708 #endif
1709 { "C", TCC_OPTION_C, 0},
1710 { NULL, 0, 0 },
1713 static const FlagDef options_W[] = {
1714 { 0, 0, "all" },
1715 { offsetof(TCCState, warn_unsupported), 0, "unsupported" },
1716 { offsetof(TCCState, warn_write_strings), 0, "write-strings" },
1717 { offsetof(TCCState, warn_error), 0, "error" },
1718 { offsetof(TCCState, warn_gcc_compat), 0, "gcc-compat" },
1719 { offsetof(TCCState, warn_implicit_function_declaration), WD_ALL,
1720 "implicit-function-declaration" },
1721 { 0, 0, NULL }
1724 static const FlagDef options_f[] = {
1725 { offsetof(TCCState, char_is_unsigned), 0, "unsigned-char" },
1726 { offsetof(TCCState, char_is_unsigned), FD_INVERT, "signed-char" },
1727 { offsetof(TCCState, nocommon), FD_INVERT, "common" },
1728 { offsetof(TCCState, leading_underscore), 0, "leading-underscore" },
1729 { offsetof(TCCState, ms_extensions), 0, "ms-extensions" },
1730 { offsetof(TCCState, dollars_in_identifiers), 0, "dollars-in-identifiers" },
1731 { 0, 0, NULL }
1734 static const FlagDef options_m[] = {
1735 { offsetof(TCCState, ms_bitfields), 0, "ms-bitfields" },
1736 #ifdef TCC_TARGET_X86_64
1737 { offsetof(TCCState, nosse), FD_INVERT, "sse" },
1738 #endif
1739 { 0, 0, NULL }
1742 static void args_parser_add_file(TCCState *s, const char* filename, int filetype)
1744 struct filespec *f = tcc_malloc(sizeof *f + strlen(filename));
1745 f->type = filetype;
1746 strcpy(f->name, filename);
1747 dynarray_add(&s->files, &s->nb_files, f);
1750 static int args_parser_make_argv(const char *r, int *argc, char ***argv)
1752 int ret = 0, q, c;
1753 CString str;
1754 for(;;) {
1755 while (c = (unsigned char)*r, c && c <= ' ')
1756 ++r;
1757 if (c == 0)
1758 break;
1759 q = 0;
1760 cstr_new(&str);
1761 while (c = (unsigned char)*r, c) {
1762 ++r;
1763 if (c == '\\' && (*r == '"' || *r == '\\')) {
1764 c = *r++;
1765 } else if (c == '"') {
1766 q = !q;
1767 continue;
1768 } else if (q == 0 && c <= ' ') {
1769 break;
1771 cstr_ccat(&str, c);
1773 cstr_ccat(&str, 0);
1774 //printf("<%s>\n", str.data), fflush(stdout);
1775 dynarray_add(argv, argc, tcc_strdup(str.data));
1776 cstr_free(&str);
1777 ++ret;
1779 return ret;
1782 /* read list file */
1783 static void args_parser_listfile(TCCState *s,
1784 const char *filename, int optind, int *pargc, char ***pargv)
1786 TCCState *s1 = s;
1787 int fd, i;
1788 size_t len;
1789 char *p;
1790 int argc = 0;
1791 char **argv = NULL;
1793 fd = open(filename, O_RDONLY | O_BINARY);
1794 if (fd < 0)
1795 tcc_error("listfile '%s' not found", filename);
1797 len = lseek(fd, 0, SEEK_END);
1798 p = tcc_malloc(len + 1), p[len] = 0;
1799 lseek(fd, 0, SEEK_SET), read(fd, p, len), close(fd);
1801 for (i = 0; i < *pargc; ++i)
1802 if (i == optind)
1803 args_parser_make_argv(p, &argc, &argv);
1804 else
1805 dynarray_add(&argv, &argc, tcc_strdup((*pargv)[i]));
1807 tcc_free(p);
1808 dynarray_reset(&s->argv, &s->argc);
1809 *pargc = s->argc = argc, *pargv = s->argv = argv;
1812 PUB_FUNC int tcc_parse_args(TCCState *s, int *pargc, char ***pargv, int optind)
1814 TCCState *s1 = s;
1815 const TCCOption *popt;
1816 const char *optarg, *r;
1817 const char *run = NULL;
1818 int x;
1819 CString linker_arg; /* collect -Wl options */
1820 int tool = 0, arg_start = 0, noaction = optind;
1821 char **argv = *pargv;
1822 int argc = *pargc;
1824 cstr_new(&linker_arg);
1826 while (optind < argc) {
1827 r = argv[optind];
1828 if (r[0] == '@' && r[1] != '\0') {
1829 args_parser_listfile(s, r + 1, optind, &argc, &argv);
1830 continue;
1832 optind++;
1833 if (tool) {
1834 if (r[0] == '-' && r[1] == 'v' && r[2] == 0)
1835 ++s->verbose;
1836 continue;
1838 reparse:
1839 if (r[0] != '-' || r[1] == '\0') {
1840 if (r[0] != '@') /* allow "tcc file(s) -run @ args ..." */
1841 args_parser_add_file(s, r, s->filetype);
1842 if (run) {
1843 tcc_set_options(s, run);
1844 arg_start = optind - 1;
1845 break;
1847 continue;
1850 /* find option in table */
1851 for(popt = tcc_options; ; ++popt) {
1852 const char *p1 = popt->name;
1853 const char *r1 = r + 1;
1854 if (p1 == NULL)
1855 tcc_error("invalid option -- '%s'", r);
1856 if (!strstart(p1, &r1))
1857 continue;
1858 optarg = r1;
1859 if (popt->flags & TCC_OPTION_HAS_ARG) {
1860 if (*r1 == '\0' && !(popt->flags & TCC_OPTION_NOSEP)) {
1861 if (optind >= argc)
1862 arg_err:
1863 tcc_error("argument to '%s' is missing", r);
1864 optarg = argv[optind++];
1866 } else if (*r1 != '\0')
1867 continue;
1868 break;
1871 switch(popt->index) {
1872 case TCC_OPTION_HELP:
1873 x = OPT_HELP;
1874 goto extra_action;
1875 case TCC_OPTION_HELP2:
1876 x = OPT_HELP2;
1877 goto extra_action;
1878 case TCC_OPTION_I:
1879 tcc_add_include_path(s, optarg);
1880 break;
1881 case TCC_OPTION_D:
1882 tcc_define_symbol(s, optarg, NULL);
1883 break;
1884 case TCC_OPTION_U:
1885 tcc_undefine_symbol(s, optarg);
1886 break;
1887 case TCC_OPTION_L:
1888 tcc_add_library_path(s, optarg);
1889 break;
1890 case TCC_OPTION_B:
1891 /* set tcc utilities path (mainly for tcc development) */
1892 tcc_set_lib_path(s, optarg);
1893 break;
1894 case TCC_OPTION_l:
1895 args_parser_add_file(s, optarg, AFF_TYPE_LIB | (s->filetype & ~AFF_TYPE_MASK));
1896 s->nb_libraries++;
1897 break;
1898 case TCC_OPTION_pthread:
1899 s->option_pthread = 1;
1900 break;
1901 case TCC_OPTION_bench:
1902 s->do_bench = 1;
1903 break;
1904 #ifdef CONFIG_TCC_BACKTRACE
1905 case TCC_OPTION_bt:
1906 s->rt_num_callers = atoi(optarg);
1907 s->do_backtrace = 1;
1908 s->do_debug = 1;
1909 break;
1910 #endif
1911 #ifdef CONFIG_TCC_BCHECK
1912 case TCC_OPTION_b:
1913 s->do_bounds_check = 1;
1914 s->do_backtrace = 1;
1915 s->do_debug = 1;
1916 break;
1917 #endif
1918 case TCC_OPTION_g:
1919 s->do_debug = 1;
1920 break;
1921 case TCC_OPTION_c:
1922 x = TCC_OUTPUT_OBJ;
1923 set_output_type:
1924 if (s->output_type)
1925 tcc_warning("-%s: overriding compiler action already specified", popt->name);
1926 s->output_type = x;
1927 break;
1928 case TCC_OPTION_d:
1929 if (*optarg == 'D')
1930 s->dflag = 3;
1931 else if (*optarg == 'M')
1932 s->dflag = 7;
1933 else if (*optarg == 't')
1934 s->dflag = 16;
1935 else if (isnum(*optarg))
1936 s->g_debug |= atoi(optarg);
1937 else
1938 goto unsupported_option;
1939 break;
1940 case TCC_OPTION_static:
1941 s->static_link = 1;
1942 break;
1943 case TCC_OPTION_std:
1944 if (strcmp(optarg, "=c11") == 0)
1945 s->cversion = 201112;
1946 break;
1947 case TCC_OPTION_shared:
1948 x = TCC_OUTPUT_DLL;
1949 goto set_output_type;
1950 case TCC_OPTION_soname:
1951 s->soname = tcc_strdup(optarg);
1952 break;
1953 case TCC_OPTION_o:
1954 if (s->outfile) {
1955 tcc_warning("multiple -o option");
1956 tcc_free(s->outfile);
1958 s->outfile = tcc_strdup(optarg);
1959 break;
1960 case TCC_OPTION_r:
1961 /* generate a .o merging several output files */
1962 s->option_r = 1;
1963 x = TCC_OUTPUT_OBJ;
1964 goto set_output_type;
1965 case TCC_OPTION_isystem:
1966 tcc_add_sysinclude_path(s, optarg);
1967 break;
1968 case TCC_OPTION_include:
1969 cstr_printf(&s->cmdline_incl, "#include \"%s\"\n", optarg);
1970 break;
1971 case TCC_OPTION_nostdinc:
1972 s->nostdinc = 1;
1973 break;
1974 case TCC_OPTION_nostdlib:
1975 s->nostdlib = 1;
1976 break;
1977 case TCC_OPTION_run:
1978 #ifndef TCC_IS_NATIVE
1979 tcc_error("-run is not available in a cross compiler");
1980 #endif
1981 run = optarg;
1982 x = TCC_OUTPUT_MEMORY;
1983 goto set_output_type;
1984 case TCC_OPTION_v:
1985 do ++s->verbose; while (*optarg++ == 'v');
1986 ++noaction;
1987 break;
1988 case TCC_OPTION_f:
1989 if (set_flag(s, options_f, optarg) < 0)
1990 goto unsupported_option;
1991 break;
1992 #ifdef TCC_TARGET_ARM
1993 case TCC_OPTION_mfloat_abi:
1994 /* tcc doesn't support soft float yet */
1995 if (!strcmp(optarg, "softfp")) {
1996 s->float_abi = ARM_SOFTFP_FLOAT;
1997 tcc_undefine_symbol(s, "__ARM_PCS_VFP");
1998 } else if (!strcmp(optarg, "hard"))
1999 s->float_abi = ARM_HARD_FLOAT;
2000 else
2001 tcc_error("unsupported float abi '%s'", optarg);
2002 break;
2003 #endif
2004 case TCC_OPTION_m:
2005 if (set_flag(s, options_m, optarg) < 0) {
2006 if (x = atoi(optarg), x != 32 && x != 64)
2007 goto unsupported_option;
2008 if (PTR_SIZE != x/8)
2009 return x;
2010 ++noaction;
2012 break;
2013 case TCC_OPTION_W:
2014 s->warn_none = 0;
2015 if (optarg[0] && set_flag(s, options_W, optarg) < 0)
2016 goto unsupported_option;
2017 break;
2018 case TCC_OPTION_w:
2019 s->warn_none = 1;
2020 break;
2021 case TCC_OPTION_rdynamic:
2022 s->rdynamic = 1;
2023 break;
2024 case TCC_OPTION_Wl:
2025 if (linker_arg.size)
2026 --linker_arg.size, cstr_ccat(&linker_arg, ',');
2027 cstr_cat(&linker_arg, optarg, 0);
2028 if (tcc_set_linker(s, linker_arg.data))
2029 cstr_free(&linker_arg);
2030 break;
2031 case TCC_OPTION_Wp:
2032 r = optarg;
2033 goto reparse;
2034 case TCC_OPTION_E:
2035 x = TCC_OUTPUT_PREPROCESS;
2036 goto set_output_type;
2037 case TCC_OPTION_P:
2038 s->Pflag = atoi(optarg) + 1;
2039 break;
2040 case TCC_OPTION_MD:
2041 s->gen_deps = 1;
2042 break;
2043 case TCC_OPTION_MF:
2044 s->deps_outfile = tcc_strdup(optarg);
2045 break;
2046 case TCC_OPTION_dumpversion:
2047 printf ("%s\n", TCC_VERSION);
2048 exit(0);
2049 break;
2050 case TCC_OPTION_x:
2051 x = 0;
2052 if (*optarg == 'c')
2053 x = AFF_TYPE_C;
2054 else if (*optarg == 'a')
2055 x = AFF_TYPE_ASMPP;
2056 else if (*optarg == 'b')
2057 x = AFF_TYPE_BIN;
2058 else if (*optarg == 'n')
2059 x = AFF_TYPE_NONE;
2060 else
2061 tcc_warning("unsupported language '%s'", optarg);
2062 s->filetype = x | (s->filetype & ~AFF_TYPE_MASK);
2063 break;
2064 case TCC_OPTION_O:
2065 s->optimize = atoi(optarg);
2066 break;
2067 case TCC_OPTION_print_search_dirs:
2068 x = OPT_PRINT_DIRS;
2069 goto extra_action;
2070 case TCC_OPTION_impdef:
2071 x = OPT_IMPDEF;
2072 goto extra_action;
2073 case TCC_OPTION_ar:
2074 x = OPT_AR;
2075 extra_action:
2076 arg_start = optind - 1;
2077 if (arg_start != noaction)
2078 tcc_error("cannot parse %s here", r);
2079 tool = x;
2080 break;
2081 case TCC_OPTION_traditional:
2082 case TCC_OPTION_pedantic:
2083 case TCC_OPTION_pipe:
2084 case TCC_OPTION_s:
2085 case TCC_OPTION_C:
2086 /* ignored */
2087 break;
2088 default:
2089 unsupported_option:
2090 if (s->warn_unsupported)
2091 tcc_warning("unsupported option '%s'", r);
2092 break;
2095 if (linker_arg.size) {
2096 r = linker_arg.data;
2097 goto arg_err;
2099 *pargc = argc - arg_start;
2100 *pargv = argv + arg_start;
2101 if (tool)
2102 return tool;
2103 if (optind != noaction)
2104 return 0;
2105 if (s->verbose == 2)
2106 return OPT_PRINT_DIRS;
2107 if (s->verbose)
2108 return OPT_V;
2109 return OPT_HELP;
2112 LIBTCCAPI void tcc_set_options(TCCState *s, const char *r)
2114 char **argv = NULL;
2115 int argc = 0;
2116 args_parser_make_argv(r, &argc, &argv);
2117 tcc_parse_args(s, &argc, &argv, 0);
2118 dynarray_reset(&argv, &argc);
2121 PUB_FUNC void tcc_print_stats(TCCState *s1, unsigned total_time)
2123 if (total_time < 1)
2124 total_time = 1;
2125 if (total_bytes < 1)
2126 total_bytes = 1;
2127 fprintf(stderr, "* %d idents, %d lines, %d bytes\n"
2128 "* %0.3f s, %u lines/s, %0.1f MB/s\n",
2129 total_idents, total_lines, total_bytes,
2130 (double)total_time/1000,
2131 (unsigned)total_lines*1000/total_time,
2132 (double)total_bytes/1000/total_time);
2133 fprintf(stderr, "* text %d, data %d, bss %d bytes\n",
2134 s1->total_output[0], s1->total_output[1], s1->total_output[2]);
2135 #ifdef MEM_DEBUG
2136 fprintf(stderr, "* %d bytes memory used\n", mem_max_size);
2137 #endif