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
30 #define CONFIG_TCC_STATIC
47 #include <sys/timeb.h>
48 #include <io.h> /* open, close etc. */
49 #include <direct.h> /* getcwd */
50 #define inline __inline
53 # define LIBTCCAPI __declspec(dllexport)
54 # define PUB_FUNC LIBTCCAPI
61 #include <sys/ucontext.h>
66 #endif /* !CONFIG_TCCBOOT */
77 #define SA_SIGINFO 0x00000004u
86 /* preprocessor debug */
88 /* include file debug */
96 /* target selection */
97 //#define TCC_TARGET_I386 /* i386 code generator */
98 //#define TCC_TARGET_ARM /* ARMv4 code generator */
99 //#define TCC_TARGET_C67 /* TMS320C67xx code generator */
100 //#define TCC_TARGET_X86_64 /* x86-64 code generator */
102 /* default target is I386 */
103 #if !defined(TCC_TARGET_I386) && !defined(TCC_TARGET_ARM) && \
104 !defined(TCC_TARGET_C67) && !defined(TCC_TARGET_X86_64)
105 #define TCC_TARGET_I386
108 #if !defined(TCC_UCLIBC) && !defined(TCC_TARGET_ARM) && \
109 !defined(TCC_TARGET_C67) && !defined(TCC_TARGET_X86_64)
110 #define CONFIG_TCC_BCHECK /* enable bound checking code */
113 #if defined(_WIN32) && !defined(TCC_TARGET_PE)
114 #define CONFIG_TCC_STATIC
117 /* define it to include assembler support */
118 #if !defined(TCC_TARGET_ARM) && !defined(TCC_TARGET_C67)
119 #define CONFIG_TCC_ASM
122 /* object format selection */
123 #if defined(TCC_TARGET_C67)
124 #define TCC_TARGET_COFF
127 /* only native compiler supports -run */
128 #if defined _WIN32 == defined TCC_TARGET_PE
129 # if (defined __i386__ || defined _X86_) && defined TCC_TARGET_I386
130 # define TCC_IS_NATIVE
131 # elif (defined __x86_64__ || defined _AMD64_) && defined TCC_TARGET_X86_64
132 # define TCC_IS_NATIVE
133 # elif defined __arm__ && defined TCC_TARGET_ARM
134 # define TCC_IS_NATIVE
138 #if defined TCC_IS_NATIVE && !defined CONFIG_TCCBOOT
139 # define CONFIG_TCC_BACKTRACE
142 /* target address type */
143 #if defined TCC_TARGET_X86_64 && (!defined __x86_64__ || defined _WIN32)
144 # define uplong unsigned long long
146 # define uplong unsigned long
149 /* ------------ path configuration ------------ */
151 #ifndef CONFIG_SYSROOT
152 # define CONFIG_SYSROOT ""
155 #ifdef CONFIG_MULTIARCHDIR
156 # define CONFIG_LDDIR "lib/" CONFIG_MULTIARCHDIR
160 # define CONFIG_LDDIR "lib"
163 /* path to find crt1.o, crti.o and crtn.o */
164 #ifndef CONFIG_TCC_CRTPREFIX
165 # define CONFIG_TCC_CRTPREFIX CONFIG_SYSROOT "/usr/" CONFIG_LDDIR
168 /* Below: {B} is substituted by CONFIG_TCCDIR (rsp. -B option) */
170 /* system include paths */
171 #ifndef CONFIG_TCC_SYSINCLUDEPATHS
172 # ifdef TCC_TARGET_PE
173 # define CONFIG_TCC_SYSINCLUDEPATHS "{B}/include;{B}/include/winapi"
174 # elif defined CONFIG_MULTIARCHDIR
175 # define CONFIG_TCC_SYSINCLUDEPATHS \
176 CONFIG_SYSROOT "/usr/local/include" \
177 ":" CONFIG_SYSROOT "/usr/local/include/" CONFIG_MULTIARCHDIR \
178 ":" CONFIG_SYSROOT "/usr/include" \
179 ":" CONFIG_SYSROOT "/usr/include/" CONFIG_MULTIARCHDIR \
182 # define CONFIG_TCC_SYSINCLUDEPATHS \
183 CONFIG_SYSROOT "/usr/local/include" \
184 ":" CONFIG_SYSROOT "/usr/include" \
189 /* library search paths */
190 #ifndef CONFIG_TCC_LIBPATHS
191 # ifdef TCC_TARGET_PE
192 # define CONFIG_TCC_LIBPATHS "{B}/lib"
194 # define CONFIG_TCC_LIBPATHS \
195 CONFIG_SYSROOT "/usr/" CONFIG_LDDIR \
196 ":" CONFIG_SYSROOT "/" CONFIG_LDDIR \
197 ":" CONFIG_SYSROOT "/usr/local/" CONFIG_LDDIR
201 /* name of ELF interpreter */
202 #ifndef CONFIG_TCC_ELFINTERP
203 # if defined __FreeBSD__
204 # define CONFIG_TCC_ELFINTERP "/libexec/ld-elf.so.1"
205 # elif defined __FreeBSD_kernel__
206 # define CONFIG_TCC_ELFINTERP "/lib/ld.so.1"
207 # elif defined TCC_ARM_HARDFLOAT
208 # define CONFIG_TCC_ELFINTERP "/lib/ld-linux-armhf.so.3"
209 # elif defined TCC_ARM_EABI
210 # define CONFIG_TCC_ELFINTERP "/lib/ld-linux.so.3"
211 # elif defined(TCC_TARGET_X86_64)
212 # define CONFIG_TCC_ELFINTERP "/lib64/ld-linux-x86-64.so.2"
213 # elif defined(TCC_UCLIBC)
214 # define CONFIG_TCC_ELFINTERP "/lib/ld-uClibc.so.0"
216 # define CONFIG_TCC_ELFINTERP "/lib/ld-linux.so.2"
220 /* library to use with CONFIG_USE_LIBGCC instead of libtcc1.a */
221 #define TCC_LIBGCC CONFIG_SYSROOT "/" CONFIG_LDDIR "/libgcc_s.so.1"
223 /* -------------------------------------------- */
231 #define INCLUDE_STACK_SIZE 32
232 #define IFDEF_STACK_SIZE 64
233 #define VSTACK_SIZE 256
234 #define STRING_MAX_SIZE 1024
235 #define PACK_STACK_SIZE 8
237 #define TOK_HASH_SIZE 8192 /* must be a power of two */
238 #define TOK_ALLOC_INCR 512 /* must be a power of two */
239 #define TOK_MAX_SIZE 4 /* token max size in int unit when stored in string */
241 /* token symbol management */
242 typedef struct TokenSym
{
243 struct TokenSym
*hash_next
;
244 struct Sym
*sym_define
; /* direct pointer to define */
245 struct Sym
*sym_label
; /* direct pointer to label */
246 struct Sym
*sym_struct
; /* direct pointer to structure */
247 struct Sym
*sym_identifier
; /* direct pointer to identifier */
248 int tok
; /* token number */
254 typedef unsigned short nwchar_t
;
256 typedef int nwchar_t
;
259 typedef struct CString
{
260 int size
; /* size in bytes */
261 void *data
; /* either 'char *' or 'nwchar_t *' */
263 void *data_allocated
; /* if non NULL, data has been malloced */
266 /* type definition */
267 typedef struct CType
{
273 typedef union CValue
{
279 unsigned int ul
; /* address (should be unsigned long on 64 bit cpu) */
281 unsigned long long ull
;
282 struct CString
*cstr
;
288 typedef struct SValue
{
289 CType type
; /* type */
290 unsigned short r
; /* register + flags */
291 unsigned short r2
; /* second register, used for 'long long'
292 type. If not used, set to VT_CONST */
293 CValue c
; /* constant, if VT_CONST */
294 struct Sym
*sym
; /* symbol, if (VT_SYM | VT_CONST) */
297 /* symbol management */
299 int v
; /* symbol token */
300 char *asm_label
; /* associated asm label */
301 long r
; /* associated register */
303 long c
; /* associated number */
304 int *d
; /* define token stream */
306 CType type
; /* associated type */
308 struct Sym
*next
; /* next related symbol */
309 long jnext
; /* next jump label */
311 struct Sym
*prev
; /* prev symbol in stack */
312 struct Sym
*prev_tok
; /* previous symbol for this token */
315 /* section definition */
316 /* XXX: use directly ELF structure for parameters ? */
317 /* special flag to indicate that the section should not be linked to
319 #define SHF_PRIVATE 0x80000000
321 /* special flag, too */
322 #define SECTION_ABS ((void *)1)
324 typedef struct Section
{
325 unsigned long data_offset
; /* current data offset */
326 unsigned char *data
; /* section data */
327 unsigned long data_allocated
; /* used for realloc() handling */
328 int sh_name
; /* elf section name (only used during output) */
329 int sh_num
; /* elf section number */
330 int sh_type
; /* elf section type */
331 int sh_flags
; /* elf section flags */
332 int sh_info
; /* elf section info */
333 int sh_addralign
; /* elf section alignment */
334 int sh_entsize
; /* elf entry size */
335 unsigned long sh_size
; /* section size (only used during output) */
336 uplong sh_addr
; /* address at which the section is relocated */
337 unsigned long sh_offset
; /* file offset */
338 int nb_hashed_syms
; /* used to resize the hash table */
339 struct Section
*link
; /* link to another section */
340 struct Section
*reloc
; /* corresponding section for relocation, if any */
341 struct Section
*hash
; /* hash table for symbols */
342 struct Section
*next
;
343 char name
[1]; /* section name */
346 typedef struct DLLReference
{
352 /* GNUC attribute definition */
353 typedef struct AttributeDef
{
355 func_call
: 3, /* calling convention (0..5), see below */
356 aligned
: 5, /* alignement (0..16) */
364 struct Section
*section
;
365 int alias_target
; /* token */
368 /* gr: wrappers for casting sym->r for other purposes */
369 #define FUNC_CALL(r) (((AttributeDef*)&(r))->func_call)
370 #define FUNC_EXPORT(r) (((AttributeDef*)&(r))->func_export)
371 #define FUNC_IMPORT(r) (((AttributeDef*)&(r))->func_import)
372 #define FUNC_ARGS(r) (((AttributeDef*)&(r))->func_args)
373 #define FUNC_ALIGN(r) (((AttributeDef*)&(r))->aligned)
374 #define FUNC_PACKED(r) (((AttributeDef*)&(r))->packed)
375 #define ATTR_MODE(r) (((AttributeDef*)&(r))->mode)
376 #define INT_ATTR(ad) (*(int*)(ad))
378 /* -------------------------------------------------- */
380 #define SYM_STRUCT 0x40000000 /* struct/union/enum symbol space */
381 #define SYM_FIELD 0x20000000 /* struct/union field symbol space */
382 #define SYM_FIRST_ANOM 0x10000000 /* first anonymous sym */
384 /* stored in 'Sym.c' field */
385 #define FUNC_NEW 1 /* ansi function prototype */
386 #define FUNC_OLD 2 /* old function prototype */
387 #define FUNC_ELLIPSIS 3 /* ansi function prototype with ... */
389 /* stored in 'Sym.r' field */
390 #define FUNC_CDECL 0 /* standard c call */
391 #define FUNC_STDCALL 1 /* pascal c call */
392 #define FUNC_FASTCALL1 2 /* first param in %eax */
393 #define FUNC_FASTCALL2 3 /* first parameters in %eax, %edx */
394 #define FUNC_FASTCALL3 4 /* first parameter in %eax, %edx, %ecx */
395 #define FUNC_FASTCALLW 5 /* first parameter in %ecx, %edx */
397 /* field 'Sym.t' for macros */
398 #define MACRO_OBJ 0 /* object like macro */
399 #define MACRO_FUNC 1 /* function like macro */
401 /* field 'Sym.r' for C labels */
402 #define LABEL_DEFINED 0 /* label is defined */
403 #define LABEL_FORWARD 1 /* label is forward defined */
404 #define LABEL_DECLARED 2 /* label is declared but never used */
406 /* type_decl() types */
407 #define TYPE_ABSTRACT 1 /* type without variable */
408 #define TYPE_DIRECT 2 /* type with variable */
410 #define IO_BUF_SIZE 8192
412 typedef struct BufferedFile
{
416 struct BufferedFile
*prev
;
417 int line_num
; /* current line number - here to simplify code */
418 int ifndef_macro
; /* #ifndef macro / #endif search */
419 int ifndef_macro_saved
; /* saved ifndef_macro */
420 int *ifdef_stack_ptr
; /* ifdef_stack value at the start of the file */
421 char inc_type
; /* type of include */
422 char inc_filename
[512]; /* filename specified by the user */
423 char filename
[1024]; /* current filename - here to simplify code */
424 unsigned char buffer
[IO_BUF_SIZE
+ 1]; /* extra size for CH_EOB char */
427 #define CH_EOB '\\' /* end of buffer or '\0' char in file */
428 #define CH_EOF (-1) /* end of file */
430 /* parsing state (used to save parser state to reparse part of the
431 source several times) */
432 typedef struct ParseState
{
433 const int *macro_ptr
;
439 /* used to record tokens */
440 typedef struct TokenString
{
447 /* inline functions */
448 typedef struct InlineFunc
{
454 /* include file cache, used to find files faster and also to eliminate
455 inclusion if the include file is protected by #ifndef ... #endif */
456 typedef struct CachedInclude
{
458 int hash_next
; /* -1 if none */
459 char type
; /* '"' or '>' to give include type */
460 char filename
[1]; /* path specified in #include */
463 #define CACHED_INCLUDES_HASH_SIZE 512
465 #ifdef CONFIG_TCC_ASM
466 typedef struct ExprValue
{
471 #define MAX_ASM_OPERANDS 30
472 typedef struct ASMOperand
{
473 int id
; /* GCC 3 optionnal identifier (0 if number only supported */
475 char asm_str
[16]; /* computed asm string for operand */
476 SValue
*vt
; /* C value of the expression */
477 int ref_index
; /* if >= 0, gives reference to a output constraint */
478 int input_index
; /* if >= 0, gives reference to an input constraint */
479 int priority
; /* priority, used to assign registers */
480 int reg
; /* if >= 0, register number used for this operand */
481 int is_llong
; /* true if double register value */
482 int is_memory
; /* true if memory operand */
483 int is_rw
; /* for '+' modifier */
488 unsigned output_type
: 8;
489 unsigned reloc_output
: 1;
491 BufferedFile
**include_stack_ptr
;
492 int *ifdef_stack_ptr
;
494 /* include file handling */
495 char **include_paths
;
496 int nb_include_paths
;
497 char **sysinclude_paths
;
498 int nb_sysinclude_paths
;
499 CachedInclude
**cached_includes
;
500 int nb_cached_includes
;
502 char **library_paths
;
503 int nb_library_paths
;
507 /* array of all loaded dlls (including those referenced by loaded
509 DLLReference
**loaded_dlls
;
514 int nb_sections
; /* number of sections, including first dummy section */
516 Section
**priv_sections
;
517 int nb_priv_sections
; /* number of private sections */
522 unsigned long *got_offsets
;
524 /* give the correspondance from symtab indexes to dynsym indexes */
525 int *symtab_to_dynsym
;
527 /* temporary dynamic symbol sections (for dll loading) */
528 Section
*dynsymtab_section
;
529 /* exported dynamic symbol section */
532 /* copy of the gobal symtab_section variable */
535 int nostdinc
; /* if true, no standard headers are added */
536 int nostdlib
; /* if true, no standard libraries are added */
537 int nocommon
; /* if true, do not use common symbols for .bss data */
539 /* if true, static linking is performed */
542 /* soname as specified on the command line (-soname) */
544 /* rpath as specified on the command line (-Wl,-rpath=) */
547 /* if true, all symbols are exported */
550 /* if true, resolve symbols in the current module first (-Wl,Bsymbolic) */
553 /* if true, only link in referenced objects from archive */
556 /* address of text section */
560 /* symbols to call at load-time / unload-time */
561 const char *init_symbol
;
562 const char *fini_symbol
;
564 /* output format, see TCC_OUTPUT_FORMAT_xxx */
567 /* C language options */
568 int char_is_unsigned
;
569 int leading_underscore
;
571 /* warning switches */
572 int warn_write_strings
;
573 int warn_unsupported
;
576 int warn_implicit_function_declaration
;
578 /* display some information during compilation */
580 /* compile with debug symbol (and use them if error during execution) */
582 #ifdef CONFIG_TCC_BCHECK
583 /* compile with built-in memory and bounds checker */
586 /* give the path of the tcc libraries */
591 void (*error_func
)(void *opaque
, const char *msg
);
592 int error_set_jmp_enabled
;
593 jmp_buf error_jmp_buf
;
596 /* tiny assembler state */
599 /* see include_stack_ptr */
600 BufferedFile
*include_stack
[INCLUDE_STACK_SIZE
];
602 /* see ifdef_stack_ptr */
603 int ifdef_stack
[IFDEF_STACK_SIZE
];
605 /* see cached_includes */
606 int cached_includes_hash
[CACHED_INCLUDES_HASH_SIZE
];
609 int pack_stack
[PACK_STACK_SIZE
];
612 /* output file for preprocessing */
615 /* automatically collected dependencies for this compilation */
619 /* for tcc_relocate */
624 unsigned long mem_size
;
627 struct InlineFunc
**inline_fns
;
630 #ifdef TCC_TARGET_I386
634 /* section alignment */
635 unsigned long section_align
;
640 unsigned long pe_file_align
;
641 unsigned long pe_stack_size
;
642 #ifdef TCC_TARGET_X86_64
649 #ifndef TCC_TARGET_PE
650 #if defined TCC_TARGET_X86_64 || defined TCC_TARGET_ARM
651 /* write PLT and GOT here */
652 char *runtime_plt_and_got
;
653 unsigned int runtime_plt_and_got_offset
;
658 /* The current value can be: */
659 #define VT_VALMASK 0x003f
660 #define VT_CONST 0x0030 /* constant in vc
661 (must be first non register value) */
662 #define VT_LLOCAL 0x0031 /* lvalue, offset on stack */
663 #define VT_LOCAL 0x0032 /* offset on stack */
664 #define VT_CMP 0x0033 /* the value is stored in processor flags (in vc) */
665 #define VT_JMP 0x0034 /* value is the consequence of jmp true (even) */
666 #define VT_JMPI 0x0035 /* value is the consequence of jmp false (odd) */
667 #define VT_REF 0x0040 /* value is pointer to structure rather than address */
668 #define VT_LVAL 0x0100 /* var is an lvalue */
669 #define VT_SYM 0x0200 /* a symbol value is added */
670 #define VT_MUSTCAST 0x0400 /* value must be casted to be correct (used for
671 char/short stored in integer registers) */
672 #define VT_MUSTBOUND 0x0800 /* bound checking must be done before
673 dereferencing value */
674 #define VT_BOUNDED 0x8000 /* value is bounded. The address of the
675 bounding function call point is in vc */
676 #define VT_LVAL_BYTE 0x1000 /* lvalue is a byte */
677 #define VT_LVAL_SHORT 0x2000 /* lvalue is a short */
678 #define VT_LVAL_UNSIGNED 0x4000 /* lvalue is unsigned */
679 #define VT_LVAL_TYPE (VT_LVAL_BYTE | VT_LVAL_SHORT | VT_LVAL_UNSIGNED)
682 #define VT_INT 0 /* integer type */
683 #define VT_BYTE 1 /* signed byte type */
684 #define VT_SHORT 2 /* short type */
685 #define VT_VOID 3 /* void type */
686 #define VT_PTR 4 /* pointer */
687 #define VT_ENUM 5 /* enum definition */
688 #define VT_FUNC 6 /* function type */
689 #define VT_STRUCT 7 /* struct/union definition */
690 #define VT_FLOAT 8 /* IEEE float */
691 #define VT_DOUBLE 9 /* IEEE double */
692 #define VT_LDOUBLE 10 /* IEEE long double */
693 #define VT_BOOL 11 /* ISOC99 boolean type */
694 #define VT_LLONG 12 /* 64 bit integer */
695 #define VT_LONG 13 /* long integer (NEVER USED as type, only
697 #define VT_BTYPE 0x000f /* mask for basic type */
698 #define VT_UNSIGNED 0x0010 /* unsigned type */
699 #define VT_ARRAY 0x0020 /* array type (also has VT_PTR) */
700 #define VT_VLA 0x20000 /* VLA type (also has VT_PTR and VT_ARRAY) */
701 #define VT_BITFIELD 0x0040 /* bitfield modifier */
702 #define VT_CONSTANT 0x0800 /* const modifier */
703 #define VT_VOLATILE 0x1000 /* volatile modifier */
704 #define VT_SIGNED 0x2000 /* signed type */
707 #define VT_EXTERN 0x00000080 /* extern definition */
708 #define VT_STATIC 0x00000100 /* static variable */
709 #define VT_TYPEDEF 0x00000200 /* typedef definition */
710 #define VT_INLINE 0x00000400 /* inline definition */
711 #define VT_IMPORT 0x00004000 /* win32: extern data imported from dll */
712 #define VT_EXPORT 0x00008000 /* win32: data exported from dll */
713 #define VT_WEAK 0x00010000 /* win32: data exported from dll */
715 #define VT_STRUCT_SHIFT 18 /* shift for bitfield shift values */
717 /* type mask (except storage) */
718 #define VT_STORAGE (VT_EXTERN | VT_STATIC | VT_TYPEDEF | VT_INLINE | VT_IMPORT | VT_EXPORT | VT_WEAK)
719 #define VT_TYPE (~(VT_STORAGE))
723 /* warning: the following compare tokens depend on i386 asm code */
730 #define TOK_Nset 0x98
731 #define TOK_Nclear 0x99
737 #define TOK_LAND 0xa0
741 #define TOK_MID 0xa3 /* inc/dec, to void constant */
743 #define TOK_UDIV 0xb0 /* unsigned division */
744 #define TOK_UMOD 0xb1 /* unsigned modulo */
745 #define TOK_PDIV 0xb2 /* fast division with undefined rounding for pointers */
746 #define TOK_CINT 0xb3 /* number in tokc */
747 #define TOK_CCHAR 0xb4 /* char constant in tokc */
748 #define TOK_STR 0xb5 /* pointer to string in tokc */
749 #define TOK_TWOSHARPS 0xb6 /* ## preprocessing token */
750 #define TOK_LCHAR 0xb7
751 #define TOK_LSTR 0xb8
752 #define TOK_CFLOAT 0xb9 /* float constant */
753 #define TOK_LINENUM 0xba /* line number info */
754 #define TOK_CDOUBLE 0xc0 /* double constant */
755 #define TOK_CLDOUBLE 0xc1 /* long double constant */
756 #define TOK_UMULL 0xc2 /* unsigned 32x32 -> 64 mul */
757 #define TOK_ADDC1 0xc3 /* add with carry generation */
758 #define TOK_ADDC2 0xc4 /* add with carry use */
759 #define TOK_SUBC1 0xc5 /* add with carry generation */
760 #define TOK_SUBC2 0xc6 /* add with carry use */
761 #define TOK_CUINT 0xc8 /* unsigned int constant */
762 #define TOK_CLLONG 0xc9 /* long long constant */
763 #define TOK_CULLONG 0xca /* unsigned long long constant */
764 #define TOK_ARROW 0xcb
765 #define TOK_DOTS 0xcc /* three dots */
766 #define TOK_SHR 0xcd /* unsigned shift right */
767 #define TOK_PPNUM 0xce /* preprocessor number */
768 #define TOK_NOSUBST 0xcf /* means following token has already been pp'd */
770 #define TOK_SHL 0x01 /* shift left */
771 #define TOK_SAR 0x02 /* signed shift right */
773 /* assignement operators : normal operator or 0x80 */
774 #define TOK_A_MOD 0xa5
775 #define TOK_A_AND 0xa6
776 #define TOK_A_MUL 0xaa
777 #define TOK_A_ADD 0xab
778 #define TOK_A_SUB 0xad
779 #define TOK_A_DIV 0xaf
780 #define TOK_A_XOR 0xde
781 #define TOK_A_OR 0xfc
782 #define TOK_A_SHL 0x81
783 #define TOK_A_SAR 0x82
786 #define offsetof(type, field) ((size_t) &((type *)0)->field)
790 #define countof(tab) (sizeof(tab) / sizeof((tab)[0]))
793 #define TOK_EOF (-1) /* end of file */
794 #define TOK_LINEFEED 10 /* line feed */
796 /* all identificators and strings have token above that */
797 #define TOK_IDENT 256
799 #define DEF_ASM(x) DEF(TOK_ASM_ ## x, #x)
800 #define TOK_ASM_int TOK_INT
801 #define TOK_ASM_weak TOK_WEAK1
803 #if defined TCC_TARGET_I386 || defined TCC_TARGET_X86_64
804 /* only used for i386 asm opcodes definitions */
806 DEF(TOK_ASM_ ## x ## b, #x "b") \
807 DEF(TOK_ASM_ ## x ## w, #x "w") \
808 DEF(TOK_ASM_ ## x ## l, #x "l") \
809 DEF(TOK_ASM_ ## x, #x)
811 DEF(TOK_ASM_ ## x ## w, #x "w") \
812 DEF(TOK_ASM_ ## x ## l, #x "l") \
813 DEF(TOK_ASM_ ## x, #x)
814 #ifdef TCC_TARGET_X86_64
815 # define DEF_BWLQ(x) \
816 DEF(TOK_ASM_ ## x ## b, #x "b") \
817 DEF(TOK_ASM_ ## x ## w, #x "w") \
818 DEF(TOK_ASM_ ## x ## l, #x "l") \
819 DEF(TOK_ASM_ ## x ## q, #x "q") \
820 DEF(TOK_ASM_ ## x, #x)
821 # define DEF_WLQ(x) \
822 DEF(TOK_ASM_ ## x ## w, #x "w") \
823 DEF(TOK_ASM_ ## x ## l, #x "l") \
824 DEF(TOK_ASM_ ## x ## q, #x "q") \
825 DEF(TOK_ASM_ ## x, #x)
826 # define DEF_BWLX DEF_BWLQ
827 # define DEF_WLX DEF_WLQ
828 /* number of sizes + 1 */
831 # define DEF_BWLX DEF_BWL
832 # define DEF_WLX DEF_WL
833 /* number of sizes + 1 */
838 DEF(TOK_ASM_ ## f ## x ## s, "f" #x "s") \
839 DEF(TOK_ASM_ ## fi ## x ## l, "fi" #x "l") \
840 DEF(TOK_ASM_ ## f ## x ## l, "f" #x "l") \
841 DEF(TOK_ASM_ ## fi ## x ## s, "fi" #x "s")
844 DEF(TOK_ASM_ ## f ## x, "f" #x ) \
845 DEF(TOK_ASM_ ## f ## x ## p, "f" #x "p") \
848 #define DEF_ASMTEST(x) \
880 #endif // defined TCC_TARGET_I386 || defined TCC_TARGET_X86_64
883 TOK_LAST
= TOK_IDENT
- 1,
884 #define DEF(id, str) id,
889 #define TOK_UIDENT TOK_DEFINE
892 #define snprintf _snprintf
893 #define vsnprintf _vsnprintf
895 #define strtold (long double)strtod
896 #define strtof (float)strtod
897 #define strtoll _strtoi64
898 #define strtoull _strtoui64
901 /* XXX: need to define this to use them in non ISOC99 context */
902 extern float strtof (const char *__nptr
, char **__endptr
);
903 extern long double strtold (const char *__nptr
, char **__endptr
);
907 #define IS_DIRSEP(c) (c == '/' || c == '\\')
908 #define IS_ABSPATH(p) (IS_DIRSEP(p[0]) || (p[0] && p[1] == ':' && IS_DIRSEP(p[2])))
909 #define PATHCMP stricmp
911 #define IS_DIRSEP(c) (c == '/')
912 #define IS_ABSPATH(p) IS_DIRSEP(p[0])
913 #define PATHCMP strcmp
922 /* space exlcuding newline */
923 static inline int is_space(int ch
)
925 return ch
== ' ' || ch
== '\t' || ch
== '\v' || ch
== '\f' || ch
== '\r';
928 static inline int isid(int c
)
930 return (c
>= 'a' && c
<= 'z') || (c
>= 'A' && c
<= 'Z') || c
== '_';
933 static inline int isnum(int c
)
935 return c
>= '0' && c
<= '9';
938 static inline int isoct(int c
)
940 return c
>= '0' && c
<= '7';
943 static inline int toup(int c
)
945 return (c
>= 'a' && c
<= 'z') ? c
- 'a' + 'A' : c
;
953 #define ST_INLN static inline
954 #define ST_FUNC static
955 #define ST_DATA static
959 #define ST_DATA extern
962 /* ------------ libtcc.c ------------ */
964 /* use GNU C extensions */
966 /* use Tiny C extensions */
968 /* XXX: get rid of this ASAP */
969 ST_DATA
struct TCCState
*tcc_state
;
971 #define AFF_PRINT_ERROR 0x0001 /* print error if file not found */
972 #define AFF_REFERENCED_DLL 0x0002 /* load a referenced dll from another dll */
973 #define AFF_PREPROCESS 0x0004 /* preprocess file */
975 /* public functions currently used by the tcc main function */
976 PUB_FUNC
char *pstrcpy(char *buf
, int buf_size
, const char *s
);
977 PUB_FUNC
char *pstrcat(char *buf
, int buf_size
, const char *s
);
978 PUB_FUNC
char *pstrncpy(char *out
, const char *in
, size_t num
);
979 PUB_FUNC
char *tcc_basename(const char *name
);
980 PUB_FUNC
char *tcc_fileextension (const char *name
);
981 PUB_FUNC
void tcc_free(void *ptr
);
982 PUB_FUNC
void *tcc_malloc(unsigned long size
);
983 PUB_FUNC
void *tcc_mallocz(unsigned long size
);
984 PUB_FUNC
void *tcc_realloc(void *ptr
, unsigned long size
);
985 PUB_FUNC
char *tcc_strdup(const char *str
);
986 #define free(p) use_tcc_free(p)
987 #define malloc(s) use_tcc_malloc(s)
988 #define realloc(p, s) use_tcc_realloc(p, s)
990 #define strdup(s) use_tcc_strdup(s)
991 PUB_FUNC
void tcc_memstats(void);
992 PUB_FUNC
void dynarray_add(void ***ptab
, int *nb_ptr
, void *data
);
993 PUB_FUNC
void dynarray_reset(void *pp
, int *n
);
994 PUB_FUNC
void tcc_error_noabort(const char *fmt
, ...);
995 PUB_FUNC
void tcc_error(const char *fmt
, ...);
996 PUB_FUNC
void tcc_warning(const char *fmt
, ...);
998 /* other utilities */
999 PUB_FUNC
void cstr_ccat(CString
*cstr
, int ch
);
1000 PUB_FUNC
void cstr_cat(CString
*cstr
, const char *str
);
1001 PUB_FUNC
void cstr_wccat(CString
*cstr
, int ch
);
1002 PUB_FUNC
void cstr_new(CString
*cstr
);
1003 PUB_FUNC
void cstr_free(CString
*cstr
);
1004 #define cstr_reset(cstr) cstr_free(cstr)
1006 ST_FUNC Section
*new_section(TCCState
*s1
, const char *name
, int sh_type
, int sh_flags
);
1007 ST_FUNC
void section_realloc(Section
*sec
, unsigned long new_size
);
1008 ST_FUNC
void *section_ptr_add(Section
*sec
, unsigned long size
);
1009 ST_FUNC
void section_reserve(Section
*sec
, unsigned long size
);
1010 ST_FUNC Section
*find_section(TCCState
*s1
, const char *name
);
1012 ST_FUNC
void put_extern_sym2(Sym
*sym
, Section
*section
, uplong value
, unsigned long size
, int can_add_underscore
);
1013 ST_FUNC
void put_extern_sym(Sym
*sym
, Section
*section
, uplong value
, unsigned long size
);
1014 ST_FUNC
void greloc(Section
*s
, Sym
*sym
, unsigned long offset
, int type
);
1016 ST_INLN
void sym_free(Sym
*sym
);
1017 ST_FUNC Sym
*sym_push2(Sym
**ps
, int v
, int t
, long c
);
1018 ST_FUNC Sym
*sym_find2(Sym
*s
, int v
);
1019 ST_FUNC Sym
*sym_push(int v
, CType
*type
, int r
, int c
);
1020 ST_FUNC
void sym_pop(Sym
**ptop
, Sym
*b
);
1021 ST_INLN Sym
*struct_find(int v
);
1022 ST_INLN Sym
*sym_find(int v
);
1023 ST_FUNC Sym
*global_identifier_push(int v
, int t
, int c
);
1025 ST_FUNC
void tcc_open_bf(TCCState
*s1
, const char *filename
, int initlen
);
1026 ST_FUNC
int tcc_open(TCCState
*s1
, const char *filename
);
1027 ST_FUNC
void tcc_close(void);
1029 ST_FUNC
int tcc_add_file_internal(TCCState
*s1
, const char *filename
, int flags
);
1030 ST_FUNC
int tcc_add_crt(TCCState
*s
, const char *filename
);
1031 #ifndef TCC_TARGET_PE
1032 ST_FUNC
int tcc_add_dll(TCCState
*s
, const char *filename
, int flags
);
1035 PUB_FUNC
int tcc_set_flag(TCCState
*s
, const char *flag_name
, int value
);
1036 PUB_FUNC
void tcc_print_stats(TCCState
*s
, int64_t total_time
);
1037 PUB_FUNC
char *tcc_default_target(TCCState
*s
, const char *default_file
);
1038 PUB_FUNC
void tcc_gen_makedeps(TCCState
*s
, const char *target
, const char *filename
);
1040 /* ------------ tccpp.c ------------ */
1042 ST_DATA
struct BufferedFile
*file
;
1043 ST_DATA
int ch
, tok
;
1044 ST_DATA CValue tokc
;
1045 ST_DATA
const int *macro_ptr
;
1046 ST_DATA
int parse_flags
;
1047 ST_DATA
int tok_flags
;
1048 ST_DATA CString tokcstr
; /* current parsed string, if any */
1050 /* display benchmark infos */
1051 ST_DATA
int total_lines
;
1052 ST_DATA
int total_bytes
;
1053 ST_DATA
int tok_ident
;
1054 ST_DATA TokenSym
**table_ident
;
1056 #define TOK_FLAG_BOL 0x0001 /* beginning of line before */
1057 #define TOK_FLAG_BOF 0x0002 /* beginning of file before */
1058 #define TOK_FLAG_ENDIF 0x0004 /* a endif was found matching starting #ifdef */
1059 #define TOK_FLAG_EOF 0x0008 /* end of file */
1061 #define PARSE_FLAG_PREPROCESS 0x0001 /* activate preprocessing */
1062 #define PARSE_FLAG_TOK_NUM 0x0002 /* return numbers instead of TOK_PPNUM */
1063 #define PARSE_FLAG_LINEFEED 0x0004 /* line feed is returned as a
1064 token. line feed is also
1066 #define PARSE_FLAG_ASM_COMMENTS 0x0008 /* '#' can be used for line comment */
1067 #define PARSE_FLAG_SPACES 0x0010 /* next() returns space tokens (for -E) */
1069 ST_FUNC TokenSym
*tok_alloc(const char *str
, int len
);
1070 ST_FUNC
char *get_tok_str(int v
, CValue
*cv
);
1071 ST_FUNC
void save_parse_state(ParseState
*s
);
1072 ST_FUNC
void restore_parse_state(ParseState
*s
);
1073 ST_INLN
void tok_str_new(TokenString
*s
);
1074 ST_FUNC
void tok_str_free(int *str
);
1075 ST_FUNC
void tok_str_add(TokenString
*s
, int t
);
1076 ST_FUNC
void tok_str_add_tok(TokenString
*s
);
1077 ST_INLN
void define_push(int v
, int macro_type
, int *str
, Sym
*first_arg
);
1078 ST_FUNC
void define_undef(Sym
*s
);
1079 ST_INLN Sym
*define_find(int v
);
1080 ST_FUNC
void free_defines(Sym
*b
);
1081 ST_FUNC Sym
*label_find(int v
);
1082 ST_FUNC Sym
*label_push(Sym
**ptop
, int v
, int flags
);
1083 ST_FUNC
void label_pop(Sym
**ptop
, Sym
*slast
);
1084 ST_FUNC
void parse_define(void);
1085 ST_FUNC
void preprocess(int is_bof
);
1086 ST_FUNC
void next_nomacro(void);
1087 ST_FUNC
void next(void);
1088 ST_INLN
void unget_tok(int last_tok
);
1089 ST_FUNC
void preprocess_init(TCCState
*s1
);
1090 ST_FUNC
void preprocess_new();
1091 ST_FUNC
int tcc_preprocess(TCCState
*s1
);
1092 ST_FUNC
void skip(int c
);
1093 ST_FUNC
void expect(const char *msg
);
1095 /* ------------ tccgen.c ------------ */
1097 ST_DATA Section
*text_section
, *data_section
, *bss_section
; /* predefined sections */
1098 ST_DATA Section
*cur_text_section
; /* current section where function code is generated */
1099 #ifdef CONFIG_TCC_ASM
1100 ST_DATA Section
*last_text_section
; /* to handle .previous asm directive */
1102 #ifdef CONFIG_TCC_BCHECK
1103 /* bound check related sections */
1104 ST_DATA Section
*bounds_section
; /* contains global data bound description */
1105 ST_DATA Section
*lbounds_section
; /* contains local data bound description */
1107 /* symbol sections */
1108 ST_DATA Section
*symtab_section
, *strtab_section
;
1109 /* debug sections */
1110 ST_DATA Section
*stab_section
, *stabstr_section
;
1112 #define SYM_POOL_NB (8192 / sizeof(Sym))
1113 ST_DATA Sym
*sym_free_first
;
1114 ST_DATA
void **sym_pools
;
1115 ST_DATA
int nb_sym_pools
;
1117 ST_DATA Sym
*global_stack
;
1118 ST_DATA Sym
*local_stack
;
1119 ST_DATA Sym
*local_label_stack
;
1120 ST_DATA Sym
*global_label_stack
;
1121 ST_DATA Sym
*define_stack
;
1122 ST_DATA CType char_pointer_type
, func_old_type
, int_type
, size_type
;
1123 ST_DATA SValue vstack
[VSTACK_SIZE
], *vtop
;
1124 ST_DATA
int rsym
, anon_sym
, ind
, loc
;
1126 ST_DATA
int const_wanted
; /* true if constant wanted */
1127 ST_DATA
int nocode_wanted
; /* true if no code generation wanted for an expression */
1128 ST_DATA
int global_expr
; /* true if compound literals must be allocated globally (used during initializers parsing */
1129 ST_DATA CType func_vt
; /* current function return type (used by return instruction) */
1130 ST_DATA
int func_vc
;
1131 ST_DATA
int last_line_num
, last_ind
, func_ind
; /* debug last line number and pc */
1132 ST_DATA
char *funcname
;
1134 ST_INLN
int is_float(int t
);
1135 ST_FUNC
int ieee_finite(double d
);
1136 ST_FUNC
void test_lvalue(void);
1137 ST_FUNC
void swap(int *p
, int *q
);
1138 ST_FUNC
void vpushi(int v
);
1139 ST_FUNC Sym
*external_global_sym(int v
, CType
*type
, int r
);
1140 ST_FUNC
void vset(CType
*type
, int r
, int v
);
1141 ST_FUNC
void vswap(void);
1142 ST_FUNC
void vpush_global_sym(CType
*type
, int v
);
1143 ST_FUNC
void vrote(SValue
*e
, int n
);
1144 ST_FUNC
void vrott(int n
);
1145 ST_FUNC
void vrotb(int n
);
1146 #ifdef TCC_TARGET_ARM
1147 ST_FUNC
int get_reg_ex(int rc
, int rc2
);
1148 ST_FUNC
void lexpand_nr(void);
1150 ST_FUNC
void vpushv(SValue
*v
);
1151 ST_FUNC
void save_reg(int r
);
1152 ST_FUNC
int get_reg(int rc
);
1153 ST_FUNC
void save_regs(int n
);
1154 ST_FUNC
int gv(int rc
);
1155 ST_FUNC
void gv2(int rc1
, int rc2
);
1156 ST_FUNC
void vpop(void);
1157 ST_FUNC
void gen_op(int op
);
1158 ST_FUNC
int type_size(CType
*type
, int *a
);
1159 ST_FUNC
void mk_pointer(CType
*type
);
1160 ST_FUNC
void vstore(void);
1161 ST_FUNC
void inc(int post
, int c
);
1162 ST_FUNC
void parse_asm_str(CString
*astr
);
1163 ST_FUNC
int lvalue_type(int t
);
1164 ST_FUNC
void indir(void);
1165 ST_FUNC
void unary(void);
1166 ST_FUNC
void expr_prod(void);
1167 ST_FUNC
void expr_sum(void);
1168 ST_FUNC
void gexpr(void);
1169 ST_FUNC
int expr_const(void);
1170 ST_FUNC
void gen_inline_functions(void);
1171 ST_FUNC
void decl(int l
);
1172 #if defined CONFIG_TCC_BCHECK || defined TCC_TARGET_C67
1173 ST_FUNC Sym
*get_sym_ref(CType
*type
, Section
*sec
, unsigned long offset
, unsigned long size
);
1176 /* ------------ tccelf.c ------------ */
1178 #define ARMAG "!<arch>\012" /* For COFF and a.out archives */
1181 unsigned int n_strx
; /* index into string table of name */
1182 unsigned char n_type
; /* type of symbol */
1183 unsigned char n_other
; /* misc info (usually empty) */
1184 unsigned short n_desc
; /* description field */
1185 unsigned int n_value
; /* value of symbol */
1188 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
);
1190 ST_FUNC
int put_elf_str(Section
*s
, const char *sym
);
1191 ST_FUNC
int put_elf_sym(Section
*s
, uplong value
, unsigned long size
, int info
, int other
, int shndx
, const char *name
);
1192 ST_FUNC
int add_elf_sym(Section
*s
, uplong value
, unsigned long size
, int info
, int other
, int sh_num
, const char *name
);
1193 ST_FUNC
int find_elf_sym(Section
*s
, const char *name
);
1194 ST_FUNC
void put_elf_reloc(Section
*symtab
, Section
*s
, unsigned long offset
, int type
, int symbol
);
1196 ST_FUNC
void put_stabs(const char *str
, int type
, int other
, int desc
, unsigned long value
);
1197 ST_FUNC
void put_stabs_r(const char *str
, int type
, int other
, int desc
, unsigned long value
, Section
*sec
, int sym_index
);
1198 ST_FUNC
void put_stabn(int type
, int other
, int desc
, int value
);
1199 ST_FUNC
void put_stabd(int type
, int other
, int desc
);
1201 ST_FUNC
void relocate_common_syms(void);
1202 ST_FUNC
void relocate_syms(TCCState
*s1
, int do_resolve
);
1203 ST_FUNC
void relocate_section(TCCState
*s1
, Section
*s
);
1205 ST_FUNC
void tcc_add_linker_symbols(TCCState
*s1
);
1206 ST_FUNC
int tcc_load_object_file(TCCState
*s1
, int fd
, unsigned long file_offset
);
1207 ST_FUNC
int tcc_load_archive(TCCState
*s1
, int fd
);
1208 ST_FUNC
void *tcc_get_symbol_err(TCCState
*s
, const char *name
);
1209 ST_FUNC
void tcc_add_bcheck(TCCState
*s1
);
1211 ST_FUNC
void build_got_entries(TCCState
*s1
);
1212 ST_FUNC
void tcc_add_runtime(TCCState
*s1
);
1214 #ifndef TCC_TARGET_PE
1215 ST_FUNC
int tcc_load_dll(TCCState
*s1
, int fd
, const char *filename
, int level
);
1216 ST_FUNC
int tcc_load_ldscript(TCCState
*s1
);
1217 ST_FUNC
uint8_t *parse_comment(uint8_t *p
);
1218 ST_FUNC
void minp(void);
1219 ST_INLN
void inp(void);
1220 ST_FUNC
int handle_eob(void);
1223 #ifdef TCC_TARGET_X86_64
1224 # define ELFCLASSW ELFCLASS64
1225 # define ElfW(type) Elf##64##_##type
1226 # define ELFW(type) ELF##64##_##type
1227 # define ElfW_Rel ElfW(Rela)
1228 # define SHT_RELX SHT_RELA
1229 # define REL_SECTION_FMT ".rela%s"
1230 /* XXX: DLL with PLT would only work with x86-64 for now */
1231 # define TCC_OUTPUT_DLL_WITH_PLT
1233 # define ELFCLASSW ELFCLASS32
1234 # define ElfW(type) Elf##32##_##type
1235 # define ELFW(type) ELF##32##_##type
1236 # define ElfW_Rel ElfW(Rel)
1237 # define SHT_RELX SHT_REL
1238 # define REL_SECTION_FMT ".rel%s"
1241 /* ------------ xxx-gen.c ------------ */
1243 ST_FUNC
void gsym_addr(int t
, int a
);
1244 ST_FUNC
void gsym(int t
);
1245 ST_FUNC
void load(int r
, SValue
*sv
);
1246 ST_FUNC
void store(int r
, SValue
*v
);
1247 ST_FUNC
void gfunc_call(int nb_args
);
1248 ST_FUNC
void gfunc_prolog(CType
*func_type
);
1249 ST_FUNC
void gfunc_epilog(void);
1250 ST_FUNC
int gjmp(int t
);
1251 ST_FUNC
void gjmp_addr(int a
);
1252 ST_FUNC
int gtst(int inv
, int t
);
1253 ST_FUNC
void gen_opi(int op
);
1254 ST_FUNC
void gen_opf(int op
);
1255 ST_FUNC
void gen_cvt_ftoi(int t
);
1256 ST_FUNC
void gen_cvt_ftof(int t
);
1257 ST_FUNC
void ggoto(void);
1258 #ifndef TCC_TARGET_C67
1259 ST_FUNC
void o(unsigned int c
);
1261 #ifndef TCC_TARGET_ARM
1262 ST_FUNC
void gen_cvt_itof(int t
);
1265 /* ------------ i386-gen.c ------------ */
1266 #if defined TCC_TARGET_I386 || defined TCC_TARGET_X86_64
1267 ST_FUNC
void g(int c
);
1268 ST_FUNC
int oad(int c
, int s
);
1269 ST_FUNC
void gen_le16(int c
);
1270 ST_FUNC
void gen_le32(int c
);
1271 ST_FUNC
void gen_addr32(int r
, Sym
*sym
, int c
);
1272 ST_FUNC
void gen_addrpc32(int r
, Sym
*sym
, int c
);
1275 #ifdef CONFIG_TCC_BCHECK
1276 ST_FUNC
void gen_bounded_ptr_add(void);
1277 ST_FUNC
void gen_bounded_ptr_deref(void);
1280 /* ------------ x86_64-gen.c ------------ */
1281 #ifdef TCC_TARGET_X86_64
1282 ST_FUNC
void gen_addr64(int r
, Sym
*sym
, int64_t c
);
1285 /* ------------ arm-gen.c ------------ */
1286 #ifdef TCC_TARGET_ARM
1287 ST_FUNC
uint32_t encbranch(int pos
, int addr
, int fail
);
1288 ST_FUNC
void gen_cvt_itof1(int t
);
1291 /* ------------ c67-gen.c ------------ */
1292 #ifdef TCC_TARGET_C67
1295 /* ------------ tcccoff.c ------------ */
1297 #ifdef TCC_TARGET_COFF
1298 ST_FUNC
int tcc_output_coff(TCCState
*s1
, FILE *f
);
1299 ST_FUNC
int tcc_load_coff(TCCState
* s1
, int fd
);
1302 /* ------------ tccasm.c ------------ */
1303 ST_FUNC
void asm_instr(void);
1304 ST_FUNC
void asm_global_instr(void);
1306 #ifdef CONFIG_TCC_ASM
1307 ST_FUNC
int find_constraint(ASMOperand
*operands
, int nb_operands
, const char *name
, const char **pp
);
1308 ST_FUNC
void asm_expr(TCCState
*s1
, ExprValue
*pe
);
1309 ST_FUNC
int asm_int_expr(TCCState
*s1
);
1310 ST_FUNC
int tcc_assemble(TCCState
*s1
, int do_preprocess
);
1311 /* ------------ i386-asm.c ------------ */
1312 ST_FUNC
void gen_expr32(ExprValue
*pe
);
1313 ST_FUNC
void asm_opcode(TCCState
*s1
, int opcode
);
1314 ST_FUNC
void asm_compute_constraints(ASMOperand
*operands
, int nb_operands
, int nb_outputs
, const uint8_t *clobber_regs
, int *pout_reg
);
1315 ST_FUNC
void subst_asm_operand(CString
*add_str
, SValue
*sv
, int modifier
);
1316 ST_FUNC
void asm_gen_code(ASMOperand
*operands
, int nb_operands
, int nb_outputs
, int is_output
, uint8_t *clobber_regs
, int out_reg
);
1317 ST_FUNC
void asm_clobber(uint8_t *clobber_regs
, const char *str
);
1319 /* ------------ tccpe.c -------------- */
1320 #ifdef TCC_TARGET_PE
1321 ST_FUNC
int pe_load_file(struct TCCState
*s1
, const char *filename
, int fd
);
1322 ST_FUNC
int pe_output_file(TCCState
* s1
, const char *filename
);
1323 ST_FUNC
int pe_putimport(TCCState
*s1
, int dllindex
, const char *name
, const void *value
);
1324 ST_FUNC SValue
*pe_getimport(SValue
*sv
, SValue
*v2
);
1326 ST_FUNC
char *get_export_names(FILE *fp
);
1327 #ifdef TCC_TARGET_X86_64
1328 ST_FUNC
void pe_add_unwind_data(unsigned start
, unsigned end
, unsigned stack
);
1332 /* ------------ tccrun.c ----------------- */
1333 #ifdef CONFIG_TCC_STATIC
1334 #define RTLD_LAZY 0x001
1335 #define RTLD_NOW 0x002
1336 #define RTLD_GLOBAL 0x100
1337 #define RTLD_DEFAULT NULL
1338 /* dummy function for profiling */
1339 ST_FUNC
void *dlopen(const char *filename
, int flag
);
1340 ST_FUNC
void dlclose(void *p
);
1341 //ST_FUNC const char *dlerror(void);
1342 ST_FUNC
void *resolve_sym(TCCState
*s1
, const char *symbol
);
1343 #elif !defined TCC_TARGET_PE || !defined _WIN32
1344 ST_FUNC
void *resolve_sym(TCCState
*s1
, const char *symbol
);
1347 #ifdef CONFIG_TCC_BACKTRACE
1348 ST_DATA
int rt_num_callers
;
1349 ST_DATA
const char **rt_bound_error_msg
;
1350 ST_DATA
void *rt_prog_main
;
1351 PUB_FUNC
void tcc_set_num_callers(int n
);
1354 /********************************************************/
1355 /* include the target specific definitions */
1357 #define TARGET_DEFS_ONLY
1358 #ifdef TCC_TARGET_I386
1359 #include "i386-gen.c"
1361 #ifdef TCC_TARGET_X86_64
1362 #include "x86_64-gen.c"
1364 #ifdef TCC_TARGET_ARM
1365 #include "arm-gen.c"
1367 #ifdef TCC_TARGET_C67
1369 #include "c67-gen.c"
1371 #undef TARGET_DEFS_ONLY
1373 ST_DATA
const int reg_classes
[];
1375 /********************************************************/
1378 #define ST_DATA static
1382 /********************************************************/