| Commit message (Expand) | Author | Age | Files | Lines |
* | userdata can have any Lua value as uservalue | Roberto Ierusalimschy | 2014-02-19 | 1 | -1/+4 |
* | no need to keep threads in a different GC list, now that there is the | Roberto Ierusalimschy | 2014-02-18 | 1 | -15/+5 |
* | field 'op' renamed to 'open' | Roberto Ierusalimschy | 2014-02-15 | 1 | -2/+2 |
* | no more local collection | Roberto Ierusalimschy | 2014-02-13 | 1 | -49/+18 |
* | keep a single list of objects to be finalized (with local and non-local | Roberto Ierusalimschy | 2014-02-11 | 1 | -15/+10 |
* | first implementation of '<<', '>>', and '~' (bitwise not) | Roberto Ierusalimschy | 2013-12-30 | 1 | -2/+11 |
* | first implementation of bitwise operators '&' (band), '|' (bor), | Roberto Ierusalimschy | 2013-12-18 | 1 | -2/+2 |
* | new order for binary operations (grouping them by type of result) | Roberto Ierusalimschy | 2013-12-16 | 1 | -2/+2 |
* | new names and better order for GC states (sweep first lists that | Roberto Ierusalimschy | 2013-09-11 | 1 | -6/+6 |
* | threads are kept in a separated GC list, linked after the main thread | Roberto Ierusalimschy | 2013-09-11 | 1 | -7/+12 |
* | objects in list 'tobefnz' have a GC life-cycle like all others | Roberto Ierusalimschy | 2013-09-11 | 1 | -5/+5 |
* | more invariants added to memory check | Roberto Ierusalimschy | 2013-09-11 | 1 | -3/+4 |
* | back to open hashing for the string table (but with a different | Roberto Ierusalimschy | 2013-09-05 | 1 | -8/+12 |
* | better (and correct!) control of 'maybedead' | Roberto Ierusalimschy | 2013-09-04 | 1 | -20/+19 |
* | local collection now calls finalizers | Roberto Ierusalimschy | 2013-09-03 | 1 | -33/+30 |
* | new GC state to sweep 'localgc' list + small changes in sweep control | Roberto Ierusalimschy | 2013-08-30 | 1 | -2/+3 |
* | LOCALBLACK changed to LOCALMARK and used also to control whether object | Roberto Ierusalimschy | 2013-08-27 | 1 | -1/+3 |
* | upvalues collected by reference count | Roberto Ierusalimschy | 2013-08-27 | 1 | -31/+9 |
* | Lua closures go to local, too | Roberto Ierusalimschy | 2013-08-26 | 1 | -7/+19 |
* | some details over new implementation of string table | Roberto Ierusalimschy | 2013-08-22 | 1 | -2/+2 |
* | change in string table: string table is now independent of GC lists; all | Roberto Ierusalimschy | 2013-08-21 | 1 | -13/+9 |
* | GC bits SEPARATED and FINALIZEDBIT mixed in FINALIZEDBIT (with simpler | Roberto Ierusalimschy | 2013-08-20 | 1 | -4/+4 |
* | new function 'isgclocal' + test for GC consistency of prototype's caches | Roberto Ierusalimschy | 2013-08-19 | 1 | -3/+16 |
* | 'next' field for tables changed from pointer to integer (for better | Roberto Ierusalimschy | 2013-08-18 | 1 | -3/+3 |
* | details | Roberto Ierusalimschy | 2013-08-16 | 1 | -7/+4 |
* | 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 |
* | 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 |
* | remove of unecessary luaD_checkstack. (In some cases, C should | Roberto Ierusalimschy | 2012-08-16 | 1 | -2/+2 |
* | collector in generational mode must be in 'propagate' state when | Roberto Ierusalimschy | 2012-07-04 | 1 | -5/+7 |
* | 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 |
* | 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 |
* | 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 |
* | 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 |
* | 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 |