Commit message (Expand) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Bug: Missing error status in panic functionv5.4 | Roberto Ierusalimschy | 2025-01-16 | 1 | -0/+1 |
* | Bug: Yielding in a hook stops in the wrong instruction | Roberto Ierusalimschy | 2024-01-11 | 1 | -0/+4 |
* | Several functions turned 'static' | Roberto Ierusalimschy | 2023-05-22 | 1 | -3/+3 |
* | Corrected support for 16-bit systems | Roberto Ierusalimschy | 2023-03-09 | 1 | -9/+5 |
* | Stack reallocation done with a single realloc | Roberto Ierusalimschy | 2022-10-31 | 1 | -22/+46 |
* | Stack indices changed to union's | Roberto Ierusalimschy | 2022-10-29 | 1 | -63/+62 |
* | More checks and documentation for uses of EXTRA_STACK | Roberto Ierusalimschy | 2022-05-26 | 1 | -1/+6 |
* | Bug: 'lua_settop' may use an invalid pointer to stack | Roberto Ierusalimschy | 2022-05-25 | 1 | -6/+6 |
* | 'lua_checkstack' doesn't need to check stack overflow | Roberto Ierusalimschy | 2022-05-23 | 1 | -8/+7 |
* | Details | Roberto Ierusalimschy | 2022-04-01 | 1 | -2/+6 |
* | Bug: finalizers can be called with an invalid stack | Roberto Ierusalimschy | 2021-12-15 | 1 | -1/+1 |
* | Corrected bug in 'luaD_tryfuncTM' | Roberto Ierusalimschy | 2021-11-16 | 1 | -1/+2 |
* | Bug: C stack overflow with coroutines | Roberto Ierusalimschy | 2021-11-03 | 1 | -2/+4 |
* | More uniform implementation for tail calls | Roberto Ierusalimschy | 2021-10-29 | 1 | -29/+52 |
* | Removed goto's in 'luaD_precall' | Roberto Ierusalimschy | 2021-10-18 | 1 | -24/+27 |
* | Using 'inline' in some functions | Roberto Ierusalimschy | 2021-09-15 | 1 | -4/+4 |
* | 'luaD_tryfuncTM' checks stack space by itself | Roberto Ierusalimschy | 2021-08-18 | 1 | -3/+4 |
* | Undo simplification of tail calls (commit 901d760) | Roberto Ierusalimschy | 2021-08-18 | 1 | -34/+32 |
* | Simplification in the parameters of 'luaD_precall' | Roberto Ierusalimschy | 2021-06-30 | 1 | -10/+9 |
* | C functions can be tail called, too | Roberto Ierusalimschy | 2021-06-14 | 1 | -18/+25 |
* | Simpler implementation for tail calls | Roberto Ierusalimschy | 2021-06-11 | 1 | -24/+24 |
* | Stack reallocation done in two phases | Roberto Ierusalimschy | 2021-02-27 | 1 | -7/+21 |
* | Broadening the use of branch hints | Roberto Ierusalimschy | 2021-02-24 | 1 | -12/+12 |
* | '__close' methods can yield in the return of a C function | Roberto Ierusalimschy | 2021-02-12 | 1 | -29/+43 |
* | New implementation for to-be-closed variables | Roberto Ierusalimschy | 2021-02-09 | 1 | -1/+1 |
* | Fixed some bugs around stack reallocation | Roberto Ierusalimschy | 2021-02-05 | 1 | -1/+1 |
* | Optimizations for line hook | Roberto Ierusalimschy | 2021-01-28 | 1 | -4/+5 |
* | Small improvements in hooks | Roberto Ierusalimschy | 2021-01-26 | 1 | -9/+8 |
* | Janitorial work | Roberto Ierusalimschy | 2021-01-25 | 1 | -24/+31 |
* | Correct order of return hooks vs. close metamethods | Roberto Ierusalimschy | 2021-01-21 | 1 | -9/+15 |
* | Simpler handling of errors when creating tbc variables | Roberto Ierusalimschy | 2021-01-19 | 1 | -0/+1 |
* | Allow yields in '__close' metamethods ater errors | Roberto Ierusalimschy | 2021-01-18 | 1 | -60/+67 |
* | Allow yields inside '__close' metamethods | Roberto Ierusalimschy | 2021-01-13 | 1 | -3/+3 |
* | Handles '__close' errors in coroutines in "coroutine style" | Roberto Ierusalimschy | 2020-12-30 | 1 | -20/+46 |
* | Better error messages for calling non-callable objects | Roberto Ierusalimschy | 2020-12-29 | 1 | -1/+1 |
* | Reset thread before panicking | Roberto Ierusalimschy | 2020-12-28 | 1 | -5/+1 |
* | Cleaner handling of errors in '__close' metamethods | Roberto Ierusalimschy | 2020-12-28 | 1 | -12/+47 |
* | Bug when growing a stack | Roberto Ierusalimschy | 2020-11-08 | 1 | -1/+1 |
* | Details | Roberto Ierusalimschy | 2020-10-30 | 1 | -8/+8 |
* | 'recover' finish of 'luaD_pcall' should follow the original | Roberto Ierusalimschy | 2020-10-12 | 1 | -3/+3 |
* | No more field 'lua_State.stacksize' | Roberto Ierusalimschy | 2020-10-12 | 1 | -10/+9 |
* | Avoid shrinking stacks to often | Roberto Ierusalimschy | 2020-10-12 | 1 | -16/+38 |
* | Correct handling of 'luaV_execute' invocations | Roberto Ierusalimschy | 2020-10-12 | 1 | -11/+14 |
* | Revision of stackless implementation | Roberto Ierusalimschy | 2020-10-12 | 1 | -26/+26 |
* | Back to a stackless implementation | Roberto Ierusalimschy | 2020-10-12 | 1 | -20/+31 |
* | Fixed bug: 'luaD_callnoyield' called twice in a row | Roberto Ierusalimschy | 2020-07-17 | 1 | -5/+4 |
* | Fixed bug: invalid 'oldpc' when returning to a function | Roberto Ierusalimschy | 2020-07-17 | 1 | -3/+3 |
* | Fixed bug: wrong stack limit when entering a coroutine | Roberto Ierusalimschy | 2020-07-13 | 1 | -1/+1 |
* | Fixed bugs of stack reallocation x GC | Roberto Ierusalimschy | 2020-07-07 | 1 | -6/+7 |
* | Avoid any code before locks in the API | Roberto Ierusalimschy | 2020-07-06 | 1 | -1/+2 |