summaryrefslogtreecommitdiff
path: root/ldo.c
Commit message (Expand)AuthorAgeFilesLines
* Complete implementation of to-be-closed variablesscopedvarsRoberto Ierusalimschy2018-10-221-3/+6
* First "complete" implementation of to-be-closed variablesRoberto Ierusalimschy2018-10-171-7/+13
* Towards "to closed" local variablesRoberto Ierusalimschy2018-10-081-2/+1
* Added "cost" for the use of C stack by a coroutine invocation.Roberto Ierusalimschy2018-09-111-2/+8
* Bug: wrong 'nCcalls' when resuming a coroutineRoberto Ierusalimschy2018-07-111-3/+6
* new macros 'likely'/'unlikely' with hints for jump predictionsRoberto Ierusalimschy2018-05-301-9/+9
* in 'luaD_poscall', there is no need to compute 'firstResult' when 'nres==0'Roberto Ierusalimschy2018-05-221-39/+30
* 'fTransfer' -> 'ftransfer' / 'nTransfer' -> 'ntransfer'Roberto Ierusalimschy2018-03-161-8/+8
* details (avoid using non-C89 '//' comment)Roberto Ierusalimschy2018-03-071-2/+1
* typo in commentRoberto Ierusalimschy2018-03-051-2/+2
* better names for macros for tags and types.Roberto Ierusalimschy2018-02-261-2/+2
* two new fields 'fTransfer'/'nTransfer' in 'lua_Debug' structureRoberto Ierusalimschy2018-02-171-9/+22
* in return hook, 'top' must be corrected only if smaller than 'ci->top'.Roberto Ierusalimschy2018-02-171-2/+3
* some simplifications/optimizations in returns from Lua functionsRoberto Ierusalimschy2018-02-151-8/+16
* vararg back to '...' (but with another implementation)Roberto Ierusalimschy2018-02-091-20/+17
* detailsRoberto Ierusalimschy2018-02-071-13/+16
* new opcode 'PREPVARARG'Roberto Ierusalimschy2018-02-071-14/+5
* call hooks for Lua functions called by 'luaV_execute'Roberto Ierusalimschy2018-02-061-16/+14
* warnings in VS (implicit casts from ptrdiff_t to int)Roberto Ierusalimschy2018-01-291-2/+2
* bug in tailcall of vararg functionsRoberto Ierusalimschy2018-01-281-13/+16
* calling a vararg function needs to check GCRoberto Ierusalimschy2018-01-281-7/+7
* 'luaD_tryfuncTM' can ensure it does not change the stackRoberto Ierusalimschy2018-01-101-7/+4
* by-one error when filling missing arguments in a tail callRoberto Ierusalimschy2017-12-291-3/+3
* when calling a hook, cannot decrease 'ci->top' (to preserve stackRoberto Ierusalimschy2017-12-281-6/+6
* when running Lua code, there is no need to keep 'L->top' "correct";Roberto Ierusalimschy2017-12-201-3/+6
* new macro 'isLuacode' (to distinguish regular Lua code fromRoberto Ierusalimschy2017-12-191-3/+4
* 'Proto->numparams' does not include vararg parameterRoberto Ierusalimschy2017-12-151-3/+3
* when shrinking stack, always shrinks the CI list.Roberto Ierusalimschy2017-12-121-5/+2
* 'luaD_growstack' cannot raise any errors when 'raiseerror' isRoberto Ierusalimschy2017-12-111-14/+27
* more freedom in handling memory-allocation errors (not all allocationsRoberto Ierusalimschy2017-12-081-19/+23
* detailRoberto Ierusalimschy2017-12-011-3/+3
* 'luaV_execute' gets call info as extra argument (it is alwaysRoberto Ierusalimschy2017-11-291-6/+7
* small simplifications in 'luaD_poscall'Roberto Ierusalimschy2017-11-231-18/+18
* no more 'stackless' implementation; 'luaV_execute' calls itselfRoberto Ierusalimschy2017-11-231-48/+18
* more direct implementation for tail calls.Roberto Ierusalimschy2017-11-211-10/+37
* using 'trap' to stop 'luaV_execute' when necessary (tracing andRoberto Ierusalimschy2017-11-131-3/+12
* avoid accessing wrong union fieldRoberto Ierusalimschy2017-11-131-2/+3
* back to 'CallInfo' (no gains with its removal)Roberto Ierusalimschy2017-11-071-95/+95
* no more 'CallInfo' structureRoberto Ierusalimschy2017-11-041-42/+22
* 'lua_Debug' not using 'CallInfo'Roberto Ierusalimschy2017-11-031-3/+3
* no more useful fields in CallInfoRoberto Ierusalimschy2017-11-031-24/+30
* more fields moved out of 'CallInfo'Roberto Ierusalimschy2017-11-031-37/+43
* new API for 'lua_resume' + cleaning the uses of the 'extra' field inRoberto Ierusalimschy2017-11-021-6/+8
* using 'L->func' when possibleRoberto Ierusalimschy2017-11-011-5/+5
* baby steps to remove 'CallInfo': keeping 'L->func' correctRoberto Ierusalimschy2017-10-311-3/+11
* no more reference 'memerrmsg' + new reference to "n"Roberto Ierusalimschy2017-07-271-2/+3
* new type 'StackValue' for stack elementsRoberto Ierusalimschy2017-06-291-18/+20
* details (using proper version of 'setobj')Roberto Ierusalimschy2017-05-231-2/+2
* no more field 'base' in CallInfo (base is always equal to 'func + 1',Roberto Ierusalimschy2017-05-131-4/+1
* back to old-style vararg system (with vararg table collecting extraRoberto Ierusalimschy2017-05-131-35/+6