Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | double-linked list of all upvalues elliminated and changed to a | Roberto Ierusalimschy | 2013-08-07 | 1 | -10/+10 | |
| | | | | traversal of all non-marked threads | |||||
* | no more generational collection !!! | Roberto Ierusalimschy | 2013-08-05 | 1 | -3/+1 | |
| | ||||||
* | comment | Roberto Ierusalimschy | 2012-07-02 | 1 | -2/+2 | |
| | ||||||
* | bugs in yields inside debug hooks | Roberto Ierusalimschy | 2012-06-08 | 1 | -2/+3 | |
| | ||||||
* | merge of fields 'lastmajormem' (used in gen. mode) and 'estimate' | Roberto Ierusalimschy | 2012-05-22 | 1 | -3/+2 | |
| | | | | (used in inc. mode) | |||||
* | try to avoid sweeping new objects created with new white (and | Roberto Ierusalimschy | 2012-05-22 | 1 | -2/+3 | |
| | | | | therefore not collectable in the current cycle) | |||||
* | revamp of the GC pace control; more like 5.1: any X Kbytes allocated | Roberto Ierusalimschy | 2012-05-20 | 1 | -1/+3 | |
| | | | | makes the GC handle f(X) Kbytes of objects | |||||
* | random seed used in the hash of all strings to avoid intentional | Roberto Ierusalimschy | 2012-02-01 | 1 | -1/+2 | |
| | | | | collisions | |||||
* | 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 | -2/+5 | |
| | | | | Closures + more strick typing for closure variants | |||||
* | lint (unused definition) | Roberto Ierusalimschy | 2011-09-30 | 1 | -3/+1 | |
| | ||||||
* | 'nCcalls' should be local to each thread, as each thread may have its | Roberto Ierusalimschy | 2011-08-23 | 1 | -2/+2 | |
| | | | | own C stack (with LuaThreads or something similar) | |||||
* | stricter control (using tag variants) over closure kinds (Lua x C) | Roberto Ierusalimschy | 2011-06-02 | 1 | -2/+1 | |
| | ||||||
* | change in the relationship between totalbytes and GCdebt - luaM_realloc_ | Roberto Ierusalimschy | 2010-12-20 | 1 | -3/+7 | |
| | | | | is too critical to update two counters | |||||
* | better control for GC running or stopped | Roberto Ierusalimschy | 2010-12-20 | 1 | -1/+2 | |
| | ||||||
* | finalizers (__gc) for tables | Roberto Ierusalimschy | 2010-11-26 | 1 | -4/+4 | |
| | ||||||
* | comment typos | Roberto Ierusalimschy | 2010-10-29 | 1 | -2/+2 | |
| | ||||||
* | 'nresults' in CallInfo now refers to number of results that the current | Roberto Ierusalimschy | 2010-09-30 | 1 | -2/+2 | |
| | | | | function returns (and not what it expects from a call) | |||||
* | new parameter 'majorinc' to control frequency of major collections | Roberto Ierusalimschy | 2010-09-03 | 1 | -1/+2 | |
| | | | | in generational mode | |||||
* | no need of a KGC_FORCED collection kind; it has the same behavior of | Roberto Ierusalimschy | 2010-05-03 | 1 | -4/+3 | |
| | | | | a normal collection | |||||
* | new way to control GC speed (keeping a 'debt' counter) | Roberto Ierusalimschy | 2010-04-29 | 1 | -2/+2 | |
| | ||||||
* | first implementation of light C functions | Roberto Ierusalimschy | 2010-04-14 | 1 | -2/+1 | |
| | ||||||
* | new macro LUA_NUMTAGS | Roberto Ierusalimschy | 2010-04-12 | 1 | -2/+2 | |
| | ||||||
* | keep memory-error message in the global state, so that its use | Roberto Ierusalimschy | 2010-04-08 | 1 | -1/+2 | |
| | | | | | does not depend on Lua internalizing strings to avoid a string creation on memory errors | |||||
* | no need to keep "_ENV" name in global state (can be kept in lex state) | Roberto Ierusalimschy | 2010-04-05 | 1 | -2/+1 | |
| | ||||||
* | 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 | -2/+1 | |
| | ||||||
* | major collections in generational mode | Roberto Ierusalimschy | 2010-03-25 | 1 | -7/+8 | |
| | ||||||
* | userdata with finalizers are kept in a separated list ('udgc'), instead | Roberto Ierusalimschy | 2010-03-24 | 1 | -6/+5 | |
| | | | | | of at the end of 'rootgc' (which was renamed to 'allgc', as it is not "root" in the usual meaning for collectors) | |||||
* | draft version of a generational mode for garbage collection. (Not well | Roberto Ierusalimschy | 2010-03-22 | 1 | -3/+4 | |
| | | | | tested; no major collections; ...) | |||||
* | '_ENV' name permanently stored in global state for easier access | Roberto Ierusalimschy | 2010-03-13 | 1 | -1/+2 | |
| | ||||||
* | field 'oldtop' renamed to 'extra', as it can be used for other | Roberto Ierusalimschy | 2010-02-09 | 1 | -2/+2 | |
| | | | | purposes | |||||
* | no more pseudoindex LUA_GLOBALSINDEX; global table now accessible | Roberto Ierusalimschy | 2009-12-22 | 1 | -2/+2 | |
| | | | | through registry | |||||
* | macro 'ngcotouv' is the same as 'gco2uv', so it was removed | Roberto Ierusalimschy | 2009-12-11 | 1 | -2/+1 | |
| | ||||||
* | comment typos | Roberto Ierusalimschy | 2009-11-26 | 1 | -2/+2 | |
| | ||||||
* | new scheme for debug info about tail calls: no more 'fake' stack entries, | Roberto Ierusalimschy | 2009-11-25 | 1 | -2/+2 | |
| | | | | but stack entry knows whether it was tail called | |||||
* | (huge) simplification of GC management | Roberto Ierusalimschy | 2009-11-18 | 1 | -4/+2 | |
| | ||||||
* | no more one environment per thread: all threads share a single global | Roberto Ierusalimschy | 2009-10-23 | 1 | -8/+2 | |
| | | | | environment | |||||
* | new way to control stack overflow, controling only total size of the stack | Roberto Ierusalimschy | 2009-07-15 | 1 | -2/+1 | |
| | ||||||
* | new function 'lua_version' (so that 'checkversion' can be implemented | Roberto Ierusalimschy | 2009-06-18 | 1 | -2/+2 | |
| | | | | in the auxiliary library) | |||||
* | no more L->base + ci->base only for Lua functions (C functions may use | Roberto Ierusalimschy | 2009-06-01 | 1 | -3/+2 | |
| | | | | 'func') | |||||
* | several small improvements based on 'ci' being fixed now (including | Roberto Ierusalimschy | 2009-04-17 | 1 | -3/+2 | |
| | | | | erasing savedpc from lua_State) | |||||
* | 'CallInfo' stack implemented as double-linked list instead of an array | Roberto Ierusalimschy | 2009-04-17 | 1 | -5/+8 | |
| | ||||||
* | first implementation of yieldable 'pcall' | Roberto Ierusalimschy | 2009-04-08 | 1 | -5/+11 | |
| | ||||||
* | 'context' added to suspendable calls | Roberto Ierusalimschy | 2009-03-23 | 1 | -2/+4 | |
| | ||||||
* | yielding across lua_call (first version) | Roberto Ierusalimschy | 2009-03-10 | 1 | -2/+5 | |
| | ||||||
* | initial separation, in CallInfo, of what is relevant only to Lua | Roberto Ierusalimschy | 2009-03-04 | 1 | -2/+6 | |
| | | | | functions or only to C functions | |||||
* | new macro 'lua_checkversion' to check whether core and application are | Roberto Ierusalimschy | 2009-02-18 | 1 | -1/+2 | |
| | | | | compatible | |||||
* | better control of call status through CallInfo | Roberto Ierusalimschy | 2008-08-26 | 1 | -4/+11 | |
| | ||||||
* | new field 'status' in CallInfo structure | Roberto Ierusalimschy | 2008-08-13 | 1 | -2/+3 | |
| |