summaryrefslogtreecommitdiff
path: root/ldo.h
Commit message (Expand)AuthorAgeFilesLines
* Stack indices changed to union'sRoberto Ierusalimschy2022-10-291-3/+4
* More checks and documentation for uses of EXTRA_STACKRoberto Ierusalimschy2022-05-261-0/+7
* Details (identation and typos)Roberto Ierusalimschy2022-05-101-1/+2
* More uniform implementation for tail callsRoberto Ierusalimschy2021-10-291-1/+1
* 'luaD_tryfuncTM' checks stack space by itselfRoberto Ierusalimschy2021-08-181-1/+1
* Undo simplification of tail calls (commit 901d760)Roberto Ierusalimschy2021-08-181-13/+2
* Simplification in the parameters of 'luaD_precall'Roberto Ierusalimschy2021-06-301-2/+13
* Simpler implementation for tail callsRoberto Ierusalimschy2021-06-111-2/+2
* Broadening the use of branch hintsRoberto Ierusalimschy2021-02-241-1/+1
* Cleaner handling of errors in '__close' metamethodsRoberto Ierusalimschy2020-12-281-0/+1
* Correct handling of 'luaV_execute' invocationsRoberto Ierusalimschy2020-10-121-1/+1
* Back to a stackless implementationRoberto Ierusalimschy2020-10-121-0/+1
* Fixed bugs of stack reallocation x GCRoberto Ierusalimschy2020-07-071-2/+4
* First "complete" implementation of to-be-closed variablesRoberto Ierusalimschy2018-10-171-0/+1
* Removed extra information from RCS keyword stringsRoberto Ierusalimschy2018-08-231-1/+1
* in 'luaD_poscall', there is no need to compute 'firstResult' when 'nres==0'Roberto Ierusalimschy2018-05-221-3/+2
* two new fields 'fTransfer'/'nTransfer' in 'lua_Debug' structureRoberto Ierusalimschy2018-02-171-2/+3
* some simplifications/optimizations in returns from Lua functionsRoberto Ierusalimschy2018-02-151-4/+1
* vararg back to '...' (but with another implementation)Roberto Ierusalimschy2018-02-091-1/+9
* call hooks for Lua functions called by 'luaV_execute'Roberto Ierusalimschy2018-02-061-1/+2
* 'luaD_tryfuncTM' can ensure it does not change the stackRoberto Ierusalimschy2018-01-101-2/+2
* 'luaD_growstack' cannot raise any errors when 'raiseerror' isRoberto Ierusalimschy2017-12-111-3/+3
* more freedom in handling memory-allocation errors (not all allocationsRoberto Ierusalimschy2017-12-081-4/+5
* small simplifications in 'luaD_poscall'Roberto Ierusalimschy2017-11-231-2/+2
* no more 'stackless' implementation; 'luaV_execute' calls itselfRoberto Ierusalimschy2017-11-231-2/+1
* more direct implementation for tail calls.Roberto Ierusalimschy2017-11-211-1/+3
* back to 'CallInfo' (no gains with its removal)Roberto Ierusalimschy2017-11-071-2/+3
* no more 'CallInfo' structureRoberto Ierusalimschy2017-11-041-3/+2
* new type 'StackValue' for stack elementsRoberto Ierusalimschy2017-06-291-2/+2
* back to old-style vararg system (with vararg table collecting extraRoberto Ierusalimschy2017-05-131-1/+9
* avoid empty macro arguments (invalid in C89)Roberto Ierusalimschy2015-12-211-2/+2
* details (comments)Roberto Ierusalimschy2015-11-231-2/+2
* details (typos in comments)Roberto Ierusalimschy2015-11-191-2/+2
* trying to optimize a little 'luaD_poscall'Roberto Ierusalimschy2015-11-131-2/+3
* in 'luaD_call', use two functions instead of one with fixed booleanRoberto Ierusalimschy2015-11-021-3/+3
* macro 'incr_top' replaced by function 'luaD_inctop'. (It is not usedRoberto Ierusalimschy2015-11-021-2/+2
* small changes to allow 'precall' to spend time preserving 'func'Roberto Ierusalimschy2015-10-211-3/+14
* bug: interpreter cannot pop activation frame before calling returnRoberto Ierusalimschy2015-05-221-2/+2
* `name' in comments changed to 'name'Roberto Ierusalimschy2014-10-251-2/+2
* 'lua_load' has an extra argument 'mode'Roberto Ierusalimschy2011-11-291-2/+3
* new type 'l_noret' for function that do not returnRoberto Ierusalimschy2011-10-071-2/+2
* removed export of function only for cocoRoberto Ierusalimschy2009-12-171-4/+1
* new scheme for debug info about tail calls: no more 'fake' stack entries,Roberto Ierusalimschy2009-11-251-2/+2
* remove declaration of removed functionRoberto Ierusalimschy2009-11-191-2/+1
* new way to control stack overflow, controling only total size of the stackRoberto Ierusalimschy2009-07-151-1/+2
* new definition for 'luaD_checkstack' to avoid possible overflowsRoberto Ierusalimschy2009-07-081-4/+3
* new macro 'condmovestack' instead of 'condhardstacktests'Roberto Ierusalimschy2009-06-081-3/+2
* 'CallInfo' stack implemented as double-linked list instead of an arrayRoberto Ierusalimschy2009-04-171-4/+1
* yielding across lua_call (first version)Roberto Ierusalimschy2009-03-101-2/+3
* first steps towards yielding through longjumpRoberto Ierusalimschy2008-08-131-7/+1