Subversion Repositories Kolibri OS

Rev

Rev 8157 | Rev 9513 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

  1. /*
  2.  *  TCC - Tiny C Compiler
  3.  *
  4.  *  Copyright (c) 2001-2004 Fabrice Bellard
  5.  *
  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.
  10.  *
  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.
  15.  *
  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
  19.  */
  20.  
  21. #ifndef _TCC_H
  22. #define _TCC_H
  23.  
  24. #define _GNU_SOURCE
  25. #include "config.h"
  26.  
  27. #include <stdlib.h>
  28. #include <stdio.h>
  29. #include <stdarg.h>
  30. #include <string.h>
  31. #include <errno.h>
  32. #include <math.h>
  33. #include <signal.h>
  34. #include <fcntl.h>
  35. #include <setjmp.h>
  36. #include <time.h>
  37. #include <sys/stat.h>          /* stat() */
  38.  
  39. #ifdef CONFIG_TCCASSERT
  40. #include <assert.h>
  41. #define TCC_ASSERT(ex) assert(ex)
  42. #else
  43. #define TCC_ASSERT(ex)
  44. #endif
  45.  
  46. #ifdef TCC_TARGET_KX
  47. #ifndef TCC_TARGET_MEOS
  48. #define TCC_TARGET_MEOS
  49. #endif
  50. #endif
  51.  
  52. #ifndef _WIN32
  53. # include <unistd.h>
  54. # include <sys/time.h>
  55. # ifndef TCC_TARGET_MEOS
  56. # include <sys/ucontext.h>
  57. # include <sys/mman.h>
  58. # endif
  59. # ifndef CONFIG_TCC_STATIC
  60. #  include <dlfcn.h>
  61. # endif
  62. /* XXX: need to define this to use them in non ISOC99 context */
  63.  extern float strtof (const char *__nptr, char **__endptr);
  64.  extern long double strtold (const char *__nptr, char **__endptr);
  65. #else /* on _WIN32: */
  66. # include <windows.h>
  67. # include <sys/timeb.h>
  68. # include <io.h> /* open, close etc. */
  69. # include <direct.h> /* getcwd */
  70. # ifdef __GNUC__
  71. #  include <stdint.h>
  72. # endif
  73. # define inline __inline
  74. # define inp next_inp
  75. # define snprintf _snprintf
  76. # define vsnprintf _vsnprintf
  77. # ifndef __GNUC__
  78. #  define strtold (long double)strtod
  79. #  define strtof (float)strtod
  80. #  define strtoll _strtoi64
  81. #  define strtoull _strtoui64
  82. # endif
  83. # ifdef LIBTCC_AS_DLL
  84. #  define LIBTCCAPI __declspec(dllexport)
  85. #  define PUB_FUNC LIBTCCAPI
  86. # endif
  87. # ifdef _MSC_VER
  88. #  pragma warning (disable : 4244)  // conversion from 'uint64_t' to 'int', possible loss of data
  89. #  pragma warning (disable : 4267)  // conversion from 'size_t' to 'int', possible loss of data
  90. #  pragma warning (disable : 4996)  // The POSIX name for this item is deprecated. Instead, use the ISO C and C++ conformant name
  91. #  pragma warning (disable : 4018)  // signed/unsigned mismatch
  92. #  pragma warning (disable : 4146)  // unary minus operator applied to unsigned type, result still unsigned
  93. # endif
  94. #endif
  95.  
  96. #ifndef O_BINARY
  97. # define O_BINARY 0
  98. #endif
  99.  
  100. #ifdef __GNUC__
  101. # define NORETURN __attribute__ ((noreturn))
  102. #elif defined _MSC_VER
  103. # define NORETURN __declspec(noreturn)
  104. #else
  105. # define NORETURN
  106. #endif
  107.  
  108. #ifdef _WIN32
  109. # define IS_DIRSEP(c) (c == '/' || c == '\\')
  110. # define IS_ABSPATH(p) (IS_DIRSEP(p[0]) || (p[0] && p[1] == ':' && IS_DIRSEP(p[2])))
  111. # define PATHCMP stricmp
  112. # define PATH_NOCASE
  113. #else
  114. # define IS_DIRSEP(c) (c == '/')
  115. # define IS_ABSPATH(p) IS_DIRSEP(p[0])
  116. # define PATHCMP strcmp
  117. #endif
  118.  
  119. #if defined(TCC_TARGET_PE)||defined(TCC_TARGET_MEOS)
  120. #define PATHSEP ';'
  121. #else
  122. #define PATHSEP ':'
  123. #endif
  124.  
  125. #include "elf.h"
  126. #if defined(TCC_TARGET_ARM64) || defined(TCC_TARGET_X86_64)
  127. # define ELFCLASSW ELFCLASS64
  128. # define ElfW(type) Elf##64##_##type
  129. # define ELFW(type) ELF##64##_##type
  130. # define ElfW_Rel ElfW(Rela)
  131. # define SHT_RELX SHT_RELA
  132. # define REL_SECTION_FMT ".rela%s"
  133. /* XXX: DLL with PLT would only work with x86-64 for now */
  134. # define TCC_OUTPUT_DLL_WITH_PLT
  135. #else
  136. # define ELFCLASSW ELFCLASS32
  137. # define ElfW(type) Elf##32##_##type
  138. # define ELFW(type) ELF##32##_##type
  139. # define ElfW_Rel ElfW(Rel)
  140. # define SHT_RELX SHT_REL
  141. # define REL_SECTION_FMT ".rel%s"
  142. #endif
  143.  
  144. /* target address type */
  145. #define addr_t ElfW(Addr)
  146.  
  147. #include "stab.h"
  148. #include "libtcc.h"
  149.  
  150. static inline uint16_t read16le(unsigned char *p)
  151. {
  152.     return p[0] | (uint16_t)p[1] << 8;
  153. }
  154.  
  155. static inline void write16le(unsigned char *p, uint16_t x)
  156. {
  157.     p[0] = x & 255;
  158.     p[1] = x >> 8 & 255;
  159. }
  160.  
  161. static inline uint32_t read32le(unsigned char *p)
  162. {
  163.   return (p[0] | (uint32_t)p[1] << 8 |
  164.           (uint32_t)p[2] << 16 | (uint32_t)p[3] << 24);
  165. }
  166.  
  167. static inline void write32le(unsigned char *p, uint32_t x)
  168. {
  169.     p[0] = x & 255;
  170.     p[1] = x >> 8 & 255;
  171.     p[2] = x >> 16 & 255;
  172.     p[3] = x >> 24 & 255;
  173. }
  174.  
  175. static inline uint64_t read64le(unsigned char *p)
  176. {
  177.   return (p[0] | (uint64_t)p[1] << 8 |
  178.           (uint64_t)p[2] << 16 | (uint64_t)p[3] << 24 |
  179.           (uint64_t)p[4] << 32 | (uint64_t)p[5] << 40 |
  180.           (uint64_t)p[6] << 48 | (uint64_t)p[7] << 56);
  181. }
  182.  
  183. static inline void write64le(unsigned char *p, uint64_t x)
  184. {
  185.     p[0] = x & 255;
  186.     p[1] = x >> 8 & 255;
  187.     p[2] = x >> 16 & 255;
  188.     p[3] = x >> 24 & 255;
  189.     p[4] = x >> 32 & 255;
  190.     p[5] = x >> 40 & 255;
  191.     p[6] = x >> 48 & 255;
  192.     p[7] = x >> 56 & 255;
  193. }
  194.  
  195. /* parser debug */
  196. /* #define PARSE_DEBUG */
  197. /* preprocessor debug */
  198. /* #define PP_DEBUG */
  199. /* include file debug */
  200. /* #define INC_DEBUG */
  201. /* memory leak debug */
  202. /* #define MEM_DEBUG */
  203. /* assembler debug */
  204. /* #define ASM_DEBUG */
  205.  
  206. /* target selection */
  207. /* #define TCC_TARGET_I386   *//* i386 code generator */
  208. /* #define TCC_TARGET_ARM    *//* ARMv4 code generator */
  209. /* #define TCC_TARGET_ARM64  *//* ARMv8 code generator */
  210. /* #define TCC_TARGET_C67    *//* TMS320C67xx code generator */
  211. /* #define TCC_TARGET_X86_64 *//* x86-64 code generator */
  212.  
  213. /* default target is I386 */
  214. #if !defined(TCC_TARGET_I386) && !defined(TCC_TARGET_ARM) && \
  215.     !defined(TCC_TARGET_ARM64) && !defined(TCC_TARGET_C67) && \
  216.     !defined(TCC_TARGET_X86_64)
  217. #define TCC_TARGET_I386
  218. #endif
  219.  
  220. #if !defined(TCC_UCLIBC) && !defined(TCC_TARGET_ARM) && \
  221.     !defined(TCC_TARGET_ARM64) && !defined(TCC_TARGET_C67) && \
  222.     !defined(CONFIG_USE_LIBGCC)
  223. #define CONFIG_TCC_BCHECK /* enable bound checking code */
  224. #endif
  225.  
  226. /* define it to include assembler support */
  227. #if !defined(TCC_TARGET_ARM) && !defined(TCC_TARGET_ARM64) && \
  228.     !defined(TCC_TARGET_C67)
  229. #define CONFIG_TCC_ASM
  230. #endif
  231.  
  232. /* object format selection */
  233. #if defined(TCC_TARGET_C67)
  234. #define TCC_TARGET_COFF
  235. #endif
  236.  
  237. /* only native compiler supports -run */
  238. #if defined _WIN32 && defined TCC_TARGET_PE
  239. # if (defined __i386__ || defined _X86_) && defined TCC_TARGET_I386
  240. #  define TCC_IS_NATIVE
  241. # elif (defined __x86_64__ || defined _AMD64_) && defined TCC_TARGET_X86_64
  242. #  define TCC_IS_NATIVE
  243. # elif defined __arm__ && defined TCC_TARGET_ARM
  244. #  define TCC_IS_NATIVE
  245. # elif defined __aarch64__ && defined TCC_TARGET_ARM64
  246. #  define TCC_IS_NATIVE
  247. # endif
  248. #endif
  249.  
  250. #if defined TCC_IS_NATIVE && !defined CONFIG_TCCBOOT
  251. # define CONFIG_TCC_BACKTRACE
  252. #endif
  253.  
  254. /* ------------ path configuration ------------ */
  255.  
  256. #ifndef CONFIG_SYSROOT
  257. # define CONFIG_SYSROOT ""
  258. #endif
  259. #ifndef CONFIG_TCCDIR
  260. # define CONFIG_TCCDIR "."
  261. #endif
  262. #ifndef CONFIG_LDDIR
  263. # ifdef TCC_TARGET_X86_64
  264. #   define CONFIG_LDDIR "lib64"
  265. # else
  266. #   define CONFIG_LDDIR "lib"
  267. # endif
  268. #endif
  269.  
  270. #ifdef CONFIG_MULTIARCHDIR
  271. # define USE_MUADIR(s) s "/" CONFIG_MULTIARCHDIR
  272. # define ALSO_MUADIR(s) s "/" CONFIG_MULTIARCHDIR ":" s
  273. #else
  274. # define USE_MUADIR(s) s
  275. # define ALSO_MUADIR(s) s
  276. #endif
  277.  
  278. /* path to find crt1.o, crti.o and crtn.o */
  279. #ifndef CONFIG_TCC_CRTPREFIX
  280. # if defined (TCC_TARGET_MEOS)
  281. #   define CONFIG_TCC_CRTPREFIX "{B}/lib"
  282. # else
  283. #   define CONFIG_TCC_CRTPREFIX USE_MUADIR(CONFIG_SYSROOT "/usr/" CONFIG_LDDIR)
  284. # endif
  285. #endif
  286.  
  287. /* Below: {B} is substituted by CONFIG_TCCDIR (rsp. -B option) */
  288.  
  289. /* system include paths */
  290. #ifndef CONFIG_TCC_SYSINCLUDEPATHS
  291. # ifdef TCC_TARGET_PE
  292. #  define CONFIG_TCC_SYSINCLUDEPATHS "{B}/include;{B}/include/winapi"
  293. # elif defined(TCC_TARGET_MEOS)
  294. #  define CONFIG_TCC_SYSINCLUDEPATHS "{B}/include"
  295. # else
  296. #  define CONFIG_TCC_SYSINCLUDEPATHS \
  297.         "{B}/include" \
  298.     ":" ALSO_MUADIR(CONFIG_SYSROOT "/usr/local/include") \
  299.     ":" ALSO_MUADIR(CONFIG_SYSROOT "/usr/include")
  300. # endif
  301. #endif
  302.  
  303. /* library search paths */
  304. #ifndef CONFIG_TCC_LIBPATHS
  305. # if defined (TCC_TARGET_PE) || defined (TCC_TARGET_MEOS)
  306. #  define CONFIG_TCC_LIBPATHS "{B}/lib"
  307. # else
  308. #  define CONFIG_TCC_LIBPATHS \
  309.         ALSO_MUADIR(CONFIG_SYSROOT "/usr/" CONFIG_LDDIR) \
  310.     ":" ALSO_MUADIR(CONFIG_SYSROOT "/" CONFIG_LDDIR) \
  311.     ":" ALSO_MUADIR(CONFIG_SYSROOT "/usr/local/" CONFIG_LDDIR)
  312. # endif
  313. #endif
  314.  
  315. /* name of ELF interpreter */
  316. #ifndef CONFIG_TCC_ELFINTERP
  317. # if defined __FreeBSD__
  318. #  define CONFIG_TCC_ELFINTERP "/libexec/ld-elf.so.1"
  319. # elif defined __FreeBSD_kernel__
  320. #  if defined(TCC_TARGET_X86_64)
  321. #   define CONFIG_TCC_ELFINTERP "/lib/ld-kfreebsd-x86-64.so.1"
  322. #  else
  323. #   define CONFIG_TCC_ELFINTERP "/lib/ld.so.1"
  324. #  endif
  325. # elif defined __DragonFly__
  326. #  define CONFIG_TCC_ELFINTERP "/usr/libexec/ld-elf.so.2"
  327. # elif defined __NetBSD__
  328. #  define CONFIG_TCC_ELFINTERP "/usr/libexec/ld.elf_so"
  329. # elif defined __GNU__
  330. #  define CONFIG_TCC_ELFINTERP "/lib/ld.so"
  331. # elif defined(TCC_TARGET_PE)
  332. #  define CONFIG_TCC_ELFINTERP "-"
  333. # elif defined(TCC_UCLIBC)
  334. #  define CONFIG_TCC_ELFINTERP "/lib/ld-uClibc.so.0" /* is there a uClibc for x86_64 ? */
  335. # elif defined TCC_TARGET_ARM64
  336. #  define CONFIG_TCC_ELFINTERP "/lib/ld-linux-aarch64.so.1"
  337. # elif defined(TCC_TARGET_X86_64)
  338. #  define CONFIG_TCC_ELFINTERP "/lib64/ld-linux-x86-64.so.2"
  339. # elif !defined(TCC_ARM_EABI)
  340. #  define CONFIG_TCC_ELFINTERP "/lib/ld-linux.so.2"
  341. # endif
  342. #endif
  343.  
  344. /* var elf_interp dans *-gen.c */
  345. #ifdef CONFIG_TCC_ELFINTERP
  346. # define DEFAULT_ELFINTERP(s) CONFIG_TCC_ELFINTERP
  347. #else
  348. # define DEFAULT_ELFINTERP(s) default_elfinterp(s)
  349. #endif
  350.  
  351. /* library to use with CONFIG_USE_LIBGCC instead of libtcc1.a */
  352. #define TCC_LIBGCC USE_MUADIR(CONFIG_SYSROOT "/" CONFIG_LDDIR) "/libgcc_s.so.1"
  353.  
  354. /* -------------------------------------------- */
  355. /* include the target specific definitions */
  356.  
  357. #ifdef TCC_TARGET_COFF
  358. # include "coff.h"
  359. #endif
  360.  
  361.  
  362. #define TARGET_DEFS_ONLY
  363. #ifdef TCC_TARGET_I386
  364. # include "i386-gen.c"
  365. #endif
  366. #ifdef TCC_TARGET_X86_64
  367. # include "x86_64-gen.c"
  368. #endif
  369. #ifdef TCC_TARGET_ARM
  370. # include "arm-gen.c"
  371. #endif
  372. #ifdef TCC_TARGET_ARM64
  373. # include "arm64-gen.c"
  374. #endif
  375. #ifdef TCC_TARGET_C67
  376. # include "c67-gen.c"
  377. #endif
  378. #undef TARGET_DEFS_ONLY
  379.  
  380. /* -------------------------------------------- */
  381.  
  382. #define INCLUDE_STACK_SIZE  32
  383. #define IFDEF_STACK_SIZE    64
  384. #define VSTACK_SIZE         256
  385. #define STRING_MAX_SIZE     1024
  386. #define TOKSTR_MAX_SIZE     256
  387. #define PACK_STACK_SIZE     8
  388.  
  389. #define TOK_HASH_SIZE       16384 /* must be a power of two */
  390. #define TOK_ALLOC_INCR      512  /* must be a power of two */
  391. #define TOK_MAX_SIZE        4 /* token max size in int unit when stored in string */
  392. #define TOKSYM_TAL_SIZE     (768 * 1024) /* allocator for tiny TokenSym in table_ident */
  393. #define TOKSTR_TAL_SIZE     (768 * 1024) /* allocator for tiny TokenString instances */
  394. #define CSTR_TAL_SIZE       (256 * 1024) /* allocator for tiny CString instances */
  395. #define TOKSYM_TAL_LIMIT    256 /* prefer unique limits to distinguish allocators debug msgs */
  396. #define TOKSTR_TAL_LIMIT    128 /* 32 * sizeof(int) */
  397. #define CSTR_TAL_LIMIT      1024
  398.  
  399. /* token symbol management */
  400. typedef struct TokenSym {
  401.     struct TokenSym *hash_next;
  402.     struct Sym *sym_define; /* direct pointer to define */
  403.     struct Sym *sym_label; /* direct pointer to label */
  404.     struct Sym *sym_struct; /* direct pointer to structure */
  405.     struct Sym *sym_identifier; /* direct pointer to identifier */
  406.     int tok; /* token number */
  407.     int len;
  408.     char str[1];
  409. } TokenSym;
  410.  
  411. #ifdef TCC_TARGET_PE
  412. typedef unsigned short nwchar_t;
  413. #else
  414. typedef int nwchar_t;
  415. #endif
  416.  
  417. typedef struct CString {
  418.     int size; /* size in bytes */
  419.     void *data; /* either 'char *' or 'nwchar_t *' */
  420.     int size_allocated;
  421.     void *data_allocated; /* if non NULL, data has been malloced */
  422. } CString;
  423.  
  424. /* type definition */
  425. typedef struct CType {
  426.     int t;
  427.     struct Sym *ref;
  428. } CType;
  429.  
  430. /* constant value */
  431. typedef union CValue {
  432.     long double ld;
  433.     double d;
  434.     float f;
  435.     uint64_t i;
  436.     struct {
  437.         int size;
  438.         const void *data;
  439.         void *data_allocated;
  440.     } str;
  441.     int tab[LDOUBLE_SIZE/4];
  442. } CValue;
  443.  
  444. /* value on stack */
  445. typedef struct SValue {
  446.     CType type;      /* type */
  447.     unsigned short r;      /* register + flags */
  448.     unsigned short r2;     /* second register, used for 'long long'
  449.                               type. If not used, set to VT_CONST */
  450.     CValue c;              /* constant, if VT_CONST */
  451.     struct Sym *sym;       /* symbol, if (VT_SYM | VT_CONST) */
  452. } SValue;
  453.  
  454. struct Attribute {
  455.     unsigned
  456.         func_call     : 3, /* calling convention (0..5), see below */
  457.         aligned       : 5, /* alignement (0..16) */
  458.         packed        : 1,
  459.         func_export   : 1,
  460.         func_import   : 1,
  461.         func_args     : 5,
  462.         func_proto    : 1,
  463.         mode          : 4,
  464.         weak          : 1,
  465.         visibility    : 2,
  466.         fill          : 8; // 8 bits left to fit well in union below
  467. };
  468.  
  469. /* GNUC attribute definition */
  470. typedef struct AttributeDef {
  471.     struct Attribute a;
  472.     struct Section *section;
  473.     int alias_target;    /* token */
  474.     int asm_label;    /* associated asm label */
  475. } AttributeDef;
  476.  
  477. /* symbol management */
  478. typedef struct Sym {
  479.     int v;    /* symbol token */
  480.     int asm_label;    /* associated asm label */
  481.     union {
  482.         long r;    /* associated register */
  483.         struct Attribute a;
  484.     };
  485.     union {
  486.         long c;    /* associated number */
  487.         int *d;   /* define token stream */
  488.     };
  489.     CType type;    /* associated type */
  490.     union {
  491.         struct Sym *next; /* next related symbol */
  492.         long jnext; /* next jump label */
  493.     };
  494.     struct Sym *prev; /* prev symbol in stack */
  495.     struct Sym *prev_tok; /* previous symbol for this token */
  496. } Sym;
  497.  
  498. /* section definition */
  499. /* XXX: use directly ELF structure for parameters ? */
  500. /* special flag to indicate that the section should not be linked to
  501.    the other ones */
  502. #define SHF_PRIVATE 0x80000000
  503.  
  504. /* special flag, too */
  505. #define SECTION_ABS ((void *)1)
  506.  
  507. typedef struct Section {
  508.     unsigned long data_offset; /* current data offset */
  509.     unsigned char *data;       /* section data */
  510.     unsigned long data_allocated; /* used for realloc() handling */
  511.     int sh_name;             /* elf section name (only used during output) */
  512.     int sh_num;              /* elf section number */
  513.     int sh_type;             /* elf section type */
  514.     int sh_flags;            /* elf section flags */
  515.     int sh_info;             /* elf section info */
  516.     int sh_addralign;        /* elf section alignment */
  517.     int sh_entsize;          /* elf entry size */
  518.     unsigned long sh_size;   /* section size (only used during output) */
  519.     addr_t sh_addr;          /* address at which the section is relocated */
  520.     unsigned long sh_offset; /* file offset */
  521.     int nb_hashed_syms;      /* used to resize the hash table */
  522.     struct Section *link;    /* link to another section */
  523.     struct Section *reloc;   /* corresponding section for relocation, if any */
  524.     struct Section *hash;     /* hash table for symbols */
  525.     struct Section *next;
  526.     char name[1];           /* section name */
  527. } Section;
  528.  
  529. typedef struct DLLReference {
  530.     int level;
  531.     void *handle;
  532.     char name[1];
  533. } DLLReference;
  534.  
  535. /* -------------------------------------------------- */
  536.  
  537. #define SYM_STRUCT     0x40000000 /* struct/union/enum symbol space */
  538. #define SYM_FIELD      0x20000000 /* struct/union field symbol space */
  539. #define SYM_FIRST_ANOM 0x10000000 /* first anonymous sym */
  540.  
  541. /* stored in 'Sym.c' field */
  542. #define FUNC_NEW       1 /* ansi function prototype */
  543. #define FUNC_OLD       2 /* old function prototype */
  544. #define FUNC_ELLIPSIS  3 /* ansi function prototype with ... */
  545.  
  546. /* stored in 'Sym.r' field */
  547. #define FUNC_CDECL     0 /* standard c call */
  548. #define FUNC_STDCALL   1 /* pascal c call */
  549. #define FUNC_FASTCALL1 2 /* first param in %eax */
  550. #define FUNC_FASTCALL2 3 /* first parameters in %eax, %edx */
  551. #define FUNC_FASTCALL3 4 /* first parameter in %eax, %edx, %ecx */
  552. #define FUNC_FASTCALLW 5 /* first parameter in %ecx, %edx */
  553.  
  554. /* field 'Sym.t' for macros */
  555. #define MACRO_OBJ      0 /* object like macro */
  556. #define MACRO_FUNC     1 /* function like macro */
  557.  
  558. /* field 'Sym.r' for C labels */
  559. #define LABEL_DEFINED  0 /* label is defined */
  560. #define LABEL_FORWARD  1 /* label is forward defined */
  561. #define LABEL_DECLARED 2 /* label is declared but never used */
  562.  
  563. /* type_decl() types */
  564. #define TYPE_ABSTRACT  1 /* type without variable */
  565. #define TYPE_DIRECT    2 /* type with variable */
  566.  
  567. #define IO_BUF_SIZE 8192
  568.  
  569. typedef struct BufferedFile {
  570.     uint8_t *buf_ptr;
  571.     uint8_t *buf_end;
  572.     int fd;
  573.     struct BufferedFile *prev;
  574.     int line_num;    /* current line number - here to simplify code */
  575.     int line_ref;    /* tcc -E: last printed line */
  576.     int ifndef_macro;  /* #ifndef macro / #endif search */
  577.     int ifndef_macro_saved; /* saved ifndef_macro */
  578.     int *ifdef_stack_ptr; /* ifdef_stack value at the start of the file */
  579.     int include_next_index; /* next search path */
  580.     char filename[1024];    /* filename */
  581.     unsigned char unget[4];
  582.     unsigned char buffer[1]; /* extra size for CH_EOB char */
  583. } BufferedFile;
  584.  
  585. #define CH_EOB   '\\'       /* end of buffer or '\0' char in file */
  586. #define CH_EOF   (-1)   /* end of file */
  587.  
  588. /* parsing state (used to save parser state to reparse part of the
  589.    source several times) */
  590. typedef struct ParseState {
  591.     const int *macro_ptr;
  592.     int line_num;
  593.     int tok;
  594.     CValue tokc;
  595. } ParseState;
  596.  
  597. /* used to record tokens */
  598. typedef struct TokenString {
  599.     int *str;
  600.     int len;
  601.     int allocated_len;
  602.     int last_line_num;
  603.     /* used to chain token-strings with begin/end_macro() */
  604.     struct TokenString *prev;
  605.     const int *prev_ptr;
  606.     char alloc;
  607. } TokenString;
  608.  
  609. /* inline functions */
  610. typedef struct InlineFunc {
  611.     TokenString func_str;
  612.     Sym *sym;
  613.     char filename[1];
  614. } InlineFunc;
  615.  
  616. /* include file cache, used to find files faster and also to eliminate
  617.    inclusion if the include file is protected by #ifndef ... #endif */
  618. typedef struct CachedInclude {
  619.     int ifndef_macro;
  620.     int hash_next; /* -1 if none */
  621.     char filename[1]; /* path specified in #include */
  622. } CachedInclude;
  623.  
  624. #define CACHED_INCLUDES_HASH_SIZE 512
  625.  
  626. #ifdef CONFIG_TCC_ASM
  627. typedef struct ExprValue {
  628.     uint32_t v;
  629.     Sym *sym;
  630. } ExprValue;
  631.  
  632. #define MAX_ASM_OPERANDS 30
  633. typedef struct ASMOperand {
  634.     int id; /* GCC 3 optionnal identifier (0 if number only supported */
  635.     char *constraint;
  636.     char asm_str[16]; /* computed asm string for operand */
  637.     SValue *vt; /* C value of the expression */
  638.     int ref_index; /* if >= 0, gives reference to a output constraint */
  639.     int input_index; /* if >= 0, gives reference to an input constraint */
  640.     int priority; /* priority, used to assign registers */
  641.     int reg; /* if >= 0, register number used for this operand */
  642.     int is_llong; /* true if double register value */
  643.     int is_memory; /* true if memory operand */
  644.     int is_rw;     /* for '+' modifier */
  645. } ASMOperand;
  646. #endif
  647.  
  648. struct sym_attr {
  649.     unsigned long got_offset;
  650.     unsigned long plt_offset;
  651. #ifdef TCC_TARGET_ARM
  652.     unsigned char plt_thumb_stub:1;
  653. #endif
  654. };
  655.  
  656. typedef struct ParseArgsState
  657. {
  658.     int run;
  659.     int pthread;
  660.     int filetype;
  661.     CString linker_arg; /* collect -Wl options for input such as "-Wl,-rpath -Wl,<path>" */
  662. } ParseArgsState;
  663.  
  664. #if !defined(MEM_DEBUG)
  665. #define tal_free(al, p) tal_free_impl(al, p)
  666. #define tal_realloc(al, p, size) tal_realloc_impl(&al, p, size)
  667. #define TAL_DEBUG_PARAMS
  668. #else
  669. #define TAL_DEBUG 1
  670. #define tal_free(al, p) tal_free_impl(al, p, __FILE__, __LINE__)
  671. #define tal_realloc(al, p, size) tal_realloc_impl(&al, p, size, __FILE__, __LINE__)
  672. #define TAL_DEBUG_PARAMS , const char *file, int line
  673. #define TAL_DEBUG_FILE_LEN 15
  674. #endif
  675. //#define TAL_INFO 1 /* collect and dump allocators stats */
  676.  
  677. typedef struct TinyAlloc {
  678.     size_t  limit;
  679.     size_t  size;
  680.     uint8_t *buffer;
  681.     uint8_t *p;
  682.     size_t  nb_allocs;
  683.     struct TinyAlloc *next, *top;
  684. #ifdef TAL_INFO
  685.     size_t  nb_peak;
  686.     size_t  nb_total;
  687.     size_t  nb_missed;
  688.     uint8_t *peak_p;
  689. #endif
  690. } TinyAlloc;
  691.  
  692. typedef struct tal_header_t {
  693.     size_t  size;
  694. #ifdef TAL_DEBUG
  695.     int     line_num; /* negative line_num used for double free check */
  696.     char    file_name[TAL_DEBUG_FILE_LEN + 1];
  697. #endif
  698. } tal_header_t;
  699.  
  700. struct TCCState {
  701.  
  702.     int verbose; /* if true, display some information during compilation */
  703.     int nostdinc; /* if true, no standard headers are added */
  704.     int nostdlib; /* if true, no standard libraries are added */
  705.     int nocommon; /* if true, do not use common symbols for .bss data */
  706.     int static_link; /* if true, static linking is performed */
  707.     int rdynamic; /* if true, all symbols are exported */
  708.     int symbolic; /* if true, resolve symbols in the current module first */
  709.     int alacarte_link; /* if true, only link in referenced objects from archive */
  710.  
  711.     char *tcc_lib_path; /* CONFIG_TCCDIR or -B option */
  712.     char *soname; /* as specified on the command line (-soname) */
  713.     char *rpath; /* as specified on the command line (-Wl,-rpath=) */
  714.  
  715.     /* output type, see TCC_OUTPUT_XXX */
  716.     int output_type;
  717.     /* output format, see TCC_OUTPUT_FORMAT_xxx */
  718.     int output_format;
  719.  
  720.     /* C language options */
  721.     int char_is_unsigned;
  722.     int leading_underscore;
  723.     int ms_extensions;          /* allow nested named struct w/o identifier behave like unnamed */
  724.     int old_struct_init_code;   /* use old algorithm to init array in struct when there is no '{' used.
  725.                                    Liuux 2.4.26 can't find initrd when compiled with a new algorithm */
  726.     int dollars_in_identifiers; /* allows '$' char in indentifiers */
  727.     int normalize_inc_dirs;     /* remove non-existent or duplicate directories from include paths */
  728.  
  729.     /* warning switches */
  730.     int warn_write_strings;
  731.     int warn_unsupported;
  732.     int warn_error;
  733.     int warn_none;
  734.     int warn_implicit_function_declaration;
  735.  
  736.     /* compile with debug symbol (and use them if error during execution) */
  737.     int do_debug;
  738.     int do_strip;
  739. #ifdef CONFIG_TCC_BCHECK
  740.     /* compile with built-in memory and bounds checker */
  741.     int do_bounds_check;
  742. #endif
  743. #ifdef TCC_TARGET_ARM
  744.     enum float_abi float_abi; /* float ABI of the generated code*/
  745. #endif
  746.  
  747.     addr_t text_addr; /* address of text section */
  748.     int has_text_addr;
  749.  
  750.     unsigned long section_align; /* section alignment */
  751.  
  752.     char *init_symbol; /* symbols to call at load-time (not used currently) */
  753.     char *fini_symbol; /* symbols to call at unload-time (not used currently) */
  754.    
  755. #ifdef TCC_TARGET_I386
  756.     int seg_size; /* 32. Can be 16 with i386 assembler (.code16) */
  757. #endif
  758.  
  759.     /* array of all loaded dlls (including those referenced by loaded dlls) */
  760.     DLLReference **loaded_dlls;
  761.     int nb_loaded_dlls;
  762.  
  763.     /* include paths */
  764.     char **include_paths;
  765.     int nb_include_paths;
  766.  
  767.     char **sysinclude_paths;
  768.     int nb_sysinclude_paths;
  769.  
  770.     /* library paths */
  771.     char **library_paths;
  772.     int nb_library_paths;
  773.  
  774.     /* crt?.o object path */
  775.     char **crt_paths;
  776.     int nb_crt_paths;
  777.  
  778.     /* error handling */
  779.     void *error_opaque;
  780.     void (*error_func)(void *opaque, const char *msg);
  781.     int error_set_jmp_enabled;
  782.     jmp_buf error_jmp_buf;
  783.     int nb_errors;
  784.  
  785.     /* output file for preprocessing (-E) */
  786.     FILE *ppfp;
  787.     enum {
  788.         LINE_MACRO_OUTPUT_FORMAT_GCC,
  789.         LINE_MACRO_OUTPUT_FORMAT_NONE,
  790.         LINE_MACRO_OUTPUT_FORMAT_STD
  791.     } Pflag; /* -P switch */
  792.     char dflag; /* -dX value */
  793.     FILE *dffp;
  794.  
  795.     /* for -MD/-MF: collected dependencies for this compilation */
  796.     char **target_deps;
  797.     int nb_target_deps;
  798.  
  799.     /* compilation */
  800.     BufferedFile *include_stack[INCLUDE_STACK_SIZE];
  801.     BufferedFile **include_stack_ptr;
  802.  
  803.     int ifdef_stack[IFDEF_STACK_SIZE];
  804.     int *ifdef_stack_ptr;
  805.  
  806.     /* included files enclosed with #ifndef MACRO */
  807.     int cached_includes_hash[CACHED_INCLUDES_HASH_SIZE];
  808.     CachedInclude **cached_includes;
  809.     int nb_cached_includes;
  810.  
  811.     /* #pragma pack stack */
  812.     int pack_stack[PACK_STACK_SIZE];
  813.     int *pack_stack_ptr;
  814.     char **pragma_libs;
  815.     int nb_pragma_libs;
  816.  
  817.     /* inline functions are stored as token lists and compiled last
  818.        only if referenced */
  819.     struct InlineFunc **inline_fns;
  820.     int nb_inline_fns;
  821.  
  822.     /* sections */
  823.     Section **sections;
  824.     int nb_sections; /* number of sections, including first dummy section */
  825.  
  826.     Section **priv_sections;
  827.     int nb_priv_sections; /* number of private sections */
  828.  
  829.     /* got & plt handling */
  830.     Section *got;
  831.     Section *plt;
  832.     struct sym_attr *sym_attrs;
  833.     int nb_sym_attrs;
  834.     /* give the correspondance from symtab indexes to dynsym indexes */
  835.     int *symtab_to_dynsym;
  836.  
  837.     /* temporary dynamic symbol sections (for dll loading) */
  838.     Section *dynsymtab_section;
  839.     /* exported dynamic symbol section */
  840.     Section *dynsym;
  841.     /* copy of the gobal symtab_section variable */
  842.     Section *symtab;
  843.     /* tiny assembler state */
  844.     Sym *asm_labels;
  845.  
  846. #if defined (TCC_TARGET_PE) || defined (TCC_TARGET_MEOS)
  847.     /* PE info */
  848.     int pe_subsystem;
  849.     unsigned pe_file_align;
  850.     unsigned pe_stack_size;
  851. # ifdef TCC_TARGET_X86_64
  852.     Section *uw_pdata;
  853.     int uw_sym;
  854.     unsigned uw_offs;
  855. # endif
  856. #endif
  857.  
  858. #ifdef TCC_IS_NATIVE
  859.     const char *runtime_main;
  860.     /* for tcc_relocate */
  861.     void *runtime_mem;
  862. # ifdef HAVE_SELINUX
  863.     void *write_mem;
  864.     unsigned long mem_size;
  865. # endif
  866. #endif
  867.  
  868.     /* used by main and tcc_parse_args only */
  869.     char **files; /* files seen on command line */
  870.     int nb_files; /* number thereof */
  871.     int nb_libraries; /* number of libs thereof */
  872.     char *outfile; /* output filename */
  873.     char *option_m; /* only -m32/-m64 handled */
  874.     int print_search_dirs; /* option */
  875.     int option_r; /* option -r */
  876.     int option_C; /* option -C, keep comments when -E */
  877.     int do_bench; /* option -bench */
  878.     int gen_deps; /* option -MD  */
  879.     char *deps_outfile; /* option -MF */
  880. #if defined(TCC_TARGET_MEOS) && !defined (TCC_TARGET_KX)
  881.     int nobss; /* option -nobss, omit BSS section (KolibriOS-only) */
  882. #endif
  883.     ParseArgsState *parse_args_state;
  884. };
  885.  
  886. /* The current value can be: */
  887. #define VT_VALMASK   0x003f  /* mask for value location, register or: */
  888. #define VT_CONST     0x0030  /* constant in vc (must be first non register value) */
  889. #define VT_LLOCAL    0x0031  /* lvalue, offset on stack */
  890. #define VT_LOCAL     0x0032  /* offset on stack */
  891. #define VT_CMP       0x0033  /* the value is stored in processor flags (in vc) */
  892. #define VT_JMP       0x0034  /* value is the consequence of jmp true (even) */
  893. #define VT_JMPI      0x0035  /* value is the consequence of jmp false (odd) */
  894. #define VT_REF       0x0040  /* value is pointer to structure rather than address */
  895. #define VT_LVAL      0x0100  /* var is an lvalue */
  896. #define VT_SYM       0x0200  /* a symbol value is added */
  897. #define VT_MUSTCAST  0x0400  /* value must be casted to be correct (used for
  898.                                 char/short stored in integer registers) */
  899. #define VT_MUSTBOUND 0x0800  /* bound checking must be done before
  900.                                 dereferencing value */
  901. #define VT_BOUNDED   0x8000  /* value is bounded. The address of the
  902.                                 bounding function call point is in vc */
  903. #define VT_LVAL_BYTE     0x1000  /* lvalue is a byte */
  904. #define VT_LVAL_SHORT    0x2000  /* lvalue is a short */
  905. #define VT_LVAL_UNSIGNED 0x4000  /* lvalue is unsigned */
  906. #define VT_LVAL_TYPE     (VT_LVAL_BYTE | VT_LVAL_SHORT | VT_LVAL_UNSIGNED)
  907.  
  908. /* types */
  909. #define VT_BTYPE       0x000f  /* mask for basic type */
  910. #define VT_INT              0  /* integer type */
  911. #define VT_BYTE             1  /* signed byte type */
  912. #define VT_SHORT            2  /* short type */
  913. #define VT_VOID             3  /* void type */
  914. #define VT_PTR              4  /* pointer */
  915. #define VT_ENUM             5  /* enum definition */
  916. #define VT_FUNC             6  /* function type */
  917. #define VT_STRUCT           7  /* struct/union definition */
  918. #define VT_FLOAT            8  /* IEEE float */
  919. #define VT_DOUBLE           9  /* IEEE double */
  920. #define VT_LDOUBLE         10  /* IEEE long double */
  921. #define VT_BOOL            11  /* ISOC99 boolean type */
  922. #define VT_LLONG           12  /* 64 bit integer */
  923. #define VT_LONG            13  /* long integer (NEVER USED as type, only
  924.                                   during parsing) */
  925. #define VT_QLONG           14  /* 128-bit integer. Only used for x86-64 ABI */
  926. #define VT_QFLOAT          15  /* 128-bit float. Only used for x86-64 ABI */
  927. #define VT_UNSIGNED    0x0010  /* unsigned type */
  928. #define VT_ARRAY       0x0020  /* array type (also has VT_PTR) */
  929. #define VT_BITFIELD    0x0040  /* bitfield modifier */
  930. #define VT_CONSTANT    0x0800  /* const modifier */
  931. #define VT_VOLATILE    0x1000  /* volatile modifier */
  932. #define VT_DEFSIGN     0x2000  /* signed type */
  933. #define VT_VLA     0x00020000  /* VLA type (also has VT_PTR and VT_ARRAY) */
  934.  
  935. /* storage */
  936. #define VT_EXTERN  0x00000080  /* extern definition */
  937. #define VT_STATIC  0x00000100  /* static variable */
  938. #define VT_TYPEDEF 0x00000200  /* typedef definition */
  939. #define VT_INLINE  0x00000400  /* inline definition */
  940. #define VT_IMPORT  0x00004000  /* win32: extern data imported from dll */
  941. #define VT_EXPORT  0x00008000  /* win32: data exported from dll */
  942. #define VT_WEAK    0x00010000  /* weak symbol */
  943. #define VT_TLS     0x00040000  /* thread-local storage */
  944. #define VT_VIS_SHIFT    19     /* shift for symbol visibility, overlapping
  945.                                   bitfield values, because bitfields never
  946.                                   have linkage and hence never have
  947.                                   visibility.  */
  948. #define VT_VIS_SIZE      2     /* We have four visibilities.  */
  949. #define VT_VIS_MASK (((1 << VT_VIS_SIZE)-1) << VT_VIS_SHIFT)
  950.  
  951. #define VT_STRUCT_SHIFT 19     /* shift for bitfield shift values (max: 32 - 2*6) */
  952.  
  953.  
  954. /* type mask (except storage) */
  955. #define VT_STORAGE (VT_EXTERN | VT_STATIC | VT_TYPEDEF | VT_INLINE | VT_IMPORT | VT_EXPORT | VT_WEAK | VT_VIS_MASK)
  956. #define VT_TYPE (~(VT_STORAGE))
  957.  
  958. /* token values */
  959.  
  960. /* warning: the following compare tokens depend on i386 asm code */
  961. #define TOK_ULT 0x92
  962. #define TOK_UGE 0x93
  963. #define TOK_EQ  0x94
  964. #define TOK_NE  0x95
  965. #define TOK_ULE 0x96
  966. #define TOK_UGT 0x97
  967. #define TOK_Nset 0x98
  968. #define TOK_Nclear 0x99
  969. #define TOK_LT  0x9c
  970. #define TOK_GE  0x9d
  971. #define TOK_LE  0x9e
  972. #define TOK_GT  0x9f
  973.  
  974. #define TOK_LAND  0xa0
  975. #define TOK_LOR   0xa1
  976. #define TOK_DEC   0xa2
  977. #define TOK_MID   0xa3 /* inc/dec, to void constant */
  978. #define TOK_INC   0xa4
  979. #define TOK_UDIV  0xb0 /* unsigned division */
  980. #define TOK_UMOD  0xb1 /* unsigned modulo */
  981. #define TOK_PDIV  0xb2 /* fast division with undefined rounding for pointers */
  982.  
  983. /* tokens that carry values (in additional token string space / tokc) --> */
  984. #define TOK_CCHAR   0xb3 /* char constant in tokc */
  985. #define TOK_LCHAR   0xb4
  986. #define TOK_CINT    0xb5 /* number in tokc */
  987. #define TOK_CUINT   0xb6 /* unsigned int constant */
  988. #define TOK_CLLONG  0xb7 /* long long constant */
  989. #define TOK_CULLONG 0xb8 /* unsigned long long constant */
  990. #define TOK_STR     0xb9 /* pointer to string in tokc */
  991. #define TOK_LSTR    0xba
  992. #define TOK_CFLOAT  0xbb /* float constant */
  993. #define TOK_CDOUBLE 0xbc /* double constant */
  994. #define TOK_CLDOUBLE 0xbd /* long double constant */
  995. #define TOK_PPNUM   0xbe /* preprocessor number */
  996. #define TOK_PPSTR   0xbf /* preprocessor string */
  997. #define TOK_LINENUM 0xc0 /* line number info */
  998. /* <-- */
  999.  
  1000. #define TOK_UMULL    0xc2 /* unsigned 32x32 -> 64 mul */
  1001. #define TOK_ADDC1    0xc3 /* add with carry generation */
  1002. #define TOK_ADDC2    0xc4 /* add with carry use */
  1003. #define TOK_SUBC1    0xc5 /* add with carry generation */
  1004. #define TOK_SUBC2    0xc6 /* add with carry use */
  1005. #define TOK_ARROW    0xc7
  1006. #define TOK_DOTS     0xc8 /* three dots */
  1007. #define TOK_SHR      0xc9 /* unsigned shift right */
  1008. #define TOK_TWOSHARPS 0xca /* ## preprocessing token */
  1009. #define TOK_PLCHLDR  0xcb /* placeholder token as defined in C99 */
  1010. #define TOK_NOSUBST  0xcc /* means following token has already been pp'd */
  1011.  
  1012. #define TOK_SHL   0x01 /* shift left */
  1013. #define TOK_SAR   0x02 /* signed shift right */
  1014.  
  1015. /* assignement operators : normal operator or 0x80 */
  1016. #define TOK_A_MOD 0xa5
  1017. #define TOK_A_AND 0xa6
  1018. #define TOK_A_MUL 0xaa
  1019. #define TOK_A_ADD 0xab
  1020. #define TOK_A_SUB 0xad
  1021. #define TOK_A_DIV 0xaf
  1022. #define TOK_A_XOR 0xde
  1023. #define TOK_A_OR  0xfc
  1024. #define TOK_A_SHL 0x81
  1025. #define TOK_A_SAR 0x82
  1026.  
  1027. #ifndef offsetof
  1028. #define offsetof(type, field) ((size_t) &((type *)0)->field)
  1029. #endif
  1030.  
  1031. #ifndef countof
  1032. #define countof(tab) (sizeof(tab) / sizeof((tab)[0]))
  1033. #endif
  1034.  
  1035. #define TOK_EOF       (-1)  /* end of file */
  1036. #define TOK_LINEFEED  10    /* line feed */
  1037.  
  1038. /* all identificators and strings have token above that */
  1039. #define TOK_IDENT 256
  1040.  
  1041. #define DEF_ASM(x) DEF(TOK_ASM_ ## x, #x)
  1042. #define TOK_ASM_int TOK_INT
  1043. #define DEF_ASMDIR(x) DEF(TOK_ASMDIR_ ## x, "." #x)
  1044. #define TOK_ASMDIR_FIRST TOK_ASMDIR_byte
  1045. #define TOK_ASMDIR_LAST TOK_ASMDIR_section
  1046.  
  1047. #if defined TCC_TARGET_I386 || defined TCC_TARGET_X86_64
  1048. /* only used for i386 asm opcodes definitions */
  1049. #define DEF_BWL(x) \
  1050.  DEF(TOK_ASM_ ## x ## b, #x "b") \
  1051.  DEF(TOK_ASM_ ## x ## w, #x "w") \
  1052.  DEF(TOK_ASM_ ## x ## l, #x "l") \
  1053.  DEF(TOK_ASM_ ## x, #x)
  1054. #define DEF_WL(x) \
  1055.  DEF(TOK_ASM_ ## x ## w, #x "w") \
  1056.  DEF(TOK_ASM_ ## x ## l, #x "l") \
  1057.  DEF(TOK_ASM_ ## x, #x)
  1058. #ifdef TCC_TARGET_X86_64
  1059. # define DEF_BWLQ(x) \
  1060.  DEF(TOK_ASM_ ## x ## b, #x "b") \
  1061.  DEF(TOK_ASM_ ## x ## w, #x "w") \
  1062.  DEF(TOK_ASM_ ## x ## l, #x "l") \
  1063.  DEF(TOK_ASM_ ## x ## q, #x "q") \
  1064.  DEF(TOK_ASM_ ## x, #x)
  1065. # define DEF_WLQ(x) \
  1066.  DEF(TOK_ASM_ ## x ## w, #x "w") \
  1067.  DEF(TOK_ASM_ ## x ## l, #x "l") \
  1068.  DEF(TOK_ASM_ ## x ## q, #x "q") \
  1069.  DEF(TOK_ASM_ ## x, #x)
  1070. # define DEF_BWLX DEF_BWLQ
  1071. # define DEF_WLX DEF_WLQ
  1072. /* number of sizes + 1 */
  1073. # define NBWLX 5
  1074. #else
  1075. # define DEF_BWLX DEF_BWL
  1076. # define DEF_WLX DEF_WL
  1077. /* number of sizes + 1 */
  1078. # define NBWLX 4
  1079. #endif
  1080.  
  1081. #define DEF_FP1(x) \
  1082.  DEF(TOK_ASM_ ## f ## x ## s, "f" #x "s") \
  1083.  DEF(TOK_ASM_ ## fi ## x ## l, "fi" #x "l") \
  1084.  DEF(TOK_ASM_ ## f ## x ## l, "f" #x "l") \
  1085.  DEF(TOK_ASM_ ## fi ## x ## s, "fi" #x "s")
  1086.  
  1087. #define DEF_FP(x) \
  1088.  DEF(TOK_ASM_ ## f ## x, "f" #x ) \
  1089.  DEF(TOK_ASM_ ## f ## x ## p, "f" #x "p") \
  1090.  DEF_FP1(x)
  1091.  
  1092. #define DEF_ASMTEST(x,suffix) \
  1093.  DEF_ASM(x ## o ## suffix) \
  1094.  DEF_ASM(x ## no ## suffix) \
  1095.  DEF_ASM(x ## b ## suffix) \
  1096.  DEF_ASM(x ## c ## suffix) \
  1097.  DEF_ASM(x ## nae ## suffix) \
  1098.  DEF_ASM(x ## nb ## suffix) \
  1099.  DEF_ASM(x ## nc ## suffix) \
  1100.  DEF_ASM(x ## ae ## suffix) \
  1101.  DEF_ASM(x ## e ## suffix) \
  1102.  DEF_ASM(x ## z ## suffix) \
  1103.  DEF_ASM(x ## ne ## suffix) \
  1104.  DEF_ASM(x ## nz ## suffix) \
  1105.  DEF_ASM(x ## be ## suffix) \
  1106.  DEF_ASM(x ## na ## suffix) \
  1107.  DEF_ASM(x ## nbe ## suffix) \
  1108.  DEF_ASM(x ## a ## suffix) \
  1109.  DEF_ASM(x ## s ## suffix) \
  1110.  DEF_ASM(x ## ns ## suffix) \
  1111.  DEF_ASM(x ## p ## suffix) \
  1112.  DEF_ASM(x ## pe ## suffix) \
  1113.  DEF_ASM(x ## np ## suffix) \
  1114.  DEF_ASM(x ## po ## suffix) \
  1115.  DEF_ASM(x ## l ## suffix) \
  1116.  DEF_ASM(x ## nge ## suffix) \
  1117.  DEF_ASM(x ## nl ## suffix) \
  1118.  DEF_ASM(x ## ge ## suffix) \
  1119.  DEF_ASM(x ## le ## suffix) \
  1120.  DEF_ASM(x ## ng ## suffix) \
  1121.  DEF_ASM(x ## nle ## suffix) \
  1122.  DEF_ASM(x ## g ## suffix)
  1123.  
  1124. #endif /* defined TCC_TARGET_I386 || defined TCC_TARGET_X86_64 */
  1125.  
  1126. enum tcc_token {
  1127.     TOK_LAST = TOK_IDENT - 1
  1128. #define DEF(id, str) ,id
  1129. #include "tcctok.h"
  1130. #undef DEF
  1131. };
  1132.  
  1133. #define TOK_UIDENT TOK_DEFINE
  1134.  
  1135. /* space exlcuding newline */
  1136. static inline int is_space(int ch)
  1137. {
  1138.     return ch == ' ' || ch == '\t' || ch == '\v' || ch == '\f' || ch == '\r';
  1139. }
  1140.  
  1141. static inline int isid(int c)
  1142. {
  1143.     return (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') || c == '_';
  1144. }
  1145.  
  1146. static inline int isnum(int c)
  1147. {
  1148.     return c >= '0' && c <= '9';
  1149. }
  1150.  
  1151. static inline int isoct(int c)
  1152. {
  1153.     return c >= '0' && c <= '7';
  1154. }
  1155.  
  1156. static inline int toup(int c)
  1157. {
  1158.     return (c >= 'a' && c <= 'z') ? c - 'a' + 'A' : c;
  1159. }
  1160.  
  1161. #ifndef PUB_FUNC
  1162. # define PUB_FUNC
  1163. #endif
  1164.  
  1165. #ifdef ONE_SOURCE
  1166. #define ST_INLN static inline
  1167. #define ST_FUNC static
  1168. #define ST_DATA static
  1169. #else
  1170. #define ST_INLN
  1171. #define ST_FUNC
  1172. #define ST_DATA extern
  1173. #endif
  1174.  
  1175. /* ------------ libtcc.c ------------ */
  1176.  
  1177. /* use GNU C extensions */
  1178. ST_DATA int gnu_ext;
  1179. /* use Tiny C extensions */
  1180. ST_DATA int tcc_ext;
  1181. /* XXX: get rid of this ASAP */
  1182. ST_DATA struct TCCState *tcc_state;
  1183.  
  1184. #define AFF_PRINT_ERROR     0x0001 /* print error if file not found */
  1185. #define AFF_REFERENCED_DLL  0x0002 /* load a referenced dll from another dll */
  1186. #define AFF_PREPROCESS      0x0004 /* preprocess file */
  1187.  
  1188. /* public functions currently used by the tcc main function */
  1189. PUB_FUNC char *pstrcpy(char *buf, int buf_size, const char *s);
  1190. PUB_FUNC char *pstrcat(char *buf, int buf_size, const char *s);
  1191. PUB_FUNC char *pstrncpy(char *out, const char *in, size_t num);
  1192. PUB_FUNC char *tcc_basename(const char *name);
  1193. PUB_FUNC char *tcc_fileextension (const char *name);
  1194.  
  1195. #ifndef MEM_DEBUG
  1196. PUB_FUNC void tcc_free(void *ptr);
  1197. PUB_FUNC void *tcc_malloc(unsigned long size);
  1198. PUB_FUNC void *tcc_mallocz(unsigned long size);
  1199. PUB_FUNC void *tcc_realloc(void *ptr, unsigned long size);
  1200. PUB_FUNC char *tcc_strdup(const char *str);
  1201. #else
  1202. #define tcc_free(ptr)           tcc_free_debug(ptr)
  1203. #define tcc_malloc(size)        tcc_malloc_debug(size, __FILE__, __LINE__)
  1204. #define tcc_mallocz(size)       tcc_mallocz_debug(size, __FILE__, __LINE__)
  1205. #define tcc_realloc(ptr,size)   tcc_realloc_debug(ptr, size, __FILE__, __LINE__)
  1206. #define tcc_strdup(str)         tcc_strdup_debug(str, __FILE__, __LINE__)
  1207. PUB_FUNC void tcc_free_debug(void *ptr);
  1208. PUB_FUNC void *tcc_malloc_debug(unsigned long size, const char *file, int line);
  1209. PUB_FUNC void *tcc_mallocz_debug(unsigned long size, const char *file, int line);
  1210. PUB_FUNC void *tcc_realloc_debug(void *ptr, unsigned long size, const char *file, int line);
  1211. PUB_FUNC char *tcc_strdup_debug(const char *str, const char *file, int line);
  1212. #endif
  1213.  
  1214. #define free(p) use_tcc_free(p)
  1215. #define malloc(s) use_tcc_malloc(s)
  1216. #define realloc(p, s) use_tcc_realloc(p, s)
  1217. #undef strdup
  1218. #define strdup(s) use_tcc_strdup(s)
  1219. PUB_FUNC void tcc_memstats(int bench);
  1220. PUB_FUNC void tcc_error_noabort(const char *fmt, ...);
  1221. PUB_FUNC NORETURN void tcc_error(const char *fmt, ...);
  1222. PUB_FUNC void tcc_warning(const char *fmt, ...);
  1223.  
  1224. /* other utilities */
  1225. ST_FUNC void dynarray_add(void ***ptab, int *nb_ptr, void *data);
  1226. ST_FUNC void dynarray_reset(void *pp, int *n);
  1227. ST_FUNC void cstr_ccat(CString *cstr, int ch);
  1228. ST_FUNC void cstr_cat(CString *cstr, const char *str, int len);
  1229. ST_FUNC void cstr_wccat(CString *cstr, int ch);
  1230. ST_FUNC void cstr_new(CString *cstr);
  1231. ST_FUNC void cstr_free(CString *cstr);
  1232. ST_FUNC void cstr_reset(CString *cstr);
  1233.  
  1234. ST_FUNC Section *new_section(TCCState *s1, const char *name, int sh_type, int sh_flags);
  1235. ST_FUNC void section_realloc(Section *sec, unsigned long new_size);
  1236. ST_FUNC void *section_ptr_add(Section *sec, addr_t size);
  1237. ST_FUNC void section_reserve(Section *sec, unsigned long size);
  1238. ST_FUNC Section *find_section(TCCState *s1, const char *name);
  1239.  
  1240. ST_FUNC void put_extern_sym2(Sym *sym, Section *section, addr_t value, unsigned long size, int can_add_underscore);
  1241. ST_FUNC void put_extern_sym(Sym *sym, Section *section, addr_t value, unsigned long size);
  1242. ST_FUNC void greloc(Section *s, Sym *sym, unsigned long offset, int type);
  1243. ST_FUNC void greloca(Section *s, Sym *sym, unsigned long offset, int type, addr_t addend);
  1244.  
  1245. ST_INLN void sym_free(Sym *sym);
  1246. ST_FUNC Sym *sym_push2(Sym **ps, int v, int t, long c);
  1247. ST_FUNC Sym *sym_find2(Sym *s, int v);
  1248. ST_FUNC Sym *sym_push(int v, CType *type, int r, int c);
  1249. ST_FUNC void sym_pop(Sym **ptop, Sym *b);
  1250. ST_INLN Sym *struct_find(int v);
  1251. ST_INLN Sym *sym_find(int v);
  1252. ST_FUNC Sym *global_identifier_push(int v, int t, int c);
  1253.  
  1254. ST_FUNC void tcc_open_bf(TCCState *s1, const char *filename, int initlen);
  1255. ST_FUNC int tcc_open(TCCState *s1, const char *filename);
  1256. ST_FUNC void tcc_close(void);
  1257.  
  1258. ST_FUNC int tcc_add_file_internal(TCCState *s1, const char *filename, int flags, int filetype);
  1259. ST_FUNC int tcc_add_crt(TCCState *s, const char *filename);
  1260.  
  1261. #if !defined(TCC_TARGET_PE) && !defined(TCC_TARGET_MEOS)
  1262. ST_FUNC int tcc_add_dll(TCCState *s, const char *filename, int flags);
  1263. #endif
  1264.  
  1265. ST_FUNC void tcc_add_pragma_libs(TCCState *s1);
  1266. PUB_FUNC int tcc_add_library_err(TCCState *s, const char *f);
  1267.  
  1268. PUB_FUNC void tcc_print_stats(TCCState *s, int64_t total_time);
  1269. PUB_FUNC int tcc_parse_args(TCCState *s, int argc, char **argv);
  1270. PUB_FUNC void tcc_set_environment(TCCState *s);
  1271.  
  1272. /* ------------ tccpp.c ------------ */
  1273.  
  1274. ST_DATA struct BufferedFile *file;
  1275. ST_DATA int ch, tok;
  1276. ST_DATA CValue tokc;
  1277. ST_DATA const int *macro_ptr;
  1278. ST_DATA int parse_flags;
  1279. ST_DATA int tok_flags;
  1280. ST_DATA CString tokcstr; /* current parsed string, if any */
  1281.  
  1282. /* display benchmark infos */
  1283. ST_DATA int total_lines;
  1284. ST_DATA int total_bytes;
  1285. ST_DATA int tok_ident;
  1286. ST_DATA TokenSym **table_ident;
  1287.  
  1288. #define TOK_FLAG_BOL   0x0001 /* beginning of line before */
  1289. #define TOK_FLAG_BOF   0x0002 /* beginning of file before */
  1290. #define TOK_FLAG_ENDIF 0x0004 /* a endif was found matching starting #ifdef */
  1291. #define TOK_FLAG_EOF   0x0008 /* end of file */
  1292.  
  1293. #define PARSE_FLAG_PREPROCESS 0x0001 /* activate preprocessing */
  1294. #define PARSE_FLAG_TOK_NUM    0x0002 /* return numbers instead of TOK_PPNUM */
  1295. #define PARSE_FLAG_LINEFEED   0x0004 /* line feed is returned as a
  1296.                                         token. line feed is also
  1297.                                         returned at eof */
  1298. #define PARSE_FLAG_ASM_FILE 0x0008 /* we processing an asm file: '#' can be used for line comment, etc. */
  1299. #define PARSE_FLAG_SPACES     0x0010 /* next() returns space tokens (for -E) */
  1300. #define PARSE_FLAG_ACCEPT_STRAYS 0x0020 /* next() returns '\\' token */
  1301. #define PARSE_FLAG_TOK_STR    0x0040 /* return parsed strings instead of TOK_PPSTR */
  1302.  
  1303. ST_FUNC TokenSym *tok_alloc(const char *str, int len);
  1304. ST_FUNC const char *get_tok_str(int v, CValue *cv);
  1305. ST_FUNC void begin_macro(TokenString *str, int alloc);
  1306. ST_FUNC void end_macro(void);
  1307. ST_FUNC void save_parse_state(ParseState *s);
  1308. ST_FUNC void restore_parse_state(ParseState *s);
  1309. ST_INLN void tok_str_new(TokenString *s);
  1310. ST_FUNC void tok_str_free(int *str);
  1311. ST_FUNC void tok_str_add(TokenString *s, int t);
  1312. ST_FUNC void tok_str_add_tok(TokenString *s);
  1313. ST_INLN void define_push(int v, int macro_type, TokenString *str, Sym *first_arg);
  1314. ST_FUNC void define_undef(Sym *s);
  1315. ST_INLN Sym *define_find(int v);
  1316. ST_FUNC void free_defines(Sym *b);
  1317. ST_FUNC void print_defines(void);
  1318. ST_FUNC Sym *label_find(int v);
  1319. ST_FUNC Sym *label_push(Sym **ptop, int v, int flags);
  1320. ST_FUNC void label_pop(Sym **ptop, Sym *slast);
  1321. ST_FUNC void parse_define(void);
  1322. ST_FUNC void preprocess(int is_bof);
  1323. ST_FUNC void next_nomacro(void);
  1324. ST_FUNC void next(void);
  1325. ST_INLN void unget_tok(int last_tok);
  1326. ST_FUNC void preprocess_init(TCCState *s1);
  1327. ST_FUNC void preprocess_new(void);
  1328. ST_FUNC void preprocess_delete(void);
  1329. ST_FUNC int tcc_preprocess(TCCState *s1);
  1330. ST_FUNC void skip(int c);
  1331. ST_FUNC NORETURN void expect(const char *msg);
  1332. ST_FUNC char *trimfront(char *p);
  1333. ST_FUNC char *trimback(char *a, char *e);
  1334.  
  1335. /* ------------ tccgen.c ------------ */
  1336.  
  1337. ST_DATA Section *text_section, *data_section, *bss_section; /* predefined sections */
  1338. ST_DATA Section *cur_text_section; /* current section where function code is generated */
  1339. #ifdef CONFIG_TCC_ASM
  1340. ST_DATA Section *last_text_section; /* to handle .previous asm directive */
  1341. #endif
  1342. #ifdef CONFIG_TCC_BCHECK
  1343. /* bound check related sections */
  1344. ST_DATA Section *bounds_section; /* contains global data bound description */
  1345. ST_DATA Section *lbounds_section; /* contains local data bound description */
  1346. #endif
  1347. /* symbol sections */
  1348. ST_DATA Section *symtab_section, *strtab_section;
  1349. /* debug sections */
  1350. ST_DATA Section *stab_section, *stabstr_section;
  1351.  
  1352. #define SYM_POOL_NB (8192 / sizeof(Sym))
  1353. ST_DATA Sym *sym_free_first;
  1354. ST_DATA void **sym_pools;
  1355. ST_DATA int nb_sym_pools;
  1356.  
  1357. ST_DATA Sym *global_stack;
  1358. ST_DATA Sym *local_stack;
  1359. ST_DATA Sym *local_label_stack;
  1360. ST_DATA Sym *global_label_stack;
  1361. ST_DATA Sym *define_stack;
  1362. ST_DATA CType char_pointer_type, func_old_type, int_type, size_type;
  1363. ST_DATA SValue __vstack[1+/*to make bcheck happy*/ VSTACK_SIZE], *vtop, *pvtop;
  1364. #define vstack  (__vstack + 1)
  1365. ST_DATA int rsym, anon_sym, ind, loc;
  1366.  
  1367. ST_DATA int const_wanted; /* true if constant wanted */
  1368. ST_DATA int nocode_wanted; /* true if no code generation wanted for an expression */
  1369. ST_DATA int global_expr;  /* true if compound literals must be allocated globally (used during initializers parsing */
  1370. ST_DATA CType func_vt; /* current function return type (used by return instruction) */
  1371. ST_DATA int func_var; /* true if current function is variadic */
  1372. ST_DATA int func_vc;
  1373. ST_DATA int last_line_num, last_ind, func_ind; /* debug last line number and pc */
  1374. ST_DATA const char *funcname;
  1375.  
  1376. ST_FUNC void check_vstack(void);
  1377. ST_INLN int is_float(int t);
  1378. ST_FUNC int ieee_finite(double d);
  1379. ST_FUNC void test_lvalue(void);
  1380. ST_FUNC void swap(int *p, int *q);
  1381. ST_FUNC void vpushi(int v);
  1382. ST_FUNC Sym *external_global_sym(int v, CType *type, int r);
  1383. ST_FUNC void vset(CType *type, int r, int v);
  1384. ST_FUNC void vswap(void);
  1385. ST_FUNC void vpush_global_sym(CType *type, int v);
  1386. ST_FUNC void vrote(SValue *e, int n);
  1387. ST_FUNC void vrott(int n);
  1388. ST_FUNC void vrotb(int n);
  1389. #ifdef TCC_TARGET_ARM
  1390. ST_FUNC int get_reg_ex(int rc, int rc2);
  1391. ST_FUNC void lexpand_nr(void);
  1392. #endif
  1393. ST_FUNC void vpushv(SValue *v);
  1394. ST_FUNC void save_reg(int r);
  1395. ST_FUNC int get_reg(int rc);
  1396. ST_FUNC void save_regs(int n);
  1397. ST_FUNC void gaddrof(void);
  1398. ST_FUNC int gv(int rc);
  1399. ST_FUNC void gv2(int rc1, int rc2);
  1400. ST_FUNC void vpop(void);
  1401. ST_FUNC void gen_op(int op);
  1402. ST_FUNC int type_size(CType *type, int *a);
  1403. ST_FUNC void mk_pointer(CType *type);
  1404. ST_FUNC void vstore(void);
  1405. ST_FUNC void inc(int post, int c);
  1406. ST_FUNC void parse_asm_str(CString *astr);
  1407. ST_FUNC int lvalue_type(int t);
  1408. ST_FUNC void indir(void);
  1409. ST_FUNC void unary(void);
  1410. ST_FUNC void expr_prod(void);
  1411. ST_FUNC void expr_sum(void);
  1412. ST_FUNC void gexpr(void);
  1413. ST_FUNC int expr_const(void);
  1414. ST_FUNC void gen_inline_functions(void);
  1415. ST_FUNC void decl(int l);
  1416. #if defined CONFIG_TCC_BCHECK || defined TCC_TARGET_C67
  1417. ST_FUNC Sym *get_sym_ref(CType *type, Section *sec, unsigned long offset, unsigned long size);
  1418. #endif
  1419. #if defined TCC_TARGET_X86_64 && !defined TCC_TARGET_PE
  1420. ST_FUNC int classify_x86_64_va_arg(CType *ty);
  1421. #endif
  1422.  
  1423. /* ------------ tccelf.c ------------ */
  1424.  
  1425. #define TCC_OUTPUT_FORMAT_ELF    0 /* default output format: ELF */
  1426. #define TCC_OUTPUT_FORMAT_BINARY 1 /* binary image output */
  1427. #define TCC_OUTPUT_FORMAT_COFF   2 /* COFF */
  1428.  
  1429. #define ARMAG  "!<arch>\012"    /* For COFF and a.out archives */
  1430.  
  1431. typedef struct {
  1432.     unsigned int n_strx;         /* index into string table of name */
  1433.     unsigned char n_type;         /* type of symbol */
  1434.     unsigned char n_other;        /* misc info (usually empty) */
  1435.     unsigned short n_desc;        /* description field */
  1436.     unsigned int n_value;        /* value of symbol */
  1437. } Stab_Sym;
  1438.  
  1439. 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);
  1440.  
  1441. ST_FUNC int put_elf_str(Section *s, const char *sym);
  1442. ST_FUNC int put_elf_sym(Section *s, addr_t value, unsigned long size, int info, int other, int shndx, const char *name);
  1443. ST_FUNC int add_elf_sym(Section *s, addr_t value, unsigned long size, int info, int other, int sh_num, const char *name);
  1444. ST_FUNC int find_elf_sym(Section *s, const char *name);
  1445. ST_FUNC void put_elf_reloc(Section *symtab, Section *s, unsigned long offset, int type, int symbol);
  1446. ST_FUNC void put_elf_reloca(Section *symtab, Section *s, unsigned long offset, int type, int symbol, addr_t addend);
  1447.  
  1448. ST_FUNC void put_stabs(const char *str, int type, int other, int desc, unsigned long value);
  1449. ST_FUNC void put_stabs_r(const char *str, int type, int other, int desc, unsigned long value, Section *sec, int sym_index);
  1450. ST_FUNC void put_stabn(int type, int other, int desc, int value);
  1451. ST_FUNC void put_stabd(int type, int other, int desc);
  1452.  
  1453. ST_FUNC void relocate_common_syms(void);
  1454. ST_FUNC void relocate_syms(TCCState *s1, int do_resolve);
  1455. ST_FUNC void relocate_section(TCCState *s1, Section *s);
  1456. ST_FUNC void relocate_plt(TCCState *s1);
  1457.  
  1458. ST_FUNC void tcc_add_linker_symbols(TCCState *s1);
  1459. ST_FUNC int tcc_load_object_file(TCCState *s1, int fd, unsigned long file_offset);
  1460. ST_FUNC int tcc_load_archive(TCCState *s1, int fd);
  1461. ST_FUNC void tcc_add_bcheck(TCCState *s1);
  1462.  
  1463. ST_FUNC void build_got_entries(TCCState *s1);
  1464. ST_FUNC void tcc_add_runtime(TCCState *s1);
  1465.  
  1466. ST_FUNC addr_t get_elf_sym_addr(TCCState *s, const char *name, int err);
  1467. #if defined TCC_IS_NATIVE || defined TCC_TARGET_PE || defined TCC_TARGET_MEOS
  1468. ST_FUNC void *tcc_get_symbol_err(TCCState *s, const char *name);
  1469. #endif
  1470.  
  1471. #ifndef TCC_TARGET_PE
  1472. ST_FUNC int tcc_load_dll(TCCState *s1, int fd, const char *filename, int level);
  1473. ST_FUNC int tcc_load_ldscript(TCCState *s1);
  1474. ST_FUNC uint8_t *parse_comment(uint8_t *p, int skip);
  1475. ST_FUNC void minp(void);
  1476. ST_INLN void inp(void);
  1477. ST_FUNC int handle_eob(void);
  1478. #endif
  1479.  
  1480. /* ------------ xxx-gen.c ------------ */
  1481.  
  1482. ST_DATA const int reg_classes[NB_REGS];
  1483.  
  1484. ST_FUNC void gsym_addr(int t, int a);
  1485. ST_FUNC void gsym(int t);
  1486. ST_FUNC void load(int r, SValue *sv);
  1487. ST_FUNC void store(int r, SValue *v);
  1488. ST_FUNC int gfunc_sret(CType *vt, int variadic, CType *ret, int *align, int *regsize);
  1489. ST_FUNC void gfunc_call(int nb_args);
  1490. ST_FUNC void gfunc_prolog(CType *func_type);
  1491. ST_FUNC void gfunc_epilog(void);
  1492. ST_FUNC int gjmp(int t);
  1493. ST_FUNC void gjmp_addr(int a);
  1494. ST_FUNC int gtst(int inv, int t);
  1495. ST_FUNC void gen_opi(int op);
  1496. ST_FUNC void gen_opf(int op);
  1497. ST_FUNC void gen_cvt_ftoi(int t);
  1498. ST_FUNC void gen_cvt_ftof(int t);
  1499. ST_FUNC void ggoto(void);
  1500. #ifndef TCC_TARGET_C67
  1501. ST_FUNC void o(unsigned int c);
  1502. #endif
  1503. #ifndef TCC_TARGET_ARM
  1504. ST_FUNC void gen_cvt_itof(int t);
  1505. #endif
  1506. ST_FUNC void gen_vla_sp_save(int addr);
  1507. ST_FUNC void gen_vla_sp_restore(int addr);
  1508. ST_FUNC void gen_vla_alloc(CType *type, int align);
  1509.  
  1510. /* ------------ i386-gen.c ------------ */
  1511. #if defined TCC_TARGET_I386 || defined TCC_TARGET_X86_64
  1512. ST_FUNC void g(int c);
  1513. ST_FUNC int oad(int c, int s);
  1514. ST_FUNC void gen_le16(int c);
  1515. ST_FUNC void gen_le32(int c);
  1516. ST_FUNC void gen_addr32(int r, Sym *sym, int c);
  1517. ST_FUNC void gen_addrpc32(int r, Sym *sym, int c);
  1518. #endif
  1519.  
  1520. #ifdef CONFIG_TCC_BCHECK
  1521. ST_FUNC void gen_bounded_ptr_add(void);
  1522. ST_FUNC void gen_bounded_ptr_deref(void);
  1523. #endif
  1524.  
  1525. /* ------------ x86_64-gen.c ------------ */
  1526. #ifdef TCC_TARGET_X86_64
  1527. ST_FUNC void gen_addr64(int r, Sym *sym, int64_t c);
  1528. ST_FUNC void gen_opl(int op);
  1529. #endif
  1530.  
  1531. /* ------------ arm-gen.c ------------ */
  1532. #ifdef TCC_TARGET_ARM
  1533. #if defined(TCC_ARM_EABI) && !defined(CONFIG_TCC_ELFINTERP)
  1534. ST_FUNC char *default_elfinterp(struct TCCState *s);
  1535. #endif
  1536. ST_FUNC void arm_init(struct TCCState *s);
  1537. ST_FUNC uint32_t encbranch(int pos, int addr, int fail);
  1538. ST_FUNC void gen_cvt_itof1(int t);
  1539. #endif
  1540.  
  1541. /* ------------ arm64-gen.c ------------ */
  1542. #ifdef TCC_TARGET_ARM64
  1543. ST_FUNC void gen_cvt_sxtw(void);
  1544. ST_FUNC void gen_opl(int op);
  1545. ST_FUNC void greturn(void);
  1546. ST_FUNC void gen_va_start(void);
  1547. ST_FUNC void gen_va_arg(CType *t);
  1548. ST_FUNC void gen_clear_cache(void);
  1549. #endif
  1550.  
  1551. /* ------------ c67-gen.c ------------ */
  1552. #ifdef TCC_TARGET_C67
  1553. #endif
  1554.  
  1555. /* ------------ tcccoff.c ------------ */
  1556.  
  1557. #ifdef TCC_TARGET_COFF
  1558. ST_FUNC int tcc_output_coff(TCCState *s1, FILE *f);
  1559. ST_FUNC int tcc_load_coff(TCCState * s1, int fd);
  1560. #endif
  1561.  
  1562. /* ------------ tccasm.c ------------ */
  1563. ST_FUNC void asm_instr(void);
  1564. ST_FUNC void asm_global_instr(void);
  1565. #ifdef CONFIG_TCC_ASM
  1566. ST_FUNC int find_constraint(ASMOperand *operands, int nb_operands, const char *name, const char **pp);
  1567. ST_FUNC void asm_expr(TCCState *s1, ExprValue *pe);
  1568. ST_FUNC int asm_int_expr(TCCState *s1);
  1569. ST_FUNC int tcc_assemble(TCCState *s1, int do_preprocess);
  1570. /* ------------ i386-asm.c ------------ */
  1571. ST_FUNC void gen_expr32(ExprValue *pe);
  1572. ST_FUNC void asm_opcode(TCCState *s1, int opcode);
  1573. ST_FUNC void asm_compute_constraints(ASMOperand *operands, int nb_operands, int nb_outputs, const uint8_t *clobber_regs, int *pout_reg);
  1574. ST_FUNC void subst_asm_operand(CString *add_str, SValue *sv, int modifier);
  1575. ST_FUNC void asm_gen_code(ASMOperand *operands, int nb_operands, int nb_outputs, int is_output, uint8_t *clobber_regs, int out_reg);
  1576. ST_FUNC void asm_clobber(uint8_t *clobber_regs, const char *str);
  1577. #endif
  1578.  
  1579. /* ------------ tccme.c -------------- */
  1580. #if defined(TCC_TARGET_MEOS)
  1581. int tcc_output_me(TCCState* s1,const char *filename);
  1582. #endif
  1583. /* ------------ tccpe.c -------------- */
  1584. #if defined(TCC_TARGET_PE) || defined(TCC_TARGET_MEOS)
  1585. ST_FUNC int pe_load_file(struct TCCState *s1, const char *filename, int fd);
  1586. ST_FUNC int pe_output_file(TCCState * s1, const char *filename);
  1587. ST_FUNC int pe_putimport(TCCState *s1, int dllindex, const char *name, addr_t value);
  1588. ST_FUNC SValue *pe_getimport(SValue *sv, SValue *v2);
  1589. #ifdef TCC_TARGET_X86_64
  1590. ST_FUNC void pe_add_unwind_data(unsigned start, unsigned end, unsigned stack);
  1591. #endif
  1592. /* symbol properties stored in Elf32_Sym->st_other */
  1593. # define ST_PE_EXPORT 0x10
  1594. # define ST_PE_IMPORT 0x20
  1595. # define ST_PE_STDCALL 0x40
  1596. #endif
  1597.  
  1598. /* ------------ tccrun.c ----------------- */
  1599. #ifdef TCC_IS_NATIVE
  1600. #ifdef CONFIG_TCC_STATIC
  1601. #define RTLD_LAZY       0x001
  1602. #define RTLD_NOW        0x002
  1603. #define RTLD_GLOBAL     0x100
  1604. #define RTLD_DEFAULT    NULL
  1605. /* dummy function for profiling */
  1606. ST_FUNC void *dlopen(const char *filename, int flag);
  1607. ST_FUNC void dlclose(void *p);
  1608. ST_FUNC const char *dlerror(void);
  1609. ST_FUNC void *resolve_sym(TCCState *s1, const char *symbol);
  1610. #elif !defined _WIN32
  1611. ST_FUNC void *resolve_sym(TCCState *s1, const char *symbol);
  1612. #endif
  1613.  
  1614. #ifdef CONFIG_TCC_BACKTRACE
  1615. ST_DATA int rt_num_callers;
  1616. ST_DATA const char **rt_bound_error_msg;
  1617. ST_DATA void *rt_prog_main;
  1618. ST_FUNC void tcc_set_num_callers(int n);
  1619. #endif
  1620. #endif
  1621.  
  1622. /********************************************************/
  1623. #undef ST_DATA
  1624. #ifdef ONE_SOURCE
  1625. #define ST_DATA static
  1626. #else
  1627. #define ST_DATA
  1628. #endif
  1629. /********************************************************/
  1630. #endif /* _TCC_H */
  1631.