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