small scopes cleanup etc.
[tinycc.git] / tcc.h
blob8fb682b7d151f7d81347096f6cf1f5bf3041816d
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 #define _DARWIN_C_SOURCE
26 #include "config.h"
28 #include <stdarg.h>
29 #include <stdlib.h>
30 #include <stdio.h>
31 /* gnu headers use to #define __attribute__ to empty for non-gcc compilers */
32 #ifdef __TINYC__
33 # undef __attribute__
34 #endif
35 #include <string.h>
36 #include <errno.h>
37 #include <math.h>
38 #include <fcntl.h>
39 #include <setjmp.h>
40 #include <time.h>
42 #ifndef _WIN32
43 # include <unistd.h>
44 # include <sys/time.h>
45 # ifndef CONFIG_TCC_STATIC
46 # include <dlfcn.h>
47 # endif
48 /* XXX: need to define this to use them in non ISOC99 context */
49 extern float strtof (const char *__nptr, char **__endptr);
50 extern long double strtold (const char *__nptr, char **__endptr);
51 #endif
53 #ifdef _WIN32
54 # define WIN32_LEAN_AND_MEAN 1
55 # include <windows.h>
56 # include <io.h> /* open, close etc. */
57 # include <direct.h> /* getcwd */
58 # include <malloc.h> /* alloca */
59 # ifdef __GNUC__
60 # include <stdint.h>
61 # endif
62 # define inline __inline
63 # define snprintf _snprintf
64 # define vsnprintf _vsnprintf
65 # ifndef __GNUC__
66 # define strtold (long double)strtod
67 # define strtof (float)strtod
68 # define strtoll _strtoi64
69 # define strtoull _strtoui64
70 # endif
71 # ifdef LIBTCC_AS_DLL
72 # define LIBTCCAPI __declspec(dllexport)
73 # define PUB_FUNC LIBTCCAPI
74 # endif
75 # ifdef _MSC_VER
76 # pragma warning (disable : 4244) // conversion from 'uint64_t' to 'int', possible loss of data
77 # pragma warning (disable : 4267) // conversion from 'size_t' to 'int', possible loss of data
78 # pragma warning (disable : 4996) // The POSIX name for this item is deprecated. Instead, use the ISO C and C++ conformant name
79 # pragma warning (disable : 4018) // signed/unsigned mismatch
80 # pragma warning (disable : 4146) // unary minus operator applied to unsigned type, result still unsigned
81 # define ssize_t intptr_t
82 # ifdef _X86_
83 # define __i386__ 1
84 # endif
85 # ifdef _AMD64_
86 # define __x86_64__ 1
87 # endif
88 # endif
89 # ifndef va_copy
90 # define va_copy(a,b) a = b
91 # endif
92 # undef CONFIG_TCC_STATIC
93 #endif
95 #ifndef PAGESIZE
96 # ifdef _SC_PAGESIZE
97 # define PAGESIZE sysconf(_SC_PAGESIZE)
98 # else
99 # define PAGESIZE 4096
100 # endif
101 #endif
103 #ifndef O_BINARY
104 # define O_BINARY 0
105 #endif
107 #ifndef offsetof
108 #define offsetof(type, field) ((size_t) &((type *)0)->field)
109 #endif
111 #ifndef countof
112 #define countof(tab) (sizeof(tab) / sizeof((tab)[0]))
113 #endif
115 #ifdef _MSC_VER
116 # define NORETURN __declspec(noreturn)
117 # define ALIGNED(x) __declspec(align(x))
118 # define PRINTF_LIKE(x,y)
119 #else
120 # define NORETURN __attribute__((noreturn))
121 # define ALIGNED(x) __attribute__((aligned(x)))
122 # define PRINTF_LIKE(x,y) __attribute__ ((format (printf, (x), (y))))
123 #endif
125 #ifdef _WIN32
126 # define IS_DIRSEP(c) (c == '/' || c == '\\')
127 # define IS_ABSPATH(p) (IS_DIRSEP(p[0]) || (p[0] && p[1] == ':' && IS_DIRSEP(p[2])))
128 # define PATHCMP stricmp
129 # define PATHSEP ";"
130 #else
131 # define IS_DIRSEP(c) (c == '/')
132 # define IS_ABSPATH(p) IS_DIRSEP(p[0])
133 # define PATHCMP strcmp
134 # define PATHSEP ":"
135 #endif
137 /* -------------------------------------------- */
139 /* parser debug */
140 /* #define PARSE_DEBUG */
141 /* preprocessor debug */
142 /* #define PP_DEBUG */
143 /* include file debug */
144 /* #define INC_DEBUG */
145 /* memory leak debug (only for single threaded usage) */
146 /* #define MEM_DEBUG */
147 /* assembler debug */
148 /* #define ASM_DEBUG */
150 /* target selection */
151 /* #define TCC_TARGET_I386 *//* i386 code generator */
152 /* #define TCC_TARGET_X86_64 *//* x86-64 code generator */
153 /* #define TCC_TARGET_ARM *//* ARMv4 code generator */
154 /* #define TCC_TARGET_ARM64 *//* ARMv8 code generator */
155 /* #define TCC_TARGET_C67 *//* TMS320C67xx code generator */
156 /* #define TCC_TARGET_RISCV64 *//* risc-v code generator */
158 /* default target is I386 */
159 #if !defined(TCC_TARGET_I386) && !defined(TCC_TARGET_ARM) && \
160 !defined(TCC_TARGET_ARM64) && !defined(TCC_TARGET_C67) && \
161 !defined(TCC_TARGET_X86_64) && !defined(TCC_TARGET_RISCV64)
162 # if defined __x86_64__
163 # define TCC_TARGET_X86_64
164 # elif defined __arm__
165 # define TCC_TARGET_ARM
166 # define TCC_ARM_EABI
167 # define TCC_ARM_VFP
168 # define TCC_ARM_HARDFLOAT
169 # elif defined __aarch64__
170 # define TCC_TARGET_ARM64
171 # elif defined __riscv
172 # define TCC_TARGET_RISCV64
173 # else
174 # define TCC_TARGET_I386
175 # endif
176 # ifdef _WIN32
177 # define TCC_TARGET_PE 1
178 # endif
179 # ifdef __APPLE__
180 # define TCC_TARGET_MACHO 1
181 # endif
182 #endif
184 /* only native compiler supports -run */
185 #if defined _WIN32 == defined TCC_TARGET_PE \
186 && defined __APPLE__ == defined TCC_TARGET_MACHO
187 # if defined __i386__ && defined TCC_TARGET_I386
188 # define TCC_IS_NATIVE
189 # elif defined __x86_64__ && defined TCC_TARGET_X86_64
190 # define TCC_IS_NATIVE
191 # elif defined __arm__ && defined TCC_TARGET_ARM
192 # define TCC_IS_NATIVE
193 # elif defined __aarch64__ && defined TCC_TARGET_ARM64
194 # define TCC_IS_NATIVE
195 # elif defined __riscv && defined __LP64__ && defined TCC_TARGET_RISCV64
196 # define TCC_IS_NATIVE
197 # endif
198 #endif
200 #if defined CONFIG_TCC_BACKTRACE && CONFIG_TCC_BACKTRACE==0
201 # undef CONFIG_TCC_BACKTRACE
202 #else
203 # define CONFIG_TCC_BACKTRACE 1 /* enable builtin stack backtraces */
204 #endif
206 #if defined CONFIG_TCC_BCHECK && CONFIG_TCC_BCHECK==0
207 # undef CONFIG_TCC_BCHECK
208 #else
209 # define CONFIG_TCC_BCHECK 1 /* enable bound checking code */
210 #endif
212 #if defined CONFIG_NEW_MACHO && CONFIG_NEW_MACHO==0
213 # undef CONFIG_NEW_MACHO
214 #else
215 # define CONFIG_NEW_MACHO 1 /* enable new macho code */
216 #endif
218 #if defined TARGETOS_OpenBSD \
219 || defined TARGETOS_FreeBSD \
220 || defined TARGETOS_NetBSD \
221 || defined TARGETOS_FreeBSD_kernel
222 # define TARGETOS_BSD 1
223 #elif !(defined TCC_TARGET_PE || defined TCC_TARGET_MACHO)
224 # define TARGETOS_Linux 1
225 #endif
227 #if defined TCC_TARGET_PE || defined TCC_TARGET_MACHO
228 # define ELF_OBJ_ONLY /* create elf .o but native executables */
229 #endif
231 /* No ten-byte long doubles on window and macos except in
232 cross-compilers made by a mingw-GCC */
233 #if defined TCC_TARGET_PE \
234 || (defined TCC_TARGET_MACHO && defined TCC_TARGET_ARM64) \
235 || (defined _WIN32 && !defined __GNUC__)
236 # define TCC_USING_DOUBLE_FOR_LDOUBLE 1
237 #endif
239 #ifdef CONFIG_TCC_PIE
240 # define CONFIG_TCC_PIC 1
241 #endif
243 /* ------------ path configuration ------------ */
245 #ifndef CONFIG_SYSROOT
246 # define CONFIG_SYSROOT ""
247 #endif
248 #if !defined CONFIG_TCCDIR && !defined _WIN32
249 # define CONFIG_TCCDIR "/usr/local/lib/tcc"
250 #endif
251 #ifndef CONFIG_LDDIR
252 # define CONFIG_LDDIR "lib"
253 #endif
254 #ifdef CONFIG_TRIPLET
255 # define USE_TRIPLET(s) s "/" CONFIG_TRIPLET
256 # define ALSO_TRIPLET(s) USE_TRIPLET(s) ":" s
257 #else
258 # define USE_TRIPLET(s) s
259 # define ALSO_TRIPLET(s) s
260 #endif
262 /* path to find crt1.o, crti.o and crtn.o */
263 #ifndef CONFIG_TCC_CRTPREFIX
264 # define CONFIG_TCC_CRTPREFIX USE_TRIPLET(CONFIG_SYSROOT "/usr/" CONFIG_LDDIR)
265 #endif
267 #ifndef CONFIG_USR_INCLUDE
268 # define CONFIG_USR_INCLUDE "/usr/include"
269 #endif
271 /* Below: {B} is substituted by CONFIG_TCCDIR (rsp. -B option) */
273 /* system include paths */
274 #ifndef CONFIG_TCC_SYSINCLUDEPATHS
275 # if defined TCC_TARGET_PE || defined _WIN32
276 # define CONFIG_TCC_SYSINCLUDEPATHS "{B}/include"PATHSEP"{B}/include/winapi"
277 # else
278 # define CONFIG_TCC_SYSINCLUDEPATHS \
279 "{B}/include" \
280 ":" ALSO_TRIPLET(CONFIG_SYSROOT "/usr/local/include") \
281 ":" ALSO_TRIPLET(CONFIG_SYSROOT CONFIG_USR_INCLUDE)
282 # endif
283 #endif
285 /* library search paths */
286 #ifndef CONFIG_TCC_LIBPATHS
287 # ifdef TCC_TARGET_PE
288 # define CONFIG_TCC_LIBPATHS "{B}/lib"
289 # else
290 # define CONFIG_TCC_LIBPATHS \
291 "{B}" \
292 ":" ALSO_TRIPLET(CONFIG_SYSROOT "/usr/" CONFIG_LDDIR) \
293 ":" ALSO_TRIPLET(CONFIG_SYSROOT "/" CONFIG_LDDIR) \
294 ":" ALSO_TRIPLET(CONFIG_SYSROOT "/usr/local/" CONFIG_LDDIR)
295 # endif
296 #endif
298 /* name of ELF interpreter */
299 #ifndef CONFIG_TCC_ELFINTERP
300 # if TARGETOS_FreeBSD
301 # define CONFIG_TCC_ELFINTERP "/libexec/ld-elf.so.1"
302 # elif TARGETOS_FreeBSD_kernel
303 # if defined(TCC_TARGET_X86_64)
304 # define CONFIG_TCC_ELFINTERP "/lib/ld-kfreebsd-x86-64.so.1"
305 # else
306 # define CONFIG_TCC_ELFINTERP "/lib/ld.so.1"
307 # endif
308 # elif TARGETOS_DragonFly
309 # define CONFIG_TCC_ELFINTERP "/usr/libexec/ld-elf.so.2"
310 # elif TARGETOS_NetBSD
311 # define CONFIG_TCC_ELFINTERP "/usr/libexec/ld.elf_so"
312 # elif TARGETOS_OpenBSD
313 # define CONFIG_TCC_ELFINTERP "/usr/libexec/ld.so"
314 # elif defined __GNU__
315 # define CONFIG_TCC_ELFINTERP "/lib/ld.so"
316 # elif defined(TCC_TARGET_PE)
317 # define CONFIG_TCC_ELFINTERP "-"
318 # elif defined(TCC_UCLIBC)
319 # define CONFIG_TCC_ELFINTERP "/lib/ld-uClibc.so.0" /* is there a uClibc for x86_64 ? */
320 # elif defined TCC_TARGET_ARM64
321 # if defined(TCC_MUSL)
322 # define CONFIG_TCC_ELFINTERP "/lib/ld-musl-aarch64.so.1"
323 # else
324 # define CONFIG_TCC_ELFINTERP "/lib/ld-linux-aarch64.so.1"
325 # endif
326 # elif defined(TCC_TARGET_X86_64)
327 # if defined(TCC_MUSL)
328 # define CONFIG_TCC_ELFINTERP "/lib/ld-musl-x86_64.so.1"
329 # else
330 # define CONFIG_TCC_ELFINTERP "/lib64/ld-linux-x86-64.so.2"
331 # endif
332 # elif defined(TCC_TARGET_RISCV64)
333 # define CONFIG_TCC_ELFINTERP "/lib/ld-linux-riscv64-lp64d.so.1"
334 # elif !defined(TCC_ARM_EABI)
335 # if defined(TCC_MUSL)
336 # if defined(TCC_TARGET_I386)
337 # define CONFIG_TCC_ELFINTERP "/lib/ld-musl-i386.so.1"
338 # else
339 # define CONFIG_TCC_ELFINTERP "/lib/ld-musl-arm.so.1"
340 # endif
341 # else
342 # define CONFIG_TCC_ELFINTERP "/lib/ld-linux.so.2"
343 # endif
344 # endif
345 #endif
347 /* var elf_interp dans *-gen.c */
348 #ifdef CONFIG_TCC_ELFINTERP
349 # define DEFAULT_ELFINTERP(s) CONFIG_TCC_ELFINTERP
350 #else
351 # define DEFAULT_ELFINTERP(s) default_elfinterp(s)
352 #endif
354 /* (target specific) libtcc1.a */
355 #ifndef TCC_LIBTCC1
356 # define TCC_LIBTCC1 "libtcc1.a"
357 #endif
359 #ifndef CONFIG_TCC_CROSSPREFIX
360 # define CONFIG_TCC_CROSSPREFIX ""
361 #endif
363 /* library to use with CONFIG_USE_LIBGCC instead of libtcc1.a */
364 #if defined CONFIG_USE_LIBGCC && !defined TCC_LIBGCC
365 #define TCC_LIBGCC USE_TRIPLET(CONFIG_SYSROOT "/" CONFIG_LDDIR) "/libgcc_s.so.1"
366 #endif
368 /* -------------------------------------------- */
370 #include "libtcc.h"
371 #include "elf.h"
372 #include "stab.h"
373 #include "dwarf.h"
375 /* -------------------------------------------- */
377 #ifndef PUB_FUNC /* functions used by tcc.c but not in libtcc.h */
378 # define PUB_FUNC
379 #endif
381 #ifndef ONE_SOURCE
382 # define ONE_SOURCE 1
383 #endif
385 /* support using libtcc from threads */
386 #ifndef CONFIG_TCC_SEMLOCK
387 # define CONFIG_TCC_SEMLOCK 1
388 #endif
390 #if ONE_SOURCE
391 #define ST_INLN static inline
392 #define ST_FUNC static
393 #define ST_DATA static
394 #else
395 #define ST_INLN
396 #define ST_FUNC
397 #define ST_DATA extern
398 #endif
400 #ifdef TCC_PROFILE /* profile all functions */
401 # define static
402 #endif
404 /* -------------------------------------------- */
405 /* include the target specific definitions */
407 #define TARGET_DEFS_ONLY
408 #ifdef TCC_TARGET_I386
409 # include "i386-gen.c"
410 # include "i386-link.c"
411 #elif defined TCC_TARGET_X86_64
412 # include "x86_64-gen.c"
413 # include "x86_64-link.c"
414 #elif defined TCC_TARGET_ARM
415 # include "arm-gen.c"
416 # include "arm-link.c"
417 # include "arm-asm.c"
418 #elif defined TCC_TARGET_ARM64
419 # include "arm64-gen.c"
420 # include "arm64-link.c"
421 # include "arm-asm.c"
422 #elif defined TCC_TARGET_C67
423 # define TCC_TARGET_COFF
424 # include "coff.h"
425 # include "c67-gen.c"
426 # include "c67-link.c"
427 #elif defined(TCC_TARGET_RISCV64)
428 # include "riscv64-gen.c"
429 # include "riscv64-link.c"
430 # include "riscv64-asm.c"
431 #else
432 #error unknown target
433 #endif
434 #undef TARGET_DEFS_ONLY
436 /* -------------------------------------------- */
438 #if PTR_SIZE == 8
439 # define ELFCLASSW ELFCLASS64
440 # define ElfW(type) Elf##64##_##type
441 # define ELFW(type) ELF##64##_##type
442 # define ElfW_Rel ElfW(Rela)
443 # define SHT_RELX SHT_RELA
444 # define REL_SECTION_FMT ".rela%s"
445 #else
446 # define ELFCLASSW ELFCLASS32
447 # define ElfW(type) Elf##32##_##type
448 # define ELFW(type) ELF##32##_##type
449 # define ElfW_Rel ElfW(Rel)
450 # define SHT_RELX SHT_REL
451 # define REL_SECTION_FMT ".rel%s"
452 #endif
453 /* target address type */
454 #define addr_t ElfW(Addr)
455 #define ElfSym ElfW(Sym)
457 #if PTR_SIZE == 8 && !defined TCC_TARGET_PE
458 # define LONG_SIZE 8
459 #else
460 # define LONG_SIZE 4
461 #endif
463 /* -------------------------------------------- */
465 #define INCLUDE_STACK_SIZE 32
466 #define IFDEF_STACK_SIZE 64
467 #define VSTACK_SIZE 512
468 #define STRING_MAX_SIZE 1024
469 #define TOKSTR_MAX_SIZE 256
470 #define PACK_STACK_SIZE 8
472 #define TOK_HASH_SIZE 16384 /* must be a power of two */
473 #define TOK_ALLOC_INCR 512 /* must be a power of two */
474 #define TOK_MAX_SIZE 4 /* token max size in int unit when stored in string */
476 /* token symbol management */
477 typedef struct TokenSym {
478 struct TokenSym *hash_next;
479 struct Sym *sym_define; /* direct pointer to define */
480 struct Sym *sym_label; /* direct pointer to label */
481 struct Sym *sym_struct; /* direct pointer to structure */
482 struct Sym *sym_identifier; /* direct pointer to identifier */
483 int tok; /* token number */
484 int len;
485 char str[1];
486 } TokenSym;
488 #ifdef TCC_TARGET_PE
489 typedef unsigned short nwchar_t;
490 #else
491 typedef int nwchar_t;
492 #endif
494 typedef struct CString {
495 int size; /* size in bytes */
496 int size_allocated;
497 void *data; /* either 'char *' or 'nwchar_t *' */
498 } CString;
500 /* type definition */
501 typedef struct CType {
502 int t;
503 struct Sym *ref;
504 } CType;
506 /* constant value */
507 typedef union CValue {
508 long double ld;
509 double d;
510 float f;
511 uint64_t i;
512 struct {
513 const void *data;
514 int size;
515 } str;
516 int tab[LDOUBLE_SIZE/4];
517 } CValue;
519 /* value on stack */
520 typedef struct SValue {
521 CType type; /* type */
522 unsigned short r; /* register + flags */
523 unsigned short r2; /* second register, used for 'long long'
524 type. If not used, set to VT_CONST */
525 union {
526 struct { int jtrue, jfalse; }; /* forward jmps */
527 CValue c; /* constant, if VT_CONST */
529 union {
530 struct { unsigned short cmp_op, cmp_r; }; /* VT_CMP operation */
531 struct Sym *sym; /* symbol, if (VT_SYM | VT_CONST), or if */
532 }; /* result of unary() for an identifier. */
534 } SValue;
536 /* symbol attributes */
537 struct SymAttr {
538 unsigned short
539 aligned : 5, /* alignment as log2+1 (0 == unspecified) */
540 packed : 1,
541 weak : 1,
542 visibility : 2,
543 dllexport : 1,
544 nodecorate : 1,
545 dllimport : 1,
546 addrtaken : 1,
547 nodebug : 1,
548 xxxx : 2; /* not used */
551 /* function attributes or temporary attributes for parsing */
552 struct FuncAttr {
553 unsigned
554 func_call : 3, /* calling convention (0..5), see below */
555 func_type : 2, /* FUNC_OLD/NEW/ELLIPSIS */
556 func_noreturn : 1, /* attribute((noreturn)) */
557 func_ctor : 1, /* attribute((constructor)) */
558 func_dtor : 1, /* attribute((destructor)) */
559 func_args : 8, /* PE __stdcall args */
560 func_alwinl : 1, /* always_inline */
561 xxxx : 15;
564 /* symbol management */
565 typedef struct Sym {
566 int v; /* symbol token */
567 unsigned short r; /* associated register or VT_CONST/VT_LOCAL and LVAL type */
568 struct SymAttr a; /* symbol attributes */
569 union {
570 struct {
571 int c; /* associated number or Elf symbol index */
572 union {
573 int sym_scope; /* scope level for locals */
574 int jnext; /* next jump label */
575 struct FuncAttr f; /* function attributes */
576 int auxtype; /* bitfield access type */
579 long long enum_val; /* enum constant if IS_ENUM_VAL */
580 int *d; /* define token stream */
581 struct Sym *ncl; /* next cleanup */
583 CType type; /* associated type */
584 union {
585 int *vla_array_str; /* vla array code */
586 struct Sym *next; /* next related symbol (for fields and anoms) */
587 struct Sym *cleanupstate; /* in defined labels */
588 int asm_label; /* associated asm label */
590 struct Sym *prev; /* prev symbol in stack */
591 struct Sym *prev_tok; /* previous symbol for this token */
592 } Sym;
594 /* section definition */
595 typedef struct Section {
596 unsigned long data_offset; /* current data offset */
597 unsigned char *data; /* section data */
598 unsigned long data_allocated; /* used for realloc() handling */
599 TCCState *s1;
600 int sh_name; /* elf section name (only used during output) */
601 int sh_num; /* elf section number */
602 int sh_type; /* elf section type */
603 int sh_flags; /* elf section flags */
604 int sh_info; /* elf section info */
605 int sh_addralign; /* elf section alignment */
606 int sh_entsize; /* elf entry size */
607 unsigned long sh_size; /* section size (only used during output) */
608 addr_t sh_addr; /* address at which the section is relocated */
609 unsigned long sh_offset; /* file offset */
610 int nb_hashed_syms; /* used to resize the hash table */
611 struct Section *link; /* link to another section */
612 struct Section *reloc; /* corresponding section for relocation, if any */
613 struct Section *hash; /* hash table for symbols */
614 struct Section *prev; /* previous section on section stack */
615 char name[1]; /* section name */
616 } Section;
618 typedef struct DLLReference {
619 int level;
620 void *handle;
621 unsigned char found, index;
622 char name[1];
623 } DLLReference;
625 /* -------------------------------------------------- */
627 #define SYM_STRUCT 0x40000000 /* struct/union/enum symbol space */
628 #define SYM_FIELD 0x20000000 /* struct/union field symbol space */
629 #define SYM_FIRST_ANOM 0x10000000 /* first anonymous sym */
631 /* stored in 'Sym->f.func_type' field */
632 #define FUNC_NEW 1 /* ansi function prototype */
633 #define FUNC_OLD 2 /* old function prototype */
634 #define FUNC_ELLIPSIS 3 /* ansi function prototype with ... */
636 /* stored in 'Sym->f.func_call' field */
637 #define FUNC_CDECL 0 /* standard c call */
638 #define FUNC_STDCALL 1 /* pascal c call */
639 #define FUNC_FASTCALL1 2 /* first param in %eax */
640 #define FUNC_FASTCALL2 3 /* first parameters in %eax, %edx */
641 #define FUNC_FASTCALL3 4 /* first parameter in %eax, %edx, %ecx */
642 #define FUNC_FASTCALLW 5 /* first parameter in %ecx, %edx */
644 /* field 'Sym.t' for macros */
645 #define MACRO_OBJ 0 /* object like macro */
646 #define MACRO_FUNC 1 /* function like macro */
648 /* field 'Sym.r' for C labels */
649 #define LABEL_DEFINED 0 /* label is defined */
650 #define LABEL_FORWARD 1 /* label is forward defined */
651 #define LABEL_DECLARED 2 /* label is declared but never used */
652 #define LABEL_GONE 3 /* label isn't in scope, but not yet popped
653 from local_label_stack (stmt exprs) */
655 /* type_decl() types */
656 #define TYPE_ABSTRACT 1 /* type without variable */
657 #define TYPE_DIRECT 2 /* type with variable */
658 #define TYPE_PARAM 4 /* type declares function parameter */
659 #define TYPE_NEST 8 /* nested call to post_type */
661 #define IO_BUF_SIZE 8192
663 typedef struct BufferedFile {
664 uint8_t *buf_ptr;
665 uint8_t *buf_end;
666 int fd;
667 struct BufferedFile *prev;
668 int line_num; /* current line number - here to simplify code */
669 int line_ref; /* tcc -E: last printed line */
670 int ifndef_macro; /* #ifndef macro / #endif search */
671 int ifndef_macro_saved; /* saved ifndef_macro */
672 int *ifdef_stack_ptr; /* ifdef_stack value at the start of the file */
673 int include_next_index; /* next search path */
674 char filename[1024]; /* filename */
675 char *true_filename; /* filename not modified by # line directive */
676 unsigned char unget[4];
677 unsigned char buffer[1]; /* extra size for CH_EOB char */
678 } BufferedFile;
680 #define CH_EOB '\\' /* end of buffer or '\0' char in file */
681 #define CH_EOF (-1) /* end of file */
683 /* used to record tokens */
684 typedef struct TokenString {
685 int *str;
686 int len;
687 int lastlen;
688 int allocated_len;
689 int last_line_num;
690 int save_line_num;
691 /* used to chain token-strings with begin/end_macro() */
692 struct TokenString *prev;
693 const int *prev_ptr;
694 char alloc;
695 } TokenString;
697 /* GNUC attribute definition */
698 typedef struct AttributeDef {
699 struct SymAttr a;
700 struct FuncAttr f;
701 struct Section *section;
702 Sym *cleanup_func;
703 int alias_target; /* token */
704 int asm_label; /* associated asm label */
705 char attr_mode; /* __attribute__((__mode__(...))) */
706 } AttributeDef;
708 /* inline functions */
709 typedef struct InlineFunc {
710 TokenString *func_str;
711 Sym *sym;
712 char filename[1];
713 } InlineFunc;
715 /* include file cache, used to find files faster and also to eliminate
716 inclusion if the include file is protected by #ifndef ... #endif */
717 typedef struct CachedInclude {
718 int ifndef_macro;
719 int once;
720 int hash_next; /* -1 if none */
721 char filename[1]; /* path specified in #include */
722 } CachedInclude;
724 #define CACHED_INCLUDES_HASH_SIZE 32
726 #ifdef CONFIG_TCC_ASM
727 typedef struct ExprValue {
728 uint64_t v;
729 Sym *sym;
730 int pcrel;
731 } ExprValue;
733 #define MAX_ASM_OPERANDS 30
734 typedef struct ASMOperand {
735 int id; /* GCC 3 optional identifier (0 if number only supported) */
736 char *constraint;
737 char asm_str[16]; /* computed asm string for operand */
738 SValue *vt; /* C value of the expression */
739 int ref_index; /* if >= 0, gives reference to a output constraint */
740 int input_index; /* if >= 0, gives reference to an input constraint */
741 int priority; /* priority, used to assign registers */
742 int reg; /* if >= 0, register number used for this operand */
743 int is_llong; /* true if double register value */
744 int is_memory; /* true if memory operand */
745 int is_rw; /* for '+' modifier */
746 int is_label; /* for asm goto */
747 } ASMOperand;
748 #endif
750 /* extra symbol attributes (not in symbol table) */
751 struct sym_attr {
752 unsigned got_offset;
753 unsigned plt_offset;
754 int plt_sym;
755 int dyn_index;
756 #ifdef TCC_TARGET_ARM
757 unsigned char plt_thumb_stub:1;
758 #endif
761 struct TCCState {
762 unsigned char verbose; /* if true, display some information during compilation */
763 unsigned char nostdinc; /* if true, no standard headers are added */
764 unsigned char nostdlib; /* if true, no standard libraries are added */
765 unsigned char nocommon; /* if true, do not use common symbols for .bss data */
766 unsigned char static_link; /* if true, static linking is performed */
767 unsigned char rdynamic; /* if true, all symbols are exported */
768 unsigned char symbolic; /* if true, resolve symbols in the current module first */
769 unsigned char filetype; /* file type for compilation (NONE,C,ASM) */
770 unsigned char optimize; /* only to #define __OPTIMIZE__ */
771 unsigned char option_pthread; /* -pthread option */
772 unsigned char enable_new_dtags; /* -Wl,--enable-new-dtags */
773 unsigned int cversion; /* supported C ISO version, 199901 (the default), 201112, ... */
775 /* C language options */
776 unsigned char char_is_unsigned;
777 unsigned char leading_underscore;
778 unsigned char ms_extensions; /* allow nested named struct w/o identifier behave like unnamed */
779 unsigned char dollars_in_identifiers; /* allows '$' char in identifiers */
780 unsigned char ms_bitfields; /* if true, emulate MS algorithm for aligning bitfields */
782 /* warning switches */
783 unsigned char warn_none;
784 unsigned char warn_all;
785 unsigned char warn_error;
786 unsigned char warn_write_strings;
787 unsigned char warn_unsupported;
788 unsigned char warn_implicit_function_declaration;
789 unsigned char warn_discarded_qualifiers;
790 #define WARN_ON 1 /* warning is on (-Woption) */
791 unsigned char warn_num; /* temp var for tcc_warning_c() */
793 unsigned char option_r; /* option -r */
794 unsigned char do_bench; /* option -bench */
795 unsigned char just_deps; /* option -M */
796 unsigned char gen_deps; /* option -MD */
797 unsigned char include_sys_deps; /* option -MD */
799 /* compile with debug symbol (and use them if error during execution) */
800 unsigned char do_debug;
801 unsigned char dwarf;
802 unsigned char do_backtrace;
803 #ifdef CONFIG_TCC_BCHECK
804 /* compile with built-in memory and bounds checker */
805 unsigned char do_bounds_check;
806 #endif
807 unsigned char test_coverage; /* generate test coverage code */
809 /* use GNU C extensions */
810 unsigned char gnu_ext;
811 /* use TinyCC extensions */
812 unsigned char tcc_ext;
814 unsigned char dflag; /* -dX value */
815 unsigned char Pflag; /* -P switch (LINE_MACRO_OUTPUT_FORMAT) */
817 #ifdef TCC_TARGET_X86_64
818 unsigned char nosse; /* For -mno-sse support. */
819 #endif
820 #ifdef TCC_TARGET_ARM
821 unsigned char float_abi; /* float ABI of the generated code*/
822 #endif
824 unsigned char has_text_addr;
825 addr_t text_addr; /* address of text section */
826 unsigned section_align; /* section alignment */
827 #ifdef TCC_TARGET_I386
828 int seg_size; /* 32. Can be 16 with i386 assembler (.code16) */
829 #endif
831 char *tcc_lib_path; /* CONFIG_TCCDIR or -B option */
832 char *soname; /* as specified on the command line (-soname) */
833 char *rpath; /* as specified on the command line (-Wl,-rpath=) */
834 char *elf_entryname; /* "_start" unless set */
835 char *init_symbol; /* symbols to call at load-time (not used currently) */
836 char *fini_symbol; /* symbols to call at unload-time (not used currently) */
837 char *mapfile; /* create a mapfile (not used currently) */
839 /* output type, see TCC_OUTPUT_XXX */
840 int output_type;
841 /* output format, see TCC_OUTPUT_FORMAT_xxx */
842 int output_format;
843 /* nth test to run with -dt -run */
844 int run_test;
846 /* array of all loaded dlls (including those referenced by loaded dlls) */
847 DLLReference **loaded_dlls;
848 int nb_loaded_dlls;
850 /* include paths */
851 char **include_paths;
852 int nb_include_paths;
854 char **sysinclude_paths;
855 int nb_sysinclude_paths;
857 /* library paths */
858 char **library_paths;
859 int nb_library_paths;
861 /* crt?.o object path */
862 char **crt_paths;
863 int nb_crt_paths;
865 /* -D / -U options */
866 CString cmdline_defs;
867 /* -include options */
868 CString cmdline_incl;
870 /* error handling */
871 void *error_opaque;
872 void (*error_func)(void *opaque, const char *msg);
873 int error_set_jmp_enabled;
874 jmp_buf error_jmp_buf;
875 int nb_errors;
877 /* output file for preprocessing (-E) */
878 FILE *ppfp;
880 /* for -MD/-MF: collected dependencies for this compilation */
881 char **target_deps;
882 int nb_target_deps;
884 /* compilation */
885 BufferedFile *include_stack[INCLUDE_STACK_SIZE];
886 BufferedFile **include_stack_ptr;
888 int ifdef_stack[IFDEF_STACK_SIZE];
889 int *ifdef_stack_ptr;
891 /* included files enclosed with #ifndef MACRO */
892 int cached_includes_hash[CACHED_INCLUDES_HASH_SIZE];
893 CachedInclude **cached_includes;
894 int nb_cached_includes;
896 /* #pragma pack stack */
897 int pack_stack[PACK_STACK_SIZE];
898 int *pack_stack_ptr;
899 char **pragma_libs;
900 int nb_pragma_libs;
902 /* inline functions are stored as token lists and compiled last
903 only if referenced */
904 struct InlineFunc **inline_fns;
905 int nb_inline_fns;
907 /* sections */
908 Section **sections;
909 int nb_sections; /* number of sections, including first dummy section */
911 Section **priv_sections;
912 int nb_priv_sections; /* number of private sections */
914 /* predefined sections */
915 Section *text_section, *data_section, *rodata_section, *bss_section;
916 Section *common_section;
917 Section *cur_text_section; /* current section where function code is generated */
918 #ifdef CONFIG_TCC_BCHECK
919 /* bound check related sections */
920 Section *bounds_section; /* contains global data bound description */
921 Section *lbounds_section; /* contains local data bound description */
922 #endif
923 /* symbol section */
924 Section *symtab_section;
925 /* temporary dynamic symbol sections (for dll loading) */
926 Section *dynsymtab_section;
927 /* exported dynamic symbol section */
928 Section *dynsym;
929 /* copy of the global symtab_section variable */
930 Section *symtab;
931 /* got & plt handling */
932 Section *got, *plt;
933 /* debug sections */
934 Section *stab_section;
935 Section *dwarf_info_section;
936 Section *dwarf_abbrev_section;
937 Section *dwarf_line_section;
938 Section *dwarf_aranges_section;
939 Section *dwarf_str_section;
940 Section *dwarf_line_str_section;
941 int dwlo, dwhi; /* dwarf section range */
942 /* test coverage */
943 Section *tcov_section;
944 /* debug state */
945 struct _tccdbg *dState;
947 /* Is there a new undefined sym since last new_undef_sym() */
948 int new_undef_sym;
949 /* extra attributes (eg. GOT/PLT value) for symtab symbols */
950 struct sym_attr *sym_attrs;
951 int nb_sym_attrs;
952 /* ptr to next reloc entry reused */
953 ElfW_Rel *qrel;
954 #define qrel s1->qrel
956 #ifdef TCC_TARGET_RISCV64
957 struct pcrel_hi { addr_t addr, val; } last_hi;
958 #define last_hi s1->last_hi
959 #endif
961 #ifdef TCC_TARGET_PE
962 /* PE info */
963 int pe_subsystem;
964 unsigned pe_characteristics;
965 unsigned pe_file_align;
966 unsigned pe_stack_size;
967 addr_t pe_imagebase;
968 # ifdef TCC_TARGET_X86_64
969 Section *uw_pdata;
970 int uw_sym;
971 unsigned uw_offs;
972 # endif
973 #endif
975 #if defined TCC_TARGET_MACHO
976 char *install_name;
977 uint32_t compatibility_version;
978 uint32_t current_version;
979 #endif
981 #ifndef ELF_OBJ_ONLY
982 int nb_sym_versions;
983 struct sym_version *sym_versions;
984 int nb_sym_to_version;
985 int *sym_to_version;
986 int dt_verneednum;
987 Section *versym_section;
988 Section *verneed_section;
989 #endif
991 #ifdef TCC_IS_NATIVE
992 const char *runtime_main;
993 void **runtime_mem;
994 int nb_runtime_mem;
995 #endif
997 #ifdef CONFIG_TCC_BACKTRACE
998 int rt_num_callers;
999 #endif
1001 /* benchmark info */
1002 int total_idents;
1003 int total_lines;
1004 int total_bytes;
1005 unsigned int total_output[4];
1007 /* option -dnum (for general development purposes) */
1008 int g_debug;
1010 /* used by tcc_load_ldscript */
1011 int fd, cc;
1013 /* for warnings/errors for object files */
1014 const char *current_filename;
1016 /* used by main and tcc_parse_args only */
1017 struct filespec **files; /* files seen on command line */
1018 int nb_files; /* number thereof */
1019 int nb_libraries; /* number of libs thereof */
1020 char *outfile; /* output filename */
1021 char *deps_outfile; /* option -MF */
1022 int argc;
1023 char **argv;
1026 struct filespec {
1027 char type;
1028 char name[1];
1031 /* The current value can be: */
1032 #define VT_VALMASK 0x003f /* mask for value location, register or: */
1033 #define VT_CONST 0x0030 /* constant in vc (must be first non register value) */
1034 #define VT_LLOCAL 0x0031 /* lvalue, offset on stack */
1035 #define VT_LOCAL 0x0032 /* offset on stack */
1036 #define VT_CMP 0x0033 /* the value is stored in processor flags (in vc) */
1037 #define VT_JMP 0x0034 /* value is the consequence of jmp true (even) */
1038 #define VT_JMPI 0x0035 /* value is the consequence of jmp false (odd) */
1039 #define VT_LVAL 0x0100 /* var is an lvalue */
1040 #define VT_SYM 0x0200 /* a symbol value is added */
1041 #define VT_MUSTCAST 0x0C00 /* value must be casted to be correct (used for
1042 char/short stored in integer registers) */
1043 #define VT_NONCONST 0x1000 /* VT_CONST, but not an (C standard) integer
1044 constant expression */
1045 #define VT_MUSTBOUND 0x4000 /* bound checking must be done before
1046 dereferencing value */
1047 #define VT_BOUNDED 0x8000 /* value is bounded. The address of the
1048 bounding function call point is in vc */
1049 /* types */
1050 #define VT_BTYPE 0x000f /* mask for basic type */
1051 #define VT_VOID 0 /* void type */
1052 #define VT_BYTE 1 /* signed byte type */
1053 #define VT_SHORT 2 /* short type */
1054 #define VT_INT 3 /* integer type */
1055 #define VT_LLONG 4 /* 64 bit integer */
1056 #define VT_PTR 5 /* pointer */
1057 #define VT_FUNC 6 /* function type */
1058 #define VT_STRUCT 7 /* struct/union definition */
1059 #define VT_FLOAT 8 /* IEEE float */
1060 #define VT_DOUBLE 9 /* IEEE double */
1061 #define VT_LDOUBLE 10 /* IEEE long double */
1062 #define VT_BOOL 11 /* ISOC99 boolean type */
1063 #define VT_QLONG 13 /* 128-bit integer. Only used for x86-64 ABI */
1064 #define VT_QFLOAT 14 /* 128-bit float. Only used for x86-64 ABI */
1066 #define VT_UNSIGNED 0x0010 /* unsigned type */
1067 #define VT_DEFSIGN 0x0020 /* explicitly signed or unsigned */
1068 #define VT_ARRAY 0x0040 /* array type (also has VT_PTR) */
1069 #define VT_BITFIELD 0x0080 /* bitfield modifier */
1070 #define VT_CONSTANT 0x0100 /* const modifier */
1071 #define VT_VOLATILE 0x0200 /* volatile modifier */
1072 #define VT_VLA 0x0400 /* VLA type (also has VT_PTR and VT_ARRAY) */
1073 #define VT_LONG 0x0800 /* long type (also has VT_INT rsp. VT_LLONG) */
1075 /* storage */
1076 #define VT_EXTERN 0x00001000 /* extern definition */
1077 #define VT_STATIC 0x00002000 /* static variable */
1078 #define VT_TYPEDEF 0x00004000 /* typedef definition */
1079 #define VT_INLINE 0x00008000 /* inline definition */
1080 /* currently unused: 0x000[1248]0000 */
1082 #define VT_STRUCT_SHIFT 20 /* shift for bitfield shift values (32 - 2*6) */
1083 #define VT_STRUCT_MASK (((1U << (6+6)) - 1) << VT_STRUCT_SHIFT | VT_BITFIELD)
1084 #define BIT_POS(t) (((t) >> VT_STRUCT_SHIFT) & 0x3f)
1085 #define BIT_SIZE(t) (((t) >> (VT_STRUCT_SHIFT + 6)) & 0x3f)
1087 #define VT_UNION (1 << VT_STRUCT_SHIFT | VT_STRUCT)
1088 #define VT_ENUM (2 << VT_STRUCT_SHIFT) /* integral type is an enum really */
1089 #define VT_ENUM_VAL (3 << VT_STRUCT_SHIFT) /* integral type is an enum constant really */
1091 #define IS_ENUM(t) ((t & VT_STRUCT_MASK) == VT_ENUM)
1092 #define IS_ENUM_VAL(t) ((t & VT_STRUCT_MASK) == VT_ENUM_VAL)
1093 #define IS_UNION(t) ((t & (VT_STRUCT_MASK|VT_BTYPE)) == VT_UNION)
1095 #define VT_ATOMIC VT_VOLATILE
1097 /* type mask (except storage) */
1098 #define VT_STORAGE (VT_EXTERN | VT_STATIC | VT_TYPEDEF | VT_INLINE)
1099 #define VT_TYPE (~(VT_STORAGE|VT_STRUCT_MASK))
1101 /* symbol was created by tccasm.c first */
1102 #define VT_ASM (VT_VOID | 1 << VT_STRUCT_SHIFT)
1103 #define VT_ASM_FUNC (VT_ASM | 2 << VT_STRUCT_SHIFT)
1104 #define IS_ASM_SYM(sym) (((sym)->type.t & (VT_BTYPE | VT_ASM)) == VT_ASM)
1106 /* general: set/get the pseudo-bitfield value for bit-mask M */
1107 #define BFVAL(M,N) ((unsigned)((M) & ~((M) << 1)) * (N))
1108 #define BFGET(X,M) (((X) & (M)) / BFVAL(M,1))
1109 #define BFSET(X,M,N) ((X) = ((X) & ~(M)) | BFVAL(M,N))
1111 /* token values */
1113 /* conditional ops */
1114 #define TOK_LAND 0x90
1115 #define TOK_LOR 0x91
1116 /* warning: the following compare tokens depend on i386 asm code */
1117 #define TOK_ULT 0x92
1118 #define TOK_UGE 0x93
1119 #define TOK_EQ 0x94
1120 #define TOK_NE 0x95
1121 #define TOK_ULE 0x96
1122 #define TOK_UGT 0x97
1123 #define TOK_Nset 0x98
1124 #define TOK_Nclear 0x99
1125 #define TOK_LT 0x9c
1126 #define TOK_GE 0x9d
1127 #define TOK_LE 0x9e
1128 #define TOK_GT 0x9f
1130 #define TOK_ISCOND(t) (t >= TOK_LAND && t <= TOK_GT)
1132 #define TOK_DEC 0x80 /* -- */
1133 #define TOK_MID 0x81 /* inc/dec, to void constant */
1134 #define TOK_INC 0x82 /* ++ */
1135 #define TOK_UDIV 0x83 /* unsigned division */
1136 #define TOK_UMOD 0x84 /* unsigned modulo */
1137 #define TOK_PDIV 0x85 /* fast division with undefined rounding for pointers */
1138 #define TOK_UMULL 0x86 /* unsigned 32x32 -> 64 mul */
1139 #define TOK_ADDC1 0x87 /* add with carry generation */
1140 #define TOK_ADDC2 0x88 /* add with carry use */
1141 #define TOK_SUBC1 0x89 /* add with carry generation */
1142 #define TOK_SUBC2 0x8a /* add with carry use */
1143 #define TOK_SHL '<' /* shift left */
1144 #define TOK_SAR '>' /* signed shift right */
1145 #define TOK_SHR 0x8b /* unsigned shift right */
1146 #define TOK_NEG TOK_MID /* unary minus operation (for floats) */
1148 #define TOK_ARROW 0xa0 /* -> */
1149 #define TOK_DOTS 0xa1 /* three dots */
1150 #define TOK_TWODOTS 0xa2 /* C++ token ? */
1151 #define TOK_TWOSHARPS 0xa3 /* ## preprocessing token */
1152 #define TOK_PLCHLDR 0xa4 /* placeholder token as defined in C99 */
1153 #define TOK_NOSUBST 0xa5 /* means following token has already been pp'd */
1154 #define TOK_PPJOIN 0xa6 /* A '##' in the right position to mean pasting */
1156 /* assignment operators */
1157 #define TOK_A_ADD 0xb0
1158 #define TOK_A_SUB 0xb1
1159 #define TOK_A_MUL 0xb2
1160 #define TOK_A_DIV 0xb3
1161 #define TOK_A_MOD 0xb4
1162 #define TOK_A_AND 0xb5
1163 #define TOK_A_OR 0xb6
1164 #define TOK_A_XOR 0xb7
1165 #define TOK_A_SHL 0xb8
1166 #define TOK_A_SAR 0xb9
1168 #define TOK_ASSIGN(t) (t >= TOK_A_ADD && t <= TOK_A_SAR)
1169 #define TOK_ASSIGN_OP(t) ("+-*/%&|^<>"[t - TOK_A_ADD])
1171 /* tokens that carry values (in additional token string space / tokc) --> */
1172 #define TOK_CCHAR 0xc0 /* char constant in tokc */
1173 #define TOK_LCHAR 0xc1
1174 #define TOK_CINT 0xc2 /* number in tokc */
1175 #define TOK_CUINT 0xc3 /* unsigned int constant */
1176 #define TOK_CLLONG 0xc4 /* long long constant */
1177 #define TOK_CULLONG 0xc5 /* unsigned long long constant */
1178 #define TOK_CLONG 0xc6 /* long constant */
1179 #define TOK_CULONG 0xc7 /* unsigned long constant */
1180 #define TOK_STR 0xc8 /* pointer to string in tokc */
1181 #define TOK_LSTR 0xc9
1182 #define TOK_CFLOAT 0xca /* float constant */
1183 #define TOK_CDOUBLE 0xcb /* double constant */
1184 #define TOK_CLDOUBLE 0xcc /* long double constant */
1185 #define TOK_PPNUM 0xcd /* preprocessor number */
1186 #define TOK_PPSTR 0xce /* preprocessor string */
1187 #define TOK_LINENUM 0xcf /* line number info */
1189 #define TOK_HAS_VALUE(t) (t >= TOK_CCHAR && t <= TOK_LINENUM)
1191 #define TOK_EOF (-1) /* end of file */
1192 #define TOK_LINEFEED 10 /* line feed */
1194 /* all identifiers and strings have token above that */
1195 #define TOK_IDENT 256
1197 enum tcc_token {
1198 TOK_LAST = TOK_IDENT - 1
1199 #define DEF(id, str) ,id
1200 #include "tcctok.h"
1201 #undef DEF
1204 /* keywords: tok >= TOK_IDENT && tok < TOK_UIDENT */
1205 #define TOK_UIDENT TOK_DEFINE
1207 /* ------------ libtcc.c ------------ */
1209 ST_DATA struct TCCState *tcc_state;
1211 /* public functions currently used by the tcc main function */
1212 ST_FUNC char *pstrcpy(char *buf, size_t buf_size, const char *s);
1213 ST_FUNC char *pstrcat(char *buf, size_t buf_size, const char *s);
1214 ST_FUNC char *pstrncpy(char *out, const char *in, size_t num);
1215 PUB_FUNC char *tcc_basename(const char *name);
1216 PUB_FUNC char *tcc_fileextension (const char *name);
1218 #ifndef MEM_DEBUG
1219 PUB_FUNC void tcc_free(void *ptr);
1220 PUB_FUNC void *tcc_malloc(unsigned long size);
1221 PUB_FUNC void *tcc_mallocz(unsigned long size);
1222 PUB_FUNC void *tcc_realloc(void *ptr, unsigned long size);
1223 PUB_FUNC char *tcc_strdup(const char *str);
1224 #else
1225 #define tcc_free(ptr) tcc_free_debug(ptr)
1226 #define tcc_malloc(size) tcc_malloc_debug(size, __FILE__, __LINE__)
1227 #define tcc_mallocz(size) tcc_mallocz_debug(size, __FILE__, __LINE__)
1228 #define tcc_realloc(ptr,size) tcc_realloc_debug(ptr, size, __FILE__, __LINE__)
1229 #define tcc_strdup(str) tcc_strdup_debug(str, __FILE__, __LINE__)
1230 PUB_FUNC void tcc_free_debug(void *ptr);
1231 PUB_FUNC void *tcc_malloc_debug(unsigned long size, const char *file, int line);
1232 PUB_FUNC void *tcc_mallocz_debug(unsigned long size, const char *file, int line);
1233 PUB_FUNC void *tcc_realloc_debug(void *ptr, unsigned long size, const char *file, int line);
1234 PUB_FUNC char *tcc_strdup_debug(const char *str, const char *file, int line);
1235 #endif
1237 #define free(p) use_tcc_free(p)
1238 #define malloc(s) use_tcc_malloc(s)
1239 #define realloc(p, s) use_tcc_realloc(p, s)
1240 #undef strdup
1241 #define strdup(s) use_tcc_strdup(s)
1242 PUB_FUNC void _tcc_error_noabort(const char *fmt, ...) PRINTF_LIKE(1,2);
1243 PUB_FUNC NORETURN void _tcc_error(const char *fmt, ...) PRINTF_LIKE(1,2);
1244 PUB_FUNC void _tcc_warning(const char *fmt, ...) PRINTF_LIKE(1,2);
1245 #define tcc_internal_error(msg) tcc_error("internal compiler error\n"\
1246 "%s:%d: in %s(): " msg, __FILE__,__LINE__,__FUNCTION__)
1248 /* other utilities */
1249 ST_FUNC void dynarray_add(void *ptab, int *nb_ptr, void *data);
1250 ST_FUNC void dynarray_reset(void *pp, int *n);
1251 ST_INLN void cstr_ccat(CString *cstr, int ch);
1252 ST_FUNC void cstr_cat(CString *cstr, const char *str, int len);
1253 ST_FUNC void cstr_wccat(CString *cstr, int ch);
1254 ST_FUNC void cstr_new(CString *cstr);
1255 ST_FUNC void cstr_free(CString *cstr);
1256 ST_FUNC int cstr_printf(CString *cs, const char *fmt, ...) PRINTF_LIKE(2,3);
1257 ST_FUNC int cstr_vprintf(CString *cstr, const char *fmt, va_list ap);
1258 ST_FUNC void cstr_reset(CString *cstr);
1260 ST_FUNC void tcc_open_bf(TCCState *s1, const char *filename, int initlen);
1261 ST_FUNC int tcc_open(TCCState *s1, const char *filename);
1262 ST_FUNC void tcc_close(void);
1264 ST_FUNC int tcc_add_file_internal(TCCState *s1, const char *filename, int flags);
1265 /* flags: */
1266 #define AFF_PRINT_ERROR 0x10 /* print error if file not found */
1267 #define AFF_REFERENCED_DLL 0x20 /* load a referenced dll from another dll */
1268 #define AFF_TYPE_BIN 0x40 /* file to add is binary */
1269 #define AFF_WHOLE_ARCHIVE 0x80 /* load all objects from archive */
1270 /* s->filetype: */
1271 #define AFF_TYPE_NONE 0
1272 #define AFF_TYPE_C 1
1273 #define AFF_TYPE_ASM 2
1274 #define AFF_TYPE_ASMPP 4
1275 #define AFF_TYPE_LIB 8
1276 #define AFF_TYPE_MASK (15 | AFF_TYPE_BIN)
1277 /* values from tcc_object_type(...) */
1278 #define AFF_BINTYPE_REL 1
1279 #define AFF_BINTYPE_DYN 2
1280 #define AFF_BINTYPE_AR 3
1281 #define AFF_BINTYPE_C67 4
1283 #ifndef ELF_OBJ_ONLY
1284 ST_FUNC int tcc_add_crt(TCCState *s, const char *filename);
1285 #endif
1286 ST_FUNC int tcc_add_dll(TCCState *s, const char *filename, int flags);
1287 ST_FUNC void tcc_add_support(TCCState *s1, const char *filename);
1288 #ifdef CONFIG_TCC_BCHECK
1289 ST_FUNC void tcc_add_bcheck(TCCState *s1);
1290 #endif
1291 #ifdef CONFIG_TCC_BACKTRACE
1292 ST_FUNC void tcc_add_btstub(TCCState *s1);
1293 #endif
1294 ST_FUNC void tcc_add_pragma_libs(TCCState *s1);
1295 PUB_FUNC int tcc_add_library_err(TCCState *s, const char *f);
1296 PUB_FUNC void tcc_print_stats(TCCState *s, unsigned total_time);
1297 PUB_FUNC int tcc_parse_args(TCCState *s, int *argc, char ***argv, int optind);
1298 #ifdef _WIN32
1299 ST_FUNC char *normalize_slashes(char *path);
1300 #endif
1301 ST_FUNC DLLReference *tcc_add_dllref(TCCState *s1, const char *dllname, int level);
1302 ST_FUNC char *tcc_load_text(int fd);
1304 /* tcc_parse_args return codes: */
1305 #define OPT_HELP 1
1306 #define OPT_HELP2 2
1307 #define OPT_V 3
1308 #define OPT_PRINT_DIRS 4
1309 #define OPT_AR 5
1310 #define OPT_IMPDEF 6
1311 #define OPT_M32 32
1312 #define OPT_M64 64
1314 /* ------------ tccpp.c ------------ */
1316 ST_DATA struct BufferedFile *file;
1317 ST_DATA int tok;
1318 ST_DATA CValue tokc;
1319 ST_DATA const int *macro_ptr;
1320 ST_DATA int parse_flags;
1321 ST_DATA int tok_flags;
1322 ST_DATA CString tokcstr; /* current parsed string, if any */
1324 /* display benchmark infos */
1325 ST_DATA int tok_ident;
1326 ST_DATA TokenSym **table_ident;
1328 #define TOK_FLAG_BOL 0x0001 /* beginning of line before */
1329 #define TOK_FLAG_BOF 0x0002 /* beginning of file before */
1330 #define TOK_FLAG_ENDIF 0x0004 /* a endif was found matching starting #ifdef */
1331 #define TOK_FLAG_EOF 0x0008 /* end of file */
1333 #define PARSE_FLAG_PREPROCESS 0x0001 /* activate preprocessing */
1334 #define PARSE_FLAG_TOK_NUM 0x0002 /* return numbers instead of TOK_PPNUM */
1335 #define PARSE_FLAG_LINEFEED 0x0004 /* line feed is returned as a
1336 token. line feed is also
1337 returned at eof */
1338 #define PARSE_FLAG_ASM_FILE 0x0008 /* we processing an asm file: '#' can be used for line comment, etc. */
1339 #define PARSE_FLAG_SPACES 0x0010 /* next() returns space tokens (for -E) */
1340 #define PARSE_FLAG_ACCEPT_STRAYS 0x0020 /* next() returns '\\' token */
1341 #define PARSE_FLAG_TOK_STR 0x0040 /* return parsed strings instead of TOK_PPSTR */
1343 /* isidnum_table flags: */
1344 #define IS_SPC 1
1345 #define IS_ID 2
1346 #define IS_NUM 4
1348 enum line_macro_output_format {
1349 LINE_MACRO_OUTPUT_FORMAT_GCC,
1350 LINE_MACRO_OUTPUT_FORMAT_NONE,
1351 LINE_MACRO_OUTPUT_FORMAT_STD,
1352 LINE_MACRO_OUTPUT_FORMAT_P10 = 11
1355 ST_FUNC TokenSym *tok_alloc(const char *str, int len);
1356 ST_FUNC int tok_alloc_const(const char *str);
1357 ST_FUNC const char *get_tok_str(int v, CValue *cv);
1358 ST_FUNC void begin_macro(TokenString *str, int alloc);
1359 ST_FUNC void end_macro(void);
1360 ST_FUNC int set_idnum(int c, int val);
1361 ST_INLN void tok_str_new(TokenString *s);
1362 ST_FUNC TokenString *tok_str_alloc(void);
1363 ST_FUNC void tok_str_free(TokenString *s);
1364 ST_FUNC void tok_str_free_str(int *str);
1365 ST_FUNC void tok_str_add(TokenString *s, int t);
1366 ST_FUNC void tok_str_add_tok(TokenString *s);
1367 ST_INLN void define_push(int v, int macro_type, int *str, Sym *first_arg);
1368 ST_FUNC void define_undef(Sym *s);
1369 ST_INLN Sym *define_find(int v);
1370 ST_FUNC void free_defines(Sym *b);
1371 ST_FUNC void parse_define(void);
1372 ST_FUNC void preprocess(int is_bof);
1373 ST_FUNC void next(void);
1374 ST_INLN void unget_tok(int last_tok);
1375 ST_FUNC void preprocess_start(TCCState *s1, int filetype);
1376 ST_FUNC void preprocess_end(TCCState *s1);
1377 ST_FUNC void tccpp_new(TCCState *s);
1378 ST_FUNC void tccpp_delete(TCCState *s);
1379 ST_FUNC int tcc_preprocess(TCCState *s1);
1380 ST_FUNC void skip(int c);
1381 ST_FUNC NORETURN void expect(const char *msg);
1383 /* space excluding newline */
1384 static inline int is_space(int ch) {
1385 return ch == ' ' || ch == '\t' || ch == '\v' || ch == '\f' || ch == '\r';
1387 static inline int isid(int c) {
1388 return (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') || c == '_';
1390 static inline int isnum(int c) {
1391 return c >= '0' && c <= '9';
1393 static inline int isoct(int c) {
1394 return c >= '0' && c <= '7';
1396 static inline int toup(int c) {
1397 return (c >= 'a' && c <= 'z') ? c - 'a' + 'A' : c;
1400 /* ------------ tccgen.c ------------ */
1402 #define SYM_POOL_NB (8192 / sizeof(Sym))
1404 ST_DATA Sym *global_stack;
1405 ST_DATA Sym *local_stack;
1406 ST_DATA Sym *local_label_stack;
1407 ST_DATA Sym *global_label_stack;
1408 ST_DATA Sym *define_stack;
1409 ST_DATA CType int_type, func_old_type, char_pointer_type;
1410 ST_DATA SValue *vtop;
1411 ST_DATA int rsym, anon_sym, ind, loc;
1412 ST_DATA char debug_modes;
1414 ST_DATA int const_wanted; /* true if constant wanted */
1415 ST_DATA int nocode_wanted; /* true if no code generation wanted for an expression */
1416 ST_DATA int global_expr; /* true if compound literals must be allocated globally (used during initializers parsing */
1417 ST_DATA CType func_vt; /* current function return type (used by return instruction) */
1418 ST_DATA int func_var; /* true if current function is variadic */
1419 ST_DATA int func_vc;
1420 ST_DATA int func_ind;
1421 ST_DATA const char *funcname;
1423 ST_FUNC void tccgen_init(TCCState *s1);
1424 ST_FUNC int tccgen_compile(TCCState *s1);
1425 ST_FUNC void tccgen_finish(TCCState *s1);
1426 ST_FUNC void check_vstack(void);
1428 ST_INLN int is_float(int t);
1429 ST_FUNC int ieee_finite(double d);
1430 ST_FUNC int exact_log2p1(int i);
1431 ST_FUNC void test_lvalue(void);
1433 ST_FUNC ElfSym *elfsym(Sym *);
1434 ST_FUNC void update_storage(Sym *sym);
1435 ST_FUNC void put_extern_sym2(Sym *sym, int sh_num, addr_t value, unsigned long size, int can_add_underscore);
1436 ST_FUNC void put_extern_sym(Sym *sym, Section *section, addr_t value, unsigned long size);
1437 #if PTR_SIZE == 4
1438 ST_FUNC void greloc(Section *s, Sym *sym, unsigned long offset, int type);
1439 #endif
1440 ST_FUNC void greloca(Section *s, Sym *sym, unsigned long offset, int type, addr_t addend);
1442 ST_INLN void sym_free(Sym *sym);
1443 ST_FUNC Sym *sym_push(int v, CType *type, int r, int c);
1444 ST_FUNC void sym_pop(Sym **ptop, Sym *b, int keep);
1445 ST_FUNC Sym *sym_push2(Sym **ps, int v, int t, int c);
1446 ST_FUNC Sym *sym_find2(Sym *s, int v);
1447 ST_INLN Sym *sym_find(int v);
1448 ST_FUNC Sym *label_find(int v);
1449 ST_FUNC Sym *label_push(Sym **ptop, int v, int flags);
1450 ST_FUNC void label_pop(Sym **ptop, Sym *slast, int keep);
1451 ST_INLN Sym *struct_find(int v);
1453 ST_FUNC Sym *global_identifier_push(int v, int t, int c);
1454 ST_FUNC Sym *external_global_sym(int v, CType *type);
1455 ST_FUNC Sym *external_helper_sym(int v);
1456 ST_FUNC void vpush_helper_func(int v);
1457 ST_FUNC void vset(CType *type, int r, int v);
1458 ST_FUNC void vset_VT_CMP(int op);
1459 ST_FUNC void vpushi(int v);
1460 ST_FUNC void vpushv(SValue *v);
1461 ST_FUNC void vpushsym(CType *type, Sym *sym);
1462 ST_FUNC void vswap(void);
1463 ST_FUNC void vrote(SValue *e, int n);
1464 ST_FUNC void vrott(int n);
1465 ST_FUNC void vrotb(int n);
1466 ST_FUNC void vpop(void);
1467 #if PTR_SIZE == 4
1468 ST_FUNC void lexpand(void);
1469 #endif
1470 #ifdef TCC_TARGET_ARM
1471 ST_FUNC int get_reg_ex(int rc, int rc2);
1472 #endif
1473 ST_FUNC void save_reg(int r);
1474 ST_FUNC void save_reg_upstack(int r, int n);
1475 ST_FUNC int get_reg(int rc);
1476 ST_FUNC void save_regs(int n);
1477 ST_FUNC void gaddrof(void);
1478 ST_FUNC int gv(int rc);
1479 ST_FUNC void gv2(int rc1, int rc2);
1480 ST_FUNC void gen_op(int op);
1481 ST_FUNC int type_size(CType *type, int *a);
1482 ST_FUNC void mk_pointer(CType *type);
1483 ST_FUNC void vstore(void);
1484 ST_FUNC void inc(int post, int c);
1485 ST_FUNC void parse_mult_str (CString *astr, const char *msg);
1486 ST_FUNC void parse_asm_str(CString *astr);
1487 ST_FUNC void indir(void);
1488 ST_FUNC void unary(void);
1489 ST_FUNC void gexpr(void);
1490 ST_FUNC int expr_const(void);
1491 #if defined CONFIG_TCC_BCHECK || defined TCC_TARGET_C67
1492 ST_FUNC Sym *get_sym_ref(CType *type, Section *sec, unsigned long offset, unsigned long size);
1493 #endif
1494 #if defined TCC_TARGET_X86_64 && !defined TCC_TARGET_PE
1495 ST_FUNC int classify_x86_64_va_arg(CType *ty);
1496 #endif
1497 #ifdef CONFIG_TCC_BCHECK
1498 ST_FUNC void gbound_args(int nb_args);
1499 ST_DATA int func_bound_add_epilog;
1500 #endif
1502 /* ------------ tccelf.c ------------ */
1504 #define TCC_OUTPUT_FORMAT_ELF 0 /* default output format: ELF */
1505 #define TCC_OUTPUT_FORMAT_BINARY 1 /* binary image output */
1506 #define TCC_OUTPUT_FORMAT_COFF 2 /* COFF */
1507 #define TCC_OUTPUT_DYN TCC_OUTPUT_DLL
1509 #define ARMAG "!<arch>\n" /* For COFF and a.out archives */
1511 typedef struct {
1512 unsigned int n_strx; /* index into string table of name */
1513 unsigned char n_type; /* type of symbol */
1514 unsigned char n_other; /* misc info (usually empty) */
1515 unsigned short n_desc; /* description field */
1516 unsigned int n_value; /* value of symbol */
1517 } Stab_Sym;
1519 ST_FUNC void tccelf_new(TCCState *s);
1520 ST_FUNC void tccelf_delete(TCCState *s);
1521 ST_FUNC void tccelf_begin_file(TCCState *s1);
1522 ST_FUNC void tccelf_end_file(TCCState *s1);
1523 #ifdef CONFIG_TCC_BCHECK
1524 ST_FUNC void tccelf_bounds_new(TCCState *s);
1525 #endif
1526 ST_FUNC Section *new_section(TCCState *s1, const char *name, int sh_type, int sh_flags);
1527 ST_FUNC void section_realloc(Section *sec, unsigned long new_size);
1528 ST_FUNC size_t section_add(Section *sec, addr_t size, int align);
1529 ST_FUNC void *section_ptr_add(Section *sec, addr_t size);
1530 ST_FUNC Section *find_section(TCCState *s1, const char *name);
1531 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);
1533 ST_FUNC int put_elf_str(Section *s, const char *sym);
1534 ST_FUNC int put_elf_sym(Section *s, addr_t value, unsigned long size, int info, int other, int shndx, const char *name);
1535 ST_FUNC int set_elf_sym(Section *s, addr_t value, unsigned long size, int info, int other, int shndx, const char *name);
1536 ST_FUNC int find_elf_sym(Section *s, const char *name);
1537 ST_FUNC void put_elf_reloc(Section *symtab, Section *s, unsigned long offset, int type, int symbol);
1538 ST_FUNC void put_elf_reloca(Section *symtab, Section *s, unsigned long offset, int type, int symbol, addr_t addend);
1540 ST_FUNC void resolve_common_syms(TCCState *s1);
1541 ST_FUNC void relocate_syms(TCCState *s1, Section *symtab, int do_resolve);
1542 ST_FUNC void relocate_sections(TCCState *s1);
1544 ST_FUNC ssize_t full_read(int fd, void *buf, size_t count);
1545 ST_FUNC void *load_data(int fd, unsigned long file_offset, unsigned long size);
1546 ST_FUNC int tcc_object_type(int fd, ElfW(Ehdr) *h);
1547 ST_FUNC int tcc_load_object_file(TCCState *s1, int fd, unsigned long file_offset);
1548 ST_FUNC int tcc_load_archive(TCCState *s1, int fd, int alacarte);
1549 ST_FUNC void add_array(TCCState *s1, const char *sec, int c);
1551 ST_FUNC struct sym_attr *get_sym_attr(TCCState *s1, int index, int alloc);
1552 ST_FUNC addr_t get_sym_addr(TCCState *s, const char *name, int err, int forc);
1553 ST_FUNC void list_elf_symbols(TCCState *s, void *ctx,
1554 void (*symbol_cb)(void *ctx, const char *name, const void *val));
1555 ST_FUNC int set_global_sym(TCCState *s1, const char *name, Section *sec, addr_t offs);
1557 /* Browse each elem of type <type> in section <sec> starting at elem <startoff>
1558 using variable <elem> */
1559 #define for_each_elem(sec, startoff, elem, type) \
1560 for (elem = (type *) sec->data + startoff; \
1561 elem < (type *) (sec->data + sec->data_offset); elem++)
1563 #ifndef ELF_OBJ_ONLY
1564 ST_FUNC int tcc_load_dll(TCCState *s1, int fd, const char *filename, int level);
1565 ST_FUNC int tcc_load_ldscript(TCCState *s1, int fd);
1566 #endif
1567 #ifndef TCC_TARGET_PE
1568 ST_FUNC void tcc_add_runtime(TCCState *s1);
1569 #endif
1571 /* ------------ xxx-link.c ------------ */
1573 #if !defined ELF_OBJ_ONLY || defined TCC_TARGET_MACHO
1574 ST_FUNC int code_reloc (int reloc_type);
1575 ST_FUNC int gotplt_entry_type (int reloc_type);
1576 /* Whether to generate a GOT/PLT entry and when. NO_GOTPLT_ENTRY is first so
1577 that unknown relocation don't create a GOT or PLT entry */
1578 enum gotplt_entry {
1579 NO_GOTPLT_ENTRY, /* never generate (eg. GLOB_DAT & JMP_SLOT relocs) */
1580 BUILD_GOT_ONLY, /* only build GOT (eg. TPOFF relocs) */
1581 AUTO_GOTPLT_ENTRY, /* generate if sym is UNDEF */
1582 ALWAYS_GOTPLT_ENTRY /* always generate (eg. PLTOFF relocs) */
1584 #define NEED_RELOC_TYPE
1586 #if !defined TCC_TARGET_MACHO || defined TCC_IS_NATIVE
1587 ST_FUNC unsigned create_plt_entry(TCCState *s1, unsigned got_offset, struct sym_attr *attr);
1588 ST_FUNC void relocate_plt(TCCState *s1);
1589 ST_FUNC void build_got_entries(TCCState *s1, int got_sym); /* in tccelf.c */
1590 #define NEED_BUILD_GOT
1592 #endif
1593 #endif
1595 ST_FUNC void relocate(TCCState *s1, ElfW_Rel *rel, int type, unsigned char *ptr, addr_t addr, addr_t val);
1597 /* ------------ xxx-gen.c ------------ */
1598 ST_DATA const char * const target_machine_defs;
1599 ST_DATA const int reg_classes[NB_REGS];
1601 ST_FUNC void gsym_addr(int t, int a);
1602 ST_FUNC void gsym(int t);
1603 ST_FUNC void load(int r, SValue *sv);
1604 ST_FUNC void store(int r, SValue *v);
1605 ST_FUNC int gfunc_sret(CType *vt, int variadic, CType *ret, int *align, int *regsize);
1606 ST_FUNC void gfunc_call(int nb_args);
1607 ST_FUNC void gfunc_prolog(Sym *func_sym);
1608 ST_FUNC void gfunc_epilog(void);
1609 ST_FUNC void gen_fill_nops(int);
1610 ST_FUNC int gjmp(int t);
1611 ST_FUNC void gjmp_addr(int a);
1612 ST_FUNC int gjmp_cond(int op, int t);
1613 ST_FUNC int gjmp_append(int n, int t);
1614 ST_FUNC void gen_opi(int op);
1615 ST_FUNC void gen_opf(int op);
1616 ST_FUNC void gen_cvt_ftoi(int t);
1617 ST_FUNC void gen_cvt_itof(int t);
1618 ST_FUNC void gen_cvt_ftof(int t);
1619 ST_FUNC void ggoto(void);
1620 #ifndef TCC_TARGET_C67
1621 ST_FUNC void o(unsigned int c);
1622 #endif
1623 ST_FUNC void gen_vla_sp_save(int addr);
1624 ST_FUNC void gen_vla_sp_restore(int addr);
1625 ST_FUNC void gen_vla_alloc(CType *type, int align);
1627 static inline uint16_t read16le(unsigned char *p) {
1628 return p[0] | (uint16_t)p[1] << 8;
1630 static inline void write16le(unsigned char *p, uint16_t x) {
1631 p[0] = x & 255; p[1] = x >> 8 & 255;
1633 static inline uint32_t read32le(unsigned char *p) {
1634 return read16le(p) | (uint32_t)read16le(p + 2) << 16;
1636 static inline void write32le(unsigned char *p, uint32_t x) {
1637 write16le(p, x); write16le(p + 2, x >> 16);
1639 static inline void add32le(unsigned char *p, int32_t x) {
1640 write32le(p, read32le(p) + x);
1642 static inline uint64_t read64le(unsigned char *p) {
1643 return read32le(p) | (uint64_t)read32le(p + 4) << 32;
1645 static inline void write64le(unsigned char *p, uint64_t x) {
1646 write32le(p, x); write32le(p + 4, x >> 32);
1648 static inline void add64le(unsigned char *p, int64_t x) {
1649 write64le(p, read64le(p) + x);
1652 /* ------------ i386-gen.c ------------ */
1653 #if defined TCC_TARGET_I386 || defined TCC_TARGET_X86_64 || defined TCC_TARGET_ARM
1654 ST_FUNC void g(int c);
1655 ST_FUNC void gen_le16(int c);
1656 ST_FUNC void gen_le32(int c);
1657 #endif
1658 #if defined TCC_TARGET_I386 || defined TCC_TARGET_X86_64
1659 ST_FUNC void gen_addr32(int r, Sym *sym, int c);
1660 ST_FUNC void gen_addrpc32(int r, Sym *sym, int c);
1661 ST_FUNC void gen_cvt_csti(int t);
1662 ST_FUNC void gen_increment_tcov (SValue *sv);
1663 #endif
1665 /* ------------ x86_64-gen.c ------------ */
1666 #ifdef TCC_TARGET_X86_64
1667 ST_FUNC void gen_addr64(int r, Sym *sym, int64_t c);
1668 ST_FUNC void gen_opl(int op);
1669 #ifdef TCC_TARGET_PE
1670 ST_FUNC void gen_vla_result(int addr);
1671 #endif
1672 ST_FUNC void gen_cvt_sxtw(void);
1673 ST_FUNC void gen_cvt_csti(int t);
1674 #endif
1676 /* ------------ arm-gen.c ------------ */
1677 #ifdef TCC_TARGET_ARM
1678 #if defined(TCC_ARM_EABI) && !defined(CONFIG_TCC_ELFINTERP)
1679 PUB_FUNC const char *default_elfinterp(struct TCCState *s);
1680 #endif
1681 ST_FUNC void arm_init(struct TCCState *s);
1682 ST_FUNC void gen_increment_tcov (SValue *sv);
1683 #endif
1685 /* ------------ arm64-gen.c ------------ */
1686 #ifdef TCC_TARGET_ARM64
1687 ST_FUNC void gen_opl(int op);
1688 ST_FUNC void gfunc_return(CType *func_type);
1689 ST_FUNC void gen_va_start(void);
1690 ST_FUNC void gen_va_arg(CType *t);
1691 ST_FUNC void gen_clear_cache(void);
1692 ST_FUNC void gen_cvt_sxtw(void);
1693 ST_FUNC void gen_cvt_csti(int t);
1694 ST_FUNC void gen_increment_tcov (SValue *sv);
1695 #endif
1697 /* ------------ riscv64-gen.c ------------ */
1698 #ifdef TCC_TARGET_RISCV64
1699 ST_FUNC void gen_opl(int op);
1700 //ST_FUNC void gfunc_return(CType *func_type);
1701 ST_FUNC void gen_va_start(void);
1702 ST_FUNC void arch_transfer_ret_regs(int);
1703 ST_FUNC void gen_cvt_sxtw(void);
1704 ST_FUNC void gen_increment_tcov (SValue *sv);
1705 #endif
1707 /* ------------ c67-gen.c ------------ */
1708 #ifdef TCC_TARGET_C67
1709 #endif
1711 /* ------------ tcccoff.c ------------ */
1712 #ifdef TCC_TARGET_COFF
1713 ST_FUNC int tcc_output_coff(TCCState *s1, FILE *f);
1714 ST_FUNC int tcc_load_coff(TCCState * s1, int fd);
1715 #endif
1717 /* ------------ tccasm.c ------------ */
1718 ST_FUNC void asm_instr(void);
1719 ST_FUNC void asm_global_instr(void);
1720 ST_FUNC int tcc_assemble(TCCState *s1, int do_preprocess);
1721 #ifdef CONFIG_TCC_ASM
1722 ST_FUNC int find_constraint(ASMOperand *operands, int nb_operands, const char *name, const char **pp);
1723 ST_FUNC Sym* get_asm_sym(int name, Sym *csym);
1724 ST_FUNC void asm_expr(TCCState *s1, ExprValue *pe);
1725 ST_FUNC int asm_int_expr(TCCState *s1);
1726 /* ------------ i386-asm.c ------------ */
1727 ST_FUNC void gen_expr32(ExprValue *pe);
1728 #ifdef TCC_TARGET_X86_64
1729 ST_FUNC void gen_expr64(ExprValue *pe);
1730 #endif
1731 ST_FUNC void asm_opcode(TCCState *s1, int opcode);
1732 ST_FUNC int asm_parse_regvar(int t);
1733 ST_FUNC void asm_compute_constraints(ASMOperand *operands, int nb_operands, int nb_outputs, const uint8_t *clobber_regs, int *pout_reg);
1734 ST_FUNC void subst_asm_operand(CString *add_str, SValue *sv, int modifier);
1735 ST_FUNC void asm_gen_code(ASMOperand *operands, int nb_operands, int nb_outputs, int is_output, uint8_t *clobber_regs, int out_reg);
1736 ST_FUNC void asm_clobber(uint8_t *clobber_regs, const char *str);
1737 #endif
1739 /* ------------ tccpe.c -------------- */
1740 #ifdef TCC_TARGET_PE
1741 ST_FUNC int pe_load_file(struct TCCState *s1, int fd, const char *filename);
1742 ST_FUNC int pe_output_file(TCCState * s1, const char *filename);
1743 ST_FUNC int pe_putimport(TCCState *s1, int dllindex, const char *name, addr_t value);
1744 #if defined TCC_TARGET_I386 || defined TCC_TARGET_X86_64
1745 ST_FUNC SValue *pe_getimport(SValue *sv, SValue *v2);
1746 #endif
1747 #ifdef TCC_TARGET_X86_64
1748 ST_FUNC void pe_add_unwind_data(unsigned start, unsigned end, unsigned stack);
1749 #endif
1750 PUB_FUNC int tcc_get_dllexports(const char *filename, char **pp);
1751 /* symbol properties stored in Elf32_Sym->st_other */
1752 # define ST_PE_EXPORT 0x10
1753 # define ST_PE_IMPORT 0x20
1754 # define ST_PE_STDCALL 0x40
1755 #endif
1756 #define ST_ASM_SET 0x04
1758 /* ------------ tccmacho.c ----------------- */
1759 #ifdef TCC_TARGET_MACHO
1760 ST_FUNC int macho_output_file(TCCState * s1, const char *filename);
1761 ST_FUNC int macho_load_dll(TCCState *s1, int fd, const char *filename, int lev);
1762 ST_FUNC int macho_load_tbd(TCCState *s1, int fd, const char *filename, int lev);
1763 #ifdef TCC_IS_NATIVE
1764 ST_FUNC void tcc_add_macos_sdkpath(TCCState* s);
1765 ST_FUNC const char* macho_tbd_soname(const char* filename);
1766 #endif
1767 #endif
1768 /* ------------ tccrun.c ----------------- */
1769 #ifdef TCC_IS_NATIVE
1770 #ifdef CONFIG_TCC_STATIC
1771 #define RTLD_LAZY 0x001
1772 #define RTLD_NOW 0x002
1773 #define RTLD_GLOBAL 0x100
1774 #define RTLD_DEFAULT NULL
1775 /* dummy function for profiling */
1776 ST_FUNC void *dlopen(const char *filename, int flag);
1777 ST_FUNC void dlclose(void *p);
1778 ST_FUNC const char *dlerror(void);
1779 ST_FUNC void *dlsym(void *handle, const char *symbol);
1780 #endif
1781 ST_FUNC void tcc_run_free(TCCState *s1);
1782 #endif
1784 /* ------------ tcctools.c ----------------- */
1785 #if 0 /* included in tcc.c */
1786 ST_FUNC int tcc_tool_ar(TCCState *s, int argc, char **argv);
1787 #ifdef TCC_TARGET_PE
1788 ST_FUNC int tcc_tool_impdef(TCCState *s, int argc, char **argv);
1789 #endif
1790 ST_FUNC void tcc_tool_cross(TCCState *s, char **argv, int option);
1791 ST_FUNC void gen_makedeps(TCCState *s, const char *target, const char *filename);
1792 #endif
1794 /* ------------ tccdbg.c ------------ */
1796 ST_FUNC void tcc_debug_new(TCCState *s);
1798 ST_FUNC void tcc_debug_start(TCCState *s1);
1799 ST_FUNC void tcc_debug_end(TCCState *s1);
1800 ST_FUNC void tcc_debug_bincl(TCCState *s1);
1801 ST_FUNC void tcc_debug_eincl(TCCState *s1);
1802 ST_FUNC void tcc_debug_putfile(TCCState *s1, const char *filename);
1804 ST_FUNC void tcc_debug_line(TCCState *s1);
1805 ST_FUNC void tcc_add_debug_info(TCCState *s1, int param, Sym *s, Sym *e);
1806 ST_FUNC void tcc_debug_funcstart(TCCState *s1, Sym *sym);
1807 ST_FUNC void tcc_debug_prolog_epilog(TCCState *s1, int value);
1808 ST_FUNC void tcc_debug_funcend(TCCState *s1, int size);
1809 ST_FUNC void tcc_debug_extern_sym(TCCState *s1, Sym *sym, int sh_num, int sym_bind, int sym_type);
1810 ST_FUNC void tcc_debug_typedef(TCCState *s1, Sym *sym);
1811 ST_FUNC void tcc_debug_stabn(TCCState *s1, int type, int value);
1812 ST_FUNC void tcc_debug_fix_anon(TCCState *s1, CType *t);
1814 ST_FUNC void tcc_tcov_start(TCCState *s1);
1815 ST_FUNC void tcc_tcov_end(TCCState *s1);
1816 ST_FUNC void tcc_tcov_check_line(TCCState *s1, int start);
1817 ST_FUNC void tcc_tcov_block_end(TCCState *s1, int line);
1818 ST_FUNC void tcc_tcov_block_begin(TCCState *s1);
1819 ST_FUNC void tcc_tcov_reset_ind(TCCState *s1);
1821 #define stab_section s1->stab_section
1822 #define stabstr_section stab_section->link
1823 #define tcov_section s1->tcov_section
1824 #define dwarf_info_section s1->dwarf_info_section
1825 #define dwarf_abbrev_section s1->dwarf_abbrev_section
1826 #define dwarf_line_section s1->dwarf_line_section
1827 #define dwarf_aranges_section s1->dwarf_aranges_section
1828 #define dwarf_str_section s1->dwarf_str_section
1829 #define dwarf_line_str_section s1->dwarf_line_str_section
1831 /* default dwarf version for "-g". use 0 to emit stab debug infos */
1832 #ifndef DWARF_VERSION
1833 # define DWARF_VERSION 0
1834 #endif
1836 /* default dwarf version for "-gdwarf" */
1837 #ifdef TCC_TARGET_MACHO
1838 # define DEFAULT_DWARF_VERSION 2
1839 #else
1840 # define DEFAULT_DWARF_VERSION 5
1841 #endif
1843 #if defined TCC_TARGET_PE
1844 # define R_DATA_32DW 'Z' /* fake code to avoid DLL relocs */
1845 #elif defined TCC_TARGET_X86_64
1846 # define R_DATA_32DW R_X86_64_32
1847 #else
1848 # define R_DATA_32DW R_DATA_32
1849 #endif
1851 /********************************************************/
1852 #if CONFIG_TCC_SEMLOCK
1853 #if defined _WIN32
1854 typedef struct { int init; CRITICAL_SECTION cr; } TCCSem;
1855 #elif defined __APPLE__
1856 #include <dispatch/dispatch.h>
1857 typedef struct { int init; dispatch_semaphore_t sem; } TCCSem;
1858 #else
1859 #include <semaphore.h>
1860 typedef struct { int init; sem_t sem; } TCCSem;
1861 #endif
1862 ST_FUNC void wait_sem(TCCSem *p);
1863 ST_FUNC void post_sem(TCCSem *p);
1864 #define TCC_SEM(s) TCCSem s
1865 #define WAIT_SEM wait_sem
1866 #define POST_SEM post_sem
1867 #else
1868 #define TCC_SEM(s)
1869 #define WAIT_SEM(p)
1870 #define POST_SEM(p)
1871 #endif
1873 /********************************************************/
1874 #undef ST_DATA
1875 #if ONE_SOURCE
1876 #define ST_DATA static
1877 #else
1878 #define ST_DATA
1879 #endif
1880 /********************************************************/
1882 #define text_section TCC_STATE_VAR(text_section)
1883 #define data_section TCC_STATE_VAR(data_section)
1884 #define rodata_section TCC_STATE_VAR(rodata_section)
1885 #define bss_section TCC_STATE_VAR(bss_section)
1886 #define common_section TCC_STATE_VAR(common_section)
1887 #define cur_text_section TCC_STATE_VAR(cur_text_section)
1888 #define bounds_section TCC_STATE_VAR(bounds_section)
1889 #define lbounds_section TCC_STATE_VAR(lbounds_section)
1890 #define symtab_section TCC_STATE_VAR(symtab_section)
1891 #define gnu_ext TCC_STATE_VAR(gnu_ext)
1892 #define tcc_error_noabort TCC_SET_STATE(_tcc_error_noabort)
1893 #define tcc_error TCC_SET_STATE(_tcc_error)
1894 #define tcc_warning TCC_SET_STATE(_tcc_warning)
1896 #define total_idents TCC_STATE_VAR(total_idents)
1897 #define total_lines TCC_STATE_VAR(total_lines)
1898 #define total_bytes TCC_STATE_VAR(total_bytes)
1900 PUB_FUNC void tcc_enter_state(TCCState *s1);
1901 PUB_FUNC void tcc_exit_state(TCCState *s1);
1903 /* conditional warning depending on switch */
1904 #define tcc_warning_c(sw) TCC_SET_STATE((\
1905 tcc_state->warn_num = offsetof(TCCState, sw) \
1906 - offsetof(TCCState, warn_none), _tcc_warning))
1908 /********************************************************/
1909 #endif /* _TCC_H */
1911 #undef TCC_STATE_VAR
1912 #undef TCC_SET_STATE
1914 #ifdef USING_GLOBALS
1915 # define TCC_STATE_VAR(sym) tcc_state->sym
1916 # define TCC_SET_STATE(fn) fn
1917 # undef USING_GLOBALS
1918 #else
1919 # define TCC_STATE_VAR(sym) s1->sym
1920 # define TCC_SET_STATE(fn) (tcc_enter_state(s1),fn)
1921 #endif