aboutsummaryrefslogtreecommitdiff
path: root/bugs (unfollow)
Commit message (Expand)AuthorFilesLines
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
2017-11-13includes 'stdio.h' to allow prints when testingRoberto Ierusalimschy1-1/+2
2017-11-09removed unused variable 'islocked'Roberto Ierusalimschy1-4/+1
2017-11-08detail ('Protect' defined as an expression)Roberto Ierusalimschy1-36/+45
2017-11-08new function 'luaV_flttointeger' to convert floats to integers (withoutRoberto Ierusalimschy8-48/+126
2017-11-07new format for JUMP instructions (to allow larger offsets)Roberto Ierusalimschy6-24/+65
2017-11-07back to 'CallInfo' (no gains with its removal)Roberto Ierusalimschy13-370/+394
2017-11-06fitting a StackValue structure into 32 bytes (for 64-bit machines)Roberto Ierusalimschy1-8/+9
2017-11-04no more 'CallInfo' structureRoberto Ierusalimschy5-119/+31
2017-11-03'lua_Debug' not using 'CallInfo'Roberto Ierusalimschy3-15/+20
2017-11-03removing uses of 'CallInfo'Roberto Ierusalimschy2-65/+75
2017-11-03no more useful fields in CallInfoRoberto Ierusalimschy7-91/+100
2017-11-03more fields moved out of 'CallInfo'Roberto Ierusalimschy11-127/+152
2017-11-02new API for 'lua_resume' + cleaning the uses of the 'extra' field inRoberto Ierusalimschy7-58/+31
2017-11-01using 'L->func' when possibleRoberto Ierusalimschy6-39/+37
2017-10-31baby steps to remove 'CallInfo': keeping 'L->func' correctRoberto Ierusalimschy5-9/+26
2017-10-31detail: in 'isinstack', check against the whole stack insteadRoberto Ierusalimschy1-5/+5