Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 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 |
| | |||||
* | simplification in the handling of finalizers: no more 'tmudata' list + | Roberto Ierusalimschy | 2008-06-26 | 1 | -3/+28 |
| | | | | no more GCSsweeptmu collector's state | ||||
* | outdated comment | Roberto Ierusalimschy | 2008-06-23 | 1 | -2/+2 |
| | |||||
* | userdata with finalizers are kept in a separated list | Roberto Ierusalimschy | 2008-02-19 | 1 | -6/+9 |
| | |||||
* | more options for 'kinds' of Garbage Collection | Roberto Ierusalimschy | 2008-02-11 | 1 | -2/+7 |
| | |||||
* | first implementation of ephemerons | Roberto Ierusalimschy | 2007-10-31 | 1 | -4/+4 |
| | |||||
* | some changes toward ephemerons | Roberto Ierusalimschy | 2007-10-29 | 1 | -2/+4 |
| | |||||
* | should not manipulate NULL pointers (even without accessing them) | Roberto Ierusalimschy | 2007-02-07 | 1 | -3/+2 |
| | |||||
* | avoid local "pc" in interpreter loop (tricky optimization with no real gain) | Roberto Ierusalimschy | 2006-09-19 | 1 | -1/+2 |
| | |||||
* | BUG: there is only one C stack, so nCcalls must be global | Roberto Ierusalimschy | 2006-08-15 | 1 | -2/+3 |
| | |||||
* | emergency garbage collector (core forces a GC when allocation fails) | Roberto Ierusalimschy | 2006-07-11 | 1 | -2/+2 |
| | |||||
* | small improvements for allignments | Roberto Ierusalimschy | 2006-02-06 | 1 | -5/+5 |
| | |||||
* | avoid names starting with '_' | Roberto Ierusalimschy | 2005-07-09 | 1 | -7/+7 |
| | |||||
* | small improvement | Roberto Ierusalimschy | 2005-06-03 | 1 | -3/+3 |
| | |||||
* | metatables for all types | Roberto Ierusalimschy | 2005-05-05 | 1 | -1/+2 |
| | |||||
* | added LUAI_FUNC to functions not in the API | Roberto Ierusalimschy | 2005-04-25 | 1 | -3/+3 |
| | |||||
* | small optimizations | Roberto Ierusalimschy | 2005-04-05 | 1 | -1/+2 |
| |