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