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
28 #ifdef TCC_TARGET_I386
30 #include "i386-link.c"
32 #elif defined(TCC_TARGET_ARM)
36 #elif defined(TCC_TARGET_ARM64)
37 #include "arm64-gen.c"
38 #include "arm64-link.c"
40 #elif defined(TCC_TARGET_C67)
44 #elif defined(TCC_TARGET_X86_64)
45 #include "x86_64-gen.c"
46 #include "x86_64-link.c"
48 #elif defined(TCC_TARGET_RISCV64)
49 #include "riscv64-gen.c"
50 #include "riscv64-link.c"
51 #include "riscv64-asm.c"
58 #ifdef TCC_TARGET_MACHO
61 #endif /* ONE_SOURCE */
65 /********************************************************/
66 /* global variables */
68 /* XXX: get rid of this ASAP (or maybe not) */
69 ST_DATA
struct TCCState
*tcc_state
;
70 TCC_SEM(static tcc_compile_sem
);
76 /********************************************************/
78 ST_FUNC
char *normalize_slashes(char *path
)
81 for (p
= path
; *p
; ++p
)
87 #if defined LIBTCC_AS_DLL && !defined CONFIG_TCCDIR
88 static HMODULE tcc_module
;
89 BOOL WINAPI
DllMain (HINSTANCE hDll
, DWORD dwReason
, LPVOID lpReserved
)
91 if (DLL_PROCESS_ATTACH
== dwReason
)
96 #define tcc_module NULL /* NULL means executable itself */
100 /* on win32, we suppose the lib and includes are at the location of 'tcc.exe' */
101 static inline char *config_tccdir_w32(char *path
)
104 GetModuleFileName(tcc_module
, path
, MAX_PATH
);
105 p
= tcc_basename(normalize_slashes(strlwr(path
)));
111 #define CONFIG_TCCDIR config_tccdir_w32(alloca(MAX_PATH))
115 static void tcc_add_systemdir(TCCState
*s
)
118 GetSystemDirectory(buf
, sizeof buf
);
119 tcc_add_library_path(s
, normalize_slashes(buf
));
124 /********************************************************/
125 #if CONFIG_TCC_SEMLOCK
127 ST_FUNC
void wait_sem(TCCSem
*p
)
130 InitializeCriticalSection(&p
->cr
), p
->init
= 1;
131 EnterCriticalSection(&p
->cr
);
133 ST_FUNC
void post_sem(TCCSem
*p
)
135 LeaveCriticalSection(&p
->cr
);
137 #elif defined __APPLE__
138 /* Half-compatible MacOS doesn't have non-shared (process local)
139 semaphores. Use the dispatch framework for lightweight locks. */
140 ST_FUNC
void wait_sem(TCCSem
*p
)
143 p
->sem
= dispatch_semaphore_create(1), p
->init
= 1;
144 dispatch_semaphore_wait(p
->sem
, DISPATCH_TIME_FOREVER
);
146 ST_FUNC
void post_sem(TCCSem
*p
)
148 dispatch_semaphore_signal(p
->sem
);
151 ST_FUNC
void wait_sem(TCCSem
*p
)
154 sem_init(&p
->sem
, 0, 1), p
->init
= 1;
155 while (sem_wait(&p
->sem
) < 0 && errno
== EINTR
);
157 ST_FUNC
void post_sem(TCCSem
*p
)
164 PUB_FUNC
void tcc_enter_state(TCCState
*s1
)
166 if (s1
->error_set_jmp_enabled
)
168 WAIT_SEM(&tcc_compile_sem
);
172 PUB_FUNC
void tcc_exit_state(TCCState
*s1
)
174 if (s1
->error_set_jmp_enabled
)
177 POST_SEM(&tcc_compile_sem
);
180 /********************************************************/
181 /* copy a string and truncate it. */
182 ST_FUNC
char *pstrcpy(char *buf
, size_t buf_size
, const char *s
)
189 q_end
= buf
+ buf_size
- 1;
201 /* strcat and truncate. */
202 ST_FUNC
char *pstrcat(char *buf
, size_t buf_size
, const char *s
)
207 pstrcpy(buf
+ len
, buf_size
- len
, s
);
211 ST_FUNC
char *pstrncpy(char *out
, const char *in
, size_t num
)
213 memcpy(out
, in
, num
);
218 /* extract the basename of a file */
219 PUB_FUNC
char *tcc_basename(const char *name
)
221 char *p
= strchr(name
, 0);
222 while (p
> name
&& !IS_DIRSEP(p
[-1]))
227 /* extract extension part of a file
229 * (if no extension, return pointer to end-of-string)
231 PUB_FUNC
char *tcc_fileextension (const char *name
)
233 char *b
= tcc_basename(name
);
234 char *e
= strrchr(b
, '.');
235 return e
? e
: strchr(b
, 0);
238 ST_FUNC
char *tcc_load_text(int fd
)
240 int len
= lseek(fd
, 0, SEEK_END
);
241 char *buf
= load_data(fd
, 0, len
+ 1);
246 /********************************************************/
247 /* memory management */
255 PUB_FUNC
void tcc_free(void *ptr
)
260 PUB_FUNC
void *tcc_malloc(unsigned long size
)
265 _tcc_error("memory full (malloc)");
269 PUB_FUNC
void *tcc_mallocz(unsigned long size
)
272 ptr
= tcc_malloc(size
);
274 memset(ptr
, 0, size
);
278 PUB_FUNC
void *tcc_realloc(void *ptr
, unsigned long size
)
281 ptr1
= realloc(ptr
, size
);
283 _tcc_error("memory full (realloc)");
287 PUB_FUNC
char *tcc_strdup(const char *str
)
290 ptr
= tcc_malloc(strlen(str
) + 1);
297 #define MEM_DEBUG_MAGIC1 0xFEEDDEB1
298 #define MEM_DEBUG_MAGIC2 0xFEEDDEB2
299 #define MEM_DEBUG_MAGIC3 0xFEEDDEB3
300 #define MEM_DEBUG_FILE_LEN 40
301 #define MEM_DEBUG_CHECK3(header) \
302 ((mem_debug_header_t*)((char*)header + header->size))->magic3
303 #define MEM_USER_PTR(header) \
304 ((char *)header + offsetof(mem_debug_header_t, magic3))
305 #define MEM_HEADER_PTR(ptr) \
306 (mem_debug_header_t *)((char*)ptr - offsetof(mem_debug_header_t, magic3))
308 struct mem_debug_header
{
311 struct mem_debug_header
*prev
;
312 struct mem_debug_header
*next
;
314 char file_name
[MEM_DEBUG_FILE_LEN
+ 1];
316 ALIGNED(16) unsigned char magic3
[4];
319 typedef struct mem_debug_header mem_debug_header_t
;
321 static mem_debug_header_t
*mem_debug_chain
;
322 static unsigned mem_cur_size
;
323 static unsigned mem_max_size
;
325 static mem_debug_header_t
*malloc_check(void *ptr
, const char *msg
)
327 mem_debug_header_t
* header
= MEM_HEADER_PTR(ptr
);
328 if (header
->magic1
!= MEM_DEBUG_MAGIC1
||
329 header
->magic2
!= MEM_DEBUG_MAGIC2
||
330 read32le(MEM_DEBUG_CHECK3(header
)) != MEM_DEBUG_MAGIC3
||
331 header
->size
== (unsigned)-1) {
332 fprintf(stderr
, "%s check failed\n", msg
);
333 if (header
->magic1
== MEM_DEBUG_MAGIC1
)
334 fprintf(stderr
, "%s:%u: block allocated here.\n",
335 header
->file_name
, header
->line_num
);
341 PUB_FUNC
void *tcc_malloc_debug(unsigned long size
, const char *file
, int line
)
344 mem_debug_header_t
*header
;
346 header
= malloc(sizeof(mem_debug_header_t
) + size
);
348 _tcc_error("memory full (malloc)");
350 header
->magic1
= MEM_DEBUG_MAGIC1
;
351 header
->magic2
= MEM_DEBUG_MAGIC2
;
353 write32le(MEM_DEBUG_CHECK3(header
), MEM_DEBUG_MAGIC3
);
354 header
->line_num
= line
;
355 ofs
= strlen(file
) - MEM_DEBUG_FILE_LEN
;
356 strncpy(header
->file_name
, file
+ (ofs
> 0 ? ofs
: 0), MEM_DEBUG_FILE_LEN
);
357 header
->file_name
[MEM_DEBUG_FILE_LEN
] = 0;
359 header
->next
= mem_debug_chain
;
362 header
->next
->prev
= header
;
363 mem_debug_chain
= header
;
365 mem_cur_size
+= size
;
366 if (mem_cur_size
> mem_max_size
)
367 mem_max_size
= mem_cur_size
;
369 return MEM_USER_PTR(header
);
372 PUB_FUNC
void tcc_free_debug(void *ptr
)
374 mem_debug_header_t
*header
;
377 header
= malloc_check(ptr
, "tcc_free");
378 mem_cur_size
-= header
->size
;
379 header
->size
= (unsigned)-1;
381 header
->next
->prev
= header
->prev
;
383 header
->prev
->next
= header
->next
;
384 if (header
== mem_debug_chain
)
385 mem_debug_chain
= header
->next
;
389 PUB_FUNC
void *tcc_mallocz_debug(unsigned long size
, const char *file
, int line
)
392 ptr
= tcc_malloc_debug(size
,file
,line
);
393 memset(ptr
, 0, size
);
397 PUB_FUNC
void *tcc_realloc_debug(void *ptr
, unsigned long size
, const char *file
, int line
)
399 mem_debug_header_t
*header
;
400 int mem_debug_chain_update
= 0;
402 return tcc_malloc_debug(size
, file
, line
);
403 header
= malloc_check(ptr
, "tcc_realloc");
404 mem_cur_size
-= header
->size
;
405 mem_debug_chain_update
= (header
== mem_debug_chain
);
406 header
= realloc(header
, sizeof(mem_debug_header_t
) + size
);
408 _tcc_error("memory full (realloc)");
410 write32le(MEM_DEBUG_CHECK3(header
), MEM_DEBUG_MAGIC3
);
412 header
->next
->prev
= header
;
414 header
->prev
->next
= header
;
415 if (mem_debug_chain_update
)
416 mem_debug_chain
= header
;
417 mem_cur_size
+= size
;
418 if (mem_cur_size
> mem_max_size
)
419 mem_max_size
= mem_cur_size
;
420 return MEM_USER_PTR(header
);
423 PUB_FUNC
char *tcc_strdup_debug(const char *str
, const char *file
, int line
)
426 ptr
= tcc_malloc_debug(strlen(str
) + 1, file
, line
);
431 PUB_FUNC
void tcc_memcheck(void)
434 mem_debug_header_t
*header
= mem_debug_chain
;
435 fprintf(stderr
, "MEM_DEBUG: mem_leak= %d bytes, mem_max_size= %d bytes\n",
436 mem_cur_size
, mem_max_size
);
438 fprintf(stderr
, "%s:%u: error: %u bytes leaked\n",
439 header
->file_name
, header
->line_num
, header
->size
);
440 header
= header
->next
;
447 #endif /* MEM_DEBUG */
449 #define free(p) use_tcc_free(p)
450 #define malloc(s) use_tcc_malloc(s)
451 #define realloc(p, s) use_tcc_realloc(p, s)
453 /********************************************************/
456 ST_FUNC
void dynarray_add(void *ptab
, int *nb_ptr
, void *data
)
462 pp
= *(void ***)ptab
;
463 /* every power of two we double array size */
464 if ((nb
& (nb
- 1)) == 0) {
469 pp
= tcc_realloc(pp
, nb_alloc
* sizeof(void *));
476 ST_FUNC
void dynarray_reset(void *pp
, int *n
)
479 for (p
= *(void***)pp
; *n
; ++p
, --*n
)
482 tcc_free(*(void**)pp
);
486 static void tcc_split_path(TCCState
*s
, void *p_ary
, int *p_nb_ary
, const char *in
)
494 for (p
= in
; c
= *p
, c
!= '\0' && c
!= PATHSEP
[0]; ++p
) {
495 if (c
== '{' && p
[1] && p
[2] == '}') {
498 cstr_cat(&str
, s
->tcc_lib_path
, -1);
500 cstr_cat(&str
, CONFIG_SYSROOT
, -1);
501 if (c
== 'f' && file
) {
502 /* substitute current file's dir */
503 const char *f
= file
->true_filename
;
504 const char *b
= tcc_basename(f
);
506 cstr_cat(&str
, f
, b
- f
- 1);
508 cstr_cat(&str
, ".", 1);
515 cstr_ccat(&str
, '\0');
516 dynarray_add(p_ary
, p_nb_ary
, tcc_strdup(str
.data
));
523 /********************************************************/
524 /* warning / error */
526 /* warn_... option bits */
527 #define WARN_ON 1 /* warning is on (-Woption) */
528 #define WARN_ERR 2 /* warning is an error (-Werror=option) */
529 #define WARN_NOE 4 /* warning is not an error (-Wno-error=option) */
532 enum { ERROR_WARN
, ERROR_NOABORT
, ERROR_ERROR
};
534 static void error1(int mode
, const char *fmt
, va_list ap
)
536 BufferedFile
**pf
, *f
;
537 TCCState
*s1
= tcc_state
;
543 /* can happen only if called from tcc_malloc(): 'out of memory' */
548 if (mode
== ERROR_WARN
) {
552 /* handle tcc_warning_c(warn_option)(fmt, ...) */
553 int wopt
= *(&s1
->warn_none
+ s1
->warn_num
);
555 if (0 == (wopt
& WARN_ON
))
567 if (s1
->error_set_jmp_enabled
) { /* we're called while parsing a file */
568 /* use upper file if inline ":asm:" or token ":paste:" */
569 for (f
= file
; f
&& f
->filename
[0] == ':'; f
= f
->prev
)
573 for(pf
= s1
->include_stack
; pf
< s1
->include_stack_ptr
; pf
++)
574 cstr_printf(&cs
, "In file included from %s:%d:\n",
575 (*pf
)->filename
, (*pf
)->line_num
- 1);
576 cstr_printf(&cs
, "%s:%d: ",
577 f
->filename
, f
->line_num
- !!(tok_flags
& TOK_FLAG_BOL
));
578 } else if (s1
->current_filename
) {
579 cstr_printf(&cs
, "%s: ", s1
->current_filename
);
584 cstr_printf(&cs
, "tcc: ");
585 cstr_printf(&cs
, mode
== ERROR_WARN
? "warning: " : "error: ");
586 cstr_vprintf(&cs
, fmt
, ap
);
587 if (!s1
|| !s1
->error_func
) {
588 /* default case: stderr */
589 if (s1
&& s1
->output_type
== TCC_OUTPUT_PREPROCESS
&& s1
->ppfp
== stdout
)
590 printf("\n"); /* print a newline during tcc -E */
591 fflush(stdout
); /* flush -v output */
592 fprintf(stderr
, "%s\n", (char*)cs
.data
);
593 fflush(stderr
); /* print error/warning now (win32) */
595 s1
->error_func(s1
->error_opaque
, (char*)cs
.data
);
599 if (mode
!= ERROR_WARN
)
601 if (mode
!= ERROR_ERROR
)
603 if (s1
->error_set_jmp_enabled
)
604 longjmp(s1
->error_jmp_buf
, 1);
609 LIBTCCAPI
void tcc_set_error_func(TCCState
*s
, void *error_opaque
, TCCErrorFunc error_func
)
611 s
->error_opaque
= error_opaque
;
612 s
->error_func
= error_func
;
615 LIBTCCAPI TCCErrorFunc
tcc_get_error_func(TCCState
*s
)
617 return s
->error_func
;
620 LIBTCCAPI
void *tcc_get_error_opaque(TCCState
*s
)
622 return s
->error_opaque
;
625 /* error without aborting current compilation */
626 PUB_FUNC
void _tcc_error_noabort(const char *fmt
, ...)
630 error1(ERROR_NOABORT
, fmt
, ap
);
634 PUB_FUNC
void _tcc_error(const char *fmt
, ...)
638 for (;;) error1(ERROR_ERROR
, fmt
, ap
);
641 PUB_FUNC
void _tcc_warning(const char *fmt
, ...)
645 error1(ERROR_WARN
, fmt
, ap
);
649 /********************************************************/
652 ST_FUNC
void tcc_open_bf(TCCState
*s1
, const char *filename
, int initlen
)
655 int buflen
= initlen
? initlen
: IO_BUF_SIZE
;
657 bf
= tcc_mallocz(sizeof(BufferedFile
) + buflen
);
658 bf
->buf_ptr
= bf
->buffer
;
659 bf
->buf_end
= bf
->buffer
+ initlen
;
660 bf
->buf_end
[0] = CH_EOB
; /* put eob symbol */
661 pstrcpy(bf
->filename
, sizeof(bf
->filename
), filename
);
663 normalize_slashes(bf
->filename
);
665 bf
->true_filename
= bf
->filename
;
667 bf
->ifdef_stack_ptr
= s1
->ifdef_stack_ptr
;
671 tok_flags
= TOK_FLAG_BOL
| TOK_FLAG_BOF
;
674 ST_FUNC
void tcc_close(void)
676 TCCState
*s1
= tcc_state
;
677 BufferedFile
*bf
= file
;
680 total_lines
+= bf
->line_num
;
682 if (bf
->true_filename
!= bf
->filename
)
683 tcc_free(bf
->true_filename
);
688 static int _tcc_open(TCCState
*s1
, const char *filename
)
691 if (strcmp(filename
, "-") == 0)
692 fd
= 0, filename
= "<stdin>";
694 fd
= open(filename
, O_RDONLY
| O_BINARY
);
695 if ((s1
->verbose
== 2 && fd
>= 0) || s1
->verbose
== 3)
696 printf("%s %*s%s\n", fd
< 0 ? "nf":"->",
697 (int)(s1
->include_stack_ptr
- s1
->include_stack
), "", filename
);
701 ST_FUNC
int tcc_open(TCCState
*s1
, const char *filename
)
703 int fd
= _tcc_open(s1
, filename
);
706 tcc_open_bf(s1
, filename
, 0);
711 /* compile the file opened in 'file'. Return non zero if errors. */
712 static int tcc_compile(TCCState
*s1
, int filetype
, const char *str
, int fd
)
714 /* Here we enter the code section where we use the global variables for
715 parsing and code generation (tccpp.c, tccgen.c, <target>-gen.c).
716 Other threads need to wait until we're done.
718 Alternatively we could use thread local storage for those global
719 variables, which may or may not have advantages */
722 s1
->error_set_jmp_enabled
= 1;
724 if (setjmp(s1
->error_jmp_buf
) == 0) {
728 int len
= strlen(str
);
729 tcc_open_bf(s1
, "<string>", len
);
730 memcpy(file
->buffer
, str
, len
);
732 tcc_open_bf(s1
, str
, 0);
736 preprocess_start(s1
, filetype
);
739 if (s1
->output_type
== TCC_OUTPUT_PREPROCESS
) {
742 tccelf_begin_file(s1
);
743 if (filetype
& (AFF_TYPE_ASM
| AFF_TYPE_ASMPP
)) {
744 tcc_assemble(s1
, !!(filetype
& AFF_TYPE_ASMPP
));
753 s1
->error_set_jmp_enabled
= 0;
755 return s1
->nb_errors
!= 0 ? -1 : 0;
758 LIBTCCAPI
int tcc_compile_string(TCCState
*s
, const char *str
)
760 return tcc_compile(s
, s
->filetype
, str
, -1);
763 /* define a preprocessor symbol. value can be NULL, sym can be "sym=val" */
764 LIBTCCAPI
void tcc_define_symbol(TCCState
*s1
, const char *sym
, const char *value
)
767 if (NULL
== (eq
= strchr(sym
, '=')))
770 value
= *eq
? eq
+ 1 : "1";
771 cstr_printf(&s1
->cmdline_defs
, "#define %.*s %s\n", (int)(eq
-sym
), sym
, value
);
774 /* undefine a preprocessor symbol */
775 LIBTCCAPI
void tcc_undefine_symbol(TCCState
*s1
, const char *sym
)
777 cstr_printf(&s1
->cmdline_defs
, "#undef %s\n", sym
);
781 LIBTCCAPI TCCState
*tcc_new(void)
785 s
= tcc_mallocz(sizeof(TCCState
));
797 s
->dollars_in_identifiers
= 1; /*on by default like in gcc/clang*/
798 s
->cversion
= 199901; /* default unless -std=c11 is supplied */
799 s
->warn_implicit_function_declaration
= 1;
800 s
->warn_discarded_qualifiers
= 1;
801 s
->ms_extensions
= 1;
803 #ifdef CHAR_IS_UNSIGNED
804 s
->char_is_unsigned
= 1;
806 #ifdef TCC_TARGET_I386
809 /* enable this if you want symbols with leading underscore on windows: */
810 #if defined TCC_TARGET_MACHO /* || defined TCC_TARGET_PE */
811 s
->leading_underscore
= 1;
813 #ifdef TCC_TARGET_ARM
814 s
->float_abi
= ARM_FLOAT_ABI
;
816 #ifdef CONFIG_NEW_DTAGS
817 s
->enable_new_dtags
= 1;
820 /* might be used in error() before preprocess_start() */
821 s
->include_stack_ptr
= s
->include_stack
;
823 tcc_set_lib_path(s
, CONFIG_TCCDIR
);
827 LIBTCCAPI
void tcc_delete(TCCState
*s1
)
832 /* free library paths */
833 dynarray_reset(&s1
->library_paths
, &s1
->nb_library_paths
);
834 dynarray_reset(&s1
->crt_paths
, &s1
->nb_crt_paths
);
836 /* free include paths */
837 dynarray_reset(&s1
->include_paths
, &s1
->nb_include_paths
);
838 dynarray_reset(&s1
->sysinclude_paths
, &s1
->nb_sysinclude_paths
);
840 tcc_free(s1
->tcc_lib_path
);
841 tcc_free(s1
->soname
);
843 tcc_free(s1
->elf_entryname
);
844 tcc_free(s1
->init_symbol
);
845 tcc_free(s1
->fini_symbol
);
846 tcc_free(s1
->mapfile
);
847 tcc_free(s1
->outfile
);
848 tcc_free(s1
->deps_outfile
);
849 #if defined TCC_TARGET_MACHO
850 tcc_free(s1
->install_name
);
852 dynarray_reset(&s1
->files
, &s1
->nb_files
);
853 dynarray_reset(&s1
->target_deps
, &s1
->nb_target_deps
);
854 dynarray_reset(&s1
->pragma_libs
, &s1
->nb_pragma_libs
);
855 dynarray_reset(&s1
->argv
, &s1
->argc
);
856 cstr_free(&s1
->cmdline_defs
);
857 cstr_free(&s1
->cmdline_incl
);
859 /* free runtime memory */
862 tcc_free(s1
->dState
);
865 if (0 == --nb_states
)
870 LIBTCCAPI
int tcc_set_output_type(TCCState
*s
, int output_type
)
872 #ifdef CONFIG_TCC_PIE
873 if (output_type
== TCC_OUTPUT_EXE
)
874 output_type
|= TCC_OUTPUT_DYN
;
876 s
->output_type
= output_type
;
879 /* default include paths */
880 /* -isystem paths have already been handled */
881 tcc_add_sysinclude_path(s
, CONFIG_TCC_SYSINCLUDEPATHS
);
884 if (output_type
== TCC_OUTPUT_PREPROCESS
) {
891 /* add debug sections */
894 #ifdef CONFIG_TCC_BCHECK
895 if (s
->do_bounds_check
) {
896 /* if bound checking, then add corresponding sections */
897 tccelf_bounds_new(s
);
901 if (output_type
== TCC_OUTPUT_OBJ
) {
902 /* always elf for objects */
903 s
->output_format
= TCC_OUTPUT_FORMAT_ELF
;
907 tcc_add_library_path(s
, CONFIG_TCC_LIBPATHS
);
911 /* allow linking with system dll's directly */
912 tcc_add_systemdir(s
);
914 /* target PE has its own startup code in libtcc1.a */
917 #elif defined TCC_TARGET_MACHO
918 # ifdef TCC_IS_NATIVE
919 tcc_add_macos_sdkpath(s
);
921 /* Mach-O with LC_MAIN doesn't need any crt startup code. */
925 /* paths for crt objects */
926 tcc_split_path(s
, &s
->crt_paths
, &s
->nb_crt_paths
, CONFIG_TCC_CRTPREFIX
);
928 /* add libc crt1/crti objects */
929 if (output_type
!= TCC_OUTPUT_MEMORY
&& !s
->nostdlib
) {
931 if (output_type
!= TCC_OUTPUT_DLL
)
932 tcc_add_crt(s
, "crt0.o");
933 if (output_type
== TCC_OUTPUT_DLL
)
934 tcc_add_crt(s
, "crtbeginS.o");
936 tcc_add_crt(s
, "crtbegin.o");
937 #elif TARGETOS_FreeBSD
938 if (output_type
!= TCC_OUTPUT_DLL
)
939 tcc_add_crt(s
, "crt1.o");
940 tcc_add_crt(s
, "crti.o");
942 tcc_add_crt(s
, "crtbeginT.o");
943 else if (output_type
& TCC_OUTPUT_DYN
)
944 tcc_add_crt(s
, "crtbeginS.o");
946 tcc_add_crt(s
, "crtbegin.o");
947 #elif TARGETOS_NetBSD
948 if (output_type
!= TCC_OUTPUT_DLL
)
949 tcc_add_crt(s
, "crt0.o");
950 tcc_add_crt(s
, "crti.o");
952 tcc_add_crt(s
, "crtbeginT.o");
953 else if (output_type
& TCC_OUTPUT_DYN
)
954 tcc_add_crt(s
, "crtbeginS.o");
956 tcc_add_crt(s
, "crtbegin.o");
957 #elif defined TARGETOS_ANDROID
958 if (output_type
!= TCC_OUTPUT_DLL
)
959 tcc_add_crt(s
, "crtbegin_dynamic.o");
961 tcc_add_crt(s
, "crtbegin_so.o");
963 if (output_type
!= TCC_OUTPUT_DLL
)
964 tcc_add_crt(s
, "crt1.o");
965 tcc_add_crt(s
, "crti.o");
972 LIBTCCAPI
int tcc_add_include_path(TCCState
*s
, const char *pathname
)
974 tcc_split_path(s
, &s
->include_paths
, &s
->nb_include_paths
, pathname
);
978 LIBTCCAPI
int tcc_add_sysinclude_path(TCCState
*s
, const char *pathname
)
980 tcc_split_path(s
, &s
->sysinclude_paths
, &s
->nb_sysinclude_paths
, pathname
);
984 /* add/update a 'DLLReference', Just find if level == -1 */
985 ST_FUNC DLLReference
*tcc_add_dllref(TCCState
*s1
, const char *dllname
, int level
)
987 DLLReference
*ref
= NULL
;
989 for (i
= 0; i
< s1
->nb_loaded_dlls
; i
++)
990 if (0 == strcmp(s1
->loaded_dlls
[i
]->name
, dllname
)) {
991 ref
= s1
->loaded_dlls
[i
];
997 if (level
< ref
->level
)
1002 ref
= tcc_mallocz(sizeof(DLLReference
) + strlen(dllname
));
1003 strcpy(ref
->name
, dllname
);
1004 dynarray_add(&s1
->loaded_dlls
, &s1
->nb_loaded_dlls
, ref
);
1006 ref
->index
= s1
->nb_loaded_dlls
;
1010 /* OpenBSD: choose latest from libxxx.so.x.y versions */
1011 #if defined TARGETOS_OpenBSD && !defined _WIN32
1013 static int tcc_glob_so(TCCState
*s1
, const char *pattern
, char *buf
, int size
)
1018 int i
, v
, v1
, v2
, v3
;
1020 star
= strchr(pattern
, '*');
1021 if (!star
|| glob(pattern
, 0, NULL
, &g
))
1023 for (v
= -1, i
= 0; i
< g
.gl_pathc
; ++i
) {
1025 if (2 != sscanf(p
+ (star
- pattern
), "%d.%d.%d", &v1
, &v2
, &v3
))
1027 if ((v1
= v1
* 1000 + v2
) > v
)
1028 v
= v1
, pstrcpy(buf
, size
, p
);
1035 ST_FUNC
int tcc_add_file_internal(TCCState
*s1
, const char *filename
, int flags
)
1039 #if defined TARGETOS_OpenBSD && !defined _WIN32
1041 if (tcc_glob_so(s1
, filename
, buf
, sizeof buf
) >= 0)
1045 /* ignore binary files with -E */
1046 if (s1
->output_type
== TCC_OUTPUT_PREPROCESS
1047 && (flags
& AFF_TYPE_BIN
))
1051 fd
= _tcc_open(s1
, filename
);
1053 if (flags
& AFF_PRINT_ERROR
)
1054 tcc_error_noabort("file '%s' not found", filename
);
1058 s1
->current_filename
= filename
;
1059 if (flags
& AFF_TYPE_BIN
) {
1063 obj_type
= tcc_object_type(fd
, &ehdr
);
1064 lseek(fd
, 0, SEEK_SET
);
1068 case AFF_BINTYPE_REL
:
1069 ret
= tcc_load_object_file(s1
, fd
, 0);
1072 case AFF_BINTYPE_AR
:
1073 ret
= tcc_load_archive(s1
, fd
, !(flags
& AFF_WHOLE_ARCHIVE
));
1076 #ifdef TCC_TARGET_PE
1078 ret
= pe_load_file(s1
, fd
, filename
);
1081 #elif defined TCC_TARGET_MACHO
1082 case AFF_BINTYPE_DYN
:
1084 if (s1
->output_type
== TCC_OUTPUT_MEMORY
) {
1085 #ifdef TCC_IS_NATIVE
1087 const char* soname
= filename
;
1088 if (obj_type
!= AFF_BINTYPE_DYN
)
1089 soname
= macho_tbd_soname(filename
);
1090 dl
= dlopen(soname
, RTLD_GLOBAL
| RTLD_LAZY
);
1092 tcc_add_dllref(s1
, soname
, 0)->handle
= dl
, ret
= 0;
1093 if (filename
!= soname
)
1094 tcc_free((void *)soname
);
1096 } else if (obj_type
== AFF_BINTYPE_DYN
) {
1097 ret
= macho_load_dll(s1
, fd
, filename
, (flags
& AFF_REFERENCED_DLL
) != 0);
1099 ret
= macho_load_tbd(s1
, fd
, filename
, (flags
& AFF_REFERENCED_DLL
) != 0);
1104 const char *ext
= tcc_fileextension(filename
);
1105 if (!strcmp(ext
, ".tbd"))
1106 goto case_dyn_or_tbd
;
1107 if (!strcmp(ext
, ".dylib")) {
1108 obj_type
= AFF_BINTYPE_DYN
;
1109 goto case_dyn_or_tbd
;
1115 case AFF_BINTYPE_DYN
:
1116 if (s1
->output_type
== TCC_OUTPUT_MEMORY
) {
1117 #ifdef TCC_IS_NATIVE
1118 void* dl
= dlopen(filename
, RTLD_GLOBAL
| RTLD_LAZY
);
1120 tcc_add_dllref(s1
, filename
, 0)->handle
= dl
, ret
= 0;
1123 ret
= tcc_load_dll(s1
, fd
, filename
, (flags
& AFF_REFERENCED_DLL
) != 0);
1127 /* as GNU ld, consider it is an ld script if not recognized */
1128 ret
= tcc_load_ldscript(s1
, fd
);
1131 #endif /* pe / macos / unix */
1135 tcc_error_noabort("%s: unrecognized file type", filename
);
1138 #ifdef TCC_TARGET_COFF
1139 case AFF_BINTYPE_C67
:
1140 ret
= tcc_load_coff(s1
, fd
);
1146 /* update target deps */
1147 dynarray_add(&s1
->target_deps
, &s1
->nb_target_deps
, tcc_strdup(filename
));
1148 ret
= tcc_compile(s1
, flags
, filename
, fd
);
1150 s1
->current_filename
= NULL
;
1154 LIBTCCAPI
int tcc_add_file(TCCState
*s
, const char *filename
)
1156 int filetype
= s
->filetype
;
1157 if (0 == (filetype
& AFF_TYPE_MASK
)) {
1158 /* use a file extension to detect a filetype */
1159 const char *ext
= tcc_fileextension(filename
);
1162 if (!strcmp(ext
, "S"))
1163 filetype
= AFF_TYPE_ASMPP
;
1164 else if (!strcmp(ext
, "s"))
1165 filetype
= AFF_TYPE_ASM
;
1166 else if (!PATHCMP(ext
, "c")
1167 || !PATHCMP(ext
, "h")
1168 || !PATHCMP(ext
, "i"))
1169 filetype
= AFF_TYPE_C
;
1171 filetype
|= AFF_TYPE_BIN
;
1173 filetype
= AFF_TYPE_C
;
1176 return tcc_add_file_internal(s
, filename
, filetype
| AFF_PRINT_ERROR
);
1179 LIBTCCAPI
int tcc_add_library_path(TCCState
*s
, const char *pathname
)
1181 tcc_split_path(s
, &s
->library_paths
, &s
->nb_library_paths
, pathname
);
1185 static int tcc_add_library_internal(TCCState
*s
, const char *fmt
,
1186 const char *filename
, int flags
, char **paths
, int nb_paths
)
1191 for(i
= 0; i
< nb_paths
; i
++) {
1192 snprintf(buf
, sizeof(buf
), fmt
, paths
[i
], filename
);
1193 if (tcc_add_file_internal(s
, buf
, flags
| AFF_TYPE_BIN
) == 0)
1199 /* find and load a dll. Return non zero if not found */
1200 ST_FUNC
int tcc_add_dll(TCCState
*s
, const char *filename
, int flags
)
1202 return tcc_add_library_internal(s
, "%s/%s", filename
, flags
,
1203 s
->library_paths
, s
->nb_library_paths
);
1206 /* find [cross-]libtcc1.a and tcc helper objects in library path */
1207 ST_FUNC
void tcc_add_support(TCCState
*s1
, const char *filename
)
1210 if (CONFIG_TCC_CROSSPREFIX
[0])
1211 filename
= strcat(strcpy(buf
, CONFIG_TCC_CROSSPREFIX
), filename
);
1212 if (tcc_add_dll(s1
, filename
, 0) < 0)
1213 tcc_error_noabort("%s not found", filename
);
1216 #if !defined TCC_TARGET_PE && !defined TCC_TARGET_MACHO
1217 ST_FUNC
int tcc_add_crt(TCCState
*s1
, const char *filename
)
1219 if (-1 == tcc_add_library_internal(s1
, "%s/%s",
1220 filename
, 0, s1
->crt_paths
, s1
->nb_crt_paths
))
1221 tcc_error_noabort("file '%s' not found", filename
);
1226 /* the library name is the same as the argument of the '-l' option */
1227 LIBTCCAPI
int tcc_add_library(TCCState
*s
, const char *libraryname
)
1229 #if defined TCC_TARGET_PE
1230 static const char * const libs
[] = { "%s/%s.def", "%s/lib%s.def", "%s/%s.dll", "%s/lib%s.dll", "%s/lib%s.a", NULL
};
1231 const char * const *pp
= s
->static_link
? libs
+ 4 : libs
;
1232 #elif defined TCC_TARGET_MACHO
1233 static const char * const libs
[] = { "%s/lib%s.dylib", "%s/lib%s.tbd", "%s/lib%s.a", NULL
};
1234 const char * const *pp
= s
->static_link
? libs
+ 2 : libs
;
1235 #elif defined TARGETOS_OpenBSD
1236 static const char * const libs
[] = { "%s/lib%s.so.*", "%s/lib%s.a", NULL
};
1237 const char * const *pp
= s
->static_link
? libs
+ 1 : libs
;
1239 static const char * const libs
[] = { "%s/lib%s.so", "%s/lib%s.a", NULL
};
1240 const char * const *pp
= s
->static_link
? libs
+ 1 : libs
;
1242 int flags
= s
->filetype
& AFF_WHOLE_ARCHIVE
;
1244 if (0 == tcc_add_library_internal(s
, *pp
,
1245 libraryname
, flags
, s
->library_paths
, s
->nb_library_paths
))
1252 PUB_FUNC
int tcc_add_library_err(TCCState
*s1
, const char *libname
)
1254 int ret
= tcc_add_library(s1
, libname
);
1256 tcc_error_noabort("library '%s' not found", libname
);
1260 /* handle #pragma comment(lib,) */
1261 ST_FUNC
void tcc_add_pragma_libs(TCCState
*s1
)
1264 for (i
= 0; i
< s1
->nb_pragma_libs
; i
++)
1265 tcc_add_library_err(s1
, s1
->pragma_libs
[i
]);
1268 LIBTCCAPI
int tcc_add_symbol(TCCState
*s1
, const char *name
, const void *val
)
1270 #ifdef TCC_TARGET_PE
1271 /* On x86_64 'val' might not be reachable with a 32bit offset.
1272 So it is handled here as if it were in a DLL. */
1273 pe_putimport(s1
, 0, name
, (uintptr_t)val
);
1276 if (s1
->leading_underscore
) {
1278 pstrcpy(buf
+ 1, sizeof(buf
) - 1, name
);
1281 set_global_sym(s1
, name
, NULL
, (addr_t
)(uintptr_t)val
); /* NULL: SHN_ABS */
1286 LIBTCCAPI
void tcc_set_lib_path(TCCState
*s
, const char *path
)
1288 tcc_free(s
->tcc_lib_path
);
1289 s
->tcc_lib_path
= tcc_strdup(path
);
1292 /********************************************************/
1293 /* options parser */
1295 static int strstart(const char *val
, const char **str
)
1310 /* Like strstart, but automatically takes into account that ld options can
1312 * - start with double or single dash (e.g. '--soname' or '-soname')
1313 * - arguments can be given as separate or after '=' (e.g. '-Wl,-soname,x.so'
1314 * or '-Wl,-soname=x.so')
1316 * you provide `val` always in 'option[=]' form (no leading -)
1318 static int link_option(const char *str
, const char *val
, const char **ptr
)
1323 /* there should be 1 or 2 dashes */
1329 /* then str & val should match (potentially up to '=') */
1336 if (strstart("no-", &p
))
1340 while (*q
!= '\0' && *q
!= '=') {
1347 /* '=' near eos means ',' or '=' is ok */
1351 if (*p
!= ',' && *p
!= '=')
1361 static const char *skip_linker_arg(const char **str
)
1363 const char *s1
= *str
;
1364 const char *s2
= strchr(s1
, ',');
1365 *str
= s2
? s2
++ : (s2
= s1
+ strlen(s1
));
1369 static void copy_linker_arg(char **pp
, const char *s
, int sep
)
1375 p
[l
= strlen(p
)] = sep
, ++l
;
1376 skip_linker_arg(&q
);
1377 pstrncpy(l
+ (*pp
= tcc_realloc(p
, q
- s
+ l
+ 1)), s
, q
- s
);
1380 static void args_parser_add_file(TCCState
*s
, const char* filename
, int filetype
)
1382 struct filespec
*f
= tcc_malloc(sizeof *f
+ strlen(filename
));
1384 strcpy(f
->name
, filename
);
1385 dynarray_add(&s
->files
, &s
->nb_files
, f
);
1388 /* set linker options */
1389 static int tcc_set_linker(TCCState
*s
, const char *option
)
1394 const char *p
= NULL
;
1399 if (link_option(option
, "Bsymbolic", &p
)) {
1401 } else if (link_option(option
, "nostdlib", &p
)) {
1403 } else if (link_option(option
, "e=", &p
)
1404 || link_option(option
, "entry=", &p
)) {
1405 copy_linker_arg(&s
->elf_entryname
, p
, 0);
1406 } else if (link_option(option
, "fini=", &p
)) {
1407 copy_linker_arg(&s
->fini_symbol
, p
, 0);
1409 } else if (link_option(option
, "image-base=", &p
)
1410 || link_option(option
, "Ttext=", &p
)) {
1411 s
->text_addr
= strtoull(p
, &end
, 16);
1412 s
->has_text_addr
= 1;
1413 } else if (link_option(option
, "init=", &p
)) {
1414 copy_linker_arg(&s
->init_symbol
, p
, 0);
1416 } else if (link_option(option
, "Map=", &p
)) {
1417 copy_linker_arg(&s
->mapfile
, p
, 0);
1419 } else if (link_option(option
, "oformat=", &p
)) {
1420 #if defined(TCC_TARGET_PE)
1421 if (strstart("pe-", &p
)) {
1423 if (strstart("elf64-", &p
)) {
1425 if (strstart("elf32-", &p
)) {
1427 s
->output_format
= TCC_OUTPUT_FORMAT_ELF
;
1428 } else if (!strcmp(p
, "binary")) {
1429 s
->output_format
= TCC_OUTPUT_FORMAT_BINARY
;
1430 #ifdef TCC_TARGET_COFF
1431 } else if (!strcmp(p
, "coff")) {
1432 s
->output_format
= TCC_OUTPUT_FORMAT_COFF
;
1437 } else if (link_option(option
, "as-needed", &p
)) {
1439 } else if (link_option(option
, "O", &p
)) {
1441 } else if (link_option(option
, "export-all-symbols", &p
)) {
1443 } else if (link_option(option
, "export-dynamic", &p
)) {
1445 } else if (link_option(option
, "rpath=", &p
)) {
1446 copy_linker_arg(&s
->rpath
, p
, ':');
1447 } else if (link_option(option
, "enable-new-dtags", &p
)) {
1448 s
->enable_new_dtags
= 1;
1449 } else if (link_option(option
, "section-alignment=", &p
)) {
1450 s
->section_align
= strtoul(p
, &end
, 16);
1451 } else if (link_option(option
, "soname=", &p
)) {
1452 copy_linker_arg(&s
->soname
, p
, 0);
1453 #ifdef TCC_TARGET_PE
1454 } else if (link_option(option
, "large-address-aware", &p
)) {
1455 s
->pe_characteristics
|= 0x20;
1456 } else if (link_option(option
, "file-alignment=", &p
)) {
1457 s
->pe_file_align
= strtoul(p
, &end
, 16);
1458 } else if (link_option(option
, "stack=", &p
)) {
1459 s
->pe_stack_size
= strtoul(p
, &end
, 10);
1460 } else if (link_option(option
, "subsystem=", &p
)) {
1461 #if defined(TCC_TARGET_I386) || defined(TCC_TARGET_X86_64)
1462 if (!strcmp(p
, "native")) {
1463 s
->pe_subsystem
= 1;
1464 } else if (!strcmp(p
, "console")) {
1465 s
->pe_subsystem
= 3;
1466 } else if (!strcmp(p
, "gui") || !strcmp(p
, "windows")) {
1467 s
->pe_subsystem
= 2;
1468 } else if (!strcmp(p
, "posix")) {
1469 s
->pe_subsystem
= 7;
1470 } else if (!strcmp(p
, "efiapp")) {
1471 s
->pe_subsystem
= 10;
1472 } else if (!strcmp(p
, "efiboot")) {
1473 s
->pe_subsystem
= 11;
1474 } else if (!strcmp(p
, "efiruntime")) {
1475 s
->pe_subsystem
= 12;
1476 } else if (!strcmp(p
, "efirom")) {
1477 s
->pe_subsystem
= 13;
1478 #elif defined(TCC_TARGET_ARM)
1479 if (!strcmp(p
, "wince")) {
1480 s
->pe_subsystem
= 9;
1485 #ifdef TCC_TARGET_MACHO
1486 } else if (link_option(option
, "all_load", &p
)) {
1487 s
->filetype
|= AFF_WHOLE_ARCHIVE
;
1488 } else if (link_option(option
, "force_load", &p
)) {
1489 s
->filetype
|= AFF_WHOLE_ARCHIVE
;
1490 args_parser_add_file(s
, p
, AFF_TYPE_LIB
| (s
->filetype
& ~AFF_TYPE_MASK
));
1492 } else if (link_option(option
, "single_module", &p
)) {
1495 } else if (ret
= link_option(option
, "?whole-archive", &p
), ret
) {
1497 s
->filetype
|= AFF_WHOLE_ARCHIVE
;
1499 s
->filetype
&= ~AFF_WHOLE_ARCHIVE
;
1500 } else if (link_option(option
, "z=", &p
)) {
1506 tcc_error("unsupported linker option '%s'", option
);
1509 tcc_warning_c(warn_unsupported
)("unsupported linker option '%s'", option
);
1510 option
= skip_linker_arg(&p
);
1515 typedef struct TCCOption
{
1522 TCC_OPTION_ignored
= 0,
1539 TCC_OPTION_dumpversion
,
1551 TCC_OPTION_mfloat_abi
,
1555 TCC_OPTION_iwithprefix
,
1557 TCC_OPTION_nostdinc
,
1558 TCC_OPTION_nostdlib
,
1559 TCC_OPTION_print_search_dirs
,
1560 TCC_OPTION_rdynamic
,
1573 TCC_OPTION_dynamiclib
,
1574 TCC_OPTION_flat_namespace
,
1575 TCC_OPTION_two_levelnamespace
,
1576 TCC_OPTION_undefined
,
1577 TCC_OPTION_install_name
,
1578 TCC_OPTION_compatibility_version
,
1579 TCC_OPTION_current_version
,
1582 #define TCC_OPTION_HAS_ARG 0x0001
1583 #define TCC_OPTION_NOSEP 0x0002 /* cannot have space before option and arg */
1585 static const TCCOption tcc_options
[] = {
1586 { "h", TCC_OPTION_HELP
, 0 },
1587 { "-help", TCC_OPTION_HELP
, 0 },
1588 { "?", TCC_OPTION_HELP
, 0 },
1589 { "hh", TCC_OPTION_HELP2
, 0 },
1590 { "v", TCC_OPTION_v
, TCC_OPTION_HAS_ARG
| TCC_OPTION_NOSEP
},
1591 { "-version", TCC_OPTION_v
, 0 }, /* handle as verbose, also prints version*/
1592 { "I", TCC_OPTION_I
, TCC_OPTION_HAS_ARG
},
1593 { "D", TCC_OPTION_D
, TCC_OPTION_HAS_ARG
},
1594 { "U", TCC_OPTION_U
, TCC_OPTION_HAS_ARG
},
1595 { "P", TCC_OPTION_P
, TCC_OPTION_HAS_ARG
| TCC_OPTION_NOSEP
},
1596 { "L", TCC_OPTION_L
, TCC_OPTION_HAS_ARG
},
1597 { "B", TCC_OPTION_B
, TCC_OPTION_HAS_ARG
},
1598 { "l", TCC_OPTION_l
, TCC_OPTION_HAS_ARG
},
1599 { "bench", TCC_OPTION_bench
, 0 },
1600 #ifdef CONFIG_TCC_BACKTRACE
1601 { "bt", TCC_OPTION_bt
, TCC_OPTION_HAS_ARG
| TCC_OPTION_NOSEP
},
1603 #ifdef CONFIG_TCC_BCHECK
1604 { "b", TCC_OPTION_b
, 0 },
1606 { "g", TCC_OPTION_g
, TCC_OPTION_HAS_ARG
| TCC_OPTION_NOSEP
},
1607 #ifdef TCC_TARGET_MACHO
1608 { "compatibility_version", TCC_OPTION_compatibility_version
, TCC_OPTION_HAS_ARG
},
1609 { "current_version", TCC_OPTION_current_version
, TCC_OPTION_HAS_ARG
},
1611 { "c", TCC_OPTION_c
, 0 },
1612 #ifdef TCC_TARGET_MACHO
1613 { "dynamiclib", TCC_OPTION_dynamiclib
, 0 },
1615 { "dumpversion", TCC_OPTION_dumpversion
, 0},
1616 { "d", TCC_OPTION_d
, TCC_OPTION_HAS_ARG
| TCC_OPTION_NOSEP
},
1617 { "static", TCC_OPTION_static
, 0 },
1618 { "std", TCC_OPTION_std
, TCC_OPTION_HAS_ARG
| TCC_OPTION_NOSEP
},
1619 { "shared", TCC_OPTION_shared
, 0 },
1620 { "soname", TCC_OPTION_soname
, TCC_OPTION_HAS_ARG
},
1621 { "o", TCC_OPTION_o
, TCC_OPTION_HAS_ARG
},
1622 { "pthread", TCC_OPTION_pthread
, 0},
1623 { "run", TCC_OPTION_run
, TCC_OPTION_HAS_ARG
| TCC_OPTION_NOSEP
},
1624 { "rdynamic", TCC_OPTION_rdynamic
, 0 },
1625 { "r", TCC_OPTION_r
, 0 },
1626 { "Wl,", TCC_OPTION_Wl
, TCC_OPTION_HAS_ARG
| TCC_OPTION_NOSEP
},
1627 { "Wp,", TCC_OPTION_Wp
, TCC_OPTION_HAS_ARG
| TCC_OPTION_NOSEP
},
1628 { "W", TCC_OPTION_W
, TCC_OPTION_HAS_ARG
| TCC_OPTION_NOSEP
},
1629 { "O", TCC_OPTION_O
, TCC_OPTION_HAS_ARG
| TCC_OPTION_NOSEP
},
1630 #ifdef TCC_TARGET_ARM
1631 { "mfloat-abi", TCC_OPTION_mfloat_abi
, TCC_OPTION_HAS_ARG
},
1633 { "m", TCC_OPTION_m
, TCC_OPTION_HAS_ARG
| TCC_OPTION_NOSEP
},
1634 #ifdef TCC_TARGET_MACHO
1635 { "flat_namespace", TCC_OPTION_flat_namespace
, 0 },
1637 { "f", TCC_OPTION_f
, TCC_OPTION_HAS_ARG
| TCC_OPTION_NOSEP
},
1638 { "isystem", TCC_OPTION_isystem
, TCC_OPTION_HAS_ARG
},
1639 { "include", TCC_OPTION_include
, TCC_OPTION_HAS_ARG
},
1640 { "nostdinc", TCC_OPTION_nostdinc
, 0 },
1641 { "nostdlib", TCC_OPTION_nostdlib
, 0 },
1642 { "print-search-dirs", TCC_OPTION_print_search_dirs
, 0 },
1643 { "w", TCC_OPTION_w
, 0 },
1644 { "E", TCC_OPTION_E
, 0},
1645 { "M", TCC_OPTION_M
, 0},
1646 { "MD", TCC_OPTION_MD
, 0},
1647 { "MF", TCC_OPTION_MF
, TCC_OPTION_HAS_ARG
},
1648 { "MM", TCC_OPTION_MM
, 0},
1649 { "MMD", TCC_OPTION_MMD
, 0},
1650 { "x", TCC_OPTION_x
, TCC_OPTION_HAS_ARG
},
1651 { "ar", TCC_OPTION_ar
, 0},
1652 #ifdef TCC_TARGET_PE
1653 { "impdef", TCC_OPTION_impdef
, 0},
1655 #ifdef TCC_TARGET_MACHO
1656 { "install_name", TCC_OPTION_install_name
, TCC_OPTION_HAS_ARG
},
1657 { "two_levelnamespace", TCC_OPTION_two_levelnamespace
, 0 },
1658 { "undefined", TCC_OPTION_undefined
, TCC_OPTION_HAS_ARG
},
1660 /* ignored (silently, except after -Wunsupported) */
1661 { "arch", 0, TCC_OPTION_HAS_ARG
},
1663 { "-param", 0, TCC_OPTION_HAS_ARG
},
1664 { "pedantic", 0, 0 },
1667 { "traditional", 0, 0 },
1671 typedef struct FlagDef
{
1677 #define WD_ALL 0x0001 /* warning is activated when using -Wall */
1678 #define FD_INVERT 0x0002 /* invert value before storing */
1680 static const FlagDef options_W
[] = {
1681 { offsetof(TCCState
, warn_all
), WD_ALL
, "all" },
1682 { offsetof(TCCState
, warn_error
), 0, "error" },
1683 { offsetof(TCCState
, warn_write_strings
), 0, "write-strings" },
1684 { offsetof(TCCState
, warn_unsupported
), 0, "unsupported" },
1685 { offsetof(TCCState
, warn_implicit_function_declaration
), WD_ALL
, "implicit-function-declaration" },
1686 { offsetof(TCCState
, warn_discarded_qualifiers
), WD_ALL
, "discarded-qualifiers" },
1690 static const FlagDef options_f
[] = {
1691 { offsetof(TCCState
, char_is_unsigned
), 0, "unsigned-char" },
1692 { offsetof(TCCState
, char_is_unsigned
), FD_INVERT
, "signed-char" },
1693 { offsetof(TCCState
, nocommon
), FD_INVERT
, "common" },
1694 { offsetof(TCCState
, leading_underscore
), 0, "leading-underscore" },
1695 { offsetof(TCCState
, ms_extensions
), 0, "ms-extensions" },
1696 { offsetof(TCCState
, dollars_in_identifiers
), 0, "dollars-in-identifiers" },
1697 { offsetof(TCCState
, test_coverage
), 0, "test-coverage" },
1701 static const FlagDef options_m
[] = {
1702 { offsetof(TCCState
, ms_bitfields
), 0, "ms-bitfields" },
1703 #ifdef TCC_TARGET_X86_64
1704 { offsetof(TCCState
, nosse
), FD_INVERT
, "sse" },
1709 static int set_flag(TCCState
*s
, const FlagDef
*flags
, const char *name
)
1711 int value
, mask
, ret
;
1716 r
= name
, value
= !strstart("no-", &r
), mask
= 0;
1718 /* when called with options_W, look for -W[no-]error=<option> */
1719 if ((flags
->flags
& WD_ALL
) && strstart("error=", &r
))
1720 value
= value
? WARN_ON
|WARN_ERR
: WARN_NOE
, mask
= WARN_ON
;
1722 for (ret
= -1, p
= flags
; p
->name
; ++p
) {
1724 if (strcmp(r
, p
->name
))
1727 if (0 == (p
->flags
& WD_ALL
))
1731 f
= (unsigned char *)s
+ p
->offset
;
1732 *f
= (*f
& mask
) | (value
^ !!(p
->flags
& FD_INVERT
));
1736 if (strcmp(r
, "all"))
1743 static int args_parser_make_argv(const char *r
, int *argc
, char ***argv
)
1748 while (c
= (unsigned char)*r
, c
&& c
<= ' ')
1754 while (c
= (unsigned char)*r
, c
) {
1756 if (c
== '\\' && (*r
== '"' || *r
== '\\')) {
1758 } else if (c
== '"') {
1761 } else if (q
== 0 && c
<= ' ') {
1767 //printf("<%s>\n", str.data), fflush(stdout);
1768 dynarray_add(argv
, argc
, tcc_strdup(str
.data
));
1775 /* read list file */
1776 static void args_parser_listfile(TCCState
*s
,
1777 const char *filename
, int optind
, int *pargc
, char ***pargv
)
1785 fd
= open(filename
, O_RDONLY
| O_BINARY
);
1787 tcc_error("listfile '%s' not found", filename
);
1789 p
= tcc_load_text(fd
);
1790 for (i
= 0; i
< *pargc
; ++i
)
1792 args_parser_make_argv(p
, &argc
, &argv
);
1794 dynarray_add(&argv
, &argc
, tcc_strdup((*pargv
)[i
]));
1797 dynarray_reset(&s
->argv
, &s
->argc
);
1798 *pargc
= s
->argc
= argc
, *pargv
= s
->argv
= argv
;
1801 #if defined TCC_TARGET_MACHO
1802 static uint32_t parse_version(TCCState
*s1
, const char *version
)
1809 a
= strtoul(version
, &last
, 10);
1811 b
= strtoul(&last
[1], &last
, 10);
1813 c
= strtoul(&last
[1], &last
, 10);
1815 if (*last
|| a
> 0xffff || b
> 0xff || c
> 0xff)
1816 tcc_error("version a.b.c not correct: %s", version
);
1817 return (a
<< 16) | (b
<< 8) | c
;
1821 PUB_FUNC
int tcc_parse_args(TCCState
*s
, int *pargc
, char ***pargv
, int optind
)
1824 const TCCOption
*popt
;
1825 const char *optarg
, *r
;
1826 const char *run
= NULL
;
1828 CString linker_arg
; /* collect -Wl options */
1829 int tool
= 0, arg_start
= 0, noaction
= optind
;
1830 char **argv
= *pargv
;
1833 cstr_new(&linker_arg
);
1835 while (optind
< argc
) {
1837 if (r
[0] == '@' && r
[1] != '\0') {
1838 args_parser_listfile(s
, r
+ 1, optind
, &argc
, &argv
);
1843 if (r
[0] == '-' && r
[1] == 'v' && r
[2] == 0)
1848 if (r
[0] != '-' || r
[1] == '\0') {
1849 if (r
[0] != '@') /* allow "tcc file(s) -run @ args ..." */
1850 args_parser_add_file(s
, r
, s
->filetype
);
1852 tcc_set_options(s
, run
);
1853 arg_start
= optind
- 1;
1859 /* find option in table */
1860 for(popt
= tcc_options
; ; ++popt
) {
1861 const char *p1
= popt
->name
;
1862 const char *r1
= r
+ 1;
1864 tcc_error("invalid option -- '%s'", r
);
1865 if (!strstart(p1
, &r1
))
1868 if (popt
->flags
& TCC_OPTION_HAS_ARG
) {
1869 if (*r1
== '\0' && !(popt
->flags
& TCC_OPTION_NOSEP
)) {
1872 tcc_error("argument to '%s' is missing", r
);
1873 optarg
= argv
[optind
++];
1875 } else if (*r1
!= '\0')
1880 switch(popt
->index
) {
1881 case TCC_OPTION_HELP
:
1884 case TCC_OPTION_HELP2
:
1888 tcc_add_include_path(s
, optarg
);
1891 tcc_define_symbol(s
, optarg
, NULL
);
1894 tcc_undefine_symbol(s
, optarg
);
1897 tcc_add_library_path(s
, optarg
);
1900 /* set tcc utilities path (mainly for tcc development) */
1901 tcc_set_lib_path(s
, optarg
);
1905 args_parser_add_file(s
, optarg
, AFF_TYPE_LIB
| (s
->filetype
& ~AFF_TYPE_MASK
));
1908 case TCC_OPTION_pthread
:
1909 s
->option_pthread
= 1;
1911 case TCC_OPTION_bench
:
1914 #ifdef CONFIG_TCC_BACKTRACE
1916 s
->rt_num_callers
= atoi(optarg
);
1917 s
->do_backtrace
= 1;
1919 s
->dwarf
= DWARF_VERSION
;
1922 #ifdef CONFIG_TCC_BCHECK
1924 s
->do_bounds_check
= 1;
1925 s
->do_backtrace
= 1;
1927 s
->dwarf
= DWARF_VERSION
;
1932 s
->dwarf
= DWARF_VERSION
;
1934 if (strstart("dwarf", &optarg
))
1935 s
->dwarf
= (*optarg
) ? (0 - atoi(optarg
)) : DEFAULT_DWARF_VERSION
;
1941 tcc_warning("-%s: overriding compiler action already specified", popt
->name
);
1947 else if (*optarg
== 'M')
1949 else if (*optarg
== 't')
1951 else if (isnum(*optarg
))
1952 s
->g_debug
|= atoi(optarg
);
1954 goto unsupported_option
;
1956 case TCC_OPTION_static
:
1959 case TCC_OPTION_std
:
1960 if (strcmp(optarg
, "=c11") == 0)
1961 s
->cversion
= 201112;
1963 case TCC_OPTION_shared
:
1965 goto set_output_type
;
1966 case TCC_OPTION_soname
:
1967 s
->soname
= tcc_strdup(optarg
);
1971 tcc_warning("multiple -o option");
1972 tcc_free(s
->outfile
);
1974 s
->outfile
= tcc_strdup(optarg
);
1977 /* generate a .o merging several output files */
1980 goto set_output_type
;
1981 case TCC_OPTION_isystem
:
1982 tcc_add_sysinclude_path(s
, optarg
);
1984 case TCC_OPTION_include
:
1985 cstr_printf(&s
->cmdline_incl
, "#include \"%s\"\n", optarg
);
1987 case TCC_OPTION_nostdinc
:
1990 case TCC_OPTION_nostdlib
:
1993 case TCC_OPTION_run
:
1994 #ifndef TCC_IS_NATIVE
1995 tcc_error("-run is not available in a cross compiler");
1998 x
= TCC_OUTPUT_MEMORY
;
1999 goto set_output_type
;
2001 do ++s
->verbose
; while (*optarg
++ == 'v');
2005 if (set_flag(s
, options_f
, optarg
) < 0)
2006 goto unsupported_option
;
2008 #ifdef TCC_TARGET_ARM
2009 case TCC_OPTION_mfloat_abi
:
2010 /* tcc doesn't support soft float yet */
2011 if (!strcmp(optarg
, "softfp")) {
2012 s
->float_abi
= ARM_SOFTFP_FLOAT
;
2013 } else if (!strcmp(optarg
, "hard"))
2014 s
->float_abi
= ARM_HARD_FLOAT
;
2016 tcc_error("unsupported float abi '%s'", optarg
);
2020 if (set_flag(s
, options_m
, optarg
) < 0) {
2021 if (x
= atoi(optarg
), x
!= 32 && x
!= 64)
2022 goto unsupported_option
;
2023 if (PTR_SIZE
!= x
/8)
2030 if (optarg
[0] && set_flag(s
, options_W
, optarg
) < 0)
2031 goto unsupported_option
;
2036 case TCC_OPTION_rdynamic
:
2040 if (linker_arg
.size
)
2041 --linker_arg
.size
, cstr_ccat(&linker_arg
, ',');
2042 cstr_cat(&linker_arg
, optarg
, 0);
2043 if (tcc_set_linker(s
, linker_arg
.data
))
2044 cstr_free(&linker_arg
);
2050 x
= TCC_OUTPUT_PREPROCESS
;
2051 goto set_output_type
;
2053 s
->Pflag
= atoi(optarg
) + 1;
2056 s
->include_sys_deps
= 1;
2060 if(!s
->deps_outfile
)
2061 s
->deps_outfile
= tcc_strdup("-");
2063 case TCC_OPTION_MMD
:
2068 s
->include_sys_deps
= 1;
2071 s
->deps_outfile
= tcc_strdup(optarg
);
2073 case TCC_OPTION_dumpversion
:
2074 printf ("%s\n", TCC_VERSION
);
2081 else if (*optarg
== 'a')
2083 else if (*optarg
== 'b')
2085 else if (*optarg
== 'n')
2088 tcc_warning("unsupported language '%s'", optarg
);
2089 s
->filetype
= x
| (s
->filetype
& ~AFF_TYPE_MASK
);
2092 s
->optimize
= atoi(optarg
);
2094 case TCC_OPTION_print_search_dirs
:
2097 case TCC_OPTION_impdef
:
2100 #if defined TCC_TARGET_MACHO
2101 case TCC_OPTION_dynamiclib
:
2103 goto set_output_type
;
2104 case TCC_OPTION_flat_namespace
:
2106 case TCC_OPTION_two_levelnamespace
:
2108 case TCC_OPTION_undefined
:
2110 case TCC_OPTION_install_name
:
2111 s
->install_name
= tcc_strdup(optarg
);
2113 case TCC_OPTION_compatibility_version
:
2114 s
->compatibility_version
= parse_version(s
, optarg
);
2116 case TCC_OPTION_current_version
:
2117 s
->current_version
= parse_version(s
, optarg
);;
2123 arg_start
= optind
- 1;
2124 if (arg_start
!= noaction
)
2125 tcc_error("cannot parse %s here", r
);
2130 tcc_warning_c(warn_unsupported
)("unsupported option '%s'", r
);
2134 if (linker_arg
.size
) {
2135 r
= linker_arg
.data
;
2138 *pargc
= argc
- arg_start
;
2139 *pargv
= argv
+ arg_start
;
2142 if (optind
!= noaction
)
2144 if (s
->verbose
== 2)
2145 return OPT_PRINT_DIRS
;
2151 LIBTCCAPI
void tcc_set_options(TCCState
*s
, const char *r
)
2155 args_parser_make_argv(r
, &argc
, &argv
);
2156 tcc_parse_args(s
, &argc
, &argv
, 0);
2157 dynarray_reset(&argv
, &argc
);
2160 PUB_FUNC
void tcc_print_stats(TCCState
*s1
, unsigned total_time
)
2164 if (total_bytes
< 1)
2166 fprintf(stderr
, "* %d idents, %d lines, %d bytes\n"
2167 "* %0.3f s, %u lines/s, %0.1f MB/s\n",
2168 total_idents
, total_lines
, total_bytes
,
2169 (double)total_time
/1000,
2170 (unsigned)total_lines
*1000/total_time
,
2171 (double)total_bytes
/1000/total_time
);
2172 fprintf(stderr
, "* text %d, data.rw %d, data.ro %d, bss %d bytes\n",
2173 s1
->total_output
[0],
2174 s1
->total_output
[1],
2175 s1
->total_output
[2],
2179 fprintf(stderr
, "* %d bytes memory used\n", mem_max_size
);