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
39 # include <sys/time.h>
40 # ifndef CONFIG_TCC_STATIC
43 /* XXX: need to define this to use them in non ISOC99 context */
44 extern float strtof (const char *__nptr
, char **__endptr
);
45 extern long double strtold (const char *__nptr
, char **__endptr
);
47 #else /* on _WIN32: */
49 # include <io.h> /* open, close etc. */
50 # include <direct.h> /* getcwd */
54 # define inline __inline
55 # define inp next_inp /* inp is an intrinsic on msvc */
56 # define snprintf _snprintf
57 # define vsnprintf _vsnprintf
59 # define strtold (long double)strtod
60 # define strtof (float)strtod
61 # define strtoll _strtoi64
62 # define strtoull _strtoui64
65 # define LIBTCCAPI __declspec(dllexport)
66 # define PUB_FUNC LIBTCCAPI
69 # pragma warning (disable : 4244) // conversion from 'uint64_t' to 'int', possible loss of data
70 # pragma warning (disable : 4267) // conversion from 'size_t' to 'int', possible loss of data
71 # pragma warning (disable : 4996) // The POSIX name for this item is deprecated. Instead, use the ISO C and C++ conformant name
72 # pragma warning (disable : 4018) // signed/unsigned mismatch
73 # pragma warning (disable : 4146) // unary minus operator applied to unsigned type, result still unsigned
74 # define ssize_t intptr_t
75 # define __attribute__(x) __declspec x
76 # define aligned align
79 # undef CONFIG_TCC_STATIC
87 # define NORETURN __attribute__ ((noreturn))
88 #elif defined _MSC_VER
89 # define NORETURN __declspec(noreturn)
95 # define IS_DIRSEP(c) (c == '/' || c == '\\')
96 # define IS_ABSPATH(p) (IS_DIRSEP(p[0]) || (p[0] && p[1] == ':' && IS_DIRSEP(p[2])))
97 # define PATHCMP stricmp
99 # define IS_DIRSEP(c) (c == '/')
100 # define IS_ABSPATH(p) IS_DIRSEP(p[0])
101 # define PATHCMP strcmp
110 /* -------------------------------------------- */
113 /* #define PARSE_DEBUG */
114 /* preprocessor debug */
115 /* #define PP_DEBUG */
116 /* include file debug */
117 /* #define INC_DEBUG */
118 /* memory leak debug */
119 /* #define MEM_DEBUG */
120 /* assembler debug */
121 /* #define ASM_DEBUG */
123 /* target selection */
124 /* #define TCC_TARGET_I386 *//* i386 code generator */
125 /* #define TCC_TARGET_ARM *//* ARMv4 code generator */
126 /* #define TCC_TARGET_ARM64 *//* ARMv8 code generator */
127 /* #define TCC_TARGET_C67 *//* TMS320C67xx code generator */
128 /* #define TCC_TARGET_X86_64 *//* x86-64 code generator */
130 /* default target is I386 */
131 #if !defined(TCC_TARGET_I386) && !defined(TCC_TARGET_ARM) && \
132 !defined(TCC_TARGET_ARM64) && !defined(TCC_TARGET_C67) && \
133 !defined(TCC_TARGET_X86_64)
134 #define TCC_TARGET_I386
137 #if !defined(TCC_UCLIBC) && !defined(TCC_TARGET_ARM) && \
138 !defined(TCC_TARGET_ARM64) && !defined(TCC_TARGET_C67) && \
139 !defined(CONFIG_USE_LIBGCC) && !defined(TCC_MUSL)
140 #define CONFIG_TCC_BCHECK /* enable bound checking code */
143 /* define it to include assembler support */
144 #if !defined(TCC_TARGET_ARM) && !defined(TCC_TARGET_ARM64) && \
145 !defined(TCC_TARGET_C67)
146 #define CONFIG_TCC_ASM
149 /* object format selection */
150 #if defined(TCC_TARGET_C67)
151 #define TCC_TARGET_COFF
154 /* only native compiler supports -run */
155 #if defined _WIN32 == defined TCC_TARGET_PE
156 # if (defined __i386__ || defined _X86_) && defined TCC_TARGET_I386
157 # define TCC_IS_NATIVE
158 # elif (defined __x86_64__ || defined _AMD64_) && defined TCC_TARGET_X86_64
159 # define TCC_IS_NATIVE
160 # elif defined __arm__ && defined TCC_TARGET_ARM
161 # define TCC_IS_NATIVE
162 # elif defined __aarch64__ && defined TCC_TARGET_ARM64
163 # define TCC_IS_NATIVE
167 #if defined TCC_IS_NATIVE && !defined CONFIG_TCCBOOT
168 # define CONFIG_TCC_BACKTRACE
171 /* ------------ path configuration ------------ */
173 #ifndef CONFIG_SYSROOT
174 # define CONFIG_SYSROOT ""
176 #ifndef CONFIG_TCCDIR
177 # define CONFIG_TCCDIR "."
180 # define CONFIG_LDDIR "lib"
182 #ifdef CONFIG_TRIPLET
183 # define USE_TRIPLET(s) s "/" CONFIG_TRIPLET
184 # define ALSO_TRIPLET(s) USE_TRIPLET(s) ":" s
186 # define USE_TRIPLET(s) s
187 # define ALSO_TRIPLET(s) s
190 /* path to find crt1.o, crti.o and crtn.o */
191 #ifndef CONFIG_TCC_CRTPREFIX
192 # define CONFIG_TCC_CRTPREFIX USE_TRIPLET(CONFIG_SYSROOT "/usr/" CONFIG_LDDIR)
195 /* Below: {B} is substituted by CONFIG_TCCDIR (rsp. -B option) */
197 /* system include paths */
198 #ifndef CONFIG_TCC_SYSINCLUDEPATHS
199 # ifdef TCC_TARGET_PE
200 # define CONFIG_TCC_SYSINCLUDEPATHS "{B}/include;{B}/include/winapi"
202 # define CONFIG_TCC_SYSINCLUDEPATHS \
204 ":" ALSO_TRIPLET(CONFIG_SYSROOT "/usr/local/include") \
205 ":" ALSO_TRIPLET(CONFIG_SYSROOT "/usr/include")
209 /* library search paths */
210 #ifndef CONFIG_TCC_LIBPATHS
211 # ifdef TCC_TARGET_PE
212 # define CONFIG_TCC_LIBPATHS "{B}/lib"
214 # define CONFIG_TCC_LIBPATHS \
215 ALSO_TRIPLET(CONFIG_SYSROOT "/usr/" CONFIG_LDDIR) \
216 ":" ALSO_TRIPLET(CONFIG_SYSROOT "/" CONFIG_LDDIR) \
217 ":" ALSO_TRIPLET(CONFIG_SYSROOT "/usr/local/" CONFIG_LDDIR)
221 /* name of ELF interpreter */
222 #ifndef CONFIG_TCC_ELFINTERP
223 # if defined __FreeBSD__
224 # define CONFIG_TCC_ELFINTERP "/libexec/ld-elf.so.1"
225 # elif defined __FreeBSD_kernel__
226 # if defined(TCC_TARGET_X86_64)
227 # define CONFIG_TCC_ELFINTERP "/lib/ld-kfreebsd-x86-64.so.1"
229 # define CONFIG_TCC_ELFINTERP "/lib/ld.so.1"
231 # elif defined __DragonFly__
232 # define CONFIG_TCC_ELFINTERP "/usr/libexec/ld-elf.so.2"
233 # elif defined __NetBSD__
234 # define CONFIG_TCC_ELFINTERP "/usr/libexec/ld.elf_so"
235 # elif defined __GNU__
236 # define CONFIG_TCC_ELFINTERP "/lib/ld.so"
237 # elif defined(TCC_TARGET_PE)
238 # define CONFIG_TCC_ELFINTERP "-"
239 # elif defined(TCC_UCLIBC)
240 # define CONFIG_TCC_ELFINTERP "/lib/ld-uClibc.so.0" /* is there a uClibc for x86_64 ? */
241 # elif defined TCC_TARGET_ARM64
242 # if defined(TCC_MUSL)
243 # define CONFIG_TCC_ELFINTERP "/lib/ld-musl-aarch64.so.1"
245 # define CONFIG_TCC_ELFINTERP "/lib/ld-linux-aarch64.so.1"
247 # elif defined(TCC_TARGET_X86_64)
248 # if defined(TCC_MUSL)
249 # define CONFIG_TCC_ELFINTERP "/lib/ld-musl-x86_64.so.1"
251 # define CONFIG_TCC_ELFINTERP "/lib64/ld-linux-x86-64.so.2"
253 # elif !defined(TCC_ARM_EABI)
254 # if defined(TCC_MUSL)
255 # define CONFIG_TCC_ELFINTERP "/lib/ld-musl-arm.so.1"
257 # define CONFIG_TCC_ELFINTERP "/lib/ld-linux.so.2"
262 /* var elf_interp dans *-gen.c */
263 #ifdef CONFIG_TCC_ELFINTERP
264 # define DEFAULT_ELFINTERP(s) CONFIG_TCC_ELFINTERP
266 # define DEFAULT_ELFINTERP(s) default_elfinterp(s)
269 /* (target specific) libtcc1.a */
271 # define TCC_LIBTCC1 "libtcc1.a"
274 /* library to use with CONFIG_USE_LIBGCC instead of libtcc1.a */
275 #if defined CONFIG_USE_LIBGCC && !defined TCC_LIBGCC
276 #define TCC_LIBGCC USE_TRIPLET(CONFIG_SYSROOT "/" CONFIG_LDDIR) "/libgcc_s.so.1"
279 /* -------------------------------------------- */
285 #if defined(TCC_TARGET_ARM64) || defined(TCC_TARGET_X86_64)
286 # define ELFCLASSW ELFCLASS64
287 # define ElfW(type) Elf##64##_##type
288 # define ELFW(type) ELF##64##_##type
289 # define ElfW_Rel ElfW(Rela)
290 # define SHT_RELX SHT_RELA
291 # define REL_SECTION_FMT ".rela%s"
293 # define ELFCLASSW ELFCLASS32
294 # define ElfW(type) Elf##32##_##type
295 # define ELFW(type) ELF##32##_##type
296 # define ElfW_Rel ElfW(Rel)
297 # define SHT_RELX SHT_REL
298 # define REL_SECTION_FMT ".rel%s"
300 /* target address type */
301 #define addr_t ElfW(Addr)
303 /* -------------------------------------------- */
305 #ifndef PUB_FUNC /* functions used by tcc.c but not in libtcc.h */
310 #define ST_INLN static inline
311 #define ST_FUNC static
312 #define ST_DATA static
316 #define ST_DATA extern
319 #ifdef TCC_PROFILE /* profile all functions */
323 /* -------------------------------------------- */
324 /* include the target specific definitions */
326 #define TARGET_DEFS_ONLY
327 #ifdef TCC_TARGET_I386
328 # include "i386-gen.c"
329 # include "i386-link.c"
331 #ifdef TCC_TARGET_X86_64
332 # include "x86_64-gen.c"
333 # include "x86_64-link.c"
335 #ifdef TCC_TARGET_ARM
336 # include "arm-gen.c"
337 # include "arm-link.c"
339 #ifdef TCC_TARGET_ARM64
340 # include "arm64-gen.c"
341 # include "arm64-link.c"
343 #ifdef TCC_TARGET_C67
345 # include "c67-gen.c"
346 # include "c67-link.c"
348 #undef TARGET_DEFS_ONLY
350 /* -------------------------------------------- */
352 #define INCLUDE_STACK_SIZE 32
353 #define IFDEF_STACK_SIZE 64
354 #define VSTACK_SIZE 256
355 #define STRING_MAX_SIZE 1024
356 #define TOKSTR_MAX_SIZE 256
357 #define PACK_STACK_SIZE 8
359 #define TOK_HASH_SIZE 16384 /* must be a power of two */
360 #define TOK_ALLOC_INCR 512 /* must be a power of two */
361 #define TOK_MAX_SIZE 4 /* token max size in int unit when stored in string */
363 /* token symbol management */
364 typedef struct TokenSym
{
365 struct TokenSym
*hash_next
;
366 struct Sym
*sym_define
; /* direct pointer to define */
367 struct Sym
*sym_label
; /* direct pointer to label */
368 struct Sym
*sym_struct
; /* direct pointer to structure */
369 struct Sym
*sym_identifier
; /* direct pointer to identifier */
370 int tok
; /* token number */
376 typedef unsigned short nwchar_t
;
378 typedef int nwchar_t
;
381 typedef struct CString
{
382 int size
; /* size in bytes */
383 void *data
; /* either 'char *' or 'nwchar_t *' */
387 /* type definition */
388 typedef struct CType
{
394 typedef union CValue
{
403 int tab
[LDOUBLE_SIZE
/4];
407 typedef struct SValue
{
408 CType type
; /* type */
409 unsigned short r
; /* register + flags */
410 unsigned short r2
; /* second register, used for 'long long'
411 type. If not used, set to VT_CONST */
412 CValue c
; /* constant, if VT_CONST */
413 struct Sym
*sym
; /* symbol, if (VT_SYM | VT_CONST), or if
414 result of unary() for an identifier. */
419 func_call
: 3, /* calling convention (0..5), see below */
420 aligned
: 5, /* alignment as log2+1 (0 == unspecified) */
430 fill
: 7; // 7 bits left to fit well in union below
433 /* GNUC attribute definition */
434 typedef struct AttributeDef
{
436 struct Section
*section
;
437 int alias_target
; /* token */
438 int asm_label
; /* associated asm label */
441 /* symbol management */
443 int v
; /* symbol token */
445 int asm_label
; /* associated asm label */
446 int scope
; /* scope level for locals */
449 long r
; /* associated register or VT_CONST/VT_LOCAL and LVAL type */
453 long c
; /* associated number */
454 int *d
; /* define token stream */
456 CType type
; /* associated type */
458 struct Sym
*next
; /* next related symbol (for fields and anoms) */
459 long jnext
; /* next jump label */
461 struct Sym
*prev
; /* prev symbol in stack */
462 struct Sym
*prev_tok
; /* previous symbol for this token */
465 /* section definition */
466 /* XXX: use directly ELF structure for parameters ? */
467 /* special flag to indicate that the section should not be linked to
469 #define SHF_PRIVATE 0x80000000
471 /* special flag, too */
472 #define SECTION_ABS ((void *)1)
474 typedef struct Section
{
475 unsigned long data_offset
; /* current data offset */
476 unsigned char *data
; /* section data */
477 unsigned long data_allocated
; /* used for realloc() handling */
478 int sh_name
; /* elf section name (only used during output) */
479 int sh_num
; /* elf section number */
480 int sh_type
; /* elf section type */
481 int sh_flags
; /* elf section flags */
482 int sh_info
; /* elf section info */
483 int sh_addralign
; /* elf section alignment */
484 int sh_entsize
; /* elf entry size */
485 unsigned long sh_size
; /* section size (only used during output) */
486 addr_t sh_addr
; /* address at which the section is relocated */
487 unsigned long sh_offset
; /* file offset */
488 int nb_hashed_syms
; /* used to resize the hash table */
489 struct Section
*link
; /* link to another section */
490 struct Section
*reloc
; /* corresponding section for relocation, if any */
491 struct Section
*hash
; /* hash table for symbols */
492 struct Section
*prev
; /* previous section on section stack */
493 char name
[1]; /* section name */
496 typedef struct DLLReference
{
502 /* -------------------------------------------------- */
504 #define SYM_STRUCT 0x40000000 /* struct/union/enum symbol space */
505 #define SYM_FIELD 0x20000000 /* struct/union field symbol space */
506 #define SYM_FIRST_ANOM 0x10000000 /* first anonymous sym */
508 /* stored in 'Sym.c' field */
509 #define FUNC_NEW 1 /* ansi function prototype */
510 #define FUNC_OLD 2 /* old function prototype */
511 #define FUNC_ELLIPSIS 3 /* ansi function prototype with ... */
513 /* stored in 'Sym.r' field */
514 #define FUNC_CDECL 0 /* standard c call */
515 #define FUNC_STDCALL 1 /* pascal c call */
516 #define FUNC_FASTCALL1 2 /* first param in %eax */
517 #define FUNC_FASTCALL2 3 /* first parameters in %eax, %edx */
518 #define FUNC_FASTCALL3 4 /* first parameter in %eax, %edx, %ecx */
519 #define FUNC_FASTCALLW 5 /* first parameter in %ecx, %edx */
521 /* field 'Sym.t' for macros */
522 #define MACRO_OBJ 0 /* object like macro */
523 #define MACRO_FUNC 1 /* function like macro */
525 /* field 'Sym.r' for C labels */
526 #define LABEL_DEFINED 0 /* label is defined */
527 #define LABEL_FORWARD 1 /* label is forward defined */
528 #define LABEL_DECLARED 2 /* label is declared but never used */
530 /* type_decl() types */
531 #define TYPE_ABSTRACT 1 /* type without variable */
532 #define TYPE_DIRECT 2 /* type with variable */
534 #define IO_BUF_SIZE 8192
536 typedef struct BufferedFile
{
540 struct BufferedFile
*prev
;
541 int line_num
; /* current line number - here to simplify code */
542 int line_ref
; /* tcc -E: last printed line */
543 int ifndef_macro
; /* #ifndef macro / #endif search */
544 int ifndef_macro_saved
; /* saved ifndef_macro */
545 int *ifdef_stack_ptr
; /* ifdef_stack value at the start of the file */
546 int include_next_index
; /* next search path */
547 char filename
[1024]; /* filename */
548 char filename2
[1024]; /* filename not modified by # line directive */
549 unsigned char unget
[4];
550 unsigned char buffer
[1]; /* extra size for CH_EOB char */
553 #define CH_EOB '\\' /* end of buffer or '\0' char in file */
554 #define CH_EOF (-1) /* end of file */
556 /* parsing state (used to save parser state to reparse part of the
557 source several times) */
558 typedef struct ParseState
{
559 const int *macro_ptr
;
565 /* used to record tokens */
566 typedef struct TokenString
{
571 /* used to chain token-strings with begin/end_macro() */
572 struct TokenString
*prev
;
577 /* inline functions */
578 typedef struct InlineFunc
{
579 TokenString
*func_str
;
584 /* include file cache, used to find files faster and also to eliminate
585 inclusion if the include file is protected by #ifndef ... #endif */
586 typedef struct CachedInclude
{
589 int hash_next
; /* -1 if none */
590 char filename
[1]; /* path specified in #include */
593 #define CACHED_INCLUDES_HASH_SIZE 32
595 #ifdef CONFIG_TCC_ASM
596 typedef struct ExprValue
{
602 #define MAX_ASM_OPERANDS 30
603 typedef struct ASMOperand
{
604 int id
; /* GCC 3 optionnal identifier (0 if number only supported */
606 char asm_str
[16]; /* computed asm string for operand */
607 SValue
*vt
; /* C value of the expression */
608 int ref_index
; /* if >= 0, gives reference to a output constraint */
609 int input_index
; /* if >= 0, gives reference to an input constraint */
610 int priority
; /* priority, used to assign registers */
611 int reg
; /* if >= 0, register number used for this operand */
612 int is_llong
; /* true if double register value */
613 int is_memory
; /* true if memory operand */
614 int is_rw
; /* for '+' modifier */
618 /* extra symbol attributes (not in symbol table) */
624 #ifdef TCC_TARGET_ARM
625 unsigned char plt_thumb_stub
:1;
631 int verbose
; /* if true, display some information during compilation */
632 int nostdinc
; /* if true, no standard headers are added */
633 int nostdlib
; /* if true, no standard libraries are added */
634 int nocommon
; /* if true, do not use common symbols for .bss data */
635 int static_link
; /* if true, static linking is performed */
636 int rdynamic
; /* if true, all symbols are exported */
637 int symbolic
; /* if true, resolve symbols in the current module first */
638 int alacarte_link
; /* if true, only link in referenced objects from archive */
640 char *tcc_lib_path
; /* CONFIG_TCCDIR or -B option */
641 char *soname
; /* as specified on the command line (-soname) */
642 char *rpath
; /* as specified on the command line (-Wl,-rpath=) */
643 int enable_new_dtags
; /* ditto, (-Wl,--enable-new-dtags) */
645 /* output type, see TCC_OUTPUT_XXX */
647 /* output format, see TCC_OUTPUT_FORMAT_xxx */
650 /* C language options */
651 int char_is_unsigned
;
652 int leading_underscore
;
653 int ms_extensions
; /* allow nested named struct w/o identifier behave like unnamed */
654 int dollars_in_identifiers
; /* allows '$' char in indentifiers */
655 int ms_bitfields
; /* if true, emulate MS algorithm for aligning bitfields */
657 /* warning switches */
658 int warn_write_strings
;
659 int warn_unsupported
;
662 int warn_implicit_function_declaration
;
664 /* compile with debug symbol (and use them if error during execution) */
666 #ifdef CONFIG_TCC_BCHECK
667 /* compile with built-in memory and bounds checker */
670 #ifdef TCC_TARGET_ARM
671 enum float_abi float_abi
; /* float ABI of the generated code*/
674 addr_t text_addr
; /* address of text section */
677 unsigned section_align
; /* section alignment */
679 char *init_symbol
; /* symbols to call at load-time (not used currently) */
680 char *fini_symbol
; /* symbols to call at unload-time (not used currently) */
682 #ifdef TCC_TARGET_I386
683 int seg_size
; /* 32. Can be 16 with i386 assembler (.code16) */
685 #ifdef TCC_TARGET_X86_64
686 int nosse
; /* For -mno-sse support. */
689 /* array of all loaded dlls (including those referenced by loaded dlls) */
690 DLLReference
**loaded_dlls
;
694 char **include_paths
;
695 int nb_include_paths
;
697 char **sysinclude_paths
;
698 int nb_sysinclude_paths
;
701 char **library_paths
;
702 int nb_library_paths
;
704 /* crt?.o object path */
709 char **cmd_include_files
;
710 int nb_cmd_include_files
;
714 void (*error_func
)(void *opaque
, const char *msg
);
715 int error_set_jmp_enabled
;
716 jmp_buf error_jmp_buf
;
719 /* output file for preprocessing (-E) */
722 LINE_MACRO_OUTPUT_FORMAT_GCC
,
723 LINE_MACRO_OUTPUT_FORMAT_NONE
,
724 LINE_MACRO_OUTPUT_FORMAT_STD
,
725 LINE_MACRO_OUTPUT_FORMAT_P10
= 11
726 } Pflag
; /* -P switch */
727 char dflag
; /* -dX value */
729 /* for -MD/-MF: collected dependencies for this compilation */
734 BufferedFile
*include_stack
[INCLUDE_STACK_SIZE
];
735 BufferedFile
**include_stack_ptr
;
737 int ifdef_stack
[IFDEF_STACK_SIZE
];
738 int *ifdef_stack_ptr
;
740 /* included files enclosed with #ifndef MACRO */
741 int cached_includes_hash
[CACHED_INCLUDES_HASH_SIZE
];
742 CachedInclude
**cached_includes
;
743 int nb_cached_includes
;
745 /* #pragma pack stack */
746 int pack_stack
[PACK_STACK_SIZE
];
751 /* inline functions are stored as token lists and compiled last
752 only if referenced */
753 struct InlineFunc
**inline_fns
;
758 int nb_sections
; /* number of sections, including first dummy section */
760 Section
**priv_sections
;
761 int nb_priv_sections
; /* number of private sections */
763 /* got & plt handling */
767 /* temporary dynamic symbol sections (for dll loading) */
768 Section
*dynsymtab_section
;
769 /* exported dynamic symbol section */
771 /* copy of the gobal symtab_section variable */
773 /* extra attributes (eg. GOT/PLT value) for symtab symbols */
774 struct sym_attr
*sym_attrs
;
776 /* tiny assembler state */
782 unsigned pe_characteristics
;
783 unsigned pe_file_align
;
784 unsigned pe_stack_size
;
785 # ifdef TCC_TARGET_X86_64
793 const char *runtime_main
;
798 /* used by main and tcc_parse_args only */
799 struct filespec
**files
; /* files seen on command line */
800 int nb_files
; /* number thereof */
801 int nb_libraries
; /* number of libs thereof */
803 char *outfile
; /* output filename */
804 int option_r
; /* option -r */
805 int do_bench
; /* option -bench */
806 int gen_deps
; /* option -MD */
807 char *deps_outfile
; /* option -MF */
808 int option_pthread
; /* -pthread option */
819 /* The current value can be: */
820 #define VT_VALMASK 0x003f /* mask for value location, register or: */
821 #define VT_CONST 0x0030 /* constant in vc (must be first non register value) */
822 #define VT_LLOCAL 0x0031 /* lvalue, offset on stack */
823 #define VT_LOCAL 0x0032 /* offset on stack */
824 #define VT_CMP 0x0033 /* the value is stored in processor flags (in vc) */
825 #define VT_JMP 0x0034 /* value is the consequence of jmp true (even) */
826 #define VT_JMPI 0x0035 /* value is the consequence of jmp false (odd) */
827 #define VT_LVAL 0x0100 /* var is an lvalue */
828 #define VT_SYM 0x0200 /* a symbol value is added */
829 #define VT_MUSTCAST 0x0400 /* value must be casted to be correct (used for
830 char/short stored in integer registers) */
831 #define VT_MUSTBOUND 0x0800 /* bound checking must be done before
832 dereferencing value */
833 #define VT_BOUNDED 0x8000 /* value is bounded. The address of the
834 bounding function call point is in vc */
835 #define VT_LVAL_BYTE 0x1000 /* lvalue is a byte */
836 #define VT_LVAL_SHORT 0x2000 /* lvalue is a short */
837 #define VT_LVAL_UNSIGNED 0x4000 /* lvalue is unsigned */
838 #define VT_LVAL_TYPE (VT_LVAL_BYTE | VT_LVAL_SHORT | VT_LVAL_UNSIGNED)
841 #define VT_BTYPE 0x000f /* mask for basic type */
842 #define VT_INT 0 /* integer type */
843 #define VT_BYTE 1 /* signed byte type */
844 #define VT_SHORT 2 /* short type */
845 #define VT_VOID 3 /* void type */
846 #define VT_PTR 4 /* pointer */
847 #define VT_ENUM 5 /* enum definition */
848 #define VT_FUNC 6 /* function type */
849 #define VT_STRUCT 7 /* struct/union definition */
850 #define VT_FLOAT 8 /* IEEE float */
851 #define VT_DOUBLE 9 /* IEEE double */
852 #define VT_LDOUBLE 10 /* IEEE long double */
853 #define VT_BOOL 11 /* ISOC99 boolean type */
854 #define VT_LLONG 12 /* 64 bit integer */
855 #define VT_LONG 13 /* long integer (NEVER USED as type, only
857 #define VT_QLONG 14 /* 128-bit integer. Only used for x86-64 ABI */
858 #define VT_QFLOAT 15 /* 128-bit float. Only used for x86-64 ABI */
859 #define VT_UNSIGNED 0x0010 /* unsigned type */
860 #define VT_ARRAY 0x0020 /* array type (also has VT_PTR) */
861 #define VT_BITFIELD 0x0040 /* bitfield modifier */
862 #define VT_CONSTANT 0x0800 /* const modifier */
863 #define VT_VOLATILE 0x1000 /* volatile modifier */
864 #define VT_DEFSIGN 0x2000 /* signed type */
865 #define VT_VLA 0x00020000 /* VLA type (also has VT_PTR and VT_ARRAY) */
868 #define VT_EXTERN 0x00000080 /* extern definition */
869 #define VT_STATIC 0x00000100 /* static variable */
870 #define VT_TYPEDEF 0x00000200 /* typedef definition */
871 #define VT_INLINE 0x00000400 /* inline definition */
872 #define VT_IMPORT 0x00004000 /* win32: extern data imported from dll */
873 #define VT_EXPORT 0x00008000 /* win32: data exported from dll */
874 #define VT_WEAK 0x00010000 /* weak symbol */
875 #define VT_TLS 0x00040000 /* thread-local storage */
876 #define VT_VIS_SHIFT 19 /* shift for symbol visibility, overlapping
877 bitfield values, because bitfields never
878 have linkage and hence never have
880 #define VT_VIS_SIZE 2 /* We have four visibilities. */
881 #define VT_VIS_MASK (((1 << VT_VIS_SIZE)-1) << VT_VIS_SHIFT)
883 #define VT_STRUCT_SHIFT 19 /* shift for bitfield shift values (max: 32 - 2*6) */
886 /* type mask (except storage) */
887 #define VT_STORAGE (VT_EXTERN | VT_STATIC | VT_TYPEDEF | VT_INLINE | VT_IMPORT | VT_EXPORT | VT_WEAK | VT_VIS_MASK)
888 #define VT_TYPE (~(VT_STORAGE))
892 /* warning: the following compare tokens depend on i386 asm code */
899 #define TOK_Nset 0x98
900 #define TOK_Nclear 0x99
906 #define TOK_LAND 0xa0
909 #define TOK_MID 0xa3 /* inc/dec, to void constant */
911 #define TOK_UDIV 0xb0 /* unsigned division */
912 #define TOK_UMOD 0xb1 /* unsigned modulo */
913 #define TOK_PDIV 0xb2 /* fast division with undefined rounding for pointers */
915 /* tokens that carry values (in additional token string space / tokc) --> */
916 #define TOK_CCHAR 0xb3 /* char constant in tokc */
917 #define TOK_LCHAR 0xb4
918 #define TOK_CINT 0xb5 /* number in tokc */
919 #define TOK_CUINT 0xb6 /* unsigned int constant */
920 #define TOK_CLLONG 0xb7 /* long long constant */
921 #define TOK_CULLONG 0xb8 /* unsigned long long constant */
922 #define TOK_STR 0xb9 /* pointer to string in tokc */
923 #define TOK_LSTR 0xba
924 #define TOK_CFLOAT 0xbb /* float constant */
925 #define TOK_CDOUBLE 0xbc /* double constant */
926 #define TOK_CLDOUBLE 0xbd /* long double constant */
927 #define TOK_PPNUM 0xbe /* preprocessor number */
928 #define TOK_PPSTR 0xbf /* preprocessor string */
929 #define TOK_LINENUM 0xc0 /* line number info */
932 #define TOK_UMULL 0xc2 /* unsigned 32x32 -> 64 mul */
933 #define TOK_ADDC1 0xc3 /* add with carry generation */
934 #define TOK_ADDC2 0xc4 /* add with carry use */
935 #define TOK_SUBC1 0xc5 /* add with carry generation */
936 #define TOK_SUBC2 0xc6 /* add with carry use */
937 #define TOK_ARROW 0xc7
938 #define TOK_DOTS 0xc8 /* three dots */
939 #define TOK_SHR 0xc9 /* unsigned shift right */
940 #define TOK_TWOSHARPS 0xca /* ## preprocessing token */
941 #define TOK_PLCHLDR 0xcb /* placeholder token as defined in C99 */
942 #define TOK_NOSUBST 0xcc /* means following token has already been pp'd */
943 #define TOK_PPJOIN 0xce /* A '##' in the right position to mean pasting */
945 #define TOK_SHL 0x01 /* shift left */
946 #define TOK_SAR 0x02 /* signed shift right */
948 /* assignement operators : normal operator or 0x80 */
949 #define TOK_A_MOD 0xa5
950 #define TOK_A_AND 0xa6
951 #define TOK_A_MUL 0xaa
952 #define TOK_A_ADD 0xab
953 #define TOK_A_SUB 0xad
954 #define TOK_A_DIV 0xaf
955 #define TOK_A_XOR 0xde
956 #define TOK_A_OR 0xfc
957 #define TOK_A_SHL 0x81
958 #define TOK_A_SAR 0x82
961 #define offsetof(type, field) ((size_t) &((type *)0)->field)
965 #define countof(tab) (sizeof(tab) / sizeof((tab)[0]))
968 #define TOK_EOF (-1) /* end of file */
969 #define TOK_LINEFEED 10 /* line feed */
971 /* all identificators and strings have token above that */
972 #define TOK_IDENT 256
974 #define DEF_ASM(x) DEF(TOK_ASM_ ## x, #x)
975 #define TOK_ASM_int TOK_INT
976 #define DEF_ASMDIR(x) DEF(TOK_ASMDIR_ ## x, "." #x)
977 #define TOK_ASMDIR_FIRST TOK_ASMDIR_byte
978 #define TOK_ASMDIR_LAST TOK_ASMDIR_section
980 #if defined TCC_TARGET_I386 || defined TCC_TARGET_X86_64
981 /* only used for i386 asm opcodes definitions */
983 DEF(TOK_ASM_ ## x ## b, #x "b") \
984 DEF(TOK_ASM_ ## x ## w, #x "w") \
985 DEF(TOK_ASM_ ## x ## l, #x "l") \
986 DEF(TOK_ASM_ ## x, #x)
988 DEF(TOK_ASM_ ## x ## w, #x "w") \
989 DEF(TOK_ASM_ ## x ## l, #x "l") \
990 DEF(TOK_ASM_ ## x, #x)
991 #ifdef TCC_TARGET_X86_64
992 # define DEF_BWLQ(x) \
993 DEF(TOK_ASM_ ## x ## b, #x "b") \
994 DEF(TOK_ASM_ ## x ## w, #x "w") \
995 DEF(TOK_ASM_ ## x ## l, #x "l") \
996 DEF(TOK_ASM_ ## x ## q, #x "q") \
997 DEF(TOK_ASM_ ## x, #x)
998 # define DEF_WLQ(x) \
999 DEF(TOK_ASM_ ## x ## w, #x "w") \
1000 DEF(TOK_ASM_ ## x ## l, #x "l") \
1001 DEF(TOK_ASM_ ## x ## q, #x "q") \
1002 DEF(TOK_ASM_ ## x, #x)
1003 # define DEF_BWLX DEF_BWLQ
1004 # define DEF_WLX DEF_WLQ
1005 /* number of sizes + 1 */
1008 # define DEF_BWLX DEF_BWL
1009 # define DEF_WLX DEF_WL
1010 /* number of sizes + 1 */
1014 #define DEF_FP1(x) \
1015 DEF(TOK_ASM_ ## f ## x ## s, "f" #x "s") \
1016 DEF(TOK_ASM_ ## fi ## x ## l, "fi" #x "l") \
1017 DEF(TOK_ASM_ ## f ## x ## l, "f" #x "l") \
1018 DEF(TOK_ASM_ ## fi ## x ## s, "fi" #x "s")
1021 DEF(TOK_ASM_ ## f ## x, "f" #x ) \
1022 DEF(TOK_ASM_ ## f ## x ## p, "f" #x "p") \
1025 #define DEF_ASMTEST(x,suffix) \
1026 DEF_ASM(x ## o ## suffix) \
1027 DEF_ASM(x ## no ## suffix) \
1028 DEF_ASM(x ## b ## suffix) \
1029 DEF_ASM(x ## c ## suffix) \
1030 DEF_ASM(x ## nae ## suffix) \
1031 DEF_ASM(x ## nb ## suffix) \
1032 DEF_ASM(x ## nc ## suffix) \
1033 DEF_ASM(x ## ae ## suffix) \
1034 DEF_ASM(x ## e ## suffix) \
1035 DEF_ASM(x ## z ## suffix) \
1036 DEF_ASM(x ## ne ## suffix) \
1037 DEF_ASM(x ## nz ## suffix) \
1038 DEF_ASM(x ## be ## suffix) \
1039 DEF_ASM(x ## na ## suffix) \
1040 DEF_ASM(x ## nbe ## suffix) \
1041 DEF_ASM(x ## a ## suffix) \
1042 DEF_ASM(x ## s ## suffix) \
1043 DEF_ASM(x ## ns ## suffix) \
1044 DEF_ASM(x ## p ## suffix) \
1045 DEF_ASM(x ## pe ## suffix) \
1046 DEF_ASM(x ## np ## suffix) \
1047 DEF_ASM(x ## po ## suffix) \
1048 DEF_ASM(x ## l ## suffix) \
1049 DEF_ASM(x ## nge ## suffix) \
1050 DEF_ASM(x ## nl ## suffix) \
1051 DEF_ASM(x ## ge ## suffix) \
1052 DEF_ASM(x ## le ## suffix) \
1053 DEF_ASM(x ## ng ## suffix) \
1054 DEF_ASM(x ## nle ## suffix) \
1055 DEF_ASM(x ## g ## suffix)
1057 #endif /* defined TCC_TARGET_I386 || defined TCC_TARGET_X86_64 */
1060 TOK_LAST
= TOK_IDENT
- 1
1061 #define DEF(id, str) ,id
1066 /* keywords: tok >= TOK_IDENT && tok < TOK_UIDENT */
1067 #define TOK_UIDENT TOK_DEFINE
1069 /* ------------ libtcc.c ------------ */
1071 /* use GNU C extensions */
1072 ST_DATA
int gnu_ext
;
1073 /* use Tiny C extensions */
1074 ST_DATA
int tcc_ext
;
1075 /* XXX: get rid of this ASAP */
1076 ST_DATA
struct TCCState
*tcc_state
;
1078 /* public functions currently used by the tcc main function */
1079 ST_FUNC
char *pstrcpy(char *buf
, int buf_size
, const char *s
);
1080 ST_FUNC
char *pstrcat(char *buf
, int buf_size
, const char *s
);
1081 ST_FUNC
char *pstrncpy(char *out
, const char *in
, size_t num
);
1082 PUB_FUNC
char *tcc_basename(const char *name
);
1083 PUB_FUNC
char *tcc_fileextension (const char *name
);
1086 PUB_FUNC
void tcc_free(void *ptr
);
1087 PUB_FUNC
void *tcc_malloc(unsigned long size
);
1088 PUB_FUNC
void *tcc_mallocz(unsigned long size
);
1089 PUB_FUNC
void *tcc_realloc(void *ptr
, unsigned long size
);
1090 PUB_FUNC
char *tcc_strdup(const char *str
);
1092 #define tcc_free(ptr) tcc_free_debug(ptr)
1093 #define tcc_malloc(size) tcc_malloc_debug(size, __FILE__, __LINE__)
1094 #define tcc_mallocz(size) tcc_mallocz_debug(size, __FILE__, __LINE__)
1095 #define tcc_realloc(ptr,size) tcc_realloc_debug(ptr, size, __FILE__, __LINE__)
1096 #define tcc_strdup(str) tcc_strdup_debug(str, __FILE__, __LINE__)
1097 PUB_FUNC
void tcc_free_debug(void *ptr
);
1098 PUB_FUNC
void *tcc_malloc_debug(unsigned long size
, const char *file
, int line
);
1099 PUB_FUNC
void *tcc_mallocz_debug(unsigned long size
, const char *file
, int line
);
1100 PUB_FUNC
void *tcc_realloc_debug(void *ptr
, unsigned long size
, const char *file
, int line
);
1101 PUB_FUNC
char *tcc_strdup_debug(const char *str
, const char *file
, int line
);
1104 #define free(p) use_tcc_free(p)
1105 #define malloc(s) use_tcc_malloc(s)
1106 #define realloc(p, s) use_tcc_realloc(p, s)
1108 #define strdup(s) use_tcc_strdup(s)
1109 PUB_FUNC
void tcc_memcheck(void);
1110 PUB_FUNC
void tcc_error_noabort(const char *fmt
, ...);
1111 PUB_FUNC NORETURN
void tcc_error(const char *fmt
, ...);
1112 PUB_FUNC
void tcc_warning(const char *fmt
, ...);
1114 /* other utilities */
1115 ST_FUNC
void dynarray_add(void *ptab
, int *nb_ptr
, void *data
);
1116 ST_FUNC
void dynarray_reset(void *pp
, int *n
);
1117 ST_INLN
void cstr_ccat(CString
*cstr
, int ch
);
1118 ST_FUNC
void cstr_cat(CString
*cstr
, const char *str
, int len
);
1119 ST_FUNC
void cstr_wccat(CString
*cstr
, int ch
);
1120 ST_FUNC
void cstr_new(CString
*cstr
);
1121 ST_FUNC
void cstr_free(CString
*cstr
);
1122 ST_FUNC
void cstr_reset(CString
*cstr
);
1124 ST_INLN
void sym_free(Sym
*sym
);
1125 ST_FUNC Sym
*sym_push2(Sym
**ps
, int v
, int t
, long c
);
1126 ST_FUNC Sym
*sym_find2(Sym
*s
, int v
);
1127 ST_FUNC Sym
*sym_push(int v
, CType
*type
, int r
, long c
);
1128 ST_FUNC
void sym_pop(Sym
**ptop
, Sym
*b
, int keep
);
1129 ST_INLN Sym
*struct_find(int v
);
1130 ST_INLN Sym
*sym_find(int v
);
1131 ST_FUNC Sym
*global_identifier_push(int v
, int t
, long c
);
1133 ST_FUNC
void tcc_open_bf(TCCState
*s1
, const char *filename
, int initlen
);
1134 ST_FUNC
int tcc_open(TCCState
*s1
, const char *filename
);
1135 ST_FUNC
void tcc_close(void);
1137 ST_FUNC
int tcc_add_file_internal(TCCState
*s1
, const char *filename
, int flags
);
1139 #define AFF_PRINT_ERROR 0x10 /* print error if file not found */
1140 #define AFF_REFERENCED_DLL 0x20 /* load a referenced dll from another dll */
1141 #define AFF_PREPROCESS 0x40 /* preprocess file */
1142 /* combined with: */
1143 #define AFF_TYPE_NONE 0
1144 #define AFF_TYPE_C 1
1145 #define AFF_TYPE_ASM 2
1146 #define AFF_TYPE_ASMPP 3
1147 #define AFF_TYPE_BIN 4
1148 #define AFF_TYPE_LIB 5
1149 /* values from tcc_object_type(...) */
1150 #define AFF_BINTYPE_REL 1
1151 #define AFF_BINTYPE_DYN 2
1152 #define AFF_BINTYPE_AR 3
1153 #define AFF_BINTYPE_C67 4
1156 ST_FUNC
int tcc_add_crt(TCCState
*s
, const char *filename
);
1157 ST_FUNC
int tcc_add_dll(TCCState
*s
, const char *filename
, int flags
);
1158 ST_FUNC
void tcc_add_pragma_libs(TCCState
*s1
);
1159 PUB_FUNC
int tcc_add_library_err(TCCState
*s
, const char *f
);
1160 PUB_FUNC
void tcc_print_stats(TCCState
*s
, unsigned total_time
);
1161 PUB_FUNC
int tcc_parse_args(TCCState
*s
, int *argc
, char ***argv
, int optind
);
1163 ST_FUNC
char *normalize_slashes(char *path
);
1166 /* tcc_parse_args return codes: */
1170 #define OPT_PRINT_DIRS 4
1172 #define OPT_IMPDEF 6
1176 /* ------------ tccpp.c ------------ */
1178 ST_DATA
struct BufferedFile
*file
;
1179 ST_DATA
int ch
, tok
;
1180 ST_DATA CValue tokc
;
1181 ST_DATA
const int *macro_ptr
;
1182 ST_DATA
int parse_flags
;
1183 ST_DATA
int tok_flags
;
1184 ST_DATA CString tokcstr
; /* current parsed string, if any */
1186 /* display benchmark infos */
1187 ST_DATA
int total_lines
;
1188 ST_DATA
int total_bytes
;
1189 ST_DATA
int tok_ident
;
1190 ST_DATA TokenSym
**table_ident
;
1192 #define TOK_FLAG_BOL 0x0001 /* beginning of line before */
1193 #define TOK_FLAG_BOF 0x0002 /* beginning of file before */
1194 #define TOK_FLAG_ENDIF 0x0004 /* a endif was found matching starting #ifdef */
1195 #define TOK_FLAG_EOF 0x0008 /* end of file */
1197 #define PARSE_FLAG_PREPROCESS 0x0001 /* activate preprocessing */
1198 #define PARSE_FLAG_TOK_NUM 0x0002 /* return numbers instead of TOK_PPNUM */
1199 #define PARSE_FLAG_LINEFEED 0x0004 /* line feed is returned as a
1200 token. line feed is also
1202 #define PARSE_FLAG_ASM_FILE 0x0008 /* we processing an asm file: '#' can be used for line comment, etc. */
1203 #define PARSE_FLAG_SPACES 0x0010 /* next() returns space tokens (for -E) */
1204 #define PARSE_FLAG_ACCEPT_STRAYS 0x0020 /* next() returns '\\' token */
1205 #define PARSE_FLAG_TOK_STR 0x0040 /* return parsed strings instead of TOK_PPSTR */
1207 /* isidnum_table flags: */
1212 ST_FUNC TokenSym
*tok_alloc(const char *str
, int len
);
1213 ST_FUNC
const char *get_tok_str(int v
, CValue
*cv
);
1214 ST_FUNC
void begin_macro(TokenString
*str
, int alloc
);
1215 ST_FUNC
void end_macro(void);
1216 ST_FUNC
void set_idnum(int c
, int val
);
1217 ST_FUNC
void save_parse_state(ParseState
*s
);
1218 ST_FUNC
void restore_parse_state(ParseState
*s
);
1219 ST_INLN
void tok_str_new(TokenString
*s
);
1220 ST_FUNC TokenString
*tok_str_alloc(void);
1221 ST_FUNC
void tok_str_free(TokenString
*s
);
1222 ST_FUNC
void tok_str_free_str(int *str
);
1223 ST_FUNC
void tok_str_add(TokenString
*s
, int t
);
1224 ST_FUNC
void tok_str_add_tok(TokenString
*s
);
1225 ST_INLN
void define_push(int v
, int macro_type
, int *str
, Sym
*first_arg
);
1226 ST_FUNC
void define_undef(Sym
*s
);
1227 ST_INLN Sym
*define_find(int v
);
1228 ST_FUNC
void free_defines(Sym
*b
);
1229 ST_FUNC Sym
*label_find(int v
);
1230 ST_FUNC Sym
*label_push(Sym
**ptop
, int v
, int flags
);
1231 ST_FUNC
void label_pop(Sym
**ptop
, Sym
*slast
);
1232 ST_FUNC
void parse_define(void);
1233 ST_FUNC
void preprocess(int is_bof
);
1234 ST_FUNC
void next_nomacro(void);
1235 ST_FUNC
void next(void);
1236 ST_INLN
void unget_tok(int last_tok
);
1237 ST_FUNC
void preprocess_start(TCCState
*s1
);
1238 ST_FUNC
void tccpp_new(TCCState
*s
);
1239 ST_FUNC
void tccpp_delete(TCCState
*s
);
1240 ST_FUNC
int tcc_preprocess(TCCState
*s1
);
1241 ST_FUNC
void skip(int c
);
1242 ST_FUNC NORETURN
void expect(const char *msg
);
1244 /* space exlcuding newline */
1245 static inline int is_space(int ch
) {
1246 return ch
== ' ' || ch
== '\t' || ch
== '\v' || ch
== '\f' || ch
== '\r';
1248 static inline int isid(int c
) {
1249 return (c
>= 'a' && c
<= 'z') || (c
>= 'A' && c
<= 'Z') || c
== '_';
1251 static inline int isnum(int c
) {
1252 return c
>= '0' && c
<= '9';
1254 static inline int isoct(int c
) {
1255 return c
>= '0' && c
<= '7';
1257 static inline int toup(int c
) {
1258 return (c
>= 'a' && c
<= 'z') ? c
- 'a' + 'A' : c
;
1261 /* ------------ tccgen.c ------------ */
1263 #define SYM_POOL_NB (8192 / sizeof(Sym))
1264 ST_DATA Sym
*sym_free_first
;
1265 ST_DATA
void **sym_pools
;
1266 ST_DATA
int nb_sym_pools
;
1268 ST_DATA Sym
*global_stack
;
1269 ST_DATA Sym
*local_stack
;
1270 ST_DATA Sym
*local_label_stack
;
1271 ST_DATA Sym
*global_label_stack
;
1272 ST_DATA Sym
*define_stack
;
1273 ST_DATA CType char_pointer_type
, func_old_type
, int_type
, size_type
;
1274 ST_DATA SValue __vstack
[1+/*to make bcheck happy*/ VSTACK_SIZE
], *vtop
, *pvtop
;
1275 #define vstack (__vstack + 1)
1276 ST_DATA
int rsym
, anon_sym
, ind
, loc
;
1278 ST_DATA
int const_wanted
; /* true if constant wanted */
1279 ST_DATA
int nocode_wanted
; /* true if no code generation wanted for an expression */
1280 ST_DATA
int global_expr
; /* true if compound literals must be allocated globally (used during initializers parsing */
1281 ST_DATA CType func_vt
; /* current function return type (used by return instruction) */
1282 ST_DATA
int func_var
; /* true if current function is variadic */
1283 ST_DATA
int func_vc
;
1284 ST_DATA
int last_line_num
, last_ind
, func_ind
; /* debug last line number and pc */
1285 ST_DATA
const char *funcname
;
1287 ST_FUNC
void tcc_debug_start(TCCState
*s1
);
1288 ST_FUNC
void tcc_debug_end(TCCState
*s1
);
1289 ST_FUNC
void tcc_debug_funcstart(TCCState
*s1
, Sym
*sym
);
1290 ST_FUNC
void tcc_debug_funcend(TCCState
*s1
, int size
);
1291 ST_FUNC
void tcc_debug_line(TCCState
*s1
);
1293 ST_FUNC
void tccgen_start(TCCState
*s1
);
1294 ST_FUNC
void tccgen_end(TCCState
*s1
);
1296 ST_FUNC
void free_inline_functions(TCCState
*s
);
1297 ST_FUNC
void check_vstack(void);
1299 ST_INLN
int is_float(int t
);
1300 ST_FUNC
int ieee_finite(double d
);
1301 ST_FUNC
void test_lvalue(void);
1302 ST_FUNC
void vpushi(int v
);
1303 ST_FUNC Sym
*external_global_sym(int v
, CType
*type
, int r
);
1304 ST_FUNC
void vset(CType
*type
, int r
, long v
);
1305 ST_FUNC
void vswap(void);
1306 ST_FUNC
void vpush_global_sym(CType
*type
, int v
);
1307 ST_FUNC
void vrote(SValue
*e
, int n
);
1308 ST_FUNC
void vrott(int n
);
1309 ST_FUNC
void vrotb(int n
);
1310 #ifdef TCC_TARGET_ARM
1311 ST_FUNC
int get_reg_ex(int rc
, int rc2
);
1312 ST_FUNC
void lexpand_nr(void);
1314 ST_FUNC
void vpushv(SValue
*v
);
1315 ST_FUNC
void save_reg(int r
);
1316 ST_FUNC
void save_reg_upstack(int r
, int n
);
1317 ST_FUNC
int get_reg(int rc
);
1318 ST_FUNC
void save_regs(int n
);
1319 ST_FUNC
void gaddrof(void);
1320 ST_FUNC
int gv(int rc
);
1321 ST_FUNC
void gv2(int rc1
, int rc2
);
1322 ST_FUNC
void vpop(void);
1323 ST_FUNC
void gen_op(int op
);
1324 ST_FUNC
int type_size(CType
*type
, int *a
);
1325 ST_FUNC
void mk_pointer(CType
*type
);
1326 ST_FUNC
void vstore(void);
1327 ST_FUNC
void inc(int post
, int c
);
1328 ST_FUNC
void parse_mult_str (CString
*astr
, const char *msg
);
1329 ST_FUNC
void parse_asm_str(CString
*astr
);
1330 ST_FUNC
int lvalue_type(int t
);
1331 ST_FUNC
void indir(void);
1332 ST_FUNC
void unary(void);
1333 ST_FUNC
void expr_prod(void);
1334 ST_FUNC
void expr_sum(void);
1335 ST_FUNC
void gexpr(void);
1336 ST_FUNC
int expr_const(void);
1337 ST_FUNC
void decl(int l
);
1338 #if defined CONFIG_TCC_BCHECK || defined TCC_TARGET_C67
1339 ST_FUNC Sym
*get_sym_ref(CType
*type
, Section
*sec
, unsigned long offset
, unsigned long size
);
1341 #if defined TCC_TARGET_X86_64 && !defined TCC_TARGET_PE
1342 ST_FUNC
int classify_x86_64_va_arg(CType
*ty
);
1345 /* ------------ tccelf.c ------------ */
1347 #define TCC_OUTPUT_FORMAT_ELF 0 /* default output format: ELF */
1348 #define TCC_OUTPUT_FORMAT_BINARY 1 /* binary image output */
1349 #define TCC_OUTPUT_FORMAT_COFF 2 /* COFF */
1351 #define ARMAG "!<arch>\012" /* For COFF and a.out archives */
1354 unsigned int n_strx
; /* index into string table of name */
1355 unsigned char n_type
; /* type of symbol */
1356 unsigned char n_other
; /* misc info (usually empty) */
1357 unsigned short n_desc
; /* description field */
1358 unsigned int n_value
; /* value of symbol */
1361 ST_DATA Section
*text_section
, *data_section
, *bss_section
; /* predefined sections */
1362 ST_DATA Section
*common_section
;
1363 ST_DATA Section
*cur_text_section
; /* current section where function code is generated */
1364 #ifdef CONFIG_TCC_ASM
1365 ST_DATA Section
*last_text_section
; /* to handle .previous asm directive */
1367 #ifdef CONFIG_TCC_BCHECK
1368 /* bound check related sections */
1369 ST_DATA Section
*bounds_section
; /* contains global data bound description */
1370 ST_DATA Section
*lbounds_section
; /* contains local data bound description */
1371 ST_FUNC
void tccelf_bounds_new(TCCState
*s
);
1373 /* symbol sections */
1374 ST_DATA Section
*symtab_section
, *strtab_section
;
1375 /* debug sections */
1376 ST_DATA Section
*stab_section
, *stabstr_section
;
1378 ST_FUNC
void tccelf_new(TCCState
*s
);
1379 ST_FUNC
void tccelf_delete(TCCState
*s
);
1380 ST_FUNC
void tccelf_stab_new(TCCState
*s
);
1382 ST_FUNC Section
*new_section(TCCState
*s1
, const char *name
, int sh_type
, int sh_flags
);
1383 ST_FUNC
void section_realloc(Section
*sec
, unsigned long new_size
);
1384 ST_FUNC
size_t section_add(Section
*sec
, addr_t size
, int align
);
1385 ST_FUNC
void *section_ptr_add(Section
*sec
, addr_t size
);
1386 ST_FUNC
void section_reserve(Section
*sec
, unsigned long size
);
1387 ST_FUNC Section
*find_section(TCCState
*s1
, const char *name
);
1388 ST_FUNC Section
*new_symtab(TCCState
*s1
, const char *symtab_name
, int sh_type
, int sh_flags
, const char *strtab_name
, const char *hash_name
, int hash_sh_flags
);
1390 ST_FUNC
void put_extern_sym2(Sym
*sym
, Section
*section
, addr_t value
, unsigned long size
, int can_add_underscore
);
1391 ST_FUNC
void put_extern_sym(Sym
*sym
, Section
*section
, addr_t value
, unsigned long size
);
1392 ST_FUNC
void greloc(Section
*s
, Sym
*sym
, unsigned long offset
, int type
);
1393 ST_FUNC
void greloca(Section
*s
, Sym
*sym
, unsigned long offset
, int type
, addr_t addend
);
1395 ST_FUNC
int put_elf_str(Section
*s
, const char *sym
);
1396 ST_FUNC
int put_elf_sym(Section
*s
, addr_t value
, unsigned long size
, int info
, int other
, int shndx
, const char *name
);
1397 ST_FUNC
int set_elf_sym(Section
*s
, addr_t value
, unsigned long size
, int info
, int other
, int shndx
, const char *name
);
1398 ST_FUNC
int find_elf_sym(Section
*s
, const char *name
);
1399 ST_FUNC
void put_elf_reloc(Section
*symtab
, Section
*s
, unsigned long offset
, int type
, int symbol
);
1400 ST_FUNC
void put_elf_reloca(Section
*symtab
, Section
*s
, unsigned long offset
, int type
, int symbol
, addr_t addend
);
1402 ST_FUNC
void put_stabs(const char *str
, int type
, int other
, int desc
, unsigned long value
);
1403 ST_FUNC
void put_stabs_r(const char *str
, int type
, int other
, int desc
, unsigned long value
, Section
*sec
, int sym_index
);
1404 ST_FUNC
void put_stabn(int type
, int other
, int desc
, int value
);
1405 ST_FUNC
void put_stabd(int type
, int other
, int desc
);
1407 ST_FUNC
void relocate_common_syms(void);
1408 ST_FUNC
void relocate_syms(TCCState
*s1
, Section
*symtab
, int do_resolve
);
1409 ST_FUNC
void relocate_section(TCCState
*s1
, Section
*s
);
1411 ST_FUNC
void tcc_add_linker_symbols(TCCState
*s1
);
1412 ST_FUNC
int tcc_object_type(int fd
, ElfW(Ehdr
) *h
);
1413 ST_FUNC
int tcc_load_object_file(TCCState
*s1
, int fd
, unsigned long file_offset
);
1414 ST_FUNC
int tcc_load_archive(TCCState
*s1
, int fd
);
1415 ST_FUNC
void tcc_add_bcheck(TCCState
*s1
);
1416 ST_FUNC
void tcc_add_runtime(TCCState
*s1
);
1418 ST_FUNC
void build_got_entries(TCCState
*s1
);
1419 ST_FUNC
struct sym_attr
*get_sym_attr(TCCState
*s1
, int index
, int alloc
);
1420 ST_FUNC
void squeeze_multi_relocs(Section
*sec
, size_t oldrelocoffset
);
1422 ST_FUNC addr_t
get_elf_sym_addr(TCCState
*s
, const char *name
, int err
);
1423 #if defined TCC_IS_NATIVE || defined TCC_TARGET_PE
1424 ST_FUNC
void *tcc_get_symbol_err(TCCState
*s
, const char *name
);
1427 #ifndef TCC_TARGET_PE
1428 ST_FUNC
int tcc_load_dll(TCCState
*s1
, int fd
, const char *filename
, int level
);
1429 ST_FUNC
int tcc_load_ldscript(TCCState
*s1
);
1430 ST_FUNC
uint8_t *parse_comment(uint8_t *p
);
1431 ST_FUNC
void minp(void);
1432 ST_INLN
void inp(void);
1433 ST_FUNC
int handle_eob(void);
1436 /* ------------ xxx-link.c ------------ */
1438 /* Wether to generate a GOT/PLT entry and when. NO_GOTPLT_ENTRY is first so
1439 that unknown relocation don't create a GOT or PLT entry */
1441 NO_GOTPLT_ENTRY
, /* never generate (eg. GLOB_DAT & JMP_SLOT relocs) */
1442 BUILD_GOT_ONLY
, /* only build GOT (eg. TPOFF relocs) */
1443 AUTO_GOTPLT_ENTRY
, /* generate if sym is UNDEF */
1444 ALWAYS_GOTPLT_ENTRY
/* always generate (eg. PLTOFF relocs) */
1447 ST_FUNC
int code_reloc (int reloc_type
);
1448 ST_FUNC
int gotplt_entry_type (int reloc_type
);
1449 ST_FUNC
unsigned create_plt_entry(TCCState
*s1
, unsigned got_offset
, struct sym_attr
*attr
);
1450 ST_FUNC
void relocate_init(Section
*sr
);
1451 ST_FUNC
void relocate(TCCState
*s1
, ElfW_Rel
*rel
, int type
, unsigned char *ptr
, addr_t addr
, addr_t val
);
1452 ST_FUNC
void relocate_plt(TCCState
*s1
);
1454 /* ------------ xxx-gen.c ------------ */
1456 ST_DATA
const int reg_classes
[NB_REGS
];
1458 ST_FUNC
void gsym_addr(int t
, int a
);
1459 ST_FUNC
void gsym(int t
);
1460 ST_FUNC
void load(int r
, SValue
*sv
);
1461 ST_FUNC
void store(int r
, SValue
*v
);
1462 ST_FUNC
int gfunc_sret(CType
*vt
, int variadic
, CType
*ret
, int *align
, int *regsize
);
1463 ST_FUNC
void gfunc_call(int nb_args
);
1464 ST_FUNC
void gfunc_prolog(CType
*func_type
);
1465 ST_FUNC
void gfunc_epilog(void);
1466 ST_FUNC
int gjmp(int t
);
1467 ST_FUNC
void gjmp_addr(int a
);
1468 ST_FUNC
int gtst(int inv
, int t
);
1469 #if defined TCC_TARGET_I386 || defined TCC_TARGET_X86_64
1470 ST_FUNC
void gtst_addr(int inv
, int a
);
1472 #define gtst_addr(inv, a) gsym_addr(gtst(inv, 0), a)
1474 ST_FUNC
void gen_opi(int op
);
1475 ST_FUNC
void gen_opf(int op
);
1476 ST_FUNC
void gen_cvt_ftoi(int t
);
1477 ST_FUNC
void gen_cvt_ftof(int t
);
1478 ST_FUNC
void ggoto(void);
1479 #ifndef TCC_TARGET_C67
1480 ST_FUNC
void o(unsigned int c
);
1482 #ifndef TCC_TARGET_ARM
1483 ST_FUNC
void gen_cvt_itof(int t
);
1485 ST_FUNC
void gen_vla_sp_save(int addr
);
1486 ST_FUNC
void gen_vla_sp_restore(int addr
);
1487 ST_FUNC
void gen_vla_alloc(CType
*type
, int align
);
1489 static inline uint16_t read16le(unsigned char *p
) {
1490 return p
[0] | (uint16_t)p
[1] << 8;
1492 static inline void write16le(unsigned char *p
, uint16_t x
) {
1493 p
[0] = x
& 255, p
[1] = x
>> 8 & 255;
1495 static inline uint32_t read32le(unsigned char *p
) {
1496 return read16le(p
) | (uint32_t)read16le(p
+ 2) << 16;
1498 static inline void write32le(unsigned char *p
, uint32_t x
) {
1499 write16le(p
, x
), write16le(p
+ 2, x
>> 16);
1501 static inline void add32le(unsigned char *p
, int32_t x
) {
1502 write32le(p
, read32le(p
) + x
);
1504 static inline uint64_t read64le(unsigned char *p
) {
1505 return read32le(p
) | (uint64_t)read32le(p
+ 4) << 32;
1507 static inline void write64le(unsigned char *p
, uint64_t x
) {
1508 write32le(p
, x
), write32le(p
+ 4, x
>> 32);
1510 static inline void add64le(unsigned char *p
, int64_t x
) {
1511 write64le(p
, read64le(p
) + x
);
1514 /* ------------ i386-gen.c ------------ */
1515 #if defined TCC_TARGET_I386 || defined TCC_TARGET_X86_64
1516 ST_FUNC
void g(int c
);
1517 ST_FUNC
void gen_le16(int c
);
1518 ST_FUNC
void gen_le32(int c
);
1519 ST_FUNC
void gen_addr32(int r
, Sym
*sym
, long c
);
1520 ST_FUNC
void gen_addrpc32(int r
, Sym
*sym
, long c
);
1523 #ifdef CONFIG_TCC_BCHECK
1524 ST_FUNC
void gen_bounded_ptr_add(void);
1525 ST_FUNC
void gen_bounded_ptr_deref(void);
1528 /* ------------ x86_64-gen.c ------------ */
1529 #ifdef TCC_TARGET_X86_64
1530 ST_FUNC
void gen_addr64(int r
, Sym
*sym
, int64_t c
);
1531 ST_FUNC
void gen_opl(int op
);
1534 /* ------------ arm-gen.c ------------ */
1535 #ifdef TCC_TARGET_ARM
1536 #if defined(TCC_ARM_EABI) && !defined(CONFIG_TCC_ELFINTERP)
1537 PUB_FUNC
char *default_elfinterp(struct TCCState
*s
);
1539 ST_FUNC
void arm_init(struct TCCState
*s
);
1540 ST_FUNC
void gen_cvt_itof1(int t
);
1543 /* ------------ arm64-gen.c ------------ */
1544 #ifdef TCC_TARGET_ARM64
1545 ST_FUNC
void gen_cvt_sxtw(void);
1546 ST_FUNC
void gen_opl(int op
);
1547 ST_FUNC
void gfunc_return(CType
*func_type
);
1548 ST_FUNC
void gen_va_start(void);
1549 ST_FUNC
void gen_va_arg(CType
*t
);
1550 ST_FUNC
void gen_clear_cache(void);
1553 /* ------------ c67-gen.c ------------ */
1554 #ifdef TCC_TARGET_C67
1557 /* ------------ tcccoff.c ------------ */
1559 #ifdef TCC_TARGET_COFF
1560 ST_FUNC
int tcc_output_coff(TCCState
*s1
, FILE *f
);
1561 ST_FUNC
int tcc_load_coff(TCCState
* s1
, int fd
);
1564 /* ------------ tccasm.c ------------ */
1565 ST_FUNC
void asm_instr(void);
1566 ST_FUNC
void asm_global_instr(void);
1567 #ifdef CONFIG_TCC_ASM
1568 ST_FUNC
int find_constraint(ASMOperand
*operands
, int nb_operands
, const char *name
, const char **pp
);
1569 ST_FUNC Sym
* get_asm_sym(int name
, Sym
*csym
);
1570 ST_FUNC
void asm_expr(TCCState
*s1
, ExprValue
*pe
);
1571 ST_FUNC
int asm_int_expr(TCCState
*s1
);
1572 ST_FUNC
int tcc_assemble(TCCState
*s1
, int do_preprocess
);
1573 /* ------------ i386-asm.c ------------ */
1574 ST_FUNC
void gen_expr32(ExprValue
*pe
);
1575 #ifdef TCC_TARGET_X86_64
1576 ST_FUNC
void gen_expr64(ExprValue
*pe
);
1578 ST_FUNC
void asm_opcode(TCCState
*s1
, int opcode
);
1579 ST_FUNC
int asm_parse_regvar(int t
);
1580 ST_FUNC
void asm_compute_constraints(ASMOperand
*operands
, int nb_operands
, int nb_outputs
, const uint8_t *clobber_regs
, int *pout_reg
);
1581 ST_FUNC
void subst_asm_operand(CString
*add_str
, SValue
*sv
, int modifier
);
1582 ST_FUNC
void asm_gen_code(ASMOperand
*operands
, int nb_operands
, int nb_outputs
, int is_output
, uint8_t *clobber_regs
, int out_reg
);
1583 ST_FUNC
void asm_clobber(uint8_t *clobber_regs
, const char *str
);
1586 /* ------------ tccpe.c -------------- */
1587 #ifdef TCC_TARGET_PE
1588 ST_FUNC
int pe_load_file(struct TCCState
*s1
, const char *filename
, int fd
);
1589 ST_FUNC
int pe_output_file(TCCState
* s1
, const char *filename
);
1590 ST_FUNC
int pe_putimport(TCCState
*s1
, int dllindex
, const char *name
, addr_t value
);
1591 #ifndef TCC_TARGET_ARM
1592 ST_FUNC SValue
*pe_getimport(SValue
*sv
, SValue
*v2
);
1594 #ifdef TCC_TARGET_X86_64
1595 ST_FUNC
void pe_add_unwind_data(unsigned start
, unsigned end
, unsigned stack
);
1597 PUB_FUNC
int tcc_get_dllexports(const char *filename
, char **pp
);
1598 /* symbol properties stored in Elf32_Sym->st_other */
1599 # define ST_PE_EXPORT 0x10
1600 # define ST_PE_IMPORT 0x20
1601 # define ST_PE_STDCALL 0x40
1604 /* ------------ tccrun.c ----------------- */
1605 #ifdef TCC_IS_NATIVE
1606 #ifdef CONFIG_TCC_STATIC
1607 #define RTLD_LAZY 0x001
1608 #define RTLD_NOW 0x002
1609 #define RTLD_GLOBAL 0x100
1610 #define RTLD_DEFAULT NULL
1611 /* dummy function for profiling */
1612 ST_FUNC
void *dlopen(const char *filename
, int flag
);
1613 ST_FUNC
void dlclose(void *p
);
1614 ST_FUNC
const char *dlerror(void);
1615 ST_FUNC
void *dlsym(void *handle
, const char *symbol
);
1617 #ifdef CONFIG_TCC_BACKTRACE
1618 ST_DATA
int rt_num_callers
;
1619 ST_DATA
const char **rt_bound_error_msg
;
1620 ST_DATA
void *rt_prog_main
;
1621 ST_FUNC
void tcc_set_num_callers(int n
);
1623 ST_FUNC
void tcc_run_free(TCCState
*s1
);
1626 /* ------------ tcctools.c ----------------- */
1627 #if 0 /* included in tcc.c */
1628 ST_FUNC
int tcc_tool_ar(TCCState
*s
, int argc
, char **argv
);
1629 #ifdef TCC_TARGET_PE
1630 ST_FUNC
int tcc_tool_impdef(TCCState
*s
, int argc
, char **argv
);
1632 ST_FUNC
void tcc_tool_cross(TCCState
*s
, char **argv
, int option
);
1633 ST_FUNC
void gen_makedeps(TCCState
*s
, const char *target
, const char *filename
);
1636 /********************************************************/
1639 #define ST_DATA static
1643 /********************************************************/