Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | no more fenvs! | Roberto Ierusalimschy | 2010-03-26 | 16 | -170/+78 | |
| | ||||||
* | major collections in generational mode | Roberto Ierusalimschy | 2010-03-25 | 4 | -23/+39 | |
| | ||||||
* | 'mainthread' is not inserted in the 'allgc' list anymore, but swept | Roberto Ierusalimschy | 2010-03-25 | 4 | -21/+18 | |
| | | | | separately. | |||||
* | generational mode no longer sweep old objects | Roberto Ierusalimschy | 2010-03-24 | 2 | -19/+41 | |
| | ||||||
* | userdata with finalizers are kept in a separated list ('udgc'), instead | Roberto Ierusalimschy | 2010-03-24 | 5 | -44/+48 | |
| | | | | | of at the end of 'rootgc' (which was renamed to 'allgc', as it is not "root" in the usual meaning for collectors) | |||||
* | BUG: emergency collector might resize 'strt' (string table) when | Roberto Ierusalimschy | 2010-03-23 | 1 | -11/+27 | |
| | | | | | | | creating a new string + atomic and markroot steps has some cost + full collection must leave collector in proper state when mode is generational | |||||
* | draft version of a generational mode for garbage collection. (Not well | Roberto Ierusalimschy | 2010-03-22 | 5 | -35/+70 | |
| | | | | tested; no major collections; ...) | |||||
* | detail (wrong comment about LUAI_GCPAUSE) | Roberto Ierusalimschy | 2010-03-22 | 1 | -2/+2 | |
| | ||||||
* | 'lua_assert' not visible from libraries | Roberto Ierusalimschy | 2010-03-22 | 1 | -3/+2 | |
| | ||||||
* | 'cpcall' renamed to 'ccall' as it does not do a protected call | Roberto Ierusalimschy | 2010-03-19 | 3 | -10/+10 | |
| | ||||||
* | 'ipairs' is deprecated | Roberto Ierusalimschy | 2010-03-19 | 1 | -1/+13 | |
| | ||||||
* | for compatibility only: 'module' changes the first upvalue of | Roberto Ierusalimschy | 2010-03-19 | 1 | -4/+8 | |
| | | | | calling function to affect its environment | |||||
* | avoid using function environments in C libraries (as it probably will | Roberto Ierusalimschy | 2010-03-17 | 4 | -51/+69 | |
| | | | | be deprecated) | |||||
* | '_ENV' name permanently stored in global state for easier access | Roberto Ierusalimschy | 2010-03-13 | 5 | -12/+11 | |
| | ||||||
* | must include 'string.h' because a macro uses 'strlen' | Roberto Ierusalimschy | 2010-03-13 | 1 | -1/+2 | |
| | ||||||
* | better definitions for lua_[gs]etglobal + less uses of ENVIRONINDEX | Roberto Ierusalimschy | 2010-03-13 | 4 | -23/+28 | |
| | ||||||
* | first version of _ENV; no more global variables | Roberto Ierusalimschy | 2010-03-12 | 12 | -124/+52 | |
| | ||||||
* | small optimization in luaL_addlstring (avoid adding chars one by one) | Roberto Ierusalimschy | 2010-03-12 | 1 | -3/+14 | |
| | | | | (suggested by Chuck Coffing) | |||||
* | first step towards _ENV: all chunks have an puvalues _ENV with the | Roberto Ierusalimschy | 2010-03-08 | 3 | -13/+33 | |
| | | | | global table | |||||
* | when finding a 'name' for a function, handle the case when the function | Roberto Ierusalimschy | 2010-03-05 | 1 | -2/+5 | |
| | | | | is a for iterator | |||||
* | when searching for a variable name, look existing upvalues before | Roberto Ierusalimschy | 2010-03-04 | 1 | -20/+32 | |
| | | | | goingg to upper levels | |||||
* | just in case, better to flush error messages | Roberto Ierusalimschy | 2010-03-03 | 1 | -2/+3 | |
| | ||||||
* | new option '*L' for io.read + options for io.lines | Roberto Ierusalimschy | 2010-03-03 | 1 | -24/+48 | |
| | ||||||
* | avoid 'continue' unless necessary | Roberto Ierusalimschy | 2010-02-27 | 2 | -59/+59 | |
| | ||||||
* | removed useless test (argv[i] cannot be NULL when i<argc) | Roberto Ierusalimschy | 2010-02-27 | 1 | -2/+1 | |
| | ||||||
* | new instructions to optimize indexing on upvalues | Roberto Ierusalimschy | 2010-02-26 | 8 | -31/+89 | |
| | ||||||
* | detail: in loadfile read function, no need to return NULL on EOF; | Roberto Ierusalimschy | 2010-02-18 | 1 | -2/+2 | |
| | | | | size ==0 is enough to signal EOF. | |||||
* | avoid using 'ungetc' in loadfile | Roberto Ierusalimschy | 2010-02-18 | 1 | -7/+15 | |
| | ||||||
* | new macro 'luai_writestringerror' | Roberto Ierusalimschy | 2010-02-18 | 4 | -18/+25 | |
| | ||||||
* | no need to flush either stderr or \n-terminated outputs | Roberto Ierusalimschy | 2010-02-11 | 1 | -4/+1 | |
| | ||||||
* | use of 'conventional' names for shift and rotate operations + | Roberto Ierusalimschy | 2010-02-11 | 1 | -7/+27 | |
| | | | | right/left versions for them | |||||
* | removed support for '#fist-line comment' on binary files (as binary | Roberto Ierusalimschy | 2010-02-11 | 1 | -14/+2 | |
| | | | | files do not have lines...) | |||||
* | better usage messages, showing entire offending argument | Roberto Ierusalimschy | 2010-02-09 | 1 | -8/+11 | |
| | ||||||
* | when yielding, original 'func' value must be kept and restored so | Roberto Ierusalimschy | 2010-02-09 | 1 | -7/+6 | |
| | | | | that 'poscall' puts results in the right slot. | |||||
* | field 'oldtop' renamed to 'extra', as it can be used for other | Roberto Ierusalimschy | 2010-02-09 | 2 | -4/+4 | |
| | | | | purposes | |||||
* | typo (thanks to Gavin) | Roberto Ierusalimschy | 2010-02-05 | 1 | -2/+2 | |
| | ||||||
* | new function 'luaL_cpcall' | Roberto Ierusalimschy | 2010-01-21 | 5 | -23/+25 | |
| | ||||||
* | typo in comment | Roberto Ierusalimschy | 2010-01-21 | 1 | -2/+2 | |
| | ||||||
* | better messages for invalid options | Roberto Ierusalimschy | 2010-01-21 | 1 | -8/+10 | |
| | ||||||
* | __unm metamethod gets nil as its 2nd parameter | Roberto Ierusalimschy | 2010-01-15 | 1 | -1/+2 | |
| | ||||||
* | table.pack was locking last result, avoiding its collection | Roberto Ierusalimschy | 2010-01-13 | 1 | -1/+3 | |
| | ||||||
* | HINSTANCE -> HMODULE (they are the same thing, but the MS documentation | Roberto Ierusalimschy | 2010-01-13 | 1 | -4/+12 | |
| | | | | | uses the latter) + LoadLibrary -> LoadLibraryEx with optional arguments, to allow the option LOAD_WITH_ALTERED_SEARCH_PATH | |||||
* | warnings that are not compatible with C++ separated from other warning | Roberto Ierusalimschy | 2010-01-13 | 1 | -9/+12 | |
| | | | | options | |||||
* | "no value" added to array luaT_typenames + occurrences of "userdata" | Roberto Ierusalimschy | 2010-01-13 | 5 | -23/+20 | |
| | | | | in that array unified in a single address | |||||
* | correct error message when yielding from outside a coroutine | Roberto Ierusalimschy | 2010-01-13 | 1 | -3/+7 | |
| | ||||||
* | on 64-bit machines, an address may not fit into a 'long', so it | Roberto Ierusalimschy | 2010-01-13 | 1 | -2/+2 | |
| | | | | | is better to convert from pointer to void to pointer to function directly, even if ANSI C does not like it. | |||||
* | missing standard defines | Roberto Ierusalimschy | 2010-01-12 | 1 | -1/+4 | |
| | ||||||
* | 'searchpath' changes dots into directory separators | Roberto Ierusalimschy | 2010-01-11 | 1 | -2/+2 | |
| | ||||||
* | added casts from int to enumerations to follow C++ rules | Roberto Ierusalimschy | 2010-01-11 | 2 | -6/+7 | |
| | ||||||
* | removed useless initialization | Roberto Ierusalimschy | 2010-01-11 | 1 | -2/+2 | |
| |