tinycc/TODO

93 lines
3.2 KiB
Plaintext
Raw Normal View History

2001-11-11 18:01:29 +00:00
TODO list:
2001-10-27 23:48:39 +00:00
2008-01-16 22:33:56 +00:00
Bugs:
- fix macro substitution with nested definitions (ShangHongzhang)
- FPU st(0) is left unclean (kwisatz haderach). Incompatible with
optimized gcc/msc code
2004-10-23 23:11:05 +00:00
- constructors
2003-10-04 21:29:04 +00:00
- cast bug (Peter Wang)
- define incomplete type if defined several times (Peter Wang).
2003-05-24 16:12:58 +00:00
- test binutils/gcc compile
- tci patch + argument.
2003-04-13 19:50:35 +00:00
- see -lxxx bug (Michael Charity).
2003-01-06 20:19:20 +00:00
- see transparent union pb in /urs/include/sys/socket.h
- precise behaviour of typeof with arrays ? (__put_user macro)
but should suffice for most cases)
2003-05-24 16:12:58 +00:00
- handle '? x, y : z' in unsized variable initialization (',' is
considered incorrectly as separator in preparser)
2008-01-16 22:33:56 +00:00
- transform functions to function pointers in function parameters
(net/ipv4/ip_output.c)
2003-01-06 20:19:20 +00:00
- fix function pointer type display
- check lcc test suite -> fix bitfield binary operations
- check section alignment in C
- fix invalid cast in comparison 'if (v == (int8_t)v)'
2002-12-08 14:34:02 +00:00
- finish varargs.h support (gcc 3.2 testsuite issue)
2002-11-24 15:58:28 +00:00
- fix static functions declared inside block
- fix multiple unions init
2008-01-16 22:33:56 +00:00
- sizeof, alignof, typeof can still generate code in some cases.
- Fix the remaining libtcc memory leaks.
- make libtcc fully reentrant (except for the compilation stage itself).
Bound checking:
- '-b' bug.
- fix bound exit on RedHat 7.3
2002-08-31 12:44:16 +00:00
- setjmp is not supported properly in bound checking.
2002-01-05 19:50:17 +00:00
- fix bound check code with '&' on local variables (currently done
only for local arrays).
2002-11-03 00:44:38 +00:00
- bound checking and float/long long/struct copy code. bound
2002-08-31 12:44:16 +00:00
checking and symbol + offset optimization
2008-01-16 22:33:56 +00:00
Missing features:
- disable-asm and disable-bcheck options
- __builtin_expect()
- improve '-E' option.
- atexit (Nigel Horne)
- packed attribute
- C99: add complex types (gcc 3.2 testsuite issue)
- postfix compound literals (see 20010124-1.c)
2001-11-11 18:01:29 +00:00
2002-11-24 15:58:28 +00:00
Optimizations:
- suppress specific anonymous symbol handling
- more parse optimizations (=even faster compilation)
- memory alloc optimizations (=even faster compilation)
2008-01-16 22:33:56 +00:00
- optimize VT_LOCAL + const
- better local variables handling (needed for other targets)
2002-11-24 15:58:28 +00:00
2001-11-11 18:01:29 +00:00
Not critical:
2002-08-18 14:34:02 +00:00
- C99: fix multiple compound literals inits in blocks (ISOC99
normative example - only relevant when using gotos! -> must add
boolean variable to tell if compound literal was already
initialized).
2002-08-18 14:44:08 +00:00
- add PowerPC or ARM code generator and improve codegen for RISC (need
to suppress VT_LOCAL and use a base register instead).
- interactive mode / integrated debugger
2001-12-02 21:44:40 +00:00
- fix preprocessor symbol redefinition
2001-11-11 18:01:29 +00:00
- better constant opt (&&, ||, ?:)
2001-11-18 16:33:35 +00:00
- add portable byte code generator and interpreter for other
unsupported architectures.
2002-07-24 22:13:02 +00:00
- C++: variable declaration in for, minimal 'class' support.
2008-01-16 22:33:56 +00:00
- win32: __intxx. use resolve for bchecked malloc et al.
check exception code (exception filter func).
2002-08-18 14:34:02 +00:00
- handle void (__attribute__() *ptr)()
2002-11-24 15:58:28 +00:00
2008-01-16 22:33:56 +00:00
Fixed (probably):
2002-11-24 15:58:28 +00:00
2008-01-16 22:33:56 +00:00
- bug with defines:
#define spin_lock(lock) do { } while (0)
#define wq_spin_lock spin_lock
#define TEST() wq_spin_lock(a)
- typedefs can be structure fields
- see bugfixes.diff + improvement.diff from Daniel Glockner
- long long constant evaluation
- add alloca()
- gcc '-E' option.
- #include_next support for /usr/include/limits ?
- function pointers/lvalues in ? : (linux kernel net/core/dev.c)
- win32: add __stdcall, check GetModuleHandle for dlls.