Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 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 |
| | | | | enumeration 'Opcode' (they are integers) | ||||
* | 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 |
| | | | | 'luai_numinvalidop' to protect constant folding | ||||
* | '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 |
| | | | | cannot throw errors anyway...) | ||||
* | 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 |
| | | | | and '~' (bxor) | ||||
* | 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 |
| | | | | a single constant table for all functions in a chunk) | ||||
* | avoid using raw representation of numbers for hashing, as number may | Roberto Ierusalimschy | 2013-06-25 | 1 | -15/+25 |
| | | | | | not use all its space (e.g., long double can have sizeof=12 but use only 10 bytes) | ||||
* | In the table that hashes constants, use a light userdata as keys | Roberto Ierusalimschy | 2013-06-20 | 1 | -9/+9 |
| | | | | | to integer values to avoid collisions with floats with the same numerical value | ||||
* | 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 |
| | |||||
* | (no commit message) | Roberto Ierusalimschy | 2013-04-15 | 1 | -5/+4 |
| | |||||
* | remove of unecessary luaD_checkstack. (In some cases, C should | Roberto Ierusalimschy | 2012-08-16 | 1 | -5/+4 |
| | | | | | ensure stack space; in others, Lua can use the extra slots for temporary values.) | ||||
* | details (remove of some extra spaces) | Roberto Ierusalimschy | 2012-08-14 | 1 | -2/+2 |
| | |||||
* | 'luaK_goiffalse' exported | Roberto Ierusalimschy | 2011-08-30 | 1 | -2/+2 |
| | |||||
* | comments about use of 'luaH_set' | Roberto Ierusalimschy | 2011-08-15 | 1 | -1/+3 |
| | |||||
* | no more field 'L' in 'FuncState' | Roberto Ierusalimschy | 2011-07-27 | 1 | -7/+7 |
| | |||||
* | detail (cleaned whitespaces at end of lines) | Roberto Ierusalimschy | 2011-07-15 | 1 | -3/+3 |
| | |||||
* | more uniform names for 'equalobj'-related functions | Roberto Ierusalimschy | 2011-05-31 | 1 | -2/+2 |
| | |||||
* | no need for two different implementations for equality (one raw and | Roberto Ierusalimschy | 2011-05-31 | 1 | -2/+3 |
| | | | | one with metamethods) | ||||
* | bug in OP_SELF when method name goes to a register | Roberto Ierusalimschy | 2011-04-28 | 1 | -7/+7 |
| | |||||
* | change in opcode OP_LOADNIL: B is used as a counter instead of a | Roberto Ierusalimschy | 2011-04-19 | 1 | -7/+11 |
| | | | | | register. (Avoids an assignment to R(B), not present in any other instruction.) | ||||
* | new instruction OP_LOADKX (to replace OP_LOADK with extra argument) | Roberto Ierusalimschy | 2011-04-07 | 1 | -5/+5 |
| | |||||
* | new scheme to close upvalues in 'break'; jump instructions may | Roberto Ierusalimschy | 2011-02-01 | 1 | -1/+14 |
| | | | | do the close, avoiding the need for a OP_CLOSE instruction | ||||
* | bug in some short-circuit optimizations | Roberto Ierusalimschy | 2011-01-31 | 1 | -21/+7 |
| | |||||
* | new way to distinguish between indexing tables in registers and | Roberto Ierusalimschy | 2010-07-07 | 1 | -16/+12 |
| | | | | | 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 | -42/+43 |
| | |||||
* | typo in comments | Roberto Ierusalimschy | 2010-06-30 | 1 | -3/+3 |
| | |||||
* | better line numbers for function calls and unary/binary operators + | Roberto Ierusalimschy | 2010-04-17 | 1 | -8/+11 |
| | | | | null statement + no more "ambiguous syntax" restriction | ||||
* | first version of _ENV; no more global variables | Roberto Ierusalimschy | 2010-03-12 | 1 | -12/+2 |
| | |||||
* | new instructions to optimize indexing on upvalues | Roberto Ierusalimschy | 2010-02-26 | 1 | -2/+20 |
| | |||||
* | added casts from int to enumerations to follow C++ rules | Roberto Ierusalimschy | 2010-01-11 | 1 | -4/+4 |
| | |||||
* | limit of constants per function changed to 2^26 using extra arguments | Roberto Ierusalimschy | 2009-09-23 | 1 | -49/+54 |
| | | | | to opcodes LOADK, GETGLOBAL, and SETGLOBAL | ||||
* | "stange numbers" (-0 and NaN) also go to the constant table (as | Roberto Ierusalimschy | 2009-08-10 | 1 | -16/+29 |
| | | | | | strings with their binary representation). Therefore, constant folding may produce these results. |