2021-08-01 18:04:46 +00:00
|
|
|
/*********************************************************************/
|
2002-11-02 20:46:19 +00:00
|
|
|
/* keywords */
|
|
|
|
DEF(TOK_IF, "if")
|
|
|
|
DEF(TOK_ELSE, "else")
|
|
|
|
DEF(TOK_WHILE, "while")
|
|
|
|
DEF(TOK_FOR, "for")
|
|
|
|
DEF(TOK_DO, "do")
|
|
|
|
DEF(TOK_CONTINUE, "continue")
|
2024-02-09 15:07:43 +00:00
|
|
|
DEF(TOK_BREAK, "break")
|
|
|
|
DEF(TOK_RETURN, "return")
|
|
|
|
DEF(TOK_GOTO, "goto")
|
2002-11-02 20:46:19 +00:00
|
|
|
DEF(TOK_SWITCH, "switch")
|
|
|
|
DEF(TOK_CASE, "case")
|
2024-02-09 15:07:43 +00:00
|
|
|
DEF(TOK_DEFAULT, "default")
|
|
|
|
DEF(TOK_ASM1, "asm")
|
|
|
|
DEF(TOK_ASM2, "__asm")
|
|
|
|
DEF(TOK_ASM3, "__asm__")
|
2002-08-29 21:15:05 +00:00
|
|
|
|
2024-02-09 15:07:43 +00:00
|
|
|
DEF(TOK_EXTERN, "extern")
|
|
|
|
DEF(TOK_STATIC, "static")
|
|
|
|
DEF(TOK_UNSIGNED, "unsigned")
|
2021-01-26 13:29:07 +00:00
|
|
|
DEF(TOK__Atomic, "_Atomic")
|
2003-01-06 20:23:26 +00: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 20:46:19 +00:00
|
|
|
DEF(TOK_REGISTER, "register")
|
2003-01-06 20:23:26 +00:00
|
|
|
DEF(TOK_SIGNED1, "signed")
|
|
|
|
DEF(TOK_SIGNED2, "__signed") /* gcc keyword */
|
|
|
|
DEF(TOK_SIGNED3, "__signed__") /* gcc keyword */
|
2002-11-02 20:46:19 +00:00
|
|
|
DEF(TOK_AUTO, "auto")
|
2003-01-06 20:23:26 +00: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 */
|
2022-12-03 19:09:11 +00:00
|
|
|
DEF(TOK_THREAD_LOCAL, "_Thread_local") /* C11 thread-local storage */
|
2016-12-09 10:42:41 +00:00
|
|
|
|
|
|
|
DEF(TOK_GENERIC, "_Generic")
|
2019-04-27 23:07:01 +00:00
|
|
|
DEF(TOK_STATIC_ASSERT, "_Static_assert")
|
2016-12-09 10:42:41 +00:00
|
|
|
|
2024-02-09 15:07:43 +00:00
|
|
|
DEF(TOK_VOID, "void")
|
|
|
|
DEF(TOK_CHAR, "char")
|
|
|
|
DEF(TOK_INT, "int")
|
2002-11-02 20:46:19 +00:00
|
|
|
DEF(TOK_FLOAT, "float")
|
|
|
|
DEF(TOK_DOUBLE, "double")
|
|
|
|
DEF(TOK_BOOL, "_Bool")
|
2022-10-19 12:06:04 +00:00
|
|
|
DEF(TOK_COMPLEX, "_Complex")
|
2002-11-02 20:46:19 +00:00
|
|
|
DEF(TOK_SHORT, "short")
|
2024-02-09 15:07:43 +00:00
|
|
|
DEF(TOK_LONG, "long")
|
2002-11-02 20:46:19 +00:00
|
|
|
DEF(TOK_STRUCT, "struct")
|
|
|
|
DEF(TOK_UNION, "union")
|
|
|
|
DEF(TOK_TYPEDEF, "typedef")
|
|
|
|
DEF(TOK_ENUM, "enum")
|
|
|
|
DEF(TOK_SIZEOF, "sizeof")
|
2003-01-06 20:23:26 +00:00
|
|
|
DEF(TOK_ATTRIBUTE1, "__attribute")
|
|
|
|
DEF(TOK_ATTRIBUTE2, "__attribute__")
|
|
|
|
DEF(TOK_ALIGNOF1, "__alignof")
|
|
|
|
DEF(TOK_ALIGNOF2, "__alignof__")
|
2018-12-12 18:53:58 +00:00
|
|
|
DEF(TOK_ALIGNOF3, "_Alignof")
|
2019-03-20 19:03:27 +00:00
|
|
|
DEF(TOK_ALIGNAS, "_Alignas")
|
2003-01-06 20:23:26 +00:00
|
|
|
DEF(TOK_TYPEOF1, "typeof")
|
|
|
|
DEF(TOK_TYPEOF2, "__typeof")
|
|
|
|
DEF(TOK_TYPEOF3, "__typeof__")
|
|
|
|
DEF(TOK_LABEL, "__label__")
|
2002-08-29 21:15:05 +00:00
|
|
|
|
2002-11-02 20:46:19 +00:00
|
|
|
/*********************************************************************/
|
|
|
|
/* the following are not keywords. They are included to ease parsing */
|
|
|
|
/* preprocessor only */
|
|
|
|
DEF(TOK_DEFINE, "define")
|
|
|
|
DEF(TOK_INCLUDE, "include")
|
2005-04-10 22:18:53 +00:00
|
|
|
DEF(TOK_INCLUDE_NEXT, "include_next")
|
2002-11-02 20:46:19 +00: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 15:58:28 +00:00
|
|
|
DEF(TOK_WARNING, "warning")
|
2002-11-02 20:46:19 +00:00
|
|
|
DEF(TOK_LINE, "line")
|
2002-11-24 15:58:28 +00:00
|
|
|
DEF(TOK_PRAGMA, "pragma")
|
2002-11-02 20:46:19 +00: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 03:30:47 +00:00
|
|
|
DEF(TOK___COUNTER__, "__COUNTER__")
|
2020-05-08 22:39:45 +00:00
|
|
|
DEF(TOK___HAS_INCLUDE, "__has_include")
|
2022-08-14 10:17:31 +00:00
|
|
|
DEF(TOK___HAS_INCLUDE_NEXT, "__has_include_next")
|
2010-05-06 00:19:00 +00:00
|
|
|
|
2002-11-02 20:46:19 +00:00
|
|
|
/* special identifiers */
|
|
|
|
DEF(TOK___FUNC__, "__func__")
|
2010-05-06 00:19:00 +00:00
|
|
|
|
|
|
|
/* special floating point values */
|
|
|
|
DEF(TOK___NAN__, "__nan__")
|
|
|
|
DEF(TOK___SNAN__, "__snan__")
|
|
|
|
DEF(TOK___INF__, "__inf__")
|
|
|
|
|
2002-07-22 23:37:39 +00:00
|
|
|
/* attribute identifiers */
|
2003-01-06 20:23:26 +00: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-29 23:55:13 +00:00
|
|
|
DEF(TOK_PACKED1, "packed")
|
|
|
|
DEF(TOK_PACKED2, "__packed__")
|
2010-02-27 16:37:59 +00:00
|
|
|
DEF(TOK_WEAK1, "weak")
|
|
|
|
DEF(TOK_WEAK2, "__weak__")
|
2011-03-03 09:58:45 +00:00
|
|
|
DEF(TOK_ALIAS1, "alias")
|
|
|
|
DEF(TOK_ALIAS2, "__alias__")
|
2003-01-06 20:23:26 +00:00
|
|
|
DEF(TOK_UNUSED1, "unused")
|
|
|
|
DEF(TOK_UNUSED2, "__unused__")
|
2023-03-10 11:41:43 +00:00
|
|
|
DEF(TOK_NODEBUG1, "nodebug")
|
|
|
|
DEF(TOK_NODEBUG2, "__nodebug__")
|
2003-01-06 20:23:26 +00:00
|
|
|
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 09:18:02 +00:00
|
|
|
DEF(TOK_FASTCALL1, "fastcall")
|
|
|
|
DEF(TOK_FASTCALL2, "__fastcall")
|
|
|
|
DEF(TOK_FASTCALL3, "__fastcall__")
|
2024-06-03 11:52:34 +00:00
|
|
|
DEF(TOK_THISCALL1, "thiscall")
|
|
|
|
DEF(TOK_THISCALL2, "__thiscall")
|
|
|
|
DEF(TOK_THISCALL3, "__thiscall__")
|
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 16:13:43 +00:00
|
|
|
DEF(TOK_REGPARM1, "regparm")
|
|
|
|
DEF(TOK_REGPARM2, "__regparm__")
|
2018-12-20 09:55:22 +00:00
|
|
|
DEF(TOK_CLEANUP1, "cleanup")
|
|
|
|
DEF(TOK_CLEANUP2, "__cleanup__")
|
2019-10-29 06:02:58 +00:00
|
|
|
DEF(TOK_CONSTRUCTOR1, "constructor")
|
|
|
|
DEF(TOK_CONSTRUCTOR2, "__constructor__")
|
|
|
|
DEF(TOK_DESTRUCTOR1, "destructor")
|
|
|
|
DEF(TOK_DESTRUCTOR2, "__destructor__")
|
2020-05-22 03:17:02 +00:00
|
|
|
DEF(TOK_ALWAYS_INLINE1, "always_inline")
|
|
|
|
DEF(TOK_ALWAYS_INLINE2, "__always_inline__")
|
2016-10-15 14:01:16 +00:00
|
|
|
|
2010-01-26 21:56:22 +00:00
|
|
|
DEF(TOK_MODE, "__mode__")
|
2016-10-15 14:01:16 +00:00
|
|
|
DEF(TOK_MODE_QI, "__QI__")
|
2010-01-26 21:56:22 +00:00
|
|
|
DEF(TOK_MODE_DI, "__DI__")
|
|
|
|
DEF(TOK_MODE_HI, "__HI__")
|
|
|
|
DEF(TOK_MODE_SI, "__SI__")
|
2016-10-15 14:01:16 +00:00
|
|
|
DEF(TOK_MODE_word, "__word__")
|
|
|
|
|
2005-04-10 21:46:58 +00:00
|
|
|
DEF(TOK_DLLEXPORT, "dllexport")
|
2009-11-13 16:14:05 +00:00
|
|
|
DEF(TOK_DLLIMPORT, "dllimport")
|
2018-07-21 23:54:01 +00:00
|
|
|
DEF(TOK_NODECORATE, "nodecorate")
|
2003-01-06 20:23:26 +00:00
|
|
|
DEF(TOK_NORETURN1, "noreturn")
|
|
|
|
DEF(TOK_NORETURN2, "__noreturn__")
|
2019-03-20 19:03:27 +00:00
|
|
|
DEF(TOK_NORETURN3, "_Noreturn")
|
2014-04-14 00:53:11 +00: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 16:13:43 +00:00
|
|
|
|
2003-04-26 21:28:09 +00:00
|
|
|
DEF(TOK_builtin_types_compatible_p, "__builtin_types_compatible_p")
|
2016-07-13 13:11:40 +00:00
|
|
|
DEF(TOK_builtin_choose_expr, "__builtin_choose_expr")
|
2003-04-26 21:28:09 +00:00
|
|
|
DEF(TOK_builtin_constant_p, "__builtin_constant_p")
|
2008-11-30 16:51:34 +00:00
|
|
|
DEF(TOK_builtin_frame_address, "__builtin_frame_address")
|
2015-03-06 21:01:14 +00:00
|
|
|
DEF(TOK_builtin_return_address, "__builtin_return_address")
|
2016-04-16 09:41:53 +00:00
|
|
|
DEF(TOK_builtin_expect, "__builtin_expect")
|
2024-10-09 21:15:05 +00:00
|
|
|
DEF(TOK_builtin_unreachable, "__builtin_unreachable")
|
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 16:13:43 +00:00
|
|
|
/*DEF(TOK_builtin_va_list, "__builtin_va_list")*/
|
2015-02-13 18:58:31 +00:00
|
|
|
|
2021-01-26 13:29:07 +00:00
|
|
|
/* atomic operations */
|
2021-03-30 07:26:26 +00:00
|
|
|
#define DEF_ATOMIC(ID) DEF(TOK_##__##ID, "__"#ID)
|
2021-02-14 18:41:59 +00:00
|
|
|
DEF_ATOMIC(atomic_store)
|
|
|
|
DEF_ATOMIC(atomic_load)
|
|
|
|
DEF_ATOMIC(atomic_exchange)
|
|
|
|
DEF_ATOMIC(atomic_compare_exchange)
|
|
|
|
DEF_ATOMIC(atomic_fetch_add)
|
|
|
|
DEF_ATOMIC(atomic_fetch_sub)
|
|
|
|
DEF_ATOMIC(atomic_fetch_or)
|
|
|
|
DEF_ATOMIC(atomic_fetch_xor)
|
|
|
|
DEF_ATOMIC(atomic_fetch_and)
|
2022-10-16 16:51:56 +00:00
|
|
|
DEF_ATOMIC(atomic_fetch_nand)
|
|
|
|
DEF_ATOMIC(atomic_add_fetch)
|
|
|
|
DEF_ATOMIC(atomic_sub_fetch)
|
|
|
|
DEF_ATOMIC(atomic_or_fetch)
|
|
|
|
DEF_ATOMIC(atomic_xor_fetch)
|
|
|
|
DEF_ATOMIC(atomic_and_fetch)
|
|
|
|
DEF_ATOMIC(atomic_nand_fetch)
|
2021-01-26 18:24:58 +00:00
|
|
|
|
2005-04-13 21:30:51 +00:00
|
|
|
/* pragma */
|
|
|
|
DEF(TOK_pack, "pack")
|
2015-04-16 02:56:21 +00:00
|
|
|
DEF(TOK_comment, "comment")
|
|
|
|
DEF(TOK_lib, "lib")
|
2015-04-23 21:27:36 +00:00
|
|
|
DEF(TOK_push_macro, "push_macro")
|
|
|
|
DEF(TOK_pop_macro, "pop_macro")
|
2015-04-21 12:46:29 +00:00
|
|
|
DEF(TOK_once, "once")
|
2017-07-14 17:26:01 +00:00
|
|
|
DEF(TOK_option, "option")
|
2005-04-13 21:30:51 +00:00
|
|
|
|
2002-07-24 22:12:47 +00:00
|
|
|
/* builtin functions or variables */
|
2002-11-02 20:46:19 +00:00
|
|
|
DEF(TOK_memcpy, "memcpy")
|
2015-11-05 19:34:58 +00:00
|
|
|
DEF(TOK_memmove, "memmove")
|
2002-11-02 20:46:19 +00:00
|
|
|
DEF(TOK_memset, "memset")
|
|
|
|
DEF(TOK___divdi3, "__divdi3")
|
|
|
|
DEF(TOK___moddi3, "__moddi3")
|
|
|
|
DEF(TOK___udivdi3, "__udivdi3")
|
|
|
|
DEF(TOK___umoddi3, "__umoddi3")
|
2014-01-06 18:07:08 +00:00
|
|
|
DEF(TOK___ashrdi3, "__ashrdi3")
|
|
|
|
DEF(TOK___lshrdi3, "__lshrdi3")
|
|
|
|
DEF(TOK___ashldi3, "__ashldi3")
|
|
|
|
DEF(TOK___floatundisf, "__floatundisf")
|
|
|
|
DEF(TOK___floatundidf, "__floatundidf")
|
|
|
|
DEF(TOK___floatundixf, "__floatundixf")
|
|
|
|
DEF(TOK___fixunsxfdi, "__fixunsxfdi")
|
|
|
|
DEF(TOK___fixunssfdi, "__fixunssfdi")
|
|
|
|
DEF(TOK___fixunsdfdi, "__fixunsdfdi")
|
|
|
|
|
|
|
|
DEF(TOK___fixsfdi, "__fixsfdi")
|
|
|
|
DEF(TOK___fixdfdi, "__fixdfdi")
|
|
|
|
DEF(TOK___fixxfdi, "__fixxfdi")
|
|
|
|
|
|
|
|
DEF(TOK_alloca, "alloca")
|
2021-08-01 18:04:46 +00:00
|
|
|
|
|
|
|
/*********************************************************************/
|
2003-04-28 21:23:53 +00:00
|
|
|
/* Tiny Assembler */
|
2021-08-01 18:04:46 +00:00
|
|
|
#define DEF_ASM(x) DEF(TOK_ASM_ ## x, #x)
|
|
|
|
#define DEF_ASMDIR(x) DEF(TOK_ASMDIR_ ## x, "." #x)
|
|
|
|
#define TOK_ASM_int TOK_INT
|
|
|
|
|
|
|
|
#define TOK_ASMDIR_FIRST TOK_ASMDIR_byte
|
|
|
|
#define TOK_ASMDIR_LAST TOK_ASMDIR_section
|
|
|
|
|
|
|
|
DEF_ASMDIR(byte) /* must be first directive */
|
2016-04-13 07:23:46 +00:00
|
|
|
DEF_ASMDIR(word)
|
|
|
|
DEF_ASMDIR(align)
|
2016-06-29 15:22:05 +00:00
|
|
|
DEF_ASMDIR(balign)
|
2016-04-13 07:23:46 +00:00
|
|
|
DEF_ASMDIR(p2align)
|
2016-08-07 02:27:32 +00:00
|
|
|
DEF_ASMDIR(set)
|
2016-04-13 07:23:46 +00: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 13:11:06 +00:00
|
|
|
DEF_ASMDIR(pushsection)
|
|
|
|
DEF_ASMDIR(popsection)
|
2016-04-13 07:23:46 +00:00
|
|
|
DEF_ASMDIR(fill)
|
2016-04-22 15:29:56 +00:00
|
|
|
DEF_ASMDIR(rept)
|
|
|
|
DEF_ASMDIR(endr)
|
2016-04-13 07:23:46 +00:00
|
|
|
DEF_ASMDIR(org)
|
|
|
|
DEF_ASMDIR(quad)
|
|
|
|
DEF_ASMDIR(code16)
|
|
|
|
DEF_ASMDIR(code32)
|
|
|
|
DEF_ASMDIR(short)
|
|
|
|
DEF_ASMDIR(long)
|
|
|
|
DEF_ASMDIR(int)
|
2024-12-12 19:59:50 +00:00
|
|
|
DEF_ASMDIR(symver)
|
2021-08-01 18:04:46 +00:00
|
|
|
DEF_ASMDIR(section) /* must be last directive */
|
2003-01-06 20:23:26 +00:00
|
|
|
|
2025-02-08 14:45:16 +00:00
|
|
|
#include "i386/token.inc"
|