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