Commit message (Expand) | Author | Files | Lines | |
---|---|---|---|---|
2004-02-16 | more and better tools (assertions & inspectors) to check incremental GC | Roberto Ierusalimschy | 1 | -22/+39 |
2004-01-15 | avoid calling `memcmp' with a NULL argument | Roberto Ierusalimschy | 1 | -2/+2 |
2004-01-02 | '%' must be '%%' to avoid formatting problems | Roberto Ierusalimschy | 1 | -5/+5 |
2003-12-12 | atomic operations are not GC "states" | Roberto Ierusalimschy | 3 | -77/+61 |
2003-12-10 | `TObject' renamed to `TValue' + other name changes and better assertions | Roberto Ierusalimschy | 29 | -441/+456 |
2003-12-10 | detail | Roberto Ierusalimschy | 2 | -7/+4 |
2003-12-09 | First version of incremental GC | Roberto Ierusalimschy | 9 | -64/+118 |
2003-12-04 | `grayagain' list | Roberto Ierusalimschy | 3 | -3/+19 |
2003-12-04 | sweep of strings also incremental | Roberto Ierusalimschy | 5 | -25/+50 |
2003-12-03 | two different white flags (to distinguish dead elements from new ones) | Roberto Ierusalimschy | 6 | -52/+63 |
2003-12-03 | single list for all collectible objects, with udata separated at the | Roberto Ierusalimschy | 4 | -20/+24 |
2003-12-01 | default metatable can be NULL | Roberto Ierusalimschy | 8 | -34/+34 |
2003-12-01 | incremental GC phases | Roberto Ierusalimschy | 5 | -76/+216 |
2003-11-27 | avoid overflow when doubling size | Roberto Ierusalimschy | 1 | -8/+11 |
2003-11-27 | details | Roberto Ierusalimschy | 1 | -8/+4 |
2003-11-24 | macros for closure sizes are global | Roberto Ierusalimschy | 2 | -9/+9 |
2003-11-19 | details | Roberto Ierusalimschy | 2 | -12/+12 |
2003-11-19 | initial implementation of white/gray/black coloring | Roberto Ierusalimschy | 2 | -40/+64 |
2003-11-19 | gclist for upvalues must be available even when upvalue is still open | Roberto Ierusalimschy | 1 | -20/+21 |
2003-11-18 | towards incremental GC | Roberto Ierusalimschy | 5 | -83/+79 |
2003-11-18 | details | Roberto Ierusalimschy | 1 | -3/+2 |
2003-11-17 | cleaner code for manipulation of `marked' field | Roberto Ierusalimschy | 5 | -46/+69 |
2003-11-11 | comments | Roberto Ierusalimschy | 2 | -5/+5 |
2003-11-05 | lua_(set)getglobal are ok to use | Roberto Ierusalimschy | 6 | -14/+16 |
2003-10-27 | towards a "stackless" call of metamethods (?) | Roberto Ierusalimschy | 1 | -18/+24 |
2003-10-23 | `error()' (and `error(nil)') generates errors with no error messages | Roberto Ierusalimschy | 2 | -10/+7 |
2003-10-21 | lua_set(get)global may use lua_set(get)field | Roberto Ierusalimschy | 1 | -7/+4 |
2003-10-20 | core does not look for function name in globals (too particular) | Roberto Ierusalimschy | 1 | -17/+3 |
2003-10-20 | new semantics for setn/getn (no more changes to `n') | Roberto Ierusalimschy | 1 | -16/+9 |
2003-10-20 | it's ok to dump functions with upvalues | Roberto Ierusalimschy | 4 | -6/+19 |
2003-10-20 | new function `lua_getallocf' to retrieve allocation function and data | Roberto Ierusalimschy | 3 | -3/+16 |
2003-10-20 | `luaX_errorline' was used only in one place | Roberto Ierusalimschy | 2 | -18/+7 |
2003-10-20 | detail | Roberto Ierusalimschy | 1 | -3/+3 |
2003-10-10 | new function `lua_createtable' | Roberto Ierusalimschy | 4 | -12/+13 |
2003-10-10 | new functions `lua_getfield' and `lua_setfield' | Roberto Ierusalimschy | 7 | -66/+70 |
2003-10-09 | debugger can only see `local function' after it has a meaningful value | Roberto Ierusalimschy | 2 | -4/+14 |
2003-10-07 | new functions `lua_tointeger' and lua_pushinteger' | Roberto Ierusalimschy | 11 | -120/+160 |
2003-10-07 | new bug + correction in path for coroutine bug | Roberto Ierusalimschy | 1 | -2/+29 |
2003-10-03 | detail | Roberto Ierusalimschy | 1 | -4/+2 |
2003-10-03 | buffer should better use `size_t' for its size | Roberto Ierusalimschy | 2 | -9/+13 |
2003-10-03 | avoid the use of `strlen' (strings are literals) | Roberto Ierusalimschy | 1 | -15/+13 |
2003-10-03 | details | Roberto Ierusalimschy | 1 | -3/+3 |
2003-10-02 | Lua kernel does not use malloc/free functions. | Roberto Ierusalimschy | 8 | -105/+116 |
2003-10-02 | avoid unecessary includes of `stdlib' | Roberto Ierusalimschy | 2 | -4/+4 |
2003-10-01 | detail: `luaL_where' does not use the name information | Roberto Ierusalimschy | 1 | -2/+2 |
2003-09-29 | bug: syntax `local function' does not increment stack size | Roberto Ierusalimschy | 2 | -5/+62 |
2003-09-05 | bug: cannot invalidate a running coroutine | Roberto Ierusalimschy | 1 | -9/+21 |
2003-09-05 | detail | Roberto Ierusalimschy | 1 | -2/+2 |
2003-09-04 | main thread and global state are allocated in a single block | Roberto Ierusalimschy | 1 | -52/+53 |
2003-09-04 | some changes in error reporting | Roberto Ierusalimschy | 1 | -30/+24 |