Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | more complete (and hopefuly more correct) handling of 'sizeof(char)' | Roberto Ierusalimschy | 2011-05-03 | 1 | -3/+4 |
| | |||||
* | corrected some places where an old object could end up in front | Roberto Ierusalimschy | 2010-05-10 | 1 | -1/+2 |
| | | | | of a new one + minimal documentation about this problem | ||||
* | 'luaS_new' changed from macro to function | Roberto Ierusalimschy | 2010-04-03 | 1 | -1/+6 |
| | |||||
* | allocator function receives the tag of object being allocated in 'osize' | Roberto Ierusalimschy | 2009-12-17 | 1 | -9/+7 |
| | | | | when 'ptr' is NULL. | ||||
* | better to keep GC state numbers sequential, to optimize switch in | Roberto Ierusalimschy | 2009-12-11 | 1 | -2/+2 |
| | | | | 'singlestep' | ||||
* | new function 'luaC_runtilstate' to advance GC until a "valid" state | Roberto Ierusalimschy | 2009-12-11 | 1 | -3/+3 |
| | |||||
* | hash table for strings is rehashed in place | Roberto Ierusalimschy | 2009-04-29 | 1 | -16/+18 |
| | |||||
* | 'luaM_freearray' does not need array type as argument | Roberto Ierusalimschy | 2009-04-17 | 1 | -2/+2 |
| | |||||
* | userdata with finalizers are kept in a separated list | Roberto Ierusalimschy | 2008-02-19 | 1 | -9/+5 |
| | |||||
* | detail | Roberto Ierusalimschy | 2007-11-09 | 1 | -2/+3 |
| | |||||
* | emergency garbage collector (core forces a GC when allocation fails) | Roberto Ierusalimschy | 2006-07-11 | 1 | -5/+4 |
| | |||||
* | small changes in casts | Roberto Ierusalimschy | 2005-12-22 | 1 | -2/+2 |
| | |||||
* | C functions and userdata also have environments | Roberto Ierusalimschy | 2005-02-18 | 1 | -2/+3 |
| | |||||
* | cleaner way to remark open upvalues | Roberto Ierusalimschy | 2005-01-18 | 1 | -4/+4 |
| | |||||
* | details | Roberto Ierusalimschy | 2004-11-24 | 1 | -2/+2 |
| | |||||
* | better control over memory-size overflows | Roberto Ierusalimschy | 2004-11-19 | 1 | -3/+8 |
| | |||||
* | first implementation of generational GC | Roberto Ierusalimschy | 2004-08-24 | 1 | -8/+3 |
| | |||||
* | new scheme for configuration through `luaconf.h' | Roberto Ierusalimschy | 2004-04-30 | 1 | -1/+2 |
| | |||||
* | `TObject' renamed to `TValue' + other name changes and better assertions | Roberto Ierusalimschy | 2003-12-10 | 1 | -5/+5 |
| | | | | for incremental garbage collection | ||||
* | First version of incremental GC | Roberto Ierusalimschy | 2003-12-09 | 1 | -2/+5 |
| | |||||
* | sweep of strings also incremental | Roberto Ierusalimschy | 2003-12-04 | 1 | -3/+6 |
| | |||||
* | two different white flags (to distinguish dead elements from new ones) | Roberto Ierusalimschy | 2003-12-03 | 1 | -3/+3 |
| | |||||
* | single list for all collectible objects, with udata separated at the | Roberto Ierusalimschy | 2003-12-03 | 1 | -3/+3 |
| | | | | end of the list | ||||
* | default metatable can be NULL | Roberto Ierusalimschy | 2003-12-01 | 1 | -2/+2 |
| | |||||
* | cleaner code for manipulation of `marked' field | Roberto Ierusalimschy | 2003-11-17 | 1 | -2/+2 |
| | |||||
* | Lua does not need all those different types... | Roberto Ierusalimschy | 2003-04-28 | 1 | -5/+6 |
| | |||||
* | each .c file defines its own name | Roberto Ierusalimschy | 2002-12-04 | 1 | -1/+3 |
| | |||||
* | better control over GCObjects | Roberto Ierusalimschy | 2002-11-13 | 1 | -10/+11 |
| | |||||
* | new structure for collectable objects, sharing a common header | Roberto Ierusalimschy | 2002-08-30 | 1 | -15/+16 |
| | |||||
* | cleaning the stage for generational collection | Roberto Ierusalimschy | 2002-08-16 | 1 | -2/+3 |
| | |||||
* | support for `light' userdata + simpler support for `boxed' udata | Roberto Ierusalimschy | 2002-04-05 | 1 | -2/+1 |
| | |||||
* | reserve one more bit for GC | Roberto Ierusalimschy | 2002-03-20 | 1 | -2/+2 |
| | |||||
* | `getstr' now gives const char * | Roberto Ierusalimschy | 2002-02-08 | 1 | -2/+2 |
| | |||||
* | `eventtable' renamed to `metatable' | Roberto Ierusalimschy | 2002-01-30 | 1 | -1/+1 |
| | |||||
* | detail | Roberto Ierusalimschy | 2002-01-11 | 1 | -1/+1 |
| | |||||
* | tag system replaced by event tables | Roberto Ierusalimschy | 2001-12-05 | 1 | -3/+5 |
| | |||||
* | no more explicit support for wide-chars; too much troble... | Roberto Ierusalimschy | 2001-11-28 | 1 | -7/+6 |
| | |||||
* | better syntax for type casts | Roberto Ierusalimschy | 2001-08-31 | 1 | -5/+5 |
| | |||||
* | use a table to find (and reuse) constants when parsing | Roberto Ierusalimschy | 2001-08-27 | 1 | -2/+1 |
| | |||||
* | cleaner way to ensure alignment for strings and userdata | Roberto Ierusalimschy | 2001-06-15 | 1 | -16/+18 |
| | |||||
* | smaller structs for udata and for strings | Roberto Ierusalimschy | 2001-06-07 | 1 | -19/+23 |
| | |||||
* | new implementation for userdatas, without `keys' | Roberto Ierusalimschy | 2001-06-06 | 1 | -49/+23 |
| | |||||
* | new way to handle `profiles' | Roberto Ierusalimschy | 2001-03-26 | 1 | -1/+2 |
| | |||||
* | first (big) step to support wide chars | Roberto Ierusalimschy | 2001-02-23 | 1 | -3/+3 |
| | |||||
* | better encapsulation of some types | Roberto Ierusalimschy | 2001-02-22 | 1 | -2/+2 |
| | |||||
* | better separation between basic types | Roberto Ierusalimschy | 2001-02-20 | 1 | -5/+5 |
| | |||||
* | details | Roberto Ierusalimschy | 2001-02-09 | 1 | -4/+3 |
| | |||||
* | string pointers are always fully aligned | Roberto Ierusalimschy | 2001-02-09 | 1 | -4/+4 |
| | |||||
* | new semantics for pushuserdata (no more different userdatas with same value) | Roberto Ierusalimschy | 2001-02-09 | 1 | -8/+8 |
| | |||||
* | no need for tags in boxed values :-( | Roberto Ierusalimschy | 2001-02-01 | 1 | -3/+1 |
| |