added 16-bit x86 assembly support
[tinycc.git] / tcc.h
blob9407f63eac906bced8801dc7d53a829dab0ba54b
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 #define _GNU_SOURCE
22 #include "config.h"
24 #ifdef CONFIG_TCCBOOT
26 #include "tccboot.h"
27 #define CONFIG_TCC_STATIC
29 #else
31 #include <stdlib.h>
32 #include <stdio.h>
33 #include <stdarg.h>
34 #include <string.h>
35 #include <errno.h>
36 #include <math.h>
37 #include <signal.h>
38 #include <fcntl.h>
39 #include <setjmp.h>
40 #include <time.h>
42 #ifdef _WIN32
43 #include <windows.h>
44 #include <sys/timeb.h>
45 #include <io.h> /* open, close etc. */
46 #include <direct.h> /* getcwd */
47 #define inline __inline
48 #define inp next_inp
49 #ifdef _MSC_VER
50 #define __aligned(n) __declspec(align(n))
51 #endif
52 #ifdef _WIN64
53 #define uplong unsigned long long
54 #endif
55 #endif
57 #ifndef _WIN32
58 #include <unistd.h>
59 #include <sys/time.h>
60 #include <sys/ucontext.h>
61 #include <sys/mman.h>
62 #endif
64 #endif /* !CONFIG_TCCBOOT */
66 #ifndef uplong
67 #define uplong unsigned long
68 #endif
70 #ifndef __aligned
71 #define __aligned(n) __attribute__((aligned(n)))
72 #endif
74 #ifndef PAGESIZE
75 #define PAGESIZE 4096
76 #endif
78 #include "elf.h"
79 #include "stab.h"
81 #ifndef O_BINARY
82 #define O_BINARY 0
83 #endif
85 #include "libtcc.h"
87 /* parser debug */
88 //#define PARSE_DEBUG
89 /* preprocessor debug */
90 //#define PP_DEBUG
91 /* include file debug */
92 //#define INC_DEBUG
94 //#define MEM_DEBUG
96 /* assembler debug */
97 //#define ASM_DEBUG
99 /* target selection */
100 //#define TCC_TARGET_I386 /* i386 code generator */
101 //#define TCC_TARGET_ARM /* ARMv4 code generator */
102 //#define TCC_TARGET_C67 /* TMS320C67xx code generator */
103 //#define TCC_TARGET_X86_64 /* x86-64 code generator */
105 /* default target is I386 */
106 #if !defined(TCC_TARGET_I386) && !defined(TCC_TARGET_ARM) && \
107 !defined(TCC_TARGET_C67) && !defined(TCC_TARGET_X86_64)
108 #define TCC_TARGET_I386
109 #endif
111 #if !defined(_WIN32) && !defined(TCC_UCLIBC) && !defined(TCC_TARGET_ARM) && \
112 !defined(TCC_TARGET_C67) && !defined(TCC_TARGET_X86_64)
113 #define CONFIG_TCC_BCHECK /* enable bound checking code */
114 #endif
116 #if defined(_WIN32) && !defined(TCC_TARGET_PE)
117 #define CONFIG_TCC_STATIC
118 #endif
120 /* define it to include assembler support */
121 #if !defined(TCC_TARGET_ARM) && !defined(TCC_TARGET_C67) && \
122 !defined(TCC_TARGET_X86_64)
123 #define CONFIG_TCC_ASM
124 #endif
126 /* object format selection */
127 #if defined(TCC_TARGET_C67)
128 #define TCC_TARGET_COFF
129 #endif
131 #if !defined(_WIN32) && !defined(CONFIG_TCCBOOT)
132 #define CONFIG_TCC_BACKTRACE
133 #endif
135 #define FALSE 0
136 #define false 0
137 #define TRUE 1
138 #define true 1
139 typedef int BOOL;
141 /* path to find crt1.o, crti.o and crtn.o. Only needed when generating
142 executables or dlls */
143 #define CONFIG_TCC_CRT_PREFIX CONFIG_SYSROOT "/usr/lib"
145 #define INCLUDE_STACK_SIZE 32
146 #define IFDEF_STACK_SIZE 64
147 #define VSTACK_SIZE 256
148 #define STRING_MAX_SIZE 1024
149 #define PACK_STACK_SIZE 8
151 #define TOK_HASH_SIZE 8192 /* must be a power of two */
152 #define TOK_ALLOC_INCR 512 /* must be a power of two */
153 #define TOK_MAX_SIZE 4 /* token max size in int unit when stored in string */
155 /* token symbol management */
156 typedef struct TokenSym {
157 struct TokenSym *hash_next;
158 struct Sym *sym_define; /* direct pointer to define */
159 struct Sym *sym_label; /* direct pointer to label */
160 struct Sym *sym_struct; /* direct pointer to structure */
161 struct Sym *sym_identifier; /* direct pointer to identifier */
162 int tok; /* token number */
163 int len;
164 char str[1];
165 } TokenSym;
167 #ifdef TCC_TARGET_PE
168 typedef unsigned short nwchar_t;
169 #else
170 typedef int nwchar_t;
171 #endif
173 typedef struct CString {
174 int size; /* size in bytes */
175 void *data; /* either 'char *' or 'nwchar_t *' */
176 int size_allocated;
177 void *data_allocated; /* if non NULL, data has been malloced */
178 } CString;
180 /* type definition */
181 typedef struct CType {
182 int t;
183 struct Sym *ref;
184 } CType;
186 /* constant value */
187 typedef union CValue {
188 long double ld;
189 double d;
190 float f;
191 int i;
192 unsigned int ui;
193 unsigned int ul; /* address (should be unsigned long on 64 bit cpu) */
194 long long ll;
195 unsigned long long ull;
196 struct CString *cstr;
197 void *ptr;
198 int tab[1];
199 } CValue;
201 /* value on stack */
202 typedef struct SValue {
203 CType type; /* type */
204 unsigned short r; /* register + flags */
205 unsigned short r2; /* second register, used for 'long long'
206 type. If not used, set to VT_CONST */
207 CValue c; /* constant, if VT_CONST */
208 struct Sym *sym; /* symbol, if (VT_SYM | VT_CONST) */
209 } SValue;
211 /* symbol management */
212 typedef struct Sym {
213 int v; /* symbol token */
214 long r; /* associated register */
215 union {
216 long c; /* associated number */
217 int *d; /* define token stream */
219 CType type; /* associated type */
220 union {
221 struct Sym *next; /* next related symbol */
222 long jnext; /* next jump label */
224 struct Sym *prev; /* prev symbol in stack */
225 struct Sym *prev_tok; /* previous symbol for this token */
226 } Sym;
228 /* section definition */
229 /* XXX: use directly ELF structure for parameters ? */
230 /* special flag to indicate that the section should not be linked to
231 the other ones */
232 #define SHF_PRIVATE 0x80000000
234 /* special flag, too */
235 #define SECTION_ABS ((void *)1)
237 typedef struct Section {
238 unsigned long data_offset; /* current data offset */
239 unsigned char *data; /* section data */
240 unsigned long data_allocated; /* used for realloc() handling */
241 int sh_name; /* elf section name (only used during output) */
242 int sh_num; /* elf section number */
243 int sh_type; /* elf section type */
244 int sh_flags; /* elf section flags */
245 int sh_info; /* elf section info */
246 int sh_addralign; /* elf section alignment */
247 int sh_entsize; /* elf entry size */
248 unsigned long sh_size; /* section size (only used during output) */
249 unsigned long sh_addr; /* address at which the section is relocated */
250 unsigned long sh_offset; /* file offset */
251 int nb_hashed_syms; /* used to resize the hash table */
252 struct Section *link; /* link to another section */
253 struct Section *reloc; /* corresponding section for relocation, if any */
254 struct Section *hash; /* hash table for symbols */
255 struct Section *next;
256 char name[1]; /* section name */
257 } Section;
259 typedef struct DLLReference {
260 int level;
261 void *handle;
262 char name[1];
263 } DLLReference;
265 /* GNUC attribute definition */
266 typedef struct AttributeDef {
267 int aligned;
268 int packed;
269 Section *section;
270 int func_attr; /* calling convention, exports, ... */
271 } AttributeDef;
273 /* -------------------------------------------------- */
274 /* gr: wrappers for casting sym->r for other purposes */
275 typedef struct {
276 unsigned
277 func_call : 8,
278 func_args : 8,
279 func_export : 1,
280 func_import : 1;
281 } func_attr_t;
283 #define FUNC_CALL(r) (((func_attr_t*)&(r))->func_call)
284 #define FUNC_EXPORT(r) (((func_attr_t*)&(r))->func_export)
285 #define FUNC_IMPORT(r) (((func_attr_t*)&(r))->func_import)
286 #define FUNC_ARGS(r) (((func_attr_t*)&(r))->func_args)
287 /* -------------------------------------------------- */
289 #define SYM_STRUCT 0x40000000 /* struct/union/enum symbol space */
290 #define SYM_FIELD 0x20000000 /* struct/union field symbol space */
291 #define SYM_FIRST_ANOM 0x10000000 /* first anonymous sym */
293 /* stored in 'Sym.c' field */
294 #define FUNC_NEW 1 /* ansi function prototype */
295 #define FUNC_OLD 2 /* old function prototype */
296 #define FUNC_ELLIPSIS 3 /* ansi function prototype with ... */
298 /* stored in 'Sym.r' field */
299 #define FUNC_CDECL 0 /* standard c call */
300 #define FUNC_STDCALL 1 /* pascal c call */
301 #define FUNC_FASTCALL1 2 /* first param in %eax */
302 #define FUNC_FASTCALL2 3 /* first parameters in %eax, %edx */
303 #define FUNC_FASTCALL3 4 /* first parameter in %eax, %edx, %ecx */
304 #define FUNC_FASTCALLW 5 /* first parameter in %ecx, %edx */
306 /* field 'Sym.t' for macros */
307 #define MACRO_OBJ 0 /* object like macro */
308 #define MACRO_FUNC 1 /* function like macro */
310 /* field 'Sym.r' for C labels */
311 #define LABEL_DEFINED 0 /* label is defined */
312 #define LABEL_FORWARD 1 /* label is forward defined */
313 #define LABEL_DECLARED 2 /* label is declared but never used */
315 /* type_decl() types */
316 #define TYPE_ABSTRACT 1 /* type without variable */
317 #define TYPE_DIRECT 2 /* type with variable */
319 #define IO_BUF_SIZE 8192
321 typedef struct BufferedFile {
322 uint8_t *buf_ptr;
323 uint8_t *buf_end;
324 int fd;
325 int line_num; /* current line number - here to simplify code */
326 int ifndef_macro; /* #ifndef macro / #endif search */
327 int ifndef_macro_saved; /* saved ifndef_macro */
328 int *ifdef_stack_ptr; /* ifdef_stack value at the start of the file */
329 char inc_type; /* type of include */
330 char inc_filename[512]; /* filename specified by the user */
331 char filename[1024]; /* current filename - here to simplify code */
332 unsigned char buffer[IO_BUF_SIZE + 1]; /* extra size for CH_EOB char */
333 } BufferedFile;
335 #define CH_EOB '\\' /* end of buffer or '\0' char in file */
336 #define CH_EOF (-1) /* end of file */
338 /* parsing state (used to save parser state to reparse part of the
339 source several times) */
340 typedef struct ParseState {
341 int *macro_ptr;
342 int line_num;
343 int tok;
344 CValue tokc;
345 } ParseState;
347 /* used to record tokens */
348 typedef struct TokenString {
349 int *str;
350 int len;
351 int allocated_len;
352 int last_line_num;
353 } TokenString;
355 /* inline functions */
356 typedef struct InlineFunc {
357 int *token_str;
358 Sym *sym;
359 char filename[1];
360 } InlineFunc;
362 /* include file cache, used to find files faster and also to eliminate
363 inclusion if the include file is protected by #ifndef ... #endif */
364 typedef struct CachedInclude {
365 int ifndef_macro;
366 int hash_next; /* -1 if none */
367 char type; /* '"' or '>' to give include type */
368 char filename[1]; /* path specified in #include */
369 } CachedInclude;
371 #define CACHED_INCLUDES_HASH_SIZE 512
373 #ifdef CONFIG_TCC_ASM
374 typedef struct ExprValue {
375 uint32_t v;
376 Sym *sym;
377 } ExprValue;
379 #define MAX_ASM_OPERANDS 30
380 typedef struct ASMOperand {
381 int id; /* GCC 3 optionnal identifier (0 if number only supported */
382 char *constraint;
383 char asm_str[16]; /* computed asm string for operand */
384 SValue *vt; /* C value of the expression */
385 int ref_index; /* if >= 0, gives reference to a output constraint */
386 int input_index; /* if >= 0, gives reference to an input constraint */
387 int priority; /* priority, used to assign registers */
388 int reg; /* if >= 0, register number used for this operand */
389 int is_llong; /* true if double register value */
390 int is_memory; /* true if memory operand */
391 int is_rw; /* for '+' modifier */
392 } ASMOperand;
393 #endif
395 struct TCCState {
396 int output_type;
398 BufferedFile **include_stack_ptr;
399 int *ifdef_stack_ptr;
401 /* include file handling */
402 char **include_paths;
403 int nb_include_paths;
404 char **sysinclude_paths;
405 int nb_sysinclude_paths;
406 CachedInclude **cached_includes;
407 int nb_cached_includes;
409 char **library_paths;
410 int nb_library_paths;
412 /* array of all loaded dlls (including those referenced by loaded
413 dlls) */
414 DLLReference **loaded_dlls;
415 int nb_loaded_dlls;
417 /* sections */
418 Section **sections;
419 int nb_sections; /* number of sections, including first dummy section */
421 Section **priv_sections;
422 int nb_priv_sections; /* number of private sections */
424 /* got handling */
425 Section *got;
426 Section *plt;
427 unsigned long *got_offsets;
428 int nb_got_offsets;
429 /* give the correspondance from symtab indexes to dynsym indexes */
430 int *symtab_to_dynsym;
432 /* temporary dynamic symbol sections (for dll loading) */
433 Section *dynsymtab_section;
434 /* exported dynamic symbol section */
435 Section *dynsym;
437 int nostdinc; /* if true, no standard headers are added */
438 int nostdlib; /* if true, no standard libraries are added */
439 int nocommon; /* if true, do not use common symbols for .bss data */
441 /* if true, static linking is performed */
442 int static_link;
444 /* soname as specified on the command line (-soname) */
445 const char *soname;
447 /* if true, all symbols are exported */
448 int rdynamic;
450 /* if true, only link in referenced objects from archive */
451 int alacarte_link;
453 /* address of text section */
454 unsigned long text_addr;
455 int has_text_addr;
457 /* output format, see TCC_OUTPUT_FORMAT_xxx */
458 int output_format;
460 /* C language options */
461 int char_is_unsigned;
462 int leading_underscore;
464 /* warning switches */
465 int warn_write_strings;
466 int warn_unsupported;
467 int warn_error;
468 int warn_none;
469 int warn_implicit_function_declaration;
471 /* display some information during compilation */
472 int verbose;
473 /* compile with debug symbol (and use them if error during execution) */
474 int do_debug;
475 /* compile with built-in memory and bounds checker */
476 int do_bounds_check;
477 /* give the path of the tcc libraries */
478 char *tcc_lib_path;
480 /* error handling */
481 void *error_opaque;
482 void (*error_func)(void *opaque, const char *msg);
483 int error_set_jmp_enabled;
484 #ifdef _WIN64
485 __aligned(16)
486 #endif
487 jmp_buf error_jmp_buf;
488 int nb_errors;
490 /* tiny assembler state */
491 Sym *asm_labels;
493 /* see include_stack_ptr */
494 BufferedFile *include_stack[INCLUDE_STACK_SIZE];
496 /* see ifdef_stack_ptr */
497 int ifdef_stack[IFDEF_STACK_SIZE];
499 /* see cached_includes */
500 int cached_includes_hash[CACHED_INCLUDES_HASH_SIZE];
502 /* pack stack */
503 int pack_stack[PACK_STACK_SIZE];
504 int *pack_stack_ptr;
506 /* output file for preprocessing */
507 FILE *outfile;
509 /* for tcc_relocate */
510 int runtime_added;
512 struct InlineFunc **inline_fns;
513 int nb_inline_fns;
515 #ifdef TCC_TARGET_I386
516 int seg_size;
517 #endif
519 #ifndef TCC_TARGET_PE
520 #ifdef TCC_TARGET_X86_64
521 /* write PLT and GOT here */
522 char *runtime_plt_and_got;
523 unsigned int runtime_plt_and_got_offset;
524 #endif
525 #endif
528 /* The current value can be: */
529 #define VT_VALMASK 0x00ff
530 #define VT_CONST 0x00f0 /* constant in vc
531 (must be first non register value) */
532 #define VT_LLOCAL 0x00f1 /* lvalue, offset on stack */
533 #define VT_LOCAL 0x00f2 /* offset on stack */
534 #define VT_CMP 0x00f3 /* the value is stored in processor flags (in vc) */
535 #define VT_JMP 0x00f4 /* value is the consequence of jmp true (even) */
536 #define VT_JMPI 0x00f5 /* value is the consequence of jmp false (odd) */
537 #define VT_LVAL 0x0100 /* var is an lvalue */
538 #define VT_SYM 0x0200 /* a symbol value is added */
539 #define VT_MUSTCAST 0x0400 /* value must be casted to be correct (used for
540 char/short stored in integer registers) */
541 #define VT_MUSTBOUND 0x0800 /* bound checking must be done before
542 dereferencing value */
543 #define VT_BOUNDED 0x8000 /* value is bounded. The address of the
544 bounding function call point is in vc */
545 #define VT_LVAL_BYTE 0x1000 /* lvalue is a byte */
546 #define VT_LVAL_SHORT 0x2000 /* lvalue is a short */
547 #define VT_LVAL_UNSIGNED 0x4000 /* lvalue is unsigned */
548 #define VT_LVAL_TYPE (VT_LVAL_BYTE | VT_LVAL_SHORT | VT_LVAL_UNSIGNED)
550 /* types */
551 #define VT_INT 0 /* integer type */
552 #define VT_BYTE 1 /* signed byte type */
553 #define VT_SHORT 2 /* short type */
554 #define VT_VOID 3 /* void type */
555 #define VT_PTR 4 /* pointer */
556 #define VT_ENUM 5 /* enum definition */
557 #define VT_FUNC 6 /* function type */
558 #define VT_STRUCT 7 /* struct/union definition */
559 #define VT_FLOAT 8 /* IEEE float */
560 #define VT_DOUBLE 9 /* IEEE double */
561 #define VT_LDOUBLE 10 /* IEEE long double */
562 #define VT_BOOL 11 /* ISOC99 boolean type */
563 #define VT_LLONG 12 /* 64 bit integer */
564 #define VT_LONG 13 /* long integer (NEVER USED as type, only
565 during parsing) */
566 #define VT_BTYPE 0x000f /* mask for basic type */
567 #define VT_UNSIGNED 0x0010 /* unsigned type */
568 #define VT_ARRAY 0x0020 /* array type (also has VT_PTR) */
569 #define VT_BITFIELD 0x0040 /* bitfield modifier */
570 #define VT_CONSTANT 0x0800 /* const modifier */
571 #define VT_VOLATILE 0x1000 /* volatile modifier */
572 #define VT_SIGNED 0x2000 /* signed type */
574 /* storage */
575 #define VT_EXTERN 0x00000080 /* extern definition */
576 #define VT_STATIC 0x00000100 /* static variable */
577 #define VT_TYPEDEF 0x00000200 /* typedef definition */
578 #define VT_INLINE 0x00000400 /* inline definition */
579 #define VT_IMPORT 0x00004000 /* win32: extern data imported from dll */
581 #define VT_STRUCT_SHIFT 16 /* shift for bitfield shift values */
583 /* type mask (except storage) */
584 #define VT_STORAGE (VT_EXTERN | VT_STATIC | VT_TYPEDEF | VT_INLINE | VT_IMPORT)
585 #define VT_TYPE (~(VT_STORAGE))
587 /* token values */
589 /* warning: the following compare tokens depend on i386 asm code */
590 #define TOK_ULT 0x92
591 #define TOK_UGE 0x93
592 #define TOK_EQ 0x94
593 #define TOK_NE 0x95
594 #define TOK_ULE 0x96
595 #define TOK_UGT 0x97
596 #define TOK_Nset 0x98
597 #define TOK_Nclear 0x99
598 #define TOK_LT 0x9c
599 #define TOK_GE 0x9d
600 #define TOK_LE 0x9e
601 #define TOK_GT 0x9f
603 #define TOK_LAND 0xa0
604 #define TOK_LOR 0xa1
606 #define TOK_DEC 0xa2
607 #define TOK_MID 0xa3 /* inc/dec, to void constant */
608 #define TOK_INC 0xa4
609 #define TOK_UDIV 0xb0 /* unsigned division */
610 #define TOK_UMOD 0xb1 /* unsigned modulo */
611 #define TOK_PDIV 0xb2 /* fast division with undefined rounding for pointers */
612 #define TOK_CINT 0xb3 /* number in tokc */
613 #define TOK_CCHAR 0xb4 /* char constant in tokc */
614 #define TOK_STR 0xb5 /* pointer to string in tokc */
615 #define TOK_TWOSHARPS 0xb6 /* ## preprocessing token */
616 #define TOK_LCHAR 0xb7
617 #define TOK_LSTR 0xb8
618 #define TOK_CFLOAT 0xb9 /* float constant */
619 #define TOK_LINENUM 0xba /* line number info */
620 #define TOK_CDOUBLE 0xc0 /* double constant */
621 #define TOK_CLDOUBLE 0xc1 /* long double constant */
622 #define TOK_UMULL 0xc2 /* unsigned 32x32 -> 64 mul */
623 #define TOK_ADDC1 0xc3 /* add with carry generation */
624 #define TOK_ADDC2 0xc4 /* add with carry use */
625 #define TOK_SUBC1 0xc5 /* add with carry generation */
626 #define TOK_SUBC2 0xc6 /* add with carry use */
627 #define TOK_CUINT 0xc8 /* unsigned int constant */
628 #define TOK_CLLONG 0xc9 /* long long constant */
629 #define TOK_CULLONG 0xca /* unsigned long long constant */
630 #define TOK_ARROW 0xcb
631 #define TOK_DOTS 0xcc /* three dots */
632 #define TOK_SHR 0xcd /* unsigned shift right */
633 #define TOK_PPNUM 0xce /* preprocessor number */
635 #define TOK_SHL 0x01 /* shift left */
636 #define TOK_SAR 0x02 /* signed shift right */
638 /* assignement operators : normal operator or 0x80 */
639 #define TOK_A_MOD 0xa5
640 #define TOK_A_AND 0xa6
641 #define TOK_A_MUL 0xaa
642 #define TOK_A_ADD 0xab
643 #define TOK_A_SUB 0xad
644 #define TOK_A_DIV 0xaf
645 #define TOK_A_XOR 0xde
646 #define TOK_A_OR 0xfc
647 #define TOK_A_SHL 0x81
648 #define TOK_A_SAR 0x82
650 #ifndef offsetof
651 #define offsetof(type, field) ((size_t) &((type *)0)->field)
652 #endif
654 #ifndef countof
655 #define countof(tab) (sizeof(tab) / sizeof((tab)[0]))
656 #endif
658 #define TOK_EOF (-1) /* end of file */
659 #define TOK_LINEFEED 10 /* line feed */
661 /* all identificators and strings have token above that */
662 #define TOK_IDENT 256
664 /* only used for i386 asm opcodes definitions */
665 #define DEF_ASM(x) DEF(TOK_ASM_ ## x, #x)
667 #define DEF_BWL(x) \
668 DEF(TOK_ASM_ ## x ## b, #x "b") \
669 DEF(TOK_ASM_ ## x ## w, #x "w") \
670 DEF(TOK_ASM_ ## x ## l, #x "l") \
671 DEF(TOK_ASM_ ## x, #x)
673 #define DEF_WL(x) \
674 DEF(TOK_ASM_ ## x ## w, #x "w") \
675 DEF(TOK_ASM_ ## x ## l, #x "l") \
676 DEF(TOK_ASM_ ## x, #x)
678 #define DEF_FP1(x) \
679 DEF(TOK_ASM_ ## f ## x ## s, "f" #x "s") \
680 DEF(TOK_ASM_ ## fi ## x ## l, "fi" #x "l") \
681 DEF(TOK_ASM_ ## f ## x ## l, "f" #x "l") \
682 DEF(TOK_ASM_ ## fi ## x ## s, "fi" #x "s")
684 #define DEF_FP(x) \
685 DEF(TOK_ASM_ ## f ## x, "f" #x ) \
686 DEF(TOK_ASM_ ## f ## x ## p, "f" #x "p") \
687 DEF_FP1(x)
689 #define DEF_ASMTEST(x) \
690 DEF_ASM(x ## o) \
691 DEF_ASM(x ## no) \
692 DEF_ASM(x ## b) \
693 DEF_ASM(x ## c) \
694 DEF_ASM(x ## nae) \
695 DEF_ASM(x ## nb) \
696 DEF_ASM(x ## nc) \
697 DEF_ASM(x ## ae) \
698 DEF_ASM(x ## e) \
699 DEF_ASM(x ## z) \
700 DEF_ASM(x ## ne) \
701 DEF_ASM(x ## nz) \
702 DEF_ASM(x ## be) \
703 DEF_ASM(x ## na) \
704 DEF_ASM(x ## nbe) \
705 DEF_ASM(x ## a) \
706 DEF_ASM(x ## s) \
707 DEF_ASM(x ## ns) \
708 DEF_ASM(x ## p) \
709 DEF_ASM(x ## pe) \
710 DEF_ASM(x ## np) \
711 DEF_ASM(x ## po) \
712 DEF_ASM(x ## l) \
713 DEF_ASM(x ## nge) \
714 DEF_ASM(x ## nl) \
715 DEF_ASM(x ## ge) \
716 DEF_ASM(x ## le) \
717 DEF_ASM(x ## ng) \
718 DEF_ASM(x ## nle) \
719 DEF_ASM(x ## g)
721 #define TOK_ASM_int TOK_INT
723 enum tcc_token {
724 TOK_LAST = TOK_IDENT - 1,
725 #define DEF(id, str) id,
726 #include "tcctok.h"
727 #undef DEF
730 #define TOK_UIDENT TOK_DEFINE
732 #ifdef _WIN32
733 #define snprintf _snprintf
734 #define vsnprintf _vsnprintf
735 #ifndef __GNUC__
736 #define strtold (long double)strtod
737 #define strtof (float)strtod
738 #define strtoll (long long)strtol
739 #endif
740 #elif defined(TCC_UCLIBC) || defined(__FreeBSD__) || defined(__DragonFly__) \
741 || defined(__OpenBSD__)
742 /* currently incorrect */
743 long double strtold(const char *nptr, char **endptr)
745 return (long double)strtod(nptr, endptr);
747 float strtof(const char *nptr, char **endptr)
749 return (float)strtod(nptr, endptr);
751 #else
752 /* XXX: need to define this to use them in non ISOC99 context */
753 extern float strtof (const char *__nptr, char **__endptr);
754 extern long double strtold (const char *__nptr, char **__endptr);
755 #endif
757 #ifdef _WIN32
758 #define IS_PATHSEP(c) (c == '/' || c == '\\')
759 #define IS_ABSPATH(p) (IS_PATHSEP(p[0]) || (p[0] && p[1] == ':' && IS_PATHSEP(p[2])))
760 #define PATHCMP stricmp
761 #else
762 #define IS_PATHSEP(c) (c == '/')
763 #define IS_ABSPATH(p) IS_PATHSEP(p[0])
764 #define PATHCMP strcmp
765 #endif
767 void error(const char *fmt, ...);
768 void error_noabort(const char *fmt, ...);
769 void warning(const char *fmt, ...);
771 void tcc_set_lib_path_w32(TCCState *s);
772 int tcc_set_flag(TCCState *s, const char *flag_name, int value);
773 void tcc_print_stats(TCCState *s, int64_t total_time);
775 void tcc_free(void *ptr);
776 void *tcc_malloc(unsigned long size);
777 void *tcc_mallocz(unsigned long size);
778 void *tcc_realloc(void *ptr, unsigned long size);
779 char *tcc_strdup(const char *str);
781 char *tcc_basename(const char *name);
782 char *tcc_fileextension (const char *name);
783 char *pstrcpy(char *buf, int buf_size, const char *s);
784 char *pstrcat(char *buf, int buf_size, const char *s);
785 void dynarray_add(void ***ptab, int *nb_ptr, void *data);
786 void dynarray_reset(void *pp, int *n);
788 #ifdef CONFIG_TCC_BACKTRACE
789 extern int num_callers;
790 extern const char **rt_bound_error_msg;
791 #endif
793 /* true if float/double/long double type */
794 static inline int is_float(int t)
796 int bt;
797 bt = t & VT_BTYPE;
798 return bt == VT_LDOUBLE || bt == VT_DOUBLE || bt == VT_FLOAT;
801 /* space exlcuding newline */
802 static inline int is_space(int ch)
804 return ch == ' ' || ch == '\t' || ch == '\v' || ch == '\f' || ch == '\r';