Introduce VIP sysinclude paths which are always searched first
[tinycc.git] / tcc.h
blob90d73eba4ee0b084004988ed190b449370d68b2a
1 /*
2 * TCC - Tiny C Compiler
4 * Copyright (c) 2001-2004 Fabrice Bellard
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 #ifndef _TCC_H
22 #define _TCC_H
24 #define _GNU_SOURCE
25 #include "config.h"
27 #include <stdlib.h>
28 #include <stdio.h>
29 #include <stdarg.h>
30 #include <string.h>
31 #include <errno.h>
32 #include <math.h>
33 #include <fcntl.h>
34 #include <setjmp.h>
35 #include <time.h>
37 #ifndef _WIN32
38 # include <unistd.h>
39 # include <sys/time.h>
40 # ifndef CONFIG_TCC_STATIC
41 # include <dlfcn.h>
42 # endif
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);
46 #endif
48 #ifdef _WIN32
49 # include <windows.h>
50 # include <io.h> /* open, close etc. */
51 # include <direct.h> /* getcwd */
52 # ifdef __GNUC__
53 # include <stdint.h>
54 # endif
55 # define inline __inline
56 # define snprintf _snprintf
57 # define vsnprintf _vsnprintf
58 # ifndef __GNUC__
59 # define strtold (long double)strtod
60 # define strtof (float)strtod
61 # define strtoll _strtoi64
62 # define strtoull _strtoui64
63 # endif
64 # ifdef LIBTCC_AS_DLL
65 # define LIBTCCAPI __declspec(dllexport)
66 # define PUB_FUNC LIBTCCAPI
67 # endif
68 # define inp next_inp /* inp is an intrinsic on msvc/mingw */
69 # ifdef _MSC_VER
70 # pragma warning (disable : 4244) // conversion from 'uint64_t' to 'int', possible loss of data
71 # pragma warning (disable : 4267) // conversion from 'size_t' to 'int', possible loss of data
72 # pragma warning (disable : 4996) // The POSIX name for this item is deprecated. Instead, use the ISO C and C++ conformant name
73 # pragma warning (disable : 4018) // signed/unsigned mismatch
74 # pragma warning (disable : 4146) // unary minus operator applied to unsigned type, result still unsigned
75 # define ssize_t intptr_t
76 # endif
77 # undef CONFIG_TCC_STATIC
78 #endif
80 #ifndef O_BINARY
81 # define O_BINARY 0
82 #endif
84 #ifndef offsetof
85 #define offsetof(type, field) ((size_t) &((type *)0)->field)
86 #endif
88 #ifndef countof
89 #define countof(tab) (sizeof(tab) / sizeof((tab)[0]))
90 #endif
92 #ifdef _MSC_VER
93 # define NORETURN __declspec(noreturn)
94 # define ALIGNED(x) __declspec(align(x))
95 #else
96 # define NORETURN __attribute__((noreturn))
97 # define ALIGNED(x) __attribute__((aligned(x)))
98 #endif
100 #ifdef _WIN32
101 # define IS_DIRSEP(c) (c == '/' || c == '\\')
102 # define IS_ABSPATH(p) (IS_DIRSEP(p[0]) || (p[0] && p[1] == ':' && IS_DIRSEP(p[2])))
103 # define PATHCMP stricmp
104 #else
105 # define IS_DIRSEP(c) (c == '/')
106 # define IS_ABSPATH(p) IS_DIRSEP(p[0])
107 # define PATHCMP strcmp
108 #endif
110 /* -------------------------------------------- */
112 /* parser debug */
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_X86_64 *//* x86-64 code generator */
126 /* #define TCC_TARGET_ARM *//* ARMv4 code generator */
127 /* #define TCC_TARGET_ARM64 *//* ARMv8 code generator */
128 /* #define TCC_TARGET_C67 *//* TMS320C67xx 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 # if defined __x86_64__ || defined _AMD64_
135 # define TCC_TARGET_X86_64
136 # elif defined __arm__
137 # define TCC_TARGET_ARM
138 # define TCC_ARM_EABI
139 # define TCC_ARM_HARDFLOAT
140 # elif defined __aarch64__
141 # define TCC_TARGET_ARM64
142 # else
143 # define TCC_TARGET_I386
144 # endif
145 # ifdef _WIN32
146 # define TCC_TARGET_PE 1
147 # endif
148 #endif
150 /* only native compiler supports -run */
151 #if defined _WIN32 == defined TCC_TARGET_PE
152 # if (defined __i386__ || defined _X86_) && defined TCC_TARGET_I386
153 # define TCC_IS_NATIVE
154 # elif (defined __x86_64__ || defined _AMD64_) && defined TCC_TARGET_X86_64
155 # define TCC_IS_NATIVE
156 # elif defined __arm__ && defined TCC_TARGET_ARM
157 # define TCC_IS_NATIVE
158 # elif defined __aarch64__ && defined TCC_TARGET_ARM64
159 # define TCC_IS_NATIVE
160 # endif
161 #endif
163 #if defined TCC_IS_NATIVE && !defined CONFIG_TCCBOOT
164 # define CONFIG_TCC_BACKTRACE
165 # if (defined TCC_TARGET_I386 || defined TCC_TARGET_X86_64) \
166 && !defined TCC_UCLIBC && !defined TCC_MUSL
167 # define CONFIG_TCC_BCHECK /* enable bound checking code */
168 # endif
169 #endif
171 /* ------------ path configuration ------------ */
173 #ifndef CONFIG_SYSROOT
174 # define CONFIG_SYSROOT ""
175 #endif
176 #ifndef CONFIG_TCCDIR
177 # define CONFIG_TCCDIR "/usr/local/lib/tcc"
178 #endif
179 #ifndef CONFIG_LDDIR
180 # define CONFIG_LDDIR "lib"
181 #endif
182 #ifdef CONFIG_TRIPLET
183 # define USE_TRIPLET(s) s "/" CONFIG_TRIPLET
184 # define ALSO_TRIPLET(s) USE_TRIPLET(s) ":" s
185 #else
186 # define USE_TRIPLET(s) s
187 # define ALSO_TRIPLET(s) s
188 #endif
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)
193 #endif
195 /* Below: {B} is substituted by CONFIG_TCCDIR (rsp. -B option) */
197 /* system include paths */
198 #ifndef CONFIG_TCC_TCCINCLUDEPATHS
199 # ifdef TCC_TARGET_PE
200 # define CONFIG_TCC_TCCINCLUDEPATHS "{B}/include;{B}/include/winapi"
201 # else
202 # define CONFIG_TCC_TCCINCLUDEPATHS "{B}/include"
203 # endif
204 #endif
206 #ifndef CONFIG_TCC_SYSINCLUDEPATHS
207 # ifndef TCC_TARGET_PE
208 # define CONFIG_TCC_SYSINCLUDEPATHS \
209 ALSO_TRIPLET(CONFIG_SYSROOT "/usr/local/include") \
210 ":" ALSO_TRIPLET(CONFIG_SYSROOT "/usr/include")
211 # endif
212 #endif
214 /* library search paths */
215 #ifndef CONFIG_TCC_LIBPATHS
216 # ifdef TCC_TARGET_PE
217 # define CONFIG_TCC_LIBPATHS "{B}/lib"
218 # else
219 # define CONFIG_TCC_LIBPATHS \
220 ALSO_TRIPLET(CONFIG_SYSROOT "/usr/" CONFIG_LDDIR) \
221 ":" ALSO_TRIPLET(CONFIG_SYSROOT "/" CONFIG_LDDIR) \
222 ":" ALSO_TRIPLET(CONFIG_SYSROOT "/usr/local/" CONFIG_LDDIR)
223 # endif
224 #endif
226 /* name of ELF interpreter */
227 #ifndef CONFIG_TCC_ELFINTERP
228 # if defined __FreeBSD__
229 # define CONFIG_TCC_ELFINTERP "/libexec/ld-elf.so.1"
230 # elif defined __FreeBSD_kernel__
231 # if defined(TCC_TARGET_X86_64)
232 # define CONFIG_TCC_ELFINTERP "/lib/ld-kfreebsd-x86-64.so.1"
233 # else
234 # define CONFIG_TCC_ELFINTERP "/lib/ld.so.1"
235 # endif
236 # elif defined __DragonFly__
237 # define CONFIG_TCC_ELFINTERP "/usr/libexec/ld-elf.so.2"
238 # elif defined __NetBSD__
239 # define CONFIG_TCC_ELFINTERP "/usr/libexec/ld.elf_so"
240 # elif defined __GNU__
241 # define CONFIG_TCC_ELFINTERP "/lib/ld.so"
242 # elif defined(TCC_TARGET_PE)
243 # define CONFIG_TCC_ELFINTERP "-"
244 # elif defined(TCC_UCLIBC)
245 # define CONFIG_TCC_ELFINTERP "/lib/ld-uClibc.so.0" /* is there a uClibc for x86_64 ? */
246 # elif defined TCC_TARGET_ARM64
247 # if defined(TCC_MUSL)
248 # define CONFIG_TCC_ELFINTERP "/lib/ld-musl-aarch64.so.1"
249 # else
250 # define CONFIG_TCC_ELFINTERP "/lib/ld-linux-aarch64.so.1"
251 # endif
252 # elif defined(TCC_TARGET_X86_64)
253 # if defined(TCC_MUSL)
254 # define CONFIG_TCC_ELFINTERP "/lib/ld-musl-x86_64.so.1"
255 # else
256 # define CONFIG_TCC_ELFINTERP "/lib64/ld-linux-x86-64.so.2"
257 # endif
258 # elif !defined(TCC_ARM_EABI)
259 # if defined(TCC_MUSL)
260 # define CONFIG_TCC_ELFINTERP "/lib/ld-musl-arm.so.1"
261 # else
262 # define CONFIG_TCC_ELFINTERP "/lib/ld-linux.so.2"
263 # endif
264 # endif
265 #endif
267 /* var elf_interp dans *-gen.c */
268 #ifdef CONFIG_TCC_ELFINTERP
269 # define DEFAULT_ELFINTERP(s) CONFIG_TCC_ELFINTERP
270 #else
271 # define DEFAULT_ELFINTERP(s) default_elfinterp(s)
272 #endif
274 /* (target specific) libtcc1.a */
275 #ifndef TCC_LIBTCC1
276 # define TCC_LIBTCC1 "libtcc1.a"
277 #endif
279 /* library to use with CONFIG_USE_LIBGCC instead of libtcc1.a */
280 #if defined CONFIG_USE_LIBGCC && !defined TCC_LIBGCC
281 #define TCC_LIBGCC USE_TRIPLET(CONFIG_SYSROOT "/" CONFIG_LDDIR) "/libgcc_s.so.1"
282 #endif
284 #ifdef TCC_TARGET_PE
285 #define PATHSEP ';'
286 #else
287 #define PATHSEP ':'
288 #endif
290 /* -------------------------------------------- */
292 #include "libtcc.h"
293 #include "elf.h"
294 #include "stab.h"
296 /* -------------------------------------------- */
298 #ifndef PUB_FUNC /* functions used by tcc.c but not in libtcc.h */
299 # define PUB_FUNC
300 #endif
302 #ifndef ONE_SOURCE
303 # define ONE_SOURCE 1
304 #endif
306 #if ONE_SOURCE
307 #define ST_INLN static inline
308 #define ST_FUNC static
309 #define ST_DATA static
310 #else
311 #define ST_INLN
312 #define ST_FUNC
313 #define ST_DATA extern
314 #endif
316 #ifdef TCC_PROFILE /* profile all functions */
317 # define static
318 #endif
320 /* -------------------------------------------- */
321 /* include the target specific definitions */
323 #define TARGET_DEFS_ONLY
324 #ifdef TCC_TARGET_I386
325 # include "i386-gen.c"
326 # include "i386-link.c"
327 #endif
328 #ifdef TCC_TARGET_X86_64
329 # include "x86_64-gen.c"
330 # include "x86_64-link.c"
331 #endif
332 #ifdef TCC_TARGET_ARM
333 # include "arm-gen.c"
334 # include "arm-link.c"
335 # include "arm-asm.c"
336 #endif
337 #ifdef TCC_TARGET_ARM64
338 # include "arm64-gen.c"
339 # include "arm64-link.c"
340 #endif
341 #ifdef TCC_TARGET_C67
342 # define TCC_TARGET_COFF
343 # include "coff.h"
344 # include "c67-gen.c"
345 # include "c67-link.c"
346 #endif
347 #undef TARGET_DEFS_ONLY
349 /* -------------------------------------------- */
351 #if PTR_SIZE == 8
352 # define ELFCLASSW ELFCLASS64
353 # define ElfW(type) Elf##64##_##type
354 # define ELFW(type) ELF##64##_##type
355 # define ElfW_Rel ElfW(Rela)
356 # define SHT_RELX SHT_RELA
357 # define REL_SECTION_FMT ".rela%s"
358 #else
359 # define ELFCLASSW ELFCLASS32
360 # define ElfW(type) Elf##32##_##type
361 # define ELFW(type) ELF##32##_##type
362 # define ElfW_Rel ElfW(Rel)
363 # define SHT_RELX SHT_REL
364 # define REL_SECTION_FMT ".rel%s"
365 #endif
366 /* target address type */
367 #define addr_t ElfW(Addr)
369 #if PTR_SIZE == 8 && !defined TCC_TARGET_PE
370 # define LONG_SIZE 8
371 #else
372 # define LONG_SIZE 4
373 #endif
375 /* -------------------------------------------- */
377 #define INCLUDE_STACK_SIZE 32
378 #define IFDEF_STACK_SIZE 64
379 #define VSTACK_SIZE 256
380 #define STRING_MAX_SIZE 1024
381 #define TOKSTR_MAX_SIZE 256
382 #define PACK_STACK_SIZE 8
384 #define TOK_HASH_SIZE 16384 /* must be a power of two */
385 #define TOK_ALLOC_INCR 512 /* must be a power of two */
386 #define TOK_MAX_SIZE 4 /* token max size in int unit when stored in string */
388 /* token symbol management */
389 typedef struct TokenSym {
390 struct TokenSym *hash_next;
391 struct Sym *sym_define; /* direct pointer to define */
392 struct Sym *sym_label; /* direct pointer to label */
393 struct Sym *sym_struct; /* direct pointer to structure */
394 struct Sym *sym_identifier; /* direct pointer to identifier */
395 int tok; /* token number */
396 int len;
397 char str[1];
398 } TokenSym;
400 #ifdef TCC_TARGET_PE
401 typedef unsigned short nwchar_t;
402 #else
403 typedef int nwchar_t;
404 #endif
406 typedef struct CString {
407 int size; /* size in bytes */
408 void *data; /* either 'char *' or 'nwchar_t *' */
409 int size_allocated;
410 } CString;
412 /* type definition */
413 typedef struct CType {
414 int t;
415 struct Sym *ref;
416 } CType;
418 /* constant value */
419 typedef union CValue {
420 long double ld;
421 double d;
422 float f;
423 uint64_t i;
424 struct {
425 int size;
426 const void *data;
427 } str;
428 int tab[LDOUBLE_SIZE/4];
429 } CValue;
431 /* value on stack */
432 typedef struct SValue {
433 CType type; /* type */
434 unsigned short r; /* register + flags */
435 unsigned short r2; /* second register, used for 'long long'
436 type. If not used, set to VT_CONST */
437 CValue c; /* constant, if VT_CONST */
438 struct Sym *sym; /* symbol, if (VT_SYM | VT_CONST), or if
439 result of unary() for an identifier. */
440 } SValue;
442 /* symbol attributes */
443 struct SymAttr {
444 unsigned short
445 aligned : 5, /* alignment as log2+1 (0 == unspecified) */
446 packed : 1,
447 weak : 1,
448 visibility : 2,
449 dllexport : 1,
450 dllimport : 1,
451 unused : 5;
454 /* function attributes or temporary attributes for parsing */
455 struct FuncAttr {
456 unsigned
457 func_call : 3, /* calling convention (0..5), see below */
458 func_type : 2, /* FUNC_OLD/NEW/ELLIPSIS */
459 func_body : 1, /* body was defined */
460 func_args : 8; /* PE __stdcall args */
463 /* GNUC attribute definition */
464 typedef struct AttributeDef {
465 struct SymAttr a;
466 struct FuncAttr f;
467 struct Section *section;
468 int alias_target; /* token */
469 int asm_label; /* associated asm label */
470 char attr_mode; /* __attribute__((__mode__(...))) */
471 } AttributeDef;
473 /* symbol management */
474 typedef struct Sym {
475 int v; /* symbol token */
476 unsigned short r; /* associated register or VT_CONST/VT_LOCAL and LVAL type */
477 struct SymAttr a; /* symbol attributes */
478 union {
479 struct {
480 int c; /* associated number or Elf symbol index */
481 union {
482 int sym_scope; /* scope level for locals */
483 int jnext; /* next jump label */
484 struct FuncAttr f; /* function attributes */
485 int auxtype; /* bitfield access type */
488 long long enum_val; /* enum constant if IS_ENUM_VAL */
489 int *d; /* define token stream */
491 CType type; /* associated type */
492 union {
493 struct Sym *next; /* next related symbol (for fields and anoms) */
494 int asm_label; /* associated asm label */
496 struct Sym *prev; /* prev symbol in stack */
497 struct Sym *prev_tok; /* previous symbol for this token */
498 } Sym;
500 /* section definition */
501 /* XXX: use directly ELF structure for parameters ? */
502 /* special flag to indicate that the section should not be linked to
503 the other ones */
504 #define SHF_PRIVATE 0x80000000
506 /* special flag, too */
507 #define SECTION_ABS ((void *)1)
509 typedef struct Section {
510 unsigned long data_offset; /* current data offset */
511 unsigned char *data; /* section data */
512 unsigned long data_allocated; /* used for realloc() handling */
513 int sh_name; /* elf section name (only used during output) */
514 int sh_num; /* elf section number */
515 int sh_type; /* elf section type */
516 int sh_flags; /* elf section flags */
517 int sh_info; /* elf section info */
518 int sh_addralign; /* elf section alignment */
519 int sh_entsize; /* elf entry size */
520 unsigned long sh_size; /* section size (only used during output) */
521 addr_t sh_addr; /* address at which the section is relocated */
522 unsigned long sh_offset; /* file offset */
523 int nb_hashed_syms; /* used to resize the hash table */
524 struct Section *link; /* link to another section */
525 struct Section *reloc; /* corresponding section for relocation, if any */
526 struct Section *hash; /* hash table for symbols */
527 struct Section *prev; /* previous section on section stack */
528 char name[1]; /* section name */
529 } Section;
531 typedef struct DLLReference {
532 int level;
533 void *handle;
534 char name[1];
535 } DLLReference;
537 /* -------------------------------------------------- */
539 #define SYM_STRUCT 0x40000000 /* struct/union/enum symbol space */
540 #define SYM_FIELD 0x20000000 /* struct/union field symbol space */
541 #define SYM_FIRST_ANOM 0x10000000 /* first anonymous sym */
543 /* stored in 'Sym->f.func_type' field */
544 #define FUNC_NEW 1 /* ansi function prototype */
545 #define FUNC_OLD 2 /* old function prototype */
546 #define FUNC_ELLIPSIS 3 /* ansi function prototype with ... */
548 /* stored in 'Sym->f.func_call' field */
549 #define FUNC_CDECL 0 /* standard c call */
550 #define FUNC_STDCALL 1 /* pascal c call */
551 #define FUNC_FASTCALL1 2 /* first param in %eax */
552 #define FUNC_FASTCALL2 3 /* first parameters in %eax, %edx */
553 #define FUNC_FASTCALL3 4 /* first parameter in %eax, %edx, %ecx */
554 #define FUNC_FASTCALLW 5 /* first parameter in %ecx, %edx */
556 /* field 'Sym.t' for macros */
557 #define MACRO_OBJ 0 /* object like macro */
558 #define MACRO_FUNC 1 /* function like macro */
560 /* field 'Sym.r' for C labels */
561 #define LABEL_DEFINED 0 /* label is defined */
562 #define LABEL_FORWARD 1 /* label is forward defined */
563 #define LABEL_DECLARED 2 /* label is declared but never used */
565 /* type_decl() types */
566 #define TYPE_ABSTRACT 1 /* type without variable */
567 #define TYPE_DIRECT 2 /* type with variable */
569 #define IO_BUF_SIZE 8192
571 typedef struct BufferedFile {
572 uint8_t *buf_ptr;
573 uint8_t *buf_end;
574 int fd;
575 struct BufferedFile *prev;
576 int line_num; /* current line number - here to simplify code */
577 int line_ref; /* tcc -E: last printed line */
578 int ifndef_macro; /* #ifndef macro / #endif search */
579 int ifndef_macro_saved; /* saved ifndef_macro */
580 int *ifdef_stack_ptr; /* ifdef_stack value at the start of the file */
581 int include_next_index; /* next search path */
582 char filename[1024]; /* filename */
583 char *true_filename; /* filename not modified by # line directive */
584 unsigned char unget[4];
585 unsigned char buffer[1]; /* extra size for CH_EOB char */
586 } BufferedFile;
588 #define CH_EOB '\\' /* end of buffer or '\0' char in file */
589 #define CH_EOF (-1) /* end of file */
591 /* used to record tokens */
592 typedef struct TokenString {
593 int *str;
594 int len;
595 int lastlen;
596 int allocated_len;
597 int last_line_num;
598 int save_line_num;
599 /* used to chain token-strings with begin/end_macro() */
600 struct TokenString *prev;
601 const int *prev_ptr;
602 char alloc;
603 } TokenString;
605 /* inline functions */
606 typedef struct InlineFunc {
607 TokenString *func_str;
608 Sym *sym;
609 char filename[1];
610 } InlineFunc;
612 /* include file cache, used to find files faster and also to eliminate
613 inclusion if the include file is protected by #ifndef ... #endif */
614 typedef struct CachedInclude {
615 int ifndef_macro;
616 int once;
617 int hash_next; /* -1 if none */
618 char filename[1]; /* path specified in #include */
619 } CachedInclude;
621 #define CACHED_INCLUDES_HASH_SIZE 32
623 #ifdef CONFIG_TCC_ASM
624 typedef struct ExprValue {
625 uint64_t v;
626 Sym *sym;
627 int pcrel;
628 } ExprValue;
630 #define MAX_ASM_OPERANDS 30
631 typedef struct ASMOperand {
632 int id; /* GCC 3 optional identifier (0 if number only supported */
633 char *constraint;
634 char asm_str[16]; /* computed asm string for operand */
635 SValue *vt; /* C value of the expression */
636 int ref_index; /* if >= 0, gives reference to a output constraint */
637 int input_index; /* if >= 0, gives reference to an input constraint */
638 int priority; /* priority, used to assign registers */
639 int reg; /* if >= 0, register number used for this operand */
640 int is_llong; /* true if double register value */
641 int is_memory; /* true if memory operand */
642 int is_rw; /* for '+' modifier */
643 } ASMOperand;
644 #endif
646 /* extra symbol attributes (not in symbol table) */
647 struct sym_attr {
648 unsigned got_offset;
649 unsigned plt_offset;
650 int plt_sym;
651 int dyn_index;
652 #ifdef TCC_TARGET_ARM
653 unsigned char plt_thumb_stub:1;
654 #endif
657 struct TCCState {
659 int verbose; /* if true, display some information during compilation */
660 int nostdinc; /* if true, no standard headers are added */
661 int nostdlib; /* if true, no standard libraries are added */
662 int nocommon; /* if true, do not use common symbols for .bss data */
663 int static_link; /* if true, static linking is performed */
664 int rdynamic; /* if true, all symbols are exported */
665 int symbolic; /* if true, resolve symbols in the current module first */
666 int alacarte_link; /* if true, only link in referenced objects from archive */
668 char *tcc_lib_path; /* CONFIG_TCCDIR or -B option */
669 char *soname; /* as specified on the command line (-soname) */
670 char *rpath; /* as specified on the command line (-Wl,-rpath=) */
671 int enable_new_dtags; /* ditto, (-Wl,--enable-new-dtags) */
673 /* output type, see TCC_OUTPUT_XXX */
674 int output_type;
675 /* output format, see TCC_OUTPUT_FORMAT_xxx */
676 int output_format;
678 /* C language options */
679 int char_is_unsigned;
680 int leading_underscore;
681 int ms_extensions; /* allow nested named struct w/o identifier behave like unnamed */
682 int dollars_in_identifiers; /* allows '$' char in identifiers */
683 int ms_bitfields; /* if true, emulate MS algorithm for aligning bitfields */
685 /* warning switches */
686 int warn_write_strings;
687 int warn_unsupported;
688 int warn_error;
689 int warn_none;
690 int warn_implicit_function_declaration;
691 int warn_gcc_compat;
693 /* compile with debug symbol (and use them if error during execution) */
694 int do_debug;
695 #ifdef CONFIG_TCC_BCHECK
696 /* compile with built-in memory and bounds checker */
697 int do_bounds_check;
698 #endif
699 #ifdef TCC_TARGET_ARM
700 enum float_abi float_abi; /* float ABI of the generated code*/
701 #endif
702 int run_test; /* nth test to run with -dt -run */
704 addr_t text_addr; /* address of text section */
705 int has_text_addr;
707 unsigned section_align; /* section alignment */
709 char *init_symbol; /* symbols to call at load-time (not used currently) */
710 char *fini_symbol; /* symbols to call at unload-time (not used currently) */
712 #ifdef TCC_TARGET_I386
713 int seg_size; /* 32. Can be 16 with i386 assembler (.code16) */
714 #endif
715 #ifdef TCC_TARGET_X86_64
716 int nosse; /* For -mno-sse support. */
717 #endif
719 /* array of all loaded dlls (including those referenced by loaded dlls) */
720 DLLReference **loaded_dlls;
721 int nb_loaded_dlls;
723 /* include paths, search order */
724 char **tccinclude_paths;
725 int nb_tccinclude_paths;
727 char **include_paths;
728 int nb_include_paths;
730 char **sysinclude_paths;
731 int nb_sysinclude_paths;
733 /* library paths */
734 char **library_paths;
735 int nb_library_paths;
737 /* crt?.o object path */
738 char **crt_paths;
739 int nb_crt_paths;
741 /* -include files */
742 char **cmd_include_files;
743 int nb_cmd_include_files;
745 /* error handling */
746 void *error_opaque;
747 void (*error_func)(void *opaque, const char *msg);
748 int error_set_jmp_enabled;
749 jmp_buf error_jmp_buf;
750 int nb_errors;
752 /* output file for preprocessing (-E) */
753 FILE *ppfp;
754 enum {
755 LINE_MACRO_OUTPUT_FORMAT_GCC,
756 LINE_MACRO_OUTPUT_FORMAT_NONE,
757 LINE_MACRO_OUTPUT_FORMAT_STD,
758 LINE_MACRO_OUTPUT_FORMAT_P10 = 11
759 } Pflag; /* -P switch */
760 char dflag; /* -dX value */
762 /* for -MD/-MF: collected dependencies for this compilation */
763 char **target_deps;
764 int nb_target_deps;
766 /* compilation */
767 BufferedFile *include_stack[INCLUDE_STACK_SIZE];
768 BufferedFile **include_stack_ptr;
770 int ifdef_stack[IFDEF_STACK_SIZE];
771 int *ifdef_stack_ptr;
773 /* included files enclosed with #ifndef MACRO */
774 int cached_includes_hash[CACHED_INCLUDES_HASH_SIZE];
775 CachedInclude **cached_includes;
776 int nb_cached_includes;
778 /* #pragma pack stack */
779 int pack_stack[PACK_STACK_SIZE];
780 int *pack_stack_ptr;
781 char **pragma_libs;
782 int nb_pragma_libs;
784 /* inline functions are stored as token lists and compiled last
785 only if referenced */
786 struct InlineFunc **inline_fns;
787 int nb_inline_fns;
789 /* sections */
790 Section **sections;
791 int nb_sections; /* number of sections, including first dummy section */
793 Section **priv_sections;
794 int nb_priv_sections; /* number of private sections */
796 /* got & plt handling */
797 Section *got;
798 Section *plt;
800 /* temporary dynamic symbol sections (for dll loading) */
801 Section *dynsymtab_section;
802 /* exported dynamic symbol section */
803 Section *dynsym;
804 /* copy of the global symtab_section variable */
805 Section *symtab;
806 /* extra attributes (eg. GOT/PLT value) for symtab symbols */
807 struct sym_attr *sym_attrs;
808 int nb_sym_attrs;
809 /* tiny assembler state */
810 Sym *asm_labels;
812 #ifdef TCC_TARGET_PE
813 /* PE info */
814 int pe_subsystem;
815 unsigned pe_characteristics;
816 unsigned pe_file_align;
817 unsigned pe_stack_size;
818 # ifdef TCC_TARGET_X86_64
819 Section *uw_pdata;
820 int uw_sym;
821 unsigned uw_offs;
822 # endif
823 #endif
825 #ifdef TCC_IS_NATIVE
826 const char *runtime_main;
827 void **runtime_mem;
828 int nb_runtime_mem;
829 #endif
831 /* used by main and tcc_parse_args only */
832 struct filespec **files; /* files seen on command line */
833 int nb_files; /* number thereof */
834 int nb_libraries; /* number of libs thereof */
835 int filetype;
836 char *outfile; /* output filename */
837 int option_r; /* option -r */
838 int do_bench; /* option -bench */
839 int gen_deps; /* option -MD */
840 char *deps_outfile; /* option -MF */
841 int option_pthread; /* -pthread option */
842 int argc;
843 char **argv;
846 struct filespec {
847 char type;
848 char alacarte;
849 char name[1];
852 /* The current value can be: */
853 #define VT_VALMASK 0x003f /* mask for value location, register or: */
854 #define VT_CONST 0x0030 /* constant in vc (must be first non register value) */
855 #define VT_LLOCAL 0x0031 /* lvalue, offset on stack */
856 #define VT_LOCAL 0x0032 /* offset on stack */
857 #define VT_CMP 0x0033 /* the value is stored in processor flags (in vc) */
858 #define VT_JMP 0x0034 /* value is the consequence of jmp true (even) */
859 #define VT_JMPI 0x0035 /* value is the consequence of jmp false (odd) */
860 #define VT_LVAL 0x0100 /* var is an lvalue */
861 #define VT_SYM 0x0200 /* a symbol value is added */
862 #define VT_MUSTCAST 0x0400 /* value must be casted to be correct (used for
863 char/short stored in integer registers) */
864 #define VT_MUSTBOUND 0x0800 /* bound checking must be done before
865 dereferencing value */
866 #define VT_BOUNDED 0x8000 /* value is bounded. The address of the
867 bounding function call point is in vc */
868 #define VT_LVAL_BYTE 0x1000 /* lvalue is a byte */
869 #define VT_LVAL_SHORT 0x2000 /* lvalue is a short */
870 #define VT_LVAL_UNSIGNED 0x4000 /* lvalue is unsigned */
871 #define VT_LVAL_TYPE (VT_LVAL_BYTE | VT_LVAL_SHORT | VT_LVAL_UNSIGNED)
873 /* types */
874 #define VT_BTYPE 0x000f /* mask for basic type */
875 #define VT_VOID 0 /* void type */
876 #define VT_BYTE 1 /* signed byte type */
877 #define VT_SHORT 2 /* short type */
878 #define VT_INT 3 /* integer type */
879 #define VT_LLONG 4 /* 64 bit integer */
880 #define VT_PTR 5 /* pointer */
881 #define VT_FUNC 6 /* function type */
882 #define VT_STRUCT 7 /* struct/union definition */
883 #define VT_FLOAT 8 /* IEEE float */
884 #define VT_DOUBLE 9 /* IEEE double */
885 #define VT_LDOUBLE 10 /* IEEE long double */
886 #define VT_BOOL 11 /* ISOC99 boolean type */
887 #define VT_QLONG 13 /* 128-bit integer. Only used for x86-64 ABI */
888 #define VT_QFLOAT 14 /* 128-bit float. Only used for x86-64 ABI */
890 #define VT_UNSIGNED 0x0010 /* unsigned type */
891 #define VT_DEFSIGN 0x0020 /* explicitly signed or unsigned */
892 #define VT_ARRAY 0x0040 /* array type (also has VT_PTR) */
893 #define VT_BITFIELD 0x0080 /* bitfield modifier */
894 #define VT_CONSTANT 0x0100 /* const modifier */
895 #define VT_VOLATILE 0x0200 /* volatile modifier */
896 #define VT_VLA 0x0400 /* VLA type (also has VT_PTR and VT_ARRAY) */
897 #define VT_LONG 0x0800 /* long type (also has VT_INT rsp. VT_LLONG) */
899 /* storage */
900 #define VT_EXTERN 0x00001000 /* extern definition */
901 #define VT_STATIC 0x00002000 /* static variable */
902 #define VT_TYPEDEF 0x00004000 /* typedef definition */
903 #define VT_INLINE 0x00008000 /* inline definition */
904 /* currently unused: 0x000[1248]0000 */
906 #define VT_STRUCT_SHIFT 20 /* shift for bitfield shift values (32 - 2*6) */
907 #define VT_STRUCT_MASK (((1 << (6+6)) - 1) << VT_STRUCT_SHIFT | VT_BITFIELD)
908 #define BIT_POS(t) (((t) >> VT_STRUCT_SHIFT) & 0x3f)
909 #define BIT_SIZE(t) (((t) >> (VT_STRUCT_SHIFT + 6)) & 0x3f)
911 #define VT_UNION (1 << VT_STRUCT_SHIFT | VT_STRUCT)
912 #define VT_ENUM (2 << VT_STRUCT_SHIFT) /* integral type is an enum really */
913 #define VT_ENUM_VAL (3 << VT_STRUCT_SHIFT) /* integral type is an enum constant really */
915 #define IS_ENUM(t) ((t & VT_STRUCT_MASK) == VT_ENUM)
916 #define IS_ENUM_VAL(t) ((t & VT_STRUCT_MASK) == VT_ENUM_VAL)
917 #define IS_UNION(t) ((t & (VT_STRUCT_MASK|VT_BTYPE)) == VT_UNION)
919 /* type mask (except storage) */
920 #define VT_STORAGE (VT_EXTERN | VT_STATIC | VT_TYPEDEF | VT_INLINE)
921 #define VT_TYPE (~(VT_STORAGE|VT_STRUCT_MASK))
923 /* token values */
925 /* warning: the following compare tokens depend on i386 asm code */
926 #define TOK_ULT 0x92
927 #define TOK_UGE 0x93
928 #define TOK_EQ 0x94
929 #define TOK_NE 0x95
930 #define TOK_ULE 0x96
931 #define TOK_UGT 0x97
932 #define TOK_Nset 0x98
933 #define TOK_Nclear 0x99
934 #define TOK_LT 0x9c
935 #define TOK_GE 0x9d
936 #define TOK_LE 0x9e
937 #define TOK_GT 0x9f
939 #define TOK_LAND 0xa0
940 #define TOK_LOR 0xa1
941 #define TOK_DEC 0xa2
942 #define TOK_MID 0xa3 /* inc/dec, to void constant */
943 #define TOK_INC 0xa4
944 #define TOK_UDIV 0xb0 /* unsigned division */
945 #define TOK_UMOD 0xb1 /* unsigned modulo */
946 #define TOK_PDIV 0xb2 /* fast division with undefined rounding for pointers */
948 /* tokens that carry values (in additional token string space / tokc) --> */
949 #define TOK_CCHAR 0xb3 /* char constant in tokc */
950 #define TOK_LCHAR 0xb4
951 #define TOK_CINT 0xb5 /* number in tokc */
952 #define TOK_CUINT 0xb6 /* unsigned int constant */
953 #define TOK_CLLONG 0xb7 /* long long constant */
954 #define TOK_CULLONG 0xb8 /* unsigned long long constant */
955 #define TOK_STR 0xb9 /* pointer to string in tokc */
956 #define TOK_LSTR 0xba
957 #define TOK_CFLOAT 0xbb /* float constant */
958 #define TOK_CDOUBLE 0xbc /* double constant */
959 #define TOK_CLDOUBLE 0xbd /* long double constant */
960 #define TOK_PPNUM 0xbe /* preprocessor number */
961 #define TOK_PPSTR 0xbf /* preprocessor string */
962 #define TOK_LINENUM 0xc0 /* line number info */
963 #define TOK_TWODOTS 0xa8 /* C++ token ? */
964 /* <-- */
966 #define TOK_UMULL 0xc2 /* unsigned 32x32 -> 64 mul */
967 #define TOK_ADDC1 0xc3 /* add with carry generation */
968 #define TOK_ADDC2 0xc4 /* add with carry use */
969 #define TOK_SUBC1 0xc5 /* add with carry generation */
970 #define TOK_SUBC2 0xc6 /* add with carry use */
971 #define TOK_ARROW 0xc7
972 #define TOK_DOTS 0xc8 /* three dots */
973 #define TOK_SHR 0xc9 /* unsigned shift right */
974 #define TOK_TWOSHARPS 0xca /* ## preprocessing token */
975 #define TOK_PLCHLDR 0xcb /* placeholder token as defined in C99 */
976 #define TOK_NOSUBST 0xcc /* means following token has already been pp'd */
977 #define TOK_PPJOIN 0xcd /* A '##' in the right position to mean pasting */
978 #define TOK_CLONG 0xce /* long constant */
979 #define TOK_CULONG 0xcf /* unsigned long constant */
981 #define TOK_SHL 0x01 /* shift left */
982 #define TOK_SAR 0x02 /* signed shift right */
984 /* assignment operators : normal operator or 0x80 */
985 #define TOK_A_MOD 0xa5
986 #define TOK_A_AND 0xa6
987 #define TOK_A_MUL 0xaa
988 #define TOK_A_ADD 0xab
989 #define TOK_A_SUB 0xad
990 #define TOK_A_DIV 0xaf
991 #define TOK_A_XOR 0xde
992 #define TOK_A_OR 0xfc
993 #define TOK_A_SHL 0x81
994 #define TOK_A_SAR 0x82
996 #define TOK_EOF (-1) /* end of file */
997 #define TOK_LINEFEED 10 /* line feed */
999 /* all identifiers and strings have token above that */
1000 #define TOK_IDENT 256
1002 #define DEF_ASM(x) DEF(TOK_ASM_ ## x, #x)
1003 #define TOK_ASM_int TOK_INT
1004 #define DEF_ASMDIR(x) DEF(TOK_ASMDIR_ ## x, "." #x)
1005 #define TOK_ASMDIR_FIRST TOK_ASMDIR_byte
1006 #define TOK_ASMDIR_LAST TOK_ASMDIR_section
1008 #if defined TCC_TARGET_I386 || defined TCC_TARGET_X86_64
1009 /* only used for i386 asm opcodes definitions */
1010 #define DEF_BWL(x) \
1011 DEF(TOK_ASM_ ## x ## b, #x "b") \
1012 DEF(TOK_ASM_ ## x ## w, #x "w") \
1013 DEF(TOK_ASM_ ## x ## l, #x "l") \
1014 DEF(TOK_ASM_ ## x, #x)
1015 #define DEF_WL(x) \
1016 DEF(TOK_ASM_ ## x ## w, #x "w") \
1017 DEF(TOK_ASM_ ## x ## l, #x "l") \
1018 DEF(TOK_ASM_ ## x, #x)
1019 #ifdef TCC_TARGET_X86_64
1020 # define DEF_BWLQ(x) \
1021 DEF(TOK_ASM_ ## x ## b, #x "b") \
1022 DEF(TOK_ASM_ ## x ## w, #x "w") \
1023 DEF(TOK_ASM_ ## x ## l, #x "l") \
1024 DEF(TOK_ASM_ ## x ## q, #x "q") \
1025 DEF(TOK_ASM_ ## x, #x)
1026 # define DEF_WLQ(x) \
1027 DEF(TOK_ASM_ ## x ## w, #x "w") \
1028 DEF(TOK_ASM_ ## x ## l, #x "l") \
1029 DEF(TOK_ASM_ ## x ## q, #x "q") \
1030 DEF(TOK_ASM_ ## x, #x)
1031 # define DEF_BWLX DEF_BWLQ
1032 # define DEF_WLX DEF_WLQ
1033 /* number of sizes + 1 */
1034 # define NBWLX 5
1035 #else
1036 # define DEF_BWLX DEF_BWL
1037 # define DEF_WLX DEF_WL
1038 /* number of sizes + 1 */
1039 # define NBWLX 4
1040 #endif
1042 #define DEF_FP1(x) \
1043 DEF(TOK_ASM_ ## f ## x ## s, "f" #x "s") \
1044 DEF(TOK_ASM_ ## fi ## x ## l, "fi" #x "l") \
1045 DEF(TOK_ASM_ ## f ## x ## l, "f" #x "l") \
1046 DEF(TOK_ASM_ ## fi ## x ## s, "fi" #x "s")
1048 #define DEF_FP(x) \
1049 DEF(TOK_ASM_ ## f ## x, "f" #x ) \
1050 DEF(TOK_ASM_ ## f ## x ## p, "f" #x "p") \
1051 DEF_FP1(x)
1053 #define DEF_ASMTEST(x,suffix) \
1054 DEF_ASM(x ## o ## suffix) \
1055 DEF_ASM(x ## no ## suffix) \
1056 DEF_ASM(x ## b ## suffix) \
1057 DEF_ASM(x ## c ## suffix) \
1058 DEF_ASM(x ## nae ## suffix) \
1059 DEF_ASM(x ## nb ## suffix) \
1060 DEF_ASM(x ## nc ## suffix) \
1061 DEF_ASM(x ## ae ## suffix) \
1062 DEF_ASM(x ## e ## suffix) \
1063 DEF_ASM(x ## z ## suffix) \
1064 DEF_ASM(x ## ne ## suffix) \
1065 DEF_ASM(x ## nz ## suffix) \
1066 DEF_ASM(x ## be ## suffix) \
1067 DEF_ASM(x ## na ## suffix) \
1068 DEF_ASM(x ## nbe ## suffix) \
1069 DEF_ASM(x ## a ## suffix) \
1070 DEF_ASM(x ## s ## suffix) \
1071 DEF_ASM(x ## ns ## suffix) \
1072 DEF_ASM(x ## p ## suffix) \
1073 DEF_ASM(x ## pe ## suffix) \
1074 DEF_ASM(x ## np ## suffix) \
1075 DEF_ASM(x ## po ## suffix) \
1076 DEF_ASM(x ## l ## suffix) \
1077 DEF_ASM(x ## nge ## suffix) \
1078 DEF_ASM(x ## nl ## suffix) \
1079 DEF_ASM(x ## ge ## suffix) \
1080 DEF_ASM(x ## le ## suffix) \
1081 DEF_ASM(x ## ng ## suffix) \
1082 DEF_ASM(x ## nle ## suffix) \
1083 DEF_ASM(x ## g ## suffix)
1085 #endif /* defined TCC_TARGET_I386 || defined TCC_TARGET_X86_64 */
1087 enum tcc_token {
1088 TOK_LAST = TOK_IDENT - 1
1089 #define DEF(id, str) ,id
1090 #include "tcctok.h"
1091 #undef DEF
1094 /* keywords: tok >= TOK_IDENT && tok < TOK_UIDENT */
1095 #define TOK_UIDENT TOK_DEFINE
1097 /* ------------ libtcc.c ------------ */
1099 /* use GNU C extensions */
1100 ST_DATA int gnu_ext;
1101 /* use Tiny C extensions */
1102 ST_DATA int tcc_ext;
1103 /* XXX: get rid of this ASAP */
1104 ST_DATA struct TCCState *tcc_state;
1106 /* public functions currently used by the tcc main function */
1107 ST_FUNC char *pstrcpy(char *buf, int buf_size, const char *s);
1108 ST_FUNC char *pstrcat(char *buf, int buf_size, const char *s);
1109 ST_FUNC char *pstrncpy(char *out, const char *in, size_t num);
1110 PUB_FUNC char *tcc_basename(const char *name);
1111 PUB_FUNC char *tcc_fileextension (const char *name);
1113 #ifndef MEM_DEBUG
1114 PUB_FUNC void tcc_free(void *ptr);
1115 PUB_FUNC void *tcc_malloc(unsigned long size);
1116 PUB_FUNC void *tcc_mallocz(unsigned long size);
1117 PUB_FUNC void *tcc_realloc(void *ptr, unsigned long size);
1118 PUB_FUNC char *tcc_strdup(const char *str);
1119 #else
1120 #define tcc_free(ptr) tcc_free_debug(ptr)
1121 #define tcc_malloc(size) tcc_malloc_debug(size, __FILE__, __LINE__)
1122 #define tcc_mallocz(size) tcc_mallocz_debug(size, __FILE__, __LINE__)
1123 #define tcc_realloc(ptr,size) tcc_realloc_debug(ptr, size, __FILE__, __LINE__)
1124 #define tcc_strdup(str) tcc_strdup_debug(str, __FILE__, __LINE__)
1125 PUB_FUNC void tcc_free_debug(void *ptr);
1126 PUB_FUNC void *tcc_malloc_debug(unsigned long size, const char *file, int line);
1127 PUB_FUNC void *tcc_mallocz_debug(unsigned long size, const char *file, int line);
1128 PUB_FUNC void *tcc_realloc_debug(void *ptr, unsigned long size, const char *file, int line);
1129 PUB_FUNC char *tcc_strdup_debug(const char *str, const char *file, int line);
1130 #endif
1132 #define free(p) use_tcc_free(p)
1133 #define malloc(s) use_tcc_malloc(s)
1134 #define realloc(p, s) use_tcc_realloc(p, s)
1135 #undef strdup
1136 #define strdup(s) use_tcc_strdup(s)
1137 PUB_FUNC void tcc_memcheck(void);
1138 PUB_FUNC void tcc_error_noabort(const char *fmt, ...);
1139 PUB_FUNC NORETURN void tcc_error(const char *fmt, ...);
1140 PUB_FUNC void tcc_warning(const char *fmt, ...);
1142 /* other utilities */
1143 ST_FUNC void dynarray_add(void *ptab, int *nb_ptr, void *data);
1144 ST_FUNC void dynarray_reset(void *pp, int *n);
1145 ST_INLN void cstr_ccat(CString *cstr, int ch);
1146 ST_FUNC void cstr_cat(CString *cstr, const char *str, int len);
1147 ST_FUNC void cstr_wccat(CString *cstr, int ch);
1148 ST_FUNC void cstr_new(CString *cstr);
1149 ST_FUNC void cstr_free(CString *cstr);
1150 ST_FUNC void cstr_reset(CString *cstr);
1152 ST_INLN void sym_free(Sym *sym);
1153 ST_FUNC Sym *sym_push2(Sym **ps, int v, int t, int c);
1154 ST_FUNC Sym *sym_find2(Sym *s, int v);
1155 ST_FUNC Sym *sym_push(int v, CType *type, int r, int c);
1156 ST_FUNC void sym_pop(Sym **ptop, Sym *b, int keep);
1157 ST_INLN Sym *struct_find(int v);
1158 ST_INLN Sym *sym_find(int v);
1159 ST_FUNC Sym *global_identifier_push(int v, int t, int c);
1161 ST_FUNC void tcc_open_bf(TCCState *s1, const char *filename, int initlen);
1162 ST_FUNC int tcc_open(TCCState *s1, const char *filename);
1163 ST_FUNC void tcc_close(void);
1165 ST_FUNC int tcc_add_file_internal(TCCState *s1, const char *filename, int flags);
1166 /* flags: */
1167 #define AFF_PRINT_ERROR 0x10 /* print error if file not found */
1168 #define AFF_REFERENCED_DLL 0x20 /* load a referenced dll from another dll */
1169 #define AFF_TYPE_BIN 0x40 /* file to add is binary */
1170 /* s->filetype: */
1171 #define AFF_TYPE_NONE 0
1172 #define AFF_TYPE_C 1
1173 #define AFF_TYPE_ASM 2
1174 #define AFF_TYPE_ASMPP 3
1175 #define AFF_TYPE_LIB 4
1176 /* values from tcc_object_type(...) */
1177 #define AFF_BINTYPE_REL 1
1178 #define AFF_BINTYPE_DYN 2
1179 #define AFF_BINTYPE_AR 3
1180 #define AFF_BINTYPE_C67 4
1183 ST_FUNC int tcc_add_crt(TCCState *s, const char *filename);
1184 ST_FUNC int tcc_add_dll(TCCState *s, const char *filename, int flags);
1185 ST_FUNC void tcc_add_pragma_libs(TCCState *s1);
1186 PUB_FUNC int tcc_add_library_err(TCCState *s, const char *f);
1187 PUB_FUNC void tcc_print_stats(TCCState *s, unsigned total_time);
1188 PUB_FUNC int tcc_parse_args(TCCState *s, int *argc, char ***argv, int optind);
1189 #ifdef _WIN32
1190 ST_FUNC char *normalize_slashes(char *path);
1191 #endif
1193 /* tcc_parse_args return codes: */
1194 #define OPT_HELP 1
1195 #define OPT_HELP2 2
1196 #define OPT_V 3
1197 #define OPT_PRINT_DIRS 4
1198 #define OPT_AR 5
1199 #define OPT_IMPDEF 6
1200 #define OPT_M32 32
1201 #define OPT_M64 64
1203 /* ------------ tccpp.c ------------ */
1205 ST_DATA struct BufferedFile *file;
1206 ST_DATA int ch, tok;
1207 ST_DATA CValue tokc;
1208 ST_DATA const int *macro_ptr;
1209 ST_DATA int parse_flags;
1210 ST_DATA int tok_flags;
1211 ST_DATA CString tokcstr; /* current parsed string, if any */
1213 /* display benchmark infos */
1214 ST_DATA int total_lines;
1215 ST_DATA int total_bytes;
1216 ST_DATA int tok_ident;
1217 ST_DATA TokenSym **table_ident;
1219 #define TOK_FLAG_BOL 0x0001 /* beginning of line before */
1220 #define TOK_FLAG_BOF 0x0002 /* beginning of file before */
1221 #define TOK_FLAG_ENDIF 0x0004 /* a endif was found matching starting #ifdef */
1222 #define TOK_FLAG_EOF 0x0008 /* end of file */
1224 #define PARSE_FLAG_PREPROCESS 0x0001 /* activate preprocessing */
1225 #define PARSE_FLAG_TOK_NUM 0x0002 /* return numbers instead of TOK_PPNUM */
1226 #define PARSE_FLAG_LINEFEED 0x0004 /* line feed is returned as a
1227 token. line feed is also
1228 returned at eof */
1229 #define PARSE_FLAG_ASM_FILE 0x0008 /* we processing an asm file: '#' can be used for line comment, etc. */
1230 #define PARSE_FLAG_SPACES 0x0010 /* next() returns space tokens (for -E) */
1231 #define PARSE_FLAG_ACCEPT_STRAYS 0x0020 /* next() returns '\\' token */
1232 #define PARSE_FLAG_TOK_STR 0x0040 /* return parsed strings instead of TOK_PPSTR */
1234 /* isidnum_table flags: */
1235 #define IS_SPC 1
1236 #define IS_ID 2
1237 #define IS_NUM 4
1239 ST_FUNC TokenSym *tok_alloc(const char *str, int len);
1240 ST_FUNC const char *get_tok_str(int v, CValue *cv);
1241 ST_FUNC void begin_macro(TokenString *str, int alloc);
1242 ST_FUNC void end_macro(void);
1243 ST_FUNC int set_idnum(int c, int val);
1244 ST_INLN void tok_str_new(TokenString *s);
1245 ST_FUNC TokenString *tok_str_alloc(void);
1246 ST_FUNC void tok_str_free(TokenString *s);
1247 ST_FUNC void tok_str_free_str(int *str);
1248 ST_FUNC void tok_str_add(TokenString *s, int t);
1249 ST_FUNC void tok_str_add_tok(TokenString *s);
1250 ST_INLN void define_push(int v, int macro_type, int *str, Sym *first_arg);
1251 ST_FUNC void define_undef(Sym *s);
1252 ST_INLN Sym *define_find(int v);
1253 ST_FUNC void free_defines(Sym *b);
1254 ST_FUNC Sym *label_find(int v);
1255 ST_FUNC Sym *label_push(Sym **ptop, int v, int flags);
1256 ST_FUNC void label_pop(Sym **ptop, Sym *slast, int keep);
1257 ST_FUNC void parse_define(void);
1258 ST_FUNC void preprocess(int is_bof);
1259 ST_FUNC void next_nomacro(void);
1260 ST_FUNC void next(void);
1261 ST_INLN void unget_tok(int last_tok);
1262 ST_FUNC void preprocess_start(TCCState *s1, int is_asm);
1263 ST_FUNC void preprocess_end(TCCState *s1);
1264 ST_FUNC void tccpp_new(TCCState *s);
1265 ST_FUNC void tccpp_delete(TCCState *s);
1266 ST_FUNC int tcc_preprocess(TCCState *s1);
1267 ST_FUNC void skip(int c);
1268 ST_FUNC NORETURN void expect(const char *msg);
1270 /* space excluding newline */
1271 static inline int is_space(int ch) {
1272 return ch == ' ' || ch == '\t' || ch == '\v' || ch == '\f' || ch == '\r';
1274 static inline int isid(int c) {
1275 return (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') || c == '_';
1277 static inline int isnum(int c) {
1278 return c >= '0' && c <= '9';
1280 static inline int isoct(int c) {
1281 return c >= '0' && c <= '7';
1283 static inline int toup(int c) {
1284 return (c >= 'a' && c <= 'z') ? c - 'a' + 'A' : c;
1287 /* ------------ tccgen.c ------------ */
1289 #define SYM_POOL_NB (8192 / sizeof(Sym))
1290 ST_DATA Sym *sym_free_first;
1291 ST_DATA void **sym_pools;
1292 ST_DATA int nb_sym_pools;
1294 ST_DATA Sym *global_stack;
1295 ST_DATA Sym *local_stack;
1296 ST_DATA Sym *local_label_stack;
1297 ST_DATA Sym *global_label_stack;
1298 ST_DATA Sym *define_stack;
1299 ST_DATA CType char_pointer_type, func_old_type, int_type, size_type;
1300 ST_DATA SValue __vstack[1+/*to make bcheck happy*/ VSTACK_SIZE], *vtop, *pvtop;
1301 #define vstack (__vstack + 1)
1302 ST_DATA int rsym, anon_sym, ind, loc;
1304 ST_DATA int const_wanted; /* true if constant wanted */
1305 ST_DATA int nocode_wanted; /* true if no code generation wanted for an expression */
1306 ST_DATA int global_expr; /* true if compound literals must be allocated globally (used during initializers parsing */
1307 ST_DATA CType func_vt; /* current function return type (used by return instruction) */
1308 ST_DATA int func_var; /* true if current function is variadic */
1309 ST_DATA int func_vc;
1310 ST_DATA int last_line_num, last_ind, func_ind; /* debug last line number and pc */
1311 ST_DATA const char *funcname;
1312 ST_DATA int g_debug;
1314 ST_FUNC void tcc_debug_start(TCCState *s1);
1315 ST_FUNC void tcc_debug_end(TCCState *s1);
1316 ST_FUNC void tcc_debug_funcstart(TCCState *s1, Sym *sym);
1317 ST_FUNC void tcc_debug_funcend(TCCState *s1, int size);
1318 ST_FUNC void tcc_debug_line(TCCState *s1);
1320 ST_FUNC int tccgen_compile(TCCState *s1);
1321 ST_FUNC void free_inline_functions(TCCState *s);
1322 ST_FUNC void check_vstack(void);
1324 ST_INLN int is_float(int t);
1325 ST_FUNC int ieee_finite(double d);
1326 ST_FUNC void test_lvalue(void);
1327 ST_FUNC void vpushi(int v);
1328 ST_FUNC Sym *external_global_sym(int v, CType *type, int r);
1329 ST_FUNC void vset(CType *type, int r, int v);
1330 ST_FUNC void vswap(void);
1331 ST_FUNC void vpush_global_sym(CType *type, int v);
1332 ST_FUNC void vrote(SValue *e, int n);
1333 ST_FUNC void vrott(int n);
1334 ST_FUNC void vrotb(int n);
1335 #ifdef TCC_TARGET_ARM
1336 ST_FUNC int get_reg_ex(int rc, int rc2);
1337 ST_FUNC void lexpand_nr(void);
1338 #endif
1339 ST_FUNC void vpushv(SValue *v);
1340 ST_FUNC void save_reg(int r);
1341 ST_FUNC void save_reg_upstack(int r, int n);
1342 ST_FUNC int get_reg(int rc);
1343 ST_FUNC void save_regs(int n);
1344 ST_FUNC void gaddrof(void);
1345 ST_FUNC int gv(int rc);
1346 ST_FUNC void gv2(int rc1, int rc2);
1347 ST_FUNC void vpop(void);
1348 ST_FUNC void gen_op(int op);
1349 ST_FUNC int type_size(CType *type, int *a);
1350 ST_FUNC void mk_pointer(CType *type);
1351 ST_FUNC void vstore(void);
1352 ST_FUNC void inc(int post, int c);
1353 ST_FUNC void parse_mult_str (CString *astr, const char *msg);
1354 ST_FUNC void parse_asm_str(CString *astr);
1355 ST_FUNC int lvalue_type(int t);
1356 ST_FUNC void indir(void);
1357 ST_FUNC void unary(void);
1358 ST_FUNC void expr_prod(void);
1359 ST_FUNC void expr_sum(void);
1360 ST_FUNC void gexpr(void);
1361 ST_FUNC int expr_const(void);
1362 #if defined CONFIG_TCC_BCHECK || defined TCC_TARGET_C67
1363 ST_FUNC Sym *get_sym_ref(CType *type, Section *sec, unsigned long offset, unsigned long size);
1364 #endif
1365 #if defined TCC_TARGET_X86_64 && !defined TCC_TARGET_PE
1366 ST_FUNC int classify_x86_64_va_arg(CType *ty);
1367 #endif
1369 /* ------------ tccelf.c ------------ */
1371 #define TCC_OUTPUT_FORMAT_ELF 0 /* default output format: ELF */
1372 #define TCC_OUTPUT_FORMAT_BINARY 1 /* binary image output */
1373 #define TCC_OUTPUT_FORMAT_COFF 2 /* COFF */
1375 #define ARMAG "!<arch>\012" /* For COFF and a.out archives */
1377 typedef struct {
1378 unsigned int n_strx; /* index into string table of name */
1379 unsigned char n_type; /* type of symbol */
1380 unsigned char n_other; /* misc info (usually empty) */
1381 unsigned short n_desc; /* description field */
1382 unsigned int n_value; /* value of symbol */
1383 } Stab_Sym;
1385 ST_DATA Section *text_section, *data_section, *bss_section; /* predefined sections */
1386 ST_DATA Section *common_section;
1387 ST_DATA Section *cur_text_section; /* current section where function code is generated */
1388 #ifdef CONFIG_TCC_ASM
1389 ST_DATA Section *last_text_section; /* to handle .previous asm directive */
1390 #endif
1391 #ifdef CONFIG_TCC_BCHECK
1392 /* bound check related sections */
1393 ST_DATA Section *bounds_section; /* contains global data bound description */
1394 ST_DATA Section *lbounds_section; /* contains local data bound description */
1395 ST_FUNC void tccelf_bounds_new(TCCState *s);
1396 #endif
1397 /* symbol sections */
1398 ST_DATA Section *symtab_section, *strtab_section;
1399 /* debug sections */
1400 ST_DATA Section *stab_section, *stabstr_section;
1402 ST_FUNC void tccelf_new(TCCState *s);
1403 ST_FUNC void tccelf_delete(TCCState *s);
1404 ST_FUNC void tccelf_stab_new(TCCState *s);
1406 ST_FUNC Section *new_section(TCCState *s1, const char *name, int sh_type, int sh_flags);
1407 ST_FUNC void section_realloc(Section *sec, unsigned long new_size);
1408 ST_FUNC size_t section_add(Section *sec, addr_t size, int align);
1409 ST_FUNC void *section_ptr_add(Section *sec, addr_t size);
1410 ST_FUNC void section_reserve(Section *sec, unsigned long size);
1411 ST_FUNC Section *find_section(TCCState *s1, const char *name);
1412 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);
1414 ST_FUNC void put_extern_sym2(Sym *sym, Section *section, addr_t value, unsigned long size, int can_add_underscore);
1415 ST_FUNC void put_extern_sym(Sym *sym, Section *section, addr_t value, unsigned long size);
1416 #if PTR_SIZE == 4
1417 ST_FUNC void greloc(Section *s, Sym *sym, unsigned long offset, int type);
1418 #endif
1419 ST_FUNC void greloca(Section *s, Sym *sym, unsigned long offset, int type, addr_t addend);
1421 ST_FUNC int put_elf_str(Section *s, const char *sym);
1422 ST_FUNC int put_elf_sym(Section *s, addr_t value, unsigned long size, int info, int other, int shndx, const char *name);
1423 ST_FUNC int set_elf_sym(Section *s, addr_t value, unsigned long size, int info, int other, int shndx, const char *name);
1424 ST_FUNC int find_elf_sym(Section *s, const char *name);
1425 ST_FUNC void put_elf_reloc(Section *symtab, Section *s, unsigned long offset, int type, int symbol);
1426 ST_FUNC void put_elf_reloca(Section *symtab, Section *s, unsigned long offset, int type, int symbol, addr_t addend);
1428 ST_FUNC void put_stabs(const char *str, int type, int other, int desc, unsigned long value);
1429 ST_FUNC void put_stabs_r(const char *str, int type, int other, int desc, unsigned long value, Section *sec, int sym_index);
1430 ST_FUNC void put_stabn(int type, int other, int desc, int value);
1431 ST_FUNC void put_stabd(int type, int other, int desc);
1433 ST_FUNC void relocate_common_syms(void);
1434 ST_FUNC void relocate_syms(TCCState *s1, Section *symtab, int do_resolve);
1435 ST_FUNC void relocate_section(TCCState *s1, Section *s);
1437 ST_FUNC void tcc_add_linker_symbols(TCCState *s1);
1438 ST_FUNC int tcc_object_type(int fd, ElfW(Ehdr) *h);
1439 ST_FUNC int tcc_load_object_file(TCCState *s1, int fd, unsigned long file_offset);
1440 ST_FUNC int tcc_load_archive(TCCState *s1, int fd);
1441 ST_FUNC void tcc_add_bcheck(TCCState *s1);
1442 ST_FUNC void tcc_add_runtime(TCCState *s1);
1444 ST_FUNC void build_got_entries(TCCState *s1);
1445 ST_FUNC struct sym_attr *get_sym_attr(TCCState *s1, int index, int alloc);
1446 ST_FUNC void squeeze_multi_relocs(Section *sec, size_t oldrelocoffset);
1448 ST_FUNC addr_t get_elf_sym_addr(TCCState *s, const char *name, int err);
1449 #if defined TCC_IS_NATIVE || defined TCC_TARGET_PE
1450 ST_FUNC void *tcc_get_symbol_err(TCCState *s, const char *name);
1451 #endif
1453 #ifndef TCC_TARGET_PE
1454 ST_FUNC int tcc_load_dll(TCCState *s1, int fd, const char *filename, int level);
1455 ST_FUNC int tcc_load_ldscript(TCCState *s1);
1456 ST_FUNC uint8_t *parse_comment(uint8_t *p);
1457 ST_FUNC void minp(void);
1458 ST_INLN void inp(void);
1459 ST_FUNC int handle_eob(void);
1460 #endif
1462 /* ------------ xxx-link.c ------------ */
1464 /* Whether to generate a GOT/PLT entry and when. NO_GOTPLT_ENTRY is first so
1465 that unknown relocation don't create a GOT or PLT entry */
1466 enum gotplt_entry {
1467 NO_GOTPLT_ENTRY, /* never generate (eg. GLOB_DAT & JMP_SLOT relocs) */
1468 BUILD_GOT_ONLY, /* only build GOT (eg. TPOFF relocs) */
1469 AUTO_GOTPLT_ENTRY, /* generate if sym is UNDEF */
1470 ALWAYS_GOTPLT_ENTRY /* always generate (eg. PLTOFF relocs) */
1473 ST_FUNC int code_reloc (int reloc_type);
1474 ST_FUNC int gotplt_entry_type (int reloc_type);
1475 ST_FUNC unsigned create_plt_entry(TCCState *s1, unsigned got_offset, struct sym_attr *attr);
1476 ST_FUNC void relocate_init(Section *sr);
1477 ST_FUNC void relocate(TCCState *s1, ElfW_Rel *rel, int type, unsigned char *ptr, addr_t addr, addr_t val);
1478 ST_FUNC void relocate_plt(TCCState *s1);
1480 /* ------------ xxx-gen.c ------------ */
1482 ST_DATA const int reg_classes[NB_REGS];
1484 ST_FUNC void gsym_addr(int t, int a);
1485 ST_FUNC void gsym(int t);
1486 ST_FUNC void load(int r, SValue *sv);
1487 ST_FUNC void store(int r, SValue *v);
1488 ST_FUNC int gfunc_sret(CType *vt, int variadic, CType *ret, int *align, int *regsize);
1489 ST_FUNC void gfunc_call(int nb_args);
1490 ST_FUNC void gfunc_prolog(CType *func_type);
1491 ST_FUNC void gfunc_epilog(void);
1492 ST_FUNC int gjmp(int t);
1493 ST_FUNC void gjmp_addr(int a);
1494 ST_FUNC int gtst(int inv, int t);
1495 #if defined TCC_TARGET_I386 || defined TCC_TARGET_X86_64
1496 ST_FUNC void gtst_addr(int inv, int a);
1497 #else
1498 #define gtst_addr(inv, a) gsym_addr(gtst(inv, 0), a)
1499 #endif
1500 ST_FUNC void gen_opi(int op);
1501 ST_FUNC void gen_opf(int op);
1502 ST_FUNC void gen_cvt_ftoi(int t);
1503 ST_FUNC void gen_cvt_ftof(int t);
1504 ST_FUNC void ggoto(void);
1505 #ifndef TCC_TARGET_C67
1506 ST_FUNC void o(unsigned int c);
1507 #endif
1508 #ifndef TCC_TARGET_ARM
1509 ST_FUNC void gen_cvt_itof(int t);
1510 #endif
1511 ST_FUNC void gen_vla_sp_save(int addr);
1512 ST_FUNC void gen_vla_sp_restore(int addr);
1513 ST_FUNC void gen_vla_alloc(CType *type, int align);
1515 static inline uint16_t read16le(unsigned char *p) {
1516 return p[0] | (uint16_t)p[1] << 8;
1518 static inline void write16le(unsigned char *p, uint16_t x) {
1519 p[0] = x & 255; p[1] = x >> 8 & 255;
1521 static inline uint32_t read32le(unsigned char *p) {
1522 return read16le(p) | (uint32_t)read16le(p + 2) << 16;
1524 static inline void write32le(unsigned char *p, uint32_t x) {
1525 write16le(p, x); write16le(p + 2, x >> 16);
1527 static inline void add32le(unsigned char *p, int32_t x) {
1528 write32le(p, read32le(p) + x);
1530 static inline uint64_t read64le(unsigned char *p) {
1531 return read32le(p) | (uint64_t)read32le(p + 4) << 32;
1533 static inline void write64le(unsigned char *p, uint64_t x) {
1534 write32le(p, x); write32le(p + 4, x >> 32);
1536 static inline void add64le(unsigned char *p, int64_t x) {
1537 write64le(p, read64le(p) + x);
1540 /* ------------ i386-gen.c ------------ */
1541 #if defined TCC_TARGET_I386 || defined TCC_TARGET_X86_64
1542 ST_FUNC void g(int c);
1543 ST_FUNC void gen_le16(int c);
1544 ST_FUNC void gen_le32(int c);
1545 ST_FUNC void gen_addr32(int r, Sym *sym, int c);
1546 ST_FUNC void gen_addrpc32(int r, Sym *sym, int c);
1547 #endif
1549 #ifdef CONFIG_TCC_BCHECK
1550 ST_FUNC void gen_bounded_ptr_add(void);
1551 ST_FUNC void gen_bounded_ptr_deref(void);
1552 #endif
1554 /* ------------ x86_64-gen.c ------------ */
1555 #ifdef TCC_TARGET_X86_64
1556 ST_FUNC void gen_addr64(int r, Sym *sym, int64_t c);
1557 ST_FUNC void gen_opl(int op);
1558 #endif
1560 /* ------------ arm-gen.c ------------ */
1561 #ifdef TCC_TARGET_ARM
1562 #if defined(TCC_ARM_EABI) && !defined(CONFIG_TCC_ELFINTERP)
1563 PUB_FUNC const char *default_elfinterp(struct TCCState *s);
1564 #endif
1565 ST_FUNC void arm_init(struct TCCState *s);
1566 ST_FUNC void gen_cvt_itof1(int t);
1567 #endif
1569 /* ------------ arm64-gen.c ------------ */
1570 #ifdef TCC_TARGET_ARM64
1571 ST_FUNC void gen_cvt_sxtw(void);
1572 ST_FUNC void gen_opl(int op);
1573 ST_FUNC void gfunc_return(CType *func_type);
1574 ST_FUNC void gen_va_start(void);
1575 ST_FUNC void gen_va_arg(CType *t);
1576 ST_FUNC void gen_clear_cache(void);
1577 #endif
1579 /* ------------ c67-gen.c ------------ */
1580 #ifdef TCC_TARGET_C67
1581 #endif
1583 /* ------------ tcccoff.c ------------ */
1585 #ifdef TCC_TARGET_COFF
1586 ST_FUNC int tcc_output_coff(TCCState *s1, FILE *f);
1587 ST_FUNC int tcc_load_coff(TCCState * s1, int fd);
1588 #endif
1590 /* ------------ tccasm.c ------------ */
1591 ST_FUNC void asm_instr(void);
1592 ST_FUNC void asm_global_instr(void);
1593 #ifdef CONFIG_TCC_ASM
1594 ST_FUNC int find_constraint(ASMOperand *operands, int nb_operands, const char *name, const char **pp);
1595 ST_FUNC Sym* get_asm_sym(int name, Sym *csym);
1596 ST_FUNC void asm_expr(TCCState *s1, ExprValue *pe);
1597 ST_FUNC int asm_int_expr(TCCState *s1);
1598 ST_FUNC int tcc_assemble(TCCState *s1, int do_preprocess);
1599 /* ------------ i386-asm.c ------------ */
1600 ST_FUNC void gen_expr32(ExprValue *pe);
1601 #ifdef TCC_TARGET_X86_64
1602 ST_FUNC void gen_expr64(ExprValue *pe);
1603 #endif
1604 ST_FUNC void asm_opcode(TCCState *s1, int opcode);
1605 ST_FUNC int asm_parse_regvar(int t);
1606 ST_FUNC void asm_compute_constraints(ASMOperand *operands, int nb_operands, int nb_outputs, const uint8_t *clobber_regs, int *pout_reg);
1607 ST_FUNC void subst_asm_operand(CString *add_str, SValue *sv, int modifier);
1608 ST_FUNC void asm_gen_code(ASMOperand *operands, int nb_operands, int nb_outputs, int is_output, uint8_t *clobber_regs, int out_reg);
1609 ST_FUNC void asm_clobber(uint8_t *clobber_regs, const char *str);
1610 #endif
1612 /* ------------ tccpe.c -------------- */
1613 #ifdef TCC_TARGET_PE
1614 ST_FUNC int pe_load_file(struct TCCState *s1, const char *filename, int fd);
1615 ST_FUNC int pe_output_file(TCCState * s1, const char *filename);
1616 ST_FUNC int pe_putimport(TCCState *s1, int dllindex, const char *name, addr_t value);
1617 #ifndef TCC_TARGET_ARM
1618 ST_FUNC SValue *pe_getimport(SValue *sv, SValue *v2);
1619 #endif
1620 #ifdef TCC_TARGET_X86_64
1621 ST_FUNC void pe_add_unwind_data(unsigned start, unsigned end, unsigned stack);
1622 #endif
1623 PUB_FUNC int tcc_get_dllexports(const char *filename, char **pp);
1624 /* symbol properties stored in Elf32_Sym->st_other */
1625 # define ST_PE_EXPORT 0x10
1626 # define ST_PE_IMPORT 0x20
1627 # define ST_PE_STDCALL 0x40
1628 #endif
1630 /* ------------ tccrun.c ----------------- */
1631 #ifdef TCC_IS_NATIVE
1632 #ifdef CONFIG_TCC_STATIC
1633 #define RTLD_LAZY 0x001
1634 #define RTLD_NOW 0x002
1635 #define RTLD_GLOBAL 0x100
1636 #define RTLD_DEFAULT NULL
1637 /* dummy function for profiling */
1638 ST_FUNC void *dlopen(const char *filename, int flag);
1639 ST_FUNC void dlclose(void *p);
1640 ST_FUNC const char *dlerror(void);
1641 ST_FUNC void *dlsym(void *handle, const char *symbol);
1642 #endif
1643 #ifdef CONFIG_TCC_BACKTRACE
1644 ST_DATA int rt_num_callers;
1645 ST_DATA const char **rt_bound_error_msg;
1646 ST_DATA void *rt_prog_main;
1647 ST_FUNC void tcc_set_num_callers(int n);
1648 #endif
1649 ST_FUNC void tcc_run_free(TCCState *s1);
1650 #endif
1652 /* ------------ tcctools.c ----------------- */
1653 #if 0 /* included in tcc.c */
1654 ST_FUNC int tcc_tool_ar(TCCState *s, int argc, char **argv);
1655 #ifdef TCC_TARGET_PE
1656 ST_FUNC int tcc_tool_impdef(TCCState *s, int argc, char **argv);
1657 #endif
1658 ST_FUNC void tcc_tool_cross(TCCState *s, char **argv, int option);
1659 ST_FUNC void gen_makedeps(TCCState *s, const char *target, const char *filename);
1660 #endif
1662 /********************************************************/
1663 #undef ST_DATA
1664 #if ONE_SOURCE
1665 #define ST_DATA static
1666 #else
1667 #define ST_DATA
1668 #endif
1669 /********************************************************/
1670 #endif /* _TCC_H */