Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | added 'local' bit (true => object is only refered by local variables) | Roberto Ierusalimschy | 2013-08-16 | 1 | -22/+35 | |
| | ||||||
* | double-linked list of all upvalues elliminated and changed to a | Roberto Ierusalimschy | 2013-08-07 | 1 | -12/+7 | |
| | | | | traversal of all non-marked threads | |||||
* | no more generational collection !!! | Roberto Ierusalimschy | 2013-08-05 | 1 | -21/+5 | |
| | ||||||
* | try to avoid warnings when converting int to pointer | Roberto Ierusalimschy | 2013-06-20 | 1 | -2/+3 | |
| | ||||||
* | 'pushnum' pushes a "number" (float) + new C instruction 'pushint' | Roberto Ierusalimschy | 2013-05-07 | 1 | -1/+4 | |
| | ||||||
* | new operation '//' (integer division) | Roberto Ierusalimschy | 2013-04-26 | 1 | -2/+2 | |
| | ||||||
* | detail | Roberto Ierusalimschy | 2013-04-24 | 1 | -2/+2 | |
| | ||||||
* | typos in comments | Roberto Ierusalimschy | 2013-03-16 | 1 | -2/+2 | |
| | ||||||
* | open upvalues cannot be old if thread is not old; when thread is old, | Roberto Ierusalimschy | 2012-10-03 | 1 | -4/+2 | |
| | | | | | their list is not traversed anymore, and therefore can contain dead elements. | |||||
* | remove of unecessary luaD_checkstack. (In some cases, C should | Roberto Ierusalimschy | 2012-08-16 | 1 | -2/+2 | |
| | | | | | ensure stack space; in others, Lua can use the extra slots for temporary values.) | |||||
* | collector in generational mode must be in 'propagate' state when | Roberto Ierusalimschy | 2012-07-04 | 1 | -5/+7 | |
| | | | | not running a collection | |||||
* | collector in generational mode should never be in 'pause' state | Roberto Ierusalimschy | 2012-07-02 | 1 | -1/+9 | |
| | ||||||
* | new auxiliary function 'luaI_printinst' (to print a single instruction) | Roberto Ierusalimschy | 2012-06-07 | 1 | -1/+7 | |
| | ||||||
* | small improvement in lua_checkmemory (only allow dead objects in | Roberto Ierusalimschy | 2012-05-31 | 1 | -7/+12 | |
| | | | | part of the sweep list not yet sweeped) | |||||
* | update of 'lua_checkmemory' | Roberto Ierusalimschy | 2012-05-30 | 1 | -4/+10 | |
| | ||||||
* | no more 'Proto' objects on the stack. Protos are anchored on outer | Roberto Ierusalimschy | 2012-05-08 | 1 | -3/+3 | |
| | | | | Protos or on a Closure, which must be created before the Proto. | |||||
* | first implementation of long strings | Roberto Ierusalimschy | 2012-01-25 | 1 | -2/+3 | |
| | ||||||
* | object tag keeps variant bits too -> no need for 'isC' field in | Roberto Ierusalimschy | 2012-01-20 | 1 | -18/+23 | |
| | | | | Closures + more strick typing for closure variants | |||||
* | extra argument to instruction 'checkstack' (in 'testC') | Roberto Ierusalimschy | 2011-11-09 | 1 | -2/+3 | |
| | ||||||
* | detail about 'trick' function (nil turn it off) | Roberto Ierusalimschy | 2011-09-24 | 1 | -2/+5 | |
| | ||||||
* | 'nCcalls' should be local to each thread, as each thread may have its | Roberto Ierusalimschy | 2011-08-23 | 1 | -3/+3 | |
| | | | | own C stack (with LuaThreads or something similar) | |||||
* | compilation warning about integer size x pointer size | Roberto Ierusalimschy | 2011-07-02 | 1 | -2/+2 | |
| | ||||||
* | useless assignments removed (macros already do the assignment) | Roberto Ierusalimschy | 2011-06-24 | 1 | -4/+4 | |
| | ||||||
* | stricter control (using tag variants) over closure kinds (Lua x C) | Roberto Ierusalimschy | 2011-06-02 | 1 | -2/+2 | |
| | ||||||
* | avoid use of 'ifdef/ifndef'; use 'defined' instead (simpler and | Roberto Ierusalimschy | 2011-05-25 | 1 | -2/+2 | |
| | | | | more powerful) | |||||
* | break long assertion in two shorter ones | Roberto Ierusalimschy | 2011-05-05 | 1 | -2/+3 | |
| | ||||||
* | 'luaL_findtable' -> 'luaL_getsubtable' | Roberto Ierusalimschy | 2011-04-08 | 1 | -2/+2 | |
| | ||||||
* | new macro 'cast_uchar' | Roberto Ierusalimschy | 2010-12-10 | 1 | -3/+3 | |
| | ||||||
* | finalizers (__gc) for tables | Roberto Ierusalimschy | 2010-11-26 | 1 | -10/+11 | |
| | ||||||
* | no more compatibility with (veryyyy) old ref system | Roberto Ierusalimschy | 2010-11-16 | 1 | -5/+4 | |
| | ||||||
* | 'module'/'luaL_register' and associates are deprecated | Roberto Ierusalimschy | 2010-07-28 | 1 | -3/+3 | |
| | ||||||
* | new module policy: C modules do not create globals and do not register | Roberto Ierusalimschy | 2010-07-02 | 1 | -12/+16 | |
| | | | | | | themselves with 'require' (let 'require' do its work); new auxiliary functions luaL_newlib/luaL_newlibtable/luaL_setfuncs/luaL_requiref. Old luaL_register will be deprecated. | |||||
* | macro 'key2tal' replaced by 'gkey' (as both were equal) | Roberto Ierusalimschy | 2010-06-25 | 1 | -2/+2 | |
| | ||||||
* | 'coroutine' library separated from 'baselib' | Roberto Ierusalimschy | 2010-06-10 | 1 | -1/+2 | |
| | ||||||
* | lua_pushstring may reallocate the stack, making 'o' a dangling | Roberto Ierusalimschy | 2010-05-17 | 1 | -5/+6 | |
| | | | | pointer | |||||
* | new "instruction" 'absindex' | Roberto Ierusalimschy | 2010-05-14 | 1 | -1/+4 | |
| | ||||||
* | wrong type being assigned (not detected because of obj2gco macro) | Roberto Ierusalimschy | 2010-05-11 | 1 | -2/+2 | |
| | ||||||
* | udata in 'tobefnz' list be have old bit on (it will be cleared | Roberto Ierusalimschy | 2010-05-10 | 1 | -2/+1 | |
| | | | | when udata is moved to 'allgc' list) | |||||
* | details (to avoid too long strings in assertions) | Roberto Ierusalimschy | 2010-05-07 | 1 | -4/+4 | |
| | ||||||
* | more tests in 'lua_checkmemory' + more information in function | Roberto Ierusalimschy | 2010-05-07 | 1 | -17/+29 | |
| | | | | 'gccolor' | |||||
* | more tests in 'lua_checkmemory' | Roberto Ierusalimschy | 2010-05-06 | 1 | -13/+48 | |
| | ||||||
* | no more 'finalize' phase in GC; finalizers are called along the | Roberto Ierusalimschy | 2010-05-03 | 1 | -3/+3 | |
| | | | | entire cycle | |||||
* | items in 'tobefnz' are kept black (as before recent change) and changed | Roberto Ierusalimschy | 2010-05-03 | 1 | -1/+4 | |
| | | | | | to white only when needed (being moved to 'allgc' when not keeping invariant). | |||||
* | "gray lists" only need to be valid when 'keepinvariant' is true | Roberto Ierusalimschy | 2010-04-30 | 1 | -2/+3 | |
| | ||||||
* | removed commented-out debugging code | Roberto Ierusalimschy | 2010-04-29 | 1 | -3/+1 | |
| | ||||||
* | improved 'lua_checkmemory', with better control over gray objects | Roberto Ierusalimschy | 2010-04-29 | 1 | -24/+45 | |
| | ||||||
* | complete control over number of each kind of object allocated | Roberto Ierusalimschy | 2010-04-19 | 1 | -46/+53 | |
| | ||||||
* | 'gcstate' now also runs collector until given state + small changes | Roberto Ierusalimschy | 2010-04-16 | 1 | -21/+22 | |
| | | | | in 'testC' to test 'lua_topointer' and 'lua_tocfunction' | |||||
* | first implementation of light C functions | Roberto Ierusalimschy | 2010-04-14 | 1 | -3/+6 | |
| | ||||||
* | better control in 'totalmem' over choosing counters | Roberto Ierusalimschy | 2010-04-12 | 1 | -8/+18 | |
| |