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