Factor out common type combination
[tinycc.git] / tcc.h
bloba4506f418cefb2598bb79d963ab66678eaf9ebc5
1 /*
2 * TCC - Tiny C Compiler
4 * Copyright (c) 2001-2004 Fabrice Bellard
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 #ifndef _TCC_H
22 #define _TCC_H
24 #define _GNU_SOURCE
25 #include "config.h"
27 #include <stdlib.h>
28 #include <stdio.h>
29 #include <stdarg.h>
30 #include <string.h>
31 #include <errno.h>
32 #include <math.h>
33 #include <fcntl.h>
34 #include <setjmp.h>
35 #include <time.h>
37 #ifndef _WIN32
38 # include <unistd.h>
39 # include <sys/time.h>
40 # ifndef CONFIG_TCC_STATIC
41 # include <dlfcn.h>
42 # endif
43 /* XXX: need to define this to use them in non ISOC99 context */
44 extern float strtof (const char *__nptr, char **__endptr);
45 extern long double strtold (const char *__nptr, char **__endptr);
46 #endif
48 #ifdef _WIN32
49 # include <windows.h>
50 # include <io.h> /* open, close etc. */
51 # include <direct.h> /* getcwd */
52 # ifdef __GNUC__
53 # include <stdint.h>
54 # endif
55 # define inline __inline
56 # define snprintf _snprintf
57 # define vsnprintf _vsnprintf
58 # ifndef __GNUC__
59 # define strtold (long double)strtod
60 # define strtof (float)strtod
61 # define strtoll _strtoi64
62 # define strtoull _strtoui64
63 # endif
64 # ifdef LIBTCC_AS_DLL
65 # define LIBTCCAPI __declspec(dllexport)
66 # define PUB_FUNC LIBTCCAPI
67 # endif
68 # define inp next_inp /* inp is an intrinsic on msvc/mingw */
69 # ifdef _MSC_VER
70 # pragma warning (disable : 4244) // conversion from 'uint64_t' to 'int', possible loss of data
71 # pragma warning (disable : 4267) // conversion from 'size_t' to 'int', possible loss of data
72 # pragma warning (disable : 4996) // The POSIX name for this item is deprecated. Instead, use the ISO C and C++ conformant name
73 # pragma warning (disable : 4018) // signed/unsigned mismatch
74 # pragma warning (disable : 4146) // unary minus operator applied to unsigned type, result still unsigned
75 # define ssize_t intptr_t
76 # ifdef _X86_
77 # define __i386__ 1
78 # endif
79 # ifdef _AMD64_
80 # define __x86_64__ 1
81 # endif
82 # endif
83 # undef CONFIG_TCC_STATIC
84 #endif
86 #ifndef O_BINARY
87 # define O_BINARY 0
88 #endif
90 #ifndef offsetof
91 #define offsetof(type, field) ((size_t) &((type *)0)->field)
92 #endif
94 #ifndef countof
95 #define countof(tab) (sizeof(tab) / sizeof((tab)[0]))
96 #endif
98 #ifdef _MSC_VER
99 # define NORETURN __declspec(noreturn)
100 # define ALIGNED(x) __declspec(align(x))
101 #else
102 # define NORETURN __attribute__((noreturn))
103 # define ALIGNED(x) __attribute__((aligned(x)))
104 #endif
106 /* gnu headers use to #define __attribute__ to empty for non-gcc compilers */
107 #ifdef __TINYC__
108 # undef __attribute__
109 #endif
111 #ifdef _WIN32
112 # define IS_DIRSEP(c) (c == '/' || c == '\\')
113 # define IS_ABSPATH(p) (IS_DIRSEP(p[0]) || (p[0] && p[1] == ':' && IS_DIRSEP(p[2])))
114 # define PATHCMP stricmp
115 # define PATHSEP ";"
116 #else
117 # define IS_DIRSEP(c) (c == '/')
118 # define IS_ABSPATH(p) IS_DIRSEP(p[0])
119 # define PATHCMP strcmp
120 # define PATHSEP ":"
121 #endif
123 /* -------------------------------------------- */
125 /* parser debug */
126 /* #define PARSE_DEBUG */
127 /* preprocessor debug */
128 /* #define PP_DEBUG */
129 /* include file debug */
130 /* #define INC_DEBUG */
131 /* memory leak debug (only for single threaded usage) */
132 /* #define MEM_DEBUG */
133 /* assembler debug */
134 /* #define ASM_DEBUG */
136 /* target selection */
137 /* #define TCC_TARGET_I386 *//* i386 code generator */
138 /* #define TCC_TARGET_X86_64 *//* x86-64 code generator */
139 /* #define TCC_TARGET_ARM *//* ARMv4 code generator */
140 /* #define TCC_TARGET_ARM64 *//* ARMv8 code generator */
141 /* #define TCC_TARGET_C67 *//* TMS320C67xx code generator */
142 /* #define TCC_TARGET_RISCV64 *//* risc-v code generator */
144 /* default target is I386 */
145 #if !defined(TCC_TARGET_I386) && !defined(TCC_TARGET_ARM) && \
146 !defined(TCC_TARGET_ARM64) && !defined(TCC_TARGET_C67) && \
147 !defined(TCC_TARGET_X86_64) && !defined(TCC_TARGET_RISCV64)
148 # if defined __x86_64__
149 # define TCC_TARGET_X86_64
150 # elif defined __arm__
151 # define TCC_TARGET_ARM
152 # define TCC_ARM_EABI
153 # define TCC_ARM_VFP
154 # define TCC_ARM_HARDFLOAT
155 # elif defined __aarch64__
156 # define TCC_TARGET_ARM64
157 # elif defined __riscv
158 # define TCC_TARGET_RISCV64
159 # else
160 # define TCC_TARGET_I386
161 # endif
162 # ifdef _WIN32
163 # define TCC_TARGET_PE 1
164 # endif
165 #endif
167 /* only native compiler supports -run */
168 #if defined _WIN32 == defined TCC_TARGET_PE
169 # if defined __i386__ && defined TCC_TARGET_I386
170 # define TCC_IS_NATIVE
171 # elif defined __x86_64__ && defined TCC_TARGET_X86_64
172 # define TCC_IS_NATIVE
173 # elif defined __arm__ && defined TCC_TARGET_ARM
174 # define TCC_IS_NATIVE
175 # elif defined __aarch64__ && defined TCC_TARGET_ARM64
176 # define TCC_IS_NATIVE
177 # elif defined __riscv && defined __LP64__ && defined TCC_TARGET_RISCV64
178 # define TCC_IS_NATIVE
179 # endif
180 #endif
182 #if defined TCC_IS_NATIVE && !defined CONFIG_TCCBOOT
183 # define CONFIG_TCC_BACKTRACE
184 # if (defined TCC_TARGET_I386 || defined TCC_TARGET_X86_64) \
185 && !defined TCC_UCLIBC && !defined TCC_MUSL
186 # define CONFIG_TCC_BCHECK /* enable bound checking code */
187 # endif
188 #endif
190 /* ------------ path configuration ------------ */
192 #ifndef CONFIG_SYSROOT
193 # define CONFIG_SYSROOT ""
194 #endif
195 #ifndef CONFIG_TCCDIR
196 # define CONFIG_TCCDIR "/usr/local/lib/tcc"
197 #endif
198 #ifndef CONFIG_LDDIR
199 # define CONFIG_LDDIR "lib"
200 #endif
201 #ifdef CONFIG_TRIPLET
202 # define USE_TRIPLET(s) s "/" CONFIG_TRIPLET
203 # define ALSO_TRIPLET(s) USE_TRIPLET(s) ":" s
204 #else
205 # define USE_TRIPLET(s) s
206 # define ALSO_TRIPLET(s) s
207 #endif
209 /* path to find crt1.o, crti.o and crtn.o */
210 #ifndef CONFIG_TCC_CRTPREFIX
211 # define CONFIG_TCC_CRTPREFIX USE_TRIPLET(CONFIG_SYSROOT "/usr/" CONFIG_LDDIR)
212 #endif
214 /* Below: {B} is substituted by CONFIG_TCCDIR (rsp. -B option) */
216 /* system include paths */
217 #ifndef CONFIG_TCC_SYSINCLUDEPATHS
218 # ifdef TCC_TARGET_PE
219 # define CONFIG_TCC_SYSINCLUDEPATHS "{B}/include"PATHSEP"{B}/include/winapi"
220 # else
221 # define CONFIG_TCC_SYSINCLUDEPATHS \
222 "{B}/include" \
223 ":" ALSO_TRIPLET(CONFIG_SYSROOT "/usr/local/include") \
224 ":" ALSO_TRIPLET(CONFIG_SYSROOT "/usr/include")
225 # endif
226 #endif
228 /* library search paths */
229 #ifndef CONFIG_TCC_LIBPATHS
230 # ifdef TCC_TARGET_PE
231 # define CONFIG_TCC_LIBPATHS "{B}/lib"
232 # else
233 # define CONFIG_TCC_LIBPATHS \
234 ALSO_TRIPLET(CONFIG_SYSROOT "/usr/" CONFIG_LDDIR) \
235 ":" ALSO_TRIPLET(CONFIG_SYSROOT "/" CONFIG_LDDIR) \
236 ":" ALSO_TRIPLET(CONFIG_SYSROOT "/usr/local/" CONFIG_LDDIR)
237 # endif
238 #endif
240 /* name of ELF interpreter */
241 #ifndef CONFIG_TCC_ELFINTERP
242 # if defined __FreeBSD__
243 # define CONFIG_TCC_ELFINTERP "/libexec/ld-elf.so.1"
244 # elif defined __FreeBSD_kernel__
245 # if defined(TCC_TARGET_X86_64)
246 # define CONFIG_TCC_ELFINTERP "/lib/ld-kfreebsd-x86-64.so.1"
247 # else
248 # define CONFIG_TCC_ELFINTERP "/lib/ld.so.1"
249 # endif
250 # elif defined __DragonFly__
251 # define CONFIG_TCC_ELFINTERP "/usr/libexec/ld-elf.so.2"
252 # elif defined __NetBSD__
253 # define CONFIG_TCC_ELFINTERP "/usr/libexec/ld.elf_so"
254 # elif defined __GNU__
255 # define CONFIG_TCC_ELFINTERP "/lib/ld.so"
256 # elif defined(TCC_TARGET_PE)
257 # define CONFIG_TCC_ELFINTERP "-"
258 # elif defined(TCC_UCLIBC)
259 # define CONFIG_TCC_ELFINTERP "/lib/ld-uClibc.so.0" /* is there a uClibc for x86_64 ? */
260 # elif defined TCC_TARGET_ARM64
261 # if defined(TCC_MUSL)
262 # define CONFIG_TCC_ELFINTERP "/lib/ld-musl-aarch64.so.1"
263 # else
264 # define CONFIG_TCC_ELFINTERP "/lib/ld-linux-aarch64.so.1"
265 # endif
266 # elif defined(TCC_TARGET_X86_64)
267 # if defined(TCC_MUSL)
268 # define CONFIG_TCC_ELFINTERP "/lib/ld-musl-x86_64.so.1"
269 # else
270 # define CONFIG_TCC_ELFINTERP "/lib64/ld-linux-x86-64.so.2"
271 # endif
272 # elif defined(TCC_TARGET_RISCV64)
273 # define CONFIG_TCC_ELFINTERP "/lib/ld-linux-riscv64-lp64d.so.1"
274 # elif !defined(TCC_ARM_EABI)
275 # if defined(TCC_MUSL)
276 # if defined(TCC_TARGET_I386)
277 # define CONFIG_TCC_ELFINTERP "/lib/ld-musl-i386.so.1"
278 # else
279 # define CONFIG_TCC_ELFINTERP "/lib/ld-musl-arm.so.1"
280 # endif
281 # else
282 # define CONFIG_TCC_ELFINTERP "/lib/ld-linux.so.2"
283 # endif
284 # endif
285 #endif
287 /* var elf_interp dans *-gen.c */
288 #ifdef CONFIG_TCC_ELFINTERP
289 # define DEFAULT_ELFINTERP(s) CONFIG_TCC_ELFINTERP
290 #else
291 # define DEFAULT_ELFINTERP(s) default_elfinterp(s)
292 #endif
294 /* (target specific) libtcc1.a */
295 #ifndef TCC_LIBTCC1
296 # define TCC_LIBTCC1 "libtcc1.a"
297 #endif
299 /* library to use with CONFIG_USE_LIBGCC instead of libtcc1.a */
300 #if defined CONFIG_USE_LIBGCC && !defined TCC_LIBGCC
301 #define TCC_LIBGCC USE_TRIPLET(CONFIG_SYSROOT "/" CONFIG_LDDIR) "/libgcc_s.so.1"
302 #endif
304 /* -------------------------------------------- */
306 #include "libtcc.h"
307 #include "elf.h"
308 #include "stab.h"
310 /* -------------------------------------------- */
312 #ifndef PUB_FUNC /* functions used by tcc.c but not in libtcc.h */
313 # define PUB_FUNC
314 #endif
316 #ifndef ONE_SOURCE
317 # define ONE_SOURCE 1
318 #endif
320 /* support using libtcc from threads */
321 #define CONFIG_TCC_SEMLOCK
323 #if ONE_SOURCE
324 #define ST_INLN static inline
325 #define ST_FUNC static
326 #define ST_DATA static
327 #else
328 #define ST_INLN
329 #define ST_FUNC
330 #define ST_DATA extern
331 #endif
333 #ifdef TCC_PROFILE /* profile all functions */
334 # define static
335 #endif
337 /* -------------------------------------------- */
338 /* include the target specific definitions */
340 #define TARGET_DEFS_ONLY
341 #ifdef TCC_TARGET_I386
342 # include "i386-gen.c"
343 # include "i386-link.c"
344 #elif defined TCC_TARGET_X86_64
345 # include "x86_64-gen.c"
346 # include "x86_64-link.c"
347 #elif defined TCC_TARGET_ARM
348 # include "arm-gen.c"
349 # include "arm-link.c"
350 # include "arm-asm.c"
351 #elif defined TCC_TARGET_ARM64
352 # include "arm64-gen.c"
353 # include "arm64-link.c"
354 #elif defined TCC_TARGET_C67
355 # define TCC_TARGET_COFF
356 # include "coff.h"
357 # include "c67-gen.c"
358 # include "c67-link.c"
359 #elif defined(TCC_TARGET_RISCV64)
360 # include "riscv64-gen.c"
361 # include "riscv64-link.c"
362 #else
363 #error unknown target
364 #endif
365 #undef TARGET_DEFS_ONLY
367 /* -------------------------------------------- */
369 #if PTR_SIZE == 8
370 # define ELFCLASSW ELFCLASS64
371 # define ElfW(type) Elf##64##_##type
372 # define ELFW(type) ELF##64##_##type
373 # define ElfW_Rel ElfW(Rela)
374 # define SHT_RELX SHT_RELA
375 # define REL_SECTION_FMT ".rela%s"
376 #else
377 # define ELFCLASSW ELFCLASS32
378 # define ElfW(type) Elf##32##_##type
379 # define ELFW(type) ELF##32##_##type
380 # define ElfW_Rel ElfW(Rel)
381 # define SHT_RELX SHT_REL
382 # define REL_SECTION_FMT ".rel%s"
383 #endif
384 /* target address type */
385 #define addr_t ElfW(Addr)
386 #define ElfSym ElfW(Sym)
388 #if PTR_SIZE == 8 && !defined TCC_TARGET_PE
389 # define LONG_SIZE 8
390 #else
391 # define LONG_SIZE 4
392 #endif
394 /* -------------------------------------------- */
396 #define INCLUDE_STACK_SIZE 32
397 #define IFDEF_STACK_SIZE 64
398 #define VSTACK_SIZE 256
399 #define STRING_MAX_SIZE 1024
400 #define TOKSTR_MAX_SIZE 256
401 #define PACK_STACK_SIZE 8
403 #define TOK_HASH_SIZE 16384 /* must be a power of two */
404 #define TOK_ALLOC_INCR 512 /* must be a power of two */
405 #define TOK_MAX_SIZE 4 /* token max size in int unit when stored in string */
407 /* token symbol management */
408 typedef struct TokenSym {
409 struct TokenSym *hash_next;
410 struct Sym *sym_define; /* direct pointer to define */
411 struct Sym *sym_label; /* direct pointer to label */
412 struct Sym *sym_struct; /* direct pointer to structure */
413 struct Sym *sym_identifier; /* direct pointer to identifier */
414 int tok; /* token number */
415 int len;
416 char str[1];
417 } TokenSym;
419 #ifdef TCC_TARGET_PE
420 typedef unsigned short nwchar_t;
421 #else
422 typedef int nwchar_t;
423 #endif
425 typedef struct CString {
426 int size; /* size in bytes */
427 void *data; /* either 'char *' or 'nwchar_t *' */
428 int size_allocated;
429 } CString;
431 /* type definition */
432 typedef struct CType {
433 int t;
434 struct Sym *ref;
435 } CType;
437 /* constant value */
438 typedef union CValue {
439 long double ld;
440 double d;
441 float f;
442 uint64_t i;
443 struct {
444 int size;
445 const void *data;
446 } str;
447 int tab[LDOUBLE_SIZE/4];
448 } CValue;
450 /* value on stack */
451 typedef struct SValue {
452 CType type; /* type */
453 unsigned short r; /* register + flags */
454 unsigned short r2; /* second register, used for 'long long'
455 type. If not used, set to VT_CONST */
456 union {
457 struct { int jtrue, jfalse; }; /* forward jmps */
458 CValue c; /* constant, if VT_CONST */
460 union {
461 struct { unsigned short cmp_op, cmp_r; }; /* VT_CMP operation */
462 struct Sym *sym; /* symbol, if (VT_SYM | VT_CONST), or if */
463 }; /* result of unary() for an identifier. */
465 } SValue;
467 /* symbol attributes */
468 struct SymAttr {
469 unsigned short
470 aligned : 5, /* alignment as log2+1 (0 == unspecified) */
471 packed : 1,
472 weak : 1,
473 visibility : 2,
474 dllexport : 1,
475 nodecorate : 1,
476 dllimport : 1,
477 addrtaken : 1,
478 xxxx : 3; /* not used */
481 /* function attributes or temporary attributes for parsing */
482 struct FuncAttr {
483 unsigned
484 func_call : 3, /* calling convention (0..5), see below */
485 func_type : 2, /* FUNC_OLD/NEW/ELLIPSIS */
486 func_noreturn : 1, /* attribute((noreturn)) */
487 func_ctor : 1, /* attribute((constructor)) */
488 func_dtor : 1, /* attribute((destructor)) */
489 func_args : 8; /* PE __stdcall args */
492 /* symbol management */
493 typedef struct Sym {
494 int v; /* symbol token */
495 unsigned short r; /* associated register or VT_CONST/VT_LOCAL and LVAL type */
496 struct SymAttr a; /* symbol attributes */
497 union {
498 struct {
499 int c; /* associated number or Elf symbol index */
500 union {
501 int sym_scope; /* scope level for locals */
502 int jnext; /* next jump label */
503 struct FuncAttr f; /* function attributes */
504 int auxtype; /* bitfield access type */
507 long long enum_val; /* enum constant if IS_ENUM_VAL */
508 int *d; /* define token stream */
509 struct Sym *ncl; /* next cleanup */
511 CType type; /* associated type */
512 union {
513 struct Sym *next; /* next related symbol (for fields and anoms) */
514 struct Sym *cleanupstate; /* in defined labels */
515 int asm_label; /* associated asm label */
517 struct Sym *prev; /* prev symbol in stack */
518 struct Sym *prev_tok; /* previous symbol for this token */
519 } Sym;
521 /* section definition */
522 typedef struct Section {
523 unsigned long data_offset; /* current data offset */
524 unsigned char *data; /* section data */
525 unsigned long data_allocated; /* used for realloc() handling */
526 TCCState *s1;
527 int sh_name; /* elf section name (only used during output) */
528 int sh_num; /* elf section number */
529 int sh_type; /* elf section type */
530 int sh_flags; /* elf section flags */
531 int sh_info; /* elf section info */
532 int sh_addralign; /* elf section alignment */
533 int sh_entsize; /* elf entry size */
534 unsigned long sh_size; /* section size (only used during output) */
535 addr_t sh_addr; /* address at which the section is relocated */
536 unsigned long sh_offset; /* file offset */
537 int nb_hashed_syms; /* used to resize the hash table */
538 struct Section *link; /* link to another section */
539 struct Section *reloc; /* corresponding section for relocation, if any */
540 struct Section *hash; /* hash table for symbols */
541 struct Section *prev; /* previous section on section stack */
542 char name[1]; /* section name */
543 } Section;
545 typedef struct DLLReference {
546 int level;
547 void *handle;
548 char name[1];
549 } DLLReference;
551 /* -------------------------------------------------- */
553 #define SYM_STRUCT 0x40000000 /* struct/union/enum symbol space */
554 #define SYM_FIELD 0x20000000 /* struct/union field symbol space */
555 #define SYM_FIRST_ANOM 0x10000000 /* first anonymous sym */
557 /* stored in 'Sym->f.func_type' field */
558 #define FUNC_NEW 1 /* ansi function prototype */
559 #define FUNC_OLD 2 /* old function prototype */
560 #define FUNC_ELLIPSIS 3 /* ansi function prototype with ... */
562 /* stored in 'Sym->f.func_call' field */
563 #define FUNC_CDECL 0 /* standard c call */
564 #define FUNC_STDCALL 1 /* pascal c call */
565 #define FUNC_FASTCALL1 2 /* first param in %eax */
566 #define FUNC_FASTCALL2 3 /* first parameters in %eax, %edx */
567 #define FUNC_FASTCALL3 4 /* first parameter in %eax, %edx, %ecx */
568 #define FUNC_FASTCALLW 5 /* first parameter in %ecx, %edx */
570 /* field 'Sym.t' for macros */
571 #define MACRO_OBJ 0 /* object like macro */
572 #define MACRO_FUNC 1 /* function like macro */
574 /* field 'Sym.r' for C labels */
575 #define LABEL_DEFINED 0 /* label is defined */
576 #define LABEL_FORWARD 1 /* label is forward defined */
577 #define LABEL_DECLARED 2 /* label is declared but never used */
578 #define LABEL_GONE 3 /* label isn't in scope, but not yet popped
579 from local_label_stack (stmt exprs) */
581 /* type_decl() types */
582 #define TYPE_ABSTRACT 1 /* type without variable */
583 #define TYPE_DIRECT 2 /* type with variable */
585 #define IO_BUF_SIZE 8192
587 typedef struct BufferedFile {
588 uint8_t *buf_ptr;
589 uint8_t *buf_end;
590 int fd;
591 struct BufferedFile *prev;
592 int line_num; /* current line number - here to simplify code */
593 int line_ref; /* tcc -E: last printed line */
594 int ifndef_macro; /* #ifndef macro / #endif search */
595 int ifndef_macro_saved; /* saved ifndef_macro */
596 int *ifdef_stack_ptr; /* ifdef_stack value at the start of the file */
597 int include_next_index; /* next search path */
598 char filename[1024]; /* filename */
599 char *true_filename; /* filename not modified by # line directive */
600 unsigned char unget[4];
601 unsigned char buffer[1]; /* extra size for CH_EOB char */
602 } BufferedFile;
604 #define CH_EOB '\\' /* end of buffer or '\0' char in file */
605 #define CH_EOF (-1) /* end of file */
607 /* used to record tokens */
608 typedef struct TokenString {
609 int *str;
610 int len;
611 int lastlen;
612 int allocated_len;
613 int last_line_num;
614 int save_line_num;
615 /* used to chain token-strings with begin/end_macro() */
616 struct TokenString *prev;
617 const int *prev_ptr;
618 char alloc;
619 } TokenString;
621 /* GNUC attribute definition */
622 typedef struct AttributeDef {
623 struct SymAttr a;
624 struct FuncAttr f;
625 struct Section *section;
626 Sym *cleanup_func;
627 int alias_target; /* token */
628 int asm_label; /* associated asm label */
629 char attr_mode; /* __attribute__((__mode__(...))) */
630 } AttributeDef;
632 /* inline functions */
633 typedef struct InlineFunc {
634 TokenString *func_str;
635 Sym *sym;
636 char filename[1];
637 } InlineFunc;
639 /* include file cache, used to find files faster and also to eliminate
640 inclusion if the include file is protected by #ifndef ... #endif */
641 typedef struct CachedInclude {
642 int ifndef_macro;
643 int once;
644 int hash_next; /* -1 if none */
645 char filename[1]; /* path specified in #include */
646 } CachedInclude;
648 #define CACHED_INCLUDES_HASH_SIZE 32
650 #ifdef CONFIG_TCC_ASM
651 typedef struct ExprValue {
652 uint64_t v;
653 Sym *sym;
654 int pcrel;
655 } ExprValue;
657 #define MAX_ASM_OPERANDS 30
658 typedef struct ASMOperand {
659 int id; /* GCC 3 optional identifier (0 if number only supported */
660 char *constraint;
661 char asm_str[16]; /* computed asm string for operand */
662 SValue *vt; /* C value of the expression */
663 int ref_index; /* if >= 0, gives reference to a output constraint */
664 int input_index; /* if >= 0, gives reference to an input constraint */
665 int priority; /* priority, used to assign registers */
666 int reg; /* if >= 0, register number used for this operand */
667 int is_llong; /* true if double register value */
668 int is_memory; /* true if memory operand */
669 int is_rw; /* for '+' modifier */
670 } ASMOperand;
671 #endif
673 /* extra symbol attributes (not in symbol table) */
674 struct sym_attr {
675 unsigned got_offset;
676 unsigned plt_offset;
677 int plt_sym;
678 int dyn_index;
679 #ifdef TCC_TARGET_ARM
680 unsigned char plt_thumb_stub:1;
681 #endif
684 struct TCCState {
685 unsigned char verbose; /* if true, display some information during compilation */
686 unsigned char nostdinc; /* if true, no standard headers are added */
687 unsigned char nostdlib; /* if true, no standard libraries are added */
688 unsigned char nocommon; /* if true, do not use common symbols for .bss data */
689 unsigned char static_link; /* if true, static linking is performed */
690 unsigned char rdynamic; /* if true, all symbols are exported */
691 unsigned char symbolic; /* if true, resolve symbols in the current module first */
692 unsigned char filetype; /* file type for compilation (NONE,C,ASM) */
693 unsigned int cversion; /* supported C ISO version, 199901 (the default), 201112, ... */
695 char *tcc_lib_path; /* CONFIG_TCCDIR or -B option */
696 char *soname; /* as specified on the command line (-soname) */
697 char *rpath; /* as specified on the command line (-Wl,-rpath=) */
698 unsigned char enable_new_dtags; /* ditto, (-Wl,--enable-new-dtags) */
700 /* output type, see TCC_OUTPUT_XXX */
701 int output_type;
702 /* output format, see TCC_OUTPUT_FORMAT_xxx */
703 int output_format;
705 /* C language options */
706 unsigned char char_is_unsigned;
707 unsigned char leading_underscore;
708 unsigned char ms_extensions; /* allow nested named struct w/o identifier behave like unnamed */
709 unsigned char dollars_in_identifiers; /* allows '$' char in identifiers */
710 unsigned char ms_bitfields; /* if true, emulate MS algorithm for aligning bitfields */
712 /* warning switches */
713 unsigned char warn_write_strings;
714 unsigned char warn_unsupported;
715 unsigned char warn_error;
716 unsigned char warn_none;
717 unsigned char warn_implicit_function_declaration;
718 unsigned char warn_gcc_compat;
720 /* compile with debug symbol (and use them if error during execution) */
721 unsigned char do_debug;
722 unsigned char do_backtrace;
723 #ifdef CONFIG_TCC_BCHECK
724 /* compile with built-in memory and bounds checker */
725 unsigned char do_bounds_check;
726 #endif
727 #ifdef TCC_TARGET_ARM
728 enum float_abi float_abi; /* float ABI of the generated code*/
729 #endif
730 int run_test; /* nth test to run with -dt -run */
732 addr_t text_addr; /* address of text section */
733 unsigned char has_text_addr;
735 unsigned section_align; /* section alignment */
737 /* use GNU C extensions */
738 unsigned char gnu_ext;
739 /* use TinyCC extensions */
740 unsigned char tcc_ext;
742 char *init_symbol; /* symbols to call at load-time (not used currently) */
743 char *fini_symbol; /* symbols to call at unload-time (not used currently) */
745 #ifdef TCC_TARGET_I386
746 int seg_size; /* 32. Can be 16 with i386 assembler (.code16) */
747 #endif
748 #ifdef TCC_TARGET_X86_64
749 unsigned char nosse; /* For -mno-sse support. */
750 #endif
752 /* array of all loaded dlls (including those referenced by loaded dlls) */
753 DLLReference **loaded_dlls;
754 int nb_loaded_dlls;
756 /* include paths */
757 char **include_paths;
758 int nb_include_paths;
760 char **sysinclude_paths;
761 int nb_sysinclude_paths;
763 /* library paths */
764 char **library_paths;
765 int nb_library_paths;
767 /* crt?.o object path */
768 char **crt_paths;
769 int nb_crt_paths;
771 /* -D / -U options */
772 CString cmdline_defs;
773 /* -include options */
774 CString cmdline_incl;
776 /* error handling */
777 void *error_opaque;
778 void (*error_func)(void *opaque, const char *msg);
779 int error_set_jmp_enabled;
780 jmp_buf error_jmp_buf;
781 int nb_errors;
783 /* output file for preprocessing (-E) */
784 FILE *ppfp;
785 enum {
786 LINE_MACRO_OUTPUT_FORMAT_GCC,
787 LINE_MACRO_OUTPUT_FORMAT_NONE,
788 LINE_MACRO_OUTPUT_FORMAT_STD,
789 LINE_MACRO_OUTPUT_FORMAT_P10 = 11
790 } Pflag; /* -P switch */
791 char dflag; /* -dX value */
793 /* for -MD/-MF: collected dependencies for this compilation */
794 char **target_deps;
795 int nb_target_deps;
797 /* compilation */
798 BufferedFile *include_stack[INCLUDE_STACK_SIZE];
799 BufferedFile **include_stack_ptr;
801 int ifdef_stack[IFDEF_STACK_SIZE];
802 int *ifdef_stack_ptr;
804 /* included files enclosed with #ifndef MACRO */
805 int cached_includes_hash[CACHED_INCLUDES_HASH_SIZE];
806 CachedInclude **cached_includes;
807 int nb_cached_includes;
809 /* #pragma pack stack */
810 int pack_stack[PACK_STACK_SIZE];
811 int *pack_stack_ptr;
812 char **pragma_libs;
813 int nb_pragma_libs;
815 /* inline functions are stored as token lists and compiled last
816 only if referenced */
817 struct InlineFunc **inline_fns;
818 int nb_inline_fns;
820 /* sections */
821 Section **sections;
822 int nb_sections; /* number of sections, including first dummy section */
824 Section **priv_sections;
825 int nb_priv_sections; /* number of private sections */
827 /* got & plt handling */
828 Section *got;
829 Section *plt;
831 /* predefined sections */
832 Section *text_section, *data_section, *bss_section;
833 Section *common_section;
834 Section *cur_text_section; /* current section where function code is generated */
835 #ifdef CONFIG_TCC_BCHECK
836 /* bound check related sections */
837 Section *bounds_section; /* contains global data bound description */
838 Section *lbounds_section; /* contains local data bound description */
839 #endif
840 /* symbol sections */
841 Section *symtab_section;
842 /* debug sections */
843 Section *stab_section;
844 /* Is there a new undefined sym since last new_undef_sym() */
845 int new_undef_sym;
847 /* temporary dynamic symbol sections (for dll loading) */
848 Section *dynsymtab_section;
849 /* exported dynamic symbol section */
850 Section *dynsym;
851 /* copy of the global symtab_section variable */
852 Section *symtab;
853 /* extra attributes (eg. GOT/PLT value) for symtab symbols */
854 struct sym_attr *sym_attrs;
855 int nb_sym_attrs;
856 /* ptr to next reloc entry reused */
857 ElfW_Rel *qrel;
858 # define qrel s1->qrel
860 #ifdef TCC_TARGET_PE
861 /* PE info */
862 int pe_subsystem;
863 unsigned pe_characteristics;
864 unsigned pe_file_align;
865 unsigned pe_stack_size;
866 addr_t pe_imagebase;
867 # ifdef TCC_TARGET_X86_64
868 Section *uw_pdata;
869 int uw_sym;
870 unsigned uw_offs;
871 # endif
872 # define ELF_OBJ_ONLY
873 #endif
875 #ifndef ELF_OBJ_ONLY
876 int nb_sym_versions;
877 struct sym_version *sym_versions;
878 int nb_sym_to_version;
879 int *sym_to_version;
880 int dt_verneednum;
881 Section *versym_section;
882 Section *verneed_section;
883 #endif
885 #ifdef TCC_IS_NATIVE
886 const char *runtime_main;
887 void **runtime_mem;
888 int nb_runtime_mem;
889 #endif
891 #ifdef CONFIG_TCC_BACKTRACE
892 int rt_num_callers;
893 #endif
895 int fd, cc; /* used by tcc_load_ldscript */
897 /* benchmark info */
898 int total_idents;
899 int total_lines;
900 int total_bytes;
902 /* option -dnum (for general development purposes) */
903 int g_debug;
905 /* used by main and tcc_parse_args only */
906 struct filespec **files; /* files seen on command line */
907 int nb_files; /* number thereof */
908 int nb_libraries; /* number of libs thereof */
909 char *outfile; /* output filename */
910 unsigned char option_r; /* option -r */
911 unsigned char do_bench; /* option -bench */
912 int gen_deps; /* option -MD */
913 char *deps_outfile; /* option -MF */
914 unsigned char option_pthread; /* -pthread option */
915 int argc;
916 char **argv;
919 struct filespec {
920 char type;
921 char name[1];
924 /* The current value can be: */
925 #define VT_VALMASK 0x003f /* mask for value location, register or: */
926 #define VT_CONST 0x0030 /* constant in vc (must be first non register value) */
927 #define VT_LLOCAL 0x0031 /* lvalue, offset on stack */
928 #define VT_LOCAL 0x0032 /* offset on stack */
929 #define VT_CMP 0x0033 /* the value is stored in processor flags (in vc) */
930 #define VT_JMP 0x0034 /* value is the consequence of jmp true (even) */
931 #define VT_JMPI 0x0035 /* value is the consequence of jmp false (odd) */
932 #define VT_LVAL 0x0100 /* var is an lvalue */
933 #define VT_SYM 0x0200 /* a symbol value is added */
934 #define VT_MUSTCAST 0x0C00 /* value must be casted to be correct (used for
935 char/short stored in integer registers) */
936 #define VT_MUSTBOUND 0x4000 /* bound checking must be done before
937 dereferencing value */
938 #define VT_BOUNDED 0x8000 /* value is bounded. The address of the
939 bounding function call point is in vc */
940 /* types */
941 #define VT_BTYPE 0x000f /* mask for basic type */
942 #define VT_VOID 0 /* void type */
943 #define VT_BYTE 1 /* signed byte type */
944 #define VT_SHORT 2 /* short type */
945 #define VT_INT 3 /* integer type */
946 #define VT_LLONG 4 /* 64 bit integer */
947 #define VT_PTR 5 /* pointer */
948 #define VT_FUNC 6 /* function type */
949 #define VT_STRUCT 7 /* struct/union definition */
950 #define VT_FLOAT 8 /* IEEE float */
951 #define VT_DOUBLE 9 /* IEEE double */
952 #define VT_LDOUBLE 10 /* IEEE long double */
953 #define VT_BOOL 11 /* ISOC99 boolean type */
954 #define VT_QLONG 13 /* 128-bit integer. Only used for x86-64 ABI */
955 #define VT_QFLOAT 14 /* 128-bit float. Only used for x86-64 ABI */
957 #define VT_UNSIGNED 0x0010 /* unsigned type */
958 #define VT_DEFSIGN 0x0020 /* explicitly signed or unsigned */
959 #define VT_ARRAY 0x0040 /* array type (also has VT_PTR) */
960 #define VT_BITFIELD 0x0080 /* bitfield modifier */
961 #define VT_CONSTANT 0x0100 /* const modifier */
962 #define VT_VOLATILE 0x0200 /* volatile modifier */
963 #define VT_VLA 0x0400 /* VLA type (also has VT_PTR and VT_ARRAY) */
964 #define VT_LONG 0x0800 /* long type (also has VT_INT rsp. VT_LLONG) */
966 /* storage */
967 #define VT_EXTERN 0x00001000 /* extern definition */
968 #define VT_STATIC 0x00002000 /* static variable */
969 #define VT_TYPEDEF 0x00004000 /* typedef definition */
970 #define VT_INLINE 0x00008000 /* inline definition */
971 /* currently unused: 0x000[1248]0000 */
973 #define VT_STRUCT_SHIFT 20 /* shift for bitfield shift values (32 - 2*6) */
974 #define VT_STRUCT_MASK (((1U << (6+6)) - 1) << VT_STRUCT_SHIFT | VT_BITFIELD)
975 #define BIT_POS(t) (((t) >> VT_STRUCT_SHIFT) & 0x3f)
976 #define BIT_SIZE(t) (((t) >> (VT_STRUCT_SHIFT + 6)) & 0x3f)
978 #define VT_UNION (1 << VT_STRUCT_SHIFT | VT_STRUCT)
979 #define VT_ENUM (2 << VT_STRUCT_SHIFT) /* integral type is an enum really */
980 #define VT_ENUM_VAL (3 << VT_STRUCT_SHIFT) /* integral type is an enum constant really */
982 #define IS_ENUM(t) ((t & VT_STRUCT_MASK) == VT_ENUM)
983 #define IS_ENUM_VAL(t) ((t & VT_STRUCT_MASK) == VT_ENUM_VAL)
984 #define IS_UNION(t) ((t & (VT_STRUCT_MASK|VT_BTYPE)) == VT_UNION)
986 /* type mask (except storage) */
987 #define VT_STORAGE (VT_EXTERN | VT_STATIC | VT_TYPEDEF | VT_INLINE)
988 #define VT_TYPE (~(VT_STORAGE|VT_STRUCT_MASK))
990 /* symbol was created by tccasm.c first */
991 #define VT_ASM (VT_VOID | VT_UNSIGNED)
992 #define IS_ASM_SYM(sym) (((sym)->type.t & (VT_BTYPE | VT_ASM)) == VT_ASM)
994 /* general: set/get the pseudo-bitfield value for bit-mask M */
995 #define BFVAL(M,N) ((unsigned)((M) & ~((M) << 1)) * (N))
996 #define BFGET(X,M) (((X) & (M)) / BFVAL(M,1))
997 #define BFSET(X,M,N) ((X) = ((X) & ~(M)) | BFVAL(M,N))
999 /* token values */
1001 /* warning: the following compare tokens depend on i386 asm code */
1002 #define TOK_ULT 0x92
1003 #define TOK_UGE 0x93
1004 #define TOK_EQ 0x94
1005 #define TOK_NE 0x95
1006 #define TOK_ULE 0x96
1007 #define TOK_UGT 0x97
1008 #define TOK_Nset 0x98
1009 #define TOK_Nclear 0x99
1010 #define TOK_LT 0x9c
1011 #define TOK_GE 0x9d
1012 #define TOK_LE 0x9e
1013 #define TOK_GT 0x9f
1015 #define TOK_LAND 0xa0
1016 #define TOK_LOR 0xa1
1017 #define TOK_DEC 0xa2
1018 #define TOK_MID 0xa3 /* inc/dec, to void constant */
1019 #define TOK_INC 0xa4
1020 #define TOK_UDIV 0xb0 /* unsigned division */
1021 #define TOK_UMOD 0xb1 /* unsigned modulo */
1022 #define TOK_PDIV 0xb2 /* fast division with undefined rounding for pointers */
1024 /* tokens that carry values (in additional token string space / tokc) --> */
1025 #define TOK_CCHAR 0xb3 /* char constant in tokc */
1026 #define TOK_LCHAR 0xb4
1027 #define TOK_CINT 0xb5 /* number in tokc */
1028 #define TOK_CUINT 0xb6 /* unsigned int constant */
1029 #define TOK_CLLONG 0xb7 /* long long constant */
1030 #define TOK_CULLONG 0xb8 /* unsigned long long constant */
1031 #define TOK_STR 0xb9 /* pointer to string in tokc */
1032 #define TOK_LSTR 0xba
1033 #define TOK_CFLOAT 0xbb /* float constant */
1034 #define TOK_CDOUBLE 0xbc /* double constant */
1035 #define TOK_CLDOUBLE 0xbd /* long double constant */
1036 #define TOK_PPNUM 0xbe /* preprocessor number */
1037 #define TOK_PPSTR 0xbf /* preprocessor string */
1038 #define TOK_LINENUM 0xc0 /* line number info */
1039 #define TOK_TWODOTS 0xa8 /* C++ token ? */
1040 /* <-- */
1042 #define TOK_UMULL 0xc2 /* unsigned 32x32 -> 64 mul */
1043 #define TOK_ADDC1 0xc3 /* add with carry generation */
1044 #define TOK_ADDC2 0xc4 /* add with carry use */
1045 #define TOK_SUBC1 0xc5 /* add with carry generation */
1046 #define TOK_SUBC2 0xc6 /* add with carry use */
1047 #define TOK_ARROW 0xc7
1048 #define TOK_DOTS 0xc8 /* three dots */
1049 #define TOK_SHR 0xc9 /* unsigned shift right */
1050 #define TOK_TWOSHARPS 0xca /* ## preprocessing token */
1051 #define TOK_PLCHLDR 0xcb /* placeholder token as defined in C99 */
1052 #define TOK_NOSUBST 0xcc /* means following token has already been pp'd */
1053 #define TOK_PPJOIN 0xcd /* A '##' in the right position to mean pasting */
1054 #define TOK_CLONG 0xce /* long constant */
1055 #define TOK_CULONG 0xcf /* unsigned long constant */
1057 #define TOK_SHL 0x01 /* shift left */
1058 #define TOK_SAR 0x02 /* signed shift right */
1060 /* assignment operators : normal operator or 0x80 */
1061 #define TOK_A_MOD 0xa5
1062 #define TOK_A_AND 0xa6
1063 #define TOK_A_MUL 0xaa
1064 #define TOK_A_ADD 0xab
1065 #define TOK_A_SUB 0xad
1066 #define TOK_A_DIV 0xaf
1067 #define TOK_A_XOR 0xde
1068 #define TOK_A_OR 0xfc
1069 #define TOK_A_SHL 0x81
1070 #define TOK_A_SAR 0x82
1072 #define TOK_EOF (-1) /* end of file */
1073 #define TOK_LINEFEED 10 /* line feed */
1075 /* all identifiers and strings have token above that */
1076 #define TOK_IDENT 256
1078 #define DEF_ASM(x) DEF(TOK_ASM_ ## x, #x)
1079 #define TOK_ASM_int TOK_INT
1080 #define DEF_ASMDIR(x) DEF(TOK_ASMDIR_ ## x, "." #x)
1081 #define TOK_ASMDIR_FIRST TOK_ASMDIR_byte
1082 #define TOK_ASMDIR_LAST TOK_ASMDIR_section
1084 #if defined TCC_TARGET_I386 || defined TCC_TARGET_X86_64
1085 /* only used for i386 asm opcodes definitions */
1086 #define DEF_BWL(x) \
1087 DEF(TOK_ASM_ ## x ## b, #x "b") \
1088 DEF(TOK_ASM_ ## x ## w, #x "w") \
1089 DEF(TOK_ASM_ ## x ## l, #x "l") \
1090 DEF(TOK_ASM_ ## x, #x)
1091 #define DEF_WL(x) \
1092 DEF(TOK_ASM_ ## x ## w, #x "w") \
1093 DEF(TOK_ASM_ ## x ## l, #x "l") \
1094 DEF(TOK_ASM_ ## x, #x)
1095 #ifdef TCC_TARGET_X86_64
1096 # define DEF_BWLQ(x) \
1097 DEF(TOK_ASM_ ## x ## b, #x "b") \
1098 DEF(TOK_ASM_ ## x ## w, #x "w") \
1099 DEF(TOK_ASM_ ## x ## l, #x "l") \
1100 DEF(TOK_ASM_ ## x ## q, #x "q") \
1101 DEF(TOK_ASM_ ## x, #x)
1102 # define DEF_WLQ(x) \
1103 DEF(TOK_ASM_ ## x ## w, #x "w") \
1104 DEF(TOK_ASM_ ## x ## l, #x "l") \
1105 DEF(TOK_ASM_ ## x ## q, #x "q") \
1106 DEF(TOK_ASM_ ## x, #x)
1107 # define DEF_BWLX DEF_BWLQ
1108 # define DEF_WLX DEF_WLQ
1109 /* number of sizes + 1 */
1110 # define NBWLX 5
1111 #else
1112 # define DEF_BWLX DEF_BWL
1113 # define DEF_WLX DEF_WL
1114 /* number of sizes + 1 */
1115 # define NBWLX 4
1116 #endif
1118 #define DEF_FP1(x) \
1119 DEF(TOK_ASM_ ## f ## x ## s, "f" #x "s") \
1120 DEF(TOK_ASM_ ## fi ## x ## l, "fi" #x "l") \
1121 DEF(TOK_ASM_ ## f ## x ## l, "f" #x "l") \
1122 DEF(TOK_ASM_ ## fi ## x ## s, "fi" #x "s")
1124 #define DEF_FP(x) \
1125 DEF(TOK_ASM_ ## f ## x, "f" #x ) \
1126 DEF(TOK_ASM_ ## f ## x ## p, "f" #x "p") \
1127 DEF_FP1(x)
1129 #define DEF_ASMTEST(x,suffix) \
1130 DEF_ASM(x ## o ## suffix) \
1131 DEF_ASM(x ## no ## suffix) \
1132 DEF_ASM(x ## b ## suffix) \
1133 DEF_ASM(x ## c ## suffix) \
1134 DEF_ASM(x ## nae ## suffix) \
1135 DEF_ASM(x ## nb ## suffix) \
1136 DEF_ASM(x ## nc ## suffix) \
1137 DEF_ASM(x ## ae ## suffix) \
1138 DEF_ASM(x ## e ## suffix) \
1139 DEF_ASM(x ## z ## suffix) \
1140 DEF_ASM(x ## ne ## suffix) \
1141 DEF_ASM(x ## nz ## suffix) \
1142 DEF_ASM(x ## be ## suffix) \
1143 DEF_ASM(x ## na ## suffix) \
1144 DEF_ASM(x ## nbe ## suffix) \
1145 DEF_ASM(x ## a ## suffix) \
1146 DEF_ASM(x ## s ## suffix) \
1147 DEF_ASM(x ## ns ## suffix) \
1148 DEF_ASM(x ## p ## suffix) \
1149 DEF_ASM(x ## pe ## suffix) \
1150 DEF_ASM(x ## np ## suffix) \
1151 DEF_ASM(x ## po ## suffix) \
1152 DEF_ASM(x ## l ## suffix) \
1153 DEF_ASM(x ## nge ## suffix) \
1154 DEF_ASM(x ## nl ## suffix) \
1155 DEF_ASM(x ## ge ## suffix) \
1156 DEF_ASM(x ## le ## suffix) \
1157 DEF_ASM(x ## ng ## suffix) \
1158 DEF_ASM(x ## nle ## suffix) \
1159 DEF_ASM(x ## g ## suffix)
1161 #endif /* defined TCC_TARGET_I386 || defined TCC_TARGET_X86_64 */
1163 enum tcc_token {
1164 TOK_LAST = TOK_IDENT - 1
1165 #define DEF(id, str) ,id
1166 #include "tcctok.h"
1167 #undef DEF
1170 /* keywords: tok >= TOK_IDENT && tok < TOK_UIDENT */
1171 #define TOK_UIDENT TOK_DEFINE
1173 /* ------------ libtcc.c ------------ */
1175 ST_DATA struct TCCState *tcc_state;
1177 /* public functions currently used by the tcc main function */
1178 ST_FUNC char *pstrcpy(char *buf, size_t buf_size, const char *s);
1179 ST_FUNC char *pstrcat(char *buf, size_t buf_size, const char *s);
1180 ST_FUNC char *pstrncpy(char *out, const char *in, size_t num);
1181 PUB_FUNC char *tcc_basename(const char *name);
1182 PUB_FUNC char *tcc_fileextension (const char *name);
1184 #ifndef MEM_DEBUG
1185 PUB_FUNC void tcc_free(void *ptr);
1186 PUB_FUNC void *tcc_malloc(unsigned long size);
1187 PUB_FUNC void *tcc_mallocz(unsigned long size);
1188 PUB_FUNC void *tcc_realloc(void *ptr, unsigned long size);
1189 PUB_FUNC char *tcc_strdup(const char *str);
1190 #else
1191 #define tcc_free(ptr) tcc_free_debug(ptr)
1192 #define tcc_malloc(size) tcc_malloc_debug(size, __FILE__, __LINE__)
1193 #define tcc_mallocz(size) tcc_mallocz_debug(size, __FILE__, __LINE__)
1194 #define tcc_realloc(ptr,size) tcc_realloc_debug(ptr, size, __FILE__, __LINE__)
1195 #define tcc_strdup(str) tcc_strdup_debug(str, __FILE__, __LINE__)
1196 PUB_FUNC void tcc_free_debug(void *ptr);
1197 PUB_FUNC void *tcc_malloc_debug(unsigned long size, const char *file, int line);
1198 PUB_FUNC void *tcc_mallocz_debug(unsigned long size, const char *file, int line);
1199 PUB_FUNC void *tcc_realloc_debug(void *ptr, unsigned long size, const char *file, int line);
1200 PUB_FUNC char *tcc_strdup_debug(const char *str, const char *file, int line);
1201 #endif
1203 #define free(p) use_tcc_free(p)
1204 #define malloc(s) use_tcc_malloc(s)
1205 #define realloc(p, s) use_tcc_realloc(p, s)
1206 #undef strdup
1207 #define strdup(s) use_tcc_strdup(s)
1208 PUB_FUNC void _tcc_error_noabort(const char *fmt, ...);
1209 PUB_FUNC NORETURN void _tcc_error(const char *fmt, ...);
1210 PUB_FUNC void _tcc_warning(const char *fmt, ...);
1212 /* other utilities */
1213 ST_FUNC void dynarray_add(void *ptab, int *nb_ptr, void *data);
1214 ST_FUNC void dynarray_reset(void *pp, int *n);
1215 ST_INLN void cstr_ccat(CString *cstr, int ch);
1216 ST_FUNC void cstr_cat(CString *cstr, const char *str, int len);
1217 ST_FUNC void cstr_wccat(CString *cstr, int ch);
1218 ST_FUNC void cstr_new(CString *cstr);
1219 ST_FUNC void cstr_free(CString *cstr);
1220 ST_FUNC int cstr_printf(CString *cs, const char *fmt, ...);
1221 ST_FUNC void cstr_reset(CString *cstr);
1223 ST_INLN void sym_free(Sym *sym);
1224 ST_FUNC Sym *sym_push2(Sym **ps, int v, int t, int c);
1225 ST_FUNC Sym *sym_find2(Sym *s, int v);
1226 ST_FUNC Sym *sym_push(int v, CType *type, int r, int c);
1227 ST_FUNC void sym_pop(Sym **ptop, Sym *b, int keep);
1228 ST_INLN Sym *struct_find(int v);
1229 ST_INLN Sym *sym_find(int v);
1230 ST_FUNC Sym *global_identifier_push(int v, int t, int c);
1232 ST_FUNC void tcc_open_bf(TCCState *s1, const char *filename, int initlen);
1233 ST_FUNC int tcc_open(TCCState *s1, const char *filename);
1234 ST_FUNC void tcc_close(void);
1236 ST_FUNC int tcc_add_file_internal(TCCState *s1, const char *filename, int flags);
1237 /* flags: */
1238 #define AFF_PRINT_ERROR 0x10 /* print error if file not found */
1239 #define AFF_REFERENCED_DLL 0x20 /* load a referenced dll from another dll */
1240 #define AFF_TYPE_BIN 0x40 /* file to add is binary */
1241 #define AFF_WHOLE_ARCHIVE 0x80 /* load all objects from archive */
1242 /* s->filetype: */
1243 #define AFF_TYPE_NONE 0
1244 #define AFF_TYPE_C 1
1245 #define AFF_TYPE_ASM 2
1246 #define AFF_TYPE_ASMPP 4
1247 #define AFF_TYPE_LIB 8
1248 #define AFF_TYPE_MASK (15 | AFF_TYPE_BIN)
1249 /* values from tcc_object_type(...) */
1250 #define AFF_BINTYPE_REL 1
1251 #define AFF_BINTYPE_DYN 2
1252 #define AFF_BINTYPE_AR 3
1253 #define AFF_BINTYPE_C67 4
1256 #ifndef TCC_TARGET_PE
1257 ST_FUNC int tcc_add_crt(TCCState *s, const char *filename);
1258 #endif
1259 ST_FUNC int tcc_add_dll(TCCState *s, const char *filename, int flags);
1260 #ifdef CONFIG_TCC_BCHECK
1261 ST_FUNC void tcc_add_bcheck(TCCState *s1);
1262 #endif
1263 #ifdef CONFIG_TCC_BACKTRACE
1264 ST_FUNC void tcc_add_btstub(TCCState *s1);
1265 #endif
1266 ST_FUNC void tcc_add_pragma_libs(TCCState *s1);
1267 PUB_FUNC int tcc_add_library_err(TCCState *s, const char *f);
1268 PUB_FUNC void tcc_print_stats(TCCState *s, unsigned total_time);
1269 PUB_FUNC int tcc_parse_args(TCCState *s, int *argc, char ***argv, int optind);
1270 #ifdef _WIN32
1271 ST_FUNC char *normalize_slashes(char *path);
1272 #endif
1274 /* tcc_parse_args return codes: */
1275 #define OPT_HELP 1
1276 #define OPT_HELP2 2
1277 #define OPT_V 3
1278 #define OPT_PRINT_DIRS 4
1279 #define OPT_AR 5
1280 #define OPT_IMPDEF 6
1281 #define OPT_M32 32
1282 #define OPT_M64 64
1284 /* ------------ tccpp.c ------------ */
1286 ST_DATA struct BufferedFile *file;
1287 ST_DATA int ch, tok;
1288 ST_DATA CValue tokc;
1289 ST_DATA const int *macro_ptr;
1290 ST_DATA int parse_flags;
1291 ST_DATA int tok_flags;
1292 ST_DATA CString tokcstr; /* current parsed string, if any */
1294 /* display benchmark infos */
1295 ST_DATA int tok_ident;
1296 ST_DATA TokenSym **table_ident;
1298 #define TOK_FLAG_BOL 0x0001 /* beginning of line before */
1299 #define TOK_FLAG_BOF 0x0002 /* beginning of file before */
1300 #define TOK_FLAG_ENDIF 0x0004 /* a endif was found matching starting #ifdef */
1301 #define TOK_FLAG_EOF 0x0008 /* end of file */
1303 #define PARSE_FLAG_PREPROCESS 0x0001 /* activate preprocessing */
1304 #define PARSE_FLAG_TOK_NUM 0x0002 /* return numbers instead of TOK_PPNUM */
1305 #define PARSE_FLAG_LINEFEED 0x0004 /* line feed is returned as a
1306 token. line feed is also
1307 returned at eof */
1308 #define PARSE_FLAG_ASM_FILE 0x0008 /* we processing an asm file: '#' can be used for line comment, etc. */
1309 #define PARSE_FLAG_SPACES 0x0010 /* next() returns space tokens (for -E) */
1310 #define PARSE_FLAG_ACCEPT_STRAYS 0x0020 /* next() returns '\\' token */
1311 #define PARSE_FLAG_TOK_STR 0x0040 /* return parsed strings instead of TOK_PPSTR */
1313 /* isidnum_table flags: */
1314 #define IS_SPC 1
1315 #define IS_ID 2
1316 #define IS_NUM 4
1318 ST_FUNC TokenSym *tok_alloc(const char *str, int len);
1319 ST_FUNC const char *get_tok_str(int v, CValue *cv);
1320 ST_FUNC void begin_macro(TokenString *str, int alloc);
1321 ST_FUNC void end_macro(void);
1322 ST_FUNC int set_idnum(int c, int val);
1323 ST_INLN void tok_str_new(TokenString *s);
1324 ST_FUNC TokenString *tok_str_alloc(void);
1325 ST_FUNC void tok_str_free(TokenString *s);
1326 ST_FUNC void tok_str_free_str(int *str);
1327 ST_FUNC void tok_str_add(TokenString *s, int t);
1328 ST_FUNC void tok_str_add_tok(TokenString *s);
1329 ST_INLN void define_push(int v, int macro_type, int *str, Sym *first_arg);
1330 ST_FUNC void define_undef(Sym *s);
1331 ST_INLN Sym *define_find(int v);
1332 ST_FUNC void free_defines(Sym *b);
1333 ST_FUNC Sym *label_find(int v);
1334 ST_FUNC Sym *label_push(Sym **ptop, int v, int flags);
1335 ST_FUNC void label_pop(Sym **ptop, Sym *slast, int keep);
1336 ST_FUNC void parse_define(void);
1337 ST_FUNC void preprocess(int is_bof);
1338 ST_FUNC void next_nomacro(void);
1339 ST_FUNC void next(void);
1340 ST_INLN void unget_tok(int last_tok);
1341 ST_FUNC void preprocess_start(TCCState *s1, int is_asm);
1342 ST_FUNC void preprocess_end(TCCState *s1);
1343 ST_FUNC void tccpp_new(TCCState *s);
1344 ST_FUNC void tccpp_delete(TCCState *s);
1345 ST_FUNC int tcc_preprocess(TCCState *s1);
1346 ST_FUNC void skip(int c);
1347 ST_FUNC NORETURN void expect(const char *msg);
1349 /* space excluding newline */
1350 static inline int is_space(int ch) {
1351 return ch == ' ' || ch == '\t' || ch == '\v' || ch == '\f' || ch == '\r';
1353 static inline int isid(int c) {
1354 return (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') || c == '_';
1356 static inline int isnum(int c) {
1357 return c >= '0' && c <= '9';
1359 static inline int isoct(int c) {
1360 return c >= '0' && c <= '7';
1362 static inline int toup(int c) {
1363 return (c >= 'a' && c <= 'z') ? c - 'a' + 'A' : c;
1366 /* ------------ tccgen.c ------------ */
1368 #define SYM_POOL_NB (8192 / sizeof(Sym))
1370 ST_DATA Sym *global_stack;
1371 ST_DATA Sym *local_stack;
1372 ST_DATA Sym *local_label_stack;
1373 ST_DATA Sym *global_label_stack;
1374 ST_DATA Sym *define_stack;
1375 ST_DATA CType int_type, func_old_type, char_pointer_type;
1376 ST_DATA SValue *vtop;
1377 ST_DATA int rsym, anon_sym, ind, loc;
1379 ST_DATA int const_wanted; /* true if constant wanted */
1380 ST_DATA int nocode_wanted; /* true if no code generation wanted for an expression */
1381 ST_DATA int global_expr; /* true if compound literals must be allocated globally (used during initializers parsing */
1382 ST_DATA CType func_vt; /* current function return type (used by return instruction) */
1383 ST_DATA int func_var; /* true if current function is variadic */
1384 ST_DATA int func_vc;
1385 ST_DATA const char *funcname;
1387 ST_FUNC void tcc_debug_start(TCCState *s1);
1388 ST_FUNC void tcc_debug_end(TCCState *s1);
1389 ST_FUNC void tcc_debug_bincl(TCCState *s1);
1390 ST_FUNC void tcc_debug_eincl(TCCState *s1);
1391 ST_FUNC void tcc_debug_putfile(TCCState *s1, const char *filename);
1392 ST_FUNC void tcc_debug_funcstart(TCCState *s1, Sym *sym);
1393 ST_FUNC void tcc_debug_funcend(TCCState *s1, int size);
1394 ST_FUNC void tcc_debug_line(TCCState *s1);
1396 ST_FUNC void tccgen_init(TCCState *s1);
1397 ST_FUNC int tccgen_compile(TCCState *s1);
1398 ST_FUNC void tccgen_finish(TCCState *s1);
1399 ST_FUNC void check_vstack(void);
1401 ST_INLN int is_float(int t);
1402 ST_FUNC int ieee_finite(double d);
1403 ST_FUNC void test_lvalue(void);
1404 ST_FUNC void vpushi(int v);
1405 ST_FUNC ElfSym *elfsym(Sym *);
1406 ST_FUNC void update_storage(Sym *sym);
1407 ST_FUNC Sym *external_global_sym(int v, CType *type);
1408 ST_FUNC void vset(CType *type, int r, int v);
1409 ST_FUNC void vset_VT_CMP(int op);
1410 ST_FUNC void vswap(void);
1411 ST_FUNC void vpush_global_sym(CType *type, int v);
1412 ST_FUNC void vrote(SValue *e, int n);
1413 ST_FUNC void vrott(int n);
1414 ST_FUNC void vrotb(int n);
1415 #if PTR_SIZE == 4
1416 ST_FUNC void lexpand(void);
1417 #endif
1418 #ifdef TCC_TARGET_ARM
1419 ST_FUNC int get_reg_ex(int rc, int rc2);
1420 #endif
1421 ST_FUNC void vpushv(SValue *v);
1422 ST_FUNC void save_reg(int r);
1423 ST_FUNC void save_reg_upstack(int r, int n);
1424 ST_FUNC int get_reg(int rc);
1425 ST_FUNC void save_regs(int n);
1426 ST_FUNC void gaddrof(void);
1427 ST_FUNC int gv(int rc);
1428 ST_FUNC void gv2(int rc1, int rc2);
1429 ST_FUNC void vpop(void);
1430 ST_FUNC void gen_op(int op);
1431 ST_FUNC int type_size(CType *type, int *a);
1432 ST_FUNC void mk_pointer(CType *type);
1433 ST_FUNC void vstore(void);
1434 ST_FUNC void inc(int post, int c);
1435 ST_FUNC void parse_mult_str (CString *astr, const char *msg);
1436 ST_FUNC void parse_asm_str(CString *astr);
1437 ST_FUNC void indir(void);
1438 ST_FUNC void unary(void);
1439 ST_FUNC void gexpr(void);
1440 ST_FUNC int expr_const(void);
1441 #if defined CONFIG_TCC_BCHECK || defined TCC_TARGET_C67
1442 ST_FUNC Sym *get_sym_ref(CType *type, Section *sec, unsigned long offset, unsigned long size);
1443 #endif
1444 #if defined TCC_TARGET_X86_64 && !defined TCC_TARGET_PE
1445 ST_FUNC int classify_x86_64_va_arg(CType *ty);
1446 #endif
1447 #ifdef CONFIG_TCC_BCHECK
1448 ST_FUNC void gbound_args(int nb_args);
1449 #endif
1451 /* ------------ tccelf.c ------------ */
1453 #define TCC_OUTPUT_FORMAT_ELF 0 /* default output format: ELF */
1454 #define TCC_OUTPUT_FORMAT_BINARY 1 /* binary image output */
1455 #define TCC_OUTPUT_FORMAT_COFF 2 /* COFF */
1457 #define ARMAG "!<arch>\012" /* For COFF and a.out archives */
1459 typedef struct {
1460 unsigned int n_strx; /* index into string table of name */
1461 unsigned char n_type; /* type of symbol */
1462 unsigned char n_other; /* misc info (usually empty) */
1463 unsigned short n_desc; /* description field */
1464 unsigned int n_value; /* value of symbol */
1465 } Stab_Sym;
1467 ST_FUNC void tccelf_new(TCCState *s);
1468 ST_FUNC void tccelf_delete(TCCState *s);
1469 ST_FUNC void tccelf_stab_new(TCCState *s);
1470 ST_FUNC void tccelf_begin_file(TCCState *s1);
1471 ST_FUNC void tccelf_end_file(TCCState *s1);
1472 #ifdef CONFIG_TCC_BCHECK
1473 ST_FUNC void tccelf_bounds_new(TCCState *s);
1474 #endif
1475 ST_FUNC Section *new_section(TCCState *s1, const char *name, int sh_type, int sh_flags);
1476 ST_FUNC void section_realloc(Section *sec, unsigned long new_size);
1477 ST_FUNC size_t section_add(Section *sec, addr_t size, int align);
1478 ST_FUNC void *section_ptr_add(Section *sec, addr_t size);
1479 ST_FUNC void section_reserve(Section *sec, unsigned long size);
1480 ST_FUNC Section *find_section(TCCState *s1, const char *name);
1481 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);
1483 ST_FUNC void put_extern_sym2(Sym *sym, int sh_num, addr_t value, unsigned long size, int can_add_underscore);
1484 ST_FUNC void put_extern_sym(Sym *sym, Section *section, addr_t value, unsigned long size);
1485 #if PTR_SIZE == 4
1486 ST_FUNC void greloc(Section *s, Sym *sym, unsigned long offset, int type);
1487 #endif
1488 ST_FUNC void greloca(Section *s, Sym *sym, unsigned long offset, int type, addr_t addend);
1490 ST_FUNC int put_elf_str(Section *s, const char *sym);
1491 ST_FUNC int put_elf_sym(Section *s, addr_t value, unsigned long size, int info, int other, int shndx, const char *name);
1492 ST_FUNC int set_elf_sym(Section *s, addr_t value, unsigned long size, int info, int other, int shndx, const char *name);
1493 ST_FUNC int find_elf_sym(Section *s, const char *name);
1494 ST_FUNC void put_elf_reloc(Section *symtab, Section *s, unsigned long offset, int type, int symbol);
1495 ST_FUNC void put_elf_reloca(Section *symtab, Section *s, unsigned long offset, int type, int symbol, addr_t addend);
1497 ST_FUNC void put_stabs(TCCState *s1, const char *str, int type, int other, int desc, unsigned long value);
1498 ST_FUNC void put_stabs_r(TCCState *s1, const char *str, int type, int other, int desc, unsigned long value, Section *sec, int sym_index);
1499 ST_FUNC void put_stabn(TCCState *s1, int type, int other, int desc, int value);
1501 ST_FUNC void resolve_common_syms(TCCState *s1);
1502 ST_FUNC void relocate_syms(TCCState *s1, Section *symtab, int do_resolve);
1503 ST_FUNC void relocate_section(TCCState *s1, Section *s);
1505 ST_FUNC int tcc_object_type(int fd, ElfW(Ehdr) *h);
1506 ST_FUNC int tcc_load_object_file(TCCState *s1, int fd, unsigned long file_offset);
1507 ST_FUNC int tcc_load_archive(TCCState *s1, int fd, int alacarte);
1508 ST_FUNC void add_array(TCCState *s1, const char *sec, int c);
1510 #ifndef ELF_OBJ_ONLY
1511 ST_FUNC void build_got_entries(TCCState *s1);
1512 #endif
1513 ST_FUNC struct sym_attr *get_sym_attr(TCCState *s1, int index, int alloc);
1514 ST_FUNC void squeeze_multi_relocs(Section *sec, size_t oldrelocoffset);
1516 ST_FUNC addr_t get_elf_sym_addr(TCCState *s, const char *name, int err);
1517 ST_FUNC void list_elf_symbols(TCCState *s, void *ctx,
1518 void (*symbol_cb)(void *ctx, const char *name, const void *val));
1519 #if defined TCC_IS_NATIVE || defined TCC_TARGET_PE
1520 ST_FUNC void *tcc_get_symbol_err(TCCState *s, const char *name);
1521 #endif
1523 ST_FUNC int set_global_sym(TCCState *s1, const char *name, Section *sec, long offs);
1525 #ifndef TCC_TARGET_PE
1526 ST_FUNC int tcc_load_dll(TCCState *s1, int fd, const char *filename, int level);
1527 ST_FUNC int tcc_load_ldscript(TCCState *s1, int fd);
1528 ST_FUNC void tcc_add_runtime(TCCState *s1);
1529 #endif
1531 /* ------------ xxx-link.c ------------ */
1533 /* Whether to generate a GOT/PLT entry and when. NO_GOTPLT_ENTRY is first so
1534 that unknown relocation don't create a GOT or PLT entry */
1535 enum gotplt_entry {
1536 NO_GOTPLT_ENTRY, /* never generate (eg. GLOB_DAT & JMP_SLOT relocs) */
1537 BUILD_GOT_ONLY, /* only build GOT (eg. TPOFF relocs) */
1538 AUTO_GOTPLT_ENTRY, /* generate if sym is UNDEF */
1539 ALWAYS_GOTPLT_ENTRY /* always generate (eg. PLTOFF relocs) */
1542 #ifndef ELF_OBJ_ONLY
1543 ST_FUNC int code_reloc (int reloc_type);
1544 ST_FUNC int gotplt_entry_type (int reloc_type);
1545 ST_FUNC unsigned create_plt_entry(TCCState *s1, unsigned got_offset, struct sym_attr *attr);
1546 ST_FUNC void relocate_plt(TCCState *s1);
1547 #endif
1548 ST_FUNC void relocate(TCCState *s1, ElfW_Rel *rel, int type, unsigned char *ptr, addr_t addr, addr_t val);
1550 /* ------------ xxx-gen.c ------------ */
1552 ST_DATA const int reg_classes[NB_REGS];
1554 ST_FUNC void gsym_addr(int t, int a);
1555 ST_FUNC void gsym(int t);
1556 ST_FUNC void load(int r, SValue *sv);
1557 ST_FUNC void store(int r, SValue *v);
1558 ST_FUNC int gfunc_sret(CType *vt, int variadic, CType *ret, int *align, int *regsize);
1559 ST_FUNC void gfunc_call(int nb_args);
1560 ST_FUNC void gfunc_prolog(Sym *func_sym);
1561 ST_FUNC void gfunc_epilog(void);
1562 ST_FUNC void gen_fill_nops(int);
1563 ST_FUNC int gjmp(int t);
1564 ST_FUNC void gjmp_addr(int a);
1565 ST_FUNC int gjmp_cond(int op, int t);
1566 ST_FUNC int gjmp_append(int n, int t);
1567 ST_FUNC void gen_opi(int op);
1568 ST_FUNC void gen_opf(int op);
1569 ST_FUNC void gen_cvt_ftoi(int t);
1570 ST_FUNC void gen_cvt_itof(int t);
1571 ST_FUNC void gen_cvt_ftof(int t);
1572 ST_FUNC void ggoto(void);
1573 #ifndef TCC_TARGET_C67
1574 ST_FUNC void o(unsigned int c);
1575 #endif
1576 ST_FUNC void gen_vla_sp_save(int addr);
1577 ST_FUNC void gen_vla_sp_restore(int addr);
1578 ST_FUNC void gen_vla_alloc(CType *type, int align);
1580 static inline uint16_t read16le(unsigned char *p) {
1581 return p[0] | (uint16_t)p[1] << 8;
1583 static inline void write16le(unsigned char *p, uint16_t x) {
1584 p[0] = x & 255; p[1] = x >> 8 & 255;
1586 static inline uint32_t read32le(unsigned char *p) {
1587 return read16le(p) | (uint32_t)read16le(p + 2) << 16;
1589 static inline void write32le(unsigned char *p, uint32_t x) {
1590 write16le(p, x); write16le(p + 2, x >> 16);
1592 static inline void add32le(unsigned char *p, int32_t x) {
1593 write32le(p, read32le(p) + x);
1595 static inline uint64_t read64le(unsigned char *p) {
1596 return read32le(p) | (uint64_t)read32le(p + 4) << 32;
1598 static inline void write64le(unsigned char *p, uint64_t x) {
1599 write32le(p, x); write32le(p + 4, x >> 32);
1601 static inline void add64le(unsigned char *p, int64_t x) {
1602 write64le(p, read64le(p) + x);
1605 /* ------------ i386-gen.c ------------ */
1606 #if defined TCC_TARGET_I386 || defined TCC_TARGET_X86_64
1607 ST_FUNC void g(int c);
1608 ST_FUNC void gen_le16(int c);
1609 ST_FUNC void gen_le32(int c);
1610 ST_FUNC void gen_addr32(int r, Sym *sym, int c);
1611 ST_FUNC void gen_addrpc32(int r, Sym *sym, int c);
1612 ST_FUNC void gen_cvt_csti(int t);
1613 #endif
1615 #ifdef CONFIG_TCC_BCHECK
1616 ST_FUNC void gen_bounded_ptr_add(void);
1617 ST_FUNC void gen_bounded_ptr_deref(void);
1618 #endif
1620 /* ------------ x86_64-gen.c ------------ */
1621 #ifdef TCC_TARGET_X86_64
1622 ST_FUNC void gen_addr64(int r, Sym *sym, int64_t c);
1623 ST_FUNC void gen_opl(int op);
1624 #ifdef TCC_TARGET_PE
1625 ST_FUNC void gen_vla_result(int addr);
1626 #endif
1627 ST_FUNC void gen_cvt_sxtw(void);
1628 ST_FUNC void gen_cvt_csti(int t);
1629 #endif
1631 /* ------------ arm-gen.c ------------ */
1632 #ifdef TCC_TARGET_ARM
1633 #if defined(TCC_ARM_EABI) && !defined(CONFIG_TCC_ELFINTERP)
1634 PUB_FUNC const char *default_elfinterp(struct TCCState *s);
1635 #endif
1636 ST_FUNC void arm_init(struct TCCState *s);
1637 #endif
1639 /* ------------ arm64-gen.c ------------ */
1640 #ifdef TCC_TARGET_ARM64
1641 ST_FUNC void gen_opl(int op);
1642 ST_FUNC void gfunc_return(CType *func_type);
1643 ST_FUNC void gen_va_start(void);
1644 ST_FUNC void gen_va_arg(CType *t);
1645 ST_FUNC void gen_clear_cache(void);
1646 ST_FUNC void gen_cvt_sxtw(void);
1647 ST_FUNC void gen_cvt_csti(int t);
1648 #endif
1650 /* ------------ riscv64-gen.c ------------ */
1651 #ifdef TCC_TARGET_RISCV64
1652 ST_FUNC void gen_opl(int op);
1653 //ST_FUNC void gfunc_return(CType *func_type);
1654 ST_FUNC void gen_va_start(void);
1655 ST_FUNC void arch_transfer_ret_regs(int);
1656 ST_FUNC void gen_cvt_sxtw(void);
1657 #endif
1659 /* ------------ c67-gen.c ------------ */
1660 #ifdef TCC_TARGET_C67
1661 #endif
1663 /* ------------ tcccoff.c ------------ */
1665 #ifdef TCC_TARGET_COFF
1666 ST_FUNC int tcc_output_coff(TCCState *s1, FILE *f);
1667 ST_FUNC int tcc_load_coff(TCCState * s1, int fd);
1668 #endif
1670 /* ------------ tccasm.c ------------ */
1671 ST_FUNC void asm_instr(void);
1672 ST_FUNC void asm_global_instr(void);
1673 #ifdef CONFIG_TCC_ASM
1674 ST_FUNC int find_constraint(ASMOperand *operands, int nb_operands, const char *name, const char **pp);
1675 ST_FUNC Sym* get_asm_sym(int name, Sym *csym);
1676 ST_FUNC void asm_expr(TCCState *s1, ExprValue *pe);
1677 ST_FUNC int asm_int_expr(TCCState *s1);
1678 ST_FUNC int tcc_assemble(TCCState *s1, int do_preprocess);
1679 /* ------------ i386-asm.c ------------ */
1680 ST_FUNC void gen_expr32(ExprValue *pe);
1681 #ifdef TCC_TARGET_X86_64
1682 ST_FUNC void gen_expr64(ExprValue *pe);
1683 #endif
1684 ST_FUNC void asm_opcode(TCCState *s1, int opcode);
1685 ST_FUNC int asm_parse_regvar(int t);
1686 ST_FUNC void asm_compute_constraints(ASMOperand *operands, int nb_operands, int nb_outputs, const uint8_t *clobber_regs, int *pout_reg);
1687 ST_FUNC void subst_asm_operand(CString *add_str, SValue *sv, int modifier);
1688 ST_FUNC void asm_gen_code(ASMOperand *operands, int nb_operands, int nb_outputs, int is_output, uint8_t *clobber_regs, int out_reg);
1689 ST_FUNC void asm_clobber(uint8_t *clobber_regs, const char *str);
1690 #endif
1692 /* ------------ tccpe.c -------------- */
1693 #ifdef TCC_TARGET_PE
1694 ST_FUNC int pe_load_file(struct TCCState *s1, const char *filename, int fd);
1695 ST_FUNC int pe_output_file(TCCState * s1, const char *filename);
1696 ST_FUNC int pe_putimport(TCCState *s1, int dllindex, const char *name, addr_t value);
1697 #if defined TCC_TARGET_I386 || defined TCC_TARGET_X86_64
1698 ST_FUNC SValue *pe_getimport(SValue *sv, SValue *v2);
1699 #endif
1700 #ifdef TCC_TARGET_X86_64
1701 ST_FUNC void pe_add_unwind_data(unsigned start, unsigned end, unsigned stack);
1702 #endif
1703 PUB_FUNC int tcc_get_dllexports(const char *filename, char **pp);
1704 /* symbol properties stored in Elf32_Sym->st_other */
1705 # define ST_PE_EXPORT 0x10
1706 # define ST_PE_IMPORT 0x20
1707 # define ST_PE_STDCALL 0x40
1708 #endif
1709 #define ST_ASM_SET 0x04
1711 /* ------------ tccrun.c ----------------- */
1712 #ifdef TCC_IS_NATIVE
1713 #ifdef CONFIG_TCC_STATIC
1714 #define RTLD_LAZY 0x001
1715 #define RTLD_NOW 0x002
1716 #define RTLD_GLOBAL 0x100
1717 #define RTLD_DEFAULT NULL
1718 /* dummy function for profiling */
1719 ST_FUNC void *dlopen(const char *filename, int flag);
1720 ST_FUNC void dlclose(void *p);
1721 ST_FUNC const char *dlerror(void);
1722 ST_FUNC void *dlsym(void *handle, const char *symbol);
1723 #endif
1724 ST_FUNC void tcc_run_free(TCCState *s1);
1725 #endif
1727 /* ------------ tcctools.c ----------------- */
1728 #if 0 /* included in tcc.c */
1729 ST_FUNC int tcc_tool_ar(TCCState *s, int argc, char **argv);
1730 #ifdef TCC_TARGET_PE
1731 ST_FUNC int tcc_tool_impdef(TCCState *s, int argc, char **argv);
1732 #endif
1733 ST_FUNC void tcc_tool_cross(TCCState *s, char **argv, int option);
1734 ST_FUNC void gen_makedeps(TCCState *s, const char *target, const char *filename);
1735 #endif
1737 /********************************************************/
1738 #undef ST_DATA
1739 #if ONE_SOURCE
1740 #define ST_DATA static
1741 #else
1742 #define ST_DATA
1743 #endif
1744 /********************************************************/
1746 #define text_section TCC_STATE_VAR(text_section)
1747 #define data_section TCC_STATE_VAR(data_section)
1748 #define bss_section TCC_STATE_VAR(bss_section)
1749 #define common_section TCC_STATE_VAR(common_section)
1750 #define cur_text_section TCC_STATE_VAR(cur_text_section)
1751 #define bounds_section TCC_STATE_VAR(bounds_section)
1752 #define lbounds_section TCC_STATE_VAR(lbounds_section)
1753 #define symtab_section TCC_STATE_VAR(symtab_section)
1754 #define stab_section TCC_STATE_VAR(stab_section)
1755 #define stabstr_section stab_section->link
1756 #define gnu_ext TCC_STATE_VAR(gnu_ext)
1757 #define tcc_error_noabort TCC_SET_STATE(_tcc_error_noabort)
1758 #define tcc_error TCC_SET_STATE(_tcc_error)
1759 #define tcc_warning TCC_SET_STATE(_tcc_warning)
1761 #define total_idents TCC_STATE_VAR(total_idents)
1762 #define total_lines TCC_STATE_VAR(total_lines)
1763 #define total_bytes TCC_STATE_VAR(total_bytes)
1765 PUB_FUNC void tcc_enter_state(TCCState *s1);
1767 /********************************************************/
1768 #endif /* _TCC_H */
1770 #undef TCC_STATE_VAR
1771 #undef TCC_SET_STATE
1773 #ifdef USING_GLOBALS
1774 # define TCC_STATE_VAR(sym) tcc_state->sym
1775 # define TCC_SET_STATE(fn) fn
1776 # undef USING_GLOBALS
1777 #else
1778 # define TCC_STATE_VAR(sym) s1->sym
1779 # define TCC_SET_STATE(fn) (tcc_enter_state(s1),fn)
1780 /* actually we could avoid the tcc_enter_state(s1) hack by using
1781 __VA_ARGS__ except that some compiler doesn't support it. */
1782 #endif