aboutsummaryrefslogtreecommitdiff
path: root/lvm.h (unfollow)
Commit message (Expand)AuthorFilesLines
2017-05-19handling of inf, -inf, and NaN by string.format'%q'Roberto Ierusalimschy1-14/+28
2017-05-19bug: Lua crashes when building sequences with more than 2^30 elements.Roberto Ierusalimschy1-2/+51
2017-05-19BUG: in 'computesizes', 'twotoi' overflows when a sequence hasRoberto Ierusalimschy1-3/+6
2017-05-19'luaH_getn' must return 'lua_Unsigned' (or 'lua_Integer'), toRoberto Ierusalimschy1-2/+2
2017-05-19better implementation for 'hash_search', without using 'size_t'Roberto Ierusalimschy1-28/+36
2017-05-18table field names for dedicated opcodes can be restricted toRoberto Ierusalimschy2-8/+8
2017-05-18details in OP_CALL + commentsRoberto Ierusalimschy1-9/+12
2017-05-18'lua_rawlen' returns 'lua_Unsigned' instead of 'size_t'. (RealRoberto Ierusalimschy2-4/+4
2017-05-16reimplementation of 'luaH_getn', trying to handle numeric limitsRoberto Ierusalimschy1-33/+44
2017-05-13no more field 'base' in CallInfo (base is always equal to 'func + 1',Roberto Ierusalimschy4-23/+19
2017-05-13back to old-style vararg system (with vararg table collecting extraRoberto Ierusalimschy7-72/+74
2017-05-11revamp of fast track for table access (table set uses the sameRoberto Ierusalimschy3-94/+81
2017-05-10more integer fast tracks (for OP_LT, OP_LE, OP_SETTABLE, and OP_GETTABLE)Roberto Ierusalimschy1-17/+51
2017-05-09detail ('1' -> '1u' in unsigned operation)Roberto Ierusalimschy1-2/+2
2017-05-08details (direct access to 'Ck' bit in instructions)Roberto Ierusalimschy2-4/+7
2017-05-08detail ('luaT_callbinTM' does not need to be extern)Roberto Ierusalimschy2-8/+6
2017-05-05'luaV_execute' keeps local copy of program counter and hook mask,Roberto Ierusalimschy1-29/+62
2017-05-05bug: Wrong code for a goto followed by a label inside an 'if'Roberto Ierusalimschy1-2/+34
2017-05-04barrier for prototype's cache (with new gray list 'protogray' to keepRoberto Ierusalimschy7-22/+95
2017-04-30added 'cachemiss' field to prototype to avoid wasting time checkingRoberto Ierusalimschy4-6/+15
2017-04-29bug: cannot "skip" labels after if-goto before the jump over theRoberto Ierusalimschy1-2/+2
2017-04-29details in 'findsetreg'Roberto Ierusalimschy1-19/+17
2017-04-28new opcodes for table access with constant keys (strings and integers)Roberto Ierusalimschy7-99/+245
2017-04-26new opcode OP_ADDI (for immediate integer operand) (Experimental)Roberto Ierusalimschy5-11/+65
2017-04-25detail (using unsigned comparison in range check for LOADI)Roberto Ierusalimschy1-2/+2
2017-04-25registers in a VINDEXED expression must be freed in orderRoberto Ierusalimschy1-11/+19
2017-04-24opcodes 'OP_GETTABUP'/'OP_SETTABUP' operate only with string keys,Roberto Ierusalimschy3-10/+30
2017-04-24type 'L_Umaxalign' replaced by macro 'LUAI_MAXALIGN', which is also addedRoberto Ierusalimschy6-27/+21
2017-04-24ensures that "collectgarbage'step'" in generational mode does aRoberto Ierusalimschy1-4/+9
2017-04-24'KGC_NORMAL' -> 'KGC_INC' + emergency GC signalled by flag (insteadRoberto Ierusalimschy5-21/+21
2017-04-20new opcode LOADI (for loading immediate integers)Roberto Ierusalimschy6-12/+27
2017-04-20small bug in generational controlRoberto Ierusalimschy1-5/+6
2017-04-20macros to define default parameters for generational collectionRoberto Ierusalimschy1-3/+8
2017-04-19corrected some checks about colors of old objects + new test functionRoberto Ierusalimschy1-15/+46
2017-04-19first version of control for the generational collectorRoberto Ierusalimschy3-7/+21
2017-04-19new macro 'lua_pointer2str' to encapsulate use of 'l_sprintf' insideRoberto Ierusalimschy2-3/+11
2017-04-19detail in usage message for '-l' optionRoberto Ierusalimschy1-2/+2
2017-04-18memory check adapted to generational modeRoberto Ierusalimschy1-63/+133
2017-04-12removed initialization of 'GCestimate' (it is initialized duringRoberto Ierusalimschy1-2/+1
2017-04-12small corrections + removal of debugging functions 'count' andRoberto Ierusalimschy1-48/+4
2017-04-11'mainthread' lives in 'allgc' list, like everybody elseRoberto Ierusalimschy2-13/+10
2017-04-11Upvalues collected like everything else (with mark-sweep) insteadRoberto Ierusalimschy9-127/+97
2017-04-10Comments for generational collectorRoberto Ierusalimschy2-66/+131
2017-04-06small changes in 'luaC_upvalbarrier'Roberto Ierusalimschy5-20/+19
2017-04-05generational collector (still not complete)Roberto Ierusalimschy4-102/+324
2017-03-14added 'return' to calls to 'luaL_error' (to signal to the compilerRoberto Ierusalimschy3-9/+11
2017-02-23generational collection: new attempt (still incomplete)Roberto Ierusalimschy8-40/+195
2017-02-15comments about gray listsRoberto Ierusalimschy1-1/+19
2017-02-09error when calling close method without arguments (e.g.,Roberto Ierusalimschy1-4/+9
2017-01-31small updatesv5.3.4Roberto Ierusalimschy1-7/+10