summaryrefslogtreecommitdiff
path: root/lcode.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* commentsRoberto Ierusalimschy2014-05-081-5/+6
* 'setnvalue' -> 'setfltvalue' (for consitency with 'fltvalue')Roberto Ierusalimschy2014-04-291-3/+3
* n^-m gives float result (instead of error)Roberto Ierusalimschy2014-04-271-3/+1
* LUAI_FUNC is being used only in header filesRoberto Ierusalimschy2014-04-021-2/+2
* some details to avoid warningsRoberto Ierusalimschy2014-04-011-2/+2
* details (typos in comments)Roberto Ierusalimschy2014-03-211-2/+2
* small bug (from revision 2.80): LUA_OP* constants are not fromRoberto Ierusalimschy2014-03-091-2/+2
* new macro 'cast_void'Roberto Ierusalimschy2014-03-071-3/+4
* back with 'L' for macros 'luai_num*', but now with a new macroRoberto Ierusalimschy2014-03-061-1/+5
* 'constfolding' passes a proper Lua state to 'luaO_arith'Roberto Ierusalimschy2014-03-061-4/+4
* detail ('codearith' uses 'LUA_OP*' constants instead of 'OP_*')Roberto Ierusalimschy2014-03-061-10/+15
* C++ needs casts for arithmetic with enumsRoberto Ierusalimschy2014-02-061-3/+3
* no more 'L' in macros "luai_num*" (several places that use those macrosRoberto Ierusalimschy2014-01-271-3/+3
* first implementation of '<<', '>>', and '~' (bitwise not)Roberto Ierusalimschy2013-12-301-7/+9
* small change in handling of unary operationsRoberto Ierusalimschy2013-12-181-14/+13
* first implementation of bitwise operators '&' (band), '|' (bor),Roberto Ierusalimschy2013-12-181-13/+24
* new order for binary operations (grouping them by type of result)Roberto Ierusalimschy2013-12-161-1/+2
* integer exponentiation with negative exponent is invalidRoberto Ierusalimschy2013-12-161-4/+6
* bug (GC can collect long identifier during parser) + change (usingRoberto Ierusalimschy2013-08-301-8/+12
* avoid using raw representation of numbers for hashing, as number mayRoberto Ierusalimschy2013-06-251-15/+25
* In the table that hashes constants, use a light userdata as keysRoberto Ierusalimschy2013-06-201-9/+9
* correct way to avoid compile-time errors in integer divisionsRoberto Ierusalimschy2013-05-061-4/+7
* constant folding and API arithmetic with integersRoberto Ierusalimschy2013-05-021-16/+31
* 'luaO_arith' -> 'luaO_numarith'Roberto Ierusalimschy2013-04-291-2/+2
* new operation '//' (integer division)Roberto Ierusalimschy2013-04-261-4/+5
* default increment for 'for' loop is an integer (1, not 1.0)Roberto Ierusalimschy2013-04-251-3/+3
* first implementation of literal integers (no constant folding yet)Roberto Ierusalimschy2013-04-161-9/+29
* (no commit message)Roberto Ierusalimschy2013-04-151-5/+4
* remove of unecessary luaD_checkstack. (In some cases, C shouldRoberto Ierusalimschy2012-08-161-5/+4
* details (remove of some extra spaces)Roberto Ierusalimschy2012-08-141-2/+2
* 'luaK_goiffalse' exportedRoberto Ierusalimschy2011-08-301-2/+2
* comments about use of 'luaH_set'Roberto Ierusalimschy2011-08-151-1/+3
* no more field 'L' in 'FuncState'Roberto Ierusalimschy2011-07-271-7/+7
* detail (cleaned whitespaces at end of lines)Roberto Ierusalimschy2011-07-151-3/+3
* more uniform names for 'equalobj'-related functionsRoberto Ierusalimschy2011-05-311-2/+2
* no need for two different implementations for equality (one raw andRoberto Ierusalimschy2011-05-311-2/+3
* bug in OP_SELF when method name goes to a registerRoberto Ierusalimschy2011-04-281-7/+7
* change in opcode OP_LOADNIL: B is used as a counter instead of aRoberto Ierusalimschy2011-04-191-7/+11
* new instruction OP_LOADKX (to replace OP_LOADK with extra argument)Roberto Ierusalimschy2011-04-071-5/+5
* new scheme to close upvalues in 'break'; jump instructions mayRoberto Ierusalimschy2011-02-011-1/+14
* bug in some short-circuit optimizationsRoberto Ierusalimschy2011-01-311-21/+7
* new way to distinguish between indexing tables in registers andRoberto Ierusalimschy2010-07-071-16/+12
* better organization for fields in struct 'expdesc'Roberto Ierusalimschy2010-07-021-42/+43
* typo in commentsRoberto Ierusalimschy2010-06-301-3/+3
* better line numbers for function calls and unary/binary operators +Roberto Ierusalimschy2010-04-171-8/+11
* first version of _ENV; no more global variablesRoberto Ierusalimschy2010-03-121-12/+2
* new instructions to optimize indexing on upvaluesRoberto Ierusalimschy2010-02-261-2/+20
* added casts from int to enumerations to follow C++ rulesRoberto Ierusalimschy2010-01-111-4/+4
* limit of constants per function changed to 2^26 using extra argumentsRoberto Ierusalimschy2009-09-231-49/+54
* "stange numbers" (-0 and NaN) also go to the constant table (asRoberto Ierusalimschy2009-08-101-16/+29