| Commit message (Expand) | Author | Age | Files | Lines |
* | Lua 5.3.5 ported to gitv5.3.5 | Roberto Ierusalimschy | 2018-12-17 | 1 | -1/+1 |
* | detail (removing spaces at end of lines) | Roberto Ierusalimschy | 2016-12-22 | 1 | -3/+3 |
* | bug: Lua can generate wrong code in functions with too many constants | Roberto Ierusalimschy | 2016-07-19 | 1 | -3/+6 |
* | all 'static' variables should be 'const' | Roberto Ierusalimschy | 2016-06-20 | 1 | -5/+6 |
* | comment (FALLTHROUGH) | Roberto Ierusalimschy | 2016-05-13 | 1 | -2/+2 |
* | 'getcode' -> 'getinstruction' | Roberto Ierusalimschy | 2016-01-05 | 1 | -12/+15 |
* | more refactoring | Roberto Ierusalimschy | 2016-01-04 | 1 | -94/+97 |
* | comments (*lots* of them) + asserts | Roberto Ierusalimschy | 2015-12-18 | 1 | -84/+324 |
* | reordering of some functions + 'code_label' renamed to 'code_loadbool' | Roberto Ierusalimschy | 2015-12-17 | 1 | -61/+61 |
* | detail ('while' -> 'for') in 'luaK_patchclose' | Roberto Ierusalimschy | 2015-12-17 | 1 | -4/+2 |
* | details (typos in comments) | Roberto Ierusalimschy | 2015-11-19 | 1 | -2/+2 |
* | use macro 'hasjumps' to test whether expression has jumps... | Roberto Ierusalimschy | 2015-10-26 | 1 | -2/+2 |
* | error message ("too complex" -> "too many registers") + MAXREGS | Roberto Ierusalimschy | 2015-04-29 | 1 | -4/+5 |
* | details (avoid 'lint' warnings) | Roberto Ierusalimschy | 2015-03-28 | 1 | -5/+5 |
* | all "divisions" (div,idiv,mod) by zero are not folded, to avoid | Roberto Ierusalimschy | 2014-12-29 | 1 | -24/+10 |
* | new macro 'nvalue' (to convert an object to a float when we know | Roberto Ierusalimschy | 2014-12-19 | 1 | -6/+2 |
* | bug ('#3' causes seg. fault in 5.3-beta) + comments + 'codearith' -> | Roberto Ierusalimschy | 2014-11-24 | 1 | -13/+24 |
* | 'x//y' extended to floats | Roberto Ierusalimschy | 2014-11-21 | 1 | -4/+2 |
* | added include for 'lprefix.h', for stuff that must be added before | Roberto Ierusalimschy | 2014-11-02 | 1 | -4/+6 |
* | comments (a few extra quotes around identifiers) | Roberto Ierusalimschy | 2014-10-30 | 1 | -2/+2 |
* | comment | Roberto Ierusalimschy | 2014-10-28 | 1 | -2/+2 |
* | 'MAXSTACK' -> 'MAXREGS' and moved to 'lcode.c' (there is no reason | Roberto Ierusalimschy | 2014-10-27 | 1 | -2/+6 |
* | `name' in comments changed to 'name' | Roberto Ierusalimschy | 2014-10-25 | 1 | -8/+8 |
* | comments | Roberto Ierusalimschy | 2014-05-08 | 1 | -5/+6 |
* | 'setnvalue' -> 'setfltvalue' (for consitency with 'fltvalue') | Roberto Ierusalimschy | 2014-04-29 | 1 | -3/+3 |
* | n^-m gives float result (instead of error) | Roberto Ierusalimschy | 2014-04-27 | 1 | -3/+1 |
* | LUAI_FUNC is being used only in header files | Roberto Ierusalimschy | 2014-04-02 | 1 | -2/+2 |
* | some details to avoid warnings | Roberto Ierusalimschy | 2014-04-01 | 1 | -2/+2 |
* | details (typos in comments) | Roberto Ierusalimschy | 2014-03-21 | 1 | -2/+2 |
* | small bug (from revision 2.80): LUA_OP* constants are not from | Roberto Ierusalimschy | 2014-03-09 | 1 | -2/+2 |
* | new macro 'cast_void' | Roberto Ierusalimschy | 2014-03-07 | 1 | -3/+4 |
* | back with 'L' for macros 'luai_num*', but now with a new macro | Roberto Ierusalimschy | 2014-03-06 | 1 | -1/+5 |
* | 'constfolding' passes a proper Lua state to 'luaO_arith' | Roberto Ierusalimschy | 2014-03-06 | 1 | -4/+4 |
* | detail ('codearith' uses 'LUA_OP*' constants instead of 'OP_*') | Roberto Ierusalimschy | 2014-03-06 | 1 | -10/+15 |
* | C++ needs casts for arithmetic with enums | Roberto Ierusalimschy | 2014-02-06 | 1 | -3/+3 |
* | no more 'L' in macros "luai_num*" (several places that use those macros | Roberto Ierusalimschy | 2014-01-27 | 1 | -3/+3 |
* | first implementation of '<<', '>>', and '~' (bitwise not) | Roberto Ierusalimschy | 2013-12-30 | 1 | -7/+9 |
* | small change in handling of unary operations | Roberto Ierusalimschy | 2013-12-18 | 1 | -14/+13 |
* | first implementation of bitwise operators '&' (band), '|' (bor), | Roberto Ierusalimschy | 2013-12-18 | 1 | -13/+24 |
* | new order for binary operations (grouping them by type of result) | Roberto Ierusalimschy | 2013-12-16 | 1 | -1/+2 |
* | integer exponentiation with negative exponent is invalid | Roberto Ierusalimschy | 2013-12-16 | 1 | -4/+6 |
* | bug (GC can collect long identifier during parser) + change (using | Roberto Ierusalimschy | 2013-08-30 | 1 | -8/+12 |
* | avoid using raw representation of numbers for hashing, as number may | Roberto Ierusalimschy | 2013-06-25 | 1 | -15/+25 |
* | In the table that hashes constants, use a light userdata as keys | Roberto Ierusalimschy | 2013-06-20 | 1 | -9/+9 |
* | correct way to avoid compile-time errors in integer divisions | Roberto Ierusalimschy | 2013-05-06 | 1 | -4/+7 |
* | constant folding and API arithmetic with integers | Roberto Ierusalimschy | 2013-05-02 | 1 | -16/+31 |
* | 'luaO_arith' -> 'luaO_numarith' | Roberto Ierusalimschy | 2013-04-29 | 1 | -2/+2 |
* | new operation '//' (integer division) | Roberto Ierusalimschy | 2013-04-26 | 1 | -4/+5 |
* | default increment for 'for' loop is an integer (1, not 1.0) | Roberto Ierusalimschy | 2013-04-25 | 1 | -3/+3 |
* | first implementation of literal integers (no constant folding yet) | Roberto Ierusalimschy | 2013-04-16 | 1 | -9/+29 |