update
[tinycc.git] / TODO
blobb120ee79e5068347cbf031e61a2060774f03049a
1 TODO list:
3 - cast bug (Peter Wang)
4 - define incomplete type if defined several times (Peter Wang).
5 - long long constant evaluation
6 - configure --cc=tcc (still one bug in libtcc1.c)
7 - disable-asm and disable-bcheck options
8 - test binutils/gcc compile
9 - add alloca(), __builtin_expect()
10 - gcc '-E' option.
11 - optimize VT_LOCAL + const
12 - tci patch + argument.
13 - '-b' bug.
14 - atexit (Nigel Horne)
15 - see -lxxx bug (Michael Charity).
16 - handle inline functions as macros.
17 - see transparent union pb in /urs/include/sys/socket.h
18 - precise behaviour of typeof with arrays ? (__put_user macro)
19 - #include_next support for /usr/include/limits ?
20   but should suffice for most cases)
21 - handle '? x, y : z' in unsized variable initialization (',' is
22   considered incorrectly as separator in preparser)
23 - function pointers/lvalues in ? : (linux kernel net/core/dev.c)
24 - transform functions to function pointers in function parameters (net/ipv4/ip_output.c)
25 - fix function pointer type display
26 - fix bound exit on RedHat 7.3
27 - check lcc test suite -> fix bitfield binary operations
28 - check section alignment in C
29 - fix invalid cast in comparison 'if (v == (int8_t)v)'
30 - packed attribute
31 - finish varargs.h support (gcc 3.2 testsuite issue)
32 - fix static functions declared inside block
33 - C99: add variable size arrays (gcc 3.2 testsuite issue)
34 - C99: add complex types (gcc 3.2 testsuite issue)
35 - postfix compound literals (see 20010124-1.c)
36 - fix multiple unions init
37 - setjmp is not supported properly in bound checking.
38 - better local variables handling (needed for other targets)
39 - fix bound check code with '&' on local variables (currently done
40   only for local arrays).
41 - sizeof, alignof, typeof can still generate code in some cases.
42 - bound checking and float/long long/struct copy code. bound
43   checking and symbol + offset optimization
44 - Fix the remaining libtcc memory leaks.
45 - make libtcc fully reentrant (except for the compilation stage itself).
46 - '-MD' option
48 Optimizations:
50 - suppress specific anonymous symbol handling
51 - more parse optimizations (=even faster compilation)
52 - memory alloc optimizations (=even faster compilation)
54 Not critical:
56 - C99: fix multiple compound literals inits in blocks (ISOC99
57   normative example - only relevant when using gotos! -> must add
58   boolean variable to tell if compound literal was already
59   initialized).
60 - add PowerPC or ARM code generator and improve codegen for RISC (need
61   to suppress VT_LOCAL and use a base register instead).
62 - interactive mode / integrated debugger
63 - fix preprocessor symbol redefinition
64 - better constant opt (&&, ||, ?:)
65 - add portable byte code generator and interpreter for other
66   unsupported architectures.
67 - C++: variable declaration in for, minimal 'class' support.
68 - win32: add __stdcall, __intxx. use resolve for bchecked malloc et
69   al. check GetModuleHandle for dlls. check exception code (exception
70   filter func).
71 - handle void (__attribute__() *ptr)()