2002-11-02 23:46:19 +03:00
|
|
|
/* keywords */
|
|
|
|
DEF(TOK_INT, "int")
|
|
|
|
DEF(TOK_VOID, "void")
|
|
|
|
DEF(TOK_CHAR, "char")
|
|
|
|
DEF(TOK_IF, "if")
|
|
|
|
DEF(TOK_ELSE, "else")
|
|
|
|
DEF(TOK_WHILE, "while")
|
|
|
|
DEF(TOK_BREAK, "break")
|
|
|
|
DEF(TOK_RETURN, "return")
|
|
|
|
DEF(TOK_FOR, "for")
|
|
|
|
DEF(TOK_EXTERN, "extern")
|
|
|
|
DEF(TOK_STATIC, "static")
|
|
|
|
DEF(TOK_UNSIGNED, "unsigned")
|
|
|
|
DEF(TOK_GOTO, "goto")
|
|
|
|
DEF(TOK_DO, "do")
|
|
|
|
DEF(TOK_CONTINUE, "continue")
|
|
|
|
DEF(TOK_SWITCH, "switch")
|
|
|
|
DEF(TOK_CASE, "case")
|
2002-08-30 01:15:05 +04:00
|
|
|
|
2003-01-06 23:23:26 +03:00
|
|
|
DEF(TOK_CONST1, "const")
|
|
|
|
DEF(TOK_CONST2, "__const") /* gcc keyword */
|
|
|
|
DEF(TOK_CONST3, "__const__") /* gcc keyword */
|
|
|
|
DEF(TOK_VOLATILE1, "volatile")
|
|
|
|
DEF(TOK_VOLATILE2, "__volatile") /* gcc keyword */
|
|
|
|
DEF(TOK_VOLATILE3, "__volatile__") /* gcc keyword */
|
2002-11-02 23:46:19 +03:00
|
|
|
DEF(TOK_LONG, "long")
|
|
|
|
DEF(TOK_REGISTER, "register")
|
2003-01-06 23:23:26 +03:00
|
|
|
DEF(TOK_SIGNED1, "signed")
|
|
|
|
DEF(TOK_SIGNED2, "__signed") /* gcc keyword */
|
|
|
|
DEF(TOK_SIGNED3, "__signed__") /* gcc keyword */
|
2002-11-02 23:46:19 +03:00
|
|
|
DEF(TOK_AUTO, "auto")
|
2003-01-06 23:23:26 +03:00
|
|
|
DEF(TOK_INLINE1, "inline")
|
|
|
|
DEF(TOK_INLINE2, "__inline") /* gcc keyword */
|
|
|
|
DEF(TOK_INLINE3, "__inline__") /* gcc keyword */
|
|
|
|
DEF(TOK_RESTRICT1, "restrict")
|
|
|
|
DEF(TOK_RESTRICT2, "__restrict")
|
|
|
|
DEF(TOK_RESTRICT3, "__restrict__")
|
|
|
|
DEF(TOK_EXTENSION, "__extension__") /* gcc keyword */
|
2016-12-09 13:42:41 +03:00
|
|
|
|
|
|
|
DEF(TOK_GENERIC, "_Generic")
|
2019-04-28 02:07:01 +03:00
|
|
|
DEF(TOK_STATIC_ASSERT, "_Static_assert")
|
2016-12-09 13:42:41 +03:00
|
|
|
|
2002-11-02 23:46:19 +03:00
|
|
|
DEF(TOK_FLOAT, "float")
|
|
|
|
DEF(TOK_DOUBLE, "double")
|
|
|
|
DEF(TOK_BOOL, "_Bool")
|
|
|
|
DEF(TOK_SHORT, "short")
|
|
|
|
DEF(TOK_STRUCT, "struct")
|
|
|
|
DEF(TOK_UNION, "union")
|
|
|
|
DEF(TOK_TYPEDEF, "typedef")
|
|
|
|
DEF(TOK_DEFAULT, "default")
|
|
|
|
DEF(TOK_ENUM, "enum")
|
|
|
|
DEF(TOK_SIZEOF, "sizeof")
|
2003-01-06 23:23:26 +03:00
|
|
|
DEF(TOK_ATTRIBUTE1, "__attribute")
|
|
|
|
DEF(TOK_ATTRIBUTE2, "__attribute__")
|
|
|
|
DEF(TOK_ALIGNOF1, "__alignof")
|
|
|
|
DEF(TOK_ALIGNOF2, "__alignof__")
|
2018-12-12 21:53:58 +03:00
|
|
|
DEF(TOK_ALIGNOF3, "_Alignof")
|
2019-03-20 22:03:27 +03:00
|
|
|
DEF(TOK_ALIGNAS, "_Alignas")
|
2003-01-06 23:23:26 +03:00
|
|
|
DEF(TOK_TYPEOF1, "typeof")
|
|
|
|
DEF(TOK_TYPEOF2, "__typeof")
|
|
|
|
DEF(TOK_TYPEOF3, "__typeof__")
|
|
|
|
DEF(TOK_LABEL, "__label__")
|
|
|
|
DEF(TOK_ASM1, "asm")
|
|
|
|
DEF(TOK_ASM2, "__asm")
|
|
|
|
DEF(TOK_ASM3, "__asm__")
|
2002-08-30 01:15:05 +04:00
|
|
|
|
2015-02-13 21:58:31 +03:00
|
|
|
#ifdef TCC_TARGET_ARM64
|
|
|
|
DEF(TOK_UINT128, "__uint128_t")
|
|
|
|
#endif
|
|
|
|
|
2002-11-02 23:46:19 +03:00
|
|
|
/*********************************************************************/
|
|
|
|
/* the following are not keywords. They are included to ease parsing */
|
|
|
|
/* preprocessor only */
|
|
|
|
DEF(TOK_DEFINE, "define")
|
|
|
|
DEF(TOK_INCLUDE, "include")
|
2005-04-11 02:18:53 +04:00
|
|
|
DEF(TOK_INCLUDE_NEXT, "include_next")
|
2002-11-02 23:46:19 +03:00
|
|
|
DEF(TOK_IFDEF, "ifdef")
|
|
|
|
DEF(TOK_IFNDEF, "ifndef")
|
|
|
|
DEF(TOK_ELIF, "elif")
|
|
|
|
DEF(TOK_ENDIF, "endif")
|
|
|
|
DEF(TOK_DEFINED, "defined")
|
|
|
|
DEF(TOK_UNDEF, "undef")
|
|
|
|
DEF(TOK_ERROR, "error")
|
2002-11-24 18:58:28 +03:00
|
|
|
DEF(TOK_WARNING, "warning")
|
2002-11-02 23:46:19 +03:00
|
|
|
DEF(TOK_LINE, "line")
|
2002-11-24 18:58:28 +03:00
|
|
|
DEF(TOK_PRAGMA, "pragma")
|
2002-11-02 23:46:19 +03:00
|
|
|
DEF(TOK___LINE__, "__LINE__")
|
|
|
|
DEF(TOK___FILE__, "__FILE__")
|
|
|
|
DEF(TOK___DATE__, "__DATE__")
|
|
|
|
DEF(TOK___TIME__, "__TIME__")
|
|
|
|
DEF(TOK___FUNCTION__, "__FUNCTION__")
|
|
|
|
DEF(TOK___VA_ARGS__, "__VA_ARGS__")
|
2017-07-09 06:30:47 +03:00
|
|
|
DEF(TOK___COUNTER__, "__COUNTER__")
|
2010-05-06 04:19:00 +04:00
|
|
|
|
2002-11-02 23:46:19 +03:00
|
|
|
/* special identifiers */
|
|
|
|
DEF(TOK___FUNC__, "__func__")
|
2010-05-06 04:19:00 +04:00
|
|
|
|
|
|
|
/* special floating point values */
|
|
|
|
DEF(TOK___NAN__, "__nan__")
|
|
|
|
DEF(TOK___SNAN__, "__snan__")
|
|
|
|
DEF(TOK___INF__, "__inf__")
|
|
|
|
|
2002-07-23 03:37:39 +04:00
|
|
|
/* attribute identifiers */
|
2003-01-06 23:23:26 +03:00
|
|
|
/* XXX: handle all tokens generically since speed is not critical */
|
|
|
|
DEF(TOK_SECTION1, "section")
|
|
|
|
DEF(TOK_SECTION2, "__section__")
|
|
|
|
DEF(TOK_ALIGNED1, "aligned")
|
|
|
|
DEF(TOK_ALIGNED2, "__aligned__")
|
2004-10-30 03:55:13 +04:00
|
|
|
DEF(TOK_PACKED1, "packed")
|
|
|
|
DEF(TOK_PACKED2, "__packed__")
|
2010-02-27 19:37:59 +03:00
|
|
|
DEF(TOK_WEAK1, "weak")
|
|
|
|
DEF(TOK_WEAK2, "__weak__")
|
2011-03-03 12:58:45 +03:00
|
|
|
DEF(TOK_ALIAS1, "alias")
|
|
|
|
DEF(TOK_ALIAS2, "__alias__")
|
2003-01-06 23:23:26 +03:00
|
|
|
DEF(TOK_UNUSED1, "unused")
|
|
|
|
DEF(TOK_UNUSED2, "__unused__")
|
|
|
|
DEF(TOK_CDECL1, "cdecl")
|
|
|
|
DEF(TOK_CDECL2, "__cdecl")
|
|
|
|
DEF(TOK_CDECL3, "__cdecl__")
|
|
|
|
DEF(TOK_STDCALL1, "stdcall")
|
|
|
|
DEF(TOK_STDCALL2, "__stdcall")
|
|
|
|
DEF(TOK_STDCALL3, "__stdcall__")
|
2005-09-04 13:18:02 +04:00
|
|
|
DEF(TOK_FASTCALL1, "fastcall")
|
|
|
|
DEF(TOK_FASTCALL2, "__fastcall")
|
|
|
|
DEF(TOK_FASTCALL3, "__fastcall__")
|
various stuff
win32/Makefile ("for cygwin") removed
- On cygwin, the normal ./configure && make can be used with either
cygwin's "GCC for Win32 Toolchain"
./configure --cross-prefix=i686-w64-mingw32-
or with an existing tcc:
./configure --cc=<old-tccdir>/tcc.exe
tcctest.c:
- exclude test_high_clobbers() on _WIN64 (does not work)
tests2/95_bitfield.c:
- use 'signed char' for ARM (where default 'char' is unsigned)
tests:
- remove -I "expr" diff option to allow tests with
busybox-diff.
libtcc.c, tcc.c:
- removed -iwithprefix option. It is supposed to be
combined with -iprefix which we don't have either.
tccgen.c:
- fix assignments and return of 'void', as in
void f() {
void *p, *q;
*p = *q:
return *p;
}
This appears to be allowed but should do nothing.
tcc.h, libtcc.c, tccpp.c:
- Revert "Introduce VIP sysinclude paths which are always searched first"
This reverts commit 1d5e386b0a78393ac6b670c209a185849ec798a1.
The patch was giving tcc's system includes priority over -I which
is not how it should be.
tccelf.c:
- add DT_TEXTREL tag only if text relocations are actually
used (which is likely not the case on x86_64)
- prepare_dynamic_rel(): avoid relocation of unresolved
(weak) symbols
tccrun.c:
- for HAVE_SELINUX, use two mappings to the same (real) file.
(it was so once except the RX mapping wasn't used at all).
tccpe.c:
- fix relocation constant used for x86_64 (by Andrei E. Warentin)
- #ifndef _WIN32 do "chmod 755 ..." to get runnable exes on cygwin.
tccasm.c:
- keep forward asm labels static, otherwise they will endup
in dynsym eventually.
configure, Makefile:
- mingw32: respect ./configure options --bindir --docdir --libdir
- allow overriding tcc when building libtcc1.a and libtcc.def with
make XTCC=<tcc program to use>
- use $(wildcard ...) for install to allow installing just
a cross compiler for example
make cross-arm
make install
- use name <target>-libtcc1.a
build-tcc.bat:
- add options: -clean, -b bindir
2017-10-11 19:13:43 +03:00
|
|
|
DEF(TOK_REGPARM1, "regparm")
|
|
|
|
DEF(TOK_REGPARM2, "__regparm__")
|
2018-12-20 12:55:22 +03:00
|
|
|
DEF(TOK_CLEANUP1, "cleanup")
|
|
|
|
DEF(TOK_CLEANUP2, "__cleanup__")
|
2019-10-29 09:02:58 +03:00
|
|
|
DEF(TOK_CONSTRUCTOR1, "constructor")
|
|
|
|
DEF(TOK_CONSTRUCTOR2, "__constructor__")
|
|
|
|
DEF(TOK_DESTRUCTOR1, "destructor")
|
|
|
|
DEF(TOK_DESTRUCTOR2, "__destructor__")
|
2016-10-15 17:01:16 +03:00
|
|
|
|
2010-01-27 00:56:22 +03:00
|
|
|
DEF(TOK_MODE, "__mode__")
|
2016-10-15 17:01:16 +03:00
|
|
|
DEF(TOK_MODE_QI, "__QI__")
|
2010-01-27 00:56:22 +03:00
|
|
|
DEF(TOK_MODE_DI, "__DI__")
|
|
|
|
DEF(TOK_MODE_HI, "__HI__")
|
|
|
|
DEF(TOK_MODE_SI, "__SI__")
|
2016-10-15 17:01:16 +03:00
|
|
|
DEF(TOK_MODE_word, "__word__")
|
|
|
|
|
2005-04-11 01:46:58 +04:00
|
|
|
DEF(TOK_DLLEXPORT, "dllexport")
|
2009-11-13 19:14:05 +03:00
|
|
|
DEF(TOK_DLLIMPORT, "dllimport")
|
2018-07-22 02:54:01 +03:00
|
|
|
DEF(TOK_NODECORATE, "nodecorate")
|
2003-01-06 23:23:26 +03:00
|
|
|
DEF(TOK_NORETURN1, "noreturn")
|
|
|
|
DEF(TOK_NORETURN2, "__noreturn__")
|
2019-03-20 22:03:27 +03:00
|
|
|
DEF(TOK_NORETURN3, "_Noreturn")
|
2014-04-14 04:53:11 +04:00
|
|
|
DEF(TOK_VISIBILITY1, "visibility")
|
|
|
|
DEF(TOK_VISIBILITY2, "__visibility__")
|
various stuff
win32/Makefile ("for cygwin") removed
- On cygwin, the normal ./configure && make can be used with either
cygwin's "GCC for Win32 Toolchain"
./configure --cross-prefix=i686-w64-mingw32-
or with an existing tcc:
./configure --cc=<old-tccdir>/tcc.exe
tcctest.c:
- exclude test_high_clobbers() on _WIN64 (does not work)
tests2/95_bitfield.c:
- use 'signed char' for ARM (where default 'char' is unsigned)
tests:
- remove -I "expr" diff option to allow tests with
busybox-diff.
libtcc.c, tcc.c:
- removed -iwithprefix option. It is supposed to be
combined with -iprefix which we don't have either.
tccgen.c:
- fix assignments and return of 'void', as in
void f() {
void *p, *q;
*p = *q:
return *p;
}
This appears to be allowed but should do nothing.
tcc.h, libtcc.c, tccpp.c:
- Revert "Introduce VIP sysinclude paths which are always searched first"
This reverts commit 1d5e386b0a78393ac6b670c209a185849ec798a1.
The patch was giving tcc's system includes priority over -I which
is not how it should be.
tccelf.c:
- add DT_TEXTREL tag only if text relocations are actually
used (which is likely not the case on x86_64)
- prepare_dynamic_rel(): avoid relocation of unresolved
(weak) symbols
tccrun.c:
- for HAVE_SELINUX, use two mappings to the same (real) file.
(it was so once except the RX mapping wasn't used at all).
tccpe.c:
- fix relocation constant used for x86_64 (by Andrei E. Warentin)
- #ifndef _WIN32 do "chmod 755 ..." to get runnable exes on cygwin.
tccasm.c:
- keep forward asm labels static, otherwise they will endup
in dynsym eventually.
configure, Makefile:
- mingw32: respect ./configure options --bindir --docdir --libdir
- allow overriding tcc when building libtcc1.a and libtcc.def with
make XTCC=<tcc program to use>
- use $(wildcard ...) for install to allow installing just
a cross compiler for example
make cross-arm
make install
- use name <target>-libtcc1.a
build-tcc.bat:
- add options: -clean, -b bindir
2017-10-11 19:13:43 +03:00
|
|
|
|
2003-04-27 01:28:09 +04:00
|
|
|
DEF(TOK_builtin_types_compatible_p, "__builtin_types_compatible_p")
|
2016-07-13 16:11:40 +03:00
|
|
|
DEF(TOK_builtin_choose_expr, "__builtin_choose_expr")
|
2003-04-27 01:28:09 +04:00
|
|
|
DEF(TOK_builtin_constant_p, "__builtin_constant_p")
|
2008-11-30 19:51:34 +03:00
|
|
|
DEF(TOK_builtin_frame_address, "__builtin_frame_address")
|
2015-03-07 00:01:14 +03:00
|
|
|
DEF(TOK_builtin_return_address, "__builtin_return_address")
|
2016-04-16 12:41:53 +03:00
|
|
|
DEF(TOK_builtin_expect, "__builtin_expect")
|
various stuff
win32/Makefile ("for cygwin") removed
- On cygwin, the normal ./configure && make can be used with either
cygwin's "GCC for Win32 Toolchain"
./configure --cross-prefix=i686-w64-mingw32-
or with an existing tcc:
./configure --cc=<old-tccdir>/tcc.exe
tcctest.c:
- exclude test_high_clobbers() on _WIN64 (does not work)
tests2/95_bitfield.c:
- use 'signed char' for ARM (where default 'char' is unsigned)
tests:
- remove -I "expr" diff option to allow tests with
busybox-diff.
libtcc.c, tcc.c:
- removed -iwithprefix option. It is supposed to be
combined with -iprefix which we don't have either.
tccgen.c:
- fix assignments and return of 'void', as in
void f() {
void *p, *q;
*p = *q:
return *p;
}
This appears to be allowed but should do nothing.
tcc.h, libtcc.c, tccpp.c:
- Revert "Introduce VIP sysinclude paths which are always searched first"
This reverts commit 1d5e386b0a78393ac6b670c209a185849ec798a1.
The patch was giving tcc's system includes priority over -I which
is not how it should be.
tccelf.c:
- add DT_TEXTREL tag only if text relocations are actually
used (which is likely not the case on x86_64)
- prepare_dynamic_rel(): avoid relocation of unresolved
(weak) symbols
tccrun.c:
- for HAVE_SELINUX, use two mappings to the same (real) file.
(it was so once except the RX mapping wasn't used at all).
tccpe.c:
- fix relocation constant used for x86_64 (by Andrei E. Warentin)
- #ifndef _WIN32 do "chmod 755 ..." to get runnable exes on cygwin.
tccasm.c:
- keep forward asm labels static, otherwise they will endup
in dynsym eventually.
configure, Makefile:
- mingw32: respect ./configure options --bindir --docdir --libdir
- allow overriding tcc when building libtcc1.a and libtcc.def with
make XTCC=<tcc program to use>
- use $(wildcard ...) for install to allow installing just
a cross compiler for example
make cross-arm
make install
- use name <target>-libtcc1.a
build-tcc.bat:
- add options: -clean, -b bindir
2017-10-11 19:13:43 +03:00
|
|
|
/*DEF(TOK_builtin_va_list, "__builtin_va_list")*/
|
|
|
|
#if defined TCC_TARGET_PE && defined TCC_TARGET_X86_64
|
2013-04-24 05:19:15 +04:00
|
|
|
DEF(TOK_builtin_va_start, "__builtin_va_start")
|
various stuff
win32/Makefile ("for cygwin") removed
- On cygwin, the normal ./configure && make can be used with either
cygwin's "GCC for Win32 Toolchain"
./configure --cross-prefix=i686-w64-mingw32-
or with an existing tcc:
./configure --cc=<old-tccdir>/tcc.exe
tcctest.c:
- exclude test_high_clobbers() on _WIN64 (does not work)
tests2/95_bitfield.c:
- use 'signed char' for ARM (where default 'char' is unsigned)
tests:
- remove -I "expr" diff option to allow tests with
busybox-diff.
libtcc.c, tcc.c:
- removed -iwithprefix option. It is supposed to be
combined with -iprefix which we don't have either.
tccgen.c:
- fix assignments and return of 'void', as in
void f() {
void *p, *q;
*p = *q:
return *p;
}
This appears to be allowed but should do nothing.
tcc.h, libtcc.c, tccpp.c:
- Revert "Introduce VIP sysinclude paths which are always searched first"
This reverts commit 1d5e386b0a78393ac6b670c209a185849ec798a1.
The patch was giving tcc's system includes priority over -I which
is not how it should be.
tccelf.c:
- add DT_TEXTREL tag only if text relocations are actually
used (which is likely not the case on x86_64)
- prepare_dynamic_rel(): avoid relocation of unresolved
(weak) symbols
tccrun.c:
- for HAVE_SELINUX, use two mappings to the same (real) file.
(it was so once except the RX mapping wasn't used at all).
tccpe.c:
- fix relocation constant used for x86_64 (by Andrei E. Warentin)
- #ifndef _WIN32 do "chmod 755 ..." to get runnable exes on cygwin.
tccasm.c:
- keep forward asm labels static, otherwise they will endup
in dynsym eventually.
configure, Makefile:
- mingw32: respect ./configure options --bindir --docdir --libdir
- allow overriding tcc when building libtcc1.a and libtcc.def with
make XTCC=<tcc program to use>
- use $(wildcard ...) for install to allow installing just
a cross compiler for example
make cross-arm
make install
- use name <target>-libtcc1.a
build-tcc.bat:
- add options: -clean, -b bindir
2017-10-11 19:13:43 +03:00
|
|
|
#elif defined TCC_TARGET_X86_64
|
2010-12-28 13:32:40 +03:00
|
|
|
DEF(TOK_builtin_va_arg_types, "__builtin_va_arg_types")
|
various stuff
win32/Makefile ("for cygwin") removed
- On cygwin, the normal ./configure && make can be used with either
cygwin's "GCC for Win32 Toolchain"
./configure --cross-prefix=i686-w64-mingw32-
or with an existing tcc:
./configure --cc=<old-tccdir>/tcc.exe
tcctest.c:
- exclude test_high_clobbers() on _WIN64 (does not work)
tests2/95_bitfield.c:
- use 'signed char' for ARM (where default 'char' is unsigned)
tests:
- remove -I "expr" diff option to allow tests with
busybox-diff.
libtcc.c, tcc.c:
- removed -iwithprefix option. It is supposed to be
combined with -iprefix which we don't have either.
tccgen.c:
- fix assignments and return of 'void', as in
void f() {
void *p, *q;
*p = *q:
return *p;
}
This appears to be allowed but should do nothing.
tcc.h, libtcc.c, tccpp.c:
- Revert "Introduce VIP sysinclude paths which are always searched first"
This reverts commit 1d5e386b0a78393ac6b670c209a185849ec798a1.
The patch was giving tcc's system includes priority over -I which
is not how it should be.
tccelf.c:
- add DT_TEXTREL tag only if text relocations are actually
used (which is likely not the case on x86_64)
- prepare_dynamic_rel(): avoid relocation of unresolved
(weak) symbols
tccrun.c:
- for HAVE_SELINUX, use two mappings to the same (real) file.
(it was so once except the RX mapping wasn't used at all).
tccpe.c:
- fix relocation constant used for x86_64 (by Andrei E. Warentin)
- #ifndef _WIN32 do "chmod 755 ..." to get runnable exes on cygwin.
tccasm.c:
- keep forward asm labels static, otherwise they will endup
in dynsym eventually.
configure, Makefile:
- mingw32: respect ./configure options --bindir --docdir --libdir
- allow overriding tcc when building libtcc1.a and libtcc.def with
make XTCC=<tcc program to use>
- use $(wildcard ...) for install to allow installing just
a cross compiler for example
make cross-arm
make install
- use name <target>-libtcc1.a
build-tcc.bat:
- add options: -clean, -b bindir
2017-10-11 19:13:43 +03:00
|
|
|
#elif defined TCC_TARGET_ARM64
|
2017-12-25 23:32:27 +03:00
|
|
|
DEF(TOK_builtin_va_start, "__builtin_va_start")
|
|
|
|
DEF(TOK_builtin_va_arg, "__builtin_va_arg")
|
2019-07-21 04:25:12 +03:00
|
|
|
#elif defined TCC_TARGET_RISCV64
|
|
|
|
DEF(TOK_builtin_va_start, "__builtin_va_start")
|
2015-02-13 21:58:31 +03:00
|
|
|
#endif
|
|
|
|
|
2005-04-14 01:30:51 +04:00
|
|
|
/* pragma */
|
|
|
|
DEF(TOK_pack, "pack")
|
2009-08-27 16:25:56 +04:00
|
|
|
#if !defined(TCC_TARGET_I386) && !defined(TCC_TARGET_X86_64)
|
2005-04-14 01:30:51 +04:00
|
|
|
/* already defined for assembler */
|
|
|
|
DEF(TOK_ASM_push, "push")
|
|
|
|
DEF(TOK_ASM_pop, "pop")
|
|
|
|
#endif
|
2015-04-16 05:56:21 +03:00
|
|
|
DEF(TOK_comment, "comment")
|
|
|
|
DEF(TOK_lib, "lib")
|
2015-04-24 00:27:36 +03:00
|
|
|
DEF(TOK_push_macro, "push_macro")
|
|
|
|
DEF(TOK_pop_macro, "pop_macro")
|
2015-04-21 15:46:29 +03:00
|
|
|
DEF(TOK_once, "once")
|
2017-07-14 20:26:01 +03:00
|
|
|
DEF(TOK_option, "option")
|
2005-04-14 01:30:51 +04:00
|
|
|
|
2002-07-25 02:12:47 +04:00
|
|
|
/* builtin functions or variables */
|
2014-01-06 22:07:08 +04:00
|
|
|
#ifndef TCC_ARM_EABI
|
2002-11-02 23:46:19 +03:00
|
|
|
DEF(TOK_memcpy, "memcpy")
|
2015-11-05 22:34:58 +03:00
|
|
|
DEF(TOK_memmove, "memmove")
|
2002-11-02 23:46:19 +03:00
|
|
|
DEF(TOK_memset, "memset")
|
|
|
|
DEF(TOK___divdi3, "__divdi3")
|
|
|
|
DEF(TOK___moddi3, "__moddi3")
|
|
|
|
DEF(TOK___udivdi3, "__udivdi3")
|
|
|
|
DEF(TOK___umoddi3, "__umoddi3")
|
2014-01-06 22:07:08 +04:00
|
|
|
DEF(TOK___ashrdi3, "__ashrdi3")
|
|
|
|
DEF(TOK___lshrdi3, "__lshrdi3")
|
|
|
|
DEF(TOK___ashldi3, "__ashldi3")
|
|
|
|
DEF(TOK___floatundisf, "__floatundisf")
|
|
|
|
DEF(TOK___floatundidf, "__floatundidf")
|
|
|
|
# ifndef TCC_ARM_VFP
|
|
|
|
DEF(TOK___floatundixf, "__floatundixf")
|
|
|
|
DEF(TOK___fixunsxfdi, "__fixunsxfdi")
|
|
|
|
# endif
|
|
|
|
DEF(TOK___fixunssfdi, "__fixunssfdi")
|
|
|
|
DEF(TOK___fixunsdfdi, "__fixunsdfdi")
|
2008-09-05 23:07:46 +04:00
|
|
|
#endif
|
2014-01-06 22:07:08 +04:00
|
|
|
|
|
|
|
#if defined TCC_TARGET_ARM
|
|
|
|
# ifdef TCC_ARM_EABI
|
|
|
|
DEF(TOK_memcpy, "__aeabi_memcpy")
|
2015-11-05 22:34:58 +03:00
|
|
|
DEF(TOK_memmove, "__aeabi_memmove")
|
2020-06-16 08:39:48 +03:00
|
|
|
DEF(TOK_memmove4, "__aeabi_memmove4")
|
|
|
|
DEF(TOK_memmove8, "__aeabi_memmove8")
|
2014-01-06 22:07:08 +04:00
|
|
|
DEF(TOK_memset, "__aeabi_memset")
|
|
|
|
DEF(TOK___aeabi_ldivmod, "__aeabi_ldivmod")
|
|
|
|
DEF(TOK___aeabi_uldivmod, "__aeabi_uldivmod")
|
2008-09-05 23:07:46 +04:00
|
|
|
DEF(TOK___aeabi_idivmod, "__aeabi_idivmod")
|
|
|
|
DEF(TOK___aeabi_uidivmod, "__aeabi_uidivmod")
|
2007-12-04 23:38:09 +03:00
|
|
|
DEF(TOK___divsi3, "__aeabi_idiv")
|
|
|
|
DEF(TOK___udivsi3, "__aeabi_uidiv")
|
2008-09-05 23:07:46 +04:00
|
|
|
DEF(TOK___floatdisf, "__aeabi_l2f")
|
|
|
|
DEF(TOK___floatdidf, "__aeabi_l2d")
|
2007-12-04 23:38:09 +03:00
|
|
|
DEF(TOK___fixsfdi, "__aeabi_f2lz")
|
|
|
|
DEF(TOK___fixdfdi, "__aeabi_d2lz")
|
2014-01-06 22:07:08 +04:00
|
|
|
DEF(TOK___ashrdi3, "__aeabi_lasr")
|
|
|
|
DEF(TOK___lshrdi3, "__aeabi_llsr")
|
|
|
|
DEF(TOK___ashldi3, "__aeabi_llsl")
|
|
|
|
DEF(TOK___floatundisf, "__aeabi_ul2f")
|
|
|
|
DEF(TOK___floatundidf, "__aeabi_ul2d")
|
|
|
|
DEF(TOK___fixunssfdi, "__aeabi_f2ulz")
|
|
|
|
DEF(TOK___fixunsdfdi, "__aeabi_d2ulz")
|
|
|
|
# else
|
2008-09-05 23:07:46 +04:00
|
|
|
DEF(TOK___modsi3, "__modsi3")
|
|
|
|
DEF(TOK___umodsi3, "__umodsi3")
|
2007-12-04 23:38:09 +03:00
|
|
|
DEF(TOK___divsi3, "__divsi3")
|
|
|
|
DEF(TOK___udivsi3, "__udivsi3")
|
2008-09-05 23:07:46 +04:00
|
|
|
DEF(TOK___floatdisf, "__floatdisf")
|
|
|
|
DEF(TOK___floatdidf, "__floatdidf")
|
2014-01-06 22:07:08 +04:00
|
|
|
# ifndef TCC_ARM_VFP
|
2008-09-05 23:07:46 +04:00
|
|
|
DEF(TOK___floatdixf, "__floatdixf")
|
2004-10-05 02:19:21 +04:00
|
|
|
DEF(TOK___fixunssfsi, "__fixunssfsi")
|
|
|
|
DEF(TOK___fixunsdfsi, "__fixunsdfsi")
|
|
|
|
DEF(TOK___fixunsxfsi, "__fixunsxfsi")
|
2008-09-05 23:07:46 +04:00
|
|
|
DEF(TOK___fixxfdi, "__fixxfdi")
|
2014-01-06 22:07:08 +04:00
|
|
|
# endif
|
2004-10-05 02:19:21 +04:00
|
|
|
DEF(TOK___fixsfdi, "__fixsfdi")
|
|
|
|
DEF(TOK___fixdfdi, "__fixdfdi")
|
2014-01-06 22:07:08 +04:00
|
|
|
# endif
|
2007-12-04 23:38:09 +03:00
|
|
|
#endif
|
2014-01-06 22:07:08 +04:00
|
|
|
|
|
|
|
#if defined TCC_TARGET_C67
|
2004-10-06 02:33:55 +04:00
|
|
|
DEF(TOK__divi, "_divi")
|
|
|
|
DEF(TOK__divu, "_divu")
|
|
|
|
DEF(TOK__divf, "_divf")
|
|
|
|
DEF(TOK__divd, "_divd")
|
|
|
|
DEF(TOK__remi, "_remi")
|
|
|
|
DEF(TOK__remu, "_remu")
|
2003-10-15 02:15:56 +04:00
|
|
|
#endif
|
2014-01-06 22:07:08 +04:00
|
|
|
|
|
|
|
#if defined TCC_TARGET_I386
|
|
|
|
DEF(TOK___fixsfdi, "__fixsfdi")
|
|
|
|
DEF(TOK___fixdfdi, "__fixdfdi")
|
|
|
|
DEF(TOK___fixxfdi, "__fixxfdi")
|
2008-09-05 23:07:46 +04:00
|
|
|
#endif
|
2014-01-06 22:07:08 +04:00
|
|
|
|
|
|
|
#if defined TCC_TARGET_I386 || defined TCC_TARGET_X86_64
|
|
|
|
DEF(TOK_alloca, "alloca")
|
2007-12-04 23:38:09 +03:00
|
|
|
#endif
|
2014-01-06 22:07:08 +04:00
|
|
|
|
|
|
|
#if defined TCC_TARGET_PE
|
2005-04-11 02:15:08 +04:00
|
|
|
DEF(TOK___chkstk, "__chkstk")
|
2008-09-05 23:07:46 +04:00
|
|
|
#endif
|
2019-07-18 05:51:52 +03:00
|
|
|
#if defined TCC_TARGET_ARM64 || defined TCC_TARGET_RISCV64
|
2015-03-08 03:10:44 +03:00
|
|
|
DEF(TOK___arm64_clear_cache, "__arm64_clear_cache")
|
2015-02-13 21:58:31 +03:00
|
|
|
DEF(TOK___addtf3, "__addtf3")
|
|
|
|
DEF(TOK___subtf3, "__subtf3")
|
|
|
|
DEF(TOK___multf3, "__multf3")
|
|
|
|
DEF(TOK___divtf3, "__divtf3")
|
|
|
|
DEF(TOK___extendsftf2, "__extendsftf2")
|
|
|
|
DEF(TOK___extenddftf2, "__extenddftf2")
|
|
|
|
DEF(TOK___trunctfsf2, "__trunctfsf2")
|
|
|
|
DEF(TOK___trunctfdf2, "__trunctfdf2")
|
|
|
|
DEF(TOK___fixtfsi, "__fixtfsi")
|
|
|
|
DEF(TOK___fixtfdi, "__fixtfdi")
|
|
|
|
DEF(TOK___fixunstfsi, "__fixunstfsi")
|
|
|
|
DEF(TOK___fixunstfdi, "__fixunstfdi")
|
|
|
|
DEF(TOK___floatsitf, "__floatsitf")
|
|
|
|
DEF(TOK___floatditf, "__floatditf")
|
|
|
|
DEF(TOK___floatunsitf, "__floatunsitf")
|
|
|
|
DEF(TOK___floatunditf, "__floatunditf")
|
|
|
|
DEF(TOK___eqtf2, "__eqtf2")
|
|
|
|
DEF(TOK___netf2, "__netf2")
|
|
|
|
DEF(TOK___lttf2, "__lttf2")
|
|
|
|
DEF(TOK___letf2, "__letf2")
|
|
|
|
DEF(TOK___gttf2, "__gttf2")
|
|
|
|
DEF(TOK___getf2, "__getf2")
|
|
|
|
#endif
|
2002-07-25 02:12:47 +04:00
|
|
|
|
|
|
|
/* bound checking symbols */
|
|
|
|
#ifdef CONFIG_TCC_BCHECK
|
2002-11-02 23:46:19 +03:00
|
|
|
DEF(TOK___bound_ptr_add, "__bound_ptr_add")
|
|
|
|
DEF(TOK___bound_ptr_indir1, "__bound_ptr_indir1")
|
|
|
|
DEF(TOK___bound_ptr_indir2, "__bound_ptr_indir2")
|
|
|
|
DEF(TOK___bound_ptr_indir4, "__bound_ptr_indir4")
|
|
|
|
DEF(TOK___bound_ptr_indir8, "__bound_ptr_indir8")
|
|
|
|
DEF(TOK___bound_ptr_indir12, "__bound_ptr_indir12")
|
|
|
|
DEF(TOK___bound_ptr_indir16, "__bound_ptr_indir16")
|
2014-03-29 10:28:02 +04:00
|
|
|
DEF(TOK___bound_main_arg, "__bound_main_arg")
|
2002-11-02 23:46:19 +03:00
|
|
|
DEF(TOK___bound_local_new, "__bound_local_new")
|
|
|
|
DEF(TOK___bound_local_delete, "__bound_local_delete")
|
2020-05-23 21:02:41 +03:00
|
|
|
DEF(TOK___bound_setjmp, "__bound_setjmp")
|
2014-01-06 22:07:08 +04:00
|
|
|
# ifdef TCC_TARGET_PE
|
bcheck cleanup
- revert Makefiles to state before last bcheck additions
Instead, just load bcheck.o explicitly if that is
what is wanted.
- move tcc_add_bcheck() to the <target>-link.c files and
remove revently added arguments. This function is to
support tccelf.c with linking, not for tccgen.c to
support compilation.
- remove -ba option: It said:
"-ba Enable better address checking with bounds checker"
Okay, if it is better then to have it is not an option.
- remove va_copy. It is C99 and we try to stay C89 in tinycc
when possible. For example, MS compilers do not have va_copy.
- win64: revert any 'fixes' to alloca
It was correct as it was before, except for bound_checking
where it was not implemented. This should now work too.
- remove parasitic filename:linenum features
Such feature is already present with rt_printline in
tccrun.c. If it doesn't work it can be fixed.
- revert changes to gen_bounded_ptr_add()
gen_bounded_ptr_add() was working as it should before
(mostly). For the sake of simplicity I switched it to
CDECL. Anyway, FASTCALL means SLOWCALL with tinycc.
In exchange you get one addition which is required for
bounds_cnecking function arguments. The important thing
is to check them *BEFORE* they are loaded into registers.
New function gbound_args() does that.
In any case, code instrumentation with the bounds-check
functions as such now seems to work flawlessly again,
which means when they are inserted as NOPs, any code that
tcc can compile, seems to behave just the same as without
them.
What these functions then do when fully enabled, is a
differnt story. I did not touch this.
2019-12-12 17:45:45 +03:00
|
|
|
# ifdef TCC_TARGET_X86_64
|
|
|
|
DEF(TOK___bound_alloca_nr, "__bound_alloca_nr")
|
|
|
|
# endif
|
2002-11-02 23:46:19 +03:00
|
|
|
DEF(TOK_malloc, "malloc")
|
|
|
|
DEF(TOK_free, "free")
|
|
|
|
DEF(TOK_realloc, "realloc")
|
|
|
|
DEF(TOK_memalign, "memalign")
|
|
|
|
DEF(TOK_calloc, "calloc")
|
2020-05-25 13:26:55 +03:00
|
|
|
# else
|
|
|
|
DEF(TOK_sigsetjmp, "sigsetjmp")
|
|
|
|
DEF(TOK___sigsetjmp, "__sigsetjmp")
|
|
|
|
DEF(TOK_siglongjmp, "siglongjmp")
|
2014-01-06 22:07:08 +04:00
|
|
|
# endif
|
2019-12-10 10:07:25 +03:00
|
|
|
DEF(TOK_mmap, "mmap")
|
|
|
|
DEF(TOK_munmap, "munmap")
|
2019-12-12 22:49:35 +03:00
|
|
|
DEF(TOK_memcmp, "memcmp")
|
2002-11-02 23:46:19 +03:00
|
|
|
DEF(TOK_strlen, "strlen")
|
|
|
|
DEF(TOK_strcpy, "strcpy")
|
2019-12-12 22:49:35 +03:00
|
|
|
DEF(TOK_strncpy, "strncpy")
|
|
|
|
DEF(TOK_strcmp, "strcmp")
|
|
|
|
DEF(TOK_strncmp, "strncmp")
|
|
|
|
DEF(TOK_strcat, "strcat")
|
|
|
|
DEF(TOK_strchr, "strchr")
|
|
|
|
DEF(TOK_strdup, "strdup")
|
2020-05-23 21:02:41 +03:00
|
|
|
DEF(TOK_setjmp, "setjmp")
|
|
|
|
DEF(TOK__setjmp, "_setjmp")
|
|
|
|
DEF(TOK_longjmp, "longjmp")
|
2011-04-06 20:17:03 +04:00
|
|
|
#endif
|
2003-01-06 23:23:26 +03:00
|
|
|
|
2003-04-29 01:23:53 +04:00
|
|
|
/* Tiny Assembler */
|
2016-04-13 10:23:46 +03:00
|
|
|
DEF_ASMDIR(byte) /* must be first directive */
|
|
|
|
DEF_ASMDIR(word)
|
|
|
|
DEF_ASMDIR(align)
|
2016-06-29 18:22:05 +03:00
|
|
|
DEF_ASMDIR(balign)
|
2016-04-13 10:23:46 +03:00
|
|
|
DEF_ASMDIR(p2align)
|
2016-08-07 05:27:32 +03:00
|
|
|
DEF_ASMDIR(set)
|
2016-04-13 10:23:46 +03:00
|
|
|
DEF_ASMDIR(skip)
|
|
|
|
DEF_ASMDIR(space)
|
|
|
|
DEF_ASMDIR(string)
|
|
|
|
DEF_ASMDIR(asciz)
|
|
|
|
DEF_ASMDIR(ascii)
|
|
|
|
DEF_ASMDIR(file)
|
|
|
|
DEF_ASMDIR(globl)
|
|
|
|
DEF_ASMDIR(global)
|
|
|
|
DEF_ASMDIR(weak)
|
|
|
|
DEF_ASMDIR(hidden)
|
|
|
|
DEF_ASMDIR(ident)
|
|
|
|
DEF_ASMDIR(size)
|
|
|
|
DEF_ASMDIR(type)
|
|
|
|
DEF_ASMDIR(text)
|
|
|
|
DEF_ASMDIR(data)
|
|
|
|
DEF_ASMDIR(bss)
|
|
|
|
DEF_ASMDIR(previous)
|
2016-06-28 16:11:06 +03:00
|
|
|
DEF_ASMDIR(pushsection)
|
|
|
|
DEF_ASMDIR(popsection)
|
2016-04-13 10:23:46 +03:00
|
|
|
DEF_ASMDIR(fill)
|
2016-04-22 18:29:56 +03:00
|
|
|
DEF_ASMDIR(rept)
|
|
|
|
DEF_ASMDIR(endr)
|
2016-04-13 10:23:46 +03:00
|
|
|
DEF_ASMDIR(org)
|
|
|
|
DEF_ASMDIR(quad)
|
2009-08-27 11:34:35 +04:00
|
|
|
#if defined(TCC_TARGET_I386)
|
2016-04-13 10:23:46 +03:00
|
|
|
DEF_ASMDIR(code16)
|
|
|
|
DEF_ASMDIR(code32)
|
2009-08-27 11:53:50 +04:00
|
|
|
#elif defined(TCC_TARGET_X86_64)
|
2016-04-13 10:23:46 +03:00
|
|
|
DEF_ASMDIR(code64)
|
2009-08-27 11:34:35 +04:00
|
|
|
#endif
|
2016-04-13 10:23:46 +03:00
|
|
|
DEF_ASMDIR(short)
|
|
|
|
DEF_ASMDIR(long)
|
|
|
|
DEF_ASMDIR(int)
|
|
|
|
DEF_ASMDIR(section) /* must be last directive */
|
2003-01-06 23:23:26 +03:00
|
|
|
|
2009-12-20 00:08:37 +03:00
|
|
|
#if defined TCC_TARGET_I386 || defined TCC_TARGET_X86_64
|
2015-07-29 23:53:57 +03:00
|
|
|
#include "i386-tok.h"
|
2003-01-06 23:23:26 +03:00
|
|
|
#endif
|