Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | some reorganization of dynamic data structures used by the parser | Roberto Ierusalimschy | 2011-02-07 | 1 | -64/+65 | |
| | ||||||
* | no more 'OP_CLOSE' instructions (use jumps to close upvalues) | Roberto Ierusalimschy | 2011-02-07 | 1 | -3/+7 | |
| | ||||||
* | first implementation of 'goto' | Roberto Ierusalimschy | 2011-02-04 | 1 | -14/+174 | |
| | ||||||
* | new scheme to close upvalues in 'break'; jump instructions may | Roberto Ierusalimschy | 2011-02-01 | 1 | -4/+4 | |
| | | | | do the close, avoiding the need for a OP_CLOSE instruction | |||||
* | detail (cleaning trailing spaces) | Roberto Ierusalimschy | 2011-01-26 | 1 | -2/+2 | |
| | ||||||
* | new closures are always created on "next" register (so that GC knows | Roberto Ierusalimschy | 2010-12-17 | 1 | -9/+6 | |
| | | | | stack limit) | |||||
* | comment | Roberto Ierusalimschy | 2010-12-15 | 1 | -2/+2 | |
| | ||||||
* | name "_ENV" configurable through 'luaconf.h' | Roberto Ierusalimschy | 2010-09-07 | 1 | -4/+4 | |
| | ||||||
* | 'pushclosure' -> 'codeclosure' (as there is another 'pushclosure' in | Roberto Ierusalimschy | 2010-08-23 | 1 | -8/+13 | |
| | | | | 'lvm.c) + small detail | |||||
* | new way to distinguish between indexing tables in registers and | Roberto Ierusalimschy | 2010-07-07 | 1 | -20/+16 | |
| | | | | | tables in upvalues (+ fixed small bug when checking conflicts in multiple assignments) | |||||
* | better organization for fields in struct 'expdesc' | Roberto Ierusalimschy | 2010-07-02 | 1 | -14/+14 | |
| | ||||||
* | 'getlocal' gets information about parameters of Lua functions | Roberto Ierusalimschy | 2010-06-21 | 1 | -2/+2 | |
| | ||||||
* | new macro MAXUPVAL (maximum number of upvalues per closure) | Roberto Ierusalimschy | 2010-05-31 | 1 | -3/+3 | |
| | ||||||
* | semicolons now represent the empty statement | Roberto Ierusalimschy | 2010-05-15 | 1 | -3/+5 | |
| | ||||||
* | comments | Roberto Ierusalimschy | 2010-05-14 | 1 | -6/+6 | |
| | ||||||
* | detail (breaking a long line) | Roberto Ierusalimschy | 2010-05-13 | 1 | -4/+5 | |
| | ||||||
* | better line numbers for function calls and unary/binary operators + | Roberto Ierusalimschy | 2010-04-17 | 1 | -9/+12 | |
| | | | | null statement + no more "ambiguous syntax" restriction | |||||
* | no need to keep "_ENV" name in global state (can be kept in lex state) | Roberto Ierusalimschy | 2010-04-05 | 1 | -5/+5 | |
| | ||||||
* | new macro 'eqstr' | Roberto Ierusalimschy | 2010-04-05 | 1 | -3/+3 | |
| | ||||||
* | '_ENV' name permanently stored in global state for easier access | Roberto Ierusalimschy | 2010-03-13 | 1 | -6/+3 | |
| | ||||||
* | first version of _ENV; no more global variables | Roberto Ierusalimschy | 2010-03-12 | 1 | -37/+10 | |
| | ||||||
* | first step towards _ENV: all chunks have an puvalues _ENV with the | Roberto Ierusalimschy | 2010-03-08 | 1 | -11/+24 | |
| | | | | global table | |||||
* | when searching for a variable name, look existing upvalues before | Roberto Ierusalimschy | 2010-03-04 | 1 | -20/+32 | |
| | | | | goingg to upper levels | |||||
* | new instructions to optimize indexing on upvalues | Roberto Ierusalimschy | 2010-02-26 | 1 | -9/+14 | |
| | ||||||
* | again changing macro to function to save a few bytes | Roberto Ierusalimschy | 2010-01-06 | 1 | -5/+9 | |
| | ||||||
* | macro 'luaY_checklimit' changed into a function (and renamed 'checklimit'). | Roberto Ierusalimschy | 2010-01-05 | 1 | -10/+12 | |
| | | | | It makes no sense to trade space for time in the parser. | |||||
* | comment typos | Roberto Ierusalimschy | 2009-11-26 | 1 | -2/+2 | |
| | ||||||
* | parser/scanner keep GC running | Roberto Ierusalimschy | 2009-11-17 | 1 | -9/+11 | |
| | ||||||
* | better documentation for constructor syntax | Roberto Ierusalimschy | 2009-10-14 | 1 | -26/+34 | |
| | ||||||
* | local function definition does not need to correct debug information | Roberto Ierusalimschy | 2009-10-13 | 1 | -3/+1 | |
| | ||||||
* | parser keeps list of active local variables in a single dynamic array, | Roberto Ierusalimschy | 2009-10-11 | 1 | -28/+52 | |
| | | | | therefore saving C stack space | |||||
* | first implementation of lexical environments | Roberto Ierusalimschy | 2009-09-30 | 1 | -15/+47 | |
| | ||||||
* | information about upvalues (where they come from) kept in Proto structure, | Roberto Ierusalimschy | 2009-09-28 | 1 | -21/+18 | |
| | | | | instead of sequence of pseudo-opcodes after OP_CLOSURE | |||||
* | detail (space between function name and its parameter list) | Roberto Ierusalimschy | 2009-09-23 | 1 | -2/+2 | |
| | ||||||
* | test for 'fs' being NULL at the end of 'close_func' is useless ('fs' | Roberto Ierusalimschy | 2009-08-10 | 1 | -2/+4 | |
| | | | | | cannot be NULl and the new ls->fs can only be NULL when the token is EOS, in which case anchor_token has no effect). | |||||
* | small optimization (reorder of BinOpr enum to unify some cases | Roberto Ierusalimschy | 2009-06-18 | 1 | -5/+5 | |
| | | | | in switches) | |||||
* | new function 'luaK_codek' (detail) | Roberto Ierusalimschy | 2009-06-10 | 1 | -2/+2 | |
| | ||||||
* | no more code checking | Roberto Ierusalimschy | 2009-04-30 | 1 | -2/+1 | |
| | ||||||
* | no more support for old-style varargs | Roberto Ierusalimschy | 2009-03-26 | 1 | -10/+4 | |
| | ||||||
* | generic for coded as two dedicated instructions to simplify resumption | Roberto Ierusalimschy | 2008-10-30 | 1 | -8/+7 | |
| | ||||||
* | some cleaning | Roberto Ierusalimschy | 2008-10-28 | 1 | -9/+15 | |
| | ||||||
* | added structure for local-variable information to allow extra | Roberto Ierusalimschy | 2008-05-08 | 1 | -3/+4 | |
| | | | | checkings if needed | |||||
* | corrected error message ("too many constants" -> "too many functions") | Roberto Ierusalimschy | 2008-04-02 | 1 | -2/+2 | |
| | ||||||
* | parser should not call 'luaX_lexerror' | Roberto Ierusalimschy | 2007-10-25 | 1 | -2/+2 | |
| | ||||||
* | detail | Roberto Ierusalimschy | 2007-10-18 | 1 | -5/+4 | |
| | ||||||
* | BUG: too many variables in an assignment may cause a C stack overflow | Roberto Ierusalimschy | 2007-07-31 | 1 | -3/+5 | |
| | ||||||
* | details | Roberto Ierusalimschy | 2007-05-11 | 1 | -3/+2 | |
| | ||||||
* | no more optimization to avoid LOADNIL at function start | Roberto Ierusalimschy | 2007-03-27 | 1 | -2/+2 | |
| | ||||||
* | more regularity in the use of quotes in error messages | Roberto Ierusalimschy | 2007-02-07 | 1 | -4/+4 | |
| | ||||||
* | comments | Roberto Ierusalimschy | 2006-11-22 | 1 | -2/+2 | |
| |