Add multiarch dirs to linker search path
[tinycc.git] / tcc.h
blob686b3c508aa5638663aaa4ffb11f2eba615ba05c
1 /*
2 * TCC - Tiny C Compiler
3 *
4 * Copyright (c) 2001-2004 Fabrice Bellard
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 #ifndef _TCC_H
22 #define _TCC_H
24 #define _GNU_SOURCE
25 #include "config.h"
27 #ifdef CONFIG_TCCBOOT
29 #include "tccboot.h"
30 #define CONFIG_TCC_STATIC
32 #else
34 #include <stdlib.h>
35 #include <stdio.h>
36 #include <stdarg.h>
37 #include <string.h>
38 #include <errno.h>
39 #include <math.h>
40 #include <signal.h>
41 #include <fcntl.h>
42 #include <setjmp.h>
43 #include <time.h>
45 #ifdef _WIN32
46 #include <windows.h>
47 #include <process.h>
48 #include <sys/timeb.h>
49 #include <io.h> /* open, close etc. */
50 #include <direct.h> /* getcwd */
51 #define inline __inline
52 #define inp next_inp
53 #ifdef _WIN64
54 #define uplong unsigned long long
55 #endif
56 #endif
58 #ifndef _WIN32
59 #include <unistd.h>
60 #include <sys/time.h>
61 #include <sys/ucontext.h>
62 #include <sys/mman.h>
63 #include <dlfcn.h>
64 #endif
66 #endif /* !CONFIG_TCCBOOT */
68 #ifndef uplong
69 #define uplong unsigned long
70 #endif
72 #ifndef PAGESIZE
73 #define PAGESIZE 4096
74 #endif
76 #include "elf.h"
77 #include "stab.h"
79 #ifndef O_BINARY
80 #define O_BINARY 0
81 #endif
83 #ifndef SA_SIGINFO
84 #define SA_SIGINFO 0x00000004u
85 #endif
87 #include "libtcc.h"
89 /* parser debug */
90 //#define PARSE_DEBUG
91 /* preprocessor debug */
92 //#define PP_DEBUG
93 /* include file debug */
94 //#define INC_DEBUG
96 //#define MEM_DEBUG
98 /* assembler debug */
99 //#define ASM_DEBUG
101 /* target selection */
102 //#define TCC_TARGET_I386 /* i386 code generator */
103 //#define TCC_TARGET_ARM /* ARMv4 code generator */
104 //#define TCC_TARGET_C67 /* TMS320C67xx code generator */
105 //#define TCC_TARGET_X86_64 /* x86-64 code generator */
107 /* default target is I386 */
108 #if !defined(TCC_TARGET_I386) && !defined(TCC_TARGET_ARM) && \
109 !defined(TCC_TARGET_C67) && !defined(TCC_TARGET_X86_64)
110 #define TCC_TARGET_I386
111 #endif
113 #if !defined(TCC_UCLIBC) && !defined(TCC_TARGET_ARM) && \
114 !defined(TCC_TARGET_C67) && !defined(TCC_TARGET_X86_64)
115 #define CONFIG_TCC_BCHECK /* enable bound checking code */
116 #endif
118 #if defined(_WIN32) && !defined(TCC_TARGET_PE)
119 #define CONFIG_TCC_STATIC
120 #endif
122 /* define it to include assembler support */
123 #if !defined(TCC_TARGET_ARM) && !defined(TCC_TARGET_C67)
124 #define CONFIG_TCC_ASM
125 #endif
127 /* object format selection */
128 #if defined(TCC_TARGET_C67)
129 #define TCC_TARGET_COFF
130 #endif
132 #if !defined(CONFIG_TCCBOOT)
133 #define CONFIG_TCC_BACKTRACE
134 #endif
136 #define FALSE 0
137 #define false 0
138 #define TRUE 1
139 #define true 1
140 typedef int BOOL;
142 /* path to find crt1.o, crti.o and crtn.o. Only needed when generating
143 executables or dlls */
145 #ifndef CONFIG_TCC_LDDIR
146 #if defined(TCC_TARGET_X86_64_CENTOS)
147 #define CONFIG_TCC_LDDIR "/lib64"
148 #else
149 #define CONFIG_TCC_LDDIR "/lib"
150 #endif
151 #endif
152 #define CONFIG_TCC_CRT_PREFIX CONFIG_SYSROOT "/usr" CONFIG_TCC_LDDIR
154 #define INCLUDE_STACK_SIZE 32
155 #define IFDEF_STACK_SIZE 64
156 #define VSTACK_SIZE 256
157 #define STRING_MAX_SIZE 1024
158 #define PACK_STACK_SIZE 8
160 #define TOK_HASH_SIZE 8192 /* must be a power of two */
161 #define TOK_ALLOC_INCR 512 /* must be a power of two */
162 #define TOK_MAX_SIZE 4 /* token max size in int unit when stored in string */
164 /* token symbol management */
165 typedef struct TokenSym {
166 struct TokenSym *hash_next;
167 struct Sym *sym_define; /* direct pointer to define */
168 struct Sym *sym_label; /* direct pointer to label */
169 struct Sym *sym_struct; /* direct pointer to structure */
170 struct Sym *sym_identifier; /* direct pointer to identifier */
171 int tok; /* token number */
172 int len;
173 char str[1];
174 } TokenSym;
176 #ifdef TCC_TARGET_PE
177 typedef unsigned short nwchar_t;
178 #else
179 typedef int nwchar_t;
180 #endif
182 typedef struct CString {
183 int size; /* size in bytes */
184 void *data; /* either 'char *' or 'nwchar_t *' */
185 int size_allocated;
186 void *data_allocated; /* if non NULL, data has been malloced */
187 } CString;
189 /* type definition */
190 typedef struct CType {
191 int t;
192 struct Sym *ref;
193 } CType;
195 /* constant value */
196 typedef union CValue {
197 long double ld;
198 double d;
199 float f;
200 int i;
201 unsigned int ui;
202 unsigned int ul; /* address (should be unsigned long on 64 bit cpu) */
203 long long ll;
204 unsigned long long ull;
205 struct CString *cstr;
206 void *ptr;
207 int tab[2];
208 } CValue;
210 /* value on stack */
211 typedef struct SValue {
212 CType type; /* type */
213 unsigned short r; /* register + flags */
214 unsigned short r2; /* second register, used for 'long long'
215 type. If not used, set to VT_CONST */
216 CValue c; /* constant, if VT_CONST */
217 struct Sym *sym; /* symbol, if (VT_SYM | VT_CONST) */
218 } SValue;
220 /* symbol management */
221 typedef struct Sym {
222 int v; /* symbol token */
223 char *asm_label; /* associated asm label */
224 long r; /* associated register */
225 union {
226 long c; /* associated number */
227 int *d; /* define token stream */
229 CType type; /* associated type */
230 union {
231 struct Sym *next; /* next related symbol */
232 long jnext; /* next jump label */
234 struct Sym *prev; /* prev symbol in stack */
235 struct Sym *prev_tok; /* previous symbol for this token */
236 } Sym;
238 /* section definition */
239 /* XXX: use directly ELF structure for parameters ? */
240 /* special flag to indicate that the section should not be linked to
241 the other ones */
242 #define SHF_PRIVATE 0x80000000
244 /* special flag, too */
245 #define SECTION_ABS ((void *)1)
247 typedef struct Section {
248 unsigned long data_offset; /* current data offset */
249 unsigned char *data; /* section data */
250 unsigned long data_allocated; /* used for realloc() handling */
251 int sh_name; /* elf section name (only used during output) */
252 int sh_num; /* elf section number */
253 int sh_type; /* elf section type */
254 int sh_flags; /* elf section flags */
255 int sh_info; /* elf section info */
256 int sh_addralign; /* elf section alignment */
257 int sh_entsize; /* elf entry size */
258 unsigned long sh_size; /* section size (only used during output) */
259 unsigned long sh_addr; /* address at which the section is relocated */
260 unsigned long sh_offset; /* file offset */
261 int nb_hashed_syms; /* used to resize the hash table */
262 struct Section *link; /* link to another section */
263 struct Section *reloc; /* corresponding section for relocation, if any */
264 struct Section *hash; /* hash table for symbols */
265 struct Section *next;
266 char name[1]; /* section name */
267 } Section;
269 typedef struct DLLReference {
270 int level;
271 void *handle;
272 char name[1];
273 } DLLReference;
275 /* GNUC attribute definition */
276 typedef struct AttributeDef {
277 unsigned
278 func_call : 3, /* calling convention (0..5), see below */
279 aligned : 5, /* alignement (0..16) */
280 packed : 1,
281 func_export : 1,
282 func_import : 1,
283 func_args : 5,
284 mode : 4,
285 weak : 1,
286 fill : 11;
287 struct Section *section;
288 int alias_target; /* token */
289 } AttributeDef;
291 /* gr: wrappers for casting sym->r for other purposes */
292 #define FUNC_CALL(r) (((AttributeDef*)&(r))->func_call)
293 #define FUNC_EXPORT(r) (((AttributeDef*)&(r))->func_export)
294 #define FUNC_IMPORT(r) (((AttributeDef*)&(r))->func_import)
295 #define FUNC_ARGS(r) (((AttributeDef*)&(r))->func_args)
296 #define FUNC_ALIGN(r) (((AttributeDef*)&(r))->aligned)
297 #define FUNC_PACKED(r) (((AttributeDef*)&(r))->packed)
298 #define ATTR_MODE(r) (((AttributeDef*)&(r))->mode)
299 #define INT_ATTR(ad) (*(int*)(ad))
301 /* -------------------------------------------------- */
303 #define SYM_STRUCT 0x40000000 /* struct/union/enum symbol space */
304 #define SYM_FIELD 0x20000000 /* struct/union field symbol space */
305 #define SYM_FIRST_ANOM 0x10000000 /* first anonymous sym */
307 /* stored in 'Sym.c' field */
308 #define FUNC_NEW 1 /* ansi function prototype */
309 #define FUNC_OLD 2 /* old function prototype */
310 #define FUNC_ELLIPSIS 3 /* ansi function prototype with ... */
312 /* stored in 'Sym.r' field */
313 #define FUNC_CDECL 0 /* standard c call */
314 #define FUNC_STDCALL 1 /* pascal c call */
315 #define FUNC_FASTCALL1 2 /* first param in %eax */
316 #define FUNC_FASTCALL2 3 /* first parameters in %eax, %edx */
317 #define FUNC_FASTCALL3 4 /* first parameter in %eax, %edx, %ecx */
318 #define FUNC_FASTCALLW 5 /* first parameter in %ecx, %edx */
320 /* field 'Sym.t' for macros */
321 #define MACRO_OBJ 0 /* object like macro */
322 #define MACRO_FUNC 1 /* function like macro */
324 /* field 'Sym.r' for C labels */
325 #define LABEL_DEFINED 0 /* label is defined */
326 #define LABEL_FORWARD 1 /* label is forward defined */
327 #define LABEL_DECLARED 2 /* label is declared but never used */
329 /* type_decl() types */
330 #define TYPE_ABSTRACT 1 /* type without variable */
331 #define TYPE_DIRECT 2 /* type with variable */
333 #define IO_BUF_SIZE 8192
335 typedef struct BufferedFile {
336 uint8_t *buf_ptr;
337 uint8_t *buf_end;
338 int fd;
339 struct BufferedFile *prev;
340 int line_num; /* current line number - here to simplify code */
341 int ifndef_macro; /* #ifndef macro / #endif search */
342 int ifndef_macro_saved; /* saved ifndef_macro */
343 int *ifdef_stack_ptr; /* ifdef_stack value at the start of the file */
344 char inc_type; /* type of include */
345 char inc_filename[512]; /* filename specified by the user */
346 char filename[1024]; /* current filename - here to simplify code */
347 unsigned char buffer[IO_BUF_SIZE + 1]; /* extra size for CH_EOB char */
348 } BufferedFile;
350 #define CH_EOB '\\' /* end of buffer or '\0' char in file */
351 #define CH_EOF (-1) /* end of file */
353 /* parsing state (used to save parser state to reparse part of the
354 source several times) */
355 typedef struct ParseState {
356 const int *macro_ptr;
357 int line_num;
358 int tok;
359 CValue tokc;
360 } ParseState;
362 /* used to record tokens */
363 typedef struct TokenString {
364 int *str;
365 int len;
366 int allocated_len;
367 int last_line_num;
368 } TokenString;
370 /* inline functions */
371 typedef struct InlineFunc {
372 int *token_str;
373 Sym *sym;
374 char filename[1];
375 } InlineFunc;
377 /* include file cache, used to find files faster and also to eliminate
378 inclusion if the include file is protected by #ifndef ... #endif */
379 typedef struct CachedInclude {
380 int ifndef_macro;
381 int hash_next; /* -1 if none */
382 char type; /* '"' or '>' to give include type */
383 char filename[1]; /* path specified in #include */
384 } CachedInclude;
386 #define CACHED_INCLUDES_HASH_SIZE 512
388 #ifdef CONFIG_TCC_ASM
389 typedef struct ExprValue {
390 uint32_t v;
391 Sym *sym;
392 } ExprValue;
394 #define MAX_ASM_OPERANDS 30
395 typedef struct ASMOperand {
396 int id; /* GCC 3 optionnal identifier (0 if number only supported */
397 char *constraint;
398 char asm_str[16]; /* computed asm string for operand */
399 SValue *vt; /* C value of the expression */
400 int ref_index; /* if >= 0, gives reference to a output constraint */
401 int input_index; /* if >= 0, gives reference to an input constraint */
402 int priority; /* priority, used to assign registers */
403 int reg; /* if >= 0, register number used for this operand */
404 int is_llong; /* true if double register value */
405 int is_memory; /* true if memory operand */
406 int is_rw; /* for '+' modifier */
407 } ASMOperand;
408 #endif
410 struct TCCState {
411 unsigned output_type : 8;
412 unsigned reloc_output : 1;
414 BufferedFile **include_stack_ptr;
415 int *ifdef_stack_ptr;
417 /* include file handling */
418 char **include_paths;
419 int nb_include_paths;
420 char **sysinclude_paths;
421 int nb_sysinclude_paths;
422 CachedInclude **cached_includes;
423 int nb_cached_includes;
425 char **library_paths;
426 int nb_library_paths;
428 /* array of all loaded dlls (including those referenced by loaded
429 dlls) */
430 DLLReference **loaded_dlls;
431 int nb_loaded_dlls;
433 /* sections */
434 Section **sections;
435 int nb_sections; /* number of sections, including first dummy section */
437 Section **priv_sections;
438 int nb_priv_sections; /* number of private sections */
440 /* got handling */
441 Section *got;
442 Section *plt;
443 unsigned long *got_offsets;
444 int nb_got_offsets;
445 /* give the correspondance from symtab indexes to dynsym indexes */
446 int *symtab_to_dynsym;
448 /* temporary dynamic symbol sections (for dll loading) */
449 Section *dynsymtab_section;
450 /* exported dynamic symbol section */
451 Section *dynsym;
453 int nostdinc; /* if true, no standard headers are added */
454 int nostdlib; /* if true, no standard libraries are added */
455 int nocommon; /* if true, do not use common symbols for .bss data */
457 /* if true, static linking is performed */
458 int static_link;
460 /* soname as specified on the command line (-soname) */
461 const char *soname;
462 /* rpath as specified on the command line (-Wl,-rpath=) */
463 const char *rpath;
465 /* if true, all symbols are exported */
466 int rdynamic;
468 /* if true, resolve symbols in the current module first (-Wl,Bsymbolic) */
469 int symbolic;
471 /* if true, only link in referenced objects from archive */
472 int alacarte_link;
474 /* address of text section */
475 unsigned long text_addr;
476 int has_text_addr;
478 /* symbols to call at load-time / unload-time */
479 const char *init_symbol;
480 const char *fini_symbol;
482 /* output format, see TCC_OUTPUT_FORMAT_xxx */
483 int output_format;
485 /* C language options */
486 int char_is_unsigned;
487 int leading_underscore;
489 /* warning switches */
490 int warn_write_strings;
491 int warn_unsupported;
492 int warn_error;
493 int warn_none;
494 int warn_implicit_function_declaration;
496 /* display some information during compilation */
497 int verbose;
498 /* compile with debug symbol (and use them if error during execution) */
499 int do_debug;
500 #ifdef CONFIG_TCC_BCHECK
501 /* compile with built-in memory and bounds checker */
502 int do_bounds_check;
503 #endif
504 /* give the path of the tcc libraries */
505 char *tcc_lib_path;
507 /* error handling */
508 void *error_opaque;
509 void (*error_func)(void *opaque, const char *msg);
510 int error_set_jmp_enabled;
511 jmp_buf error_jmp_buf;
512 int nb_errors;
514 /* tiny assembler state */
515 Sym *asm_labels;
517 /* see include_stack_ptr */
518 BufferedFile *include_stack[INCLUDE_STACK_SIZE];
520 /* see ifdef_stack_ptr */
521 int ifdef_stack[IFDEF_STACK_SIZE];
523 /* see cached_includes */
524 int cached_includes_hash[CACHED_INCLUDES_HASH_SIZE];
526 /* pack stack */
527 int pack_stack[PACK_STACK_SIZE];
528 int *pack_stack_ptr;
530 /* output file for preprocessing */
531 FILE *outfile;
533 /* input files and libraries for this compilation */
534 char **input_files;
535 int nb_input_files;
536 char **input_libs;
537 int nb_input_libs;
539 /* automatically collected dependencies for this compilation */
540 char **target_deps;
541 int nb_target_deps;
543 /* for tcc_relocate */
544 int runtime_added;
545 void *runtime_mem;
546 #ifdef HAVE_SELINUX
547 void *write_mem;
548 unsigned long mem_size;
549 #endif
551 struct InlineFunc **inline_fns;
552 int nb_inline_fns;
554 #ifdef TCC_TARGET_I386
555 int seg_size;
556 #endif
558 /* section alignment */
559 unsigned long section_align;
561 #ifdef TCC_TARGET_PE
562 /* PE info */
563 int pe_subsystem;
564 unsigned long pe_file_align;
565 struct pe_uw {
566 Section *pdata;
567 int sym_1, sym_2, offs_1;
568 } pe_unwind;
569 #endif
571 #ifndef TCC_TARGET_PE
572 #if defined TCC_TARGET_X86_64 || defined TCC_TARGET_ARM
573 /* write PLT and GOT here */
574 char *runtime_plt_and_got;
575 unsigned int runtime_plt_and_got_offset;
576 #endif
577 #endif
580 /* The current value can be: */
581 #define VT_VALMASK 0x00ff
582 #define VT_CONST 0x00f0 /* constant in vc
583 (must be first non register value) */
584 #define VT_LLOCAL 0x00f1 /* lvalue, offset on stack */
585 #define VT_LOCAL 0x00f2 /* offset on stack */
586 #define VT_CMP 0x00f3 /* the value is stored in processor flags (in vc) */
587 #define VT_JMP 0x00f4 /* value is the consequence of jmp true (even) */
588 #define VT_JMPI 0x00f5 /* value is the consequence of jmp false (odd) */
589 #define VT_LVAL 0x0100 /* var is an lvalue */
590 #define VT_SYM 0x0200 /* a symbol value is added */
591 #define VT_MUSTCAST 0x0400 /* value must be casted to be correct (used for
592 char/short stored in integer registers) */
593 #define VT_MUSTBOUND 0x0800 /* bound checking must be done before
594 dereferencing value */
595 #define VT_BOUNDED 0x8000 /* value is bounded. The address of the
596 bounding function call point is in vc */
597 #define VT_LVAL_BYTE 0x1000 /* lvalue is a byte */
598 #define VT_LVAL_SHORT 0x2000 /* lvalue is a short */
599 #define VT_LVAL_UNSIGNED 0x4000 /* lvalue is unsigned */
600 #define VT_LVAL_TYPE (VT_LVAL_BYTE | VT_LVAL_SHORT | VT_LVAL_UNSIGNED)
602 /* types */
603 #define VT_INT 0 /* integer type */
604 #define VT_BYTE 1 /* signed byte type */
605 #define VT_SHORT 2 /* short type */
606 #define VT_VOID 3 /* void type */
607 #define VT_PTR 4 /* pointer */
608 #define VT_ENUM 5 /* enum definition */
609 #define VT_FUNC 6 /* function type */
610 #define VT_STRUCT 7 /* struct/union definition */
611 #define VT_FLOAT 8 /* IEEE float */
612 #define VT_DOUBLE 9 /* IEEE double */
613 #define VT_LDOUBLE 10 /* IEEE long double */
614 #define VT_BOOL 11 /* ISOC99 boolean type */
615 #define VT_LLONG 12 /* 64 bit integer */
616 #define VT_LONG 13 /* long integer (NEVER USED as type, only
617 during parsing) */
618 #define VT_BTYPE 0x000f /* mask for basic type */
619 #define VT_UNSIGNED 0x0010 /* unsigned type */
620 #define VT_ARRAY 0x0020 /* array type (also has VT_PTR) */
621 #define VT_VLA 0x20000 /* VLA type (also has VT_PTR and VT_ARRAY) */
622 #define VT_BITFIELD 0x0040 /* bitfield modifier */
623 #define VT_CONSTANT 0x0800 /* const modifier */
624 #define VT_VOLATILE 0x1000 /* volatile modifier */
625 #define VT_SIGNED 0x2000 /* signed type */
627 /* storage */
628 #define VT_EXTERN 0x00000080 /* extern definition */
629 #define VT_STATIC 0x00000100 /* static variable */
630 #define VT_TYPEDEF 0x00000200 /* typedef definition */
631 #define VT_INLINE 0x00000400 /* inline definition */
632 #define VT_IMPORT 0x00004000 /* win32: extern data imported from dll */
633 #define VT_EXPORT 0x00008000 /* win32: data exported from dll */
634 #define VT_WEAK 0x00010000 /* win32: data exported from dll */
636 #define VT_STRUCT_SHIFT 18 /* shift for bitfield shift values */
638 /* type mask (except storage) */
639 #define VT_STORAGE (VT_EXTERN | VT_STATIC | VT_TYPEDEF | VT_INLINE | VT_IMPORT | VT_EXPORT | VT_WEAK)
640 #define VT_TYPE (~(VT_STORAGE))
642 /* token values */
644 /* warning: the following compare tokens depend on i386 asm code */
645 #define TOK_ULT 0x92
646 #define TOK_UGE 0x93
647 #define TOK_EQ 0x94
648 #define TOK_NE 0x95
649 #define TOK_ULE 0x96
650 #define TOK_UGT 0x97
651 #define TOK_Nset 0x98
652 #define TOK_Nclear 0x99
653 #define TOK_LT 0x9c
654 #define TOK_GE 0x9d
655 #define TOK_LE 0x9e
656 #define TOK_GT 0x9f
658 #define TOK_LAND 0xa0
659 #define TOK_LOR 0xa1
661 #define TOK_DEC 0xa2
662 #define TOK_MID 0xa3 /* inc/dec, to void constant */
663 #define TOK_INC 0xa4
664 #define TOK_UDIV 0xb0 /* unsigned division */
665 #define TOK_UMOD 0xb1 /* unsigned modulo */
666 #define TOK_PDIV 0xb2 /* fast division with undefined rounding for pointers */
667 #define TOK_CINT 0xb3 /* number in tokc */
668 #define TOK_CCHAR 0xb4 /* char constant in tokc */
669 #define TOK_STR 0xb5 /* pointer to string in tokc */
670 #define TOK_TWOSHARPS 0xb6 /* ## preprocessing token */
671 #define TOK_LCHAR 0xb7
672 #define TOK_LSTR 0xb8
673 #define TOK_CFLOAT 0xb9 /* float constant */
674 #define TOK_LINENUM 0xba /* line number info */
675 #define TOK_CDOUBLE 0xc0 /* double constant */
676 #define TOK_CLDOUBLE 0xc1 /* long double constant */
677 #define TOK_UMULL 0xc2 /* unsigned 32x32 -> 64 mul */
678 #define TOK_ADDC1 0xc3 /* add with carry generation */
679 #define TOK_ADDC2 0xc4 /* add with carry use */
680 #define TOK_SUBC1 0xc5 /* add with carry generation */
681 #define TOK_SUBC2 0xc6 /* add with carry use */
682 #define TOK_CUINT 0xc8 /* unsigned int constant */
683 #define TOK_CLLONG 0xc9 /* long long constant */
684 #define TOK_CULLONG 0xca /* unsigned long long constant */
685 #define TOK_ARROW 0xcb
686 #define TOK_DOTS 0xcc /* three dots */
687 #define TOK_SHR 0xcd /* unsigned shift right */
688 #define TOK_PPNUM 0xce /* preprocessor number */
689 #define TOK_NOSUBST 0xcf /* means following token has already been pp'd */
691 #define TOK_SHL 0x01 /* shift left */
692 #define TOK_SAR 0x02 /* signed shift right */
694 /* assignement operators : normal operator or 0x80 */
695 #define TOK_A_MOD 0xa5
696 #define TOK_A_AND 0xa6
697 #define TOK_A_MUL 0xaa
698 #define TOK_A_ADD 0xab
699 #define TOK_A_SUB 0xad
700 #define TOK_A_DIV 0xaf
701 #define TOK_A_XOR 0xde
702 #define TOK_A_OR 0xfc
703 #define TOK_A_SHL 0x81
704 #define TOK_A_SAR 0x82
706 #ifndef offsetof
707 #define offsetof(type, field) ((size_t) &((type *)0)->field)
708 #endif
710 #ifndef countof
711 #define countof(tab) (sizeof(tab) / sizeof((tab)[0]))
712 #endif
714 #define TOK_EOF (-1) /* end of file */
715 #define TOK_LINEFEED 10 /* line feed */
717 /* all identificators and strings have token above that */
718 #define TOK_IDENT 256
720 #define DEF_ASM(x) DEF(TOK_ASM_ ## x, #x)
721 #define TOK_ASM_int TOK_INT
722 #define TOK_ASM_weak TOK_WEAK1
724 #if defined TCC_TARGET_I386 || defined TCC_TARGET_X86_64
725 /* only used for i386 asm opcodes definitions */
726 #define DEF_BWL(x) \
727 DEF(TOK_ASM_ ## x ## b, #x "b") \
728 DEF(TOK_ASM_ ## x ## w, #x "w") \
729 DEF(TOK_ASM_ ## x ## l, #x "l") \
730 DEF(TOK_ASM_ ## x, #x)
731 #define DEF_WL(x) \
732 DEF(TOK_ASM_ ## x ## w, #x "w") \
733 DEF(TOK_ASM_ ## x ## l, #x "l") \
734 DEF(TOK_ASM_ ## x, #x)
735 #ifdef TCC_TARGET_X86_64
736 # define DEF_BWLQ(x) \
737 DEF(TOK_ASM_ ## x ## b, #x "b") \
738 DEF(TOK_ASM_ ## x ## w, #x "w") \
739 DEF(TOK_ASM_ ## x ## l, #x "l") \
740 DEF(TOK_ASM_ ## x ## q, #x "q") \
741 DEF(TOK_ASM_ ## x, #x)
742 # define DEF_WLQ(x) \
743 DEF(TOK_ASM_ ## x ## w, #x "w") \
744 DEF(TOK_ASM_ ## x ## l, #x "l") \
745 DEF(TOK_ASM_ ## x ## q, #x "q") \
746 DEF(TOK_ASM_ ## x, #x)
747 # define DEF_BWLX DEF_BWLQ
748 # define DEF_WLX DEF_WLQ
749 /* number of sizes + 1 */
750 # define NBWLX 5
751 #else
752 # define DEF_BWLX DEF_BWL
753 # define DEF_WLX DEF_WL
754 /* number of sizes + 1 */
755 # define NBWLX 4
756 #endif
758 #define DEF_FP1(x) \
759 DEF(TOK_ASM_ ## f ## x ## s, "f" #x "s") \
760 DEF(TOK_ASM_ ## fi ## x ## l, "fi" #x "l") \
761 DEF(TOK_ASM_ ## f ## x ## l, "f" #x "l") \
762 DEF(TOK_ASM_ ## fi ## x ## s, "fi" #x "s")
764 #define DEF_FP(x) \
765 DEF(TOK_ASM_ ## f ## x, "f" #x ) \
766 DEF(TOK_ASM_ ## f ## x ## p, "f" #x "p") \
767 DEF_FP1(x)
769 #define DEF_ASMTEST(x) \
770 DEF_ASM(x ## o) \
771 DEF_ASM(x ## no) \
772 DEF_ASM(x ## b) \
773 DEF_ASM(x ## c) \
774 DEF_ASM(x ## nae) \
775 DEF_ASM(x ## nb) \
776 DEF_ASM(x ## nc) \
777 DEF_ASM(x ## ae) \
778 DEF_ASM(x ## e) \
779 DEF_ASM(x ## z) \
780 DEF_ASM(x ## ne) \
781 DEF_ASM(x ## nz) \
782 DEF_ASM(x ## be) \
783 DEF_ASM(x ## na) \
784 DEF_ASM(x ## nbe) \
785 DEF_ASM(x ## a) \
786 DEF_ASM(x ## s) \
787 DEF_ASM(x ## ns) \
788 DEF_ASM(x ## p) \
789 DEF_ASM(x ## pe) \
790 DEF_ASM(x ## np) \
791 DEF_ASM(x ## po) \
792 DEF_ASM(x ## l) \
793 DEF_ASM(x ## nge) \
794 DEF_ASM(x ## nl) \
795 DEF_ASM(x ## ge) \
796 DEF_ASM(x ## le) \
797 DEF_ASM(x ## ng) \
798 DEF_ASM(x ## nle) \
799 DEF_ASM(x ## g)
801 #endif // defined TCC_TARGET_I386 || defined TCC_TARGET_X86_64
803 enum tcc_token {
804 TOK_LAST = TOK_IDENT - 1,
805 #define DEF(id, str) id,
806 #include "tcctok.h"
807 #undef DEF
810 #define TOK_UIDENT TOK_DEFINE
812 #ifdef _WIN32
813 #define snprintf _snprintf
814 #define vsnprintf _vsnprintf
815 #ifndef __GNUC__
816 #define strtold (long double)strtod
817 #define strtof (float)strtod
818 #define strtoll (long long)strtol
819 #endif
820 #elif defined(TCC_UCLIBC) || defined(__FreeBSD__) \
821 || defined(__FreeBSD_kernel__) || defined(__DragonFly__) \
822 || defined(__OpenBSD__)
823 /* currently incorrect */
824 static inline long double strtold(const char *nptr, char **endptr)
826 return (long double)strtod(nptr, endptr);
828 static inline float strtof(const char *nptr, char **endptr)
830 return (float)strtod(nptr, endptr);
832 #else
833 /* XXX: need to define this to use them in non ISOC99 context */
834 extern float strtof (const char *__nptr, char **__endptr);
835 extern long double strtold (const char *__nptr, char **__endptr);
836 #endif
838 #ifdef _WIN32
839 #define IS_PATHSEP(c) (c == '/' || c == '\\')
840 #define IS_ABSPATH(p) (IS_PATHSEP(p[0]) || (p[0] && p[1] == ':' && IS_PATHSEP(p[2])))
841 #define PATHCMP stricmp
842 #else
843 #define IS_PATHSEP(c) (c == '/')
844 #define IS_ABSPATH(p) IS_PATHSEP(p[0])
845 #define PATHCMP strcmp
846 #endif
848 /* space exlcuding newline */
849 static inline int is_space(int ch)
851 return ch == ' ' || ch == '\t' || ch == '\v' || ch == '\f' || ch == '\r';
854 static inline int isid(int c)
856 return (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') || c == '_';
859 static inline int isnum(int c)
861 return c >= '0' && c <= '9';
864 static inline int isoct(int c)
866 return c >= '0' && c <= '7';
869 static inline int toup(int c)
871 return (c >= 'a' && c <= 'z') ? c - 'a' + 'A' : c;
874 #define PUB_FUNC
876 #ifndef NOTALLINONE
877 #define ST_INLN static inline
878 #define ST_FUNC static
879 #define ST_DATA static
880 #else
881 #define ST_INLN
882 #define ST_FUNC
883 #define ST_DATA extern
884 #endif
886 /* ------------ libtcc.c ------------ */
888 /* use GNU C extensions */
889 ST_DATA int gnu_ext;
890 /* use Tiny C extensions */
891 ST_DATA int tcc_ext;
892 /* XXX: get rid of this ASAP */
893 ST_DATA struct TCCState *tcc_state;
895 #ifdef CONFIG_TCC_BACKTRACE
896 ST_DATA int num_callers;
897 ST_DATA const char **rt_bound_error_msg;
898 ST_DATA void *rt_prog_main;
899 #endif
901 #define AFF_PRINT_ERROR 0x0001 /* print error if file not found */
902 #define AFF_REFERENCED_DLL 0x0002 /* load a referenced dll from another dll */
903 #define AFF_PREPROCESS 0x0004 /* preprocess file */
905 /* public functions currently used by the tcc main function */
906 PUB_FUNC char *pstrcpy(char *buf, int buf_size, const char *s);
907 PUB_FUNC char *pstrcat(char *buf, int buf_size, const char *s);
908 PUB_FUNC char *tcc_basename(const char *name);
909 PUB_FUNC char *tcc_fileextension (const char *name);
910 PUB_FUNC void tcc_free(void *ptr);
911 PUB_FUNC void *tcc_malloc(unsigned long size);
912 PUB_FUNC void *tcc_mallocz(unsigned long size);
913 PUB_FUNC void *tcc_realloc(void *ptr, unsigned long size);
914 PUB_FUNC char *tcc_strdup(const char *str);
915 #define free(p) use_tcc_free(p)
916 #define malloc(s) use_tcc_malloc(s)
917 #define realloc(p, s) use_tcc_realloc(p, s)
918 #undef strdup
919 #define strdup(s) use_tcc_strdup(s)
920 PUB_FUNC void tcc_memstats(void);
921 PUB_FUNC void dynarray_add(void ***ptab, int *nb_ptr, void *data);
922 PUB_FUNC void dynarray_reset(void *pp, int *n);
923 PUB_FUNC void error_noabort(const char *fmt, ...);
924 PUB_FUNC void error(const char *fmt, ...);
925 PUB_FUNC void expect(const char *msg);
926 PUB_FUNC void warning(const char *fmt, ...);
928 /* other utilities */
929 ST_INLN void cstr_ccat(CString *cstr, int ch);
930 ST_FUNC void cstr_cat(CString *cstr, const char *str);
931 ST_FUNC void cstr_wccat(CString *cstr, int ch);
932 ST_FUNC void cstr_new(CString *cstr);
933 ST_FUNC void cstr_free(CString *cstr);
934 ST_FUNC void add_char(CString *cstr, int c);
935 #define cstr_reset(cstr) cstr_free(cstr)
937 ST_FUNC Section *new_section(TCCState *s1, const char *name, int sh_type, int sh_flags);
938 ST_FUNC void section_realloc(Section *sec, unsigned long new_size);
939 ST_FUNC void *section_ptr_add(Section *sec, unsigned long size);
940 ST_FUNC void section_reserve(Section *sec, unsigned long size);
941 ST_FUNC Section *find_section(TCCState *s1, const char *name);
943 ST_FUNC void put_extern_sym2(Sym *sym, Section *section, unsigned long value, unsigned long size, int can_add_underscore);
944 ST_FUNC void put_extern_sym(Sym *sym, Section *section, unsigned long value, unsigned long size);
945 ST_FUNC void greloc(Section *s, Sym *sym, unsigned long offset, int type);
947 ST_INLN void sym_free(Sym *sym);
948 ST_FUNC Sym *sym_push2(Sym **ps, int v, int t, long c);
949 ST_FUNC Sym *sym_find2(Sym *s, int v);
950 ST_FUNC Sym *sym_push(int v, CType *type, int r, int c);
951 ST_FUNC void sym_pop(Sym **ptop, Sym *b);
952 ST_INLN Sym *struct_find(int v);
953 ST_INLN Sym *sym_find(int v);
954 ST_FUNC Sym *global_identifier_push(int v, int t, int c);
956 ST_FUNC void tcc_open_bf(TCCState *s1, const char *filename, int initlen);
957 ST_FUNC int tcc_open(TCCState *s1, const char *filename);
958 ST_FUNC void tcc_close(void);
960 ST_FUNC int tcc_add_file_internal(TCCState *s1, const char *filename, int flags);
961 ST_FUNC int tcc_add_dll(TCCState *s, const char *filename, int flags);
962 PUB_FUNC int tcc_set_flag(TCCState *s, const char *flag_name, int value);
963 PUB_FUNC void tcc_print_stats(TCCState *s, int64_t total_time);
964 PUB_FUNC void set_num_callers(int n);
966 ST_FUNC int ieee_finite(double d);
968 /* ------------ tccpp.c ------------ */
970 ST_DATA struct BufferedFile *file;
971 ST_DATA int ch, tok;
972 ST_DATA CValue tokc;
973 ST_DATA const int *macro_ptr;
974 ST_DATA int parse_flags;
975 ST_DATA int tok_flags;
976 ST_DATA CString tokcstr; /* current parsed string, if any */
978 /* display benchmark infos */
979 ST_DATA int total_lines;
980 ST_DATA int total_bytes;
981 ST_DATA int tok_ident;
982 ST_DATA TokenSym **table_ident;
984 #define TOK_FLAG_BOL 0x0001 /* beginning of line before */
985 #define TOK_FLAG_BOF 0x0002 /* beginning of file before */
986 #define TOK_FLAG_ENDIF 0x0004 /* a endif was found matching starting #ifdef */
987 #define TOK_FLAG_EOF 0x0008 /* end of file */
989 #define PARSE_FLAG_PREPROCESS 0x0001 /* activate preprocessing */
990 #define PARSE_FLAG_TOK_NUM 0x0002 /* return numbers instead of TOK_PPNUM */
991 #define PARSE_FLAG_LINEFEED 0x0004 /* line feed is returned as a
992 token. line feed is also
993 returned at eof */
994 #define PARSE_FLAG_ASM_COMMENTS 0x0008 /* '#' can be used for line comment */
995 #define PARSE_FLAG_SPACES 0x0010 /* next() returns space tokens (for -E) */
997 ST_FUNC TokenSym *tok_alloc(const char *str, int len);
998 ST_FUNC char *get_tok_str(int v, CValue *cv);
999 ST_FUNC void save_parse_state(ParseState *s);
1000 ST_FUNC void restore_parse_state(ParseState *s);
1001 ST_INLN void tok_str_new(TokenString *s);
1002 ST_FUNC void tok_str_free(int *str);
1003 ST_FUNC void tok_str_add(TokenString *s, int t);
1004 ST_FUNC void tok_str_add_tok(TokenString *s);
1005 ST_INLN void define_push(int v, int macro_type, int *str, Sym *first_arg);
1006 ST_FUNC void define_undef(Sym *s);
1007 ST_INLN Sym *define_find(int v);
1008 ST_FUNC void free_defines(Sym *b);
1009 ST_FUNC Sym *label_find(int v);
1010 ST_FUNC Sym *label_push(Sym **ptop, int v, int flags);
1011 ST_FUNC void label_pop(Sym **ptop, Sym *slast);
1012 ST_FUNC void parse_define(void);
1013 ST_FUNC void preprocess(int is_bof);
1014 ST_FUNC void next_nomacro(void);
1015 ST_FUNC void next(void);
1016 ST_INLN void unget_tok(int last_tok);
1017 ST_FUNC void preprocess_init(TCCState *s1);
1018 ST_FUNC void preprocess_new();
1019 ST_FUNC int tcc_preprocess(TCCState *s1);
1020 ST_FUNC void skip(int c);
1022 /* ------------ tccgen.c ------------ */
1024 ST_DATA Section *text_section, *data_section, *bss_section; /* predefined sections */
1025 ST_DATA Section *cur_text_section; /* current section where function code is generated */
1026 #ifdef CONFIG_TCC_ASM
1027 ST_DATA Section *last_text_section; /* to handle .previous asm directive */
1028 #endif
1029 #ifdef CONFIG_TCC_BCHECK
1030 /* bound check related sections */
1031 ST_DATA Section *bounds_section; /* contains global data bound description */
1032 ST_DATA Section *lbounds_section; /* contains local data bound description */
1033 #endif
1034 /* symbol sections */
1035 ST_DATA Section *symtab_section, *strtab_section;
1036 /* debug sections */
1037 ST_DATA Section *stab_section, *stabstr_section;
1039 #define SYM_POOL_NB (8192 / sizeof(Sym))
1040 ST_DATA Sym *sym_free_first;
1041 ST_DATA void **sym_pools;
1042 ST_DATA int nb_sym_pools;
1044 ST_DATA Sym *global_stack;
1045 ST_DATA Sym *local_stack;
1046 ST_DATA Sym *local_label_stack;
1047 ST_DATA Sym *global_label_stack;
1048 ST_DATA Sym *define_stack;
1049 ST_DATA CType char_pointer_type, func_old_type, int_type;
1050 ST_DATA SValue vstack[VSTACK_SIZE], *vtop;
1051 ST_DATA int rsym, anon_sym, ind, loc;
1053 ST_DATA int const_wanted; /* true if constant wanted */
1054 ST_DATA int nocode_wanted; /* true if no code generation wanted for an expression */
1055 ST_DATA int global_expr; /* true if compound literals must be allocated globally (used during initializers parsing */
1056 ST_DATA CType func_vt; /* current function return type (used by return instruction) */
1057 ST_DATA int func_vc;
1058 ST_DATA int last_line_num, last_ind, func_ind; /* debug last line number and pc */
1059 ST_DATA char *funcname;
1061 ST_INLN int is_float(int t);
1062 ST_FUNC void test_lvalue(void);
1063 ST_FUNC void swap(int *p, int *q);
1064 ST_FUNC void vpushi(int v);
1065 ST_FUNC Sym *external_global_sym(int v, CType *type, int r);
1066 ST_FUNC void vset(CType *type, int r, int v);
1067 ST_FUNC void vswap(void);
1068 ST_FUNC void vpush_global_sym(CType *type, int v);
1069 ST_FUNC void vrott(int n);
1070 #ifdef TCC_TARGET_ARM
1071 ST_FUNC int get_reg_ex(int rc, int rc2);
1072 ST_FUNC void vnrott(int n);
1073 ST_FUNC void lexpand_nr(void);
1074 #endif
1075 ST_FUNC void vpushv(SValue *v);
1076 ST_FUNC void save_reg(int r);
1077 ST_FUNC int get_reg(int rc);
1078 ST_FUNC void save_regs(int n);
1079 ST_FUNC int gv(int rc);
1080 ST_FUNC void gv2(int rc1, int rc2);
1081 ST_FUNC void vpop(void);
1082 ST_FUNC void gen_op(int op);
1083 ST_FUNC int type_size(CType *type, int *a);
1084 ST_FUNC void mk_pointer(CType *type);
1085 ST_FUNC void vstore(void);
1086 ST_FUNC void inc(int post, int c);
1087 ST_FUNC void parse_asm_str(CString *astr);
1088 ST_FUNC int lvalue_type(int t);
1089 ST_FUNC void indir(void);
1090 ST_FUNC void unary(void);
1091 ST_FUNC void expr_prod(void);
1092 ST_FUNC void expr_sum(void);
1093 ST_FUNC void gexpr(void);
1094 ST_FUNC int expr_const(void);
1095 ST_FUNC void gen_inline_functions(void);
1096 ST_FUNC void decl(int l);
1097 #if defined CONFIG_TCC_BCHECK || defined TCC_TARGET_C67
1098 ST_FUNC Sym *get_sym_ref(CType *type, Section *sec, unsigned long offset, unsigned long size);
1099 #endif
1101 /* ------------ tccelf.c ------------ */
1103 #define ARMAG "!<arch>\012" /* For COFF and a.out archives */
1105 typedef struct {
1106 unsigned int n_strx; /* index into string table of name */
1107 unsigned char n_type; /* type of symbol */
1108 unsigned char n_other; /* misc info (usually empty) */
1109 unsigned short n_desc; /* description field */
1110 unsigned int n_value; /* value of symbol */
1111 } Stab_Sym;
1113 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);
1115 ST_FUNC int put_elf_str(Section *s, const char *sym);
1116 ST_FUNC int put_elf_sym(Section *s, uplong value, unsigned long size, int info, int other, int shndx, const char *name);
1117 ST_FUNC int add_elf_sym(Section *s, uplong value, unsigned long size, int info, int other, int sh_num, const char *name);
1118 ST_FUNC int find_elf_sym(Section *s, const char *name);
1119 ST_FUNC void put_elf_reloc(Section *symtab, Section *s, unsigned long offset, int type, int symbol);
1121 ST_FUNC void put_stabs(const char *str, int type, int other, int desc, unsigned long value);
1122 ST_FUNC void put_stabs_r(const char *str, int type, int other, int desc, unsigned long value, Section *sec, int sym_index);
1123 ST_FUNC void put_stabn(int type, int other, int desc, int value);
1124 ST_FUNC void put_stabd(int type, int other, int desc);
1126 ST_FUNC void relocate_common_syms(void);
1127 ST_FUNC void relocate_syms(TCCState *s1, int do_resolve);
1128 ST_FUNC void relocate_section(TCCState *s1, Section *s);
1130 ST_FUNC void tcc_add_linker_symbols(TCCState *s1);
1131 ST_FUNC int tcc_load_object_file(TCCState *s1, int fd, unsigned long file_offset);
1132 ST_FUNC int tcc_load_archive(TCCState *s1, int fd);
1133 ST_FUNC void *tcc_get_symbol_err(TCCState *s, const char *name);
1134 ST_FUNC void tcc_add_bcheck(TCCState *s1);
1136 ST_FUNC void build_got_entries(TCCState *s1);
1137 ST_FUNC void tcc_add_runtime(TCCState *s1);
1139 #ifndef TCC_TARGET_PE
1140 ST_FUNC int tcc_load_dll(TCCState *s1, int fd, const char *filename, int level);
1141 ST_FUNC int tcc_load_ldscript(TCCState *s1);
1142 ST_FUNC uint8_t *parse_comment(uint8_t *p);
1143 ST_FUNC void minp(void);
1144 ST_INLN void inp(void);
1145 ST_FUNC int handle_eob(void);
1146 #endif
1148 /* ------------ xxx-gen.c ------------ */
1150 ST_FUNC void gsym_addr(int t, int a);
1151 ST_FUNC void gsym(int t);
1152 ST_FUNC void load(int r, SValue *sv);
1153 ST_FUNC void store(int r, SValue *v);
1154 ST_FUNC void gfunc_call(int nb_args);
1155 ST_FUNC void gfunc_prolog(CType *func_type);
1156 ST_FUNC void gfunc_epilog(void);
1157 ST_FUNC int gjmp(int t);
1158 ST_FUNC void gjmp_addr(int a);
1159 ST_FUNC int gtst(int inv, int t);
1160 ST_FUNC void gen_opi(int op);
1161 ST_FUNC void gen_opf(int op);
1162 ST_FUNC void gen_cvt_ftoi(int t);
1163 ST_FUNC void gen_cvt_ftof(int t);
1164 ST_FUNC void ggoto(void);
1165 #ifndef TCC_TARGET_C67
1166 ST_FUNC void o(unsigned int c);
1167 #endif
1168 #ifndef TCC_TARGET_ARM
1169 ST_FUNC void gen_cvt_itof(int t);
1170 #endif
1172 /* ------------ i386-gen.c ------------ */
1173 #if defined TCC_TARGET_I386 || defined TCC_TARGET_X86_64
1174 ST_FUNC void g(int c);
1175 ST_FUNC int oad(int c, int s);
1176 ST_FUNC void gen_le16(int c);
1177 ST_FUNC void gen_le32(int c);
1178 ST_FUNC void gen_addr32(int r, Sym *sym, int c);
1179 ST_FUNC void gen_addrpc32(int r, Sym *sym, int c);
1180 #endif
1182 #ifdef CONFIG_TCC_BCHECK
1183 ST_FUNC void gen_bounded_ptr_add(void);
1184 ST_FUNC void gen_bounded_ptr_deref(void);
1185 #endif
1187 /* ------------ x86_64-gen.c ------------ */
1188 #ifdef TCC_TARGET_X86_64
1189 ST_FUNC void gen_addr64(int r, Sym *sym, int64_t c);
1190 #endif
1192 /* ------------ arm-gen.c ------------ */
1193 #ifdef TCC_TARGET_ARM
1194 ST_FUNC uint32_t encbranch(int pos, int addr, int fail);
1195 ST_FUNC void gen_cvt_itof1(int t);
1196 #endif
1198 /* ------------ c67-gen.c ------------ */
1199 #ifdef TCC_TARGET_C67
1200 #endif
1202 /* ------------ tcccoff.c ------------ */
1204 #ifdef TCC_TARGET_COFF
1205 ST_FUNC int tcc_output_coff(TCCState *s1, FILE *f);
1206 ST_FUNC int tcc_load_coff(TCCState * s1, int fd);
1207 #endif
1209 /* ------------ tccasm.c ------------ */
1210 ST_FUNC void asm_instr(void);
1211 ST_FUNC void asm_global_instr(void);
1213 #ifdef CONFIG_TCC_ASM
1214 ST_FUNC int find_constraint(ASMOperand *operands, int nb_operands, const char *name, const char **pp);
1215 ST_FUNC void asm_expr(TCCState *s1, ExprValue *pe);
1216 ST_FUNC int asm_int_expr(TCCState *s1);
1217 ST_FUNC int tcc_assemble(TCCState *s1, int do_preprocess);
1218 /* ------------ i386-asm.c ------------ */
1219 ST_FUNC void gen_expr32(ExprValue *pe);
1220 ST_FUNC void asm_opcode(TCCState *s1, int opcode);
1221 ST_FUNC void asm_compute_constraints(ASMOperand *operands, int nb_operands, int nb_outputs, const uint8_t *clobber_regs, int *pout_reg);
1222 ST_FUNC void subst_asm_operand(CString *add_str, SValue *sv, int modifier);
1223 ST_FUNC void asm_gen_code(ASMOperand *operands, int nb_operands, int nb_outputs, int is_output, uint8_t *clobber_regs, int out_reg);
1224 ST_FUNC void asm_clobber(uint8_t *clobber_regs, const char *str);
1225 #endif
1226 /* ------------ tccpe.c -------------- */
1227 #ifdef TCC_TARGET_PE
1228 ST_FUNC int pe_load_file(struct TCCState *s1, const char *filename, int fd);
1229 ST_FUNC int pe_add_dll(struct TCCState *s, const char *libraryname);
1230 ST_FUNC int pe_output_file(TCCState * s1, const char *filename);
1231 ST_FUNC int pe_putimport(TCCState *s1, int dllindex, const char *name, const void *value);
1232 ST_FUNC SValue *pe_getimport(SValue *sv, SValue *v2);
1233 /* tiny_impdef.c */
1234 ST_FUNC char *get_export_names(FILE *fp);
1235 #ifdef TCC_TARGET_X86_64
1236 ST_FUNC void pe_add_unwind_data(unsigned start, unsigned end, unsigned stack);
1237 #endif
1238 #endif
1240 /* ------------ tccrun.c ----------------- */
1241 #ifdef CONFIG_TCC_STATIC
1242 #define RTLD_LAZY 0x001
1243 #define RTLD_NOW 0x002
1244 #define RTLD_GLOBAL 0x100
1245 #define RTLD_DEFAULT NULL
1246 /* dummy function for profiling */
1247 ST_FUNC void *dlopen(const char *filename, int flag);
1248 ST_FUNC void dlclose(void *p);
1249 //ST_FUNC const char *dlerror(void);
1250 ST_FUNC void *resolve_sym(TCCState *s1, const char *symbol);
1251 #elif !defined TCC_TARGET_PE || !defined _WIN32
1252 ST_FUNC void *resolve_sym(TCCState *s1, const char *symbol);
1253 #endif
1254 /********************************************************/
1255 /* include the target specific definitions */
1257 #define TARGET_DEFS_ONLY
1258 #ifdef TCC_TARGET_I386
1259 #include "i386-gen.c"
1260 #endif
1261 #ifdef TCC_TARGET_X86_64
1262 #include "x86_64-gen.c"
1263 #endif
1264 #ifdef TCC_TARGET_ARM
1265 #include "arm-gen.c"
1266 #endif
1267 #ifdef TCC_TARGET_C67
1268 #include "coff.h"
1269 #include "c67-gen.c"
1270 #endif
1271 #undef TARGET_DEFS_ONLY
1273 ST_DATA const int reg_classes[NB_REGS];
1275 /********************************************************/
1276 #undef ST_DATA
1277 #ifndef NOTALLINONE
1278 #define ST_DATA static
1279 #else
1280 #define ST_DATA
1281 #endif
1282 /********************************************************/
1283 #endif /* _TCC_H */