aboutsummaryrefslogtreecommitdiff
path: root/ldo.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* Bug when growing a stackRoberto Ierusalimschy2020-11-081-1/+1
* DetailsRoberto Ierusalimschy2020-10-301-8/+8
* 'recover' finish of 'luaD_pcall' should follow the originalRoberto Ierusalimschy2020-10-121-3/+3
* No more field 'lua_State.stacksize'Roberto Ierusalimschy2020-10-121-10/+9
* Avoid shrinking stacks to oftenRoberto Ierusalimschy2020-10-121-16/+38
* Correct handling of 'luaV_execute' invocationsRoberto Ierusalimschy2020-10-121-11/+14
* Revision of stackless implementationRoberto Ierusalimschy2020-10-121-26/+26
* Back to a stackless implementationRoberto Ierusalimschy2020-10-121-20/+31
* Fixed bug: 'luaD_callnoyield' called twice in a rowRoberto Ierusalimschy2020-07-171-5/+4
* Fixed bug: invalid 'oldpc' when returning to a functionRoberto Ierusalimschy2020-07-171-3/+3
* Fixed bug: wrong stack limit when entering a coroutineRoberto Ierusalimschy2020-07-131-1/+1
* Fixed bugs of stack reallocation x GCRoberto Ierusalimschy2020-07-071-6/+7
* Avoid any code before locks in the APIRoberto Ierusalimschy2020-07-061-1/+2
* Keep minimum size when shrinking a stackRoberto Ierusalimschy2020-07-061-3/+2
* Improvements in the handling of signalsRoberto Ierusalimschy2020-05-221-5/+5
* Clearer distinction between types and tagsRoberto Ierusalimschy2020-01-311-3/+3
* '__call' metamethod can be any callable objectRoberto Ierusalimschy2019-06-251-14/+14
* New function 'setCstacklimit'Roberto Ierusalimschy2019-06-181-3/+4
* Revamp around 'L->nCcalls' countRoberto Ierusalimschy2019-06-121-7/+6
* DetailsRoberto Ierusalimschy2019-05-131-1/+1
* Test for dead coroutine moved to 'lua_resume'Roberto Ierusalimschy2019-05-091-0/+2
* Coroutines do not unwind the stack in case of errorsRoberto Ierusalimschy2019-05-091-3/+1
* LUAI_MAXCCALLS renamed LUAI_MAXCSTACKRoberto Ierusalimschy2019-03-251-2/+2
* No more to-be-closed functionsRoberto Ierusalimschy2019-01-041-0/+1
* Changes in the control of C-stack overflowRoberto Ierusalimschy2018-12-271-24/+16
* New functions 'lua_resetthread' and 'coroutine.kill'Roberto Ierusalimschy2018-12-131-0/+4
* DetailsRoberto Ierusalimschy2018-12-111-16/+13
* Some bugs with stack reallocation by 'luaF_close'Roberto Ierusalimschy2018-11-241-3/+6
* To-be-closed variables in the C APIRoberto Ierusalimschy2018-10-251-13/+19
* Complete implementation of to-be-closed variablesRoberto 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