summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* detail (identation of switch)Roberto Ierusalimschy2017-11-282-37/+35
|
* new opcodes 'OP_LTI' and 'OP_LEI'Roberto Ierusalimschy2017-11-275-12/+71
|
* detail (typo in comments)Roberto Ierusalimschy2017-11-239-19/+19
|
* small simplifications around 'luaT_callorderTM'Roberto Ierusalimschy2017-11-232-21/+19
|
* small simplifications in 'luaD_poscall'Roberto Ierusalimschy2017-11-232-20/+20
|
* no more 'stackless' implementation; 'luaV_execute' calls itselfRoberto Ierusalimschy2017-11-239-112/+90
| | | | | recursively to execute function calls. 'unroll' continues all executions suspended by an yield (through a long jump)
* more information from 'T.stacklevel'Roberto Ierusalimschy2017-11-231-2/+4
|
* using 'A' for register instead of 'B' in relational opcodesRoberto Ierusalimschy2017-11-223-36/+31
| | | | ('R(A)' is already created by default for all instructions.)
* new opcode 'OP_EQI' for equality with immediate numbersRoberto Ierusalimschy2017-11-224-25/+68
|
* more direct implementation for tail calls.Roberto Ierusalimschy2017-11-213-36/+57
|
* in order comparison opcodes, fast track for floats tooRoberto Ierusalimschy2017-11-201-18/+42
|
* 'io.read' accepts multiple formats in a single string argumentRoberto Ierusalimschy2017-11-161-27/+31
|
* detail ('signal' -> 'sign' in comments)Roberto Ierusalimschy2017-11-165-13/+13
|
* new instruction 'OP_EQK' (for equality with constants)Roberto Ierusalimschy2017-11-164-14/+61
|
* using 'trap' to stop 'luaV_execute' when necessary (tracing andRoberto Ierusalimschy2017-11-135-24/+67
| | | | to update its copy of 'base' when the stack is reallocated)
* avoid accessing wrong union fieldRoberto Ierusalimschy2017-11-131-2/+3
|
* detailRoberto Ierusalimschy2017-11-131-7/+8
|
* includes 'stdio.h' to allow prints when testingRoberto Ierusalimschy2017-11-131-1/+2
|
* removed unused variable 'islocked'Roberto Ierusalimschy2017-11-091-4/+1
|
* detail ('Protect' defined as an expression)Roberto Ierusalimschy2017-11-081-36/+45
|
* new function 'luaV_flttointeger' to convert floats to integers (withoutRoberto Ierusalimschy2017-11-088-48/+126
| | | | | string coercions) + string operands to bitwise operations handled by string metamethods
* new format for JUMP instructions (to allow larger offsets)Roberto Ierusalimschy2017-11-076-24/+65
|
* back to 'CallInfo' (no gains with its removal)Roberto Ierusalimschy2017-11-0713-370/+394
|
* fitting a StackValue structure into 32 bytes (for 64-bit machines)Roberto Ierusalimschy2017-11-061-8/+9
|
* no more 'CallInfo' structureRoberto Ierusalimschy2017-11-045-119/+31
|
* 'lua_Debug' not using 'CallInfo'Roberto Ierusalimschy2017-11-033-15/+20
|
* removing uses of 'CallInfo'Roberto Ierusalimschy2017-11-032-65/+75
|
* no more useful fields in CallInfoRoberto Ierusalimschy2017-11-037-91/+100
|
* more fields moved out of 'CallInfo'Roberto Ierusalimschy2017-11-0311-127/+152
|
* new API for 'lua_resume' + cleaning the uses of the 'extra' field inRoberto Ierusalimschy2017-11-027-58/+31
| | | | 'CallInfo'
* using 'L->func' when possibleRoberto Ierusalimschy2017-11-016-39/+37
|
* baby steps to remove 'CallInfo': keeping 'L->func' correctRoberto Ierusalimschy2017-10-315-9/+26
|
* detail: in 'isinstack', check against the whole stack insteadRoberto Ierusalimschy2017-10-311-5/+5
| | | | of against the stack frame
* do not mess up the debt when the collector is not runningRoberto Ierusalimschy2017-10-311-7/+7
|
* some cleaning in GC parametersRoberto Ierusalimschy2017-10-114-31/+46
|
* raw operation should not convert strings to numbersRoberto Ierusalimschy2017-10-101-2/+2
|
* eplicit 1-bit opcode operand 'k'Roberto Ierusalimschy2017-10-046-96/+103
|
* detailRoberto Ierusalimschy2017-10-041-2/+3
|
* new opcodes with immediate integer operand for all arithmetic operationsRoberto Ierusalimschy2017-10-045-28/+170
|
* avoid warning about 'const'Roberto Ierusalimschy2017-10-041-2/+2
|
* opcode size increased to 7 bitsRoberto Ierusalimschy2017-10-021-8/+8
|
* string constants (Kstr) must fit into 'B' registerRoberto Ierusalimschy2017-10-021-2/+2
|
* new function 'printcode'Roberto Ierusalimschy2017-10-011-1/+18
|
* avoid the use of bit 'Bk' ('B' will lose this bit soon)Roberto Ierusalimschy2017-10-013-14/+11
|
* no more 'getBMode'-'getCMode' (imprecise + we will need more spaceRoberto Ierusalimschy2017-09-286-109/+109
| | | | for op mode) + better control of op modes
* new function 'luaT_trybiniTM'Roberto Ierusalimschy2017-09-273-12/+19
| | | | to handle tag methods for instructions with immediate integer arguments
* binary operators use R instead of RKRoberto Ierusalimschy2017-09-264-76/+73
| | | | | faster + nobody uses RK(B), so B can be smaller (freeing one bit for more opcodes, soon)
* detailRoberto Ierusalimschy2017-09-261-2/+4
| | | | put explicit all cases for a switch of an enumeration
* new opcode OP_LOADF (load immediate float)Roberto Ierusalimschy2017-09-194-5/+25
|
* comments (documentation about instruction formats)Roberto Ierusalimschy2017-09-181-15/+14
|