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