libtcc: filetype cleanup
[tinycc.git] / tcc.h
blobd16fea80fa9e6ebf0778d2bd729acd45b8e77970
1 /*
2 * TCC - Tiny C Compiler
3 *
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 <signal.h>
34 #include <fcntl.h>
35 #include <setjmp.h>
36 #include <time.h>
37 #include <sys/stat.h> /* stat() */
39 #ifndef _WIN32
40 # include <unistd.h>
41 # include <sys/time.h>
42 # include <sys/ucontext.h>
43 # include <sys/mman.h>
44 # ifndef CONFIG_TCC_STATIC
45 # include <dlfcn.h>
46 # endif
47 /* XXX: need to define this to use them in non ISOC99 context */
48 extern float strtof (const char *__nptr, char **__endptr);
49 extern long double strtold (const char *__nptr, char **__endptr);
50 #else /* on _WIN32: */
51 # include <windows.h>
52 # include <sys/timeb.h>
53 # include <io.h> /* open, close etc. */
54 # include <direct.h> /* getcwd */
55 # ifdef __GNUC__
56 # include <stdint.h>
57 # endif
58 # define inline __inline
59 # define inp next_inp
60 # define snprintf _snprintf
61 # define vsnprintf _vsnprintf
62 # ifndef __GNUC__
63 # define strtold (long double)strtod
64 # define strtof (float)strtod
65 # define strtoll _strtoi64
66 # define strtoull _strtoui64
67 # endif
68 # ifdef LIBTCC_AS_DLL
69 # define LIBTCCAPI __declspec(dllexport)
70 # define PUB_FUNC LIBTCCAPI
71 # endif
72 # ifdef _MSC_VER
73 # pragma warning (disable : 4244) // conversion from 'uint64_t' to 'int', possible loss of data
74 # pragma warning (disable : 4267) // conversion from 'size_t' to 'int', possible loss of data
75 # pragma warning (disable : 4996) // The POSIX name for this item is deprecated. Instead, use the ISO C and C++ conformant name
76 # pragma warning (disable : 4018) // signed/unsigned mismatch
77 # pragma warning (disable : 4146) // unary minus operator applied to unsigned type, result still unsigned
78 # endif
79 #endif
81 #ifndef O_BINARY
82 # define O_BINARY 0
83 #endif
85 #ifdef __GNUC__
86 # define NORETURN __attribute__ ((noreturn))
87 #elif defined _MSC_VER
88 # define NORETURN __declspec(noreturn)
89 #else
90 # define NORETURN
91 #endif
93 #ifdef _WIN32
94 # define IS_DIRSEP(c) (c == '/' || c == '\\')
95 # define IS_ABSPATH(p) (IS_DIRSEP(p[0]) || (p[0] && p[1] == ':' && IS_DIRSEP(p[2])))
96 # define PATHCMP stricmp
97 #else
98 # define IS_DIRSEP(c) (c == '/')
99 # define IS_ABSPATH(p) IS_DIRSEP(p[0])
100 # define PATHCMP strcmp
101 #endif
103 #ifdef TCC_TARGET_PE
104 #define PATHSEP ';'
105 #else
106 #define PATHSEP ':'
107 #endif
109 #include "elf.h"
110 #if defined(TCC_TARGET_ARM64) || defined(TCC_TARGET_X86_64)
111 # define ELFCLASSW ELFCLASS64
112 # define ElfW(type) Elf##64##_##type
113 # define ELFW(type) ELF##64##_##type
114 # define ElfW_Rel ElfW(Rela)
115 # define SHT_RELX SHT_RELA
116 # define REL_SECTION_FMT ".rela%s"
117 /* XXX: DLL with PLT would only work with x86-64 for now */
118 # define TCC_OUTPUT_DLL_WITH_PLT
119 #else
120 # define ELFCLASSW ELFCLASS32
121 # define ElfW(type) Elf##32##_##type
122 # define ELFW(type) ELF##32##_##type
123 # define ElfW_Rel ElfW(Rel)
124 # define SHT_RELX SHT_REL
125 # define REL_SECTION_FMT ".rel%s"
126 #endif
128 /* target address type */
129 #define addr_t ElfW(Addr)
131 #include "stab.h"
132 #include "libtcc.h"
134 /* parser debug */
135 /* #define PARSE_DEBUG */
136 /* preprocessor debug */
137 /* #define PP_DEBUG */
138 /* include file debug */
139 /* #define INC_DEBUG */
140 /* memory leak debug */
141 /* #define MEM_DEBUG */
142 /* assembler debug */
143 /* #define ASM_DEBUG */
145 /* target selection */
146 /* #define TCC_TARGET_I386 *//* i386 code generator */
147 /* #define TCC_TARGET_ARM *//* ARMv4 code generator */
148 /* #define TCC_TARGET_ARM64 *//* ARMv8 code generator */
149 /* #define TCC_TARGET_C67 *//* TMS320C67xx code generator */
150 /* #define TCC_TARGET_X86_64 *//* x86-64 code generator */
152 /* default target is I386 */
153 #if !defined(TCC_TARGET_I386) && !defined(TCC_TARGET_ARM) && \
154 !defined(TCC_TARGET_ARM64) && !defined(TCC_TARGET_C67) && \
155 !defined(TCC_TARGET_X86_64)
156 #define TCC_TARGET_I386
157 #endif
159 #if !defined(TCC_UCLIBC) && !defined(TCC_TARGET_ARM) && \
160 !defined(TCC_TARGET_ARM64) && !defined(TCC_TARGET_C67) && \
161 !defined(CONFIG_USE_LIBGCC)
162 #define CONFIG_TCC_BCHECK /* enable bound checking code */
163 #endif
165 /* define it to include assembler support */
166 #if !defined(TCC_TARGET_ARM) && !defined(TCC_TARGET_ARM64) && \
167 !defined(TCC_TARGET_C67)
168 #define CONFIG_TCC_ASM
169 #endif
171 /* object format selection */
172 #if defined(TCC_TARGET_C67)
173 #define TCC_TARGET_COFF
174 #endif
176 /* only native compiler supports -run */
177 #if defined _WIN32 == defined TCC_TARGET_PE
178 # if (defined __i386__ || defined _X86_) && defined TCC_TARGET_I386
179 # define TCC_IS_NATIVE
180 # elif (defined __x86_64__ || defined _AMD64_) && defined TCC_TARGET_X86_64
181 # define TCC_IS_NATIVE
182 # elif defined __arm__ && defined TCC_TARGET_ARM
183 # define TCC_IS_NATIVE
184 # elif defined __aarch64__ && defined TCC_TARGET_ARM64
185 # define TCC_IS_NATIVE
186 # endif
187 #endif
189 #if defined TCC_IS_NATIVE && !defined CONFIG_TCCBOOT
190 # define CONFIG_TCC_BACKTRACE
191 #endif
193 /* ------------ path configuration ------------ */
195 #ifndef CONFIG_SYSROOT
196 # define CONFIG_SYSROOT ""
197 #endif
198 #ifndef CONFIG_TCCDIR
199 # define CONFIG_TCCDIR "."
200 #endif
201 #ifndef CONFIG_LDDIR
202 # ifdef TCC_TARGET_X86_64
203 # define CONFIG_LDDIR "lib64"
204 # else
205 # define CONFIG_LDDIR "lib"
206 # endif
207 #endif
209 #ifdef CONFIG_MULTIARCHDIR
210 # define USE_MUADIR(s) s "/" CONFIG_MULTIARCHDIR
211 # define ALSO_MUADIR(s) s "/" CONFIG_MULTIARCHDIR ":" s
212 #else
213 # define USE_MUADIR(s) s
214 # define ALSO_MUADIR(s) s
215 #endif
217 /* path to find crt1.o, crti.o and crtn.o */
218 #ifndef CONFIG_TCC_CRTPREFIX
219 # define CONFIG_TCC_CRTPREFIX USE_MUADIR(CONFIG_SYSROOT "/usr/" CONFIG_LDDIR)
220 #endif
222 /* Below: {B} is substituted by CONFIG_TCCDIR (rsp. -B option) */
224 /* system include paths */
225 #ifndef CONFIG_TCC_SYSINCLUDEPATHS
226 # ifdef TCC_TARGET_PE
227 # define CONFIG_TCC_SYSINCLUDEPATHS "{B}/include;{B}/include/winapi"
228 # else
229 # define CONFIG_TCC_SYSINCLUDEPATHS \
230 "{B}/include" \
231 ":" ALSO_MUADIR(CONFIG_SYSROOT "/usr/local/include") \
232 ":" ALSO_MUADIR(CONFIG_SYSROOT "/usr/include")
233 # endif
234 #endif
236 /* library search paths */
237 #ifndef CONFIG_TCC_LIBPATHS
238 # ifdef TCC_TARGET_PE
239 # define CONFIG_TCC_LIBPATHS "{B}/lib"
240 # else
241 # define CONFIG_TCC_LIBPATHS \
242 ALSO_MUADIR(CONFIG_SYSROOT "/usr/" CONFIG_LDDIR) \
243 ":" ALSO_MUADIR(CONFIG_SYSROOT "/" CONFIG_LDDIR) \
244 ":" ALSO_MUADIR(CONFIG_SYSROOT "/usr/local/" CONFIG_LDDIR)
245 # endif
246 #endif
248 /* name of ELF interpreter */
249 #ifndef CONFIG_TCC_ELFINTERP
250 # if defined __FreeBSD__
251 # define CONFIG_TCC_ELFINTERP "/libexec/ld-elf.so.1"
252 # elif defined __FreeBSD_kernel__
253 # if defined(TCC_TARGET_X86_64)
254 # define CONFIG_TCC_ELFINTERP "/lib/ld-kfreebsd-x86-64.so.1"
255 # else
256 # define CONFIG_TCC_ELFINTERP "/lib/ld.so.1"
257 # endif
258 # elif defined __DragonFly__
259 # define CONFIG_TCC_ELFINTERP "/usr/libexec/ld-elf.so.2"
260 # elif defined __NetBSD__
261 # define CONFIG_TCC_ELFINTERP "/usr/libexec/ld.elf_so"
262 # elif defined __GNU__
263 # define CONFIG_TCC_ELFINTERP "/lib/ld.so"
264 # elif defined(TCC_TARGET_PE)
265 # define CONFIG_TCC_ELFINTERP "-"
266 # elif defined(TCC_UCLIBC)
267 # define CONFIG_TCC_ELFINTERP "/lib/ld-uClibc.so.0" /* is there a uClibc for x86_64 ? */
268 # elif defined TCC_TARGET_ARM64
269 # define CONFIG_TCC_ELFINTERP "/lib/ld-linux-aarch64.so.1"
270 # elif defined(TCC_TARGET_X86_64)
271 # define CONFIG_TCC_ELFINTERP "/lib64/ld-linux-x86-64.so.2"
272 # elif !defined(TCC_ARM_EABI)
273 # define CONFIG_TCC_ELFINTERP "/lib/ld-linux.so.2"
274 # endif
275 #endif
277 /* var elf_interp dans *-gen.c */
278 #ifdef CONFIG_TCC_ELFINTERP
279 # define DEFAULT_ELFINTERP(s) CONFIG_TCC_ELFINTERP
280 #else
281 # define DEFAULT_ELFINTERP(s) default_elfinterp(s)
282 #endif
284 /* library to use with CONFIG_USE_LIBGCC instead of libtcc1.a */
285 #define TCC_LIBGCC USE_MUADIR(CONFIG_SYSROOT "/" CONFIG_LDDIR) "/libgcc_s.so.1"
287 /* -------------------------------------------- */
288 /* include the target specific definitions */
290 #define TARGET_DEFS_ONLY
291 #ifdef TCC_TARGET_I386
292 # include "i386-gen.c"
293 #endif
294 #ifdef TCC_TARGET_X86_64
295 # include "x86_64-gen.c"
296 #endif
297 #ifdef TCC_TARGET_ARM
298 # include "arm-gen.c"
299 #endif
300 #ifdef TCC_TARGET_ARM64
301 # include "arm64-gen.c"
302 #endif
303 #ifdef TCC_TARGET_C67
304 # include "coff.h"
305 # include "c67-gen.c"
306 #endif
307 #undef TARGET_DEFS_ONLY
309 /* -------------------------------------------- */
311 #define INCLUDE_STACK_SIZE 32
312 #define IFDEF_STACK_SIZE 64
313 #define VSTACK_SIZE 256
314 #define STRING_MAX_SIZE 1024
315 #define TOKSTR_MAX_SIZE 256
316 #define PACK_STACK_SIZE 8
318 #define TOK_HASH_SIZE 16384 /* must be a power of two */
319 #define TOK_ALLOC_INCR 512 /* must be a power of two */
320 #define TOK_MAX_SIZE 4 /* token max size in int unit when stored in string */
321 #define TOKSYM_TAL_SIZE (768 * 1024) /* allocator for tiny TokenSym in table_ident */
322 #define TOKSTR_TAL_SIZE (768 * 1024) /* allocator for tiny TokenString instances */
323 #define CSTR_TAL_SIZE (256 * 1024) /* allocator for tiny CString instances */
324 #define TOKSYM_TAL_LIMIT 256 /* prefer unique limits to distinguish allocators debug msgs */
325 #define TOKSTR_TAL_LIMIT 128 /* 32 * sizeof(int) */
326 #define CSTR_TAL_LIMIT 1024
328 /* token symbol management */
329 typedef struct TokenSym {
330 struct TokenSym *hash_next;
331 struct Sym *sym_define; /* direct pointer to define */
332 struct Sym *sym_label; /* direct pointer to label */
333 struct Sym *sym_struct; /* direct pointer to structure */
334 struct Sym *sym_identifier; /* direct pointer to identifier */
335 int tok; /* token number */
336 int len;
337 char str[1];
338 } TokenSym;
340 #ifdef TCC_TARGET_PE
341 typedef unsigned short nwchar_t;
342 #else
343 typedef int nwchar_t;
344 #endif
346 typedef struct CString {
347 int size; /* size in bytes */
348 void *data; /* either 'char *' or 'nwchar_t *' */
349 int size_allocated;
350 } CString;
352 /* type definition */
353 typedef struct CType {
354 int t;
355 struct Sym *ref;
356 } CType;
358 /* constant value */
359 typedef union CValue {
360 long double ld;
361 double d;
362 float f;
363 uint64_t i;
364 struct {
365 int size;
366 const void *data;
367 } str;
368 int tab[LDOUBLE_SIZE/4];
369 } CValue;
371 /* value on stack */
372 typedef struct SValue {
373 CType type; /* type */
374 unsigned short r; /* register + flags */
375 unsigned short r2; /* second register, used for 'long long'
376 type. If not used, set to VT_CONST */
377 CValue c; /* constant, if VT_CONST */
378 struct Sym *sym; /* symbol, if (VT_SYM | VT_CONST) */
379 } SValue;
381 struct Attribute {
382 unsigned
383 func_call : 3, /* calling convention (0..5), see below */
384 aligned : 5, /* alignement (0..16) */
385 packed : 1,
386 func_export : 1,
387 func_import : 1,
388 func_args : 5,
389 func_proto : 1,
390 mode : 4,
391 weak : 1,
392 visibility : 2,
393 fill : 8; // 8 bits left to fit well in union below
396 /* GNUC attribute definition */
397 typedef struct AttributeDef {
398 struct Attribute a;
399 struct Section *section;
400 int alias_target; /* token */
401 int asm_label; /* associated asm label */
402 } AttributeDef;
404 /* symbol management */
405 typedef struct Sym {
406 int v; /* symbol token */
407 union {
408 int asm_label; /* associated asm label */
409 int scope; /* scope level for locals */
411 union {
412 long r; /* associated register */
413 struct Attribute a;
415 union {
416 long c; /* associated number */
417 int *d; /* define token stream */
419 CType type; /* associated type */
420 union {
421 struct Sym *next; /* next related symbol */
422 long jnext; /* next jump label */
424 struct Sym *prev; /* prev symbol in stack */
425 struct Sym *prev_tok; /* previous symbol for this token */
426 } Sym;
428 /* section definition */
429 /* XXX: use directly ELF structure for parameters ? */
430 /* special flag to indicate that the section should not be linked to
431 the other ones */
432 #define SHF_PRIVATE 0x80000000
434 /* special flag, too */
435 #define SECTION_ABS ((void *)1)
437 typedef struct Section {
438 unsigned long data_offset; /* current data offset */
439 unsigned char *data; /* section data */
440 unsigned long data_allocated; /* used for realloc() handling */
441 int sh_name; /* elf section name (only used during output) */
442 int sh_num; /* elf section number */
443 int sh_type; /* elf section type */
444 int sh_flags; /* elf section flags */
445 int sh_info; /* elf section info */
446 int sh_addralign; /* elf section alignment */
447 int sh_entsize; /* elf entry size */
448 unsigned long sh_size; /* section size (only used during output) */
449 addr_t sh_addr; /* address at which the section is relocated */
450 unsigned long sh_offset; /* file offset */
451 int nb_hashed_syms; /* used to resize the hash table */
452 struct Section *link; /* link to another section */
453 struct Section *reloc; /* corresponding section for relocation, if any */
454 struct Section *hash; /* hash table for symbols */
455 struct Section *next;
456 char name[1]; /* section name */
457 } Section;
459 typedef struct DLLReference {
460 int level;
461 void *handle;
462 char name[1];
463 } DLLReference;
465 /* -------------------------------------------------- */
467 #define SYM_STRUCT 0x40000000 /* struct/union/enum symbol space */
468 #define SYM_FIELD 0x20000000 /* struct/union field symbol space */
469 #define SYM_FIRST_ANOM 0x10000000 /* first anonymous sym */
471 /* stored in 'Sym.c' field */
472 #define FUNC_NEW 1 /* ansi function prototype */
473 #define FUNC_OLD 2 /* old function prototype */
474 #define FUNC_ELLIPSIS 3 /* ansi function prototype with ... */
476 /* stored in 'Sym.r' field */
477 #define FUNC_CDECL 0 /* standard c call */
478 #define FUNC_STDCALL 1 /* pascal c call */
479 #define FUNC_FASTCALL1 2 /* first param in %eax */
480 #define FUNC_FASTCALL2 3 /* first parameters in %eax, %edx */
481 #define FUNC_FASTCALL3 4 /* first parameter in %eax, %edx, %ecx */
482 #define FUNC_FASTCALLW 5 /* first parameter in %ecx, %edx */
484 /* field 'Sym.t' for macros */
485 #define MACRO_OBJ 0 /* object like macro */
486 #define MACRO_FUNC 1 /* function like macro */
488 /* field 'Sym.r' for C labels */
489 #define LABEL_DEFINED 0 /* label is defined */
490 #define LABEL_FORWARD 1 /* label is forward defined */
491 #define LABEL_DECLARED 2 /* label is declared but never used */
493 /* type_decl() types */
494 #define TYPE_ABSTRACT 1 /* type without variable */
495 #define TYPE_DIRECT 2 /* type with variable */
497 #define IO_BUF_SIZE 8192
499 typedef struct BufferedFile {
500 uint8_t *buf_ptr;
501 uint8_t *buf_end;
502 int fd;
503 struct BufferedFile *prev;
504 int line_num; /* current line number - here to simplify code */
505 int line_ref; /* tcc -E: last printed line */
506 int ifndef_macro; /* #ifndef macro / #endif search */
507 int ifndef_macro_saved; /* saved ifndef_macro */
508 int *ifdef_stack_ptr; /* ifdef_stack value at the start of the file */
509 int include_next_index; /* next search path */
510 char filename[1024]; /* filename */
511 unsigned char unget[4];
512 unsigned char buffer[1]; /* extra size for CH_EOB char */
513 } BufferedFile;
515 #define CH_EOB '\\' /* end of buffer or '\0' char in file */
516 #define CH_EOF (-1) /* end of file */
518 /* parsing state (used to save parser state to reparse part of the
519 source several times) */
520 typedef struct ParseState {
521 const int *macro_ptr;
522 int line_num;
523 int tok;
524 CValue tokc;
525 } ParseState;
527 /* used to record tokens */
528 typedef struct TokenString {
529 int *str;
530 int len;
531 int allocated_len;
532 int last_line_num;
533 /* used to chain token-strings with begin/end_macro() */
534 struct TokenString *prev;
535 const int *prev_ptr;
536 char alloc;
537 } TokenString;
539 /* inline functions */
540 typedef struct InlineFunc {
541 TokenString func_str;
542 Sym *sym;
543 char filename[1];
544 } InlineFunc;
546 /* include file cache, used to find files faster and also to eliminate
547 inclusion if the include file is protected by #ifndef ... #endif */
548 typedef struct CachedInclude {
549 int ifndef_macro;
550 int once;
551 int hash_next; /* -1 if none */
552 char filename[1]; /* path specified in #include */
553 } CachedInclude;
555 #define CACHED_INCLUDES_HASH_SIZE 32
557 #ifdef CONFIG_TCC_ASM
558 typedef struct ExprValue {
559 uint64_t v;
560 Sym *sym;
561 } ExprValue;
563 #define MAX_ASM_OPERANDS 30
564 typedef struct ASMOperand {
565 int id; /* GCC 3 optionnal identifier (0 if number only supported */
566 char *constraint;
567 char asm_str[16]; /* computed asm string for operand */
568 SValue *vt; /* C value of the expression */
569 int ref_index; /* if >= 0, gives reference to a output constraint */
570 int input_index; /* if >= 0, gives reference to an input constraint */
571 int priority; /* priority, used to assign registers */
572 int reg; /* if >= 0, register number used for this operand */
573 int is_llong; /* true if double register value */
574 int is_memory; /* true if memory operand */
575 int is_rw; /* for '+' modifier */
576 } ASMOperand;
577 #endif
579 struct sym_attr {
580 unsigned long got_offset;
581 unsigned long plt_offset;
582 #ifdef TCC_TARGET_ARM
583 unsigned char plt_thumb_stub:1;
584 #endif
587 struct TCCState {
589 int verbose; /* if true, display some information during compilation */
590 int nostdinc; /* if true, no standard headers are added */
591 int nostdlib; /* if true, no standard libraries are added */
592 int nocommon; /* if true, do not use common symbols for .bss data */
593 int static_link; /* if true, static linking is performed */
594 int rdynamic; /* if true, all symbols are exported */
595 int symbolic; /* if true, resolve symbols in the current module first */
596 int alacarte_link; /* if true, only link in referenced objects from archive */
598 char *tcc_lib_path; /* CONFIG_TCCDIR or -B option */
599 char *soname; /* as specified on the command line (-soname) */
600 char *rpath; /* as specified on the command line (-Wl,-rpath=) */
602 /* output type, see TCC_OUTPUT_XXX */
603 int output_type;
604 /* output format, see TCC_OUTPUT_FORMAT_xxx */
605 int output_format;
607 /* C language options */
608 int char_is_unsigned;
609 int leading_underscore;
610 int ms_extensions; /* allow nested named struct w/o identifier behave like unnamed */
611 int old_struct_init_code; /* use old algorithm to init array in struct when there is no '{' used.
612 Liuux 2.4.26 can't find initrd when compiled with a new algorithm */
613 int dollars_in_identifiers; /* allows '$' char in indentifiers */
614 int normalize_inc_dirs; /* remove non-existent or duplicate directories from include paths */
616 /* warning switches */
617 int warn_write_strings;
618 int warn_unsupported;
619 int warn_error;
620 int warn_none;
621 int warn_implicit_function_declaration;
623 /* compile with debug symbol (and use them if error during execution) */
624 int do_debug;
625 int do_strip;
626 #ifdef CONFIG_TCC_BCHECK
627 /* compile with built-in memory and bounds checker */
628 int do_bounds_check;
629 #endif
630 #ifdef TCC_TARGET_ARM
631 enum float_abi float_abi; /* float ABI of the generated code*/
632 #endif
634 addr_t text_addr; /* address of text section */
635 int has_text_addr;
637 unsigned long section_align; /* section alignment */
639 char *init_symbol; /* symbols to call at load-time (not used currently) */
640 char *fini_symbol; /* symbols to call at unload-time (not used currently) */
642 #ifdef TCC_TARGET_I386
643 int seg_size; /* 32. Can be 16 with i386 assembler (.code16) */
644 #endif
646 /* array of all loaded dlls (including those referenced by loaded dlls) */
647 DLLReference **loaded_dlls;
648 int nb_loaded_dlls;
650 /* include paths */
651 char **include_paths;
652 int nb_include_paths;
654 char **sysinclude_paths;
655 int nb_sysinclude_paths;
657 /* library paths */
658 char **library_paths;
659 int nb_library_paths;
661 /* crt?.o object path */
662 char **crt_paths;
663 int nb_crt_paths;
665 /* error handling */
666 void *error_opaque;
667 void (*error_func)(void *opaque, const char *msg);
668 int error_set_jmp_enabled;
669 jmp_buf error_jmp_buf;
670 int nb_errors;
672 /* output file for preprocessing (-E) */
673 FILE *ppfp;
674 enum {
675 LINE_MACRO_OUTPUT_FORMAT_GCC,
676 LINE_MACRO_OUTPUT_FORMAT_NONE,
677 LINE_MACRO_OUTPUT_FORMAT_STD
678 } Pflag; /* -P switch */
679 char dflag; /* -dX value */
681 /* for -MD/-MF: collected dependencies for this compilation */
682 char **target_deps;
683 int nb_target_deps;
685 /* compilation */
686 BufferedFile *include_stack[INCLUDE_STACK_SIZE];
687 BufferedFile **include_stack_ptr;
689 int ifdef_stack[IFDEF_STACK_SIZE];
690 int *ifdef_stack_ptr;
692 /* included files enclosed with #ifndef MACRO */
693 int cached_includes_hash[CACHED_INCLUDES_HASH_SIZE];
694 CachedInclude **cached_includes;
695 int nb_cached_includes;
697 /* #pragma pack stack */
698 int pack_stack[PACK_STACK_SIZE];
699 int *pack_stack_ptr;
700 char **pragma_libs;
701 int nb_pragma_libs;
703 /* inline functions are stored as token lists and compiled last
704 only if referenced */
705 struct InlineFunc **inline_fns;
706 int nb_inline_fns;
708 /* sections */
709 Section **sections;
710 int nb_sections; /* number of sections, including first dummy section */
712 Section **priv_sections;
713 int nb_priv_sections; /* number of private sections */
715 /* got & plt handling */
716 Section *got;
717 Section *plt;
718 struct sym_attr *sym_attrs;
719 int nb_sym_attrs;
720 /* give the correspondance from symtab indexes to dynsym indexes */
721 int *symtab_to_dynsym;
723 /* temporary dynamic symbol sections (for dll loading) */
724 Section *dynsymtab_section;
725 /* exported dynamic symbol section */
726 Section *dynsym;
727 /* copy of the gobal symtab_section variable */
728 Section *symtab;
729 /* tiny assembler state */
730 Sym *asm_labels;
732 #ifdef TCC_TARGET_PE
733 /* PE info */
734 int pe_subsystem;
735 unsigned pe_file_align;
736 unsigned pe_stack_size;
737 # ifdef TCC_TARGET_X86_64
738 Section *uw_pdata;
739 int uw_sym;
740 unsigned uw_offs;
741 # endif
742 #endif
744 #ifdef TCC_IS_NATIVE
745 const char *runtime_main;
746 /* for tcc_relocate */
747 void *runtime_mem;
748 # ifdef HAVE_SELINUX
749 void *write_mem;
750 unsigned long mem_size;
751 # endif
752 #endif
754 /* used by main and tcc_parse_args only */
755 struct filespec **files; /* files seen on command line */
756 int nb_files; /* number thereof */
757 int nb_libraries; /* number of libs thereof */
758 int filetype;
759 char *outfile; /* output filename */
760 char *option_m; /* only -m32/-m64 handled */
761 int print_search_dirs; /* option */
762 int option_r; /* option -r */
763 int do_bench; /* option -bench */
764 int gen_deps; /* option -MD */
765 char *deps_outfile; /* option -MF */
767 int args_pthread; /* -pthread option */
768 CString linker_arg; /* collect -Wl options for input such as "-Wl,-rpath -Wl,<path>" */
769 int args_ref; /* tcc_parse_args recursive counter */
772 struct filespec {
773 char type, name[1];
776 /* The current value can be: */
777 #define VT_VALMASK 0x003f /* mask for value location, register or: */
778 #define VT_CONST 0x0030 /* constant in vc (must be first non register value) */
779 #define VT_LLOCAL 0x0031 /* lvalue, offset on stack */
780 #define VT_LOCAL 0x0032 /* offset on stack */
781 #define VT_CMP 0x0033 /* the value is stored in processor flags (in vc) */
782 #define VT_JMP 0x0034 /* value is the consequence of jmp true (even) */
783 #define VT_JMPI 0x0035 /* value is the consequence of jmp false (odd) */
784 #define VT_REF 0x0040 /* value is pointer to structure rather than address */
785 #define VT_LVAL 0x0100 /* var is an lvalue */
786 #define VT_SYM 0x0200 /* a symbol value is added */
787 #define VT_MUSTCAST 0x0400 /* value must be casted to be correct (used for
788 char/short stored in integer registers) */
789 #define VT_MUSTBOUND 0x0800 /* bound checking must be done before
790 dereferencing value */
791 #define VT_BOUNDED 0x8000 /* value is bounded. The address of the
792 bounding function call point is in vc */
793 #define VT_LVAL_BYTE 0x1000 /* lvalue is a byte */
794 #define VT_LVAL_SHORT 0x2000 /* lvalue is a short */
795 #define VT_LVAL_UNSIGNED 0x4000 /* lvalue is unsigned */
796 #define VT_LVAL_TYPE (VT_LVAL_BYTE | VT_LVAL_SHORT | VT_LVAL_UNSIGNED)
798 /* types */
799 #define VT_BTYPE 0x000f /* mask for basic type */
800 #define VT_INT 0 /* integer type */
801 #define VT_BYTE 1 /* signed byte type */
802 #define VT_SHORT 2 /* short type */
803 #define VT_VOID 3 /* void type */
804 #define VT_PTR 4 /* pointer */
805 #define VT_ENUM 5 /* enum definition */
806 #define VT_FUNC 6 /* function type */
807 #define VT_STRUCT 7 /* struct/union definition */
808 #define VT_FLOAT 8 /* IEEE float */
809 #define VT_DOUBLE 9 /* IEEE double */
810 #define VT_LDOUBLE 10 /* IEEE long double */
811 #define VT_BOOL 11 /* ISOC99 boolean type */
812 #define VT_LLONG 12 /* 64 bit integer */
813 #define VT_LONG 13 /* long integer (NEVER USED as type, only
814 during parsing) */
815 #define VT_QLONG 14 /* 128-bit integer. Only used for x86-64 ABI */
816 #define VT_QFLOAT 15 /* 128-bit float. Only used for x86-64 ABI */
817 #define VT_UNSIGNED 0x0010 /* unsigned type */
818 #define VT_ARRAY 0x0020 /* array type (also has VT_PTR) */
819 #define VT_BITFIELD 0x0040 /* bitfield modifier */
820 #define VT_CONSTANT 0x0800 /* const modifier */
821 #define VT_VOLATILE 0x1000 /* volatile modifier */
822 #define VT_DEFSIGN 0x2000 /* signed type */
823 #define VT_VLA 0x00020000 /* VLA type (also has VT_PTR and VT_ARRAY) */
825 /* storage */
826 #define VT_EXTERN 0x00000080 /* extern definition */
827 #define VT_STATIC 0x00000100 /* static variable */
828 #define VT_TYPEDEF 0x00000200 /* typedef definition */
829 #define VT_INLINE 0x00000400 /* inline definition */
830 #define VT_IMPORT 0x00004000 /* win32: extern data imported from dll */
831 #define VT_EXPORT 0x00008000 /* win32: data exported from dll */
832 #define VT_WEAK 0x00010000 /* weak symbol */
833 #define VT_TLS 0x00040000 /* thread-local storage */
834 #define VT_VIS_SHIFT 19 /* shift for symbol visibility, overlapping
835 bitfield values, because bitfields never
836 have linkage and hence never have
837 visibility. */
838 #define VT_VIS_SIZE 2 /* We have four visibilities. */
839 #define VT_VIS_MASK (((1 << VT_VIS_SIZE)-1) << VT_VIS_SHIFT)
841 #define VT_STRUCT_SHIFT 19 /* shift for bitfield shift values (max: 32 - 2*6) */
844 /* type mask (except storage) */
845 #define VT_STORAGE (VT_EXTERN | VT_STATIC | VT_TYPEDEF | VT_INLINE | VT_IMPORT | VT_EXPORT | VT_WEAK | VT_VIS_MASK)
846 #define VT_TYPE (~(VT_STORAGE))
848 /* token values */
850 /* warning: the following compare tokens depend on i386 asm code */
851 #define TOK_ULT 0x92
852 #define TOK_UGE 0x93
853 #define TOK_EQ 0x94
854 #define TOK_NE 0x95
855 #define TOK_ULE 0x96
856 #define TOK_UGT 0x97
857 #define TOK_Nset 0x98
858 #define TOK_Nclear 0x99
859 #define TOK_LT 0x9c
860 #define TOK_GE 0x9d
861 #define TOK_LE 0x9e
862 #define TOK_GT 0x9f
864 #define TOK_LAND 0xa0
865 #define TOK_LOR 0xa1
866 #define TOK_DEC 0xa2
867 #define TOK_MID 0xa3 /* inc/dec, to void constant */
868 #define TOK_INC 0xa4
869 #define TOK_UDIV 0xb0 /* unsigned division */
870 #define TOK_UMOD 0xb1 /* unsigned modulo */
871 #define TOK_PDIV 0xb2 /* fast division with undefined rounding for pointers */
873 /* tokens that carry values (in additional token string space / tokc) --> */
874 #define TOK_CCHAR 0xb3 /* char constant in tokc */
875 #define TOK_LCHAR 0xb4
876 #define TOK_CINT 0xb5 /* number in tokc */
877 #define TOK_CUINT 0xb6 /* unsigned int constant */
878 #define TOK_CLLONG 0xb7 /* long long constant */
879 #define TOK_CULLONG 0xb8 /* unsigned long long constant */
880 #define TOK_STR 0xb9 /* pointer to string in tokc */
881 #define TOK_LSTR 0xba
882 #define TOK_CFLOAT 0xbb /* float constant */
883 #define TOK_CDOUBLE 0xbc /* double constant */
884 #define TOK_CLDOUBLE 0xbd /* long double constant */
885 #define TOK_PPNUM 0xbe /* preprocessor number */
886 #define TOK_PPSTR 0xbf /* preprocessor string */
887 #define TOK_LINENUM 0xc0 /* line number info */
888 /* <-- */
890 #define TOK_UMULL 0xc2 /* unsigned 32x32 -> 64 mul */
891 #define TOK_ADDC1 0xc3 /* add with carry generation */
892 #define TOK_ADDC2 0xc4 /* add with carry use */
893 #define TOK_SUBC1 0xc5 /* add with carry generation */
894 #define TOK_SUBC2 0xc6 /* add with carry use */
895 #define TOK_ARROW 0xc7
896 #define TOK_DOTS 0xc8 /* three dots */
897 #define TOK_SHR 0xc9 /* unsigned shift right */
898 #define TOK_TWOSHARPS 0xca /* ## preprocessing token */
899 #define TOK_PLCHLDR 0xcb /* placeholder token as defined in C99 */
900 #define TOK_NOSUBST 0xcc /* means following token has already been pp'd */
902 #define TOK_SHL 0x01 /* shift left */
903 #define TOK_SAR 0x02 /* signed shift right */
905 /* assignement operators : normal operator or 0x80 */
906 #define TOK_A_MOD 0xa5
907 #define TOK_A_AND 0xa6
908 #define TOK_A_MUL 0xaa
909 #define TOK_A_ADD 0xab
910 #define TOK_A_SUB 0xad
911 #define TOK_A_DIV 0xaf
912 #define TOK_A_XOR 0xde
913 #define TOK_A_OR 0xfc
914 #define TOK_A_SHL 0x81
915 #define TOK_A_SAR 0x82
917 #ifndef offsetof
918 #define offsetof(type, field) ((size_t) &((type *)0)->field)
919 #endif
921 #ifndef countof
922 #define countof(tab) (sizeof(tab) / sizeof((tab)[0]))
923 #endif
925 #define TOK_EOF (-1) /* end of file */
926 #define TOK_LINEFEED 10 /* line feed */
928 /* all identificators and strings have token above that */
929 #define TOK_IDENT 256
931 #define DEF_ASM(x) DEF(TOK_ASM_ ## x, #x)
932 #define TOK_ASM_int TOK_INT
933 #define DEF_ASMDIR(x) DEF(TOK_ASMDIR_ ## x, "." #x)
934 #define TOK_ASMDIR_FIRST TOK_ASMDIR_byte
935 #define TOK_ASMDIR_LAST TOK_ASMDIR_section
937 #if defined TCC_TARGET_I386 || defined TCC_TARGET_X86_64
938 /* only used for i386 asm opcodes definitions */
939 #define DEF_BWL(x) \
940 DEF(TOK_ASM_ ## x ## b, #x "b") \
941 DEF(TOK_ASM_ ## x ## w, #x "w") \
942 DEF(TOK_ASM_ ## x ## l, #x "l") \
943 DEF(TOK_ASM_ ## x, #x)
944 #define DEF_WL(x) \
945 DEF(TOK_ASM_ ## x ## w, #x "w") \
946 DEF(TOK_ASM_ ## x ## l, #x "l") \
947 DEF(TOK_ASM_ ## x, #x)
948 #ifdef TCC_TARGET_X86_64
949 # define DEF_BWLQ(x) \
950 DEF(TOK_ASM_ ## x ## b, #x "b") \
951 DEF(TOK_ASM_ ## x ## w, #x "w") \
952 DEF(TOK_ASM_ ## x ## l, #x "l") \
953 DEF(TOK_ASM_ ## x ## q, #x "q") \
954 DEF(TOK_ASM_ ## x, #x)
955 # define DEF_WLQ(x) \
956 DEF(TOK_ASM_ ## x ## w, #x "w") \
957 DEF(TOK_ASM_ ## x ## l, #x "l") \
958 DEF(TOK_ASM_ ## x ## q, #x "q") \
959 DEF(TOK_ASM_ ## x, #x)
960 # define DEF_BWLX DEF_BWLQ
961 # define DEF_WLX DEF_WLQ
962 /* number of sizes + 1 */
963 # define NBWLX 5
964 #else
965 # define DEF_BWLX DEF_BWL
966 # define DEF_WLX DEF_WL
967 /* number of sizes + 1 */
968 # define NBWLX 4
969 #endif
971 #define DEF_FP1(x) \
972 DEF(TOK_ASM_ ## f ## x ## s, "f" #x "s") \
973 DEF(TOK_ASM_ ## fi ## x ## l, "fi" #x "l") \
974 DEF(TOK_ASM_ ## f ## x ## l, "f" #x "l") \
975 DEF(TOK_ASM_ ## fi ## x ## s, "fi" #x "s")
977 #define DEF_FP(x) \
978 DEF(TOK_ASM_ ## f ## x, "f" #x ) \
979 DEF(TOK_ASM_ ## f ## x ## p, "f" #x "p") \
980 DEF_FP1(x)
982 #define DEF_ASMTEST(x,suffix) \
983 DEF_ASM(x ## o ## suffix) \
984 DEF_ASM(x ## no ## suffix) \
985 DEF_ASM(x ## b ## suffix) \
986 DEF_ASM(x ## c ## suffix) \
987 DEF_ASM(x ## nae ## suffix) \
988 DEF_ASM(x ## nb ## suffix) \
989 DEF_ASM(x ## nc ## suffix) \
990 DEF_ASM(x ## ae ## suffix) \
991 DEF_ASM(x ## e ## suffix) \
992 DEF_ASM(x ## z ## suffix) \
993 DEF_ASM(x ## ne ## suffix) \
994 DEF_ASM(x ## nz ## suffix) \
995 DEF_ASM(x ## be ## suffix) \
996 DEF_ASM(x ## na ## suffix) \
997 DEF_ASM(x ## nbe ## suffix) \
998 DEF_ASM(x ## a ## suffix) \
999 DEF_ASM(x ## s ## suffix) \
1000 DEF_ASM(x ## ns ## suffix) \
1001 DEF_ASM(x ## p ## suffix) \
1002 DEF_ASM(x ## pe ## suffix) \
1003 DEF_ASM(x ## np ## suffix) \
1004 DEF_ASM(x ## po ## suffix) \
1005 DEF_ASM(x ## l ## suffix) \
1006 DEF_ASM(x ## nge ## suffix) \
1007 DEF_ASM(x ## nl ## suffix) \
1008 DEF_ASM(x ## ge ## suffix) \
1009 DEF_ASM(x ## le ## suffix) \
1010 DEF_ASM(x ## ng ## suffix) \
1011 DEF_ASM(x ## nle ## suffix) \
1012 DEF_ASM(x ## g ## suffix)
1014 #endif /* defined TCC_TARGET_I386 || defined TCC_TARGET_X86_64 */
1016 enum tcc_token {
1017 TOK_LAST = TOK_IDENT - 1
1018 #define DEF(id, str) ,id
1019 #include "tcctok.h"
1020 #undef DEF
1023 #define TOK_UIDENT TOK_DEFINE
1025 /* space exlcuding newline */
1026 static inline int is_space(int ch)
1028 return ch == ' ' || ch == '\t' || ch == '\v' || ch == '\f' || ch == '\r';
1031 static inline int isid(int c)
1033 return (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') || c == '_';
1036 static inline int isnum(int c)
1038 return c >= '0' && c <= '9';
1041 static inline int isoct(int c)
1043 return c >= '0' && c <= '7';
1046 static inline int toup(int c)
1048 return (c >= 'a' && c <= 'z') ? c - 'a' + 'A' : c;
1051 #ifndef PUB_FUNC
1052 # define PUB_FUNC
1053 #endif
1055 #ifdef ONE_SOURCE
1056 #define ST_INLN static inline
1057 #define ST_FUNC static
1058 #define ST_DATA static
1059 #else
1060 #define ST_INLN
1061 #define ST_FUNC
1062 #define ST_DATA extern
1063 #endif
1065 /* ------------ libtcc.c ------------ */
1067 /* use GNU C extensions */
1068 ST_DATA int gnu_ext;
1069 /* use Tiny C extensions */
1070 ST_DATA int tcc_ext;
1071 /* XXX: get rid of this ASAP */
1072 ST_DATA struct TCCState *tcc_state;
1074 /* public functions currently used by the tcc main function */
1075 ST_FUNC char *pstrcpy(char *buf, int buf_size, const char *s);
1076 ST_FUNC char *pstrcat(char *buf, int buf_size, const char *s);
1077 ST_FUNC char *pstrncpy(char *out, const char *in, size_t num);
1078 PUB_FUNC char *tcc_basename(const char *name);
1079 PUB_FUNC char *tcc_fileextension (const char *name);
1081 #ifndef MEM_DEBUG
1082 PUB_FUNC void tcc_free(void *ptr);
1083 PUB_FUNC void *tcc_malloc(unsigned long size);
1084 PUB_FUNC void *tcc_mallocz(unsigned long size);
1085 PUB_FUNC void *tcc_realloc(void *ptr, unsigned long size);
1086 PUB_FUNC char *tcc_strdup(const char *str);
1087 #else
1088 #define tcc_free(ptr) tcc_free_debug(ptr)
1089 #define tcc_malloc(size) tcc_malloc_debug(size, __FILE__, __LINE__)
1090 #define tcc_mallocz(size) tcc_mallocz_debug(size, __FILE__, __LINE__)
1091 #define tcc_realloc(ptr,size) tcc_realloc_debug(ptr, size, __FILE__, __LINE__)
1092 #define tcc_strdup(str) tcc_strdup_debug(str, __FILE__, __LINE__)
1093 PUB_FUNC void tcc_free_debug(void *ptr);
1094 PUB_FUNC void *tcc_malloc_debug(unsigned long size, const char *file, int line);
1095 PUB_FUNC void *tcc_mallocz_debug(unsigned long size, const char *file, int line);
1096 PUB_FUNC void *tcc_realloc_debug(void *ptr, unsigned long size, const char *file, int line);
1097 PUB_FUNC char *tcc_strdup_debug(const char *str, const char *file, int line);
1098 #endif
1100 #define free(p) use_tcc_free(p)
1101 #define malloc(s) use_tcc_malloc(s)
1102 #define realloc(p, s) use_tcc_realloc(p, s)
1103 #undef strdup
1104 #define strdup(s) use_tcc_strdup(s)
1105 PUB_FUNC void tcc_memstats(int bench);
1106 PUB_FUNC void tcc_error_noabort(const char *fmt, ...);
1107 PUB_FUNC NORETURN void tcc_error(const char *fmt, ...);
1108 PUB_FUNC void tcc_warning(const char *fmt, ...);
1110 /* other utilities */
1111 ST_FUNC void dynarray_add(void ***ptab, int *nb_ptr, void *data);
1112 ST_FUNC void dynarray_reset(void *pp, int *n);
1113 ST_INLN void cstr_ccat(CString *cstr, int ch);
1114 ST_FUNC void cstr_cat(CString *cstr, const char *str, int len);
1115 ST_FUNC void cstr_wccat(CString *cstr, int ch);
1116 ST_FUNC void cstr_new(CString *cstr);
1117 ST_FUNC void cstr_free(CString *cstr);
1118 ST_FUNC void cstr_reset(CString *cstr);
1120 ST_FUNC Section *new_section(TCCState *s1, const char *name, int sh_type, int sh_flags);
1121 ST_FUNC void section_realloc(Section *sec, unsigned long new_size);
1122 ST_FUNC void *section_ptr_add(Section *sec, addr_t size);
1123 ST_FUNC void section_reserve(Section *sec, unsigned long size);
1124 ST_FUNC Section *find_section(TCCState *s1, const char *name);
1126 ST_FUNC void put_extern_sym2(Sym *sym, Section *section, addr_t value, unsigned long size, int can_add_underscore);
1127 ST_FUNC void put_extern_sym(Sym *sym, Section *section, addr_t value, unsigned long size);
1128 ST_FUNC void greloc(Section *s, Sym *sym, unsigned long offset, int type);
1129 ST_FUNC void greloca(Section *s, Sym *sym, unsigned long offset, int type, addr_t addend);
1131 ST_INLN void sym_free(Sym *sym);
1132 ST_FUNC Sym *sym_push2(Sym **ps, int v, int t, long c);
1133 ST_FUNC Sym *sym_find2(Sym *s, int v);
1134 ST_FUNC Sym *sym_push(int v, CType *type, int r, int c);
1135 ST_FUNC void sym_pop(Sym **ptop, Sym *b);
1136 ST_INLN Sym *struct_find(int v);
1137 ST_INLN Sym *sym_find(int v);
1138 ST_FUNC Sym *global_identifier_push(int v, int t, int c);
1140 ST_FUNC void tcc_open_bf(TCCState *s1, const char *filename, int initlen);
1141 ST_FUNC int tcc_open(TCCState *s1, const char *filename);
1142 ST_FUNC void tcc_close(void);
1144 ST_FUNC int tcc_add_file_internal(TCCState *s1, const char *filename, int flags);
1145 /* flags: */
1146 #define AFF_PRINT_ERROR 0x10 /* print error if file not found */
1147 #define AFF_REFERENCED_DLL 0x20 /* load a referenced dll from another dll */
1148 #define AFF_PREPROCESS 0x40 /* preprocess file */
1149 /* combined with: */
1150 #define AFF_TYPE_NONE 0
1151 #define AFF_TYPE_C 1
1152 #define AFF_TYPE_ASM 2
1153 #define AFF_TYPE_ASMPP 3
1154 #define AFF_TYPE_BIN 4
1155 #define AFF_TYPE_LIB 5
1157 ST_FUNC int tcc_add_crt(TCCState *s, const char *filename);
1159 #ifndef TCC_TARGET_PE
1160 ST_FUNC int tcc_add_dll(TCCState *s, const char *filename, int flags);
1161 #endif
1163 ST_FUNC void tcc_add_pragma_libs(TCCState *s1);
1164 PUB_FUNC int tcc_add_library_err(TCCState *s, const char *f);
1166 PUB_FUNC void tcc_print_stats(TCCState *s, int64_t total_time);
1167 PUB_FUNC int tcc_parse_args(TCCState *s, int argc, char **argv);
1168 PUB_FUNC void tcc_set_environment(TCCState *s);
1170 /* ------------ tccpp.c ------------ */
1172 ST_DATA struct BufferedFile *file;
1173 ST_DATA int ch, tok;
1174 ST_DATA CValue tokc;
1175 ST_DATA const int *macro_ptr;
1176 ST_DATA int parse_flags;
1177 ST_DATA int tok_flags;
1178 ST_DATA CString tokcstr; /* current parsed string, if any */
1180 /* display benchmark infos */
1181 ST_DATA int total_lines;
1182 ST_DATA int total_bytes;
1183 ST_DATA int tok_ident;
1184 ST_DATA TokenSym **table_ident;
1186 #define TOK_FLAG_BOL 0x0001 /* beginning of line before */
1187 #define TOK_FLAG_BOF 0x0002 /* beginning of file before */
1188 #define TOK_FLAG_ENDIF 0x0004 /* a endif was found matching starting #ifdef */
1189 #define TOK_FLAG_EOF 0x0008 /* end of file */
1191 #define PARSE_FLAG_PREPROCESS 0x0001 /* activate preprocessing */
1192 #define PARSE_FLAG_TOK_NUM 0x0002 /* return numbers instead of TOK_PPNUM */
1193 #define PARSE_FLAG_LINEFEED 0x0004 /* line feed is returned as a
1194 token. line feed is also
1195 returned at eof */
1196 #define PARSE_FLAG_ASM_FILE 0x0008 /* we processing an asm file: '#' can be used for line comment, etc. */
1197 #define PARSE_FLAG_SPACES 0x0010 /* next() returns space tokens (for -E) */
1198 #define PARSE_FLAG_ACCEPT_STRAYS 0x0020 /* next() returns '\\' token */
1199 #define PARSE_FLAG_TOK_STR 0x0040 /* return parsed strings instead of TOK_PPSTR */
1201 ST_FUNC TokenSym *tok_alloc(const char *str, int len);
1202 ST_FUNC const char *get_tok_str(int v, CValue *cv);
1203 ST_FUNC void begin_macro(TokenString *str, int alloc);
1204 ST_FUNC void end_macro(void);
1205 ST_FUNC void save_parse_state(ParseState *s);
1206 ST_FUNC void restore_parse_state(ParseState *s);
1207 ST_INLN void tok_str_new(TokenString *s);
1208 ST_FUNC TokenString *tok_str_alloc(void);
1209 ST_FUNC void tok_str_free(int *str);
1210 ST_FUNC void tok_str_add(TokenString *s, int t);
1211 ST_FUNC void tok_str_add_tok(TokenString *s);
1212 ST_INLN void define_push(int v, int macro_type, int *str, Sym *first_arg);
1213 ST_FUNC void define_undef(Sym *s);
1214 ST_INLN Sym *define_find(int v);
1215 ST_FUNC void free_defines(Sym *b);
1216 ST_FUNC Sym *label_find(int v);
1217 ST_FUNC Sym *label_push(Sym **ptop, int v, int flags);
1218 ST_FUNC void label_pop(Sym **ptop, Sym *slast);
1219 ST_FUNC void parse_define(void);
1220 ST_FUNC void preprocess(int is_bof);
1221 ST_FUNC void next_nomacro(void);
1222 ST_FUNC void next(void);
1223 ST_INLN void unget_tok(int last_tok);
1224 ST_FUNC void preprocess_init(TCCState *s1);
1225 ST_FUNC void preprocess_new(void);
1226 ST_FUNC void preprocess_delete(void);
1227 ST_FUNC int tcc_preprocess(TCCState *s1);
1228 ST_FUNC void skip(int c);
1229 ST_FUNC NORETURN void expect(const char *msg);
1231 /* ------------ tccgen.c ------------ */
1233 ST_DATA Section *text_section, *data_section, *bss_section; /* predefined sections */
1234 ST_DATA Section *cur_text_section; /* current section where function code is generated */
1235 #ifdef CONFIG_TCC_ASM
1236 ST_DATA Section *last_text_section; /* to handle .previous asm directive */
1237 #endif
1238 #ifdef CONFIG_TCC_BCHECK
1239 /* bound check related sections */
1240 ST_DATA Section *bounds_section; /* contains global data bound description */
1241 ST_DATA Section *lbounds_section; /* contains local data bound description */
1242 #endif
1243 /* symbol sections */
1244 ST_DATA Section *symtab_section, *strtab_section;
1245 /* debug sections */
1246 ST_DATA Section *stab_section, *stabstr_section;
1248 #define SYM_POOL_NB (8192 / sizeof(Sym))
1249 ST_DATA Sym *sym_free_first;
1250 ST_DATA void **sym_pools;
1251 ST_DATA int nb_sym_pools;
1253 ST_DATA Sym *global_stack;
1254 ST_DATA Sym *local_stack;
1255 ST_DATA Sym *local_label_stack;
1256 ST_DATA Sym *global_label_stack;
1257 ST_DATA Sym *define_stack;
1258 ST_DATA CType char_pointer_type, func_old_type, int_type, size_type;
1259 ST_DATA SValue __vstack[1+/*to make bcheck happy*/ VSTACK_SIZE], *vtop, *pvtop;
1260 #define vstack (__vstack + 1)
1261 ST_DATA int rsym, anon_sym, ind, loc;
1263 ST_DATA int const_wanted; /* true if constant wanted */
1264 ST_DATA int nocode_wanted; /* true if no code generation wanted for an expression */
1265 ST_DATA int global_expr; /* true if compound literals must be allocated globally (used during initializers parsing */
1266 ST_DATA CType func_vt; /* current function return type (used by return instruction) */
1267 ST_DATA int func_var; /* true if current function is variadic */
1268 ST_DATA int func_vc;
1269 ST_DATA int last_line_num, last_ind, func_ind; /* debug last line number and pc */
1270 ST_DATA const char *funcname;
1272 ST_FUNC void check_vstack(void);
1273 ST_INLN int is_float(int t);
1274 ST_FUNC int ieee_finite(double d);
1275 ST_FUNC void test_lvalue(void);
1276 ST_FUNC void swap(int *p, int *q);
1277 ST_FUNC void vpushi(int v);
1278 ST_FUNC Sym *external_global_sym(int v, CType *type, int r);
1279 ST_FUNC void vset(CType *type, int r, int v);
1280 ST_FUNC void vswap(void);
1281 ST_FUNC void vpush_global_sym(CType *type, int v);
1282 ST_FUNC void vrote(SValue *e, int n);
1283 ST_FUNC void vrott(int n);
1284 ST_FUNC void vrotb(int n);
1285 #ifdef TCC_TARGET_ARM
1286 ST_FUNC int get_reg_ex(int rc, int rc2);
1287 ST_FUNC void lexpand_nr(void);
1288 #endif
1289 ST_FUNC void vpushv(SValue *v);
1290 ST_FUNC void save_reg(int r);
1291 ST_FUNC int get_reg(int rc);
1292 ST_FUNC void save_regs(int n);
1293 ST_FUNC void gaddrof(void);
1294 ST_FUNC int gv(int rc);
1295 ST_FUNC void gv2(int rc1, int rc2);
1296 ST_FUNC void vpop(void);
1297 ST_FUNC void gen_op(int op);
1298 ST_FUNC int type_size(CType *type, int *a);
1299 ST_FUNC void mk_pointer(CType *type);
1300 ST_FUNC void vstore(void);
1301 ST_FUNC void inc(int post, int c);
1302 ST_FUNC void parse_asm_str(CString *astr);
1303 ST_FUNC int lvalue_type(int t);
1304 ST_FUNC void indir(void);
1305 ST_FUNC void unary(void);
1306 ST_FUNC void expr_prod(void);
1307 ST_FUNC void expr_sum(void);
1308 ST_FUNC void gexpr(void);
1309 ST_FUNC int expr_const(void);
1310 ST_FUNC void gen_inline_functions(void);
1311 ST_FUNC void decl(int l);
1312 #if defined CONFIG_TCC_BCHECK || defined TCC_TARGET_C67
1313 ST_FUNC Sym *get_sym_ref(CType *type, Section *sec, unsigned long offset, unsigned long size);
1314 #endif
1315 #if defined TCC_TARGET_X86_64 && !defined TCC_TARGET_PE
1316 ST_FUNC int classify_x86_64_va_arg(CType *ty);
1317 #endif
1319 /* ------------ tccelf.c ------------ */
1321 #define TCC_OUTPUT_FORMAT_ELF 0 /* default output format: ELF */
1322 #define TCC_OUTPUT_FORMAT_BINARY 1 /* binary image output */
1323 #define TCC_OUTPUT_FORMAT_COFF 2 /* COFF */
1325 #define ARMAG "!<arch>\012" /* For COFF and a.out archives */
1327 typedef struct {
1328 unsigned int n_strx; /* index into string table of name */
1329 unsigned char n_type; /* type of symbol */
1330 unsigned char n_other; /* misc info (usually empty) */
1331 unsigned short n_desc; /* description field */
1332 unsigned int n_value; /* value of symbol */
1333 } Stab_Sym;
1335 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);
1337 ST_FUNC int put_elf_str(Section *s, const char *sym);
1338 ST_FUNC int put_elf_sym(Section *s, addr_t value, unsigned long size, int info, int other, int shndx, const char *name);
1339 ST_FUNC int add_elf_sym(Section *s, addr_t value, unsigned long size, int info, int other, int sh_num, const char *name);
1340 ST_FUNC int find_elf_sym(Section *s, const char *name);
1341 ST_FUNC void put_elf_reloc(Section *symtab, Section *s, unsigned long offset, int type, int symbol);
1342 ST_FUNC void put_elf_reloca(Section *symtab, Section *s, unsigned long offset, int type, int symbol, addr_t addend);
1344 ST_FUNC void put_stabs(const char *str, int type, int other, int desc, unsigned long value);
1345 ST_FUNC void put_stabs_r(const char *str, int type, int other, int desc, unsigned long value, Section *sec, int sym_index);
1346 ST_FUNC void put_stabn(int type, int other, int desc, int value);
1347 ST_FUNC void put_stabd(int type, int other, int desc);
1349 ST_FUNC void relocate_common_syms(void);
1350 ST_FUNC void relocate_syms(TCCState *s1, int do_resolve);
1351 ST_FUNC void relocate_section(TCCState *s1, Section *s);
1352 ST_FUNC void relocate_plt(TCCState *s1);
1354 ST_FUNC void tcc_add_linker_symbols(TCCState *s1);
1355 ST_FUNC int tcc_load_object_file(TCCState *s1, int fd, unsigned long file_offset);
1356 ST_FUNC int tcc_load_archive(TCCState *s1, int fd);
1357 ST_FUNC void tcc_add_bcheck(TCCState *s1);
1359 ST_FUNC void build_got_entries(TCCState *s1);
1360 ST_FUNC void tcc_add_runtime(TCCState *s1);
1362 ST_FUNC addr_t get_elf_sym_addr(TCCState *s, const char *name, int err);
1363 #if defined TCC_IS_NATIVE || defined TCC_TARGET_PE
1364 ST_FUNC void *tcc_get_symbol_err(TCCState *s, const char *name);
1365 #endif
1367 #ifndef TCC_TARGET_PE
1368 ST_FUNC int tcc_load_dll(TCCState *s1, int fd, const char *filename, int level);
1369 ST_FUNC int tcc_load_ldscript(TCCState *s1);
1370 ST_FUNC uint8_t *parse_comment(uint8_t *p);
1371 ST_FUNC void minp(void);
1372 ST_INLN void inp(void);
1373 ST_FUNC int handle_eob(void);
1374 #endif
1376 /* ------------ xxx-gen.c ------------ */
1378 ST_DATA const int reg_classes[NB_REGS];
1380 ST_FUNC void gsym_addr(int t, int a);
1381 ST_FUNC void gsym(int t);
1382 ST_FUNC void load(int r, SValue *sv);
1383 ST_FUNC void store(int r, SValue *v);
1384 ST_FUNC int gfunc_sret(CType *vt, int variadic, CType *ret, int *align, int *regsize);
1385 ST_FUNC void gfunc_call(int nb_args);
1386 ST_FUNC void gfunc_prolog(CType *func_type);
1387 ST_FUNC void gfunc_epilog(void);
1388 ST_FUNC int gjmp(int t);
1389 ST_FUNC void gjmp_addr(int a);
1390 ST_FUNC int gtst(int inv, int t);
1391 #if defined TCC_TARGET_I386 || defined TCC_TARGET_X86_64
1392 ST_FUNC void gtst_addr(int inv, int a);
1393 #else
1394 #define gtst_addr(inv, a) gsym_addr(gtst(inv, 0), a)
1395 #endif
1396 ST_FUNC void gen_opi(int op);
1397 ST_FUNC void gen_opf(int op);
1398 ST_FUNC void gen_cvt_ftoi(int t);
1399 ST_FUNC void gen_cvt_ftof(int t);
1400 ST_FUNC void ggoto(void);
1401 #ifndef TCC_TARGET_C67
1402 ST_FUNC void o(unsigned int c);
1403 #endif
1404 #ifndef TCC_TARGET_ARM
1405 ST_FUNC void gen_cvt_itof(int t);
1406 #endif
1407 ST_FUNC void gen_vla_sp_save(int addr);
1408 ST_FUNC void gen_vla_sp_restore(int addr);
1409 ST_FUNC void gen_vla_alloc(CType *type, int align);
1411 static inline uint16_t read16le(unsigned char *p)
1413 return p[0] | (uint16_t)p[1] << 8;
1416 static inline void write16le(unsigned char *p, uint16_t x)
1418 p[0] = x & 255;
1419 p[1] = x >> 8 & 255;
1422 static inline uint32_t read32le(unsigned char *p)
1424 return (p[0] | (uint32_t)p[1] << 8 |
1425 (uint32_t)p[2] << 16 | (uint32_t)p[3] << 24);
1428 static inline void write32le(unsigned char *p, uint32_t x)
1430 p[0] = x & 255;
1431 p[1] = x >> 8 & 255;
1432 p[2] = x >> 16 & 255;
1433 p[3] = x >> 24 & 255;
1436 static inline uint64_t read64le(unsigned char *p)
1438 return (p[0] | (uint64_t)p[1] << 8 |
1439 (uint64_t)p[2] << 16 | (uint64_t)p[3] << 24 |
1440 (uint64_t)p[4] << 32 | (uint64_t)p[5] << 40 |
1441 (uint64_t)p[6] << 48 | (uint64_t)p[7] << 56);
1444 static inline void write64le(unsigned char *p, uint64_t x)
1446 p[0] = x & 255;
1447 p[1] = x >> 8 & 255;
1448 p[2] = x >> 16 & 255;
1449 p[3] = x >> 24 & 255;
1450 p[4] = x >> 32 & 255;
1451 p[5] = x >> 40 & 255;
1452 p[6] = x >> 48 & 255;
1453 p[7] = x >> 56 & 255;
1456 /* ------------ i386-gen.c ------------ */
1457 #if defined TCC_TARGET_I386 || defined TCC_TARGET_X86_64
1458 ST_FUNC void g(int c);
1459 ST_FUNC int oad(int c, int s);
1460 ST_FUNC void gen_le16(int c);
1461 ST_FUNC void gen_le32(int c);
1462 ST_FUNC void gen_addr32(int r, Sym *sym, int c);
1463 ST_FUNC void gen_addrpc32(int r, Sym *sym, int c);
1464 #endif
1466 #ifdef CONFIG_TCC_BCHECK
1467 ST_FUNC void gen_bounded_ptr_add(void);
1468 ST_FUNC void gen_bounded_ptr_deref(void);
1469 #endif
1471 /* ------------ x86_64-gen.c ------------ */
1472 #ifdef TCC_TARGET_X86_64
1473 ST_FUNC void gen_addr64(int r, Sym *sym, int64_t c);
1474 ST_FUNC void gen_opl(int op);
1475 #endif
1477 /* ------------ arm-gen.c ------------ */
1478 #ifdef TCC_TARGET_ARM
1479 #if defined(TCC_ARM_EABI) && !defined(CONFIG_TCC_ELFINTERP)
1480 ST_FUNC char *default_elfinterp(struct TCCState *s);
1481 #endif
1482 ST_FUNC void arm_init(struct TCCState *s);
1483 ST_FUNC uint32_t encbranch(int pos, int addr, int fail);
1484 ST_FUNC void gen_cvt_itof1(int t);
1485 #endif
1487 /* ------------ arm64-gen.c ------------ */
1488 #ifdef TCC_TARGET_ARM64
1489 ST_FUNC void gen_cvt_sxtw(void);
1490 ST_FUNC void gen_opl(int op);
1491 ST_FUNC void greturn(void);
1492 ST_FUNC void gen_va_start(void);
1493 ST_FUNC void gen_va_arg(CType *t);
1494 ST_FUNC void gen_clear_cache(void);
1495 #endif
1497 /* ------------ c67-gen.c ------------ */
1498 #ifdef TCC_TARGET_C67
1499 #endif
1501 /* ------------ tcccoff.c ------------ */
1503 #ifdef TCC_TARGET_COFF
1504 ST_FUNC int tcc_output_coff(TCCState *s1, FILE *f);
1505 ST_FUNC int tcc_load_coff(TCCState * s1, int fd);
1506 #endif
1508 /* ------------ tccasm.c ------------ */
1509 ST_FUNC void asm_instr(void);
1510 ST_FUNC void asm_global_instr(void);
1511 #ifdef CONFIG_TCC_ASM
1512 ST_FUNC int find_constraint(ASMOperand *operands, int nb_operands, const char *name, const char **pp);
1513 ST_FUNC void asm_expr(TCCState *s1, ExprValue *pe);
1514 ST_FUNC int asm_int_expr(TCCState *s1);
1515 ST_FUNC int tcc_assemble(TCCState *s1, int do_preprocess);
1516 /* ------------ i386-asm.c ------------ */
1517 ST_FUNC void gen_expr32(ExprValue *pe);
1518 ST_FUNC void asm_opcode(TCCState *s1, int opcode);
1519 ST_FUNC void asm_compute_constraints(ASMOperand *operands, int nb_operands, int nb_outputs, const uint8_t *clobber_regs, int *pout_reg);
1520 ST_FUNC void subst_asm_operand(CString *add_str, SValue *sv, int modifier);
1521 ST_FUNC void asm_gen_code(ASMOperand *operands, int nb_operands, int nb_outputs, int is_output, uint8_t *clobber_regs, int out_reg);
1522 ST_FUNC void asm_clobber(uint8_t *clobber_regs, const char *str);
1523 #endif
1525 /* ------------ tccpe.c -------------- */
1526 #ifdef TCC_TARGET_PE
1527 ST_FUNC int pe_load_file(struct TCCState *s1, const char *filename, int fd);
1528 ST_FUNC int pe_output_file(TCCState * s1, const char *filename);
1529 ST_FUNC int pe_putimport(TCCState *s1, int dllindex, const char *name, addr_t value);
1530 ST_FUNC SValue *pe_getimport(SValue *sv, SValue *v2);
1531 #ifdef TCC_TARGET_X86_64
1532 ST_FUNC void pe_add_unwind_data(unsigned start, unsigned end, unsigned stack);
1533 #endif
1534 /* symbol properties stored in Elf32_Sym->st_other */
1535 # define ST_PE_EXPORT 0x10
1536 # define ST_PE_IMPORT 0x20
1537 # define ST_PE_STDCALL 0x40
1538 #endif
1540 /* ------------ tccrun.c ----------------- */
1541 #ifdef TCC_IS_NATIVE
1542 #ifdef CONFIG_TCC_STATIC
1543 #define RTLD_LAZY 0x001
1544 #define RTLD_NOW 0x002
1545 #define RTLD_GLOBAL 0x100
1546 #define RTLD_DEFAULT NULL
1547 /* dummy function for profiling */
1548 ST_FUNC void *dlopen(const char *filename, int flag);
1549 ST_FUNC void dlclose(void *p);
1550 ST_FUNC const char *dlerror(void);
1551 ST_FUNC void *resolve_sym(TCCState *s1, const char *symbol);
1552 #elif !defined _WIN32
1553 ST_FUNC void *resolve_sym(TCCState *s1, const char *symbol);
1554 #endif
1556 #ifdef CONFIG_TCC_BACKTRACE
1557 ST_DATA int rt_num_callers;
1558 ST_DATA const char **rt_bound_error_msg;
1559 ST_DATA void *rt_prog_main;
1560 ST_FUNC void tcc_set_num_callers(int n);
1561 #endif
1562 #endif
1564 /********************************************************/
1565 #undef ST_DATA
1566 #ifdef ONE_SOURCE
1567 #define ST_DATA static
1568 #else
1569 #define ST_DATA
1570 #endif
1571 /********************************************************/
1572 #endif /* _TCC_H */