aboutsummaryrefslogtreecommitdiff
path: root/bugs (unfollow)
Commit message (Expand)AuthorFilesLines
2017-10-04new opcodes with immediate integer operand for all arithmetic operationsRoberto Ierusalimschy5-28/+170
2017-10-04avoid warning about 'const'Roberto Ierusalimschy1-2/+2
2017-10-02opcode size increased to 7 bitsRoberto Ierusalimschy1-8/+8
2017-10-02string constants (Kstr) must fit into 'B' registerRoberto Ierusalimschy1-2/+2
2017-10-01new function 'printcode'Roberto Ierusalimschy1-1/+18
2017-10-01avoid the use of bit 'Bk' ('B' will lose this bit soon)Roberto Ierusalimschy3-14/+11
2017-09-28no more 'getBMode'-'getCMode' (imprecise + we will need more spaceRoberto Ierusalimschy6-109/+109
2017-09-27new function 'luaT_trybiniTM'Roberto Ierusalimschy3-12/+19
2017-09-26binary operators use R instead of RKRoberto Ierusalimschy4-76/+73
2017-09-26detailRoberto Ierusalimschy1-2/+4
2017-09-19new opcode OP_LOADF (load immediate float)Roberto Ierusalimschy4-5/+25
2017-09-18comments (documentation about instruction formats)Roberto Ierusalimschy1-15/+14
2017-09-15detail (keep OP_LOADK and OP_LOADKX together)Roberto Ierusalimschy2-5/+5
2017-09-13jumps do not close upvalues (to be faster and simpler);Roberto Ierusalimschy6-67/+139
2017-08-31bug: dead keys with nil values can stay in weak tablesRoberto Ierusalimschy2-12/+47
2017-08-14jumps in 'for' loops don't need to be signedRoberto Ierusalimschy4-20/+38
2017-08-12comment in code fragmentRoberto Ierusalimschy1-3/+3
2017-08-12commentRoberto Ierusalimschy1-2/+2
2017-07-27bug: Lua does not check GC when creating error messagesRoberto Ierusalimschy1-9/+54
2017-07-27no more reference 'memerrmsg' + new reference to "n"Roberto Ierusalimschy5-16/+24
2017-07-27new version (5.4)Roberto Ierusalimschy1-4/+4
2017-07-10bug: Lua does not check GC when creating error messagesRoberto Ierusalimschy1-1/+2
2017-07-07coercion string->number in arithmetic operations moved to stringRoberto Ierusalimschy5-19/+111
2017-06-29'OP_VARARG' has the vararg parameter as an operandRoberto Ierusalimschy4-9/+10
2017-06-29new type 'StackValue' for stack elementsRoberto Ierusalimschy20-351/+409
2017-06-27new constant 'LUA_GNAME' for the name of the global table "_G"Roberto Ierusalimschy5-10/+14
2017-06-27dumping ints and size_ts compactedRoberto Ierusalimschy2-20/+38
2017-06-27'lineinfo' in prototypes saved as differences instead of absoluteRoberto Ierusalimschy11-33/+195
2017-06-27new type 'ls_byte' for signed bytesRoberto Ierusalimschy1-1/+2
2017-06-12no more 'DEADKEY'. Table traversals do not need to consider dead keys;Roberto Ierusalimschy5-66/+49
2017-06-09detailRoberto Ierusalimschy2-4/+4
2017-06-09in hash nodes, keys are stored in separate pieces to avoid wastingRoberto Ierusalimschy6-110/+201
2017-06-01when assigning to a 'TValue', better assign only exact fields,Roberto Ierusalimschy1-6/+6
2017-06-01macro 'setobj2t' may not be an expressionRoberto Ierusalimschy1-2/+3
2017-06-01macro 'luaV_fastget' may need protection ({}) to be used insideRoberto Ierusalimschy2-8/+14
2017-06-01avoid overflows in computation of step sizeRoberto Ierusalimschy2-3/+12
2017-05-31updated GC states in function 'T.gcstate'Roberto Ierusalimschy1-5/+7
2017-05-26revamping the incremental collectorRoberto Ierusalimschy7-198/+208
2017-05-24include first standard header filesRoberto Ierusalimschy1-2/+3
2017-05-24bug: cannot reuse a dying upvalueRoberto Ierusalimschy1-2/+2
2017-05-24assert removed in 'luaO_arith'Roberto Ierusalimschy1-2/+1
2017-05-23details (using proper version of 'setobj')Roberto Ierusalimschy2-5/+5
2017-05-22detail (extra closing brackets)Roberto Ierusalimschy1-3/+2
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