fix its own making bug. Improved init_putz (). Modify the tests / Makefile to make...
[tinycc.git] / tcc.h
blobe01643f1acb46d74b0869dc7d83f8a8d7c6f5d7b
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 #ifdef CONFIG_TCCBOOT
28 #include "tccboot.h"
29 #define CONFIG_TCC_STATIC
30 #else
32 #include <stdlib.h>
33 #include <stdio.h>
34 #include <stdarg.h>
35 #include <string.h>
36 #include <errno.h>
37 #include <math.h>
38 #include <signal.h>
39 #include <fcntl.h>
40 #include <setjmp.h>
41 #include <time.h>
42 #include <assert.h>
44 #ifdef CONFIG_TCCASSERT
45 #include <assert.h>
46 #define TCC_ASSERT(ex) assert(ex)
47 #else
48 #define TCC_ASSERT(ex)
49 #endif
51 #ifndef _WIN32
52 # include <unistd.h>
53 # include <sys/time.h>
54 # include <sys/ucontext.h>
55 # include <sys/mman.h>
56 # ifndef CONFIG_TCC_STATIC
57 # include <dlfcn.h>
58 # endif
59 /* XXX: need to define this to use them in non ISOC99 context */
60 extern float strtof (const char *__nptr, char **__endptr);
61 extern long double strtold (const char *__nptr, char **__endptr);
62 #else /* on _WIN32: */
63 # include <windows.h>
64 # include <sys/timeb.h>
65 # include <io.h> /* open, close etc. */
66 # include <direct.h> /* getcwd */
67 # ifdef __GNUC__
68 # include <stdint.h>
69 # endif
70 # define inline __inline
71 # define inp next_inp
72 # define snprintf _snprintf
73 # define vsnprintf _vsnprintf
74 # ifndef __GNUC__
75 # define strtold (long double)strtod
76 # define strtof (float)strtod
77 # define strtoll _strtoi64
78 # define strtoull _strtoui64
79 # endif
80 # ifdef LIBTCC_AS_DLL
81 # define LIBTCCAPI __declspec(dllexport)
82 # define PUB_FUNC LIBTCCAPI
83 # endif
84 #endif
86 #endif /* !CONFIG_TCCBOOT */
88 #ifndef O_BINARY
89 # define O_BINARY 0
90 #endif
92 #ifdef __GNUC__
93 # define NORETURN __attribute__ ((noreturn))
94 #elif defined _MSC_VER
95 # define NORETURN __declspec(noreturn)
96 #else
97 # define NORETURN
98 #endif
100 #ifdef _WIN32
101 # define IS_DIRSEP(c) (c == '/' || c == '\\')
102 # define IS_ABSPATH(p) (IS_DIRSEP(p[0]) || (p[0] && p[1] == ':' && IS_DIRSEP(p[2])))
103 # define PATHCMP stricmp
104 #else
105 # define IS_DIRSEP(c) (c == '/')
106 # define IS_ABSPATH(p) IS_DIRSEP(p[0])
107 # define PATHCMP strcmp
108 #endif
110 #ifdef TCC_TARGET_PE
111 #define PATHSEP ';'
112 #else
113 #define PATHSEP ':'
114 #endif
116 #include "elf.h"
117 #ifdef TCC_TARGET_X86_64
118 # define ELFCLASSW ELFCLASS64
119 # define ElfW(type) Elf##64##_##type
120 # define ELFW(type) ELF##64##_##type
121 # define ElfW_Rel ElfW(Rela)
122 # define SHT_RELX SHT_RELA
123 # define REL_SECTION_FMT ".rela%s"
124 /* XXX: DLL with PLT would only work with x86-64 for now */
125 # define TCC_OUTPUT_DLL_WITH_PLT
126 #else
127 # define ELFCLASSW ELFCLASS32
128 # define ElfW(type) Elf##32##_##type
129 # define ELFW(type) ELF##32##_##type
130 # define ElfW_Rel ElfW(Rel)
131 # define SHT_RELX SHT_REL
132 # define REL_SECTION_FMT ".rel%s"
133 #endif
135 /* target address type */
136 #define addr_t ElfW(Addr)
138 #include "stab.h"
139 #include "libtcc.h"
141 /* parser debug */
142 /* #define PARSE_DEBUG */
143 /* preprocessor debug */
144 /* #define PP_DEBUG */
145 /* include file debug */
146 /* #define INC_DEBUG */
147 /* memory leak debug */
148 /* #define MEM_DEBUG */
149 /* assembler debug */
150 /* #define ASM_DEBUG */
151 /* #define PRINTF_ASM_CODE */
153 /* target selection */
154 /* #define TCC_TARGET_I386 *//* i386 code generator */
155 /* #define TCC_TARGET_ARM *//* ARMv4 code generator */
156 /* #define TCC_TARGET_C67 *//* TMS320C67xx code generator */
157 /* #define TCC_TARGET_X86_64 *//* x86-64 code generator */
159 /* default target is I386 */
160 #if !defined(TCC_TARGET_I386) && !defined(TCC_TARGET_ARM) && \
161 !defined(TCC_TARGET_C67) && !defined(TCC_TARGET_X86_64)
162 #define TCC_TARGET_I386
163 #endif
165 #if !defined(TCC_UCLIBC) && !defined(TCC_TARGET_ARM) && \
166 !defined(TCC_TARGET_C67) && !defined(TCC_TARGET_X86_64) && \
167 !defined(CONFIG_USE_LIBGCC)
168 #define CONFIG_TCC_BCHECK /* enable bound checking code */
169 #endif
171 /* define it to include assembler support */
172 #if !defined(TCC_TARGET_ARM) && !defined(TCC_TARGET_C67)
173 #define CONFIG_TCC_ASM
174 #endif
176 /* object format selection */
177 #if defined(TCC_TARGET_C67)
178 #define TCC_TARGET_COFF
179 #endif
181 /* only native compiler supports -run */
182 #if defined _WIN32 == defined TCC_TARGET_PE
183 # if (defined __i386__ || defined _X86_) && defined TCC_TARGET_I386
184 # define TCC_IS_NATIVE
185 # elif (defined __x86_64__ || defined _AMD64_) && defined TCC_TARGET_X86_64
186 # define TCC_IS_NATIVE
187 # elif defined __arm__ && defined TCC_TARGET_ARM
188 # define TCC_IS_NATIVE
189 # endif
190 #endif
192 #if defined TCC_IS_NATIVE && !defined CONFIG_TCCBOOT
193 # define CONFIG_TCC_BACKTRACE
194 #endif
196 /* ------------ path configuration ------------ */
198 #ifndef CONFIG_SYSROOT
199 # define CONFIG_SYSROOT ""
200 #endif
201 #ifndef CONFIG_TCCDIR
202 # define CONFIG_TCCDIR "."
203 #endif
204 #ifndef CONFIG_LDDIR
205 # define CONFIG_LDDIR "lib"
206 #endif
208 #ifdef CONFIG_MULTIARCHDIR
209 # define USE_MUADIR(s) s "/" CONFIG_MULTIARCHDIR
210 # define ALSO_MUADIR(s) s "/" CONFIG_MULTIARCHDIR ":" s
211 #else
212 # define USE_MUADIR(s) s
213 # define ALSO_MUADIR(s) s
214 #endif
216 /* path to find crt1.o, crti.o and crtn.o */
217 #ifndef CONFIG_TCC_CRTPREFIX
218 # define CONFIG_TCC_CRTPREFIX USE_MUADIR(CONFIG_SYSROOT "/usr/" CONFIG_LDDIR)
219 #endif
221 /* Below: {B} is substituted by CONFIG_TCCDIR (rsp. -B option) */
223 /* system include paths */
224 #ifndef CONFIG_TCC_SYSINCLUDEPATHS
225 # ifdef TCC_TARGET_PE
226 # define CONFIG_TCC_SYSINCLUDEPATHS "{B}/include;{B}/include/winapi"
227 # else
228 # define CONFIG_TCC_SYSINCLUDEPATHS \
229 ALSO_MUADIR(CONFIG_SYSROOT "/usr/local/include") \
230 ":" ALSO_MUADIR(CONFIG_SYSROOT "/usr/include") \
231 ":" "{B}/include"
232 # endif
233 #endif
235 /* library search paths */
236 #ifndef CONFIG_TCC_LIBPATHS
237 # ifdef TCC_TARGET_PE
238 # define CONFIG_TCC_LIBPATHS "{B}/lib"
239 # else
240 # define CONFIG_TCC_LIBPATHS \
241 ALSO_MUADIR(CONFIG_SYSROOT "/usr/" CONFIG_LDDIR) \
242 ":" ALSO_MUADIR(CONFIG_SYSROOT "/" CONFIG_LDDIR) \
243 ":" ALSO_MUADIR(CONFIG_SYSROOT "/usr/local/" CONFIG_LDDIR)
244 # endif
245 #endif
247 /* name of ELF interpreter */
248 #ifndef CONFIG_TCC_ELFINTERP
249 # if defined __FreeBSD__
250 # define CONFIG_TCC_ELFINTERP "/libexec/ld-elf.so.1"
251 # elif defined __FreeBSD_kernel__
252 # if defined(TCC_TARGET_X86_64)
253 # define CONFIG_TCC_ELFINTERP "/lib/ld-kfreebsd-x86-64.so.1"
254 # else
255 # define CONFIG_TCC_ELFINTERP "/lib/ld.so.1"
256 # endif
257 # elif defined __DragonFly__
258 # define CONFIG_TCC_ELFINTERP "/usr/libexec/ld-elf.so.2"
259 # elif defined __GNU__
260 # define CONFIG_TCC_ELFINTERP "/lib/ld.so"
261 # elif defined(TCC_TARGET_X86_64)
262 # define CONFIG_TCC_ELFINTERP "/lib64/ld-linux-x86-64.so.2"
263 # elif defined(TCC_UCLIBC)
264 # define CONFIG_TCC_ELFINTERP "/lib/ld-uClibc.so.0"
265 # elif defined(TCC_TARGET_PE)
266 # define CONFIG_TCC_ELFINTERP "-"
267 # elif !defined(TCC_ARM_EABI)
268 # define CONFIG_TCC_ELFINTERP "/lib/ld-linux.so.2"
269 # endif
270 #endif
272 /* var elf_interp dans *-gen.c */
273 #ifdef CONFIG_TCC_ELFINTERP
274 # define DEFAULT_ELFINTERP(s) CONFIG_TCC_ELFINTERP
275 #else
276 # define DEFAULT_ELFINTERP(s) default_elfinterp(s)
277 #endif
279 /* library to use with CONFIG_USE_LIBGCC instead of libcrt.a */
280 #define TCC_LIBGCC USE_MUADIR(CONFIG_SYSROOT "/" CONFIG_LDDIR) "/libgcc_s.so.1"
282 /* -------------------------------------------- */
283 /* include the target specific definitions */
285 #define TARGET_DEFS_ONLY
286 #ifdef TCC_TARGET_I386
287 # include "i386-gen.c"
288 #endif
289 #ifdef TCC_TARGET_X86_64
290 # include "x86_64-gen.c"
291 #endif
292 #ifdef TCC_TARGET_ARM
293 # include "arm-gen.c"
294 #endif
295 #ifdef TCC_TARGET_C67
296 # include "coff.h"
297 # include "c67-gen.c"
298 #endif
299 #undef TARGET_DEFS_ONLY
301 /* -------------------------------------------- */
303 #define INCLUDE_STACK_SIZE 32
304 #define IFDEF_STACK_SIZE 64
305 #define VSTACK_SIZE 256
306 #define STRING_MAX_SIZE 1024
307 #define PACK_STACK_SIZE 8
309 #define TOK_HASH_SIZE 8192 /* must be a power of two */
310 #define TOK_ALLOC_INCR 512 /* must be a power of two */
311 #define TOK_MAX_SIZE 4 /* token max size in int unit when stored in string */
313 /* token symbol management */
314 typedef struct TokenSym {
315 struct TokenSym *hash_next;
316 struct Sym *sym_define; /* direct pointer to define */
317 struct Sym *sym_label; /* direct pointer to label */
318 struct Sym *sym_struct; /* direct pointer to structure */
319 struct Sym *sym_identifier; /* direct pointer to identifier */
320 int tok; /* token number */
321 int len;
322 char str[1];
323 } TokenSym;
325 #ifdef TCC_TARGET_PE
326 typedef unsigned short nwchar_t;
327 #else
328 typedef int nwchar_t;
329 #endif
331 typedef struct CString {
332 int size; /* size in bytes */
333 void *data; /* either 'char *' or 'nwchar_t *' */
334 int size_allocated;
335 void *data_allocated; /* if non NULL, data has been malloced */
336 } CString;
338 /* type definition */
339 typedef struct CType {
340 int t;
341 struct Sym *ref;
342 } CType;
344 /* constant value */
345 typedef union CValue {
346 long double ld;
347 double d;
348 float f;
349 int i;
350 unsigned int ui;
351 unsigned int ul; /* address (should be unsigned long on 64 bit cpu) */
352 long long ll;
353 unsigned long long ull;
354 struct CString *cstr;
355 addr_t ptr_offset;
356 int tab[LDOUBLE_SIZE/4];
357 } CValue;
359 /* value on stack */
360 typedef struct SValue {
361 CType type; /* type */
362 unsigned int r; /* register + flags */
363 unsigned int r2; /* second register, used for 'long long'
364 type. If not used, set to VT_CONST */
365 CValue c; /* constant, if VT_CONST */
366 struct Sym *sym; /* symbol, if (VT_SYM | VT_CONST) */
367 } SValue;
369 struct Attribute {
370 unsigned
371 func_call : 3, /* calling convention (0..5), see below */
372 aligned : 5, /* alignement (0..16) */
373 packed : 1,
374 func_export : 1,
375 func_import : 1,
376 func_args : 5,
377 func_proto : 1,
378 mode : 4,
379 weak : 1,
380 visibility : 2,
381 fill : 8; // 8 bits left to fit well in union below
384 /* GNUC attribute definition */
385 typedef struct AttributeDef {
386 struct Attribute a;
387 struct Section *section;
388 int alias_target; /* token */
389 } AttributeDef;
391 /* symbol management */
392 typedef struct Sym {
393 int v; /* symbol token */
394 char *asm_label; /* associated asm label */
395 union {
396 long r; /* associated register */
397 struct Attribute a;
399 union {
400 long c; /* associated number */
401 int *d; /* define token stream */
403 CType type; /* associated type */
404 union {
405 struct Sym *next; /* next related symbol */
406 long jnext; /* next jump label */
408 struct Sym *prev; /* prev symbol in stack */
409 struct Sym *prev_tok; /* previous symbol for this token */
410 } Sym;
412 /* section definition */
413 /* XXX: use directly ELF structure for parameters ? */
414 /* special flag to indicate that the section should not be linked to
415 the other ones */
416 #define SHF_PRIVATE 0x80000000
418 /* special flag, too */
419 #define SECTION_ABS ((void *)1)
421 typedef struct Section {
422 unsigned long data_offset; /* current data offset */
423 unsigned char *data; /* section data */
424 unsigned long data_allocated; /* used for realloc() handling */
425 int sh_name; /* elf section name (only used during output) */
426 int sh_num; /* elf section number */
427 int sh_type; /* elf section type */
428 int sh_flags; /* elf section flags */
429 int sh_info; /* elf section info */
430 int sh_addralign; /* elf section alignment */
431 int sh_entsize; /* elf entry size */
432 unsigned long sh_size; /* section size (only used during output) */
433 addr_t sh_addr; /* address at which the section is relocated */
434 unsigned long sh_offset; /* file offset */
435 int nb_hashed_syms; /* used to resize the hash table */
436 struct Section *link; /* link to another section */
437 struct Section *reloc; /* corresponding section for relocation, if any */
438 struct Section *hash; /* hash table for symbols */
439 struct Section *next;
440 char name[1]; /* section name */
441 } Section;
443 typedef struct DLLReference {
444 int level;
445 void *handle;
446 char name[1];
447 } DLLReference;
449 /* -------------------------------------------------- */
451 #define SYM_STRUCT 0x40000000 /* struct/union/enum symbol space */
452 #define SYM_FIELD 0x20000000 /* struct/union field symbol space */
453 #define SYM_FIRST_ANOM 0x10000000 /* first anonymous sym */
455 #define VLA_SP_LOC_SET 0x01 /* Location of SP on stack has been allocated */
456 #define VLA_SP_SAVED 0x02 /* SP has been saved to slot already */
457 #define VLA_NEED_NEW_FRAME 0x04 /* Needs new frame for next VLA */
458 #define VLA_IN_SCOPE 0x08 /* One or more VLAs are in scope */
459 #define VLA_SCOPE_FLAGS (VLA_SP_SAVED|VLA_NEED_NEW_FRAME|VLA_IN_SCOPE) /* Flags which are saved and restored upon entering and exiting a block */
461 /* stored in 'Sym.c' field */
462 #define FUNC_NEW 1 /* ansi function prototype */
463 #define FUNC_OLD 2 /* old function prototype */
464 #define FUNC_ELLIPSIS 3 /* ansi function prototype with ... */
466 /* stored in 'Sym.r' field */
467 #define FUNC_CDECL 0 /* standard c call */
468 #define FUNC_STDCALL 1 /* pascal c call */
469 #define FUNC_FASTCALL1 2 /* first param in %eax */
470 #define FUNC_FASTCALL2 3 /* first parameters in %eax, %edx */
471 #define FUNC_FASTCALL3 4 /* first parameter in %eax, %edx, %ecx */
472 #define FUNC_FASTCALLW 5 /* first parameter in %ecx, %edx */
474 /* field 'Sym.t' for macros */
475 #define MACRO_OBJ 0 /* object like macro */
476 #define MACRO_FUNC 1 /* function like macro */
478 /* field 'Sym.r' for C labels */
479 #define LABEL_DEFINED 0 /* label is defined */
480 #define LABEL_FORWARD 1 /* label is forward defined */
481 #define LABEL_DECLARED 2 /* label is declared but never used */
483 /* type_decl() types */
484 #define TYPE_ABSTRACT 1 /* type without variable */
485 #define TYPE_DIRECT 2 /* type with variable */
487 #define IO_BUF_SIZE 8192
489 typedef struct BufferedFile {
490 uint8_t *buf_ptr;
491 uint8_t *buf_end;
492 int fd;
493 struct BufferedFile *prev;
494 int line_num; /* current line number - here to simplify code */
495 int ifndef_macro; /* #ifndef macro / #endif search */
496 int ifndef_macro_saved; /* saved ifndef_macro */
497 int *ifdef_stack_ptr; /* ifdef_stack value at the start of the file */
498 char filename[1024]; /* filename */
499 unsigned char buffer[IO_BUF_SIZE + 1]; /* extra size for CH_EOB char */
500 } BufferedFile;
502 #define CH_EOB '\\' /* end of buffer or '\0' char in file */
503 #define CH_EOF (-1) /* end of file */
505 /* parsing state (used to save parser state to reparse part of the
506 source several times) */
507 typedef struct ParseState {
508 const int *macro_ptr;
509 int line_num;
510 int tok;
511 CValue tokc;
512 } ParseState;
514 /* used to record tokens */
515 typedef struct TokenString {
516 int *str;
517 int len;
518 int allocated_len;
519 int last_line_num;
520 } TokenString;
522 /* inline functions */
523 typedef struct InlineFunc {
524 int *token_str;
525 Sym *sym;
526 char filename[1];
527 } InlineFunc;
529 /* include file cache, used to find files faster and also to eliminate
530 inclusion if the include file is protected by #ifndef ... #endif */
531 typedef struct CachedInclude {
532 int ifndef_macro;
533 int hash_next; /* -1 if none */
534 char filename[1]; /* path specified in #include */
535 } CachedInclude;
537 #define CACHED_INCLUDES_HASH_SIZE 512
539 #ifdef CONFIG_TCC_ASM
540 typedef struct ExprValue {
541 uint32_t v;
542 Sym *sym;
543 } ExprValue;
545 #define MAX_ASM_OPERANDS 30
546 typedef struct ASMOperand {
547 int id; /* GCC 3 optionnal identifier (0 if number only supported */
548 char *constraint;
549 char asm_str[16]; /* computed asm string for operand */
550 SValue *vt; /* C value of the expression */
551 int ref_index; /* if >= 0, gives reference to a output constraint */
552 int input_index; /* if >= 0, gives reference to an input constraint */
553 int priority; /* priority, used to assign registers */
554 int reg; /* if >= 0, register number used for this operand */
555 int is_llong; /* true if double register value */
556 int is_memory; /* true if memory operand */
557 int is_rw; /* for '+' modifier */
558 } ASMOperand;
559 #endif
561 struct sym_attr {
562 unsigned long got_offset;
563 unsigned long plt_offset;
564 #ifdef TCC_TARGET_ARM
565 unsigned char plt_thumb_stub:1;
566 #endif
569 struct TCCState {
571 int verbose; /* if true, display some information during compilation */
572 int nostdinc; /* if true, no standard headers are added */
573 int nostdlib; /* if true, no standard libraries are added */
574 int nocommon; /* if true, do not use common symbols for .bss data */
575 int static_link; /* if true, static linking is performed */
576 int rdynamic; /* if true, all symbols are exported */
577 int symbolic; /* if true, resolve symbols in the current module first */
578 int alacarte_link; /* if true, only link in referenced objects from archive */
580 char *tcc_lib_path; /* CONFIG_TCCDIR or -B option */
581 char *soname; /* as specified on the command line (-soname) */
582 char *rpath; /* as specified on the command line (-Wl,-rpath=) */
584 /* output type, see TCC_OUTPUT_XXX */
585 int output_type;
586 /* output format, see TCC_OUTPUT_FORMAT_xxx */
587 int output_format;
589 /* C language options */
590 int char_is_unsigned;
591 int leading_underscore;
593 /* warning switches */
594 int warn_write_strings;
595 int warn_unsupported;
596 int warn_error;
597 int warn_none;
598 int warn_implicit_function_declaration;
600 /* compile with debug symbol (and use them if error during execution) */
601 int do_debug;
602 #ifdef CONFIG_TCC_BCHECK
603 /* compile with built-in memory and bounds checker */
604 int do_bounds_check;
605 #endif
606 #ifdef TCC_TARGET_ARM
607 enum float_abi float_abi; /* float ABI of the generated code*/
608 #endif
610 addr_t text_addr; /* address of text section */
611 int has_text_addr;
613 unsigned long section_align; /* section alignment */
615 char *init_symbol; /* symbols to call at load-time (not used currently) */
616 char *fini_symbol; /* symbols to call at unload-time (not used currently) */
618 #ifdef TCC_TARGET_I386
619 int seg_size; /* 32. Can be 16 with i386 assembler (.code16) */
620 #endif
622 /* array of all loaded dlls (including those referenced by loaded dlls) */
623 DLLReference **loaded_dlls;
624 int nb_loaded_dlls;
626 /* include paths */
627 char **include_paths;
628 int nb_include_paths;
630 char **sysinclude_paths;
631 int nb_sysinclude_paths;
633 /* library paths */
634 char **library_paths;
635 int nb_library_paths;
637 /* crt?.o object path */
638 char **crt_paths;
639 int nb_crt_paths;
641 /* error handling */
642 void *error_opaque;
643 void (*error_func)(void *opaque, const char *msg);
644 int error_set_jmp_enabled;
645 jmp_buf error_jmp_buf;
646 int nb_errors;
648 /* output file for preprocessing (-E) */
649 FILE *ppfp;
651 /* for -MD/-MF: collected dependencies for this compilation */
652 char **target_deps;
653 int nb_target_deps;
655 /* compilation */
656 BufferedFile *include_stack[INCLUDE_STACK_SIZE];
657 BufferedFile **include_stack_ptr;
659 int ifdef_stack[IFDEF_STACK_SIZE];
660 int *ifdef_stack_ptr;
662 /* included files enclosed with #ifndef MACRO */
663 int cached_includes_hash[CACHED_INCLUDES_HASH_SIZE];
664 CachedInclude **cached_includes;
665 int nb_cached_includes;
667 /* #pragma pack stack */
668 int pack_stack[PACK_STACK_SIZE];
669 int *pack_stack_ptr;
671 /* inline functions are stored as token lists and compiled last
672 only if referenced */
673 struct InlineFunc **inline_fns;
674 int nb_inline_fns;
676 /* sections */
677 Section **sections;
678 int nb_sections; /* number of sections, including first dummy section */
680 Section **priv_sections;
681 int nb_priv_sections; /* number of private sections */
683 /* got & plt handling */
684 Section *got;
685 Section *plt;
686 struct sym_attr *sym_attrs;
687 int nb_sym_attrs;
688 /* give the correspondance from symtab indexes to dynsym indexes */
689 int *symtab_to_dynsym;
691 /* temporary dynamic symbol sections (for dll loading) */
692 Section *dynsymtab_section;
693 /* exported dynamic symbol section */
694 Section *dynsym;
695 /* copy of the gobal symtab_section variable */
696 Section *symtab;
697 /* tiny assembler state */
698 Sym *asm_labels;
700 #ifdef TCC_TARGET_PE
701 /* PE info */
702 int pe_subsystem;
703 unsigned pe_file_align;
704 unsigned pe_stack_size;
705 # ifdef TCC_TARGET_X86_64
706 Section *uw_pdata;
707 int uw_sym;
708 unsigned uw_offs;
709 # endif
710 #endif
712 #ifdef TCC_IS_NATIVE
713 const char *runtime_main;
714 /* for tcc_relocate */
715 void *runtime_mem;
716 # ifdef HAVE_SELINUX
717 void *write_mem;
718 unsigned long mem_size;
719 # endif
720 #endif
722 /* used by main and tcc_parse_args only */
723 char **files; /* files seen on command line */
724 int nb_files; /* number thereof */
725 int nb_libraries; /* number of libs thereof */
726 char *outfile; /* output filename */
727 char *option_m; /* only -m32/-m64 handled */
728 int print_search_dirs; /* option */
729 int option_r; /* option -r */
730 int do_bench; /* option -bench */
731 int gen_deps; /* option -MD */
732 char *deps_outfile; /* option -MF */
735 /* The current value can be: */
736 #define VT_VALMASK 0x003f /* mask for value location, register or: */
737 #define VT_CONST 0x0030 /* constant in vc (must be first non register value) */
738 #define VT_LLOCAL 0x0031 /* lvalue, offset on stack */
739 #define VT_LOCAL 0x0032 /* offset on stack */
740 #define VT_CMP 0x0033 /* the value is stored in processor flags (in vc) */
741 #define VT_JMP 0x0034 /* value is the consequence of jmp true (even) */
742 #define VT_JMPI 0x0035 /* value is the consequence of jmp false (odd) */
743 #define TREG_MEM 0x0040 /* x86_64-gen.c add for tcc.h: The current value can be */
744 #define VT_REF 0x0080 /* value is pointer to structure rather than address */
745 #define VT_LVAL 0x0100 /* var is an lvalue */
746 #define VT_SYM 0x0200 /* a symbol value is added */
747 #define VT_MUSTCAST 0x0400 /* value must be casted to be correct (used for
748 char/short stored in integer registers) */
749 #define VT_MUSTBOUND 0x0800 /* bound checking must be done before
750 dereferencing value */
751 #define VT_LVAL_BYTE 0x1000 /* lvalue is a byte */
752 #define VT_LVAL_SHORT 0x2000 /* lvalue is a short */
753 #define VT_LVAL_UNSIGNED 0x4000 /* lvalue is unsigned */
754 #define VT_LVAL_TYPE (VT_LVAL_BYTE | VT_LVAL_SHORT | VT_LVAL_UNSIGNED)
755 #define VT_BOUNDED 0x8000 /* value is bounded. The address of the
756 bounding function call point is in vc */
757 #define VT_TMP 0x10000
759 /* types */
760 #define VT_BTYPE 0x000f /* mask for basic type */
761 #define VT_INT 0 /* integer type */
762 #define VT_BYTE 1 /* signed byte type */
763 #define VT_SHORT 2 /* short type */
764 #define VT_VOID 3 /* void type */
765 #define VT_PTR 4 /* pointer */
766 #define VT_ENUM 5 /* enum definition */
767 #define VT_FUNC 6 /* function type */
768 #define VT_STRUCT 7 /* struct/union definition */
769 #define VT_FLOAT 8 /* IEEE float */
770 #define VT_DOUBLE 9 /* IEEE double */
771 #define VT_LDOUBLE 10 /* IEEE long double */
772 #define VT_BOOL 11 /* ISOC99 boolean type */
773 #define VT_LLONG 12 /* 64 bit integer */
774 #define VT_LONG 13 /* long integer (NEVER USED as type, only
775 during parsing) */
776 #define VT_QLONG 14 /* 128-bit integer. Only used for x86-64 ABI */
777 #define VT_QFLOAT 15 /* 128-bit float. Only used for x86-64 ABI */
778 #define VT_UNSIGNED 0x0010 /* unsigned type */
779 #define VT_ARRAY 0x0020 /* array type (also has VT_PTR) */
780 #define VT_BITFIELD 0x0040 /* bitfield modifier */
781 #define VT_CONSTANT 0x0800 /* const modifier */
782 #define VT_VOLATILE 0x1000 /* volatile modifier */
783 #define VT_DEFSIGN 0x2000 /* signed type */
784 #define VT_VLA 0x00020000 /* VLA type (also has VT_PTR and VT_ARRAY) */
785 #define VT_VLS 0x00080000 /* VLA type (also has VT_PTR and VT_STRUCT) */
787 /* storage */
788 #define VT_EXTERN 0x00000080 /* extern definition */
789 #define VT_STATIC 0x00000100 /* static variable */
790 #define VT_TYPEDEF 0x00000200 /* typedef definition */
791 #define VT_INLINE 0x00000400 /* inline definition */
792 #define VT_IMPORT 0x00004000 /* win32: extern data imported from dll */
793 #define VT_EXPORT 0x00008000 /* win32: data exported from dll */
794 #define VT_WEAK 0x00010000 /* weak symbol */
795 #define VT_TLS 0x00040000 /* thread-local storage */
796 #define VT_VIS_SHIFT 20 /* shift for symbol visibility, overlapping
797 bitfield values, because bitfields never
798 have linkage and hence never have
799 visibility. */
800 #define VT_VIS_SIZE 2 /* We have four visibilities. */
801 #define VT_VIS_MASK (((1 << VT_VIS_SIZE)-1) << VT_VIS_SHIFT)
803 #define VT_STRUCT_SHIFT 20 /* shift for bitfield shift values (max: 32 - 2*6) */
806 /* type mask (except storage) */
807 #define VT_STORAGE (VT_EXTERN | VT_STATIC | VT_TYPEDEF | VT_INLINE | VT_IMPORT | VT_EXPORT | VT_WEAK | VT_VIS_MASK)
808 #define VT_TYPE (~(VT_STORAGE))
810 /* token values */
812 /* warning: the following compare tokens depend on i386 asm code */
813 #define TOK_ULT 0x92
814 #define TOK_UGE 0x93
815 #define TOK_EQ 0x94
816 #define TOK_NE 0x95
817 #define TOK_ULE 0x96
818 #define TOK_UGT 0x97
819 #define TOK_Nset 0x98
820 #define TOK_Nclear 0x99
821 #define TOK_LT 0x9c
822 #define TOK_GE 0x9d
823 #define TOK_LE 0x9e
824 #define TOK_GT 0x9f
826 #define TOK_LAND 0xa0
827 #define TOK_LOR 0xa1
828 #define TOK_DEC 0xa2
829 #define TOK_MID 0xa3 /* inc/dec, to void constant */
830 #define TOK_INC 0xa4
831 #define TOK_UDIV 0xb0 /* unsigned division */
832 #define TOK_UMOD 0xb1 /* unsigned modulo */
833 #define TOK_PDIV 0xb2 /* fast division with undefined rounding for pointers */
835 /* tokens that carry values (in additional token string space / tokc) --> */
836 #define TOK_CCHAR 0xb3 /* char constant in tokc */
837 #define TOK_LCHAR 0xb4
838 #define TOK_CINT 0xb5 /* number in tokc */
839 #define TOK_CUINT 0xb6 /* unsigned int constant */
840 #define TOK_CLLONG 0xb7 /* long long constant */
841 #define TOK_CULLONG 0xb8 /* unsigned long long constant */
842 #define TOK_STR 0xb9 /* pointer to string in tokc */
843 #define TOK_LSTR 0xba
844 #define TOK_CFLOAT 0xbb /* float constant */
845 #define TOK_CDOUBLE 0xbc /* double constant */
846 #define TOK_CLDOUBLE 0xbd /* long double constant */
847 #define TOK_PPNUM 0xbe /* preprocessor number */
848 #define TOK_LINENUM 0xbf /* line number info */
849 /* <-- */
851 #define TOK_TWOSHARPS 0xc0 /* ## preprocessing token */
852 #define TOK_PLCHLDR 0xc1 /* placeholder token as defined in C99 */
853 #define TOK_UMULL 0xc2 /* unsigned 32x32 -> 64 mul */
854 #define TOK_ADDC1 0xc3 /* add with carry generation */
855 #define TOK_ADDC2 0xc4 /* add with carry use */
856 #define TOK_SUBC1 0xc5 /* add with carry generation */
857 #define TOK_SUBC2 0xc6 /* add with carry use */
858 #define TOK_ARROW 0xcb
859 #define TOK_DOTS 0xcc /* three dots */
860 #define TOK_SHR 0xcd /* unsigned shift right */
861 #define TOK_NOSUBST 0xcf /* means following token has already been pp'd */
863 #define TOK_SHL 0x01 /* shift left */
864 #define TOK_SAR 0x02 /* signed shift right */
866 /* assignement operators : normal operator or 0x80 */
867 #define TOK_A_MOD 0xa5
868 #define TOK_A_AND 0xa6
869 #define TOK_A_MUL 0xaa
870 #define TOK_A_ADD 0xab
871 #define TOK_A_SUB 0xad
872 #define TOK_A_DIV 0xaf
873 #define TOK_A_XOR 0xde
874 #define TOK_A_OR 0xfc
875 #define TOK_A_SHL 0x81
876 #define TOK_A_SAR 0x82
878 #ifndef offsetof
879 #define offsetof(type, field) ((size_t) &((type *)0)->field)
880 #endif
882 #ifndef countof
883 #define countof(tab) (sizeof(tab) / sizeof((tab)[0]))
884 #endif
886 #define TOK_EOF (-1) /* end of file */
887 #define TOK_LINEFEED 10 /* line feed */
889 /* all identificators and strings have token above that */
890 #define TOK_IDENT 256
892 #define DEF_ASM(x) DEF(TOK_ASM_ ## x, #x)
893 #define TOK_ASM_int TOK_INT
894 #define TOK_ASM_weak TOK_WEAK1
896 #if defined TCC_TARGET_I386 || defined TCC_TARGET_X86_64
897 /* only used for i386 asm opcodes definitions */
898 #define DEF_BWL(x) \
899 DEF(TOK_ASM_ ## x ## b, #x "b") \
900 DEF(TOK_ASM_ ## x ## w, #x "w") \
901 DEF(TOK_ASM_ ## x ## l, #x "l") \
902 DEF(TOK_ASM_ ## x, #x)
903 #define DEF_WL(x) \
904 DEF(TOK_ASM_ ## x ## w, #x "w") \
905 DEF(TOK_ASM_ ## x ## l, #x "l") \
906 DEF(TOK_ASM_ ## x, #x)
907 #ifdef TCC_TARGET_X86_64
908 # define DEF_BWLQ(x) \
909 DEF(TOK_ASM_ ## x ## b, #x "b") \
910 DEF(TOK_ASM_ ## x ## w, #x "w") \
911 DEF(TOK_ASM_ ## x ## l, #x "l") \
912 DEF(TOK_ASM_ ## x ## q, #x "q") \
913 DEF(TOK_ASM_ ## x, #x)
914 # define DEF_WLQ(x) \
915 DEF(TOK_ASM_ ## x ## w, #x "w") \
916 DEF(TOK_ASM_ ## x ## l, #x "l") \
917 DEF(TOK_ASM_ ## x ## q, #x "q") \
918 DEF(TOK_ASM_ ## x, #x)
919 # define DEF_BWLX DEF_BWLQ
920 # define DEF_WLX DEF_WLQ
921 /* number of sizes + 1 */
922 # define NBWLX 5
923 #else
924 # define DEF_BWLX DEF_BWL
925 # define DEF_WLX DEF_WL
926 /* number of sizes + 1 */
927 # define NBWLX 4
928 #endif
930 #define DEF_FP1(x) \
931 DEF(TOK_ASM_ ## f ## x ## s, "f" #x "s") \
932 DEF(TOK_ASM_ ## fi ## x ## l, "fi" #x "l") \
933 DEF(TOK_ASM_ ## f ## x ## l, "f" #x "l") \
934 DEF(TOK_ASM_ ## fi ## x ## s, "fi" #x "s")
936 #define DEF_FP(x) \
937 DEF(TOK_ASM_ ## f ## x, "f" #x ) \
938 DEF(TOK_ASM_ ## f ## x ## p, "f" #x "p") \
939 DEF_FP1(x)
941 #define DEF_ASMTEST(x) \
942 DEF_ASM(x ## o) \
943 DEF_ASM(x ## no) \
944 DEF_ASM(x ## b) \
945 DEF_ASM(x ## c) \
946 DEF_ASM(x ## nae) \
947 DEF_ASM(x ## nb) \
948 DEF_ASM(x ## nc) \
949 DEF_ASM(x ## ae) \
950 DEF_ASM(x ## e) \
951 DEF_ASM(x ## z) \
952 DEF_ASM(x ## ne) \
953 DEF_ASM(x ## nz) \
954 DEF_ASM(x ## be) \
955 DEF_ASM(x ## na) \
956 DEF_ASM(x ## nbe) \
957 DEF_ASM(x ## a) \
958 DEF_ASM(x ## s) \
959 DEF_ASM(x ## ns) \
960 DEF_ASM(x ## p) \
961 DEF_ASM(x ## pe) \
962 DEF_ASM(x ## np) \
963 DEF_ASM(x ## po) \
964 DEF_ASM(x ## l) \
965 DEF_ASM(x ## nge) \
966 DEF_ASM(x ## nl) \
967 DEF_ASM(x ## ge) \
968 DEF_ASM(x ## le) \
969 DEF_ASM(x ## ng) \
970 DEF_ASM(x ## nle) \
971 DEF_ASM(x ## g)
973 #endif /* defined TCC_TARGET_I386 || defined TCC_TARGET_X86_64 */
975 enum tcc_token {
976 TOK_LAST = TOK_IDENT - 1,
977 #define DEF(id, str) id,
978 #include "tcctok.h"
979 #undef DEF
982 #define TOK_UIDENT TOK_DEFINE
984 /* space exlcuding newline */
985 static inline int is_space(int ch)
987 return ch == ' ' || ch == '\t' || ch == '\v' || ch == '\f' || ch == '\r';
990 static inline int isid(int c)
992 return (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') || c == '_';
995 static inline int isnum(int c)
997 return c >= '0' && c <= '9';
1000 static inline int isoct(int c)
1002 return c >= '0' && c <= '7';
1005 static inline int toup(int c)
1007 return (c >= 'a' && c <= 'z') ? c - 'a' + 'A' : c;
1010 #ifndef PUB_FUNC
1011 # define PUB_FUNC
1012 #endif
1014 #ifdef ONE_SOURCE
1015 #define ST_INLN static inline
1016 #define ST_FUNC static
1017 #define ST_DATA static
1018 #else
1019 #define ST_INLN
1020 #define ST_FUNC
1021 #define ST_DATA extern
1022 #endif
1024 /* ------------ libtcc.c ------------ */
1026 /* use GNU C extensions */
1027 ST_DATA int gnu_ext;
1028 /* use Tiny C extensions */
1029 ST_DATA int tcc_ext;
1030 /* XXX: get rid of this ASAP */
1031 ST_DATA struct TCCState *tcc_state;
1033 #ifdef MEM_DEBUG
1034 ST_DATA int mem_cur_size;
1035 ST_DATA int mem_max_size;
1036 #endif
1038 #define AFF_PRINT_ERROR 0x0001 /* print error if file not found */
1039 #define AFF_REFERENCED_DLL 0x0002 /* load a referenced dll from another dll */
1040 #define AFF_PREPROCESS 0x0004 /* preprocess file */
1042 /* public functions currently used by the tcc main function */
1043 PUB_FUNC char *pstrcpy(char *buf, int buf_size, const char *s);
1044 PUB_FUNC char *pstrcat(char *buf, int buf_size, const char *s);
1045 PUB_FUNC char *pstrncpy(char *out, const char *in, size_t num);
1046 PUB_FUNC char *tcc_basename(const char *name);
1047 PUB_FUNC char *tcc_fileextension (const char *name);
1048 PUB_FUNC void tcc_free(void *ptr);
1049 PUB_FUNC void *tcc_malloc(unsigned long size);
1050 PUB_FUNC void *tcc_mallocz(unsigned long size);
1051 PUB_FUNC void *tcc_realloc(void *ptr, unsigned long size);
1052 PUB_FUNC char *tcc_strdup(const char *str);
1053 #define free(p) use_tcc_free(p)
1054 #define malloc(s) use_tcc_malloc(s)
1055 #define realloc(p, s) use_tcc_realloc(p, s)
1056 #undef strdup
1057 #define strdup(s) use_tcc_strdup(s)
1058 PUB_FUNC void tcc_memstats(void);
1059 PUB_FUNC void tcc_error_noabort(const char *fmt, ...);
1060 PUB_FUNC NORETURN void tcc_error(const char *fmt, ...);
1061 PUB_FUNC void tcc_warning(const char *fmt, ...);
1063 /* other utilities */
1064 ST_FUNC void dynarray_add(void ***ptab, int *nb_ptr, void *data);
1065 ST_FUNC void dynarray_reset(void *pp, int *n);
1066 ST_FUNC void cstr_ccat(CString *cstr, int ch);
1067 ST_FUNC void cstr_cat(CString *cstr, const char *str);
1068 ST_FUNC void cstr_wccat(CString *cstr, int ch);
1069 ST_FUNC void cstr_new(CString *cstr);
1070 ST_FUNC void cstr_free(CString *cstr);
1071 ST_FUNC void cstr_reset(CString *cstr);
1073 ST_FUNC Section *new_section(TCCState *s1, const char *name, int sh_type, int sh_flags);
1074 ST_FUNC void section_realloc(Section *sec, unsigned long new_size);
1075 ST_FUNC void *section_ptr_add(Section *sec, unsigned long size);
1076 ST_FUNC void section_reserve(Section *sec, unsigned long size);
1077 ST_FUNC Section *find_section(TCCState *s1, const char *name);
1079 ST_FUNC void put_extern_sym2(Sym *sym, Section *section, addr_t value, unsigned long size, int can_add_underscore);
1080 ST_FUNC void put_extern_sym(Sym *sym, Section *section, addr_t value, unsigned long size);
1081 ST_FUNC void greloc(Section *s, Sym *sym, unsigned long offset, int type);
1083 ST_INLN void sym_free(Sym *sym);
1084 ST_FUNC Sym *sym_push2(Sym **ps, int v, int t, long c);
1085 ST_FUNC Sym *sym_find2(Sym *s, int v);
1086 ST_FUNC Sym *sym_push(int v, CType *type, int r, int c);
1087 ST_FUNC void sym_pop(Sym **ptop, Sym *b);
1088 ST_INLN Sym *struct_find(int v);
1089 ST_INLN Sym *sym_find(int v);
1090 ST_FUNC Sym *global_identifier_push(int v, int t, int c);
1092 ST_FUNC void tcc_open_bf(TCCState *s1, const char *filename, int initlen);
1093 ST_FUNC int tcc_open(TCCState *s1, const char *filename);
1094 ST_FUNC void tcc_close(void);
1096 ST_FUNC int tcc_add_file_internal(TCCState *s1, const char *filename, int flags);
1097 ST_FUNC int tcc_add_crt(TCCState *s, const char *filename);
1098 ST_FUNC int tcc_add_dll(TCCState *s, const char *filename, int flags);
1100 PUB_FUNC void tcc_print_stats(TCCState *s, int64_t total_time);
1101 PUB_FUNC int tcc_parse_args(TCCState *s, int argc, char **argv);
1103 PUB_FUNC void tcc_set_environment(TCCState *s);
1105 /* ------------ tccpp.c ------------ */
1107 ST_DATA struct BufferedFile *file;
1108 ST_DATA int ch, tok;
1109 ST_DATA CValue tokc;
1110 ST_DATA const int *macro_ptr;
1111 ST_DATA int parse_flags;
1112 ST_DATA int tok_flags;
1113 ST_DATA CString tokcstr; /* current parsed string, if any */
1115 /* display benchmark infos */
1116 ST_DATA int total_lines;
1117 ST_DATA int total_bytes;
1118 ST_DATA int tok_ident;
1119 ST_DATA TokenSym **table_ident;
1121 #define TOK_FLAG_BOL 0x0001 /* beginning of line before */
1122 #define TOK_FLAG_BOF 0x0002 /* beginning of file before */
1123 #define TOK_FLAG_ENDIF 0x0004 /* a endif was found matching starting #ifdef */
1124 #define TOK_FLAG_EOF 0x0008 /* end of file */
1126 #define PARSE_FLAG_PREPROCESS 0x0001 /* activate preprocessing */
1127 #define PARSE_FLAG_TOK_NUM 0x0002 /* return numbers instead of TOK_PPNUM */
1128 #define PARSE_FLAG_LINEFEED 0x0004 /* line feed is returned as a
1129 token. line feed is also
1130 returned at eof */
1131 #define PARSE_FLAG_ASM_COMMENTS 0x0008 /* '#' can be used for line comment */
1132 #define PARSE_FLAG_SPACES 0x0010 /* next() returns space tokens (for -E) */
1134 ST_FUNC TokenSym *tok_alloc(const char *str, int len);
1135 ST_FUNC char *get_tok_str(int v, CValue *cv);
1136 ST_FUNC void save_parse_state(ParseState *s);
1137 ST_FUNC void restore_parse_state(ParseState *s);
1138 ST_INLN void tok_str_new(TokenString *s);
1139 ST_FUNC void tok_str_free(int *str);
1140 ST_FUNC void tok_str_add(TokenString *s, int t);
1141 ST_FUNC void tok_str_add_tok(TokenString *s);
1142 ST_INLN void define_push(int v, int macro_type, int *str, Sym *first_arg);
1143 ST_FUNC void define_undef(Sym *s);
1144 ST_INLN Sym *define_find(int v);
1145 ST_FUNC void free_defines(Sym *b);
1146 ST_FUNC Sym *label_find(int v);
1147 ST_FUNC Sym *label_push(Sym **ptop, int v, int flags);
1148 ST_FUNC void label_pop(Sym **ptop, Sym *slast);
1149 ST_FUNC void parse_define(void);
1150 ST_FUNC void preprocess(int is_bof);
1151 ST_FUNC void next_nomacro(void);
1152 ST_FUNC void next(void);
1153 ST_INLN void unget_tok(int last_tok);
1154 ST_FUNC void preprocess_init(TCCState *s1);
1155 ST_FUNC void preprocess_new(void);
1156 ST_FUNC int tcc_preprocess(TCCState *s1);
1157 ST_FUNC void skip(int c);
1158 ST_FUNC NORETURN void expect(const char *msg);
1160 /* ------------ tccgen.c ------------ */
1162 ST_DATA Section *text_section, *data_section, *bss_section; /* predefined sections */
1163 ST_DATA Section *cur_text_section; /* current section where function code is generated */
1164 #ifdef CONFIG_TCC_ASM
1165 ST_DATA Section *last_text_section; /* to handle .previous asm directive */
1166 #endif
1167 #ifdef CONFIG_TCC_BCHECK
1168 /* bound check related sections */
1169 ST_DATA Section *bounds_section; /* contains global data bound description */
1170 ST_DATA Section *lbounds_section; /* contains local data bound description */
1171 #endif
1172 /* symbol sections */
1173 ST_DATA Section *symtab_section, *strtab_section;
1174 /* debug sections */
1175 ST_DATA Section *stab_section, *stabstr_section;
1177 #define SYM_POOL_NB (8192 / sizeof(Sym))
1178 ST_DATA Sym *sym_free_first;
1179 ST_DATA void **sym_pools;
1180 ST_DATA int nb_sym_pools;
1182 ST_DATA Sym *global_stack;
1183 ST_DATA Sym *local_stack;
1184 ST_DATA Sym *local_label_stack;
1185 ST_DATA Sym *global_label_stack;
1186 ST_DATA Sym *define_stack;
1187 ST_DATA CType char_pointer_type, func_old_type, int_type, size_type;
1188 ST_DATA SValue __vstack[1+/*to make bcheck happy*/ VSTACK_SIZE], *vtop;
1189 #define vstack (__vstack + 1)
1190 ST_DATA int rsym, anon_sym, ind, loc, ex_rc;
1192 ST_DATA int const_wanted; /* true if constant wanted */
1193 ST_DATA int nocode_wanted; /* true if no code generation wanted for an expression */
1194 ST_DATA int global_expr; /* true if compound literals must be allocated globally (used during initializers parsing */
1195 ST_DATA CType func_vt; /* current function return type (used by return instruction) */
1196 ST_DATA int func_var; /* true if current function is variadic */
1197 ST_DATA int func_vc;
1198 ST_DATA int last_line_num, last_ind, func_ind; /* debug last line number and pc */
1199 ST_DATA char *funcname;
1200 ST_DATA int pop_stack;
1202 ST_INLN int is_float(int t);
1203 ST_FUNC int ieee_finite(double d);
1204 ST_FUNC void test_lvalue(void);
1205 ST_FUNC void swap(int *p, int *q);
1206 ST_FUNC void vpushi(int v);
1207 ST_FUNC Sym *external_global_sym(int v, CType *type, int r);
1208 ST_FUNC void vset(CType *type, int r, int v);
1209 ST_FUNC void vswap(void);
1210 ST_FUNC void vpush_global_sym(CType *type, int v);
1211 ST_FUNC void vrote(SValue *e, int n);
1212 ST_FUNC void vrott(int n);
1213 ST_FUNC void vrotb(int n);
1214 #ifdef TCC_TARGET_ARM
1215 ST_FUNC int get_reg_ex(int rc, int rc2);
1216 ST_FUNC void lexpand_nr(void);
1217 #endif
1218 ST_FUNC void vpushv(SValue *v);
1219 ST_FUNC void save_reg(int r);
1220 ST_FUNC int get_reg(int rc);
1221 ST_FUNC void save_regs(int n);
1222 ST_FUNC int gv(int rc);
1223 ST_FUNC void gv2(int rc1, int rc2);
1224 ST_FUNC void vpop(void);
1225 ST_FUNC void gen_op(int op);
1226 ST_FUNC int type_size(CType *type, int *a);
1227 ST_FUNC void mk_pointer(CType *type);
1228 ST_FUNC void vstore(void);
1229 ST_FUNC void inc(int post, int c);
1230 ST_FUNC void parse_asm_str(CString *astr);
1231 ST_FUNC int lvalue_type(int t);
1232 ST_FUNC void indir(void);
1233 ST_FUNC void unary(void);
1234 ST_FUNC void expr_prod(void);
1235 ST_FUNC void expr_sum(void);
1236 ST_FUNC void gexpr(void);
1237 ST_FUNC int expr_const(void);
1238 ST_FUNC void gen_inline_functions(void);
1239 ST_FUNC void decl(int l);
1240 #if defined CONFIG_TCC_BCHECK || defined TCC_TARGET_C67
1241 ST_FUNC Sym *get_sym_ref(CType *type, Section *sec, unsigned long offset, unsigned long size);
1242 #endif
1243 #if defined TCC_TARGET_X86_64 && !defined TCC_TARGET_PE
1244 ST_FUNC int classify_x86_64_va_arg(CType *ty);
1245 #endif
1247 /* ------------ tccelf.c ------------ */
1249 #define TCC_OUTPUT_FORMAT_ELF 0 /* default output format: ELF */
1250 #define TCC_OUTPUT_FORMAT_BINARY 1 /* binary image output */
1251 #define TCC_OUTPUT_FORMAT_COFF 2 /* COFF */
1253 #define ARMAG "!<arch>\012" /* For COFF and a.out archives */
1255 typedef struct {
1256 unsigned int n_strx; /* index into string table of name */
1257 unsigned char n_type; /* type of symbol */
1258 unsigned char n_other; /* misc info (usually empty) */
1259 unsigned short n_desc; /* description field */
1260 unsigned int n_value; /* value of symbol */
1261 } Stab_Sym;
1263 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);
1265 ST_FUNC int put_elf_str(Section *s, const char *sym);
1266 ST_FUNC int put_elf_sym(Section *s, addr_t value, unsigned long size, int info, int other, int shndx, const char *name);
1267 ST_FUNC int add_elf_sym(Section *s, addr_t value, unsigned long size, int info, int other, int sh_num, const char *name);
1268 ST_FUNC int find_elf_sym(Section *s, const char *name);
1269 ST_FUNC void put_elf_reloc(Section *symtab, Section *s, unsigned long offset, int type, int symbol);
1271 ST_FUNC void put_stabs(const char *str, int type, int other, int desc, unsigned long value);
1272 ST_FUNC void put_stabs_r(const char *str, int type, int other, int desc, unsigned long value, Section *sec, int sym_index);
1273 ST_FUNC void put_stabn(int type, int other, int desc, int value);
1274 ST_FUNC void put_stabd(int type, int other, int desc);
1276 ST_FUNC void relocate_common_syms(void);
1277 ST_FUNC void relocate_syms(TCCState *s1, int do_resolve);
1278 ST_FUNC void relocate_section(TCCState *s1, Section *s);
1279 ST_FUNC void relocate_plt(TCCState *s1);
1281 ST_FUNC void tcc_add_linker_symbols(TCCState *s1);
1282 ST_FUNC int tcc_load_object_file(TCCState *s1, int fd, unsigned long file_offset);
1283 ST_FUNC int tcc_load_archive(TCCState *s1, int fd);
1284 ST_FUNC void tcc_add_bcheck(TCCState *s1);
1286 ST_FUNC void build_got_entries(TCCState *s1);
1287 ST_FUNC void tcc_add_runtime(TCCState *s1);
1289 ST_FUNC addr_t get_elf_sym_addr(TCCState *s, const char *name, int err);
1290 #if defined TCC_IS_NATIVE || defined TCC_TARGET_PE
1291 ST_FUNC void *tcc_get_symbol_err(TCCState *s, const char *name);
1292 #endif
1294 #ifndef TCC_TARGET_PE
1295 ST_FUNC int tcc_load_dll(TCCState *s1, int fd, const char *filename, int level);
1296 ST_FUNC int tcc_load_ldscript(TCCState *s1);
1297 ST_FUNC uint8_t *parse_comment(uint8_t *p);
1298 ST_FUNC void minp(void);
1299 ST_INLN void inp(void);
1300 ST_FUNC int handle_eob(void);
1301 #endif
1303 /* ------------ xxx-gen.c ------------ */
1305 ST_DATA const int reg_classes[NB_REGS];
1307 ST_FUNC void gsym_addr(int t, int a);
1308 ST_FUNC void gsym(int t);
1309 ST_FUNC void load(int r, SValue *sv);
1310 ST_FUNC void store(int r, SValue *v);
1311 ST_FUNC int gfunc_sret(CType *vt, int variadic, CType *ret, int *align);
1312 ST_FUNC void gfunc_call(int nb_args);
1313 ST_FUNC void gfunc_prolog(CType *func_type);
1314 ST_FUNC void gfunc_epilog(void);
1315 ST_FUNC int gjmp(int t);
1316 ST_FUNC void gjmp_addr(int a);
1317 ST_FUNC int gtst(int inv, int t);
1318 ST_FUNC void gen_opi(int op);
1319 ST_FUNC void gen_opf(int op);
1320 ST_FUNC void gen_cvt_ftoi(int t);
1321 ST_FUNC void gen_cvt_ftof(int t);
1322 ST_FUNC void ggoto(void);
1323 #ifndef TCC_TARGET_C67
1324 ST_FUNC void o(unsigned int c);
1325 #endif
1326 #ifndef TCC_TARGET_ARM
1327 ST_FUNC void gen_cvt_itof(int t);
1328 #endif
1329 ST_FUNC void gen_vla_sp_save(int addr);
1330 ST_FUNC void gen_vla_sp_restore(int addr);
1331 ST_FUNC void gen_vla_alloc(CType *type, int align);
1333 /* ------------ i386-gen.c ------------ */
1334 #if defined TCC_TARGET_I386 || defined TCC_TARGET_X86_64
1335 ST_FUNC void g(int c);
1336 ST_FUNC int oad(int c, int s);
1337 ST_FUNC void gen_le16(int c);
1338 ST_FUNC void gen_le32(int c);
1339 ST_FUNC void gen_addr32(int r, Sym *sym, int c);
1340 ST_FUNC void gen_addrpc32(int r, Sym *sym, int c);
1341 ST_FUNC void struct_copy(SValue *d, SValue *s, SValue *c);
1342 ST_FUNC void gen_putz(SValue *d, int size);
1343 #endif
1345 #ifdef CONFIG_TCC_BCHECK
1346 ST_FUNC void gen_bounded_ptr_add(void);
1347 ST_FUNC void gen_bounded_ptr_deref(void);
1348 #endif
1350 /* ------------ x86_64-gen.c ------------ */
1351 #ifdef TCC_TARGET_X86_64
1352 ST_FUNC void gen_addr64(int r, Sym *sym, int64_t c);
1353 ST_FUNC void gen_opl(int op);
1354 #endif
1356 /* ------------ arm-gen.c ------------ */
1357 #ifdef TCC_TARGET_ARM
1358 #ifdef TCC_ARM_EABI
1359 ST_FUNC char *default_elfinterp(struct TCCState *s);
1360 #endif
1361 ST_FUNC void arm_init(struct TCCState *s);
1362 ST_FUNC uint32_t encbranch(int pos, int addr, int fail);
1363 ST_FUNC void gen_cvt_itof1(int t);
1364 #endif
1366 /* ------------ c67-gen.c ------------ */
1367 #ifdef TCC_TARGET_C67
1368 #endif
1370 /* ------------ tcccoff.c ------------ */
1372 #ifdef TCC_TARGET_COFF
1373 ST_FUNC int tcc_output_coff(TCCState *s1, FILE *f);
1374 ST_FUNC int tcc_load_coff(TCCState * s1, int fd);
1375 #endif
1377 /* ------------ tccasm.c ------------ */
1378 ST_FUNC void asm_instr(void);
1379 ST_FUNC void asm_global_instr(void);
1380 #ifdef CONFIG_TCC_ASM
1381 ST_FUNC int find_constraint(ASMOperand *operands, int nb_operands, const char *name, const char **pp);
1382 ST_FUNC void asm_expr(TCCState *s1, ExprValue *pe);
1383 ST_FUNC int asm_int_expr(TCCState *s1);
1384 ST_FUNC int tcc_assemble(TCCState *s1, int do_preprocess);
1385 /* ------------ i386-asm.c ------------ */
1386 ST_FUNC void gen_expr32(ExprValue *pe);
1387 ST_FUNC void asm_opcode(TCCState *s1, int opcode);
1388 ST_FUNC void asm_compute_constraints(ASMOperand *operands, int nb_operands, int nb_outputs, const uint8_t *clobber_regs, int *pout_reg);
1389 ST_FUNC void subst_asm_operand(CString *add_str, SValue *sv, int modifier);
1390 ST_FUNC void asm_gen_code(ASMOperand *operands, int nb_operands, int nb_outputs, int is_output, uint8_t *clobber_regs, int out_reg);
1391 ST_FUNC void asm_clobber(uint8_t *clobber_regs, const char *str);
1392 #endif
1394 /* ------------ tccpe.c -------------- */
1395 #ifdef TCC_TARGET_PE
1396 ST_FUNC int pe_load_file(struct TCCState *s1, const char *filename, int fd);
1397 ST_FUNC int pe_output_file(TCCState * s1, const char *filename);
1398 ST_FUNC int pe_putimport(TCCState *s1, int dllindex, const char *name, addr_t value);
1399 ST_FUNC SValue *pe_getimport(SValue *sv, SValue *v2);
1400 #ifdef TCC_TARGET_X86_64
1401 ST_FUNC void pe_add_unwind_data(unsigned start, unsigned end, unsigned stack);
1402 #endif
1403 /* symbol properties stored in Elf32_Sym->st_other */
1404 # define ST_PE_EXPORT 0x10
1405 # define ST_PE_IMPORT 0x20
1406 # define ST_PE_STDCALL 0x40
1407 #endif
1409 /* ------------ tccrun.c ----------------- */
1410 #ifdef TCC_IS_NATIVE
1411 #ifdef CONFIG_TCC_STATIC
1412 #define RTLD_LAZY 0x001
1413 #define RTLD_NOW 0x002
1414 #define RTLD_GLOBAL 0x100
1415 #define RTLD_DEFAULT NULL
1416 /* dummy function for profiling */
1417 ST_FUNC void *dlopen(const char *filename, int flag);
1418 ST_FUNC void dlclose(void *p);
1419 ST_FUNC const char *dlerror(void);
1420 ST_FUNC void *resolve_sym(TCCState *s1, const char *symbol);
1421 #elif !defined _WIN32
1422 ST_FUNC void *resolve_sym(TCCState *s1, const char *symbol);
1423 #endif
1425 #ifdef CONFIG_TCC_BACKTRACE
1426 ST_DATA int rt_num_callers;
1427 ST_DATA const char **rt_bound_error_msg;
1428 ST_DATA void *rt_prog_main;
1429 ST_FUNC void tcc_set_num_callers(int n);
1430 #endif
1431 #endif
1433 /********************************************************/
1434 #undef ST_DATA
1435 #ifdef ONE_SOURCE
1436 #define ST_DATA static
1437 #else
1438 #define ST_DATA
1439 #endif
1440 /********************************************************/
1441 #endif /* _TCC_H */