win64: fix pe_isafunc()
[tinycc.git] / libtcc.c
blob369863284d908f500964750458267fc930033a9e
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__", "__OpenBSD__");
896 # endif
897 #endif
899 /* TinyCC & gcc defines */
900 #if PTR_SIZE == 4
901 /* 32bit systems. */
902 tcc_define_symbol(s, "__SIZE_TYPE__", "unsigned int");
903 tcc_define_symbol(s, "__PTRDIFF_TYPE__", "int");
904 tcc_define_symbol(s, "__ILP32__", NULL);
905 #elif LONG_SIZE == 4
906 /* 64bit Windows. */
907 tcc_define_symbol(s, "__SIZE_TYPE__", "unsigned long long");
908 tcc_define_symbol(s, "__PTRDIFF_TYPE__", "long long");
909 tcc_define_symbol(s, "__LLP64__", NULL);
910 #else
911 /* Other 64bit systems. */
912 tcc_define_symbol(s, "__SIZE_TYPE__", "unsigned long");
913 tcc_define_symbol(s, "__PTRDIFF_TYPE__", "long");
914 tcc_define_symbol(s, "__LP64__", NULL);
915 #endif
916 tcc_define_symbol(s, "__SIZEOF_POINTER__", PTR_SIZE == 4 ? "4" : "8");
918 #ifdef TCC_TARGET_PE
919 tcc_define_symbol(s, "__WCHAR_TYPE__", "unsigned short");
920 tcc_define_symbol(s, "__WINT_TYPE__", "unsigned short");
921 #else
922 tcc_define_symbol(s, "__WCHAR_TYPE__", "int");
923 /* wint_t is unsigned int by default, but (signed) int on BSDs
924 and unsigned short on windows. Other OSes might have still
925 other conventions, sigh. */
926 # if defined(__FreeBSD__) || defined (__FreeBSD_kernel__) \
927 || defined(__NetBSD__) || defined(__OpenBSD__)
928 tcc_define_symbol(s, "__WINT_TYPE__", "int");
929 # ifdef __FreeBSD__
930 /* define __GNUC__ to have some useful stuff from sys/cdefs.h
931 that are unconditionally used in FreeBSDs other system headers :/ */
932 tcc_define_symbol(s, "__GNUC__", "2");
933 tcc_define_symbol(s, "__GNUC_MINOR__", "7");
934 tcc_define_symbol(s, "__builtin_alloca", "alloca");
935 # endif
936 # else
937 tcc_define_symbol(s, "__WINT_TYPE__", "unsigned int");
938 /* glibc defines */
939 tcc_define_symbol(s, "__REDIRECT(name, proto, alias)",
940 "name proto __asm__ (#alias)");
941 tcc_define_symbol(s, "__REDIRECT_NTH(name, proto, alias)",
942 "name proto __asm__ (#alias) __THROW");
943 # endif
944 /* Some GCC builtins that are simple to express as macros. */
945 tcc_define_symbol(s, "__builtin_extract_return_addr(x)", "x");
946 #endif /* ndef TCC_TARGET_PE */
947 #ifdef TCC_TARGET_MACHO
948 /* emulate APPLE-GCC to make libc's headerfiles compile: */
949 tcc_define_symbol(s, "__APPLE__", "1");
950 tcc_define_symbol(s, "__GNUC__", "4"); /* darwin emits warning on GCC<4 */
951 tcc_define_symbol(s, "__APPLE_CC__", "1"); /* for <TargetConditionals.h> */
952 tcc_define_symbol(s, "_DONT_USE_CTYPE_INLINE_", "1");
953 tcc_define_symbol(s, "__builtin_alloca", "alloca"); /* as we claim GNUC */
954 /* used by math.h */
955 tcc_define_symbol(s, "__builtin_huge_val()", "1e500");
956 tcc_define_symbol(s, "__builtin_huge_valf()", "1e50f");
957 tcc_define_symbol(s, "__builtin_huge_vall()", "1e5000L");
958 tcc_define_symbol(s, "__builtin_nanf(ignored_string)", "__nan()");
959 /* used by _fd_def.h */
960 tcc_define_symbol(s, "__builtin_bzero(p, ignored_size)", "bzero(p, sizeof(*(p)))");
961 /* used by floats.h to implement FLT_ROUNDS C99 macro. 1 == to nearest */
962 tcc_define_symbol(s, "__builtin_flt_rounds()", "1");
964 /* avoids usage of GCC/clang specific builtins in libc-headerfiles: */
965 tcc_define_symbol(s, "__FINITE_MATH_ONLY__", "1");
966 tcc_define_symbol(s, "_FORTIFY_SOURCE", "0");
967 #endif /* ndef TCC_TARGET_MACHO */
969 #if LONG_SIZE == 4
970 tcc_define_symbol(s, "__SIZEOF_LONG__", "4");
971 tcc_define_symbol(s, "__LONG_MAX__", "0x7fffffffL");
972 #else
973 tcc_define_symbol(s, "__SIZEOF_LONG__", "8");
974 tcc_define_symbol(s, "__LONG_MAX__", "0x7fffffffffffffffL");
975 #endif
976 tcc_define_symbol(s, "__SIZEOF_INT__", "4");
977 tcc_define_symbol(s, "__SIZEOF_LONG_LONG__", "8");
978 tcc_define_symbol(s, "__CHAR_BIT__", "8");
979 tcc_define_symbol(s, "__ORDER_LITTLE_ENDIAN__", "1234");
980 tcc_define_symbol(s, "__ORDER_BIG_ENDIAN__", "4321");
981 tcc_define_symbol(s, "__BYTE_ORDER__", "__ORDER_LITTLE_ENDIAN__");
982 tcc_define_symbol(s, "__INT_MAX__", "0x7fffffff");
983 tcc_define_symbol(s, "__LONG_LONG_MAX__", "0x7fffffffffffffffLL");
984 tcc_define_symbol(s, "__builtin_offsetof(type,field)", "((__SIZE_TYPE__) &((type *)0)->field)");
985 return s;
988 LIBTCCAPI void tcc_delete(TCCState *s1)
990 /* free sections */
991 tccelf_delete(s1);
993 /* free library paths */
994 dynarray_reset(&s1->library_paths, &s1->nb_library_paths);
995 dynarray_reset(&s1->crt_paths, &s1->nb_crt_paths);
997 /* free include paths */
998 dynarray_reset(&s1->include_paths, &s1->nb_include_paths);
999 dynarray_reset(&s1->sysinclude_paths, &s1->nb_sysinclude_paths);
1001 tcc_free(s1->tcc_lib_path);
1002 tcc_free(s1->soname);
1003 tcc_free(s1->rpath);
1004 tcc_free(s1->init_symbol);
1005 tcc_free(s1->fini_symbol);
1006 tcc_free(s1->outfile);
1007 tcc_free(s1->deps_outfile);
1008 dynarray_reset(&s1->files, &s1->nb_files);
1009 dynarray_reset(&s1->target_deps, &s1->nb_target_deps);
1010 dynarray_reset(&s1->pragma_libs, &s1->nb_pragma_libs);
1011 dynarray_reset(&s1->argv, &s1->argc);
1013 cstr_free(&s1->cmdline_defs);
1014 cstr_free(&s1->cmdline_incl);
1015 #ifdef TCC_IS_NATIVE
1016 /* free runtime memory */
1017 tcc_run_free(s1);
1018 #endif
1020 tcc_free(s1);
1021 #ifdef MEM_DEBUG
1022 if (0 == --nb_states)
1023 tcc_memcheck();
1024 #endif
1027 LIBTCCAPI int tcc_set_output_type(TCCState *s, int output_type)
1029 s->output_type = output_type;
1031 /* always elf for objects */
1032 if (output_type == TCC_OUTPUT_OBJ)
1033 s->output_format = TCC_OUTPUT_FORMAT_ELF;
1035 if (s->char_is_unsigned)
1036 tcc_define_symbol(s, "__CHAR_UNSIGNED__", NULL);
1038 if (s->cversion == 201112) {
1039 tcc_undefine_symbol(s, "__STDC_VERSION__");
1040 tcc_define_symbol(s, "__STDC_VERSION__", "201112L");
1041 tcc_define_symbol(s, "__STDC_NO_ATOMICS__", NULL);
1042 tcc_define_symbol(s, "__STDC_NO_COMPLEX__", NULL);
1043 tcc_define_symbol(s, "__STDC_NO_THREADS__", NULL);
1044 #ifndef TCC_TARGET_PE
1045 /* on Linux, this conflicts with a define introduced by
1046 /usr/include/stdc-predef.h included by glibc libs
1047 tcc_define_symbol(s, "__STDC_ISO_10646__", "201605L"); */
1048 tcc_define_symbol(s, "__STDC_UTF_16__", NULL);
1049 tcc_define_symbol(s, "__STDC_UTF_32__", NULL);
1050 #endif
1053 if (s->optimize > 0)
1054 tcc_define_symbol(s, "__OPTIMIZE__", NULL);
1056 if (s->option_pthread)
1057 tcc_define_symbol(s, "_REENTRANT", NULL);
1059 if (s->leading_underscore)
1060 tcc_define_symbol(s, "__leading_underscore", NULL);
1062 if (!s->nostdinc) {
1063 /* default include paths */
1064 /* -isystem paths have already been handled */
1065 tcc_add_sysinclude_path(s, CONFIG_TCC_SYSINCLUDEPATHS);
1068 #ifdef CONFIG_TCC_BCHECK
1069 if (s->do_bounds_check) {
1070 /* if bound checking, then add corresponding sections */
1071 tccelf_bounds_new(s);
1072 /* define symbol */
1073 tcc_define_symbol(s, "__BOUNDS_CHECKING_ON", NULL);
1075 #endif
1076 if (s->do_debug) {
1077 /* add debug sections */
1078 tccelf_stab_new(s);
1081 tcc_add_library_path(s, CONFIG_TCC_LIBPATHS);
1083 #ifdef TCC_TARGET_PE
1084 # ifdef _WIN32
1085 if (!s->nostdlib && output_type != TCC_OUTPUT_OBJ)
1086 tcc_add_systemdir(s);
1087 # endif
1088 #else
1089 /* paths for crt objects */
1090 tcc_split_path(s, &s->crt_paths, &s->nb_crt_paths, CONFIG_TCC_CRTPREFIX);
1091 /* add libc crt1/crti objects */
1092 if ((output_type == TCC_OUTPUT_EXE || output_type == TCC_OUTPUT_DLL) &&
1093 !s->nostdlib) {
1094 #ifndef TCC_TARGET_MACHO
1095 /* Mach-O with LC_MAIN doesn't need any crt startup code. */
1096 if (output_type != TCC_OUTPUT_DLL)
1097 tcc_add_crt(s, "crt1.o");
1098 tcc_add_crt(s, "crti.o");
1099 #endif
1101 #endif
1102 return 0;
1105 LIBTCCAPI int tcc_add_include_path(TCCState *s, const char *pathname)
1107 tcc_split_path(s, &s->include_paths, &s->nb_include_paths, pathname);
1108 return 0;
1111 LIBTCCAPI int tcc_add_sysinclude_path(TCCState *s, const char *pathname)
1113 tcc_split_path(s, &s->sysinclude_paths, &s->nb_sysinclude_paths, pathname);
1114 return 0;
1117 ST_FUNC int tcc_add_file_internal(TCCState *s1, const char *filename, int flags)
1119 int fd, ret;
1121 /* open the file */
1122 fd = _tcc_open(s1, filename);
1123 if (fd < 0) {
1124 if (flags & AFF_PRINT_ERROR)
1125 tcc_error_noabort("file '%s' not found", filename);
1126 return -1;
1129 s1->current_filename = filename;
1130 if (flags & AFF_TYPE_BIN) {
1131 ElfW(Ehdr) ehdr;
1132 int obj_type;
1134 obj_type = tcc_object_type(fd, &ehdr);
1135 lseek(fd, 0, SEEK_SET);
1137 #ifdef TCC_TARGET_MACHO
1138 if (0 == obj_type && 0 == strcmp(tcc_fileextension(filename), ".dylib"))
1139 obj_type = AFF_BINTYPE_DYN;
1140 #endif
1142 switch (obj_type) {
1143 case AFF_BINTYPE_REL:
1144 ret = tcc_load_object_file(s1, fd, 0);
1145 break;
1146 #ifndef TCC_TARGET_PE
1147 case AFF_BINTYPE_DYN:
1148 if (s1->output_type == TCC_OUTPUT_MEMORY) {
1149 ret = 0;
1150 #ifdef TCC_IS_NATIVE
1151 if (NULL == dlopen(filename, RTLD_GLOBAL | RTLD_LAZY))
1152 ret = -1;
1153 #endif
1154 } else {
1155 #ifndef TCC_TARGET_MACHO
1156 ret = tcc_load_dll(s1, fd, filename,
1157 (flags & AFF_REFERENCED_DLL) != 0);
1158 #else
1159 ret = macho_load_dll(s1, fd, filename,
1160 (flags & AFF_REFERENCED_DLL) != 0);
1161 #endif
1163 break;
1164 #endif
1165 case AFF_BINTYPE_AR:
1166 ret = tcc_load_archive(s1, fd, !(flags & AFF_WHOLE_ARCHIVE));
1167 break;
1168 #ifdef TCC_TARGET_COFF
1169 case AFF_BINTYPE_C67:
1170 ret = tcc_load_coff(s1, fd);
1171 break;
1172 #endif
1173 default:
1174 #ifdef TCC_TARGET_PE
1175 ret = pe_load_file(s1, filename, fd);
1176 #elif defined(TCC_TARGET_MACHO)
1177 ret = -1;
1178 #else
1179 /* as GNU ld, consider it is an ld script if not recognized */
1180 ret = tcc_load_ldscript(s1, fd);
1181 #endif
1182 if (ret < 0)
1183 tcc_error_noabort("%s: unrecognized file type %d", filename,
1184 obj_type);
1185 break;
1187 close(fd);
1188 } else {
1189 /* update target deps */
1190 dynarray_add(&s1->target_deps, &s1->nb_target_deps, tcc_strdup(filename));
1191 ret = tcc_compile(s1, flags, filename, fd);
1193 s1->current_filename = NULL;
1194 return ret;
1197 LIBTCCAPI int tcc_add_file(TCCState *s, const char *filename)
1199 int filetype = s->filetype;
1200 if (0 == (filetype & AFF_TYPE_MASK)) {
1201 /* use a file extension to detect a filetype */
1202 const char *ext = tcc_fileextension(filename);
1203 if (ext[0]) {
1204 ext++;
1205 if (!strcmp(ext, "S"))
1206 filetype = AFF_TYPE_ASMPP;
1207 else if (!strcmp(ext, "s"))
1208 filetype = AFF_TYPE_ASM;
1209 else if (!PATHCMP(ext, "c") || !PATHCMP(ext, "i"))
1210 filetype = AFF_TYPE_C;
1211 else
1212 filetype |= AFF_TYPE_BIN;
1213 } else {
1214 filetype = AFF_TYPE_C;
1217 return tcc_add_file_internal(s, filename, filetype | AFF_PRINT_ERROR);
1220 LIBTCCAPI int tcc_add_library_path(TCCState *s, const char *pathname)
1222 tcc_split_path(s, &s->library_paths, &s->nb_library_paths, pathname);
1223 return 0;
1226 static int tcc_add_library_internal(TCCState *s, const char *fmt,
1227 const char *filename, int flags, char **paths, int nb_paths)
1229 char buf[1024];
1230 int i;
1232 for(i = 0; i < nb_paths; i++) {
1233 snprintf(buf, sizeof(buf), fmt, paths[i], filename);
1234 if (tcc_add_file_internal(s, buf, flags | AFF_TYPE_BIN) == 0)
1235 return 0;
1237 return -1;
1240 #ifndef TCC_TARGET_MACHO
1241 /* find and load a dll. Return non zero if not found */
1242 /* XXX: add '-rpath' option support ? */
1243 ST_FUNC int tcc_add_dll(TCCState *s, const char *filename, int flags)
1245 return tcc_add_library_internal(s, "%s/%s", filename, flags,
1246 s->library_paths, s->nb_library_paths);
1248 #endif
1250 #if !defined TCC_TARGET_PE && !defined TCC_TARGET_MACHO
1251 ST_FUNC int tcc_add_crt(TCCState *s1, const char *filename)
1253 if (-1 == tcc_add_library_internal(s1, "%s/%s",
1254 filename, 0, s1->crt_paths, s1->nb_crt_paths))
1255 tcc_error_noabort("file '%s' not found", filename);
1256 return 0;
1258 #endif
1260 /* the library name is the same as the argument of the '-l' option */
1261 LIBTCCAPI int tcc_add_library(TCCState *s, const char *libraryname)
1263 #if defined TCC_TARGET_PE
1264 const char *libs[] = { "%s/%s.def", "%s/lib%s.def", "%s/%s.dll", "%s/lib%s.dll", "%s/lib%s.a", NULL };
1265 const char **pp = s->static_link ? libs + 4 : libs;
1266 #elif defined TCC_TARGET_MACHO
1267 const char *libs[] = { "%s/lib%s.dylib", "%s/lib%s.a", NULL };
1268 const char **pp = s->static_link ? libs + 1 : libs;
1269 #else
1270 const char *libs[] = { "%s/lib%s.so", "%s/lib%s.a", NULL };
1271 const char **pp = s->static_link ? libs + 1 : libs;
1272 #endif
1273 int flags = s->filetype & AFF_WHOLE_ARCHIVE;
1274 while (*pp) {
1275 if (0 == tcc_add_library_internal(s, *pp,
1276 libraryname, flags, s->library_paths, s->nb_library_paths))
1277 return 0;
1278 ++pp;
1280 return -1;
1283 PUB_FUNC int tcc_add_library_err(TCCState *s1, const char *libname)
1285 int ret = tcc_add_library(s1, libname);
1286 if (ret < 0)
1287 tcc_error_noabort("library '%s' not found", libname);
1288 return ret;
1291 /* handle #pragma comment(lib,) */
1292 ST_FUNC void tcc_add_pragma_libs(TCCState *s1)
1294 int i;
1295 for (i = 0; i < s1->nb_pragma_libs; i++)
1296 tcc_add_library_err(s1, s1->pragma_libs[i]);
1299 LIBTCCAPI int tcc_add_symbol(TCCState *s1, const char *name, const void *val)
1301 #ifdef TCC_TARGET_PE
1302 /* On x86_64 'val' might not be reachable with a 32bit offset.
1303 So it is handled here as if it were in a DLL. */
1304 pe_putimport(s1, 0, name, (uintptr_t)val);
1305 #else
1306 char buf[256];
1307 if (s1->leading_underscore) {
1308 buf[0] = '_';
1309 pstrcpy(buf + 1, sizeof(buf) - 1, name);
1310 name = buf;
1312 set_global_sym(s1, name, NULL, (addr_t)(uintptr_t)val); /* NULL: SHN_ABS */
1313 #endif
1314 return 0;
1317 LIBTCCAPI void tcc_set_lib_path(TCCState *s, const char *path)
1319 tcc_free(s->tcc_lib_path);
1320 s->tcc_lib_path = tcc_strdup(path);
1323 #define WD_ALL 0x0001 /* warning is activated when using -Wall */
1324 #define FD_INVERT 0x0002 /* invert value before storing */
1326 typedef struct FlagDef {
1327 uint16_t offset;
1328 uint16_t flags;
1329 const char *name;
1330 } FlagDef;
1332 static int no_flag(const char **pp)
1334 const char *p = *pp;
1335 if (*p != 'n' || *++p != 'o' || *++p != '-')
1336 return 0;
1337 *pp = p + 1;
1338 return 1;
1341 ST_FUNC int set_flag(TCCState *s, const FlagDef *flags, const char *name)
1343 int value, ret;
1344 const FlagDef *p;
1345 const char *r;
1347 value = 1;
1348 r = name;
1349 if (no_flag(&r))
1350 value = 0;
1352 for (ret = -1, p = flags; p->name; ++p) {
1353 if (ret) {
1354 if (strcmp(r, p->name))
1355 continue;
1356 } else {
1357 if (0 == (p->flags & WD_ALL))
1358 continue;
1360 if (p->offset) {
1361 *((unsigned char *)s + p->offset) =
1362 p->flags & FD_INVERT ? !value : value;
1363 if (ret)
1364 return 0;
1365 } else {
1366 ret = 0;
1369 return ret;
1372 static int strstart(const char *val, const char **str)
1374 const char *p, *q;
1375 p = *str;
1376 q = val;
1377 while (*q) {
1378 if (*p != *q)
1379 return 0;
1380 p++;
1381 q++;
1383 *str = p;
1384 return 1;
1387 /* Like strstart, but automatically takes into account that ld options can
1389 * - start with double or single dash (e.g. '--soname' or '-soname')
1390 * - arguments can be given as separate or after '=' (e.g. '-Wl,-soname,x.so'
1391 * or '-Wl,-soname=x.so')
1393 * you provide `val` always in 'option[=]' form (no leading -)
1395 static int link_option(const char *str, const char *val, const char **ptr)
1397 const char *p, *q;
1398 int ret;
1400 /* there should be 1 or 2 dashes */
1401 if (*str++ != '-')
1402 return 0;
1403 if (*str == '-')
1404 str++;
1406 /* then str & val should match (potentially up to '=') */
1407 p = str;
1408 q = val;
1410 ret = 1;
1411 if (q[0] == '?') {
1412 ++q;
1413 if (no_flag(&p))
1414 ret = -1;
1417 while (*q != '\0' && *q != '=') {
1418 if (*p != *q)
1419 return 0;
1420 p++;
1421 q++;
1424 /* '=' near eos means ',' or '=' is ok */
1425 if (*q == '=') {
1426 if (*p == 0)
1427 *ptr = p;
1428 if (*p != ',' && *p != '=')
1429 return 0;
1430 p++;
1431 } else if (*p) {
1432 return 0;
1434 *ptr = p;
1435 return ret;
1438 static const char *skip_linker_arg(const char **str)
1440 const char *s1 = *str;
1441 const char *s2 = strchr(s1, ',');
1442 *str = s2 ? s2++ : (s2 = s1 + strlen(s1));
1443 return s2;
1446 static void copy_linker_arg(char **pp, const char *s, int sep)
1448 const char *q = s;
1449 char *p = *pp;
1450 int l = 0;
1451 if (p && sep)
1452 p[l = strlen(p)] = sep, ++l;
1453 skip_linker_arg(&q);
1454 pstrncpy(l + (*pp = tcc_realloc(p, q - s + l + 1)), s, q - s);
1457 /* set linker options */
1458 static int tcc_set_linker(TCCState *s, const char *option)
1460 TCCState *s1 = s;
1461 while (*option) {
1463 const char *p = NULL;
1464 char *end = NULL;
1465 int ignoring = 0;
1466 int ret;
1468 if (link_option(option, "Bsymbolic", &p)) {
1469 s->symbolic = 1;
1470 } else if (link_option(option, "nostdlib", &p)) {
1471 s->nostdlib = 1;
1472 } else if (link_option(option, "fini=", &p)) {
1473 copy_linker_arg(&s->fini_symbol, p, 0);
1474 ignoring = 1;
1475 } else if (link_option(option, "image-base=", &p)
1476 || link_option(option, "Ttext=", &p)) {
1477 s->text_addr = strtoull(p, &end, 16);
1478 s->has_text_addr = 1;
1479 } else if (link_option(option, "init=", &p)) {
1480 copy_linker_arg(&s->init_symbol, p, 0);
1481 ignoring = 1;
1482 } else if (link_option(option, "oformat=", &p)) {
1483 #if defined(TCC_TARGET_PE)
1484 if (strstart("pe-", &p)) {
1485 #elif PTR_SIZE == 8
1486 if (strstart("elf64-", &p)) {
1487 #else
1488 if (strstart("elf32-", &p)) {
1489 #endif
1490 s->output_format = TCC_OUTPUT_FORMAT_ELF;
1491 } else if (!strcmp(p, "binary")) {
1492 s->output_format = TCC_OUTPUT_FORMAT_BINARY;
1493 #ifdef TCC_TARGET_COFF
1494 } else if (!strcmp(p, "coff")) {
1495 s->output_format = TCC_OUTPUT_FORMAT_COFF;
1496 #endif
1497 } else
1498 goto err;
1500 } else if (link_option(option, "as-needed", &p)) {
1501 ignoring = 1;
1502 } else if (link_option(option, "O", &p)) {
1503 ignoring = 1;
1504 } else if (link_option(option, "export-all-symbols", &p)) {
1505 s->rdynamic = 1;
1506 } else if (link_option(option, "export-dynamic", &p)) {
1507 s->rdynamic = 1;
1508 } else if (link_option(option, "rpath=", &p)) {
1509 copy_linker_arg(&s->rpath, p, ':');
1510 } else if (link_option(option, "enable-new-dtags", &p)) {
1511 s->enable_new_dtags = 1;
1512 } else if (link_option(option, "section-alignment=", &p)) {
1513 s->section_align = strtoul(p, &end, 16);
1514 } else if (link_option(option, "soname=", &p)) {
1515 copy_linker_arg(&s->soname, p, 0);
1516 #ifdef TCC_TARGET_PE
1517 } else if (link_option(option, "large-address-aware", &p)) {
1518 s->pe_characteristics |= 0x20;
1519 } else if (link_option(option, "file-alignment=", &p)) {
1520 s->pe_file_align = strtoul(p, &end, 16);
1521 } else if (link_option(option, "stack=", &p)) {
1522 s->pe_stack_size = strtoul(p, &end, 10);
1523 } else if (link_option(option, "subsystem=", &p)) {
1524 #if defined(TCC_TARGET_I386) || defined(TCC_TARGET_X86_64)
1525 if (!strcmp(p, "native")) {
1526 s->pe_subsystem = 1;
1527 } else if (!strcmp(p, "console")) {
1528 s->pe_subsystem = 3;
1529 } else if (!strcmp(p, "gui") || !strcmp(p, "windows")) {
1530 s->pe_subsystem = 2;
1531 } else if (!strcmp(p, "posix")) {
1532 s->pe_subsystem = 7;
1533 } else if (!strcmp(p, "efiapp")) {
1534 s->pe_subsystem = 10;
1535 } else if (!strcmp(p, "efiboot")) {
1536 s->pe_subsystem = 11;
1537 } else if (!strcmp(p, "efiruntime")) {
1538 s->pe_subsystem = 12;
1539 } else if (!strcmp(p, "efirom")) {
1540 s->pe_subsystem = 13;
1541 #elif defined(TCC_TARGET_ARM)
1542 if (!strcmp(p, "wince")) {
1543 s->pe_subsystem = 9;
1544 #endif
1545 } else
1546 goto err;
1547 #endif
1548 } else if (ret = link_option(option, "?whole-archive", &p), ret) {
1549 if (ret > 0)
1550 s->filetype |= AFF_WHOLE_ARCHIVE;
1551 else
1552 s->filetype &= ~AFF_WHOLE_ARCHIVE;
1553 } else if (p) {
1554 return 0;
1555 } else {
1556 err:
1557 tcc_error("unsupported linker option '%s'", option);
1560 if (ignoring && s->warn_unsupported)
1561 tcc_warning("unsupported linker option '%s'", option);
1563 option = skip_linker_arg(&p);
1565 return 1;
1568 typedef struct TCCOption {
1569 const char *name;
1570 uint16_t index;
1571 uint16_t flags;
1572 } TCCOption;
1574 enum {
1575 TCC_OPTION_HELP,
1576 TCC_OPTION_HELP2,
1577 TCC_OPTION_v,
1578 TCC_OPTION_I,
1579 TCC_OPTION_D,
1580 TCC_OPTION_U,
1581 TCC_OPTION_P,
1582 TCC_OPTION_L,
1583 TCC_OPTION_B,
1584 TCC_OPTION_l,
1585 TCC_OPTION_bench,
1586 TCC_OPTION_bt,
1587 TCC_OPTION_b,
1588 TCC_OPTION_ba,
1589 TCC_OPTION_g,
1590 TCC_OPTION_c,
1591 TCC_OPTION_dumpversion,
1592 TCC_OPTION_d,
1593 TCC_OPTION_static,
1594 TCC_OPTION_std,
1595 TCC_OPTION_shared,
1596 TCC_OPTION_soname,
1597 TCC_OPTION_o,
1598 TCC_OPTION_r,
1599 TCC_OPTION_s,
1600 TCC_OPTION_traditional,
1601 TCC_OPTION_Wl,
1602 TCC_OPTION_Wp,
1603 TCC_OPTION_W,
1604 TCC_OPTION_O,
1605 TCC_OPTION_mfloat_abi,
1606 TCC_OPTION_m,
1607 TCC_OPTION_f,
1608 TCC_OPTION_isystem,
1609 TCC_OPTION_iwithprefix,
1610 TCC_OPTION_include,
1611 TCC_OPTION_nostdinc,
1612 TCC_OPTION_nostdlib,
1613 TCC_OPTION_print_search_dirs,
1614 TCC_OPTION_rdynamic,
1615 TCC_OPTION_param,
1616 TCC_OPTION_pedantic,
1617 TCC_OPTION_pthread,
1618 TCC_OPTION_run,
1619 TCC_OPTION_w,
1620 TCC_OPTION_pipe,
1621 TCC_OPTION_E,
1622 TCC_OPTION_MD,
1623 TCC_OPTION_MF,
1624 TCC_OPTION_x,
1625 TCC_OPTION_ar,
1626 TCC_OPTION_impdef,
1627 TCC_OPTION_C
1630 #define TCC_OPTION_HAS_ARG 0x0001
1631 #define TCC_OPTION_NOSEP 0x0002 /* cannot have space before option and arg */
1633 static const TCCOption tcc_options[] = {
1634 { "h", TCC_OPTION_HELP, 0 },
1635 { "-help", TCC_OPTION_HELP, 0 },
1636 { "?", TCC_OPTION_HELP, 0 },
1637 { "hh", TCC_OPTION_HELP2, 0 },
1638 { "v", TCC_OPTION_v, TCC_OPTION_HAS_ARG | TCC_OPTION_NOSEP },
1639 { "-version", TCC_OPTION_v, 0 }, /* handle as verbose, also prints version*/
1640 { "I", TCC_OPTION_I, TCC_OPTION_HAS_ARG },
1641 { "D", TCC_OPTION_D, TCC_OPTION_HAS_ARG },
1642 { "U", TCC_OPTION_U, TCC_OPTION_HAS_ARG },
1643 { "P", TCC_OPTION_P, TCC_OPTION_HAS_ARG | TCC_OPTION_NOSEP },
1644 { "L", TCC_OPTION_L, TCC_OPTION_HAS_ARG },
1645 { "B", TCC_OPTION_B, TCC_OPTION_HAS_ARG },
1646 { "l", TCC_OPTION_l, TCC_OPTION_HAS_ARG },
1647 { "bench", TCC_OPTION_bench, 0 },
1648 #ifdef CONFIG_TCC_BACKTRACE
1649 { "bt", TCC_OPTION_bt, TCC_OPTION_HAS_ARG | TCC_OPTION_NOSEP },
1650 #endif
1651 #ifdef CONFIG_TCC_BCHECK
1652 { "b", TCC_OPTION_b, 0 },
1653 #endif
1654 { "g", TCC_OPTION_g, TCC_OPTION_HAS_ARG | TCC_OPTION_NOSEP },
1655 { "c", TCC_OPTION_c, 0 },
1656 { "dumpversion", TCC_OPTION_dumpversion, 0},
1657 { "d", TCC_OPTION_d, TCC_OPTION_HAS_ARG | TCC_OPTION_NOSEP },
1658 { "static", TCC_OPTION_static, 0 },
1659 { "std", TCC_OPTION_std, TCC_OPTION_HAS_ARG | TCC_OPTION_NOSEP },
1660 { "shared", TCC_OPTION_shared, 0 },
1661 { "soname", TCC_OPTION_soname, TCC_OPTION_HAS_ARG },
1662 { "o", TCC_OPTION_o, TCC_OPTION_HAS_ARG },
1663 { "-param", TCC_OPTION_param, TCC_OPTION_HAS_ARG },
1664 { "pedantic", TCC_OPTION_pedantic, 0},
1665 { "pthread", TCC_OPTION_pthread, 0},
1666 { "run", TCC_OPTION_run, TCC_OPTION_HAS_ARG | TCC_OPTION_NOSEP },
1667 { "rdynamic", TCC_OPTION_rdynamic, 0 },
1668 { "r", TCC_OPTION_r, 0 },
1669 { "s", TCC_OPTION_s, 0 },
1670 { "traditional", TCC_OPTION_traditional, 0 },
1671 { "Wl,", TCC_OPTION_Wl, TCC_OPTION_HAS_ARG | TCC_OPTION_NOSEP },
1672 { "Wp,", TCC_OPTION_Wp, TCC_OPTION_HAS_ARG | TCC_OPTION_NOSEP },
1673 { "W", TCC_OPTION_W, TCC_OPTION_HAS_ARG | TCC_OPTION_NOSEP },
1674 { "O", TCC_OPTION_O, TCC_OPTION_HAS_ARG | TCC_OPTION_NOSEP },
1675 #ifdef TCC_TARGET_ARM
1676 { "mfloat-abi", TCC_OPTION_mfloat_abi, TCC_OPTION_HAS_ARG },
1677 #endif
1678 { "m", TCC_OPTION_m, TCC_OPTION_HAS_ARG | TCC_OPTION_NOSEP },
1679 { "f", TCC_OPTION_f, TCC_OPTION_HAS_ARG | TCC_OPTION_NOSEP },
1680 { "isystem", TCC_OPTION_isystem, TCC_OPTION_HAS_ARG },
1681 { "include", TCC_OPTION_include, TCC_OPTION_HAS_ARG },
1682 { "nostdinc", TCC_OPTION_nostdinc, 0 },
1683 { "nostdlib", TCC_OPTION_nostdlib, 0 },
1684 { "print-search-dirs", TCC_OPTION_print_search_dirs, 0 },
1685 { "w", TCC_OPTION_w, 0 },
1686 { "pipe", TCC_OPTION_pipe, 0},
1687 { "E", TCC_OPTION_E, 0},
1688 { "MD", TCC_OPTION_MD, 0},
1689 { "MF", TCC_OPTION_MF, TCC_OPTION_HAS_ARG },
1690 { "x", TCC_OPTION_x, TCC_OPTION_HAS_ARG },
1691 { "ar", TCC_OPTION_ar, 0},
1692 #ifdef TCC_TARGET_PE
1693 { "impdef", TCC_OPTION_impdef, 0},
1694 #endif
1695 { "C", TCC_OPTION_C, 0},
1696 { NULL, 0, 0 },
1699 static const FlagDef options_W[] = {
1700 { 0, 0, "all" },
1701 { offsetof(TCCState, warn_unsupported), 0, "unsupported" },
1702 { offsetof(TCCState, warn_write_strings), 0, "write-strings" },
1703 { offsetof(TCCState, warn_error), 0, "error" },
1704 { offsetof(TCCState, warn_gcc_compat), 0, "gcc-compat" },
1705 { offsetof(TCCState, warn_implicit_function_declaration), WD_ALL,
1706 "implicit-function-declaration" },
1707 { 0, 0, NULL }
1710 static const FlagDef options_f[] = {
1711 { offsetof(TCCState, char_is_unsigned), 0, "unsigned-char" },
1712 { offsetof(TCCState, char_is_unsigned), FD_INVERT, "signed-char" },
1713 { offsetof(TCCState, nocommon), FD_INVERT, "common" },
1714 { offsetof(TCCState, leading_underscore), 0, "leading-underscore" },
1715 { offsetof(TCCState, ms_extensions), 0, "ms-extensions" },
1716 { offsetof(TCCState, dollars_in_identifiers), 0, "dollars-in-identifiers" },
1717 { 0, 0, NULL }
1720 static const FlagDef options_m[] = {
1721 { offsetof(TCCState, ms_bitfields), 0, "ms-bitfields" },
1722 #ifdef TCC_TARGET_X86_64
1723 { offsetof(TCCState, nosse), FD_INVERT, "sse" },
1724 #endif
1725 { 0, 0, NULL }
1728 static void args_parser_add_file(TCCState *s, const char* filename, int filetype)
1730 struct filespec *f = tcc_malloc(sizeof *f + strlen(filename));
1731 f->type = filetype;
1732 strcpy(f->name, filename);
1733 dynarray_add(&s->files, &s->nb_files, f);
1736 static int args_parser_make_argv(const char *r, int *argc, char ***argv)
1738 int ret = 0, q, c;
1739 CString str;
1740 for(;;) {
1741 while (c = (unsigned char)*r, c && c <= ' ')
1742 ++r;
1743 if (c == 0)
1744 break;
1745 q = 0;
1746 cstr_new(&str);
1747 while (c = (unsigned char)*r, c) {
1748 ++r;
1749 if (c == '\\' && (*r == '"' || *r == '\\')) {
1750 c = *r++;
1751 } else if (c == '"') {
1752 q = !q;
1753 continue;
1754 } else if (q == 0 && c <= ' ') {
1755 break;
1757 cstr_ccat(&str, c);
1759 cstr_ccat(&str, 0);
1760 //printf("<%s>\n", str.data), fflush(stdout);
1761 dynarray_add(argv, argc, tcc_strdup(str.data));
1762 cstr_free(&str);
1763 ++ret;
1765 return ret;
1768 /* read list file */
1769 static void args_parser_listfile(TCCState *s,
1770 const char *filename, int optind, int *pargc, char ***pargv)
1772 TCCState *s1 = s;
1773 int fd, i;
1774 size_t len;
1775 char *p;
1776 int argc = 0;
1777 char **argv = NULL;
1779 fd = open(filename, O_RDONLY | O_BINARY);
1780 if (fd < 0)
1781 tcc_error("listfile '%s' not found", filename);
1783 len = lseek(fd, 0, SEEK_END);
1784 p = tcc_malloc(len + 1), p[len] = 0;
1785 lseek(fd, 0, SEEK_SET), read(fd, p, len), close(fd);
1787 for (i = 0; i < *pargc; ++i)
1788 if (i == optind)
1789 args_parser_make_argv(p, &argc, &argv);
1790 else
1791 dynarray_add(&argv, &argc, tcc_strdup((*pargv)[i]));
1793 tcc_free(p);
1794 dynarray_reset(&s->argv, &s->argc);
1795 *pargc = s->argc = argc, *pargv = s->argv = argv;
1798 PUB_FUNC int tcc_parse_args(TCCState *s, int *pargc, char ***pargv, int optind)
1800 TCCState *s1 = s;
1801 const TCCOption *popt;
1802 const char *optarg, *r;
1803 const char *run = NULL;
1804 int x;
1805 CString linker_arg; /* collect -Wl options */
1806 int tool = 0, arg_start = 0, noaction = optind;
1807 char **argv = *pargv;
1808 int argc = *pargc;
1810 cstr_new(&linker_arg);
1812 while (optind < argc) {
1813 r = argv[optind];
1814 if (r[0] == '@' && r[1] != '\0') {
1815 args_parser_listfile(s, r + 1, optind, &argc, &argv);
1816 continue;
1818 optind++;
1819 if (tool) {
1820 if (r[0] == '-' && r[1] == 'v' && r[2] == 0)
1821 ++s->verbose;
1822 continue;
1824 reparse:
1825 if (r[0] != '-' || r[1] == '\0') {
1826 if (r[0] != '@') /* allow "tcc file(s) -run @ args ..." */
1827 args_parser_add_file(s, r, s->filetype);
1828 if (run) {
1829 tcc_set_options(s, run);
1830 arg_start = optind - 1;
1831 break;
1833 continue;
1836 /* find option in table */
1837 for(popt = tcc_options; ; ++popt) {
1838 const char *p1 = popt->name;
1839 const char *r1 = r + 1;
1840 if (p1 == NULL)
1841 tcc_error("invalid option -- '%s'", r);
1842 if (!strstart(p1, &r1))
1843 continue;
1844 optarg = r1;
1845 if (popt->flags & TCC_OPTION_HAS_ARG) {
1846 if (*r1 == '\0' && !(popt->flags & TCC_OPTION_NOSEP)) {
1847 if (optind >= argc)
1848 arg_err:
1849 tcc_error("argument to '%s' is missing", r);
1850 optarg = argv[optind++];
1852 } else if (*r1 != '\0')
1853 continue;
1854 break;
1857 switch(popt->index) {
1858 case TCC_OPTION_HELP:
1859 x = OPT_HELP;
1860 goto extra_action;
1861 case TCC_OPTION_HELP2:
1862 x = OPT_HELP2;
1863 goto extra_action;
1864 case TCC_OPTION_I:
1865 tcc_add_include_path(s, optarg);
1866 break;
1867 case TCC_OPTION_D:
1868 tcc_define_symbol(s, optarg, NULL);
1869 break;
1870 case TCC_OPTION_U:
1871 tcc_undefine_symbol(s, optarg);
1872 break;
1873 case TCC_OPTION_L:
1874 tcc_add_library_path(s, optarg);
1875 break;
1876 case TCC_OPTION_B:
1877 /* set tcc utilities path (mainly for tcc development) */
1878 tcc_set_lib_path(s, optarg);
1879 break;
1880 case TCC_OPTION_l:
1881 args_parser_add_file(s, optarg, AFF_TYPE_LIB | (s->filetype & ~AFF_TYPE_MASK));
1882 s->nb_libraries++;
1883 break;
1884 case TCC_OPTION_pthread:
1885 s->option_pthread = 1;
1886 break;
1887 case TCC_OPTION_bench:
1888 s->do_bench = 1;
1889 break;
1890 #ifdef CONFIG_TCC_BACKTRACE
1891 case TCC_OPTION_bt:
1892 s->rt_num_callers = atoi(optarg);
1893 s->do_backtrace = 1;
1894 s->do_debug = 1;
1895 break;
1896 #endif
1897 #ifdef CONFIG_TCC_BCHECK
1898 case TCC_OPTION_b:
1899 s->do_bounds_check = 1;
1900 s->do_backtrace = 1;
1901 s->do_debug = 1;
1902 break;
1903 #endif
1904 case TCC_OPTION_g:
1905 s->do_debug = 1;
1906 break;
1907 case TCC_OPTION_c:
1908 x = TCC_OUTPUT_OBJ;
1909 set_output_type:
1910 if (s->output_type)
1911 tcc_warning("-%s: overriding compiler action already specified", popt->name);
1912 s->output_type = x;
1913 break;
1914 case TCC_OPTION_d:
1915 if (*optarg == 'D')
1916 s->dflag = 3;
1917 else if (*optarg == 'M')
1918 s->dflag = 7;
1919 else if (*optarg == 't')
1920 s->dflag = 16;
1921 else if (isnum(*optarg))
1922 s->g_debug |= atoi(optarg);
1923 else
1924 goto unsupported_option;
1925 break;
1926 case TCC_OPTION_static:
1927 s->static_link = 1;
1928 break;
1929 case TCC_OPTION_std:
1930 if (strcmp(optarg, "=c11") == 0)
1931 s->cversion = 201112;
1932 break;
1933 case TCC_OPTION_shared:
1934 x = TCC_OUTPUT_DLL;
1935 goto set_output_type;
1936 case TCC_OPTION_soname:
1937 s->soname = tcc_strdup(optarg);
1938 break;
1939 case TCC_OPTION_o:
1940 if (s->outfile) {
1941 tcc_warning("multiple -o option");
1942 tcc_free(s->outfile);
1944 s->outfile = tcc_strdup(optarg);
1945 break;
1946 case TCC_OPTION_r:
1947 /* generate a .o merging several output files */
1948 s->option_r = 1;
1949 x = TCC_OUTPUT_OBJ;
1950 goto set_output_type;
1951 case TCC_OPTION_isystem:
1952 tcc_add_sysinclude_path(s, optarg);
1953 break;
1954 case TCC_OPTION_include:
1955 cstr_printf(&s->cmdline_incl, "#include \"%s\"\n", optarg);
1956 break;
1957 case TCC_OPTION_nostdinc:
1958 s->nostdinc = 1;
1959 break;
1960 case TCC_OPTION_nostdlib:
1961 s->nostdlib = 1;
1962 break;
1963 case TCC_OPTION_run:
1964 #ifndef TCC_IS_NATIVE
1965 tcc_error("-run is not available in a cross compiler");
1966 #endif
1967 run = optarg;
1968 x = TCC_OUTPUT_MEMORY;
1969 goto set_output_type;
1970 case TCC_OPTION_v:
1971 do ++s->verbose; while (*optarg++ == 'v');
1972 ++noaction;
1973 break;
1974 case TCC_OPTION_f:
1975 if (set_flag(s, options_f, optarg) < 0)
1976 goto unsupported_option;
1977 break;
1978 #ifdef TCC_TARGET_ARM
1979 case TCC_OPTION_mfloat_abi:
1980 /* tcc doesn't support soft float yet */
1981 if (!strcmp(optarg, "softfp")) {
1982 s->float_abi = ARM_SOFTFP_FLOAT;
1983 tcc_undefine_symbol(s, "__ARM_PCS_VFP");
1984 } else if (!strcmp(optarg, "hard"))
1985 s->float_abi = ARM_HARD_FLOAT;
1986 else
1987 tcc_error("unsupported float abi '%s'", optarg);
1988 break;
1989 #endif
1990 case TCC_OPTION_m:
1991 if (set_flag(s, options_m, optarg) < 0) {
1992 if (x = atoi(optarg), x != 32 && x != 64)
1993 goto unsupported_option;
1994 if (PTR_SIZE != x/8)
1995 return x;
1996 ++noaction;
1998 break;
1999 case TCC_OPTION_W:
2000 s->warn_none = 0;
2001 if (optarg[0] && set_flag(s, options_W, optarg) < 0)
2002 goto unsupported_option;
2003 break;
2004 case TCC_OPTION_w:
2005 s->warn_none = 1;
2006 break;
2007 case TCC_OPTION_rdynamic:
2008 s->rdynamic = 1;
2009 break;
2010 case TCC_OPTION_Wl:
2011 if (linker_arg.size)
2012 --linker_arg.size, cstr_ccat(&linker_arg, ',');
2013 cstr_cat(&linker_arg, optarg, 0);
2014 if (tcc_set_linker(s, linker_arg.data))
2015 cstr_free(&linker_arg);
2016 break;
2017 case TCC_OPTION_Wp:
2018 r = optarg;
2019 goto reparse;
2020 case TCC_OPTION_E:
2021 x = TCC_OUTPUT_PREPROCESS;
2022 goto set_output_type;
2023 case TCC_OPTION_P:
2024 s->Pflag = atoi(optarg) + 1;
2025 break;
2026 case TCC_OPTION_MD:
2027 s->gen_deps = 1;
2028 break;
2029 case TCC_OPTION_MF:
2030 s->deps_outfile = tcc_strdup(optarg);
2031 break;
2032 case TCC_OPTION_dumpversion:
2033 printf ("%s\n", TCC_VERSION);
2034 exit(0);
2035 break;
2036 case TCC_OPTION_x:
2037 x = 0;
2038 if (*optarg == 'c')
2039 x = AFF_TYPE_C;
2040 else if (*optarg == 'a')
2041 x = AFF_TYPE_ASMPP;
2042 else if (*optarg == 'b')
2043 x = AFF_TYPE_BIN;
2044 else if (*optarg == 'n')
2045 x = AFF_TYPE_NONE;
2046 else
2047 tcc_warning("unsupported language '%s'", optarg);
2048 s->filetype = x | (s->filetype & ~AFF_TYPE_MASK);
2049 break;
2050 case TCC_OPTION_O:
2051 s->optimize = atoi(optarg);
2052 break;
2053 case TCC_OPTION_print_search_dirs:
2054 x = OPT_PRINT_DIRS;
2055 goto extra_action;
2056 case TCC_OPTION_impdef:
2057 x = OPT_IMPDEF;
2058 goto extra_action;
2059 case TCC_OPTION_ar:
2060 x = OPT_AR;
2061 extra_action:
2062 arg_start = optind - 1;
2063 if (arg_start != noaction)
2064 tcc_error("cannot parse %s here", r);
2065 tool = x;
2066 break;
2067 case TCC_OPTION_traditional:
2068 case TCC_OPTION_pedantic:
2069 case TCC_OPTION_pipe:
2070 case TCC_OPTION_s:
2071 case TCC_OPTION_C:
2072 /* ignored */
2073 break;
2074 default:
2075 unsupported_option:
2076 if (s->warn_unsupported)
2077 tcc_warning("unsupported option '%s'", r);
2078 break;
2081 if (linker_arg.size) {
2082 r = linker_arg.data;
2083 goto arg_err;
2085 *pargc = argc - arg_start;
2086 *pargv = argv + arg_start;
2087 if (tool)
2088 return tool;
2089 if (optind != noaction)
2090 return 0;
2091 if (s->verbose == 2)
2092 return OPT_PRINT_DIRS;
2093 if (s->verbose)
2094 return OPT_V;
2095 return OPT_HELP;
2098 LIBTCCAPI void tcc_set_options(TCCState *s, const char *r)
2100 char **argv = NULL;
2101 int argc = 0;
2102 args_parser_make_argv(r, &argc, &argv);
2103 tcc_parse_args(s, &argc, &argv, 0);
2104 dynarray_reset(&argv, &argc);
2107 PUB_FUNC void tcc_print_stats(TCCState *s1, unsigned total_time)
2109 if (total_time < 1)
2110 total_time = 1;
2111 if (total_bytes < 1)
2112 total_bytes = 1;
2113 fprintf(stderr, "* %d idents, %d lines, %d bytes\n"
2114 "* %0.3f s, %u lines/s, %0.1f MB/s\n",
2115 total_idents, total_lines, total_bytes,
2116 (double)total_time/1000,
2117 (unsigned)total_lines*1000/total_time,
2118 (double)total_bytes/1000/total_time);
2119 fprintf(stderr, "* text %d, data %d, bss %d bytes\n",
2120 s1->total_output[0], s1->total_output[1], s1->total_output[2]);
2121 #ifdef MEM_DEBUG
2122 fprintf(stderr, "* %d bytes memory used\n", mem_max_size);
2123 #endif