aboutsummaryrefslogtreecommitdiff
path: root/bugs (unfollow)
Commit message (Expand)AuthorFilesLines
2017-12-14'VRELOCABLE' -> 'VRELOC'Roberto Ierusalimschy3-22/+22
2017-12-13bug: memory-allocation error when resizing a table can leave itRoberto Ierusalimschy1-2/+27
2017-12-13new opcodes BANDK/BORK/BXORK. (They do not use immediate operandsRoberto Ierusalimschy7-23/+107
2017-12-13Code should not change the stack level after the initialization of aRoberto Ierusalimschy1-3/+3
2017-12-12when shrinking stack, always shrinks the CI list.Roberto Ierusalimschy1-5/+2
2017-12-12back to reallocation when resizing the string table.Roberto Ierusalimschy1-30/+60
2017-12-11allows memory-allocation errors when shrinking blocksRoberto Ierusalimschy1-2/+3
2017-12-11more freedom in handling memory-allocation errors (not all allocationsRoberto Ierusalimschy1-2/+2
2017-12-11'luaD_growstack' cannot raise any errors when 'raiseerror' isRoberto Ierusalimschy2-17/+30
2017-12-11'luaM_shrinkvector' raises an error if it cannot shrink the blockRoberto Ierusalimschy1-2/+2
2017-12-08more freedom in handling memory-allocation errors (not all allocationsRoberto Ierusalimschy8-95/+136
2017-12-08new C instruction "rawcheckstack" (to test failing in 'lua_checkstack')Roberto Ierusalimschy1-3/+16
2017-12-07using explicit tests for allocation overflow whenever possibleRoberto Ierusalimschy5-46/+80
2017-12-07detail (comment)Roberto Ierusalimschy1-1/+2
2017-12-07new test function 'T.allocount' to restrict number of allocationsRoberto Ierusalimschy2-4/+20
2017-12-07opcodes for order and shift can use several metamethods,Roberto Ierusalimschy1-4/+8
2017-12-06avoid using one function for different tasks (malloc, free, etc.)Roberto Ierusalimschy3-47/+108
2017-12-06bug: 'lua_pushcclosure' should not call the garbage collector whenRoberto Ierusalimschy1-2/+35
2017-12-06bug: 'lua_pushcclosure' should not call the GC when 'n' is zeroRoberto Ierusalimschy1-3/+4
2017-12-04new opcodes OP_SHLI/OP_SHRIRoberto Ierusalimschy4-18/+94
2017-12-01'luaS_resize' can raise memory errorsRoberto Ierusalimschy1-4/+9
2017-12-01rehashes string table always allocating a new array instead ofRoberto Ierusalimschy1-17/+11
2017-12-01detailRoberto Ierusalimschy1-3/+3
2017-12-01another value for LUAI_MAXCCALLS (must think more about that)Roberto Ierusalimschy1-2/+2
2017-11-30warnings from Visual Studio /W3Roberto Ierusalimschy3-6/+6
2017-11-30small peephole optimizationsRoberto Ierusalimschy5-48/+63
2017-11-30details (comments)Roberto Ierusalimschy1-5/+10
2017-11-30detail (spacing)Roberto Ierusalimschy1-3/+3
2017-11-29new opcodes OP_RETURN0/OP_RETURN1Roberto Ierusalimschy4-17/+77
2017-11-29'luaV_execute' gets call info as extra argument (it is alwaysRoberto Ierusalimschy3-11/+11
2017-11-28order opcodes cannot use 'K' operandsRoberto Ierusalimschy1-2/+2
2017-11-28conditional jumps unified in label "condjump' + new variable 'vra'Roberto Ierusalimschy1-128/+106
2017-11-28using register 'k' for conditions in tests (we only need one bit there)Roberto Ierusalimschy3-92/+120
2017-11-28detail (identation of switch)Roberto Ierusalimschy2-37/+35
2017-11-27new opcodes 'OP_LTI' and 'OP_LEI'Roberto Ierusalimschy5-12/+71
2017-11-23detail (typo in comments)Roberto Ierusalimschy9-19/+19
2017-11-23small simplifications around 'luaT_callorderTM'Roberto Ierusalimschy2-21/+19
2017-11-23small simplifications in 'luaD_poscall'Roberto Ierusalimschy2-20/+20
2017-11-23no more 'stackless' implementation; 'luaV_execute' calls itselfRoberto Ierusalimschy9-112/+90
2017-11-23more information from 'T.stacklevel'Roberto Ierusalimschy1-2/+4
2017-11-22using 'A' for register instead of 'B' in relational opcodesRoberto Ierusalimschy3-36/+31
2017-11-22new opcode 'OP_EQI' for equality with immediate numbersRoberto Ierusalimschy4-25/+68
2017-11-21more direct implementation for tail calls.Roberto Ierusalimschy3-36/+57
2017-11-20in order comparison opcodes, fast track for floats tooRoberto Ierusalimschy1-18/+42
2017-11-16'io.read' accepts multiple formats in a single string argumentRoberto Ierusalimschy1-27/+31
2017-11-16detail ('signal' -> 'sign' in comments)Roberto Ierusalimschy5-13/+13
2017-11-16new instruction 'OP_EQK' (for equality with constants)Roberto Ierusalimschy4-14/+61
2017-11-13using 'trap' to stop 'luaV_execute' when necessary (tracing andRoberto Ierusalimschy5-24/+67
2017-11-13avoid accessing wrong union fieldRoberto Ierusalimschy1-2/+3
2017-11-13detailRoberto Ierusalimschy1-7/+8