aboutsummaryrefslogtreecommitdiff
path: root/tcc.c
Commit message (Collapse)AuthorAgeFilesLines
* added better relocation support (needed for file output)bellard2002-07-141-278/+438
|
* better file output - fixed order of variable declaration if initializer is ↵bellard2002-07-131-65/+99
| | | | present
* optimized bound checkingbellard2002-07-131-9/+14
|
* added char/short types in lvalues to fix cast problems - added gcc style ↵bellard2002-07-131-101/+177
| | | | variadic macros - fixed zero arg macros - refuse extra comma at end of function call - fixed unused logical operation result case
* correct line numbers when reparsing - added explicit TokenString structure - ↵bellard2002-06-301-108/+287
| | | | better logic for search path
* added libtcc - fixed spill reg bugsbellard2002-05-131-74/+173
|
* added tcc finite math function to avoid portability problemsbellard2002-03-171-1/+10
|
* added floating point constant propagationbellard2002-03-171-8/+70
|
* added optionnal bound check compile - fixed error reportingbellard2002-03-031-13/+40
|
* added CIL targetbellard2002-02-101-8/+41
|
* bound check fixbellard2002-01-261-1/+3
|
* increased hash table sizes - added cdecl and stdcall attributes - #elif fix ↵bellard2002-01-261-46/+132
| | | | - empty args in macro fix - benchmark option
* fixed -D optionbellard2002-01-131-70/+73
|
* win32 defines + new internal file layerbellard2002-01-121-81/+179
|
* added ansi protobellard2002-01-051-1/+1
|
* implicit cast in global init - added bound check define - fixed division by ↵bellard2002-01-051-16/+28
| | | | zero in constant eval
* better run time error displaybellard2002-01-051-8/+19
|
* finished bound check code (still slow) - fixed binary ops code gen - fixed ↵bellard2002-01-051-21/+97
| | | | float return
* fixed VT_LLOCAL dereferencingbellard2002-01-051-11/+25
|
* added minimal debug info supportbellard2002-01-041-22/+562
|
* suppressed some buffer overflows - moved function generation to cpu specific ↵bellard2002-01-031-83/+61
| | | | code (XXX: should have less cpu specific code for that)
* 0 constant can be used as a pointerbellard2002-01-031-18/+20
|
* added full long long support - added section support - added __attribute__ ↵bellard2002-01-031-258/+1162
| | | | parsing - added -U option
* use register classes (will allow better and simpler code gen - fixed long ↵bellard2001-12-231-33/+80
| | | | double handling
* last patches to separate type and value handlingbellard2001-12-221-142/+159
|
* separated type and value on stackbellard2001-12-201-214/+244
|
* error() fixesbellard2001-12-191-5/+11
|
* float updatebellard2001-12-171-213/+486
|
* new value stack system to handle the futur types (long long and floats)bellard2001-12-161-245/+236
|
* fixed macro bug and dummy float constant parsingbellard2001-12-131-8/+27
|
* float parsing + long doublebellard2001-12-131-149/+487
|
* began to integrate floating point numbers - separated i386 code generator - ↵bellard2001-12-121-413/+133
| | | | fixed severe forward reference bug
* added bitfields supportbellard2001-12-091-52/+179
|
* fixed switch - preparation for new typesbellard2001-12-091-35/+84
|
* better type storagebellard2001-12-081-66/+84
|
* fix function call and ! operatorbellard2001-12-081-31/+34
|
* added multiple files compile - various symbol related fixesbellard2001-12-081-50/+147
|
* even fasterbellard2001-12-061-19/+29
|
* use faster I/O functions - static compile patchesbellard2001-12-061-14/+46
|
* better type checks - syntax fixes (gnu_ext added) - variable external defsbellard2001-12-051-27/+120
|
* better external allocs handlingbellard2001-12-051-57/+185
|
* version changebellard2001-12-021-1/+1
|
* added structure assignment (for = and function calls) - added cast handling ↵bellard2001-12-021-46/+161
| | | | for short/char (still not complete)
* first stage for structure assign - added more generic function call code ↵bellard2001-12-021-42/+101
| | | | generation
* added K&R proto parsingbellard2001-12-021-1/+9
|
* added compound literals parsing - fixed string init with {}bellard2001-12-021-92/+127
|
* added wide char and string parsing - added zero init of auto initializersbellard2001-11-281-44/+117
|
* completed initializer handlign (compute size before storing initializers if ↵bellard2001-11-261-56/+144
| | | | unknown size - macro subst fix
* added hash tables - add -o option for debug outputbellard2001-11-181-78/+143
|
* fixed \nnn char parsing, added #line, added __VA_ARGS__, added macros in ↵bellard2001-11-171-57/+289
| | | | #include, added \xnn parsing, added L'' and L parsing (still not OK), added 0bXX, added ISOC99 initializers handling, added declaration parsing anywhere in block