Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 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 |
| | |||||
* | check memory allows strings to live in the main GC list (it should | Roberto Ierusalimschy | 2010-04-12 | 1 | -1/+2 |
| | | | | work ok). | ||||
* | global table now is only kept in the registry | Roberto Ierusalimschy | 2010-03-29 | 1 | -2/+1 |
| | |||||
* | no more fenvs! | Roberto Ierusalimschy | 2010-03-26 | 1 | -3/+7 |
| | |||||
* | 'mainthread' is not inserted in the 'allgc' list anymore, but swept | Roberto Ierusalimschy | 2010-03-25 | 1 | -4/+3 |
| | | | | separately. | ||||
* | userdata with finalizers are kept in a separated list ('udgc'), instead | Roberto Ierusalimschy | 2010-03-24 | 1 | -4/+4 |
| | | | | | of at the end of 'rootgc' (which was renamed to 'allgc', as it is not "root" in the usual meaning for collectors) | ||||
* | "no value" added to array luaT_typenames + occurrences of "userdata" | Roberto Ierusalimschy | 2010-01-13 | 1 | -10/+3 |
| | | | | in that array unified in a single address | ||||
* | no more pseudoindex LUA_GLOBALSINDEX; global table now accessible | Roberto Ierusalimschy | 2009-12-22 | 1 | -4/+4 |
| | | | | through registry | ||||
* | 'lua_objlen' replaced by 'lua_rawlen', 'lua_len', and 'luaL_len' | Roberto Ierusalimschy | 2009-12-17 | 1 | -5/+11 |
| | |||||
* | allocator function receives the tag of object being allocated in 'osize' | Roberto Ierusalimschy | 2009-12-17 | 1 | -4/+10 |
| | | | | when 'ptr' is NULL. | ||||
* | new function 'luaC_runtilstate' to advance GC until a "valid" state | Roberto Ierusalimschy | 2009-12-11 | 1 | -1/+4 |
| | |||||
* | several new features in testC to allow better testing of lua_resume | Roberto Ierusalimschy | 2009-12-10 | 1 | -27/+62 |
| | | | | at the C API level | ||||
* | strings in C scripts may be delimited by quotes + new functionality to | Roberto Ierusalimschy | 2009-12-01 | 1 | -16/+76 |
| | | | | set C scripts as C hooks | ||||
* | continuations may be upvalues too | Roberto Ierusalimschy | 2009-11-27 | 1 | -4/+5 |
| | |||||
* | macro 'checkvalref' redefined as function (to avoid too long macros) | Roberto Ierusalimschy | 2009-11-06 | 1 | -3/+6 |
| | |||||
* | better control over accesses to TValue fields | Roberto Ierusalimschy | 2009-11-05 | 1 | -3/+3 |
| | |||||
* | no more one environment per thread: all threads share a single global | Roberto Ierusalimschy | 2009-10-23 | 1 | -2/+3 |
| | | | | environment | ||||
* | parser keeps list of active local variables in a single dynamic array, | Roberto Ierusalimschy | 2009-10-11 | 1 | -2/+1 |
| | | | | therefore saving C stack space | ||||
* | new function lua_copy | Roberto Ierusalimschy | 2009-10-05 | 1 | -1/+5 |
| | |||||
* | a few more instructions to testC (func2udata and getfield) | Roberto Ierusalimschy | 2009-09-30 | 1 | -1/+9 |
| | |||||
* | information about upvalues (where they come from) kept in Proto structure, | Roberto Ierusalimschy | 2009-09-28 | 1 | -5/+4 |
| | | | | instead of sequence of pseudo-opcodes after OP_CLOSURE | ||||
* | 'lua_mainthread' replaced by new preregistered value LUA_RIDX_MAINTHREAD | Roberto Ierusalimschy | 2009-09-17 | 1 | -3/+5 |
| |