Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | allocator function receives the tag of object being allocated in 'osize' | Roberto Ierusalimschy | 2009-12-17 | 1 | -4/+12 | |
| | | | | when 'ptr' is NULL. | |||||
* | better to keep GC state numbers sequential, to optimize switch in | Roberto Ierusalimschy | 2009-12-11 | 1 | -8/+8 | |
| | | | | 'singlestep' | |||||
* | new function 'luaC_runtilstate' to advance GC until a "valid" state | Roberto Ierusalimschy | 2009-12-11 | 1 | -8/+20 | |
| | ||||||
* | comment typos | Roberto Ierusalimschy | 2009-11-26 | 1 | -2/+2 | |
| | ||||||
* | (huge) simplification of GC management | Roberto Ierusalimschy | 2009-11-18 | 1 | -91/+42 | |
| | ||||||
* | registry and global table may be changed through the API without a | Roberto Ierusalimschy | 2009-11-09 | 1 | -1/+4 | |
| | | | | write barrier, so GC should visit them in the atomic phase. | |||||
* | avoid using 'ttype' when there is an explicit test + macro 'checkdeadkey' | Roberto Ierusalimschy | 2009-11-06 | 1 | -5/+7 | |
| | | | | to avoid repetitions | |||||
* | better control over accesses to TValue fields | Roberto Ierusalimschy | 2009-11-05 | 1 | -4/+4 | |
| | ||||||
* | no more one environment per thread: all threads share a single global | Roberto Ierusalimschy | 2009-10-23 | 1 | -5/+4 | |
| | | | | environment | |||||
* | information about upvalues (where they come from) kept in Proto structure, | Roberto Ierusalimschy | 2009-09-28 | 1 | -4/+4 | |
| | | | | instead of sequence of pseudo-opcodes after OP_CLOSURE | |||||
* | some operations may shrink g->totalbytes so g->estimate must be | Roberto Ierusalimschy | 2009-09-28 | 1 | -4/+9 | |
| | | | | more flexible | |||||
* | bug: stack must be cleared until its end (including extra size) + | Roberto Ierusalimschy | 2009-07-16 | 1 | -26/+9 | |
| | | | | control of stack size moved to 'ldo.c' | |||||
* | new macro 'condmovestack' instead of 'condhardstacktests' | Roberto Ierusalimschy | 2009-06-08 | 1 | -2/+2 | |
| | ||||||
* | errors in finalizers are propagated with code LUA_ERRGCMM (ERRor in | Roberto Ierusalimschy | 2009-05-21 | 1 | -6/+15 | |
| | | | | __gc MetaMethod) | |||||
* | resize string hash table only when new size is smaller than current one | Roberto Ierusalimschy | 2009-04-29 | 1 | -3/+7 | |
| | ||||||
* | new way to GC stacks: the entire stack must be correct all the times; | Roberto Ierusalimschy | 2009-04-28 | 1 | -30/+40 | |
| | | | | | the 'dead' part of a stack (after the top) must have only nil's, so that 'top' may go up without cleaning the stack. | |||||
* | 'CallInfo' stack implemented as double-linked list instead of an array | Roberto Ierusalimschy | 2009-04-17 | 1 | -20/+19 | |
| | ||||||
* | yielding across lua_call (first version) | Roberto Ierusalimschy | 2009-03-10 | 1 | -2/+2 | |
| | ||||||
* | finalizers always called protected | Roberto Ierusalimschy | 2009-02-17 | 1 | -2/+8 | |
| | ||||||
* | simplification in the handling of finalizers: no more 'tmudata' list + | Roberto Ierusalimschy | 2008-06-26 | 1 | -72/+34 | |
| | | | | no more GCSsweeptmu collector's state | |||||
* | bug: when closing the state, 'luaC_separateudata' might mark | Roberto Ierusalimschy | 2008-06-23 | 1 | -5/+3 | |
| | | | | | userdata in the wrong phase of collection, therefore avoiding their traversal | |||||
* | code reorganization (only changed comments and order of functions) | Roberto Ierusalimschy | 2008-06-23 | 1 | -154/+203 | |
| | ||||||
* | userdata with finalizers are kept in a separated list | Roberto Ierusalimschy | 2008-02-19 | 1 | -102/+135 | |
| | ||||||
* | more options for 'kinds' of Garbage Collection + more agressive | Roberto Ierusalimschy | 2008-02-11 | 1 | -29/+26 | |
| | | | | shrinking of stacks and string hash | |||||
* | first implementation of ephemerons | Roberto Ierusalimschy | 2007-10-31 | 1 | -43/+77 | |
| | ||||||
* | some changes toward ephemerons | Roberto Ierusalimschy | 2007-10-29 | 1 | -46/+89 | |
| | ||||||
* | avoid trailing white spaces | Roberto Ierusalimschy | 2006-09-11 | 1 | -4/+4 | |
| | ||||||
* | emergency garbage collector (core forces a GC when allocation fails) | Roberto Ierusalimschy | 2006-07-11 | 1 | -30/+46 | |
| | ||||||
* | bug: collector did not compensate enough for userdata with finalizers | Roberto Ierusalimschy | 2006-05-24 | 1 | -4/+8 | |
| | ||||||
* | small changes in casts | Roberto Ierusalimschy | 2005-12-22 | 1 | -9/+8 | |
| | ||||||
* | details | Roberto Ierusalimschy | 2005-08-24 | 1 | -5/+1 | |
| | ||||||
* | a small bug | Roberto Ierusalimschy | 2005-08-04 | 1 | -3/+3 | |
| | ||||||
* | small bug (type error) | Roberto Ierusalimschy | 2005-06-07 | 1 | -3/+4 | |
| | ||||||
* | warnings in VS .Net | Roberto Ierusalimschy | 2005-05-31 | 1 | -3/+3 | |
| | ||||||
* | metatables for all types | Roberto Ierusalimschy | 2005-05-05 | 1 | -1/+10 | |
| | ||||||
* | better name for GC pause | Roberto Ierusalimschy | 2005-03-22 | 1 | -2/+2 | |
| | ||||||
* | detail | Roberto Ierusalimschy | 2005-03-16 | 1 | -2/+2 | |
| | ||||||
* | `luac´ -> `luai' (to avoid confusion with other luac stuff) | Roberto Ierusalimschy | 2005-03-09 | 1 | -2/+2 | |
| | ||||||
* | `luaconf.h´ exports all its definitions always (so all of them | Roberto Ierusalimschy | 2005-03-08 | 1 | -2/+2 | |
| | | | | must have a lua/LUA prefix). | |||||
* | details | Roberto Ierusalimschy | 2005-02-23 | 1 | -5/+4 | |
| | ||||||
* | C functions and userdata also have environments | Roberto Ierusalimschy | 2005-02-18 | 1 | -2/+3 | |
| | ||||||
* | more secure way to stop GC cycles during finalizers | Roberto Ierusalimschy | 2005-02-14 | 1 | -3/+4 | |
| | ||||||
* | all collected userdata must go to the end of the list of finalizers | Roberto Ierusalimschy | 2005-02-11 | 1 | -16/+24 | |
| | ||||||
* | cleaner way to free all objects | Roberto Ierusalimschy | 2005-02-10 | 1 | -31/+23 | |
| | ||||||
* | cleaner way to remark open upvalues | Roberto Ierusalimschy | 2005-01-18 | 1 | -23/+14 | |
| | ||||||
* | no more generational collector (and no more `noinc' mode) | Roberto Ierusalimschy | 2005-01-14 | 1 | -33/+24 | |
| | ||||||
* | change in hash algorithm so that it does not need empty slot | Roberto Ierusalimschy | 2005-01-05 | 1 | -4/+5 | |
| | | | | (tables can be 100% full) | |||||
* | a different option for the GC | Roberto Ierusalimschy | 2004-12-13 | 1 | -5/+5 | |
| | ||||||
* | more options for controling the GC | Roberto Ierusalimschy | 2004-12-06 | 1 | -17/+15 | |
| | ||||||
* | better names for `luaM_free...' macros | Roberto Ierusalimschy | 2004-11-24 | 1 | -4/+4 | |
| |