tccpp: cleanup
[tinycc.git] / tcc.h
blob5f504bded97f1767a76c631b827398c09ffa6673
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 char *outfile; /* output filename */
759 char *option_m; /* only -m32/-m64 handled */
760 int print_search_dirs; /* option */
761 int option_r; /* option -r */
762 int do_bench; /* option -bench */
763 int gen_deps; /* option -MD */
764 char *deps_outfile; /* option -MF */
766 int args_pthread; /* -pthread option */
767 CString linker_arg; /* collect -Wl options for input such as "-Wl,-rpath -Wl,<path>" */
768 int args_ref; /* tcc_parse_args recursive counter */
771 struct filespec {
772 char type, name[1];
775 /* The current value can be: */
776 #define VT_VALMASK 0x003f /* mask for value location, register or: */
777 #define VT_CONST 0x0030 /* constant in vc (must be first non register value) */
778 #define VT_LLOCAL 0x0031 /* lvalue, offset on stack */
779 #define VT_LOCAL 0x0032 /* offset on stack */
780 #define VT_CMP 0x0033 /* the value is stored in processor flags (in vc) */
781 #define VT_JMP 0x0034 /* value is the consequence of jmp true (even) */
782 #define VT_JMPI 0x0035 /* value is the consequence of jmp false (odd) */
783 #define VT_REF 0x0040 /* value is pointer to structure rather than address */
784 #define VT_LVAL 0x0100 /* var is an lvalue */
785 #define VT_SYM 0x0200 /* a symbol value is added */
786 #define VT_MUSTCAST 0x0400 /* value must be casted to be correct (used for
787 char/short stored in integer registers) */
788 #define VT_MUSTBOUND 0x0800 /* bound checking must be done before
789 dereferencing value */
790 #define VT_BOUNDED 0x8000 /* value is bounded. The address of the
791 bounding function call point is in vc */
792 #define VT_LVAL_BYTE 0x1000 /* lvalue is a byte */
793 #define VT_LVAL_SHORT 0x2000 /* lvalue is a short */
794 #define VT_LVAL_UNSIGNED 0x4000 /* lvalue is unsigned */
795 #define VT_LVAL_TYPE (VT_LVAL_BYTE | VT_LVAL_SHORT | VT_LVAL_UNSIGNED)
797 /* types */
798 #define VT_BTYPE 0x000f /* mask for basic type */
799 #define VT_INT 0 /* integer type */
800 #define VT_BYTE 1 /* signed byte type */
801 #define VT_SHORT 2 /* short type */
802 #define VT_VOID 3 /* void type */
803 #define VT_PTR 4 /* pointer */
804 #define VT_ENUM 5 /* enum definition */
805 #define VT_FUNC 6 /* function type */
806 #define VT_STRUCT 7 /* struct/union definition */
807 #define VT_FLOAT 8 /* IEEE float */
808 #define VT_DOUBLE 9 /* IEEE double */
809 #define VT_LDOUBLE 10 /* IEEE long double */
810 #define VT_BOOL 11 /* ISOC99 boolean type */
811 #define VT_LLONG 12 /* 64 bit integer */
812 #define VT_LONG 13 /* long integer (NEVER USED as type, only
813 during parsing) */
814 #define VT_QLONG 14 /* 128-bit integer. Only used for x86-64 ABI */
815 #define VT_QFLOAT 15 /* 128-bit float. Only used for x86-64 ABI */
816 #define VT_UNSIGNED 0x0010 /* unsigned type */
817 #define VT_ARRAY 0x0020 /* array type (also has VT_PTR) */
818 #define VT_BITFIELD 0x0040 /* bitfield modifier */
819 #define VT_CONSTANT 0x0800 /* const modifier */
820 #define VT_VOLATILE 0x1000 /* volatile modifier */
821 #define VT_DEFSIGN 0x2000 /* signed type */
822 #define VT_VLA 0x00020000 /* VLA type (also has VT_PTR and VT_ARRAY) */
824 /* storage */
825 #define VT_EXTERN 0x00000080 /* extern definition */
826 #define VT_STATIC 0x00000100 /* static variable */
827 #define VT_TYPEDEF 0x00000200 /* typedef definition */
828 #define VT_INLINE 0x00000400 /* inline definition */
829 #define VT_IMPORT 0x00004000 /* win32: extern data imported from dll */
830 #define VT_EXPORT 0x00008000 /* win32: data exported from dll */
831 #define VT_WEAK 0x00010000 /* weak symbol */
832 #define VT_TLS 0x00040000 /* thread-local storage */
833 #define VT_VIS_SHIFT 19 /* shift for symbol visibility, overlapping
834 bitfield values, because bitfields never
835 have linkage and hence never have
836 visibility. */
837 #define VT_VIS_SIZE 2 /* We have four visibilities. */
838 #define VT_VIS_MASK (((1 << VT_VIS_SIZE)-1) << VT_VIS_SHIFT)
840 #define VT_STRUCT_SHIFT 19 /* shift for bitfield shift values (max: 32 - 2*6) */
843 /* type mask (except storage) */
844 #define VT_STORAGE (VT_EXTERN | VT_STATIC | VT_TYPEDEF | VT_INLINE | VT_IMPORT | VT_EXPORT | VT_WEAK | VT_VIS_MASK)
845 #define VT_TYPE (~(VT_STORAGE))
847 /* token values */
849 /* warning: the following compare tokens depend on i386 asm code */
850 #define TOK_ULT 0x92
851 #define TOK_UGE 0x93
852 #define TOK_EQ 0x94
853 #define TOK_NE 0x95
854 #define TOK_ULE 0x96
855 #define TOK_UGT 0x97
856 #define TOK_Nset 0x98
857 #define TOK_Nclear 0x99
858 #define TOK_LT 0x9c
859 #define TOK_GE 0x9d
860 #define TOK_LE 0x9e
861 #define TOK_GT 0x9f
863 #define TOK_LAND 0xa0
864 #define TOK_LOR 0xa1
865 #define TOK_DEC 0xa2
866 #define TOK_MID 0xa3 /* inc/dec, to void constant */
867 #define TOK_INC 0xa4
868 #define TOK_UDIV 0xb0 /* unsigned division */
869 #define TOK_UMOD 0xb1 /* unsigned modulo */
870 #define TOK_PDIV 0xb2 /* fast division with undefined rounding for pointers */
872 /* tokens that carry values (in additional token string space / tokc) --> */
873 #define TOK_CCHAR 0xb3 /* char constant in tokc */
874 #define TOK_LCHAR 0xb4
875 #define TOK_CINT 0xb5 /* number in tokc */
876 #define TOK_CUINT 0xb6 /* unsigned int constant */
877 #define TOK_CLLONG 0xb7 /* long long constant */
878 #define TOK_CULLONG 0xb8 /* unsigned long long constant */
879 #define TOK_STR 0xb9 /* pointer to string in tokc */
880 #define TOK_LSTR 0xba
881 #define TOK_CFLOAT 0xbb /* float constant */
882 #define TOK_CDOUBLE 0xbc /* double constant */
883 #define TOK_CLDOUBLE 0xbd /* long double constant */
884 #define TOK_PPNUM 0xbe /* preprocessor number */
885 #define TOK_PPSTR 0xbf /* preprocessor string */
886 #define TOK_LINENUM 0xc0 /* line number info */
887 /* <-- */
889 #define TOK_UMULL 0xc2 /* unsigned 32x32 -> 64 mul */
890 #define TOK_ADDC1 0xc3 /* add with carry generation */
891 #define TOK_ADDC2 0xc4 /* add with carry use */
892 #define TOK_SUBC1 0xc5 /* add with carry generation */
893 #define TOK_SUBC2 0xc6 /* add with carry use */
894 #define TOK_ARROW 0xc7
895 #define TOK_DOTS 0xc8 /* three dots */
896 #define TOK_SHR 0xc9 /* unsigned shift right */
897 #define TOK_TWOSHARPS 0xca /* ## preprocessing token */
898 #define TOK_PLCHLDR 0xcb /* placeholder token as defined in C99 */
899 #define TOK_NOSUBST 0xcc /* means following token has already been pp'd */
901 #define TOK_SHL 0x01 /* shift left */
902 #define TOK_SAR 0x02 /* signed shift right */
904 /* assignement operators : normal operator or 0x80 */
905 #define TOK_A_MOD 0xa5
906 #define TOK_A_AND 0xa6
907 #define TOK_A_MUL 0xaa
908 #define TOK_A_ADD 0xab
909 #define TOK_A_SUB 0xad
910 #define TOK_A_DIV 0xaf
911 #define TOK_A_XOR 0xde
912 #define TOK_A_OR 0xfc
913 #define TOK_A_SHL 0x81
914 #define TOK_A_SAR 0x82
916 #ifndef offsetof
917 #define offsetof(type, field) ((size_t) &((type *)0)->field)
918 #endif
920 #ifndef countof
921 #define countof(tab) (sizeof(tab) / sizeof((tab)[0]))
922 #endif
924 #define TOK_EOF (-1) /* end of file */
925 #define TOK_LINEFEED 10 /* line feed */
927 /* all identificators and strings have token above that */
928 #define TOK_IDENT 256
930 #define DEF_ASM(x) DEF(TOK_ASM_ ## x, #x)
931 #define TOK_ASM_int TOK_INT
932 #define DEF_ASMDIR(x) DEF(TOK_ASMDIR_ ## x, "." #x)
933 #define TOK_ASMDIR_FIRST TOK_ASMDIR_byte
934 #define TOK_ASMDIR_LAST TOK_ASMDIR_section
936 #if defined TCC_TARGET_I386 || defined TCC_TARGET_X86_64
937 /* only used for i386 asm opcodes definitions */
938 #define DEF_BWL(x) \
939 DEF(TOK_ASM_ ## x ## b, #x "b") \
940 DEF(TOK_ASM_ ## x ## w, #x "w") \
941 DEF(TOK_ASM_ ## x ## l, #x "l") \
942 DEF(TOK_ASM_ ## x, #x)
943 #define DEF_WL(x) \
944 DEF(TOK_ASM_ ## x ## w, #x "w") \
945 DEF(TOK_ASM_ ## x ## l, #x "l") \
946 DEF(TOK_ASM_ ## x, #x)
947 #ifdef TCC_TARGET_X86_64
948 # define DEF_BWLQ(x) \
949 DEF(TOK_ASM_ ## x ## b, #x "b") \
950 DEF(TOK_ASM_ ## x ## w, #x "w") \
951 DEF(TOK_ASM_ ## x ## l, #x "l") \
952 DEF(TOK_ASM_ ## x ## q, #x "q") \
953 DEF(TOK_ASM_ ## x, #x)
954 # define DEF_WLQ(x) \
955 DEF(TOK_ASM_ ## x ## w, #x "w") \
956 DEF(TOK_ASM_ ## x ## l, #x "l") \
957 DEF(TOK_ASM_ ## x ## q, #x "q") \
958 DEF(TOK_ASM_ ## x, #x)
959 # define DEF_BWLX DEF_BWLQ
960 # define DEF_WLX DEF_WLQ
961 /* number of sizes + 1 */
962 # define NBWLX 5
963 #else
964 # define DEF_BWLX DEF_BWL
965 # define DEF_WLX DEF_WL
966 /* number of sizes + 1 */
967 # define NBWLX 4
968 #endif
970 #define DEF_FP1(x) \
971 DEF(TOK_ASM_ ## f ## x ## s, "f" #x "s") \
972 DEF(TOK_ASM_ ## fi ## x ## l, "fi" #x "l") \
973 DEF(TOK_ASM_ ## f ## x ## l, "f" #x "l") \
974 DEF(TOK_ASM_ ## fi ## x ## s, "fi" #x "s")
976 #define DEF_FP(x) \
977 DEF(TOK_ASM_ ## f ## x, "f" #x ) \
978 DEF(TOK_ASM_ ## f ## x ## p, "f" #x "p") \
979 DEF_FP1(x)
981 #define DEF_ASMTEST(x,suffix) \
982 DEF_ASM(x ## o ## suffix) \
983 DEF_ASM(x ## no ## suffix) \
984 DEF_ASM(x ## b ## suffix) \
985 DEF_ASM(x ## c ## suffix) \
986 DEF_ASM(x ## nae ## suffix) \
987 DEF_ASM(x ## nb ## suffix) \
988 DEF_ASM(x ## nc ## suffix) \
989 DEF_ASM(x ## ae ## suffix) \
990 DEF_ASM(x ## e ## suffix) \
991 DEF_ASM(x ## z ## suffix) \
992 DEF_ASM(x ## ne ## suffix) \
993 DEF_ASM(x ## nz ## suffix) \
994 DEF_ASM(x ## be ## suffix) \
995 DEF_ASM(x ## na ## suffix) \
996 DEF_ASM(x ## nbe ## suffix) \
997 DEF_ASM(x ## a ## suffix) \
998 DEF_ASM(x ## s ## suffix) \
999 DEF_ASM(x ## ns ## suffix) \
1000 DEF_ASM(x ## p ## suffix) \
1001 DEF_ASM(x ## pe ## suffix) \
1002 DEF_ASM(x ## np ## suffix) \
1003 DEF_ASM(x ## po ## suffix) \
1004 DEF_ASM(x ## l ## suffix) \
1005 DEF_ASM(x ## nge ## suffix) \
1006 DEF_ASM(x ## nl ## suffix) \
1007 DEF_ASM(x ## ge ## suffix) \
1008 DEF_ASM(x ## le ## suffix) \
1009 DEF_ASM(x ## ng ## suffix) \
1010 DEF_ASM(x ## nle ## suffix) \
1011 DEF_ASM(x ## g ## suffix)
1013 #endif /* defined TCC_TARGET_I386 || defined TCC_TARGET_X86_64 */
1015 enum tcc_token {
1016 TOK_LAST = TOK_IDENT - 1
1017 #define DEF(id, str) ,id
1018 #include "tcctok.h"
1019 #undef DEF
1022 #define TOK_UIDENT TOK_DEFINE
1024 /* space exlcuding newline */
1025 static inline int is_space(int ch)
1027 return ch == ' ' || ch == '\t' || ch == '\v' || ch == '\f' || ch == '\r';
1030 static inline int isid(int c)
1032 return (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') || c == '_';
1035 static inline int isnum(int c)
1037 return c >= '0' && c <= '9';
1040 static inline int isoct(int c)
1042 return c >= '0' && c <= '7';
1045 static inline int toup(int c)
1047 return (c >= 'a' && c <= 'z') ? c - 'a' + 'A' : c;
1050 #ifndef PUB_FUNC
1051 # define PUB_FUNC
1052 #endif
1054 #ifdef ONE_SOURCE
1055 #define ST_INLN static inline
1056 #define ST_FUNC static
1057 #define ST_DATA static
1058 #else
1059 #define ST_INLN
1060 #define ST_FUNC
1061 #define ST_DATA extern
1062 #endif
1064 /* ------------ libtcc.c ------------ */
1066 /* use GNU C extensions */
1067 ST_DATA int gnu_ext;
1068 /* use Tiny C extensions */
1069 ST_DATA int tcc_ext;
1070 /* XXX: get rid of this ASAP */
1071 ST_DATA struct TCCState *tcc_state;
1073 #define AFF_PRINT_ERROR 0x0001 /* print error if file not found */
1074 #define AFF_REFERENCED_DLL 0x0002 /* load a referenced dll from another dll */
1075 #define AFF_PREPROCESS 0x0004 /* preprocess file */
1077 /* public functions currently used by the tcc main function */
1078 ST_FUNC char *pstrcpy(char *buf, int buf_size, const char *s);
1079 ST_FUNC char *pstrcat(char *buf, int buf_size, const char *s);
1080 ST_FUNC char *pstrncpy(char *out, const char *in, size_t num);
1081 PUB_FUNC char *tcc_basename(const char *name);
1082 PUB_FUNC char *tcc_fileextension (const char *name);
1084 #ifndef MEM_DEBUG
1085 PUB_FUNC void tcc_free(void *ptr);
1086 PUB_FUNC void *tcc_malloc(unsigned long size);
1087 PUB_FUNC void *tcc_mallocz(unsigned long size);
1088 PUB_FUNC void *tcc_realloc(void *ptr, unsigned long size);
1089 PUB_FUNC char *tcc_strdup(const char *str);
1090 #else
1091 #define tcc_free(ptr) tcc_free_debug(ptr)
1092 #define tcc_malloc(size) tcc_malloc_debug(size, __FILE__, __LINE__)
1093 #define tcc_mallocz(size) tcc_mallocz_debug(size, __FILE__, __LINE__)
1094 #define tcc_realloc(ptr,size) tcc_realloc_debug(ptr, size, __FILE__, __LINE__)
1095 #define tcc_strdup(str) tcc_strdup_debug(str, __FILE__, __LINE__)
1096 PUB_FUNC void tcc_free_debug(void *ptr);
1097 PUB_FUNC void *tcc_malloc_debug(unsigned long size, const char *file, int line);
1098 PUB_FUNC void *tcc_mallocz_debug(unsigned long size, const char *file, int line);
1099 PUB_FUNC void *tcc_realloc_debug(void *ptr, unsigned long size, const char *file, int line);
1100 PUB_FUNC char *tcc_strdup_debug(const char *str, const char *file, int line);
1101 #endif
1103 #define free(p) use_tcc_free(p)
1104 #define malloc(s) use_tcc_malloc(s)
1105 #define realloc(p, s) use_tcc_realloc(p, s)
1106 #undef strdup
1107 #define strdup(s) use_tcc_strdup(s)
1108 PUB_FUNC void tcc_memstats(int bench);
1109 PUB_FUNC void tcc_error_noabort(const char *fmt, ...);
1110 PUB_FUNC NORETURN void tcc_error(const char *fmt, ...);
1111 PUB_FUNC void tcc_warning(const char *fmt, ...);
1113 /* other utilities */
1114 ST_FUNC void dynarray_add(void ***ptab, int *nb_ptr, void *data);
1115 ST_FUNC void dynarray_reset(void *pp, int *n);
1116 ST_INLN void cstr_ccat(CString *cstr, int ch);
1117 ST_FUNC void cstr_cat(CString *cstr, const char *str, int len);
1118 ST_FUNC void cstr_wccat(CString *cstr, int ch);
1119 ST_FUNC void cstr_new(CString *cstr);
1120 ST_FUNC void cstr_free(CString *cstr);
1121 ST_FUNC void cstr_reset(CString *cstr);
1123 ST_FUNC Section *new_section(TCCState *s1, const char *name, int sh_type, int sh_flags);
1124 ST_FUNC void section_realloc(Section *sec, unsigned long new_size);
1125 ST_FUNC void *section_ptr_add(Section *sec, addr_t size);
1126 ST_FUNC void section_reserve(Section *sec, unsigned long size);
1127 ST_FUNC Section *find_section(TCCState *s1, const char *name);
1129 ST_FUNC void put_extern_sym2(Sym *sym, Section *section, addr_t value, unsigned long size, int can_add_underscore);
1130 ST_FUNC void put_extern_sym(Sym *sym, Section *section, addr_t value, unsigned long size);
1131 ST_FUNC void greloc(Section *s, Sym *sym, unsigned long offset, int type);
1132 ST_FUNC void greloca(Section *s, Sym *sym, unsigned long offset, int type, addr_t addend);
1134 ST_INLN void sym_free(Sym *sym);
1135 ST_FUNC Sym *sym_push2(Sym **ps, int v, int t, long c);
1136 ST_FUNC Sym *sym_find2(Sym *s, int v);
1137 ST_FUNC Sym *sym_push(int v, CType *type, int r, int c);
1138 ST_FUNC void sym_pop(Sym **ptop, Sym *b);
1139 ST_INLN Sym *struct_find(int v);
1140 ST_INLN Sym *sym_find(int v);
1141 ST_FUNC Sym *global_identifier_push(int v, int t, int c);
1143 ST_FUNC void tcc_open_bf(TCCState *s1, const char *filename, int initlen);
1144 ST_FUNC int tcc_open(TCCState *s1, const char *filename);
1145 ST_FUNC void tcc_close(void);
1147 ST_FUNC int tcc_add_file_internal(TCCState *s1, const char *filename, int flags, int filetype);
1148 ST_FUNC int tcc_add_crt(TCCState *s, const char *filename);
1150 #ifndef TCC_TARGET_PE
1151 ST_FUNC int tcc_add_dll(TCCState *s, const char *filename, int flags);
1152 #endif
1154 ST_FUNC void tcc_add_pragma_libs(TCCState *s1);
1155 PUB_FUNC int tcc_add_library_err(TCCState *s, const char *f);
1157 PUB_FUNC void tcc_print_stats(TCCState *s, int64_t total_time);
1158 PUB_FUNC int tcc_parse_args(TCCState *s, int argc, char **argv);
1159 PUB_FUNC void tcc_set_environment(TCCState *s);
1161 /* ------------ tccpp.c ------------ */
1163 ST_DATA struct BufferedFile *file;
1164 ST_DATA int ch, tok;
1165 ST_DATA CValue tokc;
1166 ST_DATA const int *macro_ptr;
1167 ST_DATA int parse_flags;
1168 ST_DATA int tok_flags;
1169 ST_DATA CString tokcstr; /* current parsed string, if any */
1171 /* display benchmark infos */
1172 ST_DATA int total_lines;
1173 ST_DATA int total_bytes;
1174 ST_DATA int tok_ident;
1175 ST_DATA TokenSym **table_ident;
1177 #define TOK_FLAG_BOL 0x0001 /* beginning of line before */
1178 #define TOK_FLAG_BOF 0x0002 /* beginning of file before */
1179 #define TOK_FLAG_ENDIF 0x0004 /* a endif was found matching starting #ifdef */
1180 #define TOK_FLAG_EOF 0x0008 /* end of file */
1182 #define PARSE_FLAG_PREPROCESS 0x0001 /* activate preprocessing */
1183 #define PARSE_FLAG_TOK_NUM 0x0002 /* return numbers instead of TOK_PPNUM */
1184 #define PARSE_FLAG_LINEFEED 0x0004 /* line feed is returned as a
1185 token. line feed is also
1186 returned at eof */
1187 #define PARSE_FLAG_ASM_FILE 0x0008 /* we processing an asm file: '#' can be used for line comment, etc. */
1188 #define PARSE_FLAG_SPACES 0x0010 /* next() returns space tokens (for -E) */
1189 #define PARSE_FLAG_ACCEPT_STRAYS 0x0020 /* next() returns '\\' token */
1190 #define PARSE_FLAG_TOK_STR 0x0040 /* return parsed strings instead of TOK_PPSTR */
1192 ST_FUNC TokenSym *tok_alloc(const char *str, int len);
1193 ST_FUNC const char *get_tok_str(int v, CValue *cv);
1194 ST_FUNC void begin_macro(TokenString *str, int alloc);
1195 ST_FUNC void end_macro(void);
1196 ST_FUNC void save_parse_state(ParseState *s);
1197 ST_FUNC void restore_parse_state(ParseState *s);
1198 ST_INLN void tok_str_new(TokenString *s);
1199 ST_FUNC TokenString *tok_str_alloc(void);
1200 ST_FUNC void tok_str_free(int *str);
1201 ST_FUNC void tok_str_add(TokenString *s, int t);
1202 ST_FUNC void tok_str_add_tok(TokenString *s);
1203 ST_INLN void define_push(int v, int macro_type, int *str, Sym *first_arg);
1204 ST_FUNC void define_undef(Sym *s);
1205 ST_INLN Sym *define_find(int v);
1206 ST_FUNC void free_defines(Sym *b);
1207 ST_FUNC Sym *label_find(int v);
1208 ST_FUNC Sym *label_push(Sym **ptop, int v, int flags);
1209 ST_FUNC void label_pop(Sym **ptop, Sym *slast);
1210 ST_FUNC void parse_define(void);
1211 ST_FUNC void preprocess(int is_bof);
1212 ST_FUNC void next_nomacro(void);
1213 ST_FUNC void next(void);
1214 ST_INLN void unget_tok(int last_tok);
1215 ST_FUNC void preprocess_init(TCCState *s1);
1216 ST_FUNC void preprocess_new(void);
1217 ST_FUNC void preprocess_delete(void);
1218 ST_FUNC int tcc_preprocess(TCCState *s1);
1219 ST_FUNC void skip(int c);
1220 ST_FUNC NORETURN void expect(const char *msg);
1222 /* ------------ tccgen.c ------------ */
1224 ST_DATA Section *text_section, *data_section, *bss_section; /* predefined sections */
1225 ST_DATA Section *cur_text_section; /* current section where function code is generated */
1226 #ifdef CONFIG_TCC_ASM
1227 ST_DATA Section *last_text_section; /* to handle .previous asm directive */
1228 #endif
1229 #ifdef CONFIG_TCC_BCHECK
1230 /* bound check related sections */
1231 ST_DATA Section *bounds_section; /* contains global data bound description */
1232 ST_DATA Section *lbounds_section; /* contains local data bound description */
1233 #endif
1234 /* symbol sections */
1235 ST_DATA Section *symtab_section, *strtab_section;
1236 /* debug sections */
1237 ST_DATA Section *stab_section, *stabstr_section;
1239 #define SYM_POOL_NB (8192 / sizeof(Sym))
1240 ST_DATA Sym *sym_free_first;
1241 ST_DATA void **sym_pools;
1242 ST_DATA int nb_sym_pools;
1244 ST_DATA Sym *global_stack;
1245 ST_DATA Sym *local_stack;
1246 ST_DATA Sym *local_label_stack;
1247 ST_DATA Sym *global_label_stack;
1248 ST_DATA Sym *define_stack;
1249 ST_DATA CType char_pointer_type, func_old_type, int_type, size_type;
1250 ST_DATA SValue __vstack[1+/*to make bcheck happy*/ VSTACK_SIZE], *vtop, *pvtop;
1251 #define vstack (__vstack + 1)
1252 ST_DATA int rsym, anon_sym, ind, loc;
1254 ST_DATA int const_wanted; /* true if constant wanted */
1255 ST_DATA int nocode_wanted; /* true if no code generation wanted for an expression */
1256 ST_DATA int global_expr; /* true if compound literals must be allocated globally (used during initializers parsing */
1257 ST_DATA CType func_vt; /* current function return type (used by return instruction) */
1258 ST_DATA int func_var; /* true if current function is variadic */
1259 ST_DATA int func_vc;
1260 ST_DATA int last_line_num, last_ind, func_ind; /* debug last line number and pc */
1261 ST_DATA const char *funcname;
1263 ST_FUNC void check_vstack(void);
1264 ST_INLN int is_float(int t);
1265 ST_FUNC int ieee_finite(double d);
1266 ST_FUNC void test_lvalue(void);
1267 ST_FUNC void swap(int *p, int *q);
1268 ST_FUNC void vpushi(int v);
1269 ST_FUNC Sym *external_global_sym(int v, CType *type, int r);
1270 ST_FUNC void vset(CType *type, int r, int v);
1271 ST_FUNC void vswap(void);
1272 ST_FUNC void vpush_global_sym(CType *type, int v);
1273 ST_FUNC void vrote(SValue *e, int n);
1274 ST_FUNC void vrott(int n);
1275 ST_FUNC void vrotb(int n);
1276 #ifdef TCC_TARGET_ARM
1277 ST_FUNC int get_reg_ex(int rc, int rc2);
1278 ST_FUNC void lexpand_nr(void);
1279 #endif
1280 ST_FUNC void vpushv(SValue *v);
1281 ST_FUNC void save_reg(int r);
1282 ST_FUNC int get_reg(int rc);
1283 ST_FUNC void save_regs(int n);
1284 ST_FUNC void gaddrof(void);
1285 ST_FUNC int gv(int rc);
1286 ST_FUNC void gv2(int rc1, int rc2);
1287 ST_FUNC void vpop(void);
1288 ST_FUNC void gen_op(int op);
1289 ST_FUNC int type_size(CType *type, int *a);
1290 ST_FUNC void mk_pointer(CType *type);
1291 ST_FUNC void vstore(void);
1292 ST_FUNC void inc(int post, int c);
1293 ST_FUNC void parse_asm_str(CString *astr);
1294 ST_FUNC int lvalue_type(int t);
1295 ST_FUNC void indir(void);
1296 ST_FUNC void unary(void);
1297 ST_FUNC void expr_prod(void);
1298 ST_FUNC void expr_sum(void);
1299 ST_FUNC void gexpr(void);
1300 ST_FUNC int expr_const(void);
1301 ST_FUNC void gen_inline_functions(void);
1302 ST_FUNC void decl(int l);
1303 #if defined CONFIG_TCC_BCHECK || defined TCC_TARGET_C67
1304 ST_FUNC Sym *get_sym_ref(CType *type, Section *sec, unsigned long offset, unsigned long size);
1305 #endif
1306 #if defined TCC_TARGET_X86_64 && !defined TCC_TARGET_PE
1307 ST_FUNC int classify_x86_64_va_arg(CType *ty);
1308 #endif
1310 /* ------------ tccelf.c ------------ */
1312 #define TCC_OUTPUT_FORMAT_ELF 0 /* default output format: ELF */
1313 #define TCC_OUTPUT_FORMAT_BINARY 1 /* binary image output */
1314 #define TCC_OUTPUT_FORMAT_COFF 2 /* COFF */
1316 #define ARMAG "!<arch>\012" /* For COFF and a.out archives */
1318 typedef struct {
1319 unsigned int n_strx; /* index into string table of name */
1320 unsigned char n_type; /* type of symbol */
1321 unsigned char n_other; /* misc info (usually empty) */
1322 unsigned short n_desc; /* description field */
1323 unsigned int n_value; /* value of symbol */
1324 } Stab_Sym;
1326 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);
1328 ST_FUNC int put_elf_str(Section *s, const char *sym);
1329 ST_FUNC int put_elf_sym(Section *s, addr_t value, unsigned long size, int info, int other, int shndx, const char *name);
1330 ST_FUNC int add_elf_sym(Section *s, addr_t value, unsigned long size, int info, int other, int sh_num, const char *name);
1331 ST_FUNC int find_elf_sym(Section *s, const char *name);
1332 ST_FUNC void put_elf_reloc(Section *symtab, Section *s, unsigned long offset, int type, int symbol);
1333 ST_FUNC void put_elf_reloca(Section *symtab, Section *s, unsigned long offset, int type, int symbol, addr_t addend);
1335 ST_FUNC void put_stabs(const char *str, int type, int other, int desc, unsigned long value);
1336 ST_FUNC void put_stabs_r(const char *str, int type, int other, int desc, unsigned long value, Section *sec, int sym_index);
1337 ST_FUNC void put_stabn(int type, int other, int desc, int value);
1338 ST_FUNC void put_stabd(int type, int other, int desc);
1340 ST_FUNC void relocate_common_syms(void);
1341 ST_FUNC void relocate_syms(TCCState *s1, int do_resolve);
1342 ST_FUNC void relocate_section(TCCState *s1, Section *s);
1343 ST_FUNC void relocate_plt(TCCState *s1);
1345 ST_FUNC void tcc_add_linker_symbols(TCCState *s1);
1346 ST_FUNC int tcc_load_object_file(TCCState *s1, int fd, unsigned long file_offset);
1347 ST_FUNC int tcc_load_archive(TCCState *s1, int fd);
1348 ST_FUNC void tcc_add_bcheck(TCCState *s1);
1350 ST_FUNC void build_got_entries(TCCState *s1);
1351 ST_FUNC void tcc_add_runtime(TCCState *s1);
1353 ST_FUNC addr_t get_elf_sym_addr(TCCState *s, const char *name, int err);
1354 #if defined TCC_IS_NATIVE || defined TCC_TARGET_PE
1355 ST_FUNC void *tcc_get_symbol_err(TCCState *s, const char *name);
1356 #endif
1358 #ifndef TCC_TARGET_PE
1359 ST_FUNC int tcc_load_dll(TCCState *s1, int fd, const char *filename, int level);
1360 ST_FUNC int tcc_load_ldscript(TCCState *s1);
1361 ST_FUNC uint8_t *parse_comment(uint8_t *p);
1362 ST_FUNC void minp(void);
1363 ST_INLN void inp(void);
1364 ST_FUNC int handle_eob(void);
1365 #endif
1367 /* ------------ xxx-gen.c ------------ */
1369 ST_DATA const int reg_classes[NB_REGS];
1371 ST_FUNC void gsym_addr(int t, int a);
1372 ST_FUNC void gsym(int t);
1373 ST_FUNC void load(int r, SValue *sv);
1374 ST_FUNC void store(int r, SValue *v);
1375 ST_FUNC int gfunc_sret(CType *vt, int variadic, CType *ret, int *align, int *regsize);
1376 ST_FUNC void gfunc_call(int nb_args);
1377 ST_FUNC void gfunc_prolog(CType *func_type);
1378 ST_FUNC void gfunc_epilog(void);
1379 ST_FUNC int gjmp(int t);
1380 ST_FUNC void gjmp_addr(int a);
1381 ST_FUNC int gtst(int inv, int t);
1382 #if defined TCC_TARGET_I386 || defined TCC_TARGET_X86_64
1383 ST_FUNC void gtst_addr(int inv, int a);
1384 #else
1385 #define gtst_addr(inv, a) gsym_addr(gtst(inv, 0), a)
1386 #endif
1387 ST_FUNC void gen_opi(int op);
1388 ST_FUNC void gen_opf(int op);
1389 ST_FUNC void gen_cvt_ftoi(int t);
1390 ST_FUNC void gen_cvt_ftof(int t);
1391 ST_FUNC void ggoto(void);
1392 #ifndef TCC_TARGET_C67
1393 ST_FUNC void o(unsigned int c);
1394 #endif
1395 #ifndef TCC_TARGET_ARM
1396 ST_FUNC void gen_cvt_itof(int t);
1397 #endif
1398 ST_FUNC void gen_vla_sp_save(int addr);
1399 ST_FUNC void gen_vla_sp_restore(int addr);
1400 ST_FUNC void gen_vla_alloc(CType *type, int align);
1402 static inline uint16_t read16le(unsigned char *p)
1404 return p[0] | (uint16_t)p[1] << 8;
1407 static inline void write16le(unsigned char *p, uint16_t x)
1409 p[0] = x & 255;
1410 p[1] = x >> 8 & 255;
1413 static inline uint32_t read32le(unsigned char *p)
1415 return (p[0] | (uint32_t)p[1] << 8 |
1416 (uint32_t)p[2] << 16 | (uint32_t)p[3] << 24);
1419 static inline void write32le(unsigned char *p, uint32_t x)
1421 p[0] = x & 255;
1422 p[1] = x >> 8 & 255;
1423 p[2] = x >> 16 & 255;
1424 p[3] = x >> 24 & 255;
1427 static inline uint64_t read64le(unsigned char *p)
1429 return (p[0] | (uint64_t)p[1] << 8 |
1430 (uint64_t)p[2] << 16 | (uint64_t)p[3] << 24 |
1431 (uint64_t)p[4] << 32 | (uint64_t)p[5] << 40 |
1432 (uint64_t)p[6] << 48 | (uint64_t)p[7] << 56);
1435 static inline void write64le(unsigned char *p, uint64_t x)
1437 p[0] = x & 255;
1438 p[1] = x >> 8 & 255;
1439 p[2] = x >> 16 & 255;
1440 p[3] = x >> 24 & 255;
1441 p[4] = x >> 32 & 255;
1442 p[5] = x >> 40 & 255;
1443 p[6] = x >> 48 & 255;
1444 p[7] = x >> 56 & 255;
1447 /* ------------ i386-gen.c ------------ */
1448 #if defined TCC_TARGET_I386 || defined TCC_TARGET_X86_64
1449 ST_FUNC void g(int c);
1450 ST_FUNC int oad(int c, int s);
1451 ST_FUNC void gen_le16(int c);
1452 ST_FUNC void gen_le32(int c);
1453 ST_FUNC void gen_addr32(int r, Sym *sym, int c);
1454 ST_FUNC void gen_addrpc32(int r, Sym *sym, int c);
1455 #endif
1457 #ifdef CONFIG_TCC_BCHECK
1458 ST_FUNC void gen_bounded_ptr_add(void);
1459 ST_FUNC void gen_bounded_ptr_deref(void);
1460 #endif
1462 /* ------------ x86_64-gen.c ------------ */
1463 #ifdef TCC_TARGET_X86_64
1464 ST_FUNC void gen_addr64(int r, Sym *sym, int64_t c);
1465 ST_FUNC void gen_opl(int op);
1466 #endif
1468 /* ------------ arm-gen.c ------------ */
1469 #ifdef TCC_TARGET_ARM
1470 #if defined(TCC_ARM_EABI) && !defined(CONFIG_TCC_ELFINTERP)
1471 ST_FUNC char *default_elfinterp(struct TCCState *s);
1472 #endif
1473 ST_FUNC void arm_init(struct TCCState *s);
1474 ST_FUNC uint32_t encbranch(int pos, int addr, int fail);
1475 ST_FUNC void gen_cvt_itof1(int t);
1476 #endif
1478 /* ------------ arm64-gen.c ------------ */
1479 #ifdef TCC_TARGET_ARM64
1480 ST_FUNC void gen_cvt_sxtw(void);
1481 ST_FUNC void gen_opl(int op);
1482 ST_FUNC void greturn(void);
1483 ST_FUNC void gen_va_start(void);
1484 ST_FUNC void gen_va_arg(CType *t);
1485 ST_FUNC void gen_clear_cache(void);
1486 #endif
1488 /* ------------ c67-gen.c ------------ */
1489 #ifdef TCC_TARGET_C67
1490 #endif
1492 /* ------------ tcccoff.c ------------ */
1494 #ifdef TCC_TARGET_COFF
1495 ST_FUNC int tcc_output_coff(TCCState *s1, FILE *f);
1496 ST_FUNC int tcc_load_coff(TCCState * s1, int fd);
1497 #endif
1499 /* ------------ tccasm.c ------------ */
1500 ST_FUNC void asm_instr(void);
1501 ST_FUNC void asm_global_instr(void);
1502 #ifdef CONFIG_TCC_ASM
1503 ST_FUNC int find_constraint(ASMOperand *operands, int nb_operands, const char *name, const char **pp);
1504 ST_FUNC void asm_expr(TCCState *s1, ExprValue *pe);
1505 ST_FUNC int asm_int_expr(TCCState *s1);
1506 ST_FUNC int tcc_assemble(TCCState *s1, int do_preprocess);
1507 /* ------------ i386-asm.c ------------ */
1508 ST_FUNC void gen_expr32(ExprValue *pe);
1509 ST_FUNC void asm_opcode(TCCState *s1, int opcode);
1510 ST_FUNC void asm_compute_constraints(ASMOperand *operands, int nb_operands, int nb_outputs, const uint8_t *clobber_regs, int *pout_reg);
1511 ST_FUNC void subst_asm_operand(CString *add_str, SValue *sv, int modifier);
1512 ST_FUNC void asm_gen_code(ASMOperand *operands, int nb_operands, int nb_outputs, int is_output, uint8_t *clobber_regs, int out_reg);
1513 ST_FUNC void asm_clobber(uint8_t *clobber_regs, const char *str);
1514 #endif
1516 /* ------------ tccpe.c -------------- */
1517 #ifdef TCC_TARGET_PE
1518 ST_FUNC int pe_load_file(struct TCCState *s1, const char *filename, int fd);
1519 ST_FUNC int pe_output_file(TCCState * s1, const char *filename);
1520 ST_FUNC int pe_putimport(TCCState *s1, int dllindex, const char *name, addr_t value);
1521 ST_FUNC SValue *pe_getimport(SValue *sv, SValue *v2);
1522 #ifdef TCC_TARGET_X86_64
1523 ST_FUNC void pe_add_unwind_data(unsigned start, unsigned end, unsigned stack);
1524 #endif
1525 /* symbol properties stored in Elf32_Sym->st_other */
1526 # define ST_PE_EXPORT 0x10
1527 # define ST_PE_IMPORT 0x20
1528 # define ST_PE_STDCALL 0x40
1529 #endif
1531 /* ------------ tccrun.c ----------------- */
1532 #ifdef TCC_IS_NATIVE
1533 #ifdef CONFIG_TCC_STATIC
1534 #define RTLD_LAZY 0x001
1535 #define RTLD_NOW 0x002
1536 #define RTLD_GLOBAL 0x100
1537 #define RTLD_DEFAULT NULL
1538 /* dummy function for profiling */
1539 ST_FUNC void *dlopen(const char *filename, int flag);
1540 ST_FUNC void dlclose(void *p);
1541 ST_FUNC const char *dlerror(void);
1542 ST_FUNC void *resolve_sym(TCCState *s1, const char *symbol);
1543 #elif !defined _WIN32
1544 ST_FUNC void *resolve_sym(TCCState *s1, const char *symbol);
1545 #endif
1547 #ifdef CONFIG_TCC_BACKTRACE
1548 ST_DATA int rt_num_callers;
1549 ST_DATA const char **rt_bound_error_msg;
1550 ST_DATA void *rt_prog_main;
1551 ST_FUNC void tcc_set_num_callers(int n);
1552 #endif
1553 #endif
1555 /********************************************************/
1556 #undef ST_DATA
1557 #ifdef ONE_SOURCE
1558 #define ST_DATA static
1559 #else
1560 #define ST_DATA
1561 #endif
1562 /********************************************************/
1563 #endif /* _TCC_H */